2 * Block driver for the QCOW version 2 format
4 * Copyright (c) 2004-2006 Fabrice Bellard
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25 #include "qemu/osdep.h"
27 #include "block/qdict.h"
28 #include "sysemu/block-backend.h"
29 #include "qemu/main-loop.h"
30 #include "qemu/module.h"
32 #include "qemu/error-report.h"
33 #include "qapi/error.h"
34 #include "qapi/qapi-events-block-core.h"
35 #include "qapi/qmp/qdict.h"
36 #include "qapi/qmp/qstring.h"
38 #include "qemu/option_int.h"
39 #include "qemu/cutils.h"
40 #include "qemu/bswap.h"
41 #include "qemu/memalign.h"
42 #include "qapi/qobject-input-visitor.h"
43 #include "qapi/qapi-visit-block-core.h"
45 #include "block/aio_task.h"
46 #include "block/dirty-bitmap.h"
49 Differences with QCOW:
51 - Support for multiple incremental snapshots.
52 - Memory management by reference counts.
53 - Clusters which have a reference count of one have the bit
54 QCOW_OFLAG_COPIED to optimize write performance.
55 - Size of compressed clusters is stored in sectors to reduce bit usage
56 in the cluster offsets.
57 - Support for storing additional data (such as the VM state) in the
59 - If a backing store is used, the cluster size is not constrained
60 (could be backported to QCOW).
61 - L2 tables have always a size of one cluster.
68 } QEMU_PACKED QCowExtension
;
70 #define QCOW2_EXT_MAGIC_END 0
71 #define QCOW2_EXT_MAGIC_BACKING_FORMAT 0xe2792aca
72 #define QCOW2_EXT_MAGIC_FEATURE_TABLE 0x6803f857
73 #define QCOW2_EXT_MAGIC_CRYPTO_HEADER 0x0537be77
74 #define QCOW2_EXT_MAGIC_BITMAPS 0x23852875
75 #define QCOW2_EXT_MAGIC_DATA_FILE 0x44415441
77 static int coroutine_fn
78 qcow2_co_preadv_compressed(BlockDriverState
*bs
,
85 static int qcow2_probe(const uint8_t *buf
, int buf_size
, const char *filename
)
87 const QCowHeader
*cow_header
= (const void *)buf
;
89 if (buf_size
>= sizeof(QCowHeader
) &&
90 be32_to_cpu(cow_header
->magic
) == QCOW_MAGIC
&&
91 be32_to_cpu(cow_header
->version
) >= 2)
98 static int qcow2_crypto_hdr_read_func(QCryptoBlock
*block
, size_t offset
,
99 uint8_t *buf
, size_t buflen
,
100 void *opaque
, Error
**errp
)
102 BlockDriverState
*bs
= opaque
;
103 BDRVQcow2State
*s
= bs
->opaque
;
106 if ((offset
+ buflen
) > s
->crypto_header
.length
) {
107 error_setg(errp
, "Request for data outside of extension header");
111 ret
= bdrv_pread(bs
->file
, s
->crypto_header
.offset
+ offset
, buflen
, buf
,
114 error_setg_errno(errp
, -ret
, "Could not read encryption header");
121 static int qcow2_crypto_hdr_init_func(QCryptoBlock
*block
, size_t headerlen
,
122 void *opaque
, Error
**errp
)
124 BlockDriverState
*bs
= opaque
;
125 BDRVQcow2State
*s
= bs
->opaque
;
129 ret
= qcow2_alloc_clusters(bs
, headerlen
);
131 error_setg_errno(errp
, -ret
,
132 "Cannot allocate cluster for LUKS header size %zu",
137 s
->crypto_header
.length
= headerlen
;
138 s
->crypto_header
.offset
= ret
;
141 * Zero fill all space in cluster so it has predictable
142 * content, as we may not initialize some regions of the
143 * header (eg only 1 out of 8 key slots will be initialized)
145 clusterlen
= size_to_clusters(s
, headerlen
) * s
->cluster_size
;
146 assert(qcow2_pre_write_overlap_check(bs
, 0, ret
, clusterlen
, false) == 0);
147 ret
= bdrv_pwrite_zeroes(bs
->file
,
151 error_setg_errno(errp
, -ret
, "Could not zero fill encryption header");
159 static int qcow2_crypto_hdr_write_func(QCryptoBlock
*block
, size_t offset
,
160 const uint8_t *buf
, size_t buflen
,
161 void *opaque
, Error
**errp
)
163 BlockDriverState
*bs
= opaque
;
164 BDRVQcow2State
*s
= bs
->opaque
;
167 if ((offset
+ buflen
) > s
->crypto_header
.length
) {
168 error_setg(errp
, "Request for data outside of extension header");
172 ret
= bdrv_pwrite(bs
->file
, s
->crypto_header
.offset
+ offset
, buflen
, buf
,
175 error_setg_errno(errp
, -ret
, "Could not read encryption header");
182 qcow2_extract_crypto_opts(QemuOpts
*opts
, const char *fmt
, Error
**errp
)
184 QDict
*cryptoopts_qdict
;
187 /* Extract "encrypt." options into a qdict */
188 opts_qdict
= qemu_opts_to_qdict(opts
, NULL
);
189 qdict_extract_subqdict(opts_qdict
, &cryptoopts_qdict
, "encrypt.");
190 qobject_unref(opts_qdict
);
191 qdict_put_str(cryptoopts_qdict
, "format", fmt
);
192 return cryptoopts_qdict
;
196 * read qcow2 extension and fill bs
197 * start reading from start_offset
198 * finish reading upon magic of value 0 or when end_offset reached
199 * unknown magic is skipped (future extension this version knows nothing about)
200 * return 0 upon success, non-0 otherwise
202 static int qcow2_read_extensions(BlockDriverState
*bs
, uint64_t start_offset
,
203 uint64_t end_offset
, void **p_feature_table
,
204 int flags
, bool *need_update_header
,
207 BDRVQcow2State
*s
= bs
->opaque
;
211 Qcow2BitmapHeaderExt bitmaps_ext
;
213 if (need_update_header
!= NULL
) {
214 *need_update_header
= false;
218 printf("qcow2_read_extensions: start=%ld end=%ld\n", start_offset
, end_offset
);
220 offset
= start_offset
;
221 while (offset
< end_offset
) {
225 if (offset
> s
->cluster_size
)
226 printf("qcow2_read_extension: suspicious offset %lu\n", offset
);
228 printf("attempting to read extended header in offset %lu\n", offset
);
231 ret
= bdrv_pread(bs
->file
, offset
, sizeof(ext
), &ext
, 0);
233 error_setg_errno(errp
, -ret
, "qcow2_read_extension: ERROR: "
234 "pread fail from offset %" PRIu64
, offset
);
237 ext
.magic
= be32_to_cpu(ext
.magic
);
238 ext
.len
= be32_to_cpu(ext
.len
);
239 offset
+= sizeof(ext
);
241 printf("ext.magic = 0x%x\n", ext
.magic
);
243 if (offset
> end_offset
|| ext
.len
> end_offset
- offset
) {
244 error_setg(errp
, "Header extension too large");
249 case QCOW2_EXT_MAGIC_END
:
252 case QCOW2_EXT_MAGIC_BACKING_FORMAT
:
253 if (ext
.len
>= sizeof(bs
->backing_format
)) {
254 error_setg(errp
, "ERROR: ext_backing_format: len=%" PRIu32
255 " too large (>=%zu)", ext
.len
,
256 sizeof(bs
->backing_format
));
259 ret
= bdrv_pread(bs
->file
, offset
, ext
.len
, bs
->backing_format
, 0);
261 error_setg_errno(errp
, -ret
, "ERROR: ext_backing_format: "
262 "Could not read format name");
265 bs
->backing_format
[ext
.len
] = '\0';
266 s
->image_backing_format
= g_strdup(bs
->backing_format
);
268 printf("Qcow2: Got format extension %s\n", bs
->backing_format
);
272 case QCOW2_EXT_MAGIC_FEATURE_TABLE
:
273 if (p_feature_table
!= NULL
) {
274 void *feature_table
= g_malloc0(ext
.len
+ 2 * sizeof(Qcow2Feature
));
275 ret
= bdrv_pread(bs
->file
, offset
, ext
.len
, feature_table
, 0);
277 error_setg_errno(errp
, -ret
, "ERROR: ext_feature_table: "
278 "Could not read table");
279 g_free(feature_table
);
283 *p_feature_table
= feature_table
;
287 case QCOW2_EXT_MAGIC_CRYPTO_HEADER
: {
288 unsigned int cflags
= 0;
289 if (s
->crypt_method_header
!= QCOW_CRYPT_LUKS
) {
290 error_setg(errp
, "CRYPTO header extension only "
291 "expected with LUKS encryption method");
294 if (ext
.len
!= sizeof(Qcow2CryptoHeaderExtension
)) {
295 error_setg(errp
, "CRYPTO header extension size %u, "
296 "but expected size %zu", ext
.len
,
297 sizeof(Qcow2CryptoHeaderExtension
));
301 ret
= bdrv_pread(bs
->file
, offset
, ext
.len
, &s
->crypto_header
, 0);
303 error_setg_errno(errp
, -ret
,
304 "Unable to read CRYPTO header extension");
307 s
->crypto_header
.offset
= be64_to_cpu(s
->crypto_header
.offset
);
308 s
->crypto_header
.length
= be64_to_cpu(s
->crypto_header
.length
);
310 if ((s
->crypto_header
.offset
% s
->cluster_size
) != 0) {
311 error_setg(errp
, "Encryption header offset '%" PRIu64
"' is "
312 "not a multiple of cluster size '%u'",
313 s
->crypto_header
.offset
, s
->cluster_size
);
317 if (flags
& BDRV_O_NO_IO
) {
318 cflags
|= QCRYPTO_BLOCK_OPEN_NO_IO
;
320 s
->crypto
= qcrypto_block_open(s
->crypto_opts
, "encrypt.",
321 qcow2_crypto_hdr_read_func
,
322 bs
, cflags
, QCOW2_MAX_THREADS
, errp
);
328 case QCOW2_EXT_MAGIC_BITMAPS
:
329 if (ext
.len
!= sizeof(bitmaps_ext
)) {
330 error_setg_errno(errp
, -ret
, "bitmaps_ext: "
331 "Invalid extension length");
335 if (!(s
->autoclear_features
& QCOW2_AUTOCLEAR_BITMAPS
)) {
336 if (s
->qcow_version
< 3) {
337 /* Let's be a bit more specific */
338 warn_report("This qcow2 v2 image contains bitmaps, but "
339 "they may have been modified by a program "
340 "without persistent bitmap support; so now "
341 "they must all be considered inconsistent");
343 warn_report("a program lacking bitmap support "
344 "modified this file, so all bitmaps are now "
345 "considered inconsistent");
347 error_printf("Some clusters may be leaked, "
348 "run 'qemu-img check -r' on the image "
350 if (need_update_header
!= NULL
) {
351 /* Updating is needed to drop invalid bitmap extension. */
352 *need_update_header
= true;
357 ret
= bdrv_pread(bs
->file
, offset
, ext
.len
, &bitmaps_ext
, 0);
359 error_setg_errno(errp
, -ret
, "bitmaps_ext: "
360 "Could not read ext header");
364 if (bitmaps_ext
.reserved32
!= 0) {
365 error_setg_errno(errp
, -ret
, "bitmaps_ext: "
366 "Reserved field is not zero");
370 bitmaps_ext
.nb_bitmaps
= be32_to_cpu(bitmaps_ext
.nb_bitmaps
);
371 bitmaps_ext
.bitmap_directory_size
=
372 be64_to_cpu(bitmaps_ext
.bitmap_directory_size
);
373 bitmaps_ext
.bitmap_directory_offset
=
374 be64_to_cpu(bitmaps_ext
.bitmap_directory_offset
);
376 if (bitmaps_ext
.nb_bitmaps
> QCOW2_MAX_BITMAPS
) {
378 "bitmaps_ext: Image has %" PRIu32
" bitmaps, "
379 "exceeding the QEMU supported maximum of %d",
380 bitmaps_ext
.nb_bitmaps
, QCOW2_MAX_BITMAPS
);
384 if (bitmaps_ext
.nb_bitmaps
== 0) {
385 error_setg(errp
, "found bitmaps extension with zero bitmaps");
389 if (offset_into_cluster(s
, bitmaps_ext
.bitmap_directory_offset
)) {
390 error_setg(errp
, "bitmaps_ext: "
391 "invalid bitmap directory offset");
395 if (bitmaps_ext
.bitmap_directory_size
>
396 QCOW2_MAX_BITMAP_DIRECTORY_SIZE
) {
397 error_setg(errp
, "bitmaps_ext: "
398 "bitmap directory size (%" PRIu64
") exceeds "
399 "the maximum supported size (%d)",
400 bitmaps_ext
.bitmap_directory_size
,
401 QCOW2_MAX_BITMAP_DIRECTORY_SIZE
);
405 s
->nb_bitmaps
= bitmaps_ext
.nb_bitmaps
;
406 s
->bitmap_directory_offset
=
407 bitmaps_ext
.bitmap_directory_offset
;
408 s
->bitmap_directory_size
=
409 bitmaps_ext
.bitmap_directory_size
;
412 printf("Qcow2: Got bitmaps extension: "
413 "offset=%" PRIu64
" nb_bitmaps=%" PRIu32
"\n",
414 s
->bitmap_directory_offset
, s
->nb_bitmaps
);
418 case QCOW2_EXT_MAGIC_DATA_FILE
:
420 s
->image_data_file
= g_malloc0(ext
.len
+ 1);
421 ret
= bdrv_pread(bs
->file
, offset
, ext
.len
, s
->image_data_file
, 0);
423 error_setg_errno(errp
, -ret
,
424 "ERROR: Could not read data file name");
428 printf("Qcow2: Got external data file %s\n", s
->image_data_file
);
434 /* unknown magic - save it in case we need to rewrite the header */
435 /* If you add a new feature, make sure to also update the fast
436 * path of qcow2_make_empty() to deal with it. */
438 Qcow2UnknownHeaderExtension
*uext
;
440 uext
= g_malloc0(sizeof(*uext
) + ext
.len
);
441 uext
->magic
= ext
.magic
;
443 QLIST_INSERT_HEAD(&s
->unknown_header_ext
, uext
, next
);
445 ret
= bdrv_pread(bs
->file
, offset
, uext
->len
, uext
->data
, 0);
447 error_setg_errno(errp
, -ret
, "ERROR: unknown extension: "
448 "Could not read data");
455 offset
+= ((ext
.len
+ 7) & ~7);
461 static void cleanup_unknown_header_ext(BlockDriverState
*bs
)
463 BDRVQcow2State
*s
= bs
->opaque
;
464 Qcow2UnknownHeaderExtension
*uext
, *next
;
466 QLIST_FOREACH_SAFE(uext
, &s
->unknown_header_ext
, next
, next
) {
467 QLIST_REMOVE(uext
, next
);
472 static void report_unsupported_feature(Error
**errp
, Qcow2Feature
*table
,
475 g_autoptr(GString
) features
= g_string_sized_new(60);
477 while (table
&& table
->name
[0] != '\0') {
478 if (table
->type
== QCOW2_FEAT_TYPE_INCOMPATIBLE
) {
479 if (mask
& (1ULL << table
->bit
)) {
480 if (features
->len
> 0) {
481 g_string_append(features
, ", ");
483 g_string_append_printf(features
, "%.46s", table
->name
);
484 mask
&= ~(1ULL << table
->bit
);
491 if (features
->len
> 0) {
492 g_string_append(features
, ", ");
494 g_string_append_printf(features
,
495 "Unknown incompatible feature: %" PRIx64
, mask
);
498 error_setg(errp
, "Unsupported qcow2 feature(s): %s", features
->str
);
502 * Sets the dirty bit and flushes afterwards if necessary.
504 * The incompatible_features bit is only set if the image file header was
505 * updated successfully. Therefore it is not required to check the return
506 * value of this function.
508 int qcow2_mark_dirty(BlockDriverState
*bs
)
510 BDRVQcow2State
*s
= bs
->opaque
;
514 assert(s
->qcow_version
>= 3);
516 if (s
->incompatible_features
& QCOW2_INCOMPAT_DIRTY
) {
517 return 0; /* already dirty */
520 val
= cpu_to_be64(s
->incompatible_features
| QCOW2_INCOMPAT_DIRTY
);
521 ret
= bdrv_pwrite_sync(bs
->file
,
522 offsetof(QCowHeader
, incompatible_features
),
523 sizeof(val
), &val
, 0);
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
, bool open_data_file
,
1302 BDRVQcow2State
*s
= bs
->opaque
;
1303 unsigned int len
, i
;
1307 uint64_t l1_vm_state_index
;
1308 bool update_header
= false;
1310 ret
= bdrv_co_pread(bs
->file
, 0, sizeof(header
), &header
, 0);
1312 error_setg_errno(errp
, -ret
, "Could not read qcow2 header");
1315 header
.magic
= be32_to_cpu(header
.magic
);
1316 header
.version
= be32_to_cpu(header
.version
);
1317 header
.backing_file_offset
= be64_to_cpu(header
.backing_file_offset
);
1318 header
.backing_file_size
= be32_to_cpu(header
.backing_file_size
);
1319 header
.size
= be64_to_cpu(header
.size
);
1320 header
.cluster_bits
= be32_to_cpu(header
.cluster_bits
);
1321 header
.crypt_method
= be32_to_cpu(header
.crypt_method
);
1322 header
.l1_table_offset
= be64_to_cpu(header
.l1_table_offset
);
1323 header
.l1_size
= be32_to_cpu(header
.l1_size
);
1324 header
.refcount_table_offset
= be64_to_cpu(header
.refcount_table_offset
);
1325 header
.refcount_table_clusters
=
1326 be32_to_cpu(header
.refcount_table_clusters
);
1327 header
.snapshots_offset
= be64_to_cpu(header
.snapshots_offset
);
1328 header
.nb_snapshots
= be32_to_cpu(header
.nb_snapshots
);
1330 if (header
.magic
!= QCOW_MAGIC
) {
1331 error_setg(errp
, "Image is not in qcow2 format");
1335 if (header
.version
< 2 || header
.version
> 3) {
1336 error_setg(errp
, "Unsupported qcow2 version %" PRIu32
, header
.version
);
1341 s
->qcow_version
= header
.version
;
1343 /* Initialise cluster size */
1344 if (header
.cluster_bits
< MIN_CLUSTER_BITS
||
1345 header
.cluster_bits
> MAX_CLUSTER_BITS
) {
1346 error_setg(errp
, "Unsupported cluster size: 2^%" PRIu32
,
1347 header
.cluster_bits
);
1352 s
->cluster_bits
= header
.cluster_bits
;
1353 s
->cluster_size
= 1 << s
->cluster_bits
;
1355 /* Initialise version 3 header fields */
1356 if (header
.version
== 2) {
1357 header
.incompatible_features
= 0;
1358 header
.compatible_features
= 0;
1359 header
.autoclear_features
= 0;
1360 header
.refcount_order
= 4;
1361 header
.header_length
= 72;
1363 header
.incompatible_features
=
1364 be64_to_cpu(header
.incompatible_features
);
1365 header
.compatible_features
= be64_to_cpu(header
.compatible_features
);
1366 header
.autoclear_features
= be64_to_cpu(header
.autoclear_features
);
1367 header
.refcount_order
= be32_to_cpu(header
.refcount_order
);
1368 header
.header_length
= be32_to_cpu(header
.header_length
);
1370 if (header
.header_length
< 104) {
1371 error_setg(errp
, "qcow2 header too short");
1377 if (header
.header_length
> s
->cluster_size
) {
1378 error_setg(errp
, "qcow2 header exceeds cluster size");
1383 if (header
.header_length
> sizeof(header
)) {
1384 s
->unknown_header_fields_size
= header
.header_length
- sizeof(header
);
1385 s
->unknown_header_fields
= g_malloc(s
->unknown_header_fields_size
);
1386 ret
= bdrv_co_pread(bs
->file
, sizeof(header
),
1387 s
->unknown_header_fields_size
,
1388 s
->unknown_header_fields
, 0);
1390 error_setg_errno(errp
, -ret
, "Could not read unknown qcow2 header "
1396 if (header
.backing_file_offset
> s
->cluster_size
) {
1397 error_setg(errp
, "Invalid backing file offset");
1402 if (header
.backing_file_offset
) {
1403 ext_end
= header
.backing_file_offset
;
1405 ext_end
= 1 << header
.cluster_bits
;
1408 /* Handle feature bits */
1409 s
->incompatible_features
= header
.incompatible_features
;
1410 s
->compatible_features
= header
.compatible_features
;
1411 s
->autoclear_features
= header
.autoclear_features
;
1414 * Handle compression type
1415 * Older qcow2 images don't contain the compression type header.
1416 * Distinguish them by the header length and use
1417 * the only valid (default) compression type in that case
1419 if (header
.header_length
> offsetof(QCowHeader
, compression_type
)) {
1420 s
->compression_type
= header
.compression_type
;
1422 s
->compression_type
= QCOW2_COMPRESSION_TYPE_ZLIB
;
1425 ret
= validate_compression_type(s
, errp
);
1430 if (s
->incompatible_features
& ~QCOW2_INCOMPAT_MASK
) {
1431 void *feature_table
= NULL
;
1432 qcow2_read_extensions(bs
, header
.header_length
, ext_end
,
1433 &feature_table
, flags
, NULL
, NULL
);
1434 report_unsupported_feature(errp
, feature_table
,
1435 s
->incompatible_features
&
1436 ~QCOW2_INCOMPAT_MASK
);
1438 g_free(feature_table
);
1442 if (s
->incompatible_features
& QCOW2_INCOMPAT_CORRUPT
) {
1443 /* Corrupt images may not be written to unless they are being repaired
1445 if ((flags
& BDRV_O_RDWR
) && !(flags
& BDRV_O_CHECK
)) {
1446 error_setg(errp
, "qcow2: Image is corrupt; cannot be opened "
1453 s
->subclusters_per_cluster
=
1454 has_subclusters(s
) ? QCOW_EXTL2_SUBCLUSTERS_PER_CLUSTER
: 1;
1455 s
->subcluster_size
= s
->cluster_size
/ s
->subclusters_per_cluster
;
1456 s
->subcluster_bits
= ctz32(s
->subcluster_size
);
1458 if (s
->subcluster_size
< (1 << MIN_CLUSTER_BITS
)) {
1459 error_setg(errp
, "Unsupported subcluster size: %d", s
->subcluster_size
);
1464 /* Check support for various header values */
1465 if (header
.refcount_order
> 6) {
1466 error_setg(errp
, "Reference count entry width too large; may not "
1471 s
->refcount_order
= header
.refcount_order
;
1472 s
->refcount_bits
= 1 << s
->refcount_order
;
1473 s
->refcount_max
= UINT64_C(1) << (s
->refcount_bits
- 1);
1474 s
->refcount_max
+= s
->refcount_max
- 1;
1476 s
->crypt_method_header
= header
.crypt_method
;
1477 if (s
->crypt_method_header
) {
1478 if (bdrv_uses_whitelist() &&
1479 s
->crypt_method_header
== QCOW_CRYPT_AES
) {
1481 "Use of AES-CBC encrypted qcow2 images is no longer "
1482 "supported in system emulators");
1483 error_append_hint(errp
,
1484 "You can use 'qemu-img convert' to convert your "
1485 "image to an alternative supported format, such "
1486 "as unencrypted qcow2, or raw with the LUKS "
1487 "format instead.\n");
1492 if (s
->crypt_method_header
== QCOW_CRYPT_AES
) {
1493 s
->crypt_physical_offset
= false;
1495 /* Assuming LUKS and any future crypt methods we
1496 * add will all use physical offsets, due to the
1497 * fact that the alternative is insecure... */
1498 s
->crypt_physical_offset
= true;
1501 bs
->encrypted
= true;
1504 s
->l2_bits
= s
->cluster_bits
- ctz32(l2_entry_size(s
));
1505 s
->l2_size
= 1 << s
->l2_bits
;
1506 /* 2^(s->refcount_order - 3) is the refcount width in bytes */
1507 s
->refcount_block_bits
= s
->cluster_bits
- (s
->refcount_order
- 3);
1508 s
->refcount_block_size
= 1 << s
->refcount_block_bits
;
1509 bs
->total_sectors
= header
.size
/ BDRV_SECTOR_SIZE
;
1510 s
->csize_shift
= (62 - (s
->cluster_bits
- 8));
1511 s
->csize_mask
= (1 << (s
->cluster_bits
- 8)) - 1;
1512 s
->cluster_offset_mask
= (1LL << s
->csize_shift
) - 1;
1514 s
->refcount_table_offset
= header
.refcount_table_offset
;
1515 s
->refcount_table_size
=
1516 header
.refcount_table_clusters
<< (s
->cluster_bits
- 3);
1518 if (header
.refcount_table_clusters
== 0 && !(flags
& BDRV_O_CHECK
)) {
1519 error_setg(errp
, "Image does not contain a reference count table");
1524 ret
= qcow2_validate_table(bs
, s
->refcount_table_offset
,
1525 header
.refcount_table_clusters
,
1526 s
->cluster_size
, QCOW_MAX_REFTABLE_SIZE
,
1527 "Reference count table", errp
);
1532 if (!(flags
& BDRV_O_CHECK
)) {
1534 * The total size in bytes of the snapshot table is checked in
1535 * qcow2_read_snapshots() because the size of each snapshot is
1536 * variable and we don't know it yet.
1537 * Here we only check the offset and number of snapshots.
1539 ret
= qcow2_validate_table(bs
, header
.snapshots_offset
,
1540 header
.nb_snapshots
,
1541 sizeof(QCowSnapshotHeader
),
1542 sizeof(QCowSnapshotHeader
) *
1544 "Snapshot table", errp
);
1550 /* read the level 1 table */
1551 ret
= qcow2_validate_table(bs
, header
.l1_table_offset
,
1552 header
.l1_size
, L1E_SIZE
,
1553 QCOW_MAX_L1_SIZE
, "Active L1 table", errp
);
1557 s
->l1_size
= header
.l1_size
;
1558 s
->l1_table_offset
= header
.l1_table_offset
;
1560 l1_vm_state_index
= size_to_l1(s
, header
.size
);
1561 if (l1_vm_state_index
> INT_MAX
) {
1562 error_setg(errp
, "Image is too big");
1566 s
->l1_vm_state_index
= l1_vm_state_index
;
1568 /* the L1 table must contain at least enough entries to put
1569 header.size bytes */
1570 if (s
->l1_size
< s
->l1_vm_state_index
) {
1571 error_setg(errp
, "L1 table is too small");
1576 if (s
->l1_size
> 0) {
1577 s
->l1_table
= qemu_try_blockalign(bs
->file
->bs
, s
->l1_size
* L1E_SIZE
);
1578 if (s
->l1_table
== NULL
) {
1579 error_setg(errp
, "Could not allocate L1 table");
1583 ret
= bdrv_co_pread(bs
->file
, s
->l1_table_offset
, s
->l1_size
* L1E_SIZE
,
1586 error_setg_errno(errp
, -ret
, "Could not read L1 table");
1589 for(i
= 0;i
< s
->l1_size
; i
++) {
1590 s
->l1_table
[i
] = be64_to_cpu(s
->l1_table
[i
]);
1594 /* Parse driver-specific options */
1595 ret
= qcow2_update_options(bs
, options
, flags
, errp
);
1602 ret
= qcow2_refcount_init(bs
);
1604 error_setg_errno(errp
, -ret
, "Could not initialize refcount handling");
1608 QLIST_INIT(&s
->cluster_allocs
);
1609 QTAILQ_INIT(&s
->discards
);
1611 /* read qcow2 extensions */
1612 if (qcow2_read_extensions(bs
, header
.header_length
, ext_end
, NULL
,
1613 flags
, &update_header
, errp
)) {
1618 if (open_data_file
) {
1619 /* Open external data file */
1620 s
->data_file
= bdrv_co_open_child(NULL
, options
, "data-file", bs
,
1621 &child_of_bds
, BDRV_CHILD_DATA
,
1628 if (s
->incompatible_features
& QCOW2_INCOMPAT_DATA_FILE
) {
1629 if (!s
->data_file
&& s
->image_data_file
) {
1630 s
->data_file
= bdrv_co_open_child(s
->image_data_file
, options
,
1633 BDRV_CHILD_DATA
, false, errp
);
1634 if (!s
->data_file
) {
1639 if (!s
->data_file
) {
1640 error_setg(errp
, "'data-file' is required for this image");
1646 bs
->file
->role
&= ~BDRV_CHILD_DATA
;
1648 /* Must succeed because we have given up permissions if anything */
1649 bdrv_child_refresh_perms(bs
, bs
->file
, &error_abort
);
1652 error_setg(errp
, "'data-file' can only be set for images with "
1653 "an external data file");
1658 s
->data_file
= bs
->file
;
1660 if (data_file_is_raw(bs
)) {
1661 error_setg(errp
, "data-file-raw requires a data file");
1668 /* qcow2_read_extension may have set up the crypto context
1669 * if the crypt method needs a header region, some methods
1670 * don't need header extensions, so must check here
1672 if (s
->crypt_method_header
&& !s
->crypto
) {
1673 if (s
->crypt_method_header
== QCOW_CRYPT_AES
) {
1674 unsigned int cflags
= 0;
1675 if (flags
& BDRV_O_NO_IO
) {
1676 cflags
|= QCRYPTO_BLOCK_OPEN_NO_IO
;
1678 s
->crypto
= qcrypto_block_open(s
->crypto_opts
, "encrypt.",
1680 QCOW2_MAX_THREADS
, errp
);
1685 } else if (!(flags
& BDRV_O_NO_IO
)) {
1686 error_setg(errp
, "Missing CRYPTO header for crypt method %d",
1687 s
->crypt_method_header
);
1693 /* read the backing file name */
1694 if (header
.backing_file_offset
!= 0) {
1695 len
= header
.backing_file_size
;
1696 if (len
> MIN(1023, s
->cluster_size
- header
.backing_file_offset
) ||
1697 len
>= sizeof(bs
->backing_file
)) {
1698 error_setg(errp
, "Backing file name too long");
1703 s
->image_backing_file
= g_malloc(len
+ 1);
1704 ret
= bdrv_co_pread(bs
->file
, header
.backing_file_offset
, len
,
1705 s
->image_backing_file
, 0);
1707 error_setg_errno(errp
, -ret
, "Could not read backing file name");
1710 s
->image_backing_file
[len
] = '\0';
1713 * Update only when something has changed. This function is called by
1714 * qcow2_co_invalidate_cache(), and we do not want to reset
1715 * auto_backing_file unless necessary.
1717 if (!g_str_equal(s
->image_backing_file
, bs
->backing_file
)) {
1718 pstrcpy(bs
->backing_file
, sizeof(bs
->backing_file
),
1719 s
->image_backing_file
);
1720 pstrcpy(bs
->auto_backing_file
, sizeof(bs
->auto_backing_file
),
1721 s
->image_backing_file
);
1726 * Internal snapshots; skip reading them in check mode, because
1727 * we do not need them then, and we do not want to abort because
1728 * of a broken table.
1730 if (!(flags
& BDRV_O_CHECK
)) {
1731 s
->snapshots_offset
= header
.snapshots_offset
;
1732 s
->nb_snapshots
= header
.nb_snapshots
;
1734 ret
= qcow2_read_snapshots(bs
, errp
);
1740 /* Clear unknown autoclear feature bits */
1741 update_header
|= s
->autoclear_features
& ~QCOW2_AUTOCLEAR_MASK
;
1742 update_header
= update_header
&& bdrv_is_writable(bs
);
1743 if (update_header
) {
1744 s
->autoclear_features
&= QCOW2_AUTOCLEAR_MASK
;
1747 /* == Handle persistent dirty bitmaps ==
1749 * We want load dirty bitmaps in three cases:
1751 * 1. Normal open of the disk in active mode, not related to invalidation
1754 * 2. Invalidation of the target vm after pre-copy phase of migration, if
1755 * bitmaps are _not_ migrating through migration channel, i.e.
1756 * 'dirty-bitmaps' capability is disabled.
1758 * 3. Invalidation of source vm after failed or canceled migration.
1759 * This is a very interesting case. There are two possible types of
1762 * A. Stored on inactivation and removed. They should be loaded from the
1765 * B. Not stored: not-persistent bitmaps and bitmaps, migrated through
1766 * the migration channel (with dirty-bitmaps capability).
1768 * On the other hand, there are two possible sub-cases:
1770 * 3.1 disk was changed by somebody else while were inactive. In this
1771 * case all in-RAM dirty bitmaps (both persistent and not) are
1772 * definitely invalid. And we don't have any method to determine
1775 * Simple and safe thing is to just drop all the bitmaps of type B on
1776 * inactivation. But in this case we lose bitmaps in valid 4.2 case.
1778 * On the other hand, resuming source vm, if disk was already changed
1779 * is a bad thing anyway: not only bitmaps, the whole vm state is
1780 * out of sync with disk.
1782 * This means, that user or management tool, who for some reason
1783 * decided to resume source vm, after disk was already changed by
1784 * target vm, should at least drop all dirty bitmaps by hand.
1786 * So, we can ignore this case for now, but TODO: "generation"
1787 * extension for qcow2, to determine, that image was changed after
1788 * last inactivation. And if it is changed, we will drop (or at least
1789 * mark as 'invalid' all the bitmaps of type B, both persistent
1792 * 3.2 disk was _not_ changed while were inactive. Bitmaps may be saved
1793 * to disk ('dirty-bitmaps' capability disabled), or not saved
1794 * ('dirty-bitmaps' capability enabled), but we don't need to care
1795 * of: let's load bitmaps as always: stored bitmaps will be loaded,
1796 * and not stored has flag IN_USE=1 in the image and will be skipped
1799 * One remaining possible case when we don't want load bitmaps:
1801 * 4. Open disk in inactive mode in target vm (bitmaps are migrating or
1802 * will be loaded on invalidation, no needs try loading them before)
1805 if (!(bdrv_get_flags(bs
) & BDRV_O_INACTIVE
)) {
1806 /* It's case 1, 2 or 3.2. Or 3.1 which is BUG in management layer. */
1807 bool header_updated
;
1808 if (!qcow2_load_dirty_bitmaps(bs
, &header_updated
, errp
)) {
1813 update_header
= update_header
&& !header_updated
;
1816 if (update_header
) {
1817 ret
= qcow2_update_header(bs
);
1819 error_setg_errno(errp
, -ret
, "Could not update qcow2 header");
1824 bs
->supported_zero_flags
= header
.version
>= 3 ?
1825 BDRV_REQ_MAY_UNMAP
| BDRV_REQ_NO_FALLBACK
: 0;
1826 bs
->supported_truncate_flags
= BDRV_REQ_ZERO_WRITE
;
1828 /* Repair image if dirty */
1829 if (!(flags
& BDRV_O_CHECK
) && bdrv_is_writable(bs
) &&
1830 (s
->incompatible_features
& QCOW2_INCOMPAT_DIRTY
)) {
1831 BdrvCheckResult result
= {0};
1833 ret
= qcow2_co_check_locked(bs
, &result
,
1834 BDRV_FIX_ERRORS
| BDRV_FIX_LEAKS
);
1835 if (ret
< 0 || result
.check_errors
) {
1839 error_setg_errno(errp
, -ret
, "Could not repair dirty image");
1846 BdrvCheckResult result
= {0};
1847 qcow2_check_refcounts(bs
, &result
, 0);
1851 qemu_co_queue_init(&s
->thread_task_queue
);
1856 g_free(s
->image_data_file
);
1857 if (open_data_file
&& has_data_file(bs
)) {
1858 bdrv_unref_child(bs
, s
->data_file
);
1859 s
->data_file
= NULL
;
1861 g_free(s
->unknown_header_fields
);
1862 cleanup_unknown_header_ext(bs
);
1863 qcow2_free_snapshots(bs
);
1864 qcow2_refcount_close(bs
);
1865 qemu_vfree(s
->l1_table
);
1866 /* else pre-write overlap checks in cache_destroy may crash */
1868 cache_clean_timer_del(bs
);
1869 if (s
->l2_table_cache
) {
1870 qcow2_cache_destroy(s
->l2_table_cache
);
1872 if (s
->refcount_block_cache
) {
1873 qcow2_cache_destroy(s
->refcount_block_cache
);
1875 qcrypto_block_free(s
->crypto
);
1876 qapi_free_QCryptoBlockOpenOptions(s
->crypto_opts
);
1880 typedef struct QCow2OpenCo
{
1881 BlockDriverState
*bs
;
1888 static void coroutine_fn
qcow2_open_entry(void *opaque
)
1890 QCow2OpenCo
*qoc
= opaque
;
1891 BDRVQcow2State
*s
= qoc
->bs
->opaque
;
1893 qemu_co_mutex_lock(&s
->lock
);
1894 qoc
->ret
= qcow2_do_open(qoc
->bs
, qoc
->options
, qoc
->flags
, true,
1896 qemu_co_mutex_unlock(&s
->lock
);
1899 static int qcow2_open(BlockDriverState
*bs
, QDict
*options
, int flags
,
1902 BDRVQcow2State
*s
= bs
->opaque
;
1912 ret
= bdrv_open_file_child(NULL
, options
, "file", bs
, errp
);
1917 /* Initialise locks */
1918 qemu_co_mutex_init(&s
->lock
);
1920 if (qemu_in_coroutine()) {
1921 /* From bdrv_co_create. */
1922 qcow2_open_entry(&qoc
);
1924 assert(qemu_get_current_aio_context() == qemu_get_aio_context());
1925 qemu_coroutine_enter(qemu_coroutine_create(qcow2_open_entry
, &qoc
));
1926 BDRV_POLL_WHILE(bs
, qoc
.ret
== -EINPROGRESS
);
1931 static void qcow2_refresh_limits(BlockDriverState
*bs
, Error
**errp
)
1933 BDRVQcow2State
*s
= bs
->opaque
;
1935 if (bs
->encrypted
) {
1936 /* Encryption works on a sector granularity */
1937 bs
->bl
.request_alignment
= qcrypto_block_get_sector_size(s
->crypto
);
1939 bs
->bl
.pwrite_zeroes_alignment
= s
->subcluster_size
;
1940 bs
->bl
.pdiscard_alignment
= s
->cluster_size
;
1943 static int qcow2_reopen_prepare(BDRVReopenState
*state
,
1944 BlockReopenQueue
*queue
, Error
**errp
)
1946 BDRVQcow2State
*s
= state
->bs
->opaque
;
1947 Qcow2ReopenState
*r
;
1950 r
= g_new0(Qcow2ReopenState
, 1);
1953 ret
= qcow2_update_options_prepare(state
->bs
, r
, state
->options
,
1954 state
->flags
, errp
);
1959 /* We need to write out any unwritten data if we reopen read-only. */
1960 if ((state
->flags
& BDRV_O_RDWR
) == 0) {
1961 ret
= qcow2_reopen_bitmaps_ro(state
->bs
, errp
);
1966 ret
= bdrv_flush(state
->bs
);
1971 ret
= qcow2_mark_clean(state
->bs
);
1978 * Without an external data file, s->data_file points to the same BdrvChild
1979 * as bs->file. It needs to be resynced after reopen because bs->file may
1980 * be changed. We can't use it in the meantime.
1982 if (!has_data_file(state
->bs
)) {
1983 assert(s
->data_file
== state
->bs
->file
);
1984 s
->data_file
= NULL
;
1990 qcow2_update_options_abort(state
->bs
, r
);
1995 static void qcow2_reopen_commit(BDRVReopenState
*state
)
1997 BDRVQcow2State
*s
= state
->bs
->opaque
;
1999 qcow2_update_options_commit(state
->bs
, state
->opaque
);
2000 if (!s
->data_file
) {
2002 * If we don't have an external data file, s->data_file was cleared by
2003 * qcow2_reopen_prepare() and needs to be updated.
2005 s
->data_file
= state
->bs
->file
;
2007 g_free(state
->opaque
);
2010 static void qcow2_reopen_commit_post(BDRVReopenState
*state
)
2012 if (state
->flags
& BDRV_O_RDWR
) {
2013 Error
*local_err
= NULL
;
2015 if (qcow2_reopen_bitmaps_rw(state
->bs
, &local_err
) < 0) {
2017 * This is not fatal, bitmaps just left read-only, so all following
2018 * writes will fail. User can remove read-only bitmaps to unblock
2019 * writes or retry reopen.
2021 error_reportf_err(local_err
,
2022 "%s: Failed to make dirty bitmaps writable: ",
2023 bdrv_get_node_name(state
->bs
));
2028 static void qcow2_reopen_abort(BDRVReopenState
*state
)
2030 BDRVQcow2State
*s
= state
->bs
->opaque
;
2032 if (!s
->data_file
) {
2034 * If we don't have an external data file, s->data_file was cleared by
2035 * qcow2_reopen_prepare() and needs to be restored.
2037 s
->data_file
= state
->bs
->file
;
2039 qcow2_update_options_abort(state
->bs
, state
->opaque
);
2040 g_free(state
->opaque
);
2043 static void qcow2_join_options(QDict
*options
, QDict
*old_options
)
2045 bool has_new_overlap_template
=
2046 qdict_haskey(options
, QCOW2_OPT_OVERLAP
) ||
2047 qdict_haskey(options
, QCOW2_OPT_OVERLAP_TEMPLATE
);
2048 bool has_new_total_cache_size
=
2049 qdict_haskey(options
, QCOW2_OPT_CACHE_SIZE
);
2050 bool has_all_cache_options
;
2052 /* New overlap template overrides all old overlap options */
2053 if (has_new_overlap_template
) {
2054 qdict_del(old_options
, QCOW2_OPT_OVERLAP
);
2055 qdict_del(old_options
, QCOW2_OPT_OVERLAP_TEMPLATE
);
2056 qdict_del(old_options
, QCOW2_OPT_OVERLAP_MAIN_HEADER
);
2057 qdict_del(old_options
, QCOW2_OPT_OVERLAP_ACTIVE_L1
);
2058 qdict_del(old_options
, QCOW2_OPT_OVERLAP_ACTIVE_L2
);
2059 qdict_del(old_options
, QCOW2_OPT_OVERLAP_REFCOUNT_TABLE
);
2060 qdict_del(old_options
, QCOW2_OPT_OVERLAP_REFCOUNT_BLOCK
);
2061 qdict_del(old_options
, QCOW2_OPT_OVERLAP_SNAPSHOT_TABLE
);
2062 qdict_del(old_options
, QCOW2_OPT_OVERLAP_INACTIVE_L1
);
2063 qdict_del(old_options
, QCOW2_OPT_OVERLAP_INACTIVE_L2
);
2066 /* New total cache size overrides all old options */
2067 if (qdict_haskey(options
, QCOW2_OPT_CACHE_SIZE
)) {
2068 qdict_del(old_options
, QCOW2_OPT_L2_CACHE_SIZE
);
2069 qdict_del(old_options
, QCOW2_OPT_REFCOUNT_CACHE_SIZE
);
2072 qdict_join(options
, old_options
, false);
2075 * If after merging all cache size options are set, an old total size is
2076 * overwritten. Do keep all options, however, if all three are new. The
2077 * resulting error message is what we want to happen.
2079 has_all_cache_options
=
2080 qdict_haskey(options
, QCOW2_OPT_CACHE_SIZE
) ||
2081 qdict_haskey(options
, QCOW2_OPT_L2_CACHE_SIZE
) ||
2082 qdict_haskey(options
, QCOW2_OPT_REFCOUNT_CACHE_SIZE
);
2084 if (has_all_cache_options
&& !has_new_total_cache_size
) {
2085 qdict_del(options
, QCOW2_OPT_CACHE_SIZE
);
2089 static int coroutine_fn
qcow2_co_block_status(BlockDriverState
*bs
,
2091 int64_t offset
, int64_t count
,
2092 int64_t *pnum
, int64_t *map
,
2093 BlockDriverState
**file
)
2095 BDRVQcow2State
*s
= bs
->opaque
;
2096 uint64_t host_offset
;
2098 QCow2SubclusterType type
;
2099 int ret
, status
= 0;
2101 qemu_co_mutex_lock(&s
->lock
);
2103 if (!s
->metadata_preallocation_checked
) {
2104 ret
= qcow2_detect_metadata_preallocation(bs
);
2105 s
->metadata_preallocation
= (ret
== 1);
2106 s
->metadata_preallocation_checked
= true;
2109 bytes
= MIN(INT_MAX
, count
);
2110 ret
= qcow2_get_host_offset(bs
, offset
, &bytes
, &host_offset
, &type
);
2111 qemu_co_mutex_unlock(&s
->lock
);
2118 if ((type
== QCOW2_SUBCLUSTER_NORMAL
||
2119 type
== QCOW2_SUBCLUSTER_ZERO_ALLOC
||
2120 type
== QCOW2_SUBCLUSTER_UNALLOCATED_ALLOC
) && !s
->crypto
) {
2122 *file
= s
->data_file
->bs
;
2123 status
|= BDRV_BLOCK_OFFSET_VALID
;
2125 if (type
== QCOW2_SUBCLUSTER_ZERO_PLAIN
||
2126 type
== QCOW2_SUBCLUSTER_ZERO_ALLOC
) {
2127 status
|= BDRV_BLOCK_ZERO
;
2128 } else if (type
!= QCOW2_SUBCLUSTER_UNALLOCATED_PLAIN
&&
2129 type
!= QCOW2_SUBCLUSTER_UNALLOCATED_ALLOC
) {
2130 status
|= BDRV_BLOCK_DATA
;
2132 if (s
->metadata_preallocation
&& (status
& BDRV_BLOCK_DATA
) &&
2133 (status
& BDRV_BLOCK_OFFSET_VALID
))
2135 status
|= BDRV_BLOCK_RECURSE
;
2140 static coroutine_fn
int qcow2_handle_l2meta(BlockDriverState
*bs
,
2141 QCowL2Meta
**pl2meta
,
2145 QCowL2Meta
*l2meta
= *pl2meta
;
2147 while (l2meta
!= NULL
) {
2151 ret
= qcow2_alloc_cluster_link_l2(bs
, l2meta
);
2156 qcow2_alloc_cluster_abort(bs
, l2meta
);
2159 /* Take the request off the list of running requests */
2160 QLIST_REMOVE(l2meta
, next_in_flight
);
2162 qemu_co_queue_restart_all(&l2meta
->dependent_requests
);
2164 next
= l2meta
->next
;
2173 static coroutine_fn
int
2174 qcow2_co_preadv_encrypted(BlockDriverState
*bs
,
2175 uint64_t host_offset
,
2179 uint64_t qiov_offset
)
2182 BDRVQcow2State
*s
= bs
->opaque
;
2185 assert(bs
->encrypted
&& s
->crypto
);
2186 assert(bytes
<= QCOW_MAX_CRYPT_CLUSTERS
* s
->cluster_size
);
2189 * For encrypted images, read everything into a temporary
2190 * contiguous buffer on which the AES functions can work.
2191 * Also, decryption in a separate buffer is better as it
2192 * prevents the guest from learning information about the
2193 * encrypted nature of the virtual disk.
2196 buf
= qemu_try_blockalign(s
->data_file
->bs
, bytes
);
2201 BLKDBG_EVENT(bs
->file
, BLKDBG_READ_AIO
);
2202 ret
= bdrv_co_pread(s
->data_file
, host_offset
, bytes
, buf
, 0);
2207 if (qcow2_co_decrypt(bs
, host_offset
, offset
, buf
, bytes
) < 0)
2212 qemu_iovec_from_buf(qiov
, qiov_offset
, buf
, bytes
);
2220 typedef struct Qcow2AioTask
{
2223 BlockDriverState
*bs
;
2224 QCow2SubclusterType subcluster_type
; /* only for read */
2225 uint64_t host_offset
; /* or l2_entry for compressed read */
2229 uint64_t qiov_offset
;
2230 QCowL2Meta
*l2meta
; /* only for write */
2233 static coroutine_fn
int qcow2_co_preadv_task_entry(AioTask
*task
);
2234 static coroutine_fn
int qcow2_add_task(BlockDriverState
*bs
,
2237 QCow2SubclusterType subcluster_type
,
2238 uint64_t host_offset
,
2245 Qcow2AioTask local_task
;
2246 Qcow2AioTask
*task
= pool
? g_new(Qcow2AioTask
, 1) : &local_task
;
2248 *task
= (Qcow2AioTask
) {
2251 .subcluster_type
= subcluster_type
,
2253 .host_offset
= host_offset
,
2256 .qiov_offset
= qiov_offset
,
2260 trace_qcow2_add_task(qemu_coroutine_self(), bs
, pool
,
2261 func
== qcow2_co_preadv_task_entry
? "read" : "write",
2262 subcluster_type
, host_offset
, offset
, bytes
,
2266 return func(&task
->task
);
2269 aio_task_pool_start_task(pool
, &task
->task
);
2274 static coroutine_fn
int qcow2_co_preadv_task(BlockDriverState
*bs
,
2275 QCow2SubclusterType subc_type
,
2276 uint64_t host_offset
,
2277 uint64_t offset
, uint64_t bytes
,
2281 BDRVQcow2State
*s
= bs
->opaque
;
2283 switch (subc_type
) {
2284 case QCOW2_SUBCLUSTER_ZERO_PLAIN
:
2285 case QCOW2_SUBCLUSTER_ZERO_ALLOC
:
2286 /* Both zero types are handled in qcow2_co_preadv_part */
2287 g_assert_not_reached();
2289 case QCOW2_SUBCLUSTER_UNALLOCATED_PLAIN
:
2290 case QCOW2_SUBCLUSTER_UNALLOCATED_ALLOC
:
2291 assert(bs
->backing
); /* otherwise handled in qcow2_co_preadv_part */
2293 BLKDBG_EVENT(bs
->file
, BLKDBG_READ_BACKING_AIO
);
2294 return bdrv_co_preadv_part(bs
->backing
, offset
, bytes
,
2295 qiov
, qiov_offset
, 0);
2297 case QCOW2_SUBCLUSTER_COMPRESSED
:
2298 return qcow2_co_preadv_compressed(bs
, host_offset
,
2299 offset
, bytes
, qiov
, qiov_offset
);
2301 case QCOW2_SUBCLUSTER_NORMAL
:
2302 if (bs
->encrypted
) {
2303 return qcow2_co_preadv_encrypted(bs
, host_offset
,
2304 offset
, bytes
, qiov
, qiov_offset
);
2307 BLKDBG_EVENT(bs
->file
, BLKDBG_READ_AIO
);
2308 return bdrv_co_preadv_part(s
->data_file
, host_offset
,
2309 bytes
, qiov
, qiov_offset
, 0);
2312 g_assert_not_reached();
2315 g_assert_not_reached();
2318 static coroutine_fn
int qcow2_co_preadv_task_entry(AioTask
*task
)
2320 Qcow2AioTask
*t
= container_of(task
, Qcow2AioTask
, task
);
2324 return qcow2_co_preadv_task(t
->bs
, t
->subcluster_type
,
2325 t
->host_offset
, t
->offset
, t
->bytes
,
2326 t
->qiov
, t
->qiov_offset
);
2329 static coroutine_fn
int qcow2_co_preadv_part(BlockDriverState
*bs
,
2330 int64_t offset
, int64_t bytes
,
2333 BdrvRequestFlags flags
)
2335 BDRVQcow2State
*s
= bs
->opaque
;
2337 unsigned int cur_bytes
; /* number of bytes in current iteration */
2338 uint64_t host_offset
= 0;
2339 QCow2SubclusterType type
;
2340 AioTaskPool
*aio
= NULL
;
2342 while (bytes
!= 0 && aio_task_pool_status(aio
) == 0) {
2343 /* prepare next request */
2344 cur_bytes
= MIN(bytes
, INT_MAX
);
2346 cur_bytes
= MIN(cur_bytes
,
2347 QCOW_MAX_CRYPT_CLUSTERS
* s
->cluster_size
);
2350 qemu_co_mutex_lock(&s
->lock
);
2351 ret
= qcow2_get_host_offset(bs
, offset
, &cur_bytes
,
2352 &host_offset
, &type
);
2353 qemu_co_mutex_unlock(&s
->lock
);
2358 if (type
== QCOW2_SUBCLUSTER_ZERO_PLAIN
||
2359 type
== QCOW2_SUBCLUSTER_ZERO_ALLOC
||
2360 (type
== QCOW2_SUBCLUSTER_UNALLOCATED_PLAIN
&& !bs
->backing
) ||
2361 (type
== QCOW2_SUBCLUSTER_UNALLOCATED_ALLOC
&& !bs
->backing
))
2363 qemu_iovec_memset(qiov
, qiov_offset
, 0, cur_bytes
);
2365 if (!aio
&& cur_bytes
!= bytes
) {
2366 aio
= aio_task_pool_new(QCOW2_MAX_WORKERS
);
2368 ret
= qcow2_add_task(bs
, aio
, qcow2_co_preadv_task_entry
, type
,
2369 host_offset
, offset
, cur_bytes
,
2370 qiov
, qiov_offset
, NULL
);
2377 offset
+= cur_bytes
;
2378 qiov_offset
+= cur_bytes
;
2383 aio_task_pool_wait_all(aio
);
2385 ret
= aio_task_pool_status(aio
);
2393 /* Check if it's possible to merge a write request with the writing of
2394 * the data from the COW regions */
2395 static bool merge_cow(uint64_t offset
, unsigned bytes
,
2396 QEMUIOVector
*qiov
, size_t qiov_offset
,
2401 for (m
= l2meta
; m
!= NULL
; m
= m
->next
) {
2402 /* If both COW regions are empty then there's nothing to merge */
2403 if (m
->cow_start
.nb_bytes
== 0 && m
->cow_end
.nb_bytes
== 0) {
2407 /* If COW regions are handled already, skip this too */
2413 * The write request should start immediately after the first
2414 * COW region. This does not always happen because the area
2415 * touched by the request can be larger than the one defined
2416 * by @m (a single request can span an area consisting of a
2417 * mix of previously unallocated and allocated clusters, that
2418 * is why @l2meta is a list).
2420 if (l2meta_cow_start(m
) + m
->cow_start
.nb_bytes
!= offset
) {
2421 /* In this case the request starts before this region */
2422 assert(offset
< l2meta_cow_start(m
));
2423 assert(m
->cow_start
.nb_bytes
== 0);
2427 /* The write request should end immediately before the second
2428 * COW region (see above for why it does not always happen) */
2429 if (m
->offset
+ m
->cow_end
.offset
!= offset
+ bytes
) {
2430 assert(offset
+ bytes
> m
->offset
+ m
->cow_end
.offset
);
2431 assert(m
->cow_end
.nb_bytes
== 0);
2435 /* Make sure that adding both COW regions to the QEMUIOVector
2436 * does not exceed IOV_MAX */
2437 if (qemu_iovec_subvec_niov(qiov
, qiov_offset
, bytes
) > IOV_MAX
- 2) {
2441 m
->data_qiov
= qiov
;
2442 m
->data_qiov_offset
= qiov_offset
;
2450 * Return 1 if the COW regions read as zeroes, 0 if not, < 0 on error.
2451 * Note that returning 0 does not guarantee non-zero data.
2453 static int coroutine_fn GRAPH_RDLOCK
2454 is_zero_cow(BlockDriverState
*bs
, QCowL2Meta
*m
)
2457 * This check is designed for optimization shortcut so it must be
2459 * Instead of is_zero(), use bdrv_co_is_zero_fast() as it is
2460 * faster (but not as accurate and can result in false negatives).
2462 int ret
= bdrv_co_is_zero_fast(bs
, m
->offset
+ m
->cow_start
.offset
,
2463 m
->cow_start
.nb_bytes
);
2468 return bdrv_co_is_zero_fast(bs
, m
->offset
+ m
->cow_end
.offset
,
2469 m
->cow_end
.nb_bytes
);
2472 static int coroutine_fn GRAPH_RDLOCK
2473 handle_alloc_space(BlockDriverState
*bs
, QCowL2Meta
*l2meta
)
2475 BDRVQcow2State
*s
= bs
->opaque
;
2478 if (!(s
->data_file
->bs
->supported_zero_flags
& BDRV_REQ_NO_FALLBACK
)) {
2482 if (bs
->encrypted
) {
2486 for (m
= l2meta
; m
!= NULL
; m
= m
->next
) {
2488 uint64_t start_offset
= m
->alloc_offset
+ m
->cow_start
.offset
;
2489 unsigned nb_bytes
= m
->cow_end
.offset
+ m
->cow_end
.nb_bytes
-
2490 m
->cow_start
.offset
;
2492 if (!m
->cow_start
.nb_bytes
&& !m
->cow_end
.nb_bytes
) {
2496 ret
= is_zero_cow(bs
, m
);
2499 } else if (ret
== 0) {
2504 * instead of writing zero COW buffers,
2505 * efficiently zero out the whole clusters
2508 ret
= qcow2_pre_write_overlap_check(bs
, 0, start_offset
, nb_bytes
,
2514 BLKDBG_EVENT(bs
->file
, BLKDBG_CLUSTER_ALLOC_SPACE
);
2515 ret
= bdrv_co_pwrite_zeroes(s
->data_file
, start_offset
, nb_bytes
,
2516 BDRV_REQ_NO_FALLBACK
);
2518 if (ret
!= -ENOTSUP
&& ret
!= -EAGAIN
) {
2524 trace_qcow2_skip_cow(qemu_coroutine_self(), m
->offset
, m
->nb_clusters
);
2531 * qcow2_co_pwritev_task
2532 * Called with s->lock unlocked
2533 * l2meta - if not NULL, qcow2_co_pwritev_task() will consume it. Caller must
2534 * not use it somehow after qcow2_co_pwritev_task() call
2536 static coroutine_fn GRAPH_RDLOCK
2537 int qcow2_co_pwritev_task(BlockDriverState
*bs
, uint64_t host_offset
,
2538 uint64_t offset
, uint64_t bytes
, QEMUIOVector
*qiov
,
2539 uint64_t qiov_offset
, QCowL2Meta
*l2meta
)
2542 BDRVQcow2State
*s
= bs
->opaque
;
2543 void *crypt_buf
= NULL
;
2544 QEMUIOVector encrypted_qiov
;
2546 if (bs
->encrypted
) {
2548 assert(bytes
<= QCOW_MAX_CRYPT_CLUSTERS
* s
->cluster_size
);
2549 crypt_buf
= qemu_try_blockalign(bs
->file
->bs
, bytes
);
2550 if (crypt_buf
== NULL
) {
2554 qemu_iovec_to_buf(qiov
, qiov_offset
, crypt_buf
, bytes
);
2556 if (qcow2_co_encrypt(bs
, host_offset
, offset
, crypt_buf
, bytes
) < 0) {
2561 qemu_iovec_init_buf(&encrypted_qiov
, crypt_buf
, bytes
);
2562 qiov
= &encrypted_qiov
;
2566 /* Try to efficiently initialize the physical space with zeroes */
2567 ret
= handle_alloc_space(bs
, l2meta
);
2573 * If we need to do COW, check if it's possible to merge the
2574 * writing of the guest data together with that of the COW regions.
2575 * If it's not possible (or not necessary) then write the
2578 if (!merge_cow(offset
, bytes
, qiov
, qiov_offset
, l2meta
)) {
2579 BLKDBG_EVENT(bs
->file
, BLKDBG_WRITE_AIO
);
2580 trace_qcow2_writev_data(qemu_coroutine_self(), host_offset
);
2581 ret
= bdrv_co_pwritev_part(s
->data_file
, host_offset
,
2582 bytes
, qiov
, qiov_offset
, 0);
2588 qemu_co_mutex_lock(&s
->lock
);
2590 ret
= qcow2_handle_l2meta(bs
, &l2meta
, true);
2594 qemu_co_mutex_lock(&s
->lock
);
2597 qcow2_handle_l2meta(bs
, &l2meta
, false);
2598 qemu_co_mutex_unlock(&s
->lock
);
2600 qemu_vfree(crypt_buf
);
2606 * This function can count as GRAPH_RDLOCK because qcow2_co_pwritev_part() holds
2607 * the graph lock and keeps it until this coroutine has terminated.
2609 static coroutine_fn GRAPH_RDLOCK
int qcow2_co_pwritev_task_entry(AioTask
*task
)
2611 Qcow2AioTask
*t
= container_of(task
, Qcow2AioTask
, task
);
2613 assert(!t
->subcluster_type
);
2615 return qcow2_co_pwritev_task(t
->bs
, t
->host_offset
,
2616 t
->offset
, t
->bytes
, t
->qiov
, t
->qiov_offset
,
2620 static coroutine_fn
int qcow2_co_pwritev_part(
2621 BlockDriverState
*bs
, int64_t offset
, int64_t bytes
,
2622 QEMUIOVector
*qiov
, size_t qiov_offset
, BdrvRequestFlags flags
)
2624 BDRVQcow2State
*s
= bs
->opaque
;
2625 int offset_in_cluster
;
2627 unsigned int cur_bytes
; /* number of sectors in current iteration */
2628 uint64_t host_offset
;
2629 QCowL2Meta
*l2meta
= NULL
;
2630 AioTaskPool
*aio
= NULL
;
2632 assume_graph_lock(); /* FIXME */
2634 trace_qcow2_writev_start_req(qemu_coroutine_self(), offset
, bytes
);
2636 while (bytes
!= 0 && aio_task_pool_status(aio
) == 0) {
2640 trace_qcow2_writev_start_part(qemu_coroutine_self());
2641 offset_in_cluster
= offset_into_cluster(s
, offset
);
2642 cur_bytes
= MIN(bytes
, INT_MAX
);
2643 if (bs
->encrypted
) {
2644 cur_bytes
= MIN(cur_bytes
,
2645 QCOW_MAX_CRYPT_CLUSTERS
* s
->cluster_size
2646 - offset_in_cluster
);
2649 qemu_co_mutex_lock(&s
->lock
);
2651 ret
= qcow2_alloc_host_offset(bs
, offset
, &cur_bytes
,
2652 &host_offset
, &l2meta
);
2657 ret
= qcow2_pre_write_overlap_check(bs
, 0, host_offset
,
2663 qemu_co_mutex_unlock(&s
->lock
);
2665 if (!aio
&& cur_bytes
!= bytes
) {
2666 aio
= aio_task_pool_new(QCOW2_MAX_WORKERS
);
2668 ret
= qcow2_add_task(bs
, aio
, qcow2_co_pwritev_task_entry
, 0,
2669 host_offset
, offset
,
2670 cur_bytes
, qiov
, qiov_offset
, l2meta
);
2671 l2meta
= NULL
; /* l2meta is consumed by qcow2_co_pwritev_task() */
2677 offset
+= cur_bytes
;
2678 qiov_offset
+= cur_bytes
;
2679 trace_qcow2_writev_done_part(qemu_coroutine_self(), cur_bytes
);
2683 qemu_co_mutex_lock(&s
->lock
);
2686 qcow2_handle_l2meta(bs
, &l2meta
, false);
2688 qemu_co_mutex_unlock(&s
->lock
);
2692 aio_task_pool_wait_all(aio
);
2694 ret
= aio_task_pool_status(aio
);
2699 trace_qcow2_writev_done_req(qemu_coroutine_self(), ret
);
2704 static int qcow2_inactivate(BlockDriverState
*bs
)
2706 BDRVQcow2State
*s
= bs
->opaque
;
2707 int ret
, result
= 0;
2708 Error
*local_err
= NULL
;
2710 qcow2_store_persistent_dirty_bitmaps(bs
, true, &local_err
);
2711 if (local_err
!= NULL
) {
2713 error_reportf_err(local_err
, "Lost persistent bitmaps during "
2714 "inactivation of node '%s': ",
2715 bdrv_get_device_or_node_name(bs
));
2718 ret
= qcow2_cache_flush(bs
, s
->l2_table_cache
);
2721 error_report("Failed to flush the L2 table cache: %s",
2725 ret
= qcow2_cache_flush(bs
, s
->refcount_block_cache
);
2728 error_report("Failed to flush the refcount block cache: %s",
2733 qcow2_mark_clean(bs
);
2739 static void qcow2_do_close(BlockDriverState
*bs
, bool close_data_file
)
2741 BDRVQcow2State
*s
= bs
->opaque
;
2742 qemu_vfree(s
->l1_table
);
2743 /* else pre-write overlap checks in cache_destroy may crash */
2746 if (!(s
->flags
& BDRV_O_INACTIVE
)) {
2747 qcow2_inactivate(bs
);
2750 cache_clean_timer_del(bs
);
2751 qcow2_cache_destroy(s
->l2_table_cache
);
2752 qcow2_cache_destroy(s
->refcount_block_cache
);
2754 qcrypto_block_free(s
->crypto
);
2756 qapi_free_QCryptoBlockOpenOptions(s
->crypto_opts
);
2758 g_free(s
->unknown_header_fields
);
2759 cleanup_unknown_header_ext(bs
);
2761 g_free(s
->image_data_file
);
2762 g_free(s
->image_backing_file
);
2763 g_free(s
->image_backing_format
);
2765 if (close_data_file
&& has_data_file(bs
)) {
2766 bdrv_unref_child(bs
, s
->data_file
);
2767 s
->data_file
= NULL
;
2770 qcow2_refcount_close(bs
);
2771 qcow2_free_snapshots(bs
);
2774 static void qcow2_close(BlockDriverState
*bs
)
2776 qcow2_do_close(bs
, true);
2779 static void coroutine_fn
qcow2_co_invalidate_cache(BlockDriverState
*bs
,
2783 BDRVQcow2State
*s
= bs
->opaque
;
2784 BdrvChild
*data_file
;
2785 int flags
= s
->flags
;
2786 QCryptoBlock
*crypto
= NULL
;
2791 * Backing files are read-only which makes all of their metadata immutable,
2792 * that means we don't have to worry about reopening them here.
2799 * Do not reopen s->data_file (i.e., have qcow2_do_close() not close it,
2800 * and then prevent qcow2_do_open() from opening it), because this function
2801 * runs in the I/O path and as such we must not invoke global-state
2802 * functions like bdrv_unref_child() and bdrv_open_child().
2805 qcow2_do_close(bs
, false);
2807 data_file
= s
->data_file
;
2808 memset(s
, 0, sizeof(BDRVQcow2State
));
2809 s
->data_file
= data_file
;
2811 options
= qdict_clone_shallow(bs
->options
);
2813 flags
&= ~BDRV_O_INACTIVE
;
2814 qemu_co_mutex_lock(&s
->lock
);
2815 ret
= qcow2_do_open(bs
, options
, flags
, false, errp
);
2816 qemu_co_mutex_unlock(&s
->lock
);
2817 qobject_unref(options
);
2819 error_prepend(errp
, "Could not reopen qcow2 layer: ");
2827 static size_t header_ext_add(char *buf
, uint32_t magic
, const void *s
,
2828 size_t len
, size_t buflen
)
2830 QCowExtension
*ext_backing_fmt
= (QCowExtension
*) buf
;
2831 size_t ext_len
= sizeof(QCowExtension
) + ((len
+ 7) & ~7);
2833 if (buflen
< ext_len
) {
2837 *ext_backing_fmt
= (QCowExtension
) {
2838 .magic
= cpu_to_be32(magic
),
2839 .len
= cpu_to_be32(len
),
2843 memcpy(buf
+ sizeof(QCowExtension
), s
, len
);
2850 * Updates the qcow2 header, including the variable length parts of it, i.e.
2851 * the backing file name and all extensions. qcow2 was not designed to allow
2852 * such changes, so if we run out of space (we can only use the first cluster)
2853 * this function may fail.
2855 * Returns 0 on success, -errno in error cases.
2857 int qcow2_update_header(BlockDriverState
*bs
)
2859 BDRVQcow2State
*s
= bs
->opaque
;
2862 size_t buflen
= s
->cluster_size
;
2864 uint64_t total_size
;
2865 uint32_t refcount_table_clusters
;
2866 size_t header_length
;
2867 Qcow2UnknownHeaderExtension
*uext
;
2869 buf
= qemu_blockalign(bs
, buflen
);
2871 /* Header structure */
2872 header
= (QCowHeader
*) buf
;
2874 if (buflen
< sizeof(*header
)) {
2879 header_length
= sizeof(*header
) + s
->unknown_header_fields_size
;
2880 total_size
= bs
->total_sectors
* BDRV_SECTOR_SIZE
;
2881 refcount_table_clusters
= s
->refcount_table_size
>> (s
->cluster_bits
- 3);
2883 ret
= validate_compression_type(s
, NULL
);
2888 *header
= (QCowHeader
) {
2889 /* Version 2 fields */
2890 .magic
= cpu_to_be32(QCOW_MAGIC
),
2891 .version
= cpu_to_be32(s
->qcow_version
),
2892 .backing_file_offset
= 0,
2893 .backing_file_size
= 0,
2894 .cluster_bits
= cpu_to_be32(s
->cluster_bits
),
2895 .size
= cpu_to_be64(total_size
),
2896 .crypt_method
= cpu_to_be32(s
->crypt_method_header
),
2897 .l1_size
= cpu_to_be32(s
->l1_size
),
2898 .l1_table_offset
= cpu_to_be64(s
->l1_table_offset
),
2899 .refcount_table_offset
= cpu_to_be64(s
->refcount_table_offset
),
2900 .refcount_table_clusters
= cpu_to_be32(refcount_table_clusters
),
2901 .nb_snapshots
= cpu_to_be32(s
->nb_snapshots
),
2902 .snapshots_offset
= cpu_to_be64(s
->snapshots_offset
),
2904 /* Version 3 fields */
2905 .incompatible_features
= cpu_to_be64(s
->incompatible_features
),
2906 .compatible_features
= cpu_to_be64(s
->compatible_features
),
2907 .autoclear_features
= cpu_to_be64(s
->autoclear_features
),
2908 .refcount_order
= cpu_to_be32(s
->refcount_order
),
2909 .header_length
= cpu_to_be32(header_length
),
2910 .compression_type
= s
->compression_type
,
2913 /* For older versions, write a shorter header */
2914 switch (s
->qcow_version
) {
2916 ret
= offsetof(QCowHeader
, incompatible_features
);
2919 ret
= sizeof(*header
);
2928 memset(buf
, 0, buflen
);
2930 /* Preserve any unknown field in the header */
2931 if (s
->unknown_header_fields_size
) {
2932 if (buflen
< s
->unknown_header_fields_size
) {
2937 memcpy(buf
, s
->unknown_header_fields
, s
->unknown_header_fields_size
);
2938 buf
+= s
->unknown_header_fields_size
;
2939 buflen
-= s
->unknown_header_fields_size
;
2942 /* Backing file format header extension */
2943 if (s
->image_backing_format
) {
2944 ret
= header_ext_add(buf
, QCOW2_EXT_MAGIC_BACKING_FORMAT
,
2945 s
->image_backing_format
,
2946 strlen(s
->image_backing_format
),
2956 /* External data file header extension */
2957 if (has_data_file(bs
) && s
->image_data_file
) {
2958 ret
= header_ext_add(buf
, QCOW2_EXT_MAGIC_DATA_FILE
,
2959 s
->image_data_file
, strlen(s
->image_data_file
),
2969 /* Full disk encryption header pointer extension */
2970 if (s
->crypto_header
.offset
!= 0) {
2971 s
->crypto_header
.offset
= cpu_to_be64(s
->crypto_header
.offset
);
2972 s
->crypto_header
.length
= cpu_to_be64(s
->crypto_header
.length
);
2973 ret
= header_ext_add(buf
, QCOW2_EXT_MAGIC_CRYPTO_HEADER
,
2974 &s
->crypto_header
, sizeof(s
->crypto_header
),
2976 s
->crypto_header
.offset
= be64_to_cpu(s
->crypto_header
.offset
);
2977 s
->crypto_header
.length
= be64_to_cpu(s
->crypto_header
.length
);
2986 * Feature table. A mere 8 feature names occupies 392 bytes, and
2987 * when coupled with the v3 minimum header of 104 bytes plus the
2988 * 8-byte end-of-extension marker, that would leave only 8 bytes
2989 * for a backing file name in an image with 512-byte clusters.
2990 * Thus, we choose to omit this header for cluster sizes 4k and
2993 if (s
->qcow_version
>= 3 && s
->cluster_size
> 4096) {
2994 static const Qcow2Feature features
[] = {
2996 .type
= QCOW2_FEAT_TYPE_INCOMPATIBLE
,
2997 .bit
= QCOW2_INCOMPAT_DIRTY_BITNR
,
2998 .name
= "dirty bit",
3001 .type
= QCOW2_FEAT_TYPE_INCOMPATIBLE
,
3002 .bit
= QCOW2_INCOMPAT_CORRUPT_BITNR
,
3003 .name
= "corrupt bit",
3006 .type
= QCOW2_FEAT_TYPE_INCOMPATIBLE
,
3007 .bit
= QCOW2_INCOMPAT_DATA_FILE_BITNR
,
3008 .name
= "external data file",
3011 .type
= QCOW2_FEAT_TYPE_INCOMPATIBLE
,
3012 .bit
= QCOW2_INCOMPAT_COMPRESSION_BITNR
,
3013 .name
= "compression type",
3016 .type
= QCOW2_FEAT_TYPE_INCOMPATIBLE
,
3017 .bit
= QCOW2_INCOMPAT_EXTL2_BITNR
,
3018 .name
= "extended L2 entries",
3021 .type
= QCOW2_FEAT_TYPE_COMPATIBLE
,
3022 .bit
= QCOW2_COMPAT_LAZY_REFCOUNTS_BITNR
,
3023 .name
= "lazy refcounts",
3026 .type
= QCOW2_FEAT_TYPE_AUTOCLEAR
,
3027 .bit
= QCOW2_AUTOCLEAR_BITMAPS_BITNR
,
3031 .type
= QCOW2_FEAT_TYPE_AUTOCLEAR
,
3032 .bit
= QCOW2_AUTOCLEAR_DATA_FILE_RAW_BITNR
,
3033 .name
= "raw external data",
3037 ret
= header_ext_add(buf
, QCOW2_EXT_MAGIC_FEATURE_TABLE
,
3038 features
, sizeof(features
), buflen
);
3046 /* Bitmap extension */
3047 if (s
->nb_bitmaps
> 0) {
3048 Qcow2BitmapHeaderExt bitmaps_header
= {
3049 .nb_bitmaps
= cpu_to_be32(s
->nb_bitmaps
),
3050 .bitmap_directory_size
=
3051 cpu_to_be64(s
->bitmap_directory_size
),
3052 .bitmap_directory_offset
=
3053 cpu_to_be64(s
->bitmap_directory_offset
)
3055 ret
= header_ext_add(buf
, QCOW2_EXT_MAGIC_BITMAPS
,
3056 &bitmaps_header
, sizeof(bitmaps_header
),
3065 /* Keep unknown header extensions */
3066 QLIST_FOREACH(uext
, &s
->unknown_header_ext
, next
) {
3067 ret
= header_ext_add(buf
, uext
->magic
, uext
->data
, uext
->len
, buflen
);
3076 /* End of header extensions */
3077 ret
= header_ext_add(buf
, QCOW2_EXT_MAGIC_END
, NULL
, 0, buflen
);
3085 /* Backing file name */
3086 if (s
->image_backing_file
) {
3087 size_t backing_file_len
= strlen(s
->image_backing_file
);
3089 if (buflen
< backing_file_len
) {
3094 /* Using strncpy is ok here, since buf is not NUL-terminated. */
3095 strncpy(buf
, s
->image_backing_file
, buflen
);
3097 header
->backing_file_offset
= cpu_to_be64(buf
- ((char*) header
));
3098 header
->backing_file_size
= cpu_to_be32(backing_file_len
);
3101 /* Write the new header */
3102 ret
= bdrv_pwrite(bs
->file
, 0, s
->cluster_size
, header
, 0);
3113 static int qcow2_change_backing_file(BlockDriverState
*bs
,
3114 const char *backing_file
, const char *backing_fmt
)
3116 BDRVQcow2State
*s
= bs
->opaque
;
3118 /* Adding a backing file means that the external data file alone won't be
3119 * enough to make sense of the content */
3120 if (backing_file
&& data_file_is_raw(bs
)) {
3124 if (backing_file
&& strlen(backing_file
) > 1023) {
3128 pstrcpy(bs
->auto_backing_file
, sizeof(bs
->auto_backing_file
),
3129 backing_file
?: "");
3130 pstrcpy(bs
->backing_file
, sizeof(bs
->backing_file
), backing_file
?: "");
3131 pstrcpy(bs
->backing_format
, sizeof(bs
->backing_format
), backing_fmt
?: "");
3133 g_free(s
->image_backing_file
);
3134 g_free(s
->image_backing_format
);
3136 s
->image_backing_file
= backing_file
? g_strdup(bs
->backing_file
) : NULL
;
3137 s
->image_backing_format
= backing_fmt
? g_strdup(bs
->backing_format
) : NULL
;
3139 return qcow2_update_header(bs
);
3142 static int qcow2_set_up_encryption(BlockDriverState
*bs
,
3143 QCryptoBlockCreateOptions
*cryptoopts
,
3146 BDRVQcow2State
*s
= bs
->opaque
;
3147 QCryptoBlock
*crypto
= NULL
;
3150 switch (cryptoopts
->format
) {
3151 case Q_CRYPTO_BLOCK_FORMAT_LUKS
:
3152 fmt
= QCOW_CRYPT_LUKS
;
3154 case Q_CRYPTO_BLOCK_FORMAT_QCOW
:
3155 fmt
= QCOW_CRYPT_AES
;
3158 error_setg(errp
, "Crypto format not supported in qcow2");
3162 s
->crypt_method_header
= fmt
;
3164 crypto
= qcrypto_block_create(cryptoopts
, "encrypt.",
3165 qcow2_crypto_hdr_init_func
,
3166 qcow2_crypto_hdr_write_func
,
3172 ret
= qcow2_update_header(bs
);
3174 error_setg_errno(errp
, -ret
, "Could not write encryption header");
3180 qcrypto_block_free(crypto
);
3185 * Preallocates metadata structures for data clusters between @offset (in the
3186 * guest disk) and @new_length (which is thus generally the new guest disk
3189 * Returns: 0 on success, -errno on failure.
3191 static int coroutine_fn GRAPH_RDLOCK
3192 preallocate_co(BlockDriverState
*bs
, uint64_t offset
, uint64_t new_length
,
3193 PreallocMode mode
, Error
**errp
)
3195 BDRVQcow2State
*s
= bs
->opaque
;
3197 uint64_t host_offset
= 0;
3198 int64_t file_length
;
3199 unsigned int cur_bytes
;
3201 QCowL2Meta
*meta
= NULL
, *m
;
3203 assert(offset
<= new_length
);
3204 bytes
= new_length
- offset
;
3207 cur_bytes
= MIN(bytes
, QEMU_ALIGN_DOWN(INT_MAX
, s
->cluster_size
));
3208 ret
= qcow2_alloc_host_offset(bs
, offset
, &cur_bytes
,
3209 &host_offset
, &meta
);
3211 error_setg_errno(errp
, -ret
, "Allocating clusters failed");
3215 for (m
= meta
; m
!= NULL
; m
= m
->next
) {
3219 ret
= qcow2_handle_l2meta(bs
, &meta
, true);
3221 error_setg_errno(errp
, -ret
, "Mapping clusters failed");
3225 /* TODO Preallocate data if requested */
3228 offset
+= cur_bytes
;
3232 * It is expected that the image file is large enough to actually contain
3233 * all of the allocated clusters (otherwise we get failing reads after
3234 * EOF). Extend the image to the last allocated sector.
3236 file_length
= bdrv_getlength(s
->data_file
->bs
);
3237 if (file_length
< 0) {
3238 error_setg_errno(errp
, -file_length
, "Could not get file size");
3243 if (host_offset
+ cur_bytes
> file_length
) {
3244 if (mode
== PREALLOC_MODE_METADATA
) {
3245 mode
= PREALLOC_MODE_OFF
;
3247 ret
= bdrv_co_truncate(s
->data_file
, host_offset
+ cur_bytes
, false,
3257 qcow2_handle_l2meta(bs
, &meta
, false);
3261 /* qcow2_refcount_metadata_size:
3262 * @clusters: number of clusters to refcount (including data and L1/L2 tables)
3263 * @cluster_size: size of a cluster, in bytes
3264 * @refcount_order: refcount bits power-of-2 exponent
3265 * @generous_increase: allow for the refcount table to be 1.5x as large as it
3268 * Returns: Number of bytes required for refcount blocks and table metadata.
3270 int64_t qcow2_refcount_metadata_size(int64_t clusters
, size_t cluster_size
,
3271 int refcount_order
, bool generous_increase
,
3272 uint64_t *refblock_count
)
3275 * Every host cluster is reference-counted, including metadata (even
3276 * refcount metadata is recursively included).
3278 * An accurate formula for the size of refcount metadata size is difficult
3279 * to derive. An easier method of calculation is finding the fixed point
3280 * where no further refcount blocks or table clusters are required to
3281 * reference count every cluster.
3283 int64_t blocks_per_table_cluster
= cluster_size
/ REFTABLE_ENTRY_SIZE
;
3284 int64_t refcounts_per_block
= cluster_size
* 8 / (1 << refcount_order
);
3285 int64_t table
= 0; /* number of refcount table clusters */
3286 int64_t blocks
= 0; /* number of refcount block clusters */
3292 blocks
= DIV_ROUND_UP(clusters
+ table
+ blocks
, refcounts_per_block
);
3293 table
= DIV_ROUND_UP(blocks
, blocks_per_table_cluster
);
3294 n
= clusters
+ blocks
+ table
;
3296 if (n
== last
&& generous_increase
) {
3297 clusters
+= DIV_ROUND_UP(table
, 2);
3298 n
= 0; /* force another loop */
3299 generous_increase
= false;
3301 } while (n
!= last
);
3303 if (refblock_count
) {
3304 *refblock_count
= blocks
;
3307 return (blocks
+ table
) * cluster_size
;
3311 * qcow2_calc_prealloc_size:
3312 * @total_size: virtual disk size in bytes
3313 * @cluster_size: cluster size in bytes
3314 * @refcount_order: refcount bits power-of-2 exponent
3315 * @extended_l2: true if the image has extended L2 entries
3317 * Returns: Total number of bytes required for the fully allocated image
3318 * (including metadata).
3320 static int64_t qcow2_calc_prealloc_size(int64_t total_size
,
3321 size_t cluster_size
,
3325 int64_t meta_size
= 0;
3326 uint64_t nl1e
, nl2e
;
3327 int64_t aligned_total_size
= ROUND_UP(total_size
, cluster_size
);
3328 size_t l2e_size
= extended_l2
? L2E_SIZE_EXTENDED
: L2E_SIZE_NORMAL
;
3330 /* header: 1 cluster */
3331 meta_size
+= cluster_size
;
3333 /* total size of L2 tables */
3334 nl2e
= aligned_total_size
/ cluster_size
;
3335 nl2e
= ROUND_UP(nl2e
, cluster_size
/ l2e_size
);
3336 meta_size
+= nl2e
* l2e_size
;
3338 /* total size of L1 tables */
3339 nl1e
= nl2e
* l2e_size
/ cluster_size
;
3340 nl1e
= ROUND_UP(nl1e
, cluster_size
/ L1E_SIZE
);
3341 meta_size
+= nl1e
* L1E_SIZE
;
3343 /* total size of refcount table and blocks */
3344 meta_size
+= qcow2_refcount_metadata_size(
3345 (meta_size
+ aligned_total_size
) / cluster_size
,
3346 cluster_size
, refcount_order
, false, NULL
);
3348 return meta_size
+ aligned_total_size
;
3351 static bool validate_cluster_size(size_t cluster_size
, bool extended_l2
,
3354 int cluster_bits
= ctz32(cluster_size
);
3355 if (cluster_bits
< MIN_CLUSTER_BITS
|| cluster_bits
> MAX_CLUSTER_BITS
||
3356 (1 << cluster_bits
) != cluster_size
)
3358 error_setg(errp
, "Cluster size must be a power of two between %d and "
3359 "%dk", 1 << MIN_CLUSTER_BITS
, 1 << (MAX_CLUSTER_BITS
- 10));
3364 unsigned min_cluster_size
=
3365 (1 << MIN_CLUSTER_BITS
) * QCOW_EXTL2_SUBCLUSTERS_PER_CLUSTER
;
3366 if (cluster_size
< min_cluster_size
) {
3367 error_setg(errp
, "Extended L2 entries are only supported with "
3368 "cluster sizes of at least %u bytes", min_cluster_size
);
3376 static size_t qcow2_opt_get_cluster_size_del(QemuOpts
*opts
, bool extended_l2
,
3379 size_t cluster_size
;
3381 cluster_size
= qemu_opt_get_size_del(opts
, BLOCK_OPT_CLUSTER_SIZE
,
3382 DEFAULT_CLUSTER_SIZE
);
3383 if (!validate_cluster_size(cluster_size
, extended_l2
, errp
)) {
3386 return cluster_size
;
3389 static int qcow2_opt_get_version_del(QemuOpts
*opts
, Error
**errp
)
3394 buf
= qemu_opt_get_del(opts
, BLOCK_OPT_COMPAT_LEVEL
);
3396 ret
= 3; /* default */
3397 } else if (!strcmp(buf
, "0.10")) {
3399 } else if (!strcmp(buf
, "1.1")) {
3402 error_setg(errp
, "Invalid compatibility level: '%s'", buf
);
3409 static uint64_t qcow2_opt_get_refcount_bits_del(QemuOpts
*opts
, int version
,
3412 uint64_t refcount_bits
;
3414 refcount_bits
= qemu_opt_get_number_del(opts
, BLOCK_OPT_REFCOUNT_BITS
, 16);
3415 if (refcount_bits
> 64 || !is_power_of_2(refcount_bits
)) {
3416 error_setg(errp
, "Refcount width must be a power of two and may not "
3421 if (version
< 3 && refcount_bits
!= 16) {
3422 error_setg(errp
, "Different refcount widths than 16 bits require "
3423 "compatibility level 1.1 or above (use compat=1.1 or "
3428 return refcount_bits
;
3431 static int coroutine_fn
3432 qcow2_co_create(BlockdevCreateOptions
*create_options
, Error
**errp
)
3434 BlockdevCreateOptionsQcow2
*qcow2_opts
;
3438 * Open the image file and write a minimal qcow2 header.
3440 * We keep things simple and start with a zero-sized image. We also
3441 * do without refcount blocks or a L1 table for now. We'll fix the
3442 * inconsistency later.
3444 * We do need a refcount table because growing the refcount table means
3445 * allocating two new refcount blocks - the second of which would be at
3446 * 2 GB for 64k clusters, and we don't want to have a 2 GB initial file
3447 * size for any qcow2 image.
3449 BlockBackend
*blk
= NULL
;
3450 BlockDriverState
*bs
= NULL
;
3451 BlockDriverState
*data_bs
= NULL
;
3453 size_t cluster_size
;
3456 uint64_t *refcount_table
;
3458 uint8_t compression_type
= QCOW2_COMPRESSION_TYPE_ZLIB
;
3460 assert(create_options
->driver
== BLOCKDEV_DRIVER_QCOW2
);
3461 qcow2_opts
= &create_options
->u
.qcow2
;
3463 bs
= bdrv_co_open_blockdev_ref(qcow2_opts
->file
, errp
);
3468 /* Validate options and set default values */
3469 if (!QEMU_IS_ALIGNED(qcow2_opts
->size
, BDRV_SECTOR_SIZE
)) {
3470 error_setg(errp
, "Image size must be a multiple of %u bytes",
3471 (unsigned) BDRV_SECTOR_SIZE
);
3476 if (qcow2_opts
->has_version
) {
3477 switch (qcow2_opts
->version
) {
3478 case BLOCKDEV_QCOW2_VERSION_V2
:
3481 case BLOCKDEV_QCOW2_VERSION_V3
:
3485 g_assert_not_reached();
3491 if (qcow2_opts
->has_cluster_size
) {
3492 cluster_size
= qcow2_opts
->cluster_size
;
3494 cluster_size
= DEFAULT_CLUSTER_SIZE
;
3497 if (!qcow2_opts
->has_extended_l2
) {
3498 qcow2_opts
->extended_l2
= false;
3500 if (qcow2_opts
->extended_l2
) {
3502 error_setg(errp
, "Extended L2 entries are only supported with "
3503 "compatibility level 1.1 and above (use version=v3 or "
3510 if (!validate_cluster_size(cluster_size
, qcow2_opts
->extended_l2
, errp
)) {
3515 if (!qcow2_opts
->has_preallocation
) {
3516 qcow2_opts
->preallocation
= PREALLOC_MODE_OFF
;
3518 if (qcow2_opts
->backing_file
&&
3519 qcow2_opts
->preallocation
!= PREALLOC_MODE_OFF
&&
3520 !qcow2_opts
->extended_l2
)
3522 error_setg(errp
, "Backing file and preallocation can only be used at "
3523 "the same time if extended_l2 is on");
3527 if (qcow2_opts
->has_backing_fmt
&& !qcow2_opts
->backing_file
) {
3528 error_setg(errp
, "Backing format cannot be used without backing file");
3533 if (!qcow2_opts
->has_lazy_refcounts
) {
3534 qcow2_opts
->lazy_refcounts
= false;
3536 if (version
< 3 && qcow2_opts
->lazy_refcounts
) {
3537 error_setg(errp
, "Lazy refcounts only supported with compatibility "
3538 "level 1.1 and above (use version=v3 or greater)");
3543 if (!qcow2_opts
->has_refcount_bits
) {
3544 qcow2_opts
->refcount_bits
= 16;
3546 if (qcow2_opts
->refcount_bits
> 64 ||
3547 !is_power_of_2(qcow2_opts
->refcount_bits
))
3549 error_setg(errp
, "Refcount width must be a power of two and may not "
3554 if (version
< 3 && qcow2_opts
->refcount_bits
!= 16) {
3555 error_setg(errp
, "Different refcount widths than 16 bits require "
3556 "compatibility level 1.1 or above (use version=v3 or "
3561 refcount_order
= ctz32(qcow2_opts
->refcount_bits
);
3563 if (qcow2_opts
->data_file_raw
&& !qcow2_opts
->data_file
) {
3564 error_setg(errp
, "data-file-raw requires data-file");
3568 if (qcow2_opts
->data_file_raw
&& qcow2_opts
->backing_file
) {
3569 error_setg(errp
, "Backing file and data-file-raw cannot be used at "
3574 if (qcow2_opts
->data_file_raw
&&
3575 qcow2_opts
->preallocation
== PREALLOC_MODE_OFF
)
3578 * data-file-raw means that "the external data file can be
3579 * read as a consistent standalone raw image without looking
3580 * at the qcow2 metadata." It does not say that the metadata
3581 * must be ignored, though (and the qcow2 driver in fact does
3582 * not ignore it), so the L1/L2 tables must be present and
3583 * give a 1:1 mapping, so you get the same result regardless
3584 * of whether you look at the metadata or whether you ignore
3587 qcow2_opts
->preallocation
= PREALLOC_MODE_METADATA
;
3590 * Cannot use preallocation with backing files, but giving a
3591 * backing file when specifying data_file_raw is an error
3594 assert(!qcow2_opts
->backing_file
);
3597 if (qcow2_opts
->data_file
) {
3599 error_setg(errp
, "External data files are only supported with "
3600 "compatibility level 1.1 and above (use version=v3 or "
3605 data_bs
= bdrv_co_open_blockdev_ref(qcow2_opts
->data_file
, errp
);
3606 if (data_bs
== NULL
) {
3612 if (qcow2_opts
->has_compression_type
&&
3613 qcow2_opts
->compression_type
!= QCOW2_COMPRESSION_TYPE_ZLIB
) {
3618 error_setg(errp
, "Non-zlib compression type is only supported with "
3619 "compatibility level 1.1 and above (use version=v3 or "
3624 switch (qcow2_opts
->compression_type
) {
3626 case QCOW2_COMPRESSION_TYPE_ZSTD
:
3630 error_setg(errp
, "Unknown compression type");
3634 compression_type
= qcow2_opts
->compression_type
;
3637 /* Create BlockBackend to write to the image */
3638 blk
= blk_co_new_with_bs(bs
, BLK_PERM_WRITE
| BLK_PERM_RESIZE
, BLK_PERM_ALL
,
3644 blk_set_allow_write_beyond_eof(blk
, true);
3646 /* Write the header */
3647 QEMU_BUILD_BUG_ON((1 << MIN_CLUSTER_BITS
) < sizeof(*header
));
3648 header
= g_malloc0(cluster_size
);
3649 *header
= (QCowHeader
) {
3650 .magic
= cpu_to_be32(QCOW_MAGIC
),
3651 .version
= cpu_to_be32(version
),
3652 .cluster_bits
= cpu_to_be32(ctz32(cluster_size
)),
3653 .size
= cpu_to_be64(0),
3654 .l1_table_offset
= cpu_to_be64(0),
3655 .l1_size
= cpu_to_be32(0),
3656 .refcount_table_offset
= cpu_to_be64(cluster_size
),
3657 .refcount_table_clusters
= cpu_to_be32(1),
3658 .refcount_order
= cpu_to_be32(refcount_order
),
3659 /* don't deal with endianness since compression_type is 1 byte long */
3660 .compression_type
= compression_type
,
3661 .header_length
= cpu_to_be32(sizeof(*header
)),
3664 /* We'll update this to correct value later */
3665 header
->crypt_method
= cpu_to_be32(QCOW_CRYPT_NONE
);
3667 if (qcow2_opts
->lazy_refcounts
) {
3668 header
->compatible_features
|=
3669 cpu_to_be64(QCOW2_COMPAT_LAZY_REFCOUNTS
);
3672 header
->incompatible_features
|=
3673 cpu_to_be64(QCOW2_INCOMPAT_DATA_FILE
);
3675 if (qcow2_opts
->data_file_raw
) {
3676 header
->autoclear_features
|=
3677 cpu_to_be64(QCOW2_AUTOCLEAR_DATA_FILE_RAW
);
3679 if (compression_type
!= QCOW2_COMPRESSION_TYPE_ZLIB
) {
3680 header
->incompatible_features
|=
3681 cpu_to_be64(QCOW2_INCOMPAT_COMPRESSION
);
3684 if (qcow2_opts
->extended_l2
) {
3685 header
->incompatible_features
|=
3686 cpu_to_be64(QCOW2_INCOMPAT_EXTL2
);
3689 ret
= blk_co_pwrite(blk
, 0, cluster_size
, header
, 0);
3692 error_setg_errno(errp
, -ret
, "Could not write qcow2 header");
3696 /* Write a refcount table with one refcount block */
3697 refcount_table
= g_malloc0(2 * cluster_size
);
3698 refcount_table
[0] = cpu_to_be64(2 * cluster_size
);
3699 ret
= blk_co_pwrite(blk
, cluster_size
, 2 * cluster_size
, refcount_table
, 0);
3700 g_free(refcount_table
);
3703 error_setg_errno(errp
, -ret
, "Could not write refcount table");
3711 * And now open the image and make it consistent first (i.e. increase the
3712 * refcount of the cluster that is occupied by the header and the refcount
3715 options
= qdict_new();
3716 qdict_put_str(options
, "driver", "qcow2");
3717 qdict_put_str(options
, "file", bs
->node_name
);
3719 qdict_put_str(options
, "data-file", data_bs
->node_name
);
3721 blk
= blk_co_new_open(NULL
, NULL
, options
,
3722 BDRV_O_RDWR
| BDRV_O_RESIZE
| BDRV_O_NO_FLUSH
,
3729 ret
= qcow2_alloc_clusters(blk_bs(blk
), 3 * cluster_size
);
3731 error_setg_errno(errp
, -ret
, "Could not allocate clusters for qcow2 "
3732 "header and refcount table");
3735 } else if (ret
!= 0) {
3736 error_report("Huh, first cluster in empty image is already in use?");
3740 /* Set the external data file if necessary */
3742 BDRVQcow2State
*s
= blk_bs(blk
)->opaque
;
3743 s
->image_data_file
= g_strdup(data_bs
->filename
);
3746 /* Create a full header (including things like feature table) */
3747 ret
= qcow2_update_header(blk_bs(blk
));
3749 error_setg_errno(errp
, -ret
, "Could not update qcow2 header");
3753 /* Okay, now that we have a valid image, let's give it the right size */
3754 ret
= blk_co_truncate(blk
, qcow2_opts
->size
, false,
3755 qcow2_opts
->preallocation
, 0, errp
);
3757 error_prepend(errp
, "Could not resize image: ");
3761 /* Want a backing file? There you go. */
3762 if (qcow2_opts
->backing_file
) {
3763 const char *backing_format
= NULL
;
3765 if (qcow2_opts
->has_backing_fmt
) {
3766 backing_format
= BlockdevDriver_str(qcow2_opts
->backing_fmt
);
3769 ret
= bdrv_change_backing_file(blk_bs(blk
), qcow2_opts
->backing_file
,
3770 backing_format
, false);
3772 error_setg_errno(errp
, -ret
, "Could not assign backing file '%s' "
3773 "with format '%s'", qcow2_opts
->backing_file
,
3779 /* Want encryption? There you go. */
3780 if (qcow2_opts
->encrypt
) {
3781 ret
= qcow2_set_up_encryption(blk_bs(blk
), qcow2_opts
->encrypt
, errp
);
3790 /* Reopen the image without BDRV_O_NO_FLUSH to flush it before returning.
3791 * Using BDRV_O_NO_IO, since encryption is now setup we don't want to
3792 * have to setup decryption context. We're not doing any I/O on the top
3793 * level BlockDriverState, only lower layers, where BDRV_O_NO_IO does
3796 options
= qdict_new();
3797 qdict_put_str(options
, "driver", "qcow2");
3798 qdict_put_str(options
, "file", bs
->node_name
);
3800 qdict_put_str(options
, "data-file", data_bs
->node_name
);
3802 blk
= blk_co_new_open(NULL
, NULL
, options
,
3803 BDRV_O_RDWR
| BDRV_O_NO_BACKING
| BDRV_O_NO_IO
,
3814 bdrv_unref(data_bs
);
3818 static int coroutine_fn
qcow2_co_create_opts(BlockDriver
*drv
,
3819 const char *filename
,
3823 BlockdevCreateOptions
*create_options
= NULL
;
3826 BlockDriverState
*bs
= NULL
;
3827 BlockDriverState
*data_bs
= NULL
;
3831 /* Only the keyval visitor supports the dotted syntax needed for
3832 * encryption, so go through a QDict before getting a QAPI type. Ignore
3833 * options meant for the protocol layer so that the visitor doesn't
3835 qdict
= qemu_opts_to_qdict_filtered(opts
, NULL
, bdrv_qcow2
.create_opts
,
3838 /* Handle encryption options */
3839 val
= qdict_get_try_str(qdict
, BLOCK_OPT_ENCRYPT
);
3840 if (val
&& !strcmp(val
, "on")) {
3841 qdict_put_str(qdict
, BLOCK_OPT_ENCRYPT
, "qcow");
3842 } else if (val
&& !strcmp(val
, "off")) {
3843 qdict_del(qdict
, BLOCK_OPT_ENCRYPT
);
3846 val
= qdict_get_try_str(qdict
, BLOCK_OPT_ENCRYPT_FORMAT
);
3847 if (val
&& !strcmp(val
, "aes")) {
3848 qdict_put_str(qdict
, BLOCK_OPT_ENCRYPT_FORMAT
, "qcow");
3851 /* Convert compat=0.10/1.1 into compat=v2/v3, to be renamed into
3852 * version=v2/v3 below. */
3853 val
= qdict_get_try_str(qdict
, BLOCK_OPT_COMPAT_LEVEL
);
3854 if (val
&& !strcmp(val
, "0.10")) {
3855 qdict_put_str(qdict
, BLOCK_OPT_COMPAT_LEVEL
, "v2");
3856 } else if (val
&& !strcmp(val
, "1.1")) {
3857 qdict_put_str(qdict
, BLOCK_OPT_COMPAT_LEVEL
, "v3");
3860 /* Change legacy command line options into QMP ones */
3861 static const QDictRenames opt_renames
[] = {
3862 { BLOCK_OPT_BACKING_FILE
, "backing-file" },
3863 { BLOCK_OPT_BACKING_FMT
, "backing-fmt" },
3864 { BLOCK_OPT_CLUSTER_SIZE
, "cluster-size" },
3865 { BLOCK_OPT_LAZY_REFCOUNTS
, "lazy-refcounts" },
3866 { BLOCK_OPT_EXTL2
, "extended-l2" },
3867 { BLOCK_OPT_REFCOUNT_BITS
, "refcount-bits" },
3868 { BLOCK_OPT_ENCRYPT
, BLOCK_OPT_ENCRYPT_FORMAT
},
3869 { BLOCK_OPT_COMPAT_LEVEL
, "version" },
3870 { BLOCK_OPT_DATA_FILE_RAW
, "data-file-raw" },
3871 { BLOCK_OPT_COMPRESSION_TYPE
, "compression-type" },
3875 if (!qdict_rename_keys(qdict
, opt_renames
, errp
)) {
3880 /* Create and open the file (protocol layer) */
3881 ret
= bdrv_co_create_file(filename
, opts
, errp
);
3886 bs
= bdrv_co_open(filename
, NULL
, NULL
,
3887 BDRV_O_RDWR
| BDRV_O_RESIZE
| BDRV_O_PROTOCOL
, errp
);
3893 /* Create and open an external data file (protocol layer) */
3894 val
= qdict_get_try_str(qdict
, BLOCK_OPT_DATA_FILE
);
3896 ret
= bdrv_co_create_file(val
, opts
, errp
);
3901 data_bs
= bdrv_co_open(val
, NULL
, NULL
,
3902 BDRV_O_RDWR
| BDRV_O_RESIZE
| BDRV_O_PROTOCOL
,
3904 if (data_bs
== NULL
) {
3909 qdict_del(qdict
, BLOCK_OPT_DATA_FILE
);
3910 qdict_put_str(qdict
, "data-file", data_bs
->node_name
);
3913 /* Set 'driver' and 'node' options */
3914 qdict_put_str(qdict
, "driver", "qcow2");
3915 qdict_put_str(qdict
, "file", bs
->node_name
);
3917 /* Now get the QAPI type BlockdevCreateOptions */
3918 v
= qobject_input_visitor_new_flat_confused(qdict
, errp
);
3924 visit_type_BlockdevCreateOptions(v
, NULL
, &create_options
, errp
);
3926 if (!create_options
) {
3931 /* Silently round up size */
3932 create_options
->u
.qcow2
.size
= ROUND_UP(create_options
->u
.qcow2
.size
,
3935 /* Create the qcow2 image (format layer) */
3936 ret
= qcow2_co_create(create_options
, errp
);
3939 bdrv_co_delete_file_noerr(bs
);
3940 bdrv_co_delete_file_noerr(data_bs
);
3945 qobject_unref(qdict
);
3947 bdrv_unref(data_bs
);
3948 qapi_free_BlockdevCreateOptions(create_options
);
3953 static bool is_zero(BlockDriverState
*bs
, int64_t offset
, int64_t bytes
)
3958 /* Clamp to image length, before checking status of underlying sectors */
3959 if (offset
+ bytes
> bs
->total_sectors
* BDRV_SECTOR_SIZE
) {
3960 bytes
= bs
->total_sectors
* BDRV_SECTOR_SIZE
- offset
;
3968 * bdrv_block_status_above doesn't merge different types of zeros, for
3969 * example, zeros which come from the region which is unallocated in
3970 * the whole backing chain, and zeros which come because of a short
3971 * backing file. So, we need a loop.
3974 res
= bdrv_block_status_above(bs
, NULL
, offset
, bytes
, &nr
, NULL
, NULL
);
3977 } while (res
>= 0 && (res
& BDRV_BLOCK_ZERO
) && nr
&& bytes
);
3979 return res
>= 0 && (res
& BDRV_BLOCK_ZERO
) && bytes
== 0;
3982 static int coroutine_fn GRAPH_RDLOCK
3983 qcow2_co_pwrite_zeroes(BlockDriverState
*bs
, int64_t offset
, int64_t bytes
,
3984 BdrvRequestFlags flags
)
3987 BDRVQcow2State
*s
= bs
->opaque
;
3989 uint32_t head
= offset_into_subcluster(s
, offset
);
3990 uint32_t tail
= ROUND_UP(offset
+ bytes
, s
->subcluster_size
) -
3993 trace_qcow2_pwrite_zeroes_start_req(qemu_coroutine_self(), offset
, bytes
);
3994 if (offset
+ bytes
== bs
->total_sectors
* BDRV_SECTOR_SIZE
) {
4001 QCow2SubclusterType type
;
4003 assert(head
+ bytes
+ tail
<= s
->subcluster_size
);
4005 /* check whether remainder of cluster already reads as zero */
4006 if (!(is_zero(bs
, offset
- head
, head
) &&
4007 is_zero(bs
, offset
+ bytes
, tail
))) {
4011 qemu_co_mutex_lock(&s
->lock
);
4012 /* We can have new write after previous check */
4014 bytes
= s
->subcluster_size
;
4015 nr
= s
->subcluster_size
;
4016 ret
= qcow2_get_host_offset(bs
, offset
, &nr
, &off
, &type
);
4018 (type
!= QCOW2_SUBCLUSTER_UNALLOCATED_PLAIN
&&
4019 type
!= QCOW2_SUBCLUSTER_UNALLOCATED_ALLOC
&&
4020 type
!= QCOW2_SUBCLUSTER_ZERO_PLAIN
&&
4021 type
!= QCOW2_SUBCLUSTER_ZERO_ALLOC
)) {
4022 qemu_co_mutex_unlock(&s
->lock
);
4023 return ret
< 0 ? ret
: -ENOTSUP
;
4026 qemu_co_mutex_lock(&s
->lock
);
4029 trace_qcow2_pwrite_zeroes(qemu_coroutine_self(), offset
, bytes
);
4031 /* Whatever is left can use real zero subclusters */
4032 ret
= qcow2_subcluster_zeroize(bs
, offset
, bytes
, flags
);
4033 qemu_co_mutex_unlock(&s
->lock
);
4038 static coroutine_fn
int qcow2_co_pdiscard(BlockDriverState
*bs
,
4039 int64_t offset
, int64_t bytes
)
4042 BDRVQcow2State
*s
= bs
->opaque
;
4044 /* If the image does not support QCOW_OFLAG_ZERO then discarding
4045 * clusters could expose stale data from the backing file. */
4046 if (s
->qcow_version
< 3 && bs
->backing
) {
4050 if (!QEMU_IS_ALIGNED(offset
| bytes
, s
->cluster_size
)) {
4051 assert(bytes
< s
->cluster_size
);
4052 /* Ignore partial clusters, except for the special case of the
4053 * complete partial cluster at the end of an unaligned file */
4054 if (!QEMU_IS_ALIGNED(offset
, s
->cluster_size
) ||
4055 offset
+ bytes
!= bs
->total_sectors
* BDRV_SECTOR_SIZE
) {
4060 qemu_co_mutex_lock(&s
->lock
);
4061 ret
= qcow2_cluster_discard(bs
, offset
, bytes
, QCOW2_DISCARD_REQUEST
,
4063 qemu_co_mutex_unlock(&s
->lock
);
4067 static int coroutine_fn
4068 qcow2_co_copy_range_from(BlockDriverState
*bs
,
4069 BdrvChild
*src
, int64_t src_offset
,
4070 BdrvChild
*dst
, int64_t dst_offset
,
4071 int64_t bytes
, BdrvRequestFlags read_flags
,
4072 BdrvRequestFlags write_flags
)
4074 BDRVQcow2State
*s
= bs
->opaque
;
4076 unsigned int cur_bytes
; /* number of bytes in current iteration */
4077 BdrvChild
*child
= NULL
;
4078 BdrvRequestFlags cur_write_flags
;
4080 assert(!bs
->encrypted
);
4081 qemu_co_mutex_lock(&s
->lock
);
4083 while (bytes
!= 0) {
4084 uint64_t copy_offset
= 0;
4085 QCow2SubclusterType type
;
4086 /* prepare next request */
4087 cur_bytes
= MIN(bytes
, INT_MAX
);
4088 cur_write_flags
= write_flags
;
4090 ret
= qcow2_get_host_offset(bs
, src_offset
, &cur_bytes
,
4091 ©_offset
, &type
);
4097 case QCOW2_SUBCLUSTER_UNALLOCATED_PLAIN
:
4098 case QCOW2_SUBCLUSTER_UNALLOCATED_ALLOC
:
4099 if (bs
->backing
&& bs
->backing
->bs
) {
4100 int64_t backing_length
= bdrv_getlength(bs
->backing
->bs
);
4101 if (src_offset
>= backing_length
) {
4102 cur_write_flags
|= BDRV_REQ_ZERO_WRITE
;
4104 child
= bs
->backing
;
4105 cur_bytes
= MIN(cur_bytes
, backing_length
- src_offset
);
4106 copy_offset
= src_offset
;
4109 cur_write_flags
|= BDRV_REQ_ZERO_WRITE
;
4113 case QCOW2_SUBCLUSTER_ZERO_PLAIN
:
4114 case QCOW2_SUBCLUSTER_ZERO_ALLOC
:
4115 cur_write_flags
|= BDRV_REQ_ZERO_WRITE
;
4118 case QCOW2_SUBCLUSTER_COMPRESSED
:
4122 case QCOW2_SUBCLUSTER_NORMAL
:
4123 child
= s
->data_file
;
4129 qemu_co_mutex_unlock(&s
->lock
);
4130 ret
= bdrv_co_copy_range_from(child
,
4133 cur_bytes
, read_flags
, cur_write_flags
);
4134 qemu_co_mutex_lock(&s
->lock
);
4140 src_offset
+= cur_bytes
;
4141 dst_offset
+= cur_bytes
;
4146 qemu_co_mutex_unlock(&s
->lock
);
4150 static int coroutine_fn
4151 qcow2_co_copy_range_to(BlockDriverState
*bs
,
4152 BdrvChild
*src
, int64_t src_offset
,
4153 BdrvChild
*dst
, int64_t dst_offset
,
4154 int64_t bytes
, BdrvRequestFlags read_flags
,
4155 BdrvRequestFlags write_flags
)
4157 BDRVQcow2State
*s
= bs
->opaque
;
4159 unsigned int cur_bytes
; /* number of sectors in current iteration */
4160 uint64_t host_offset
;
4161 QCowL2Meta
*l2meta
= NULL
;
4163 assert(!bs
->encrypted
);
4165 qemu_co_mutex_lock(&s
->lock
);
4167 while (bytes
!= 0) {
4171 cur_bytes
= MIN(bytes
, INT_MAX
);
4174 * If src->bs == dst->bs, we could simply copy by incrementing
4175 * the refcnt, without copying user data.
4176 * Or if src->bs == dst->bs->backing->bs, we could copy by discarding. */
4177 ret
= qcow2_alloc_host_offset(bs
, dst_offset
, &cur_bytes
,
4178 &host_offset
, &l2meta
);
4183 ret
= qcow2_pre_write_overlap_check(bs
, 0, host_offset
, cur_bytes
,
4189 qemu_co_mutex_unlock(&s
->lock
);
4190 ret
= bdrv_co_copy_range_to(src
, src_offset
, s
->data_file
, host_offset
,
4191 cur_bytes
, read_flags
, write_flags
);
4192 qemu_co_mutex_lock(&s
->lock
);
4197 ret
= qcow2_handle_l2meta(bs
, &l2meta
, true);
4203 src_offset
+= cur_bytes
;
4204 dst_offset
+= cur_bytes
;
4209 qcow2_handle_l2meta(bs
, &l2meta
, false);
4211 qemu_co_mutex_unlock(&s
->lock
);
4213 trace_qcow2_writev_done_req(qemu_coroutine_self(), ret
);
4218 static int coroutine_fn GRAPH_RDLOCK
4219 qcow2_co_truncate(BlockDriverState
*bs
, int64_t offset
, bool exact
,
4220 PreallocMode prealloc
, BdrvRequestFlags flags
, Error
**errp
)
4222 BDRVQcow2State
*s
= bs
->opaque
;
4223 uint64_t old_length
;
4224 int64_t new_l1_size
;
4228 if (prealloc
!= PREALLOC_MODE_OFF
&& prealloc
!= PREALLOC_MODE_METADATA
&&
4229 prealloc
!= PREALLOC_MODE_FALLOC
&& prealloc
!= PREALLOC_MODE_FULL
)
4231 error_setg(errp
, "Unsupported preallocation mode '%s'",
4232 PreallocMode_str(prealloc
));
4236 if (!QEMU_IS_ALIGNED(offset
, BDRV_SECTOR_SIZE
)) {
4237 error_setg(errp
, "The new size must be a multiple of %u",
4238 (unsigned) BDRV_SECTOR_SIZE
);
4242 qemu_co_mutex_lock(&s
->lock
);
4245 * Even though we store snapshot size for all images, it was not
4246 * required until v3, so it is not safe to proceed for v2.
4248 if (s
->nb_snapshots
&& s
->qcow_version
< 3) {
4249 error_setg(errp
, "Can't resize a v2 image which has snapshots");
4254 /* See qcow2-bitmap.c for which bitmap scenarios prevent a resize. */
4255 if (qcow2_truncate_bitmaps_check(bs
, errp
)) {
4260 old_length
= bs
->total_sectors
* BDRV_SECTOR_SIZE
;
4261 new_l1_size
= size_to_l1(s
, offset
);
4263 if (offset
< old_length
) {
4264 int64_t last_cluster
, old_file_size
;
4265 if (prealloc
!= PREALLOC_MODE_OFF
) {
4267 "Preallocation can't be used for shrinking an image");
4272 ret
= qcow2_cluster_discard(bs
, ROUND_UP(offset
, s
->cluster_size
),
4273 old_length
- ROUND_UP(offset
,
4275 QCOW2_DISCARD_ALWAYS
, true);
4277 error_setg_errno(errp
, -ret
, "Failed to discard cropped clusters");
4281 ret
= qcow2_shrink_l1_table(bs
, new_l1_size
);
4283 error_setg_errno(errp
, -ret
,
4284 "Failed to reduce the number of L2 tables");
4288 ret
= qcow2_shrink_reftable(bs
);
4290 error_setg_errno(errp
, -ret
,
4291 "Failed to discard unused refblocks");
4295 old_file_size
= bdrv_getlength(bs
->file
->bs
);
4296 if (old_file_size
< 0) {
4297 error_setg_errno(errp
, -old_file_size
,
4298 "Failed to inquire current file length");
4299 ret
= old_file_size
;
4302 last_cluster
= qcow2_get_last_cluster(bs
, old_file_size
);
4303 if (last_cluster
< 0) {
4304 error_setg_errno(errp
, -last_cluster
,
4305 "Failed to find the last cluster");
4309 if ((last_cluster
+ 1) * s
->cluster_size
< old_file_size
) {
4310 Error
*local_err
= NULL
;
4313 * Do not pass @exact here: It will not help the user if
4314 * we get an error here just because they wanted to shrink
4315 * their qcow2 image (on a block device) with qemu-img.
4316 * (And on the qcow2 layer, the @exact requirement is
4317 * always fulfilled, so there is no need to pass it on.)
4319 bdrv_co_truncate(bs
->file
, (last_cluster
+ 1) * s
->cluster_size
,
4320 false, PREALLOC_MODE_OFF
, 0, &local_err
);
4322 warn_reportf_err(local_err
,
4323 "Failed to truncate the tail of the image: ");
4327 ret
= qcow2_grow_l1_table(bs
, new_l1_size
, true);
4329 error_setg_errno(errp
, -ret
, "Failed to grow the L1 table");
4333 if (data_file_is_raw(bs
) && prealloc
== PREALLOC_MODE_OFF
) {
4335 * When creating a qcow2 image with data-file-raw, we enforce
4336 * at least prealloc=metadata, so that the L1/L2 tables are
4337 * fully allocated and reading from the data file will return
4338 * the same data as reading from the qcow2 image. When the
4339 * image is grown, we must consequently preallocate the
4340 * metadata structures to cover the added area.
4342 prealloc
= PREALLOC_MODE_METADATA
;
4347 case PREALLOC_MODE_OFF
:
4348 if (has_data_file(bs
)) {
4350 * If the caller wants an exact resize, the external data
4351 * file should be resized to the exact target size, too,
4352 * so we pass @exact here.
4354 ret
= bdrv_co_truncate(s
->data_file
, offset
, exact
, prealloc
, 0,
4362 case PREALLOC_MODE_METADATA
:
4363 ret
= preallocate_co(bs
, old_length
, offset
, prealloc
, errp
);
4369 case PREALLOC_MODE_FALLOC
:
4370 case PREALLOC_MODE_FULL
:
4372 int64_t allocation_start
, host_offset
, guest_offset
;
4373 int64_t clusters_allocated
;
4374 int64_t old_file_size
, last_cluster
, new_file_size
;
4375 uint64_t nb_new_data_clusters
, nb_new_l2_tables
;
4376 bool subclusters_need_allocation
= false;
4378 /* With a data file, preallocation means just allocating the metadata
4379 * and forwarding the truncate request to the data file */
4380 if (has_data_file(bs
)) {
4381 ret
= preallocate_co(bs
, old_length
, offset
, prealloc
, errp
);
4388 old_file_size
= bdrv_getlength(bs
->file
->bs
);
4389 if (old_file_size
< 0) {
4390 error_setg_errno(errp
, -old_file_size
,
4391 "Failed to inquire current file length");
4392 ret
= old_file_size
;
4396 last_cluster
= qcow2_get_last_cluster(bs
, old_file_size
);
4397 if (last_cluster
>= 0) {
4398 old_file_size
= (last_cluster
+ 1) * s
->cluster_size
;
4400 old_file_size
= ROUND_UP(old_file_size
, s
->cluster_size
);
4403 nb_new_data_clusters
= (ROUND_UP(offset
, s
->cluster_size
) -
4404 start_of_cluster(s
, old_length
)) >> s
->cluster_bits
;
4406 /* This is an overestimation; we will not actually allocate space for
4407 * these in the file but just make sure the new refcount structures are
4408 * able to cover them so we will not have to allocate new refblocks
4409 * while entering the data blocks in the potentially new L2 tables.
4410 * (We do not actually care where the L2 tables are placed. Maybe they
4411 * are already allocated or they can be placed somewhere before
4412 * @old_file_size. It does not matter because they will be fully
4413 * allocated automatically, so they do not need to be covered by the
4414 * preallocation. All that matters is that we will not have to allocate
4415 * new refcount structures for them.) */
4416 nb_new_l2_tables
= DIV_ROUND_UP(nb_new_data_clusters
,
4417 s
->cluster_size
/ l2_entry_size(s
));
4418 /* The cluster range may not be aligned to L2 boundaries, so add one L2
4419 * table for a potential head/tail */
4422 allocation_start
= qcow2_refcount_area(bs
, old_file_size
,
4423 nb_new_data_clusters
+
4426 if (allocation_start
< 0) {
4427 error_setg_errno(errp
, -allocation_start
,
4428 "Failed to resize refcount structures");
4429 ret
= allocation_start
;
4433 clusters_allocated
= qcow2_alloc_clusters_at(bs
, allocation_start
,
4434 nb_new_data_clusters
);
4435 if (clusters_allocated
< 0) {
4436 error_setg_errno(errp
, -clusters_allocated
,
4437 "Failed to allocate data clusters");
4438 ret
= clusters_allocated
;
4442 assert(clusters_allocated
== nb_new_data_clusters
);
4444 /* Allocate the data area */
4445 new_file_size
= allocation_start
+
4446 nb_new_data_clusters
* s
->cluster_size
;
4448 * Image file grows, so @exact does not matter.
4450 * If we need to zero out the new area, try first whether the protocol
4451 * driver can already take care of this.
4453 if (flags
& BDRV_REQ_ZERO_WRITE
) {
4454 ret
= bdrv_co_truncate(bs
->file
, new_file_size
, false, prealloc
,
4455 BDRV_REQ_ZERO_WRITE
, NULL
);
4457 flags
&= ~BDRV_REQ_ZERO_WRITE
;
4458 /* Ensure that we read zeroes and not backing file data */
4459 subclusters_need_allocation
= true;
4465 ret
= bdrv_co_truncate(bs
->file
, new_file_size
, false, prealloc
, 0,
4469 error_prepend(errp
, "Failed to resize underlying file: ");
4470 qcow2_free_clusters(bs
, allocation_start
,
4471 nb_new_data_clusters
* s
->cluster_size
,
4472 QCOW2_DISCARD_OTHER
);
4476 /* Create the necessary L2 entries */
4477 host_offset
= allocation_start
;
4478 guest_offset
= old_length
;
4479 while (nb_new_data_clusters
) {
4480 int64_t nb_clusters
= MIN(
4481 nb_new_data_clusters
,
4482 s
->l2_slice_size
- offset_to_l2_slice_index(s
, guest_offset
));
4483 unsigned cow_start_length
= offset_into_cluster(s
, guest_offset
);
4484 QCowL2Meta allocation
;
4485 guest_offset
= start_of_cluster(s
, guest_offset
);
4486 allocation
= (QCowL2Meta
) {
4487 .offset
= guest_offset
,
4488 .alloc_offset
= host_offset
,
4489 .nb_clusters
= nb_clusters
,
4492 .nb_bytes
= cow_start_length
,
4495 .offset
= nb_clusters
<< s
->cluster_bits
,
4498 .prealloc
= !subclusters_need_allocation
,
4500 qemu_co_queue_init(&allocation
.dependent_requests
);
4502 ret
= qcow2_alloc_cluster_link_l2(bs
, &allocation
);
4504 error_setg_errno(errp
, -ret
, "Failed to update L2 tables");
4505 qcow2_free_clusters(bs
, host_offset
,
4506 nb_new_data_clusters
* s
->cluster_size
,
4507 QCOW2_DISCARD_OTHER
);
4511 guest_offset
+= nb_clusters
* s
->cluster_size
;
4512 host_offset
+= nb_clusters
* s
->cluster_size
;
4513 nb_new_data_clusters
-= nb_clusters
;
4519 g_assert_not_reached();
4522 if ((flags
& BDRV_REQ_ZERO_WRITE
) && offset
> old_length
) {
4523 uint64_t zero_start
= QEMU_ALIGN_UP(old_length
, s
->subcluster_size
);
4526 * Use zero clusters as much as we can. qcow2_subcluster_zeroize()
4527 * requires a subcluster-aligned start. The end may be unaligned if
4528 * it is at the end of the image (which it is here).
4530 if (offset
> zero_start
) {
4531 ret
= qcow2_subcluster_zeroize(bs
, zero_start
, offset
- zero_start
,
4534 error_setg_errno(errp
, -ret
, "Failed to zero out new clusters");
4539 /* Write explicit zeros for the unaligned head */
4540 if (zero_start
> old_length
) {
4541 uint64_t len
= MIN(zero_start
, offset
) - old_length
;
4542 uint8_t *buf
= qemu_blockalign0(bs
, len
);
4544 qemu_iovec_init_buf(&qiov
, buf
, len
);
4546 qemu_co_mutex_unlock(&s
->lock
);
4547 ret
= qcow2_co_pwritev_part(bs
, old_length
, len
, &qiov
, 0, 0);
4548 qemu_co_mutex_lock(&s
->lock
);
4552 error_setg_errno(errp
, -ret
, "Failed to zero out the new area");
4558 if (prealloc
!= PREALLOC_MODE_OFF
) {
4559 /* Flush metadata before actually changing the image size */
4560 ret
= qcow2_write_caches(bs
);
4562 error_setg_errno(errp
, -ret
,
4563 "Failed to flush the preallocated area to disk");
4568 bs
->total_sectors
= offset
/ BDRV_SECTOR_SIZE
;
4570 /* write updated header.size */
4571 offset
= cpu_to_be64(offset
);
4572 ret
= bdrv_co_pwrite_sync(bs
->file
, offsetof(QCowHeader
, size
),
4573 sizeof(offset
), &offset
, 0);
4575 error_setg_errno(errp
, -ret
, "Failed to update the image size");
4579 s
->l1_vm_state_index
= new_l1_size
;
4581 /* Update cache sizes */
4582 options
= qdict_clone_shallow(bs
->options
);
4583 ret
= qcow2_update_options(bs
, options
, s
->flags
, errp
);
4584 qobject_unref(options
);
4590 qemu_co_mutex_unlock(&s
->lock
);
4594 static coroutine_fn
int
4595 qcow2_co_pwritev_compressed_task(BlockDriverState
*bs
,
4596 uint64_t offset
, uint64_t bytes
,
4597 QEMUIOVector
*qiov
, size_t qiov_offset
)
4599 BDRVQcow2State
*s
= bs
->opaque
;
4602 uint8_t *buf
, *out_buf
;
4603 uint64_t cluster_offset
;
4605 assert(bytes
== s
->cluster_size
|| (bytes
< s
->cluster_size
&&
4606 (offset
+ bytes
== bs
->total_sectors
<< BDRV_SECTOR_BITS
)));
4608 buf
= qemu_blockalign(bs
, s
->cluster_size
);
4609 if (bytes
< s
->cluster_size
) {
4610 /* Zero-pad last write if image size is not cluster aligned */
4611 memset(buf
+ bytes
, 0, s
->cluster_size
- bytes
);
4613 qemu_iovec_to_buf(qiov
, qiov_offset
, buf
, bytes
);
4615 out_buf
= g_malloc(s
->cluster_size
);
4617 out_len
= qcow2_co_compress(bs
, out_buf
, s
->cluster_size
- 1,
4618 buf
, s
->cluster_size
);
4619 if (out_len
== -ENOMEM
) {
4620 /* could not compress: write normal cluster */
4621 ret
= qcow2_co_pwritev_part(bs
, offset
, bytes
, qiov
, qiov_offset
, 0);
4626 } else if (out_len
< 0) {
4631 qemu_co_mutex_lock(&s
->lock
);
4632 ret
= qcow2_alloc_compressed_cluster_offset(bs
, offset
, out_len
,
4635 qemu_co_mutex_unlock(&s
->lock
);
4639 ret
= qcow2_pre_write_overlap_check(bs
, 0, cluster_offset
, out_len
, true);
4640 qemu_co_mutex_unlock(&s
->lock
);
4645 BLKDBG_EVENT(s
->data_file
, BLKDBG_WRITE_COMPRESSED
);
4646 ret
= bdrv_co_pwrite(s
->data_file
, cluster_offset
, out_len
, out_buf
, 0);
4658 static coroutine_fn
int qcow2_co_pwritev_compressed_task_entry(AioTask
*task
)
4660 Qcow2AioTask
*t
= container_of(task
, Qcow2AioTask
, task
);
4662 assert(!t
->subcluster_type
&& !t
->l2meta
);
4664 return qcow2_co_pwritev_compressed_task(t
->bs
, t
->offset
, t
->bytes
, t
->qiov
,
4669 * XXX: put compressed sectors first, then all the cluster aligned
4670 * tables to avoid losing bytes in alignment
4672 static coroutine_fn
int
4673 qcow2_co_pwritev_compressed_part(BlockDriverState
*bs
,
4674 int64_t offset
, int64_t bytes
,
4675 QEMUIOVector
*qiov
, size_t qiov_offset
)
4677 BDRVQcow2State
*s
= bs
->opaque
;
4678 AioTaskPool
*aio
= NULL
;
4681 assume_graph_lock(); /* FIXME */
4683 if (has_data_file(bs
)) {
4689 * align end of file to a sector boundary to ease reading with
4692 int64_t len
= bdrv_getlength(bs
->file
->bs
);
4696 return bdrv_co_truncate(bs
->file
, len
, false, PREALLOC_MODE_OFF
, 0,
4700 if (offset_into_cluster(s
, offset
)) {
4704 if (offset_into_cluster(s
, bytes
) &&
4705 (offset
+ bytes
) != (bs
->total_sectors
<< BDRV_SECTOR_BITS
)) {
4709 while (bytes
&& aio_task_pool_status(aio
) == 0) {
4710 uint64_t chunk_size
= MIN(bytes
, s
->cluster_size
);
4712 if (!aio
&& chunk_size
!= bytes
) {
4713 aio
= aio_task_pool_new(QCOW2_MAX_WORKERS
);
4716 ret
= qcow2_add_task(bs
, aio
, qcow2_co_pwritev_compressed_task_entry
,
4717 0, 0, offset
, chunk_size
, qiov
, qiov_offset
, NULL
);
4721 qiov_offset
+= chunk_size
;
4722 offset
+= chunk_size
;
4723 bytes
-= chunk_size
;
4727 aio_task_pool_wait_all(aio
);
4729 ret
= aio_task_pool_status(aio
);
4737 static int coroutine_fn
4738 qcow2_co_preadv_compressed(BlockDriverState
*bs
,
4745 BDRVQcow2State
*s
= bs
->opaque
;
4748 uint8_t *buf
, *out_buf
;
4749 int offset_in_cluster
= offset_into_cluster(s
, offset
);
4751 qcow2_parse_compressed_l2_entry(bs
, l2_entry
, &coffset
, &csize
);
4753 buf
= g_try_malloc(csize
);
4758 out_buf
= qemu_blockalign(bs
, s
->cluster_size
);
4760 BLKDBG_EVENT(bs
->file
, BLKDBG_READ_COMPRESSED
);
4761 ret
= bdrv_co_pread(bs
->file
, coffset
, csize
, buf
, 0);
4766 if (qcow2_co_decompress(bs
, out_buf
, s
->cluster_size
, buf
, csize
) < 0) {
4771 qemu_iovec_from_buf(qiov
, qiov_offset
, out_buf
+ offset_in_cluster
, bytes
);
4774 qemu_vfree(out_buf
);
4780 static int make_completely_empty(BlockDriverState
*bs
)
4782 BDRVQcow2State
*s
= bs
->opaque
;
4783 Error
*local_err
= NULL
;
4784 int ret
, l1_clusters
;
4786 uint64_t *new_reftable
= NULL
;
4787 uint64_t rt_entry
, l1_size2
;
4790 uint64_t reftable_offset
;
4791 uint32_t reftable_clusters
;
4792 } QEMU_PACKED l1_ofs_rt_ofs_cls
;
4794 ret
= qcow2_cache_empty(bs
, s
->l2_table_cache
);
4799 ret
= qcow2_cache_empty(bs
, s
->refcount_block_cache
);
4804 /* Refcounts will be broken utterly */
4805 ret
= qcow2_mark_dirty(bs
);
4810 BLKDBG_EVENT(bs
->file
, BLKDBG_L1_UPDATE
);
4812 l1_clusters
= DIV_ROUND_UP(s
->l1_size
, s
->cluster_size
/ L1E_SIZE
);
4813 l1_size2
= (uint64_t)s
->l1_size
* L1E_SIZE
;
4815 /* After this call, neither the in-memory nor the on-disk refcount
4816 * information accurately describe the actual references */
4818 ret
= bdrv_pwrite_zeroes(bs
->file
, s
->l1_table_offset
,
4819 l1_clusters
* s
->cluster_size
, 0);
4821 goto fail_broken_refcounts
;
4823 memset(s
->l1_table
, 0, l1_size2
);
4825 BLKDBG_EVENT(bs
->file
, BLKDBG_EMPTY_IMAGE_PREPARE
);
4827 /* Overwrite enough clusters at the beginning of the sectors to place
4828 * the refcount table, a refcount block and the L1 table in; this may
4829 * overwrite parts of the existing refcount and L1 table, which is not
4830 * an issue because the dirty flag is set, complete data loss is in fact
4831 * desired and partial data loss is consequently fine as well */
4832 ret
= bdrv_pwrite_zeroes(bs
->file
, s
->cluster_size
,
4833 (2 + l1_clusters
) * s
->cluster_size
, 0);
4834 /* This call (even if it failed overall) may have overwritten on-disk
4835 * refcount structures; in that case, the in-memory refcount information
4836 * will probably differ from the on-disk information which makes the BDS
4839 goto fail_broken_refcounts
;
4842 BLKDBG_EVENT(bs
->file
, BLKDBG_L1_UPDATE
);
4843 BLKDBG_EVENT(bs
->file
, BLKDBG_REFTABLE_UPDATE
);
4845 /* "Create" an empty reftable (one cluster) directly after the image
4846 * header and an empty L1 table three clusters after the image header;
4847 * the cluster between those two will be used as the first refblock */
4848 l1_ofs_rt_ofs_cls
.l1_offset
= cpu_to_be64(3 * s
->cluster_size
);
4849 l1_ofs_rt_ofs_cls
.reftable_offset
= cpu_to_be64(s
->cluster_size
);
4850 l1_ofs_rt_ofs_cls
.reftable_clusters
= cpu_to_be32(1);
4851 ret
= bdrv_pwrite_sync(bs
->file
, offsetof(QCowHeader
, l1_table_offset
),
4852 sizeof(l1_ofs_rt_ofs_cls
), &l1_ofs_rt_ofs_cls
, 0);
4854 goto fail_broken_refcounts
;
4857 s
->l1_table_offset
= 3 * s
->cluster_size
;
4859 new_reftable
= g_try_new0(uint64_t, s
->cluster_size
/ REFTABLE_ENTRY_SIZE
);
4860 if (!new_reftable
) {
4862 goto fail_broken_refcounts
;
4865 s
->refcount_table_offset
= s
->cluster_size
;
4866 s
->refcount_table_size
= s
->cluster_size
/ REFTABLE_ENTRY_SIZE
;
4867 s
->max_refcount_table_index
= 0;
4869 g_free(s
->refcount_table
);
4870 s
->refcount_table
= new_reftable
;
4871 new_reftable
= NULL
;
4873 /* Now the in-memory refcount information again corresponds to the on-disk
4874 * information (reftable is empty and no refblocks (the refblock cache is
4875 * empty)); however, this means some clusters (e.g. the image header) are
4876 * referenced, but not refcounted, but the normal qcow2 code assumes that
4877 * the in-memory information is always correct */
4879 BLKDBG_EVENT(bs
->file
, BLKDBG_REFBLOCK_ALLOC
);
4881 /* Enter the first refblock into the reftable */
4882 rt_entry
= cpu_to_be64(2 * s
->cluster_size
);
4883 ret
= bdrv_pwrite_sync(bs
->file
, s
->cluster_size
, sizeof(rt_entry
),
4886 goto fail_broken_refcounts
;
4888 s
->refcount_table
[0] = 2 * s
->cluster_size
;
4890 s
->free_cluster_index
= 0;
4891 assert(3 + l1_clusters
<= s
->refcount_block_size
);
4892 offset
= qcow2_alloc_clusters(bs
, 3 * s
->cluster_size
+ l1_size2
);
4895 goto fail_broken_refcounts
;
4896 } else if (offset
> 0) {
4897 error_report("First cluster in emptied image is in use");
4901 /* Now finally the in-memory information corresponds to the on-disk
4902 * structures and is correct */
4903 ret
= qcow2_mark_clean(bs
);
4908 ret
= bdrv_truncate(bs
->file
, (3 + l1_clusters
) * s
->cluster_size
, false,
4909 PREALLOC_MODE_OFF
, 0, &local_err
);
4911 error_report_err(local_err
);
4917 fail_broken_refcounts
:
4918 /* The BDS is unusable at this point. If we wanted to make it usable, we
4919 * would have to call qcow2_refcount_close(), qcow2_refcount_init(),
4920 * qcow2_check_refcounts(), qcow2_refcount_close() and qcow2_refcount_init()
4921 * again. However, because the functions which could have caused this error
4922 * path to be taken are used by those functions as well, it's very likely
4923 * that that sequence will fail as well. Therefore, just eject the BDS. */
4927 g_free(new_reftable
);
4931 static int qcow2_make_empty(BlockDriverState
*bs
)
4933 BDRVQcow2State
*s
= bs
->opaque
;
4934 uint64_t offset
, end_offset
;
4935 int step
= QEMU_ALIGN_DOWN(INT_MAX
, s
->cluster_size
);
4936 int l1_clusters
, ret
= 0;
4938 l1_clusters
= DIV_ROUND_UP(s
->l1_size
, s
->cluster_size
/ L1E_SIZE
);
4940 if (s
->qcow_version
>= 3 && !s
->snapshots
&& !s
->nb_bitmaps
&&
4941 3 + l1_clusters
<= s
->refcount_block_size
&&
4942 s
->crypt_method_header
!= QCOW_CRYPT_LUKS
&&
4943 !has_data_file(bs
)) {
4944 /* The following function only works for qcow2 v3 images (it
4945 * requires the dirty flag) and only as long as there are no
4946 * features that reserve extra clusters (such as snapshots,
4947 * LUKS header, or persistent bitmaps), because it completely
4948 * empties the image. Furthermore, the L1 table and three
4949 * additional clusters (image header, refcount table, one
4950 * refcount block) have to fit inside one refcount block. It
4951 * only resets the image file, i.e. does not work with an
4952 * external data file. */
4953 return make_completely_empty(bs
);
4956 /* This fallback code simply discards every active cluster; this is slow,
4957 * but works in all cases */
4958 end_offset
= bs
->total_sectors
* BDRV_SECTOR_SIZE
;
4959 for (offset
= 0; offset
< end_offset
; offset
+= step
) {
4960 /* As this function is generally used after committing an external
4961 * snapshot, QCOW2_DISCARD_SNAPSHOT seems appropriate. Also, the
4962 * default action for this kind of discard is to pass the discard,
4963 * which will ideally result in an actually smaller image file, as
4964 * is probably desired. */
4965 ret
= qcow2_cluster_discard(bs
, offset
, MIN(step
, end_offset
- offset
),
4966 QCOW2_DISCARD_SNAPSHOT
, true);
4975 static coroutine_fn
int qcow2_co_flush_to_os(BlockDriverState
*bs
)
4977 BDRVQcow2State
*s
= bs
->opaque
;
4980 qemu_co_mutex_lock(&s
->lock
);
4981 ret
= qcow2_write_caches(bs
);
4982 qemu_co_mutex_unlock(&s
->lock
);
4987 static BlockMeasureInfo
*qcow2_measure(QemuOpts
*opts
, BlockDriverState
*in_bs
,
4990 Error
*local_err
= NULL
;
4991 BlockMeasureInfo
*info
;
4992 uint64_t required
= 0; /* bytes that contribute to required size */
4993 uint64_t virtual_size
; /* disk size as seen by guest */
4994 uint64_t refcount_bits
;
4996 uint64_t luks_payload_size
= 0;
4997 size_t cluster_size
;
5000 PreallocMode prealloc
;
5001 bool has_backing_file
;
5006 /* Parse image creation options */
5007 extended_l2
= qemu_opt_get_bool_del(opts
, BLOCK_OPT_EXTL2
, false);
5009 cluster_size
= qcow2_opt_get_cluster_size_del(opts
, extended_l2
,
5015 version
= qcow2_opt_get_version_del(opts
, &local_err
);
5020 refcount_bits
= qcow2_opt_get_refcount_bits_del(opts
, version
, &local_err
);
5025 optstr
= qemu_opt_get_del(opts
, BLOCK_OPT_PREALLOC
);
5026 prealloc
= qapi_enum_parse(&PreallocMode_lookup
, optstr
,
5027 PREALLOC_MODE_OFF
, &local_err
);
5033 optstr
= qemu_opt_get_del(opts
, BLOCK_OPT_BACKING_FILE
);
5034 has_backing_file
= !!optstr
;
5037 optstr
= qemu_opt_get_del(opts
, BLOCK_OPT_ENCRYPT_FORMAT
);
5038 has_luks
= optstr
&& strcmp(optstr
, "luks") == 0;
5042 g_autoptr(QCryptoBlockCreateOptions
) create_opts
= NULL
;
5043 QDict
*cryptoopts
= qcow2_extract_crypto_opts(opts
, "luks", errp
);
5046 create_opts
= block_crypto_create_opts_init(cryptoopts
, errp
);
5047 qobject_unref(cryptoopts
);
5052 if (!qcrypto_block_calculate_payload_offset(create_opts
,
5059 luks_payload_size
= ROUND_UP(headerlen
, cluster_size
);
5062 virtual_size
= qemu_opt_get_size_del(opts
, BLOCK_OPT_SIZE
, 0);
5063 virtual_size
= ROUND_UP(virtual_size
, cluster_size
);
5065 /* Check that virtual disk size is valid */
5066 l2e_size
= extended_l2
? L2E_SIZE_EXTENDED
: L2E_SIZE_NORMAL
;
5067 l2_tables
= DIV_ROUND_UP(virtual_size
/ cluster_size
,
5068 cluster_size
/ l2e_size
);
5069 if (l2_tables
* L1E_SIZE
> QCOW_MAX_L1_SIZE
) {
5070 error_setg(&local_err
, "The image size is too large "
5071 "(try using a larger cluster size)");
5075 /* Account for input image */
5077 int64_t ssize
= bdrv_getlength(in_bs
);
5079 error_setg_errno(&local_err
, -ssize
,
5080 "Unable to get image virtual_size");
5084 virtual_size
= ROUND_UP(ssize
, cluster_size
);
5086 if (has_backing_file
) {
5087 /* We don't how much of the backing chain is shared by the input
5088 * image and the new image file. In the worst case the new image's
5089 * backing file has nothing in common with the input image. Be
5090 * conservative and assume all clusters need to be written.
5092 required
= virtual_size
;
5097 for (offset
= 0; offset
< ssize
; offset
+= pnum
) {
5100 ret
= bdrv_block_status_above(in_bs
, NULL
, offset
,
5101 ssize
- offset
, &pnum
, NULL
,
5104 error_setg_errno(&local_err
, -ret
,
5105 "Unable to get block status");
5109 if (ret
& BDRV_BLOCK_ZERO
) {
5110 /* Skip zero regions (safe with no backing file) */
5111 } else if ((ret
& (BDRV_BLOCK_DATA
| BDRV_BLOCK_ALLOCATED
)) ==
5112 (BDRV_BLOCK_DATA
| BDRV_BLOCK_ALLOCATED
)) {
5113 /* Extend pnum to end of cluster for next iteration */
5114 pnum
= ROUND_UP(offset
+ pnum
, cluster_size
) - offset
;
5116 /* Count clusters we've seen */
5117 required
+= offset
% cluster_size
+ pnum
;
5123 /* Take into account preallocation. Nothing special is needed for
5124 * PREALLOC_MODE_METADATA since metadata is always counted.
5126 if (prealloc
== PREALLOC_MODE_FULL
|| prealloc
== PREALLOC_MODE_FALLOC
) {
5127 required
= virtual_size
;
5130 info
= g_new0(BlockMeasureInfo
, 1);
5131 info
->fully_allocated
= luks_payload_size
+
5132 qcow2_calc_prealloc_size(virtual_size
, cluster_size
,
5133 ctz32(refcount_bits
), extended_l2
);
5136 * Remove data clusters that are not required. This overestimates the
5137 * required size because metadata needed for the fully allocated file is
5138 * still counted. Show bitmaps only if both source and destination
5139 * would support them.
5141 info
->required
= info
->fully_allocated
- virtual_size
+ required
;
5142 info
->has_bitmaps
= version
>= 3 && in_bs
&&
5143 bdrv_supports_persistent_dirty_bitmap(in_bs
);
5144 if (info
->has_bitmaps
) {
5145 info
->bitmaps
= qcow2_get_persistent_dirty_bitmap_size(in_bs
,
5151 error_propagate(errp
, local_err
);
5155 static int coroutine_fn
5156 qcow2_co_get_info(BlockDriverState
*bs
, BlockDriverInfo
*bdi
)
5158 BDRVQcow2State
*s
= bs
->opaque
;
5159 bdi
->cluster_size
= s
->cluster_size
;
5160 bdi
->vm_state_offset
= qcow2_vm_state_offset(s
);
5161 bdi
->is_dirty
= s
->incompatible_features
& QCOW2_INCOMPAT_DIRTY
;
5165 static ImageInfoSpecific
*qcow2_get_specific_info(BlockDriverState
*bs
,
5168 BDRVQcow2State
*s
= bs
->opaque
;
5169 ImageInfoSpecific
*spec_info
;
5170 QCryptoBlockInfo
*encrypt_info
= NULL
;
5172 if (s
->crypto
!= NULL
) {
5173 encrypt_info
= qcrypto_block_get_info(s
->crypto
, errp
);
5174 if (!encrypt_info
) {
5179 spec_info
= g_new(ImageInfoSpecific
, 1);
5180 *spec_info
= (ImageInfoSpecific
){
5181 .type
= IMAGE_INFO_SPECIFIC_KIND_QCOW2
,
5182 .u
.qcow2
.data
= g_new0(ImageInfoSpecificQCow2
, 1),
5184 if (s
->qcow_version
== 2) {
5185 *spec_info
->u
.qcow2
.data
= (ImageInfoSpecificQCow2
){
5186 .compat
= g_strdup("0.10"),
5187 .refcount_bits
= s
->refcount_bits
,
5189 } else if (s
->qcow_version
== 3) {
5190 Qcow2BitmapInfoList
*bitmaps
;
5191 if (!qcow2_get_bitmap_info_list(bs
, &bitmaps
, errp
)) {
5192 qapi_free_ImageInfoSpecific(spec_info
);
5193 qapi_free_QCryptoBlockInfo(encrypt_info
);
5196 *spec_info
->u
.qcow2
.data
= (ImageInfoSpecificQCow2
){
5197 .compat
= g_strdup("1.1"),
5198 .lazy_refcounts
= s
->compatible_features
&
5199 QCOW2_COMPAT_LAZY_REFCOUNTS
,
5200 .has_lazy_refcounts
= true,
5201 .corrupt
= s
->incompatible_features
&
5202 QCOW2_INCOMPAT_CORRUPT
,
5203 .has_corrupt
= true,
5204 .has_extended_l2
= true,
5205 .extended_l2
= has_subclusters(s
),
5206 .refcount_bits
= s
->refcount_bits
,
5207 .has_bitmaps
= !!bitmaps
,
5209 .data_file
= g_strdup(s
->image_data_file
),
5210 .has_data_file_raw
= has_data_file(bs
),
5211 .data_file_raw
= data_file_is_raw(bs
),
5212 .compression_type
= s
->compression_type
,
5215 /* if this assertion fails, this probably means a new version was
5216 * added without having it covered here */
5221 ImageInfoSpecificQCow2Encryption
*qencrypt
=
5222 g_new(ImageInfoSpecificQCow2Encryption
, 1);
5223 switch (encrypt_info
->format
) {
5224 case Q_CRYPTO_BLOCK_FORMAT_QCOW
:
5225 qencrypt
->format
= BLOCKDEV_QCOW2_ENCRYPTION_FORMAT_AES
;
5227 case Q_CRYPTO_BLOCK_FORMAT_LUKS
:
5228 qencrypt
->format
= BLOCKDEV_QCOW2_ENCRYPTION_FORMAT_LUKS
;
5229 qencrypt
->u
.luks
= encrypt_info
->u
.luks
;
5234 /* Since we did shallow copy above, erase any pointers
5235 * in the original info */
5236 memset(&encrypt_info
->u
, 0, sizeof(encrypt_info
->u
));
5237 qapi_free_QCryptoBlockInfo(encrypt_info
);
5239 spec_info
->u
.qcow2
.data
->encrypt
= qencrypt
;
5245 static int qcow2_has_zero_init(BlockDriverState
*bs
)
5247 BDRVQcow2State
*s
= bs
->opaque
;
5250 if (qemu_in_coroutine()) {
5251 qemu_co_mutex_lock(&s
->lock
);
5254 * Check preallocation status: Preallocated images have all L2
5255 * tables allocated, nonpreallocated images have none. It is
5256 * therefore enough to check the first one.
5258 preallocated
= s
->l1_size
> 0 && s
->l1_table
[0] != 0;
5259 if (qemu_in_coroutine()) {
5260 qemu_co_mutex_unlock(&s
->lock
);
5263 if (!preallocated
) {
5265 } else if (bs
->encrypted
) {
5268 return bdrv_has_zero_init(s
->data_file
->bs
);
5273 * Check the request to vmstate. On success return
5274 * qcow2_vm_state_offset(bs) + @pos
5276 static int64_t qcow2_check_vmstate_request(BlockDriverState
*bs
,
5277 QEMUIOVector
*qiov
, int64_t pos
)
5279 BDRVQcow2State
*s
= bs
->opaque
;
5280 int64_t vmstate_offset
= qcow2_vm_state_offset(s
);
5283 /* Incoming requests must be OK */
5284 bdrv_check_qiov_request(pos
, qiov
->size
, qiov
, 0, &error_abort
);
5286 if (INT64_MAX
- pos
< vmstate_offset
) {
5290 pos
+= vmstate_offset
;
5291 ret
= bdrv_check_qiov_request(pos
, qiov
->size
, qiov
, 0, NULL
);
5299 static coroutine_fn
int qcow2_co_save_vmstate(BlockDriverState
*bs
,
5300 QEMUIOVector
*qiov
, int64_t pos
)
5302 int64_t offset
= qcow2_check_vmstate_request(bs
, qiov
, pos
);
5307 BLKDBG_EVENT(bs
->file
, BLKDBG_VMSTATE_SAVE
);
5308 return bs
->drv
->bdrv_co_pwritev_part(bs
, offset
, qiov
->size
, qiov
, 0, 0);
5311 static coroutine_fn
int qcow2_co_load_vmstate(BlockDriverState
*bs
,
5312 QEMUIOVector
*qiov
, int64_t pos
)
5314 int64_t offset
= qcow2_check_vmstate_request(bs
, qiov
, pos
);
5319 BLKDBG_EVENT(bs
->file
, BLKDBG_VMSTATE_LOAD
);
5320 return bs
->drv
->bdrv_co_preadv_part(bs
, offset
, qiov
->size
, qiov
, 0, 0);
5323 static int qcow2_has_compressed_clusters(BlockDriverState
*bs
)
5326 int64_t bytes
= bdrv_getlength(bs
);
5332 while (bytes
!= 0) {
5334 QCow2SubclusterType type
;
5335 unsigned int cur_bytes
= MIN(INT_MAX
, bytes
);
5336 uint64_t host_offset
;
5338 ret
= qcow2_get_host_offset(bs
, offset
, &cur_bytes
, &host_offset
,
5344 if (type
== QCOW2_SUBCLUSTER_COMPRESSED
) {
5348 offset
+= cur_bytes
;
5356 * Downgrades an image's version. To achieve this, any incompatible features
5357 * have to be removed.
5359 static int qcow2_downgrade(BlockDriverState
*bs
, int target_version
,
5360 BlockDriverAmendStatusCB
*status_cb
, void *cb_opaque
,
5363 BDRVQcow2State
*s
= bs
->opaque
;
5364 int current_version
= s
->qcow_version
;
5368 /* This is qcow2_downgrade(), not qcow2_upgrade() */
5369 assert(target_version
< current_version
);
5371 /* There are no other versions (now) that you can downgrade to */
5372 assert(target_version
== 2);
5374 if (s
->refcount_order
!= 4) {
5375 error_setg(errp
, "compat=0.10 requires refcount_bits=16");
5379 if (has_data_file(bs
)) {
5380 error_setg(errp
, "Cannot downgrade an image with a data file");
5385 * If any internal snapshot has a different size than the current
5386 * image size, or VM state size that exceeds 32 bits, downgrading
5387 * is unsafe. Even though we would still use v3-compliant output
5388 * to preserve that data, other v2 programs might not realize
5389 * those optional fields are important.
5391 for (i
= 0; i
< s
->nb_snapshots
; i
++) {
5392 if (s
->snapshots
[i
].vm_state_size
> UINT32_MAX
||
5393 s
->snapshots
[i
].disk_size
!= bs
->total_sectors
* BDRV_SECTOR_SIZE
) {
5394 error_setg(errp
, "Internal snapshots prevent downgrade of image");
5399 /* clear incompatible features */
5400 if (s
->incompatible_features
& QCOW2_INCOMPAT_DIRTY
) {
5401 ret
= qcow2_mark_clean(bs
);
5403 error_setg_errno(errp
, -ret
, "Failed to make the image clean");
5408 /* with QCOW2_INCOMPAT_CORRUPT, it is pretty much impossible to get here in
5409 * the first place; if that happens nonetheless, returning -ENOTSUP is the
5410 * best thing to do anyway */
5412 if (s
->incompatible_features
& ~QCOW2_INCOMPAT_COMPRESSION
) {
5413 error_setg(errp
, "Cannot downgrade an image with incompatible features "
5414 "0x%" PRIx64
" set",
5415 s
->incompatible_features
& ~QCOW2_INCOMPAT_COMPRESSION
);
5419 /* since we can ignore compatible features, we can set them to 0 as well */
5420 s
->compatible_features
= 0;
5421 /* if lazy refcounts have been used, they have already been fixed through
5422 * clearing the dirty flag */
5424 /* clearing autoclear features is trivial */
5425 s
->autoclear_features
= 0;
5427 ret
= qcow2_expand_zero_clusters(bs
, status_cb
, cb_opaque
);
5429 error_setg_errno(errp
, -ret
, "Failed to turn zero into data clusters");
5433 if (s
->incompatible_features
& QCOW2_INCOMPAT_COMPRESSION
) {
5434 ret
= qcow2_has_compressed_clusters(bs
);
5436 error_setg(errp
, "Failed to check block status");
5440 error_setg(errp
, "Cannot downgrade an image with zstd compression "
5441 "type and existing compressed clusters");
5445 * No compressed clusters for now, so just chose default zlib
5448 s
->incompatible_features
&= ~QCOW2_INCOMPAT_COMPRESSION
;
5449 s
->compression_type
= QCOW2_COMPRESSION_TYPE_ZLIB
;
5452 assert(s
->incompatible_features
== 0);
5454 s
->qcow_version
= target_version
;
5455 ret
= qcow2_update_header(bs
);
5457 s
->qcow_version
= current_version
;
5458 error_setg_errno(errp
, -ret
, "Failed to update the image header");
5465 * Upgrades an image's version. While newer versions encompass all
5466 * features of older versions, some things may have to be presented
5469 static int qcow2_upgrade(BlockDriverState
*bs
, int target_version
,
5470 BlockDriverAmendStatusCB
*status_cb
, void *cb_opaque
,
5473 BDRVQcow2State
*s
= bs
->opaque
;
5474 bool need_snapshot_update
;
5475 int current_version
= s
->qcow_version
;
5479 /* This is qcow2_upgrade(), not qcow2_downgrade() */
5480 assert(target_version
> current_version
);
5482 /* There are no other versions (yet) that you can upgrade to */
5483 assert(target_version
== 3);
5485 status_cb(bs
, 0, 2, cb_opaque
);
5488 * In v2, snapshots do not need to have extra data. v3 requires
5489 * the 64-bit VM state size and the virtual disk size to be
5491 * qcow2_write_snapshots() will always write the list in the
5492 * v3-compliant format.
5494 need_snapshot_update
= false;
5495 for (i
= 0; i
< s
->nb_snapshots
; i
++) {
5496 if (s
->snapshots
[i
].extra_data_size
<
5497 sizeof_field(QCowSnapshotExtraData
, vm_state_size_large
) +
5498 sizeof_field(QCowSnapshotExtraData
, disk_size
))
5500 need_snapshot_update
= true;
5504 if (need_snapshot_update
) {
5505 ret
= qcow2_write_snapshots(bs
);
5507 error_setg_errno(errp
, -ret
, "Failed to update the snapshot table");
5511 status_cb(bs
, 1, 2, cb_opaque
);
5513 s
->qcow_version
= target_version
;
5514 ret
= qcow2_update_header(bs
);
5516 s
->qcow_version
= current_version
;
5517 error_setg_errno(errp
, -ret
, "Failed to update the image header");
5520 status_cb(bs
, 2, 2, cb_opaque
);
5525 typedef enum Qcow2AmendOperation
{
5526 /* This is the value Qcow2AmendHelperCBInfo::last_operation will be
5527 * statically initialized to so that the helper CB can discern the first
5528 * invocation from an operation change */
5529 QCOW2_NO_OPERATION
= 0,
5532 QCOW2_UPDATING_ENCRYPTION
,
5533 QCOW2_CHANGING_REFCOUNT_ORDER
,
5535 } Qcow2AmendOperation
;
5537 typedef struct Qcow2AmendHelperCBInfo
{
5538 /* The code coordinating the amend operations should only modify
5539 * these four fields; the rest will be managed by the CB */
5540 BlockDriverAmendStatusCB
*original_status_cb
;
5541 void *original_cb_opaque
;
5543 Qcow2AmendOperation current_operation
;
5545 /* Total number of operations to perform (only set once) */
5546 int total_operations
;
5548 /* The following fields are managed by the CB */
5550 /* Number of operations completed */
5551 int operations_completed
;
5553 /* Cumulative offset of all completed operations */
5554 int64_t offset_completed
;
5556 Qcow2AmendOperation last_operation
;
5557 int64_t last_work_size
;
5558 } Qcow2AmendHelperCBInfo
;
5560 static void qcow2_amend_helper_cb(BlockDriverState
*bs
,
5561 int64_t operation_offset
,
5562 int64_t operation_work_size
, void *opaque
)
5564 Qcow2AmendHelperCBInfo
*info
= opaque
;
5565 int64_t current_work_size
;
5566 int64_t projected_work_size
;
5568 if (info
->current_operation
!= info
->last_operation
) {
5569 if (info
->last_operation
!= QCOW2_NO_OPERATION
) {
5570 info
->offset_completed
+= info
->last_work_size
;
5571 info
->operations_completed
++;
5574 info
->last_operation
= info
->current_operation
;
5577 assert(info
->total_operations
> 0);
5578 assert(info
->operations_completed
< info
->total_operations
);
5580 info
->last_work_size
= operation_work_size
;
5582 current_work_size
= info
->offset_completed
+ operation_work_size
;
5584 /* current_work_size is the total work size for (operations_completed + 1)
5585 * operations (which includes this one), so multiply it by the number of
5586 * operations not covered and divide it by the number of operations
5587 * covered to get a projection for the operations not covered */
5588 projected_work_size
= current_work_size
* (info
->total_operations
-
5589 info
->operations_completed
- 1)
5590 / (info
->operations_completed
+ 1);
5592 info
->original_status_cb(bs
, info
->offset_completed
+ operation_offset
,
5593 current_work_size
+ projected_work_size
,
5594 info
->original_cb_opaque
);
5597 static int qcow2_amend_options(BlockDriverState
*bs
, QemuOpts
*opts
,
5598 BlockDriverAmendStatusCB
*status_cb
,
5603 BDRVQcow2State
*s
= bs
->opaque
;
5604 int old_version
= s
->qcow_version
, new_version
= old_version
;
5605 uint64_t new_size
= 0;
5606 const char *backing_file
= NULL
, *backing_format
= NULL
, *data_file
= NULL
;
5607 bool lazy_refcounts
= s
->use_lazy_refcounts
;
5608 bool data_file_raw
= data_file_is_raw(bs
);
5609 const char *compat
= NULL
;
5610 int refcount_bits
= s
->refcount_bits
;
5612 QemuOptDesc
*desc
= opts
->list
->desc
;
5613 Qcow2AmendHelperCBInfo helper_cb_info
;
5614 bool encryption_update
= false;
5616 while (desc
&& desc
->name
) {
5617 if (!qemu_opt_find(opts
, desc
->name
)) {
5618 /* only change explicitly defined options */
5623 if (!strcmp(desc
->name
, BLOCK_OPT_COMPAT_LEVEL
)) {
5624 compat
= qemu_opt_get(opts
, BLOCK_OPT_COMPAT_LEVEL
);
5626 /* preserve default */
5627 } else if (!strcmp(compat
, "0.10") || !strcmp(compat
, "v2")) {
5629 } else if (!strcmp(compat
, "1.1") || !strcmp(compat
, "v3")) {
5632 error_setg(errp
, "Unknown compatibility level %s", compat
);
5635 } else if (!strcmp(desc
->name
, BLOCK_OPT_SIZE
)) {
5636 new_size
= qemu_opt_get_size(opts
, BLOCK_OPT_SIZE
, 0);
5637 } else if (!strcmp(desc
->name
, BLOCK_OPT_BACKING_FILE
)) {
5638 backing_file
= qemu_opt_get(opts
, BLOCK_OPT_BACKING_FILE
);
5639 } else if (!strcmp(desc
->name
, BLOCK_OPT_BACKING_FMT
)) {
5640 backing_format
= qemu_opt_get(opts
, BLOCK_OPT_BACKING_FMT
);
5641 } else if (g_str_has_prefix(desc
->name
, "encrypt.")) {
5644 "Can't amend encryption options - encryption not present");
5647 if (s
->crypt_method_header
!= QCOW_CRYPT_LUKS
) {
5649 "Only LUKS encryption options can be amended");
5652 encryption_update
= true;
5653 } else if (!strcmp(desc
->name
, BLOCK_OPT_LAZY_REFCOUNTS
)) {
5654 lazy_refcounts
= qemu_opt_get_bool(opts
, BLOCK_OPT_LAZY_REFCOUNTS
,
5656 } else if (!strcmp(desc
->name
, BLOCK_OPT_REFCOUNT_BITS
)) {
5657 refcount_bits
= qemu_opt_get_number(opts
, BLOCK_OPT_REFCOUNT_BITS
,
5660 if (refcount_bits
<= 0 || refcount_bits
> 64 ||
5661 !is_power_of_2(refcount_bits
))
5663 error_setg(errp
, "Refcount width must be a power of two and "
5664 "may not exceed 64 bits");
5667 } else if (!strcmp(desc
->name
, BLOCK_OPT_DATA_FILE
)) {
5668 data_file
= qemu_opt_get(opts
, BLOCK_OPT_DATA_FILE
);
5669 if (data_file
&& !has_data_file(bs
)) {
5670 error_setg(errp
, "data-file can only be set for images that "
5671 "use an external data file");
5674 } else if (!strcmp(desc
->name
, BLOCK_OPT_DATA_FILE_RAW
)) {
5675 data_file_raw
= qemu_opt_get_bool(opts
, BLOCK_OPT_DATA_FILE_RAW
,
5677 if (data_file_raw
&& !data_file_is_raw(bs
)) {
5678 error_setg(errp
, "data-file-raw cannot be set on existing "
5683 /* if this point is reached, this probably means a new option was
5684 * added without having it covered here */
5691 helper_cb_info
= (Qcow2AmendHelperCBInfo
){
5692 .original_status_cb
= status_cb
,
5693 .original_cb_opaque
= cb_opaque
,
5694 .total_operations
= (new_version
!= old_version
)
5695 + (s
->refcount_bits
!= refcount_bits
) +
5696 (encryption_update
== true)
5699 /* Upgrade first (some features may require compat=1.1) */
5700 if (new_version
> old_version
) {
5701 helper_cb_info
.current_operation
= QCOW2_UPGRADING
;
5702 ret
= qcow2_upgrade(bs
, new_version
, &qcow2_amend_helper_cb
,
5703 &helper_cb_info
, errp
);
5709 if (encryption_update
) {
5710 QDict
*amend_opts_dict
;
5711 QCryptoBlockAmendOptions
*amend_opts
;
5713 helper_cb_info
.current_operation
= QCOW2_UPDATING_ENCRYPTION
;
5714 amend_opts_dict
= qcow2_extract_crypto_opts(opts
, "luks", errp
);
5715 if (!amend_opts_dict
) {
5718 amend_opts
= block_crypto_amend_opts_init(amend_opts_dict
, errp
);
5719 qobject_unref(amend_opts_dict
);
5723 ret
= qcrypto_block_amend_options(s
->crypto
,
5724 qcow2_crypto_hdr_read_func
,
5725 qcow2_crypto_hdr_write_func
,
5730 qapi_free_QCryptoBlockAmendOptions(amend_opts
);
5736 if (s
->refcount_bits
!= refcount_bits
) {
5737 int refcount_order
= ctz32(refcount_bits
);
5739 if (new_version
< 3 && refcount_bits
!= 16) {
5740 error_setg(errp
, "Refcount widths other than 16 bits require "
5741 "compatibility level 1.1 or above (use compat=1.1 or "
5746 helper_cb_info
.current_operation
= QCOW2_CHANGING_REFCOUNT_ORDER
;
5747 ret
= qcow2_change_refcount_order(bs
, refcount_order
,
5748 &qcow2_amend_helper_cb
,
5749 &helper_cb_info
, errp
);
5755 /* data-file-raw blocks backing files, so clear it first if requested */
5756 if (data_file_raw
) {
5757 s
->autoclear_features
|= QCOW2_AUTOCLEAR_DATA_FILE_RAW
;
5759 s
->autoclear_features
&= ~QCOW2_AUTOCLEAR_DATA_FILE_RAW
;
5763 g_free(s
->image_data_file
);
5764 s
->image_data_file
= *data_file
? g_strdup(data_file
) : NULL
;
5767 ret
= qcow2_update_header(bs
);
5769 error_setg_errno(errp
, -ret
, "Failed to update the image header");
5773 if (backing_file
|| backing_format
) {
5774 if (g_strcmp0(backing_file
, s
->image_backing_file
) ||
5775 g_strcmp0(backing_format
, s
->image_backing_format
)) {
5776 error_setg(errp
, "Cannot amend the backing file");
5777 error_append_hint(errp
,
5778 "You can use 'qemu-img rebase' instead.\n");
5783 if (s
->use_lazy_refcounts
!= lazy_refcounts
) {
5784 if (lazy_refcounts
) {
5785 if (new_version
< 3) {
5786 error_setg(errp
, "Lazy refcounts only supported with "
5787 "compatibility level 1.1 and above (use compat=1.1 "
5791 s
->compatible_features
|= QCOW2_COMPAT_LAZY_REFCOUNTS
;
5792 ret
= qcow2_update_header(bs
);
5794 s
->compatible_features
&= ~QCOW2_COMPAT_LAZY_REFCOUNTS
;
5795 error_setg_errno(errp
, -ret
, "Failed to update the image header");
5798 s
->use_lazy_refcounts
= true;
5800 /* make image clean first */
5801 ret
= qcow2_mark_clean(bs
);
5803 error_setg_errno(errp
, -ret
, "Failed to make the image clean");
5806 /* now disallow lazy refcounts */
5807 s
->compatible_features
&= ~QCOW2_COMPAT_LAZY_REFCOUNTS
;
5808 ret
= qcow2_update_header(bs
);
5810 s
->compatible_features
|= QCOW2_COMPAT_LAZY_REFCOUNTS
;
5811 error_setg_errno(errp
, -ret
, "Failed to update the image header");
5814 s
->use_lazy_refcounts
= false;
5819 BlockBackend
*blk
= blk_new_with_bs(bs
, BLK_PERM_RESIZE
, BLK_PERM_ALL
,
5826 * Amending image options should ensure that the image has
5827 * exactly the given new values, so pass exact=true here.
5829 ret
= blk_truncate(blk
, new_size
, true, PREALLOC_MODE_OFF
, 0, errp
);
5836 /* Downgrade last (so unsupported features can be removed before) */
5837 if (new_version
< old_version
) {
5838 helper_cb_info
.current_operation
= QCOW2_DOWNGRADING
;
5839 ret
= qcow2_downgrade(bs
, new_version
, &qcow2_amend_helper_cb
,
5840 &helper_cb_info
, errp
);
5849 static int coroutine_fn
qcow2_co_amend(BlockDriverState
*bs
,
5850 BlockdevAmendOptions
*opts
,
5854 BlockdevAmendOptionsQcow2
*qopts
= &opts
->u
.qcow2
;
5855 BDRVQcow2State
*s
= bs
->opaque
;
5858 if (qopts
->encrypt
) {
5860 error_setg(errp
, "image is not encrypted, can't amend");
5864 if (qopts
->encrypt
->format
!= Q_CRYPTO_BLOCK_FORMAT_LUKS
) {
5866 "Amend can't be used to change the qcow2 encryption format");
5870 if (s
->crypt_method_header
!= QCOW_CRYPT_LUKS
) {
5872 "Only LUKS encryption options can be amended for qcow2 with blockdev-amend");
5876 ret
= qcrypto_block_amend_options(s
->crypto
,
5877 qcow2_crypto_hdr_read_func
,
5878 qcow2_crypto_hdr_write_func
,
5888 * If offset or size are negative, respectively, they will not be included in
5889 * the BLOCK_IMAGE_CORRUPTED event emitted.
5890 * fatal will be ignored for read-only BDS; corruptions found there will always
5891 * be considered non-fatal.
5893 void qcow2_signal_corruption(BlockDriverState
*bs
, bool fatal
, int64_t offset
,
5894 int64_t size
, const char *message_format
, ...)
5896 BDRVQcow2State
*s
= bs
->opaque
;
5897 const char *node_name
;
5901 fatal
= fatal
&& bdrv_is_writable(bs
);
5903 if (s
->signaled_corruption
&&
5904 (!fatal
|| (s
->incompatible_features
& QCOW2_INCOMPAT_CORRUPT
)))
5909 va_start(ap
, message_format
);
5910 message
= g_strdup_vprintf(message_format
, ap
);
5914 fprintf(stderr
, "qcow2: Marking image as corrupt: %s; further "
5915 "corruption events will be suppressed\n", message
);
5917 fprintf(stderr
, "qcow2: Image is corrupt: %s; further non-fatal "
5918 "corruption events will be suppressed\n", message
);
5921 node_name
= bdrv_get_node_name(bs
);
5922 qapi_event_send_block_image_corrupted(bdrv_get_device_name(bs
),
5923 *node_name
? node_name
: NULL
,
5924 message
, offset
>= 0, offset
,
5930 qcow2_mark_corrupt(bs
);
5931 bs
->drv
= NULL
; /* make BDS unusable */
5934 s
->signaled_corruption
= true;
5937 #define QCOW_COMMON_OPTIONS \
5939 .name = BLOCK_OPT_SIZE, \
5940 .type = QEMU_OPT_SIZE, \
5941 .help = "Virtual disk size" \
5944 .name = BLOCK_OPT_COMPAT_LEVEL, \
5945 .type = QEMU_OPT_STRING, \
5946 .help = "Compatibility level (v2 [0.10] or v3 [1.1])" \
5949 .name = BLOCK_OPT_BACKING_FILE, \
5950 .type = QEMU_OPT_STRING, \
5951 .help = "File name of a base image" \
5954 .name = BLOCK_OPT_BACKING_FMT, \
5955 .type = QEMU_OPT_STRING, \
5956 .help = "Image format of the base image" \
5959 .name = BLOCK_OPT_DATA_FILE, \
5960 .type = QEMU_OPT_STRING, \
5961 .help = "File name of an external data file" \
5964 .name = BLOCK_OPT_DATA_FILE_RAW, \
5965 .type = QEMU_OPT_BOOL, \
5966 .help = "The external data file must stay valid " \
5970 .name = BLOCK_OPT_LAZY_REFCOUNTS, \
5971 .type = QEMU_OPT_BOOL, \
5972 .help = "Postpone refcount updates", \
5973 .def_value_str = "off" \
5976 .name = BLOCK_OPT_REFCOUNT_BITS, \
5977 .type = QEMU_OPT_NUMBER, \
5978 .help = "Width of a reference count entry in bits", \
5979 .def_value_str = "16" \
5982 static QemuOptsList qcow2_create_opts
= {
5983 .name
= "qcow2-create-opts",
5984 .head
= QTAILQ_HEAD_INITIALIZER(qcow2_create_opts
.head
),
5987 .name
= BLOCK_OPT_ENCRYPT
, \
5988 .type
= QEMU_OPT_BOOL
, \
5989 .help
= "Encrypt the image with format 'aes'. (Deprecated " \
5990 "in favor of " BLOCK_OPT_ENCRYPT_FORMAT
"=aes)", \
5993 .name
= BLOCK_OPT_ENCRYPT_FORMAT
, \
5994 .type
= QEMU_OPT_STRING
, \
5995 .help
= "Encrypt the image, format choices: 'aes', 'luks'", \
5997 BLOCK_CRYPTO_OPT_DEF_KEY_SECRET("encrypt.", \
5998 "ID of secret providing qcow AES key or LUKS passphrase"), \
5999 BLOCK_CRYPTO_OPT_DEF_LUKS_CIPHER_ALG("encrypt."), \
6000 BLOCK_CRYPTO_OPT_DEF_LUKS_CIPHER_MODE("encrypt."), \
6001 BLOCK_CRYPTO_OPT_DEF_LUKS_IVGEN_ALG("encrypt."), \
6002 BLOCK_CRYPTO_OPT_DEF_LUKS_IVGEN_HASH_ALG("encrypt."), \
6003 BLOCK_CRYPTO_OPT_DEF_LUKS_HASH_ALG("encrypt."), \
6004 BLOCK_CRYPTO_OPT_DEF_LUKS_ITER_TIME("encrypt."), \
6006 .name
= BLOCK_OPT_CLUSTER_SIZE
, \
6007 .type
= QEMU_OPT_SIZE
, \
6008 .help
= "qcow2 cluster size", \
6009 .def_value_str
= stringify(DEFAULT_CLUSTER_SIZE
) \
6012 .name
= BLOCK_OPT_EXTL2
, \
6013 .type
= QEMU_OPT_BOOL
, \
6014 .help
= "Extended L2 tables", \
6015 .def_value_str
= "off" \
6018 .name
= BLOCK_OPT_PREALLOC
, \
6019 .type
= QEMU_OPT_STRING
, \
6020 .help
= "Preallocation mode (allowed values: off, " \
6021 "metadata, falloc, full)" \
6024 .name
= BLOCK_OPT_COMPRESSION_TYPE
, \
6025 .type
= QEMU_OPT_STRING
, \
6026 .help
= "Compression method used for image cluster " \
6028 .def_value_str
= "zlib" \
6030 QCOW_COMMON_OPTIONS
,
6031 { /* end of list */ }
6035 static QemuOptsList qcow2_amend_opts
= {
6036 .name
= "qcow2-amend-opts",
6037 .head
= QTAILQ_HEAD_INITIALIZER(qcow2_amend_opts
.head
),
6039 BLOCK_CRYPTO_OPT_DEF_LUKS_STATE("encrypt."),
6040 BLOCK_CRYPTO_OPT_DEF_LUKS_KEYSLOT("encrypt."),
6041 BLOCK_CRYPTO_OPT_DEF_LUKS_OLD_SECRET("encrypt."),
6042 BLOCK_CRYPTO_OPT_DEF_LUKS_NEW_SECRET("encrypt."),
6043 BLOCK_CRYPTO_OPT_DEF_LUKS_ITER_TIME("encrypt."),
6044 QCOW_COMMON_OPTIONS
,
6045 { /* end of list */ }
6049 static const char *const qcow2_strong_runtime_opts
[] = {
6050 "encrypt." BLOCK_CRYPTO_OPT_QCOW_KEY_SECRET
,
6055 BlockDriver bdrv_qcow2
= {
6056 .format_name
= "qcow2",
6057 .instance_size
= sizeof(BDRVQcow2State
),
6058 .bdrv_probe
= qcow2_probe
,
6059 .bdrv_open
= qcow2_open
,
6060 .bdrv_close
= qcow2_close
,
6061 .bdrv_reopen_prepare
= qcow2_reopen_prepare
,
6062 .bdrv_reopen_commit
= qcow2_reopen_commit
,
6063 .bdrv_reopen_commit_post
= qcow2_reopen_commit_post
,
6064 .bdrv_reopen_abort
= qcow2_reopen_abort
,
6065 .bdrv_join_options
= qcow2_join_options
,
6066 .bdrv_child_perm
= bdrv_default_perms
,
6067 .bdrv_co_create_opts
= qcow2_co_create_opts
,
6068 .bdrv_co_create
= qcow2_co_create
,
6069 .bdrv_has_zero_init
= qcow2_has_zero_init
,
6070 .bdrv_co_block_status
= qcow2_co_block_status
,
6072 .bdrv_co_preadv_part
= qcow2_co_preadv_part
,
6073 .bdrv_co_pwritev_part
= qcow2_co_pwritev_part
,
6074 .bdrv_co_flush_to_os
= qcow2_co_flush_to_os
,
6076 .bdrv_co_pwrite_zeroes
= qcow2_co_pwrite_zeroes
,
6077 .bdrv_co_pdiscard
= qcow2_co_pdiscard
,
6078 .bdrv_co_copy_range_from
= qcow2_co_copy_range_from
,
6079 .bdrv_co_copy_range_to
= qcow2_co_copy_range_to
,
6080 .bdrv_co_truncate
= qcow2_co_truncate
,
6081 .bdrv_co_pwritev_compressed_part
= qcow2_co_pwritev_compressed_part
,
6082 .bdrv_make_empty
= qcow2_make_empty
,
6084 .bdrv_snapshot_create
= qcow2_snapshot_create
,
6085 .bdrv_snapshot_goto
= qcow2_snapshot_goto
,
6086 .bdrv_snapshot_delete
= qcow2_snapshot_delete
,
6087 .bdrv_snapshot_list
= qcow2_snapshot_list
,
6088 .bdrv_snapshot_load_tmp
= qcow2_snapshot_load_tmp
,
6089 .bdrv_measure
= qcow2_measure
,
6090 .bdrv_co_get_info
= qcow2_co_get_info
,
6091 .bdrv_get_specific_info
= qcow2_get_specific_info
,
6093 .bdrv_co_save_vmstate
= qcow2_co_save_vmstate
,
6094 .bdrv_co_load_vmstate
= qcow2_co_load_vmstate
,
6097 .supports_backing
= true,
6098 .bdrv_change_backing_file
= qcow2_change_backing_file
,
6100 .bdrv_refresh_limits
= qcow2_refresh_limits
,
6101 .bdrv_co_invalidate_cache
= qcow2_co_invalidate_cache
,
6102 .bdrv_inactivate
= qcow2_inactivate
,
6104 .create_opts
= &qcow2_create_opts
,
6105 .amend_opts
= &qcow2_amend_opts
,
6106 .strong_runtime_opts
= qcow2_strong_runtime_opts
,
6107 .mutable_opts
= mutable_opts
,
6108 .bdrv_co_check
= qcow2_co_check
,
6109 .bdrv_amend_options
= qcow2_amend_options
,
6110 .bdrv_co_amend
= qcow2_co_amend
,
6112 .bdrv_detach_aio_context
= qcow2_detach_aio_context
,
6113 .bdrv_attach_aio_context
= qcow2_attach_aio_context
,
6115 .bdrv_supports_persistent_dirty_bitmap
=
6116 qcow2_supports_persistent_dirty_bitmap
,
6117 .bdrv_co_can_store_new_dirty_bitmap
= qcow2_co_can_store_new_dirty_bitmap
,
6118 .bdrv_co_remove_persistent_dirty_bitmap
=
6119 qcow2_co_remove_persistent_dirty_bitmap
,
6122 static void bdrv_qcow2_init(void)
6124 bdrv_register(&bdrv_qcow2
);
6127 block_init(bdrv_qcow2_init
);