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"
26 #include "block/block_int.h"
27 #include "sysemu/block-backend.h"
28 #include "qemu/module.h"
31 #include "qemu/error-report.h"
32 #include "qapi/error.h"
33 #include "qapi/qapi-events-block-core.h"
34 #include "qapi/qmp/qdict.h"
35 #include "qapi/qmp/qstring.h"
37 #include "qemu/option_int.h"
38 #include "qemu/cutils.h"
39 #include "qemu/bswap.h"
40 #include "qapi/qobject-input-visitor.h"
41 #include "qapi/qapi-visit-block-core.h"
45 Differences with QCOW:
47 - Support for multiple incremental snapshots.
48 - Memory management by reference counts.
49 - Clusters which have a reference count of one have the bit
50 QCOW_OFLAG_COPIED to optimize write performance.
51 - Size of compressed clusters is stored in sectors to reduce bit usage
52 in the cluster offsets.
53 - Support for storing additional data (such as the VM state) in the
55 - If a backing store is used, the cluster size is not constrained
56 (could be backported to QCOW).
57 - L2 tables have always a size of one cluster.
64 } QEMU_PACKED QCowExtension
;
66 #define QCOW2_EXT_MAGIC_END 0
67 #define QCOW2_EXT_MAGIC_BACKING_FORMAT 0xE2792ACA
68 #define QCOW2_EXT_MAGIC_FEATURE_TABLE 0x6803f857
69 #define QCOW2_EXT_MAGIC_CRYPTO_HEADER 0x0537be77
70 #define QCOW2_EXT_MAGIC_BITMAPS 0x23852875
72 static int qcow2_probe(const uint8_t *buf
, int buf_size
, const char *filename
)
74 const QCowHeader
*cow_header
= (const void *)buf
;
76 if (buf_size
>= sizeof(QCowHeader
) &&
77 be32_to_cpu(cow_header
->magic
) == QCOW_MAGIC
&&
78 be32_to_cpu(cow_header
->version
) >= 2)
85 static ssize_t
qcow2_crypto_hdr_read_func(QCryptoBlock
*block
, size_t offset
,
86 uint8_t *buf
, size_t buflen
,
87 void *opaque
, Error
**errp
)
89 BlockDriverState
*bs
= opaque
;
90 BDRVQcow2State
*s
= bs
->opaque
;
93 if ((offset
+ buflen
) > s
->crypto_header
.length
) {
94 error_setg(errp
, "Request for data outside of extension header");
98 ret
= bdrv_pread(bs
->file
,
99 s
->crypto_header
.offset
+ offset
, buf
, buflen
);
101 error_setg_errno(errp
, -ret
, "Could not read encryption header");
108 static ssize_t
qcow2_crypto_hdr_init_func(QCryptoBlock
*block
, size_t headerlen
,
109 void *opaque
, Error
**errp
)
111 BlockDriverState
*bs
= opaque
;
112 BDRVQcow2State
*s
= bs
->opaque
;
116 ret
= qcow2_alloc_clusters(bs
, headerlen
);
118 error_setg_errno(errp
, -ret
,
119 "Cannot allocate cluster for LUKS header size %zu",
124 s
->crypto_header
.length
= headerlen
;
125 s
->crypto_header
.offset
= ret
;
127 /* Zero fill remaining space in cluster so it has predictable
128 * content in case of future spec changes */
129 clusterlen
= size_to_clusters(s
, headerlen
) * s
->cluster_size
;
130 assert(qcow2_pre_write_overlap_check(bs
, 0, ret
, clusterlen
) == 0);
131 ret
= bdrv_pwrite_zeroes(bs
->file
,
133 clusterlen
- headerlen
, 0);
135 error_setg_errno(errp
, -ret
, "Could not zero fill encryption header");
143 static ssize_t
qcow2_crypto_hdr_write_func(QCryptoBlock
*block
, size_t offset
,
144 const uint8_t *buf
, size_t buflen
,
145 void *opaque
, Error
**errp
)
147 BlockDriverState
*bs
= opaque
;
148 BDRVQcow2State
*s
= bs
->opaque
;
151 if ((offset
+ buflen
) > s
->crypto_header
.length
) {
152 error_setg(errp
, "Request for data outside of extension header");
156 ret
= bdrv_pwrite(bs
->file
,
157 s
->crypto_header
.offset
+ offset
, buf
, buflen
);
159 error_setg_errno(errp
, -ret
, "Could not read encryption header");
167 * read qcow2 extension and fill bs
168 * start reading from start_offset
169 * finish reading upon magic of value 0 or when end_offset reached
170 * unknown magic is skipped (future extension this version knows nothing about)
171 * return 0 upon success, non-0 otherwise
173 static int qcow2_read_extensions(BlockDriverState
*bs
, uint64_t start_offset
,
174 uint64_t end_offset
, void **p_feature_table
,
175 int flags
, bool *need_update_header
,
178 BDRVQcow2State
*s
= bs
->opaque
;
182 Qcow2BitmapHeaderExt bitmaps_ext
;
184 if (need_update_header
!= NULL
) {
185 *need_update_header
= false;
189 printf("qcow2_read_extensions: start=%ld end=%ld\n", start_offset
, end_offset
);
191 offset
= start_offset
;
192 while (offset
< end_offset
) {
196 if (offset
> s
->cluster_size
)
197 printf("qcow2_read_extension: suspicious offset %lu\n", offset
);
199 printf("attempting to read extended header in offset %lu\n", offset
);
202 ret
= bdrv_pread(bs
->file
, offset
, &ext
, sizeof(ext
));
204 error_setg_errno(errp
, -ret
, "qcow2_read_extension: ERROR: "
205 "pread fail from offset %" PRIu64
, offset
);
208 be32_to_cpus(&ext
.magic
);
209 be32_to_cpus(&ext
.len
);
210 offset
+= sizeof(ext
);
212 printf("ext.magic = 0x%x\n", ext
.magic
);
214 if (offset
> end_offset
|| ext
.len
> end_offset
- offset
) {
215 error_setg(errp
, "Header extension too large");
220 case QCOW2_EXT_MAGIC_END
:
223 case QCOW2_EXT_MAGIC_BACKING_FORMAT
:
224 if (ext
.len
>= sizeof(bs
->backing_format
)) {
225 error_setg(errp
, "ERROR: ext_backing_format: len=%" PRIu32
226 " too large (>=%zu)", ext
.len
,
227 sizeof(bs
->backing_format
));
230 ret
= bdrv_pread(bs
->file
, offset
, bs
->backing_format
, ext
.len
);
232 error_setg_errno(errp
, -ret
, "ERROR: ext_backing_format: "
233 "Could not read format name");
236 bs
->backing_format
[ext
.len
] = '\0';
237 s
->image_backing_format
= g_strdup(bs
->backing_format
);
239 printf("Qcow2: Got format extension %s\n", bs
->backing_format
);
243 case QCOW2_EXT_MAGIC_FEATURE_TABLE
:
244 if (p_feature_table
!= NULL
) {
245 void* feature_table
= g_malloc0(ext
.len
+ 2 * sizeof(Qcow2Feature
));
246 ret
= bdrv_pread(bs
->file
, offset
, feature_table
, ext
.len
);
248 error_setg_errno(errp
, -ret
, "ERROR: ext_feature_table: "
249 "Could not read table");
253 *p_feature_table
= feature_table
;
257 case QCOW2_EXT_MAGIC_CRYPTO_HEADER
: {
258 unsigned int cflags
= 0;
259 if (s
->crypt_method_header
!= QCOW_CRYPT_LUKS
) {
260 error_setg(errp
, "CRYPTO header extension only "
261 "expected with LUKS encryption method");
264 if (ext
.len
!= sizeof(Qcow2CryptoHeaderExtension
)) {
265 error_setg(errp
, "CRYPTO header extension size %u, "
266 "but expected size %zu", ext
.len
,
267 sizeof(Qcow2CryptoHeaderExtension
));
271 ret
= bdrv_pread(bs
->file
, offset
, &s
->crypto_header
, ext
.len
);
273 error_setg_errno(errp
, -ret
,
274 "Unable to read CRYPTO header extension");
277 be64_to_cpus(&s
->crypto_header
.offset
);
278 be64_to_cpus(&s
->crypto_header
.length
);
280 if ((s
->crypto_header
.offset
% s
->cluster_size
) != 0) {
281 error_setg(errp
, "Encryption header offset '%" PRIu64
"' is "
282 "not a multiple of cluster size '%u'",
283 s
->crypto_header
.offset
, s
->cluster_size
);
287 if (flags
& BDRV_O_NO_IO
) {
288 cflags
|= QCRYPTO_BLOCK_OPEN_NO_IO
;
290 s
->crypto
= qcrypto_block_open(s
->crypto_opts
, "encrypt.",
291 qcow2_crypto_hdr_read_func
,
298 case QCOW2_EXT_MAGIC_BITMAPS
:
299 if (ext
.len
!= sizeof(bitmaps_ext
)) {
300 error_setg_errno(errp
, -ret
, "bitmaps_ext: "
301 "Invalid extension length");
305 if (!(s
->autoclear_features
& QCOW2_AUTOCLEAR_BITMAPS
)) {
306 if (s
->qcow_version
< 3) {
307 /* Let's be a bit more specific */
308 warn_report("This qcow2 v2 image contains bitmaps, but "
309 "they may have been modified by a program "
310 "without persistent bitmap support; so now "
311 "they must all be considered inconsistent");
313 warn_report("a program lacking bitmap support "
314 "modified this file, so all bitmaps are now "
315 "considered inconsistent");
317 error_printf("Some clusters may be leaked, "
318 "run 'qemu-img check -r' on the image "
320 if (need_update_header
!= NULL
) {
321 /* Updating is needed to drop invalid bitmap extension. */
322 *need_update_header
= true;
327 ret
= bdrv_pread(bs
->file
, offset
, &bitmaps_ext
, ext
.len
);
329 error_setg_errno(errp
, -ret
, "bitmaps_ext: "
330 "Could not read ext header");
334 if (bitmaps_ext
.reserved32
!= 0) {
335 error_setg_errno(errp
, -ret
, "bitmaps_ext: "
336 "Reserved field is not zero");
340 be32_to_cpus(&bitmaps_ext
.nb_bitmaps
);
341 be64_to_cpus(&bitmaps_ext
.bitmap_directory_size
);
342 be64_to_cpus(&bitmaps_ext
.bitmap_directory_offset
);
344 if (bitmaps_ext
.nb_bitmaps
> QCOW2_MAX_BITMAPS
) {
346 "bitmaps_ext: Image has %" PRIu32
" bitmaps, "
347 "exceeding the QEMU supported maximum of %d",
348 bitmaps_ext
.nb_bitmaps
, QCOW2_MAX_BITMAPS
);
352 if (bitmaps_ext
.nb_bitmaps
== 0) {
353 error_setg(errp
, "found bitmaps extension with zero bitmaps");
357 if (bitmaps_ext
.bitmap_directory_offset
& (s
->cluster_size
- 1)) {
358 error_setg(errp
, "bitmaps_ext: "
359 "invalid bitmap directory offset");
363 if (bitmaps_ext
.bitmap_directory_size
>
364 QCOW2_MAX_BITMAP_DIRECTORY_SIZE
) {
365 error_setg(errp
, "bitmaps_ext: "
366 "bitmap directory size (%" PRIu64
") exceeds "
367 "the maximum supported size (%d)",
368 bitmaps_ext
.bitmap_directory_size
,
369 QCOW2_MAX_BITMAP_DIRECTORY_SIZE
);
373 s
->nb_bitmaps
= bitmaps_ext
.nb_bitmaps
;
374 s
->bitmap_directory_offset
=
375 bitmaps_ext
.bitmap_directory_offset
;
376 s
->bitmap_directory_size
=
377 bitmaps_ext
.bitmap_directory_size
;
380 printf("Qcow2: Got bitmaps extension: "
381 "offset=%" PRIu64
" nb_bitmaps=%" PRIu32
"\n",
382 s
->bitmap_directory_offset
, s
->nb_bitmaps
);
387 /* unknown magic - save it in case we need to rewrite the header */
388 /* If you add a new feature, make sure to also update the fast
389 * path of qcow2_make_empty() to deal with it. */
391 Qcow2UnknownHeaderExtension
*uext
;
393 uext
= g_malloc0(sizeof(*uext
) + ext
.len
);
394 uext
->magic
= ext
.magic
;
396 QLIST_INSERT_HEAD(&s
->unknown_header_ext
, uext
, next
);
398 ret
= bdrv_pread(bs
->file
, offset
, uext
->data
, uext
->len
);
400 error_setg_errno(errp
, -ret
, "ERROR: unknown extension: "
401 "Could not read data");
408 offset
+= ((ext
.len
+ 7) & ~7);
414 static void cleanup_unknown_header_ext(BlockDriverState
*bs
)
416 BDRVQcow2State
*s
= bs
->opaque
;
417 Qcow2UnknownHeaderExtension
*uext
, *next
;
419 QLIST_FOREACH_SAFE(uext
, &s
->unknown_header_ext
, next
, next
) {
420 QLIST_REMOVE(uext
, next
);
425 static void report_unsupported_feature(Error
**errp
, Qcow2Feature
*table
,
428 char *features
= g_strdup("");
431 while (table
&& table
->name
[0] != '\0') {
432 if (table
->type
== QCOW2_FEAT_TYPE_INCOMPATIBLE
) {
433 if (mask
& (1ULL << table
->bit
)) {
435 features
= g_strdup_printf("%s%s%.46s", old
, *old
? ", " : "",
438 mask
&= ~(1ULL << table
->bit
);
446 features
= g_strdup_printf("%s%sUnknown incompatible feature: %" PRIx64
,
447 old
, *old
? ", " : "", mask
);
451 error_setg(errp
, "Unsupported qcow2 feature(s): %s", features
);
456 * Sets the dirty bit and flushes afterwards if necessary.
458 * The incompatible_features bit is only set if the image file header was
459 * updated successfully. Therefore it is not required to check the return
460 * value of this function.
462 int qcow2_mark_dirty(BlockDriverState
*bs
)
464 BDRVQcow2State
*s
= bs
->opaque
;
468 assert(s
->qcow_version
>= 3);
470 if (s
->incompatible_features
& QCOW2_INCOMPAT_DIRTY
) {
471 return 0; /* already dirty */
474 val
= cpu_to_be64(s
->incompatible_features
| QCOW2_INCOMPAT_DIRTY
);
475 ret
= bdrv_pwrite(bs
->file
, offsetof(QCowHeader
, incompatible_features
),
480 ret
= bdrv_flush(bs
->file
->bs
);
485 /* Only treat image as dirty if the header was updated successfully */
486 s
->incompatible_features
|= QCOW2_INCOMPAT_DIRTY
;
491 * Clears the dirty bit and flushes before if necessary. Only call this
492 * function when there are no pending requests, it does not guard against
493 * concurrent requests dirtying the image.
495 static int qcow2_mark_clean(BlockDriverState
*bs
)
497 BDRVQcow2State
*s
= bs
->opaque
;
499 if (s
->incompatible_features
& QCOW2_INCOMPAT_DIRTY
) {
502 s
->incompatible_features
&= ~QCOW2_INCOMPAT_DIRTY
;
504 ret
= qcow2_flush_caches(bs
);
509 return qcow2_update_header(bs
);
515 * Marks the image as corrupt.
517 int qcow2_mark_corrupt(BlockDriverState
*bs
)
519 BDRVQcow2State
*s
= bs
->opaque
;
521 s
->incompatible_features
|= QCOW2_INCOMPAT_CORRUPT
;
522 return qcow2_update_header(bs
);
526 * Marks the image as consistent, i.e., unsets the corrupt bit, and flushes
527 * before if necessary.
529 int qcow2_mark_consistent(BlockDriverState
*bs
)
531 BDRVQcow2State
*s
= bs
->opaque
;
533 if (s
->incompatible_features
& QCOW2_INCOMPAT_CORRUPT
) {
534 int ret
= qcow2_flush_caches(bs
);
539 s
->incompatible_features
&= ~QCOW2_INCOMPAT_CORRUPT
;
540 return qcow2_update_header(bs
);
545 static int coroutine_fn
qcow2_co_check_locked(BlockDriverState
*bs
,
546 BdrvCheckResult
*result
,
549 int ret
= qcow2_check_refcounts(bs
, result
, fix
);
554 if (fix
&& result
->check_errors
== 0 && result
->corruptions
== 0) {
555 ret
= qcow2_mark_clean(bs
);
559 return qcow2_mark_consistent(bs
);
564 static int coroutine_fn
qcow2_co_check(BlockDriverState
*bs
,
565 BdrvCheckResult
*result
,
568 BDRVQcow2State
*s
= bs
->opaque
;
571 qemu_co_mutex_lock(&s
->lock
);
572 ret
= qcow2_co_check_locked(bs
, result
, fix
);
573 qemu_co_mutex_unlock(&s
->lock
);
577 int qcow2_validate_table(BlockDriverState
*bs
, uint64_t offset
,
578 uint64_t entries
, size_t entry_len
,
579 int64_t max_size_bytes
, const char *table_name
,
582 BDRVQcow2State
*s
= bs
->opaque
;
584 if (entries
> max_size_bytes
/ entry_len
) {
585 error_setg(errp
, "%s too large", table_name
);
589 /* Use signed INT64_MAX as the maximum even for uint64_t header fields,
590 * because values will be passed to qemu functions taking int64_t. */
591 if ((INT64_MAX
- entries
* entry_len
< offset
) ||
592 (offset_into_cluster(s
, offset
) != 0)) {
593 error_setg(errp
, "%s offset invalid", table_name
);
600 static QemuOptsList qcow2_runtime_opts
= {
602 .head
= QTAILQ_HEAD_INITIALIZER(qcow2_runtime_opts
.head
),
605 .name
= QCOW2_OPT_LAZY_REFCOUNTS
,
606 .type
= QEMU_OPT_BOOL
,
607 .help
= "Postpone refcount updates",
610 .name
= QCOW2_OPT_DISCARD_REQUEST
,
611 .type
= QEMU_OPT_BOOL
,
612 .help
= "Pass guest discard requests to the layer below",
615 .name
= QCOW2_OPT_DISCARD_SNAPSHOT
,
616 .type
= QEMU_OPT_BOOL
,
617 .help
= "Generate discard requests when snapshot related space "
621 .name
= QCOW2_OPT_DISCARD_OTHER
,
622 .type
= QEMU_OPT_BOOL
,
623 .help
= "Generate discard requests when other clusters are freed",
626 .name
= QCOW2_OPT_OVERLAP
,
627 .type
= QEMU_OPT_STRING
,
628 .help
= "Selects which overlap checks to perform from a range of "
629 "templates (none, constant, cached, all)",
632 .name
= QCOW2_OPT_OVERLAP_TEMPLATE
,
633 .type
= QEMU_OPT_STRING
,
634 .help
= "Selects which overlap checks to perform from a range of "
635 "templates (none, constant, cached, all)",
638 .name
= QCOW2_OPT_OVERLAP_MAIN_HEADER
,
639 .type
= QEMU_OPT_BOOL
,
640 .help
= "Check for unintended writes into the main qcow2 header",
643 .name
= QCOW2_OPT_OVERLAP_ACTIVE_L1
,
644 .type
= QEMU_OPT_BOOL
,
645 .help
= "Check for unintended writes into the active L1 table",
648 .name
= QCOW2_OPT_OVERLAP_ACTIVE_L2
,
649 .type
= QEMU_OPT_BOOL
,
650 .help
= "Check for unintended writes into an active L2 table",
653 .name
= QCOW2_OPT_OVERLAP_REFCOUNT_TABLE
,
654 .type
= QEMU_OPT_BOOL
,
655 .help
= "Check for unintended writes into the refcount table",
658 .name
= QCOW2_OPT_OVERLAP_REFCOUNT_BLOCK
,
659 .type
= QEMU_OPT_BOOL
,
660 .help
= "Check for unintended writes into a refcount block",
663 .name
= QCOW2_OPT_OVERLAP_SNAPSHOT_TABLE
,
664 .type
= QEMU_OPT_BOOL
,
665 .help
= "Check for unintended writes into the snapshot table",
668 .name
= QCOW2_OPT_OVERLAP_INACTIVE_L1
,
669 .type
= QEMU_OPT_BOOL
,
670 .help
= "Check for unintended writes into an inactive L1 table",
673 .name
= QCOW2_OPT_OVERLAP_INACTIVE_L2
,
674 .type
= QEMU_OPT_BOOL
,
675 .help
= "Check for unintended writes into an inactive L2 table",
678 .name
= QCOW2_OPT_CACHE_SIZE
,
679 .type
= QEMU_OPT_SIZE
,
680 .help
= "Maximum combined metadata (L2 tables and refcount blocks) "
684 .name
= QCOW2_OPT_L2_CACHE_SIZE
,
685 .type
= QEMU_OPT_SIZE
,
686 .help
= "Maximum L2 table cache size",
689 .name
= QCOW2_OPT_L2_CACHE_ENTRY_SIZE
,
690 .type
= QEMU_OPT_SIZE
,
691 .help
= "Size of each entry in the L2 cache",
694 .name
= QCOW2_OPT_REFCOUNT_CACHE_SIZE
,
695 .type
= QEMU_OPT_SIZE
,
696 .help
= "Maximum refcount block cache size",
699 .name
= QCOW2_OPT_CACHE_CLEAN_INTERVAL
,
700 .type
= QEMU_OPT_NUMBER
,
701 .help
= "Clean unused cache entries after this time (in seconds)",
703 BLOCK_CRYPTO_OPT_DEF_KEY_SECRET("encrypt.",
704 "ID of secret providing qcow2 AES key or LUKS passphrase"),
705 { /* end of list */ }
709 static const char *overlap_bool_option_names
[QCOW2_OL_MAX_BITNR
] = {
710 [QCOW2_OL_MAIN_HEADER_BITNR
] = QCOW2_OPT_OVERLAP_MAIN_HEADER
,
711 [QCOW2_OL_ACTIVE_L1_BITNR
] = QCOW2_OPT_OVERLAP_ACTIVE_L1
,
712 [QCOW2_OL_ACTIVE_L2_BITNR
] = QCOW2_OPT_OVERLAP_ACTIVE_L2
,
713 [QCOW2_OL_REFCOUNT_TABLE_BITNR
] = QCOW2_OPT_OVERLAP_REFCOUNT_TABLE
,
714 [QCOW2_OL_REFCOUNT_BLOCK_BITNR
] = QCOW2_OPT_OVERLAP_REFCOUNT_BLOCK
,
715 [QCOW2_OL_SNAPSHOT_TABLE_BITNR
] = QCOW2_OPT_OVERLAP_SNAPSHOT_TABLE
,
716 [QCOW2_OL_INACTIVE_L1_BITNR
] = QCOW2_OPT_OVERLAP_INACTIVE_L1
,
717 [QCOW2_OL_INACTIVE_L2_BITNR
] = QCOW2_OPT_OVERLAP_INACTIVE_L2
,
720 static void cache_clean_timer_cb(void *opaque
)
722 BlockDriverState
*bs
= opaque
;
723 BDRVQcow2State
*s
= bs
->opaque
;
724 qcow2_cache_clean_unused(s
->l2_table_cache
);
725 qcow2_cache_clean_unused(s
->refcount_block_cache
);
726 timer_mod(s
->cache_clean_timer
, qemu_clock_get_ms(QEMU_CLOCK_VIRTUAL
) +
727 (int64_t) s
->cache_clean_interval
* 1000);
730 static void cache_clean_timer_init(BlockDriverState
*bs
, AioContext
*context
)
732 BDRVQcow2State
*s
= bs
->opaque
;
733 if (s
->cache_clean_interval
> 0) {
734 s
->cache_clean_timer
= aio_timer_new(context
, QEMU_CLOCK_VIRTUAL
,
735 SCALE_MS
, cache_clean_timer_cb
,
737 timer_mod(s
->cache_clean_timer
, qemu_clock_get_ms(QEMU_CLOCK_VIRTUAL
) +
738 (int64_t) s
->cache_clean_interval
* 1000);
742 static void cache_clean_timer_del(BlockDriverState
*bs
)
744 BDRVQcow2State
*s
= bs
->opaque
;
745 if (s
->cache_clean_timer
) {
746 timer_del(s
->cache_clean_timer
);
747 timer_free(s
->cache_clean_timer
);
748 s
->cache_clean_timer
= NULL
;
752 static void qcow2_detach_aio_context(BlockDriverState
*bs
)
754 cache_clean_timer_del(bs
);
757 static void qcow2_attach_aio_context(BlockDriverState
*bs
,
758 AioContext
*new_context
)
760 cache_clean_timer_init(bs
, new_context
);
763 static void read_cache_sizes(BlockDriverState
*bs
, QemuOpts
*opts
,
764 uint64_t *l2_cache_size
,
765 uint64_t *l2_cache_entry_size
,
766 uint64_t *refcount_cache_size
, Error
**errp
)
768 BDRVQcow2State
*s
= bs
->opaque
;
769 uint64_t combined_cache_size
;
770 bool l2_cache_size_set
, refcount_cache_size_set
, combined_cache_size_set
;
771 int min_refcount_cache
= MIN_REFCOUNT_CACHE_SIZE
* s
->cluster_size
;
773 combined_cache_size_set
= qemu_opt_get(opts
, QCOW2_OPT_CACHE_SIZE
);
774 l2_cache_size_set
= qemu_opt_get(opts
, QCOW2_OPT_L2_CACHE_SIZE
);
775 refcount_cache_size_set
= qemu_opt_get(opts
, QCOW2_OPT_REFCOUNT_CACHE_SIZE
);
777 combined_cache_size
= qemu_opt_get_size(opts
, QCOW2_OPT_CACHE_SIZE
, 0);
778 *l2_cache_size
= qemu_opt_get_size(opts
, QCOW2_OPT_L2_CACHE_SIZE
, 0);
779 *refcount_cache_size
= qemu_opt_get_size(opts
,
780 QCOW2_OPT_REFCOUNT_CACHE_SIZE
, 0);
782 *l2_cache_entry_size
= qemu_opt_get_size(
783 opts
, QCOW2_OPT_L2_CACHE_ENTRY_SIZE
, s
->cluster_size
);
785 if (combined_cache_size_set
) {
786 if (l2_cache_size_set
&& refcount_cache_size_set
) {
787 error_setg(errp
, QCOW2_OPT_CACHE_SIZE
", " QCOW2_OPT_L2_CACHE_SIZE
788 " and " QCOW2_OPT_REFCOUNT_CACHE_SIZE
" may not be set "
791 } else if (*l2_cache_size
> combined_cache_size
) {
792 error_setg(errp
, QCOW2_OPT_L2_CACHE_SIZE
" may not exceed "
793 QCOW2_OPT_CACHE_SIZE
);
795 } else if (*refcount_cache_size
> combined_cache_size
) {
796 error_setg(errp
, QCOW2_OPT_REFCOUNT_CACHE_SIZE
" may not exceed "
797 QCOW2_OPT_CACHE_SIZE
);
801 if (l2_cache_size_set
) {
802 *refcount_cache_size
= combined_cache_size
- *l2_cache_size
;
803 } else if (refcount_cache_size_set
) {
804 *l2_cache_size
= combined_cache_size
- *refcount_cache_size
;
806 uint64_t virtual_disk_size
= bs
->total_sectors
* BDRV_SECTOR_SIZE
;
807 uint64_t max_l2_cache
= virtual_disk_size
/ (s
->cluster_size
/ 8);
809 /* Assign as much memory as possible to the L2 cache, and
810 * use the remainder for the refcount cache */
811 if (combined_cache_size
>= max_l2_cache
+ min_refcount_cache
) {
812 *l2_cache_size
= max_l2_cache
;
813 *refcount_cache_size
= combined_cache_size
- *l2_cache_size
;
815 *refcount_cache_size
=
816 MIN(combined_cache_size
, min_refcount_cache
);
817 *l2_cache_size
= combined_cache_size
- *refcount_cache_size
;
821 if (!l2_cache_size_set
) {
822 *l2_cache_size
= MAX(DEFAULT_L2_CACHE_BYTE_SIZE
,
823 (uint64_t)DEFAULT_L2_CACHE_CLUSTERS
826 if (!refcount_cache_size_set
) {
827 *refcount_cache_size
= min_refcount_cache
;
831 if (*l2_cache_entry_size
< (1 << MIN_CLUSTER_BITS
) ||
832 *l2_cache_entry_size
> s
->cluster_size
||
833 !is_power_of_2(*l2_cache_entry_size
)) {
834 error_setg(errp
, "L2 cache entry size must be a power of two "
835 "between %d and the cluster size (%d)",
836 1 << MIN_CLUSTER_BITS
, s
->cluster_size
);
841 typedef struct Qcow2ReopenState
{
842 Qcow2Cache
*l2_table_cache
;
843 Qcow2Cache
*refcount_block_cache
;
844 int l2_slice_size
; /* Number of entries in a slice of the L2 table */
845 bool use_lazy_refcounts
;
847 bool discard_passthrough
[QCOW2_DISCARD_MAX
];
848 uint64_t cache_clean_interval
;
849 QCryptoBlockOpenOptions
*crypto_opts
; /* Disk encryption runtime options */
852 static int qcow2_update_options_prepare(BlockDriverState
*bs
,
854 QDict
*options
, int flags
,
857 BDRVQcow2State
*s
= bs
->opaque
;
858 QemuOpts
*opts
= NULL
;
859 const char *opt_overlap_check
, *opt_overlap_check_template
;
860 int overlap_check_template
= 0;
861 uint64_t l2_cache_size
, l2_cache_entry_size
, refcount_cache_size
;
863 const char *encryptfmt
;
864 QDict
*encryptopts
= NULL
;
865 Error
*local_err
= NULL
;
868 qdict_extract_subqdict(options
, &encryptopts
, "encrypt.");
869 encryptfmt
= qdict_get_try_str(encryptopts
, "format");
871 opts
= qemu_opts_create(&qcow2_runtime_opts
, NULL
, 0, &error_abort
);
872 qemu_opts_absorb_qdict(opts
, options
, &local_err
);
874 error_propagate(errp
, local_err
);
879 /* get L2 table/refcount block cache size from command line options */
880 read_cache_sizes(bs
, opts
, &l2_cache_size
, &l2_cache_entry_size
,
881 &refcount_cache_size
, &local_err
);
883 error_propagate(errp
, local_err
);
888 l2_cache_size
/= l2_cache_entry_size
;
889 if (l2_cache_size
< MIN_L2_CACHE_SIZE
) {
890 l2_cache_size
= MIN_L2_CACHE_SIZE
;
892 if (l2_cache_size
> INT_MAX
) {
893 error_setg(errp
, "L2 cache size too big");
898 refcount_cache_size
/= s
->cluster_size
;
899 if (refcount_cache_size
< MIN_REFCOUNT_CACHE_SIZE
) {
900 refcount_cache_size
= MIN_REFCOUNT_CACHE_SIZE
;
902 if (refcount_cache_size
> INT_MAX
) {
903 error_setg(errp
, "Refcount cache size too big");
908 /* alloc new L2 table/refcount block cache, flush old one */
909 if (s
->l2_table_cache
) {
910 ret
= qcow2_cache_flush(bs
, s
->l2_table_cache
);
912 error_setg_errno(errp
, -ret
, "Failed to flush the L2 table cache");
917 if (s
->refcount_block_cache
) {
918 ret
= qcow2_cache_flush(bs
, s
->refcount_block_cache
);
920 error_setg_errno(errp
, -ret
,
921 "Failed to flush the refcount block cache");
926 r
->l2_slice_size
= l2_cache_entry_size
/ sizeof(uint64_t);
927 r
->l2_table_cache
= qcow2_cache_create(bs
, l2_cache_size
,
928 l2_cache_entry_size
);
929 r
->refcount_block_cache
= qcow2_cache_create(bs
, refcount_cache_size
,
931 if (r
->l2_table_cache
== NULL
|| r
->refcount_block_cache
== NULL
) {
932 error_setg(errp
, "Could not allocate metadata caches");
937 /* New interval for cache cleanup timer */
938 r
->cache_clean_interval
=
939 qemu_opt_get_number(opts
, QCOW2_OPT_CACHE_CLEAN_INTERVAL
,
940 s
->cache_clean_interval
);
942 if (r
->cache_clean_interval
!= 0) {
943 error_setg(errp
, QCOW2_OPT_CACHE_CLEAN_INTERVAL
944 " not supported on this host");
949 if (r
->cache_clean_interval
> UINT_MAX
) {
950 error_setg(errp
, "Cache clean interval too big");
955 /* lazy-refcounts; flush if going from enabled to disabled */
956 r
->use_lazy_refcounts
= qemu_opt_get_bool(opts
, QCOW2_OPT_LAZY_REFCOUNTS
,
957 (s
->compatible_features
& QCOW2_COMPAT_LAZY_REFCOUNTS
));
958 if (r
->use_lazy_refcounts
&& s
->qcow_version
< 3) {
959 error_setg(errp
, "Lazy refcounts require a qcow2 image with at least "
960 "qemu 1.1 compatibility level");
965 if (s
->use_lazy_refcounts
&& !r
->use_lazy_refcounts
) {
966 ret
= qcow2_mark_clean(bs
);
968 error_setg_errno(errp
, -ret
, "Failed to disable lazy refcounts");
973 /* Overlap check options */
974 opt_overlap_check
= qemu_opt_get(opts
, QCOW2_OPT_OVERLAP
);
975 opt_overlap_check_template
= qemu_opt_get(opts
, QCOW2_OPT_OVERLAP_TEMPLATE
);
976 if (opt_overlap_check_template
&& opt_overlap_check
&&
977 strcmp(opt_overlap_check_template
, opt_overlap_check
))
979 error_setg(errp
, "Conflicting values for qcow2 options '"
980 QCOW2_OPT_OVERLAP
"' ('%s') and '" QCOW2_OPT_OVERLAP_TEMPLATE
981 "' ('%s')", opt_overlap_check
, opt_overlap_check_template
);
985 if (!opt_overlap_check
) {
986 opt_overlap_check
= opt_overlap_check_template
?: "cached";
989 if (!strcmp(opt_overlap_check
, "none")) {
990 overlap_check_template
= 0;
991 } else if (!strcmp(opt_overlap_check
, "constant")) {
992 overlap_check_template
= QCOW2_OL_CONSTANT
;
993 } else if (!strcmp(opt_overlap_check
, "cached")) {
994 overlap_check_template
= QCOW2_OL_CACHED
;
995 } else if (!strcmp(opt_overlap_check
, "all")) {
996 overlap_check_template
= QCOW2_OL_ALL
;
998 error_setg(errp
, "Unsupported value '%s' for qcow2 option "
999 "'overlap-check'. Allowed are any of the following: "
1000 "none, constant, cached, all", opt_overlap_check
);
1005 r
->overlap_check
= 0;
1006 for (i
= 0; i
< QCOW2_OL_MAX_BITNR
; i
++) {
1007 /* overlap-check defines a template bitmask, but every flag may be
1008 * overwritten through the associated boolean option */
1010 qemu_opt_get_bool(opts
, overlap_bool_option_names
[i
],
1011 overlap_check_template
& (1 << i
)) << i
;
1014 r
->discard_passthrough
[QCOW2_DISCARD_NEVER
] = false;
1015 r
->discard_passthrough
[QCOW2_DISCARD_ALWAYS
] = true;
1016 r
->discard_passthrough
[QCOW2_DISCARD_REQUEST
] =
1017 qemu_opt_get_bool(opts
, QCOW2_OPT_DISCARD_REQUEST
,
1018 flags
& BDRV_O_UNMAP
);
1019 r
->discard_passthrough
[QCOW2_DISCARD_SNAPSHOT
] =
1020 qemu_opt_get_bool(opts
, QCOW2_OPT_DISCARD_SNAPSHOT
, true);
1021 r
->discard_passthrough
[QCOW2_DISCARD_OTHER
] =
1022 qemu_opt_get_bool(opts
, QCOW2_OPT_DISCARD_OTHER
, false);
1024 switch (s
->crypt_method_header
) {
1025 case QCOW_CRYPT_NONE
:
1027 error_setg(errp
, "No encryption in image header, but options "
1028 "specified format '%s'", encryptfmt
);
1034 case QCOW_CRYPT_AES
:
1035 if (encryptfmt
&& !g_str_equal(encryptfmt
, "aes")) {
1037 "Header reported 'aes' encryption format but "
1038 "options specify '%s'", encryptfmt
);
1042 qdict_del(encryptopts
, "format");
1043 r
->crypto_opts
= block_crypto_open_opts_init(
1044 Q_CRYPTO_BLOCK_FORMAT_QCOW
, encryptopts
, errp
);
1047 case QCOW_CRYPT_LUKS
:
1048 if (encryptfmt
&& !g_str_equal(encryptfmt
, "luks")) {
1050 "Header reported 'luks' encryption format but "
1051 "options specify '%s'", encryptfmt
);
1055 qdict_del(encryptopts
, "format");
1056 r
->crypto_opts
= block_crypto_open_opts_init(
1057 Q_CRYPTO_BLOCK_FORMAT_LUKS
, encryptopts
, errp
);
1061 error_setg(errp
, "Unsupported encryption method %d",
1062 s
->crypt_method_header
);
1065 if (s
->crypt_method_header
!= QCOW_CRYPT_NONE
&& !r
->crypto_opts
) {
1072 qobject_unref(encryptopts
);
1073 qemu_opts_del(opts
);
1078 static void qcow2_update_options_commit(BlockDriverState
*bs
,
1079 Qcow2ReopenState
*r
)
1081 BDRVQcow2State
*s
= bs
->opaque
;
1084 if (s
->l2_table_cache
) {
1085 qcow2_cache_destroy(s
->l2_table_cache
);
1087 if (s
->refcount_block_cache
) {
1088 qcow2_cache_destroy(s
->refcount_block_cache
);
1090 s
->l2_table_cache
= r
->l2_table_cache
;
1091 s
->refcount_block_cache
= r
->refcount_block_cache
;
1092 s
->l2_slice_size
= r
->l2_slice_size
;
1094 s
->overlap_check
= r
->overlap_check
;
1095 s
->use_lazy_refcounts
= r
->use_lazy_refcounts
;
1097 for (i
= 0; i
< QCOW2_DISCARD_MAX
; i
++) {
1098 s
->discard_passthrough
[i
] = r
->discard_passthrough
[i
];
1101 if (s
->cache_clean_interval
!= r
->cache_clean_interval
) {
1102 cache_clean_timer_del(bs
);
1103 s
->cache_clean_interval
= r
->cache_clean_interval
;
1104 cache_clean_timer_init(bs
, bdrv_get_aio_context(bs
));
1107 qapi_free_QCryptoBlockOpenOptions(s
->crypto_opts
);
1108 s
->crypto_opts
= r
->crypto_opts
;
1111 static void qcow2_update_options_abort(BlockDriverState
*bs
,
1112 Qcow2ReopenState
*r
)
1114 if (r
->l2_table_cache
) {
1115 qcow2_cache_destroy(r
->l2_table_cache
);
1117 if (r
->refcount_block_cache
) {
1118 qcow2_cache_destroy(r
->refcount_block_cache
);
1120 qapi_free_QCryptoBlockOpenOptions(r
->crypto_opts
);
1123 static int qcow2_update_options(BlockDriverState
*bs
, QDict
*options
,
1124 int flags
, Error
**errp
)
1126 Qcow2ReopenState r
= {};
1129 ret
= qcow2_update_options_prepare(bs
, &r
, options
, flags
, errp
);
1131 qcow2_update_options_commit(bs
, &r
);
1133 qcow2_update_options_abort(bs
, &r
);
1139 /* Called with s->lock held. */
1140 static int coroutine_fn
qcow2_do_open(BlockDriverState
*bs
, QDict
*options
,
1141 int flags
, Error
**errp
)
1143 BDRVQcow2State
*s
= bs
->opaque
;
1144 unsigned int len
, i
;
1147 Error
*local_err
= NULL
;
1149 uint64_t l1_vm_state_index
;
1150 bool update_header
= false;
1151 bool header_updated
= false;
1153 ret
= bdrv_pread(bs
->file
, 0, &header
, sizeof(header
));
1155 error_setg_errno(errp
, -ret
, "Could not read qcow2 header");
1158 be32_to_cpus(&header
.magic
);
1159 be32_to_cpus(&header
.version
);
1160 be64_to_cpus(&header
.backing_file_offset
);
1161 be32_to_cpus(&header
.backing_file_size
);
1162 be64_to_cpus(&header
.size
);
1163 be32_to_cpus(&header
.cluster_bits
);
1164 be32_to_cpus(&header
.crypt_method
);
1165 be64_to_cpus(&header
.l1_table_offset
);
1166 be32_to_cpus(&header
.l1_size
);
1167 be64_to_cpus(&header
.refcount_table_offset
);
1168 be32_to_cpus(&header
.refcount_table_clusters
);
1169 be64_to_cpus(&header
.snapshots_offset
);
1170 be32_to_cpus(&header
.nb_snapshots
);
1172 if (header
.magic
!= QCOW_MAGIC
) {
1173 error_setg(errp
, "Image is not in qcow2 format");
1177 if (header
.version
< 2 || header
.version
> 3) {
1178 error_setg(errp
, "Unsupported qcow2 version %" PRIu32
, header
.version
);
1183 s
->qcow_version
= header
.version
;
1185 /* Initialise cluster size */
1186 if (header
.cluster_bits
< MIN_CLUSTER_BITS
||
1187 header
.cluster_bits
> MAX_CLUSTER_BITS
) {
1188 error_setg(errp
, "Unsupported cluster size: 2^%" PRIu32
,
1189 header
.cluster_bits
);
1194 s
->cluster_bits
= header
.cluster_bits
;
1195 s
->cluster_size
= 1 << s
->cluster_bits
;
1196 s
->cluster_sectors
= 1 << (s
->cluster_bits
- BDRV_SECTOR_BITS
);
1198 /* Initialise version 3 header fields */
1199 if (header
.version
== 2) {
1200 header
.incompatible_features
= 0;
1201 header
.compatible_features
= 0;
1202 header
.autoclear_features
= 0;
1203 header
.refcount_order
= 4;
1204 header
.header_length
= 72;
1206 be64_to_cpus(&header
.incompatible_features
);
1207 be64_to_cpus(&header
.compatible_features
);
1208 be64_to_cpus(&header
.autoclear_features
);
1209 be32_to_cpus(&header
.refcount_order
);
1210 be32_to_cpus(&header
.header_length
);
1212 if (header
.header_length
< 104) {
1213 error_setg(errp
, "qcow2 header too short");
1219 if (header
.header_length
> s
->cluster_size
) {
1220 error_setg(errp
, "qcow2 header exceeds cluster size");
1225 if (header
.header_length
> sizeof(header
)) {
1226 s
->unknown_header_fields_size
= header
.header_length
- sizeof(header
);
1227 s
->unknown_header_fields
= g_malloc(s
->unknown_header_fields_size
);
1228 ret
= bdrv_pread(bs
->file
, sizeof(header
), s
->unknown_header_fields
,
1229 s
->unknown_header_fields_size
);
1231 error_setg_errno(errp
, -ret
, "Could not read unknown qcow2 header "
1237 if (header
.backing_file_offset
> s
->cluster_size
) {
1238 error_setg(errp
, "Invalid backing file offset");
1243 if (header
.backing_file_offset
) {
1244 ext_end
= header
.backing_file_offset
;
1246 ext_end
= 1 << header
.cluster_bits
;
1249 /* Handle feature bits */
1250 s
->incompatible_features
= header
.incompatible_features
;
1251 s
->compatible_features
= header
.compatible_features
;
1252 s
->autoclear_features
= header
.autoclear_features
;
1254 if (s
->incompatible_features
& ~QCOW2_INCOMPAT_MASK
) {
1255 void *feature_table
= NULL
;
1256 qcow2_read_extensions(bs
, header
.header_length
, ext_end
,
1257 &feature_table
, flags
, NULL
, NULL
);
1258 report_unsupported_feature(errp
, feature_table
,
1259 s
->incompatible_features
&
1260 ~QCOW2_INCOMPAT_MASK
);
1262 g_free(feature_table
);
1266 if (s
->incompatible_features
& QCOW2_INCOMPAT_CORRUPT
) {
1267 /* Corrupt images may not be written to unless they are being repaired
1269 if ((flags
& BDRV_O_RDWR
) && !(flags
& BDRV_O_CHECK
)) {
1270 error_setg(errp
, "qcow2: Image is corrupt; cannot be opened "
1277 /* Check support for various header values */
1278 if (header
.refcount_order
> 6) {
1279 error_setg(errp
, "Reference count entry width too large; may not "
1284 s
->refcount_order
= header
.refcount_order
;
1285 s
->refcount_bits
= 1 << s
->refcount_order
;
1286 s
->refcount_max
= UINT64_C(1) << (s
->refcount_bits
- 1);
1287 s
->refcount_max
+= s
->refcount_max
- 1;
1289 s
->crypt_method_header
= header
.crypt_method
;
1290 if (s
->crypt_method_header
) {
1291 if (bdrv_uses_whitelist() &&
1292 s
->crypt_method_header
== QCOW_CRYPT_AES
) {
1294 "Use of AES-CBC encrypted qcow2 images is no longer "
1295 "supported in system emulators");
1296 error_append_hint(errp
,
1297 "You can use 'qemu-img convert' to convert your "
1298 "image to an alternative supported format, such "
1299 "as unencrypted qcow2, or raw with the LUKS "
1300 "format instead.\n");
1305 if (s
->crypt_method_header
== QCOW_CRYPT_AES
) {
1306 s
->crypt_physical_offset
= false;
1308 /* Assuming LUKS and any future crypt methods we
1309 * add will all use physical offsets, due to the
1310 * fact that the alternative is insecure... */
1311 s
->crypt_physical_offset
= true;
1314 bs
->encrypted
= true;
1317 s
->l2_bits
= s
->cluster_bits
- 3; /* L2 is always one cluster */
1318 s
->l2_size
= 1 << s
->l2_bits
;
1319 /* 2^(s->refcount_order - 3) is the refcount width in bytes */
1320 s
->refcount_block_bits
= s
->cluster_bits
- (s
->refcount_order
- 3);
1321 s
->refcount_block_size
= 1 << s
->refcount_block_bits
;
1322 bs
->total_sectors
= header
.size
/ 512;
1323 s
->csize_shift
= (62 - (s
->cluster_bits
- 8));
1324 s
->csize_mask
= (1 << (s
->cluster_bits
- 8)) - 1;
1325 s
->cluster_offset_mask
= (1LL << s
->csize_shift
) - 1;
1327 s
->refcount_table_offset
= header
.refcount_table_offset
;
1328 s
->refcount_table_size
=
1329 header
.refcount_table_clusters
<< (s
->cluster_bits
- 3);
1331 if (header
.refcount_table_clusters
== 0 && !(flags
& BDRV_O_CHECK
)) {
1332 error_setg(errp
, "Image does not contain a reference count table");
1337 ret
= qcow2_validate_table(bs
, s
->refcount_table_offset
,
1338 header
.refcount_table_clusters
,
1339 s
->cluster_size
, QCOW_MAX_REFTABLE_SIZE
,
1340 "Reference count table", errp
);
1345 /* The total size in bytes of the snapshot table is checked in
1346 * qcow2_read_snapshots() because the size of each snapshot is
1347 * variable and we don't know it yet.
1348 * Here we only check the offset and number of snapshots. */
1349 ret
= qcow2_validate_table(bs
, header
.snapshots_offset
,
1350 header
.nb_snapshots
,
1351 sizeof(QCowSnapshotHeader
),
1352 sizeof(QCowSnapshotHeader
) * QCOW_MAX_SNAPSHOTS
,
1353 "Snapshot table", errp
);
1358 /* read the level 1 table */
1359 ret
= qcow2_validate_table(bs
, header
.l1_table_offset
,
1360 header
.l1_size
, sizeof(uint64_t),
1361 QCOW_MAX_L1_SIZE
, "Active L1 table", errp
);
1365 s
->l1_size
= header
.l1_size
;
1366 s
->l1_table_offset
= header
.l1_table_offset
;
1368 l1_vm_state_index
= size_to_l1(s
, header
.size
);
1369 if (l1_vm_state_index
> INT_MAX
) {
1370 error_setg(errp
, "Image is too big");
1374 s
->l1_vm_state_index
= l1_vm_state_index
;
1376 /* the L1 table must contain at least enough entries to put
1377 header.size bytes */
1378 if (s
->l1_size
< s
->l1_vm_state_index
) {
1379 error_setg(errp
, "L1 table is too small");
1384 if (s
->l1_size
> 0) {
1385 s
->l1_table
= qemu_try_blockalign(bs
->file
->bs
,
1386 ROUND_UP(s
->l1_size
* sizeof(uint64_t), 512));
1387 if (s
->l1_table
== NULL
) {
1388 error_setg(errp
, "Could not allocate L1 table");
1392 ret
= bdrv_pread(bs
->file
, s
->l1_table_offset
, s
->l1_table
,
1393 s
->l1_size
* sizeof(uint64_t));
1395 error_setg_errno(errp
, -ret
, "Could not read L1 table");
1398 for(i
= 0;i
< s
->l1_size
; i
++) {
1399 be64_to_cpus(&s
->l1_table
[i
]);
1403 /* Parse driver-specific options */
1404 ret
= qcow2_update_options(bs
, options
, flags
, errp
);
1409 s
->cluster_cache_offset
= -1;
1412 ret
= qcow2_refcount_init(bs
);
1414 error_setg_errno(errp
, -ret
, "Could not initialize refcount handling");
1418 QLIST_INIT(&s
->cluster_allocs
);
1419 QTAILQ_INIT(&s
->discards
);
1421 /* read qcow2 extensions */
1422 if (qcow2_read_extensions(bs
, header
.header_length
, ext_end
, NULL
,
1423 flags
, &update_header
, &local_err
)) {
1424 error_propagate(errp
, local_err
);
1429 /* qcow2_read_extension may have set up the crypto context
1430 * if the crypt method needs a header region, some methods
1431 * don't need header extensions, so must check here
1433 if (s
->crypt_method_header
&& !s
->crypto
) {
1434 if (s
->crypt_method_header
== QCOW_CRYPT_AES
) {
1435 unsigned int cflags
= 0;
1436 if (flags
& BDRV_O_NO_IO
) {
1437 cflags
|= QCRYPTO_BLOCK_OPEN_NO_IO
;
1439 s
->crypto
= qcrypto_block_open(s
->crypto_opts
, "encrypt.",
1440 NULL
, NULL
, cflags
, errp
);
1445 } else if (!(flags
& BDRV_O_NO_IO
)) {
1446 error_setg(errp
, "Missing CRYPTO header for crypt method %d",
1447 s
->crypt_method_header
);
1453 /* read the backing file name */
1454 if (header
.backing_file_offset
!= 0) {
1455 len
= header
.backing_file_size
;
1456 if (len
> MIN(1023, s
->cluster_size
- header
.backing_file_offset
) ||
1457 len
>= sizeof(bs
->backing_file
)) {
1458 error_setg(errp
, "Backing file name too long");
1462 ret
= bdrv_pread(bs
->file
, header
.backing_file_offset
,
1463 bs
->backing_file
, len
);
1465 error_setg_errno(errp
, -ret
, "Could not read backing file name");
1468 bs
->backing_file
[len
] = '\0';
1469 s
->image_backing_file
= g_strdup(bs
->backing_file
);
1472 /* Internal snapshots */
1473 s
->snapshots_offset
= header
.snapshots_offset
;
1474 s
->nb_snapshots
= header
.nb_snapshots
;
1476 ret
= qcow2_read_snapshots(bs
);
1478 error_setg_errno(errp
, -ret
, "Could not read snapshots");
1482 /* Clear unknown autoclear feature bits */
1483 update_header
|= s
->autoclear_features
& ~QCOW2_AUTOCLEAR_MASK
;
1485 update_header
&& !bs
->read_only
&& !(flags
& BDRV_O_INACTIVE
);
1486 if (update_header
) {
1487 s
->autoclear_features
&= QCOW2_AUTOCLEAR_MASK
;
1490 if (s
->dirty_bitmaps_loaded
) {
1491 /* It's some kind of reopen. There are no known cases where we need to
1492 * reload bitmaps in such a situation, so it's safer to skip them.
1494 * Moreover, if we have some readonly bitmaps and we are reopening for
1495 * rw we should reopen bitmaps correspondingly.
1497 if (bdrv_has_readonly_bitmaps(bs
) &&
1498 !bdrv_is_read_only(bs
) && !(bdrv_get_flags(bs
) & BDRV_O_INACTIVE
))
1500 qcow2_reopen_bitmaps_rw_hint(bs
, &header_updated
, &local_err
);
1503 header_updated
= qcow2_load_dirty_bitmaps(bs
, &local_err
);
1504 s
->dirty_bitmaps_loaded
= true;
1506 update_header
= update_header
&& !header_updated
;
1507 if (local_err
!= NULL
) {
1508 error_propagate(errp
, local_err
);
1513 if (update_header
) {
1514 ret
= qcow2_update_header(bs
);
1516 error_setg_errno(errp
, -ret
, "Could not update qcow2 header");
1521 bs
->supported_zero_flags
= header
.version
>= 3 ? BDRV_REQ_MAY_UNMAP
: 0;
1523 /* Repair image if dirty */
1524 if (!(flags
& (BDRV_O_CHECK
| BDRV_O_INACTIVE
)) && !bs
->read_only
&&
1525 (s
->incompatible_features
& QCOW2_INCOMPAT_DIRTY
)) {
1526 BdrvCheckResult result
= {0};
1528 ret
= qcow2_co_check_locked(bs
, &result
,
1529 BDRV_FIX_ERRORS
| BDRV_FIX_LEAKS
);
1530 if (ret
< 0 || result
.check_errors
) {
1534 error_setg_errno(errp
, -ret
, "Could not repair dirty image");
1541 BdrvCheckResult result
= {0};
1542 qcow2_check_refcounts(bs
, &result
, 0);
1548 g_free(s
->unknown_header_fields
);
1549 cleanup_unknown_header_ext(bs
);
1550 qcow2_free_snapshots(bs
);
1551 qcow2_refcount_close(bs
);
1552 qemu_vfree(s
->l1_table
);
1553 /* else pre-write overlap checks in cache_destroy may crash */
1555 cache_clean_timer_del(bs
);
1556 if (s
->l2_table_cache
) {
1557 qcow2_cache_destroy(s
->l2_table_cache
);
1559 if (s
->refcount_block_cache
) {
1560 qcow2_cache_destroy(s
->refcount_block_cache
);
1562 qcrypto_block_free(s
->crypto
);
1563 qapi_free_QCryptoBlockOpenOptions(s
->crypto_opts
);
1567 typedef struct QCow2OpenCo
{
1568 BlockDriverState
*bs
;
1575 static void coroutine_fn
qcow2_open_entry(void *opaque
)
1577 QCow2OpenCo
*qoc
= opaque
;
1578 BDRVQcow2State
*s
= qoc
->bs
->opaque
;
1580 qemu_co_mutex_lock(&s
->lock
);
1581 qoc
->ret
= qcow2_do_open(qoc
->bs
, qoc
->options
, qoc
->flags
, qoc
->errp
);
1582 qemu_co_mutex_unlock(&s
->lock
);
1585 static int qcow2_open(BlockDriverState
*bs
, QDict
*options
, int flags
,
1588 BDRVQcow2State
*s
= bs
->opaque
;
1597 bs
->file
= bdrv_open_child(NULL
, options
, "file", bs
, &child_file
,
1603 /* Initialise locks */
1604 qemu_co_mutex_init(&s
->lock
);
1606 if (qemu_in_coroutine()) {
1607 /* From bdrv_co_create. */
1608 qcow2_open_entry(&qoc
);
1610 qemu_coroutine_enter(qemu_coroutine_create(qcow2_open_entry
, &qoc
));
1611 BDRV_POLL_WHILE(bs
, qoc
.ret
== -EINPROGRESS
);
1616 static void qcow2_refresh_limits(BlockDriverState
*bs
, Error
**errp
)
1618 BDRVQcow2State
*s
= bs
->opaque
;
1620 if (bs
->encrypted
) {
1621 /* Encryption works on a sector granularity */
1622 bs
->bl
.request_alignment
= BDRV_SECTOR_SIZE
;
1624 bs
->bl
.pwrite_zeroes_alignment
= s
->cluster_size
;
1625 bs
->bl
.pdiscard_alignment
= s
->cluster_size
;
1628 static int qcow2_reopen_prepare(BDRVReopenState
*state
,
1629 BlockReopenQueue
*queue
, Error
**errp
)
1631 Qcow2ReopenState
*r
;
1634 r
= g_new0(Qcow2ReopenState
, 1);
1637 ret
= qcow2_update_options_prepare(state
->bs
, r
, state
->options
,
1638 state
->flags
, errp
);
1643 /* We need to write out any unwritten data if we reopen read-only. */
1644 if ((state
->flags
& BDRV_O_RDWR
) == 0) {
1645 ret
= qcow2_reopen_bitmaps_ro(state
->bs
, errp
);
1650 ret
= bdrv_flush(state
->bs
);
1655 ret
= qcow2_mark_clean(state
->bs
);
1664 qcow2_update_options_abort(state
->bs
, r
);
1669 static void qcow2_reopen_commit(BDRVReopenState
*state
)
1671 qcow2_update_options_commit(state
->bs
, state
->opaque
);
1672 g_free(state
->opaque
);
1675 static void qcow2_reopen_abort(BDRVReopenState
*state
)
1677 qcow2_update_options_abort(state
->bs
, state
->opaque
);
1678 g_free(state
->opaque
);
1681 static void qcow2_join_options(QDict
*options
, QDict
*old_options
)
1683 bool has_new_overlap_template
=
1684 qdict_haskey(options
, QCOW2_OPT_OVERLAP
) ||
1685 qdict_haskey(options
, QCOW2_OPT_OVERLAP_TEMPLATE
);
1686 bool has_new_total_cache_size
=
1687 qdict_haskey(options
, QCOW2_OPT_CACHE_SIZE
);
1688 bool has_all_cache_options
;
1690 /* New overlap template overrides all old overlap options */
1691 if (has_new_overlap_template
) {
1692 qdict_del(old_options
, QCOW2_OPT_OVERLAP
);
1693 qdict_del(old_options
, QCOW2_OPT_OVERLAP_TEMPLATE
);
1694 qdict_del(old_options
, QCOW2_OPT_OVERLAP_MAIN_HEADER
);
1695 qdict_del(old_options
, QCOW2_OPT_OVERLAP_ACTIVE_L1
);
1696 qdict_del(old_options
, QCOW2_OPT_OVERLAP_ACTIVE_L2
);
1697 qdict_del(old_options
, QCOW2_OPT_OVERLAP_REFCOUNT_TABLE
);
1698 qdict_del(old_options
, QCOW2_OPT_OVERLAP_REFCOUNT_BLOCK
);
1699 qdict_del(old_options
, QCOW2_OPT_OVERLAP_SNAPSHOT_TABLE
);
1700 qdict_del(old_options
, QCOW2_OPT_OVERLAP_INACTIVE_L1
);
1701 qdict_del(old_options
, QCOW2_OPT_OVERLAP_INACTIVE_L2
);
1704 /* New total cache size overrides all old options */
1705 if (qdict_haskey(options
, QCOW2_OPT_CACHE_SIZE
)) {
1706 qdict_del(old_options
, QCOW2_OPT_L2_CACHE_SIZE
);
1707 qdict_del(old_options
, QCOW2_OPT_REFCOUNT_CACHE_SIZE
);
1710 qdict_join(options
, old_options
, false);
1713 * If after merging all cache size options are set, an old total size is
1714 * overwritten. Do keep all options, however, if all three are new. The
1715 * resulting error message is what we want to happen.
1717 has_all_cache_options
=
1718 qdict_haskey(options
, QCOW2_OPT_CACHE_SIZE
) ||
1719 qdict_haskey(options
, QCOW2_OPT_L2_CACHE_SIZE
) ||
1720 qdict_haskey(options
, QCOW2_OPT_REFCOUNT_CACHE_SIZE
);
1722 if (has_all_cache_options
&& !has_new_total_cache_size
) {
1723 qdict_del(options
, QCOW2_OPT_CACHE_SIZE
);
1727 static int coroutine_fn
qcow2_co_block_status(BlockDriverState
*bs
,
1729 int64_t offset
, int64_t count
,
1730 int64_t *pnum
, int64_t *map
,
1731 BlockDriverState
**file
)
1733 BDRVQcow2State
*s
= bs
->opaque
;
1734 uint64_t cluster_offset
;
1735 int index_in_cluster
, ret
;
1739 bytes
= MIN(INT_MAX
, count
);
1740 qemu_co_mutex_lock(&s
->lock
);
1741 ret
= qcow2_get_cluster_offset(bs
, offset
, &bytes
, &cluster_offset
);
1742 qemu_co_mutex_unlock(&s
->lock
);
1749 if (cluster_offset
!= 0 && ret
!= QCOW2_CLUSTER_COMPRESSED
&&
1751 index_in_cluster
= offset
& (s
->cluster_size
- 1);
1752 *map
= cluster_offset
| index_in_cluster
;
1753 *file
= bs
->file
->bs
;
1754 status
|= BDRV_BLOCK_OFFSET_VALID
;
1756 if (ret
== QCOW2_CLUSTER_ZERO_PLAIN
|| ret
== QCOW2_CLUSTER_ZERO_ALLOC
) {
1757 status
|= BDRV_BLOCK_ZERO
;
1758 } else if (ret
!= QCOW2_CLUSTER_UNALLOCATED
) {
1759 status
|= BDRV_BLOCK_DATA
;
1764 static coroutine_fn
int qcow2_handle_l2meta(BlockDriverState
*bs
,
1765 QCowL2Meta
**pl2meta
,
1769 QCowL2Meta
*l2meta
= *pl2meta
;
1771 while (l2meta
!= NULL
) {
1774 if (!ret
&& link_l2
) {
1775 ret
= qcow2_alloc_cluster_link_l2(bs
, l2meta
);
1781 /* Take the request off the list of running requests */
1782 if (l2meta
->nb_clusters
!= 0) {
1783 QLIST_REMOVE(l2meta
, next_in_flight
);
1786 qemu_co_queue_restart_all(&l2meta
->dependent_requests
);
1788 next
= l2meta
->next
;
1797 static coroutine_fn
int qcow2_co_preadv(BlockDriverState
*bs
, uint64_t offset
,
1798 uint64_t bytes
, QEMUIOVector
*qiov
,
1801 BDRVQcow2State
*s
= bs
->opaque
;
1802 int offset_in_cluster
;
1804 unsigned int cur_bytes
; /* number of bytes in current iteration */
1805 uint64_t cluster_offset
= 0;
1806 uint64_t bytes_done
= 0;
1807 QEMUIOVector hd_qiov
;
1808 uint8_t *cluster_data
= NULL
;
1810 qemu_iovec_init(&hd_qiov
, qiov
->niov
);
1812 qemu_co_mutex_lock(&s
->lock
);
1814 while (bytes
!= 0) {
1816 /* prepare next request */
1817 cur_bytes
= MIN(bytes
, INT_MAX
);
1819 cur_bytes
= MIN(cur_bytes
,
1820 QCOW_MAX_CRYPT_CLUSTERS
* s
->cluster_size
);
1823 ret
= qcow2_get_cluster_offset(bs
, offset
, &cur_bytes
, &cluster_offset
);
1828 offset_in_cluster
= offset_into_cluster(s
, offset
);
1830 qemu_iovec_reset(&hd_qiov
);
1831 qemu_iovec_concat(&hd_qiov
, qiov
, bytes_done
, cur_bytes
);
1834 case QCOW2_CLUSTER_UNALLOCATED
:
1837 BLKDBG_EVENT(bs
->file
, BLKDBG_READ_BACKING_AIO
);
1838 qemu_co_mutex_unlock(&s
->lock
);
1839 ret
= bdrv_co_preadv(bs
->backing
, offset
, cur_bytes
,
1841 qemu_co_mutex_lock(&s
->lock
);
1846 /* Note: in this case, no need to wait */
1847 qemu_iovec_memset(&hd_qiov
, 0, 0, cur_bytes
);
1851 case QCOW2_CLUSTER_ZERO_PLAIN
:
1852 case QCOW2_CLUSTER_ZERO_ALLOC
:
1853 qemu_iovec_memset(&hd_qiov
, 0, 0, cur_bytes
);
1856 case QCOW2_CLUSTER_COMPRESSED
:
1857 /* add AIO support for compressed blocks ? */
1858 ret
= qcow2_decompress_cluster(bs
, cluster_offset
);
1863 qemu_iovec_from_buf(&hd_qiov
, 0,
1864 s
->cluster_cache
+ offset_in_cluster
,
1868 case QCOW2_CLUSTER_NORMAL
:
1869 if ((cluster_offset
& 511) != 0) {
1874 if (bs
->encrypted
) {
1878 * For encrypted images, read everything into a temporary
1879 * contiguous buffer on which the AES functions can work.
1881 if (!cluster_data
) {
1883 qemu_try_blockalign(bs
->file
->bs
,
1884 QCOW_MAX_CRYPT_CLUSTERS
1886 if (cluster_data
== NULL
) {
1892 assert(cur_bytes
<= QCOW_MAX_CRYPT_CLUSTERS
* s
->cluster_size
);
1893 qemu_iovec_reset(&hd_qiov
);
1894 qemu_iovec_add(&hd_qiov
, cluster_data
, cur_bytes
);
1897 BLKDBG_EVENT(bs
->file
, BLKDBG_READ_AIO
);
1898 qemu_co_mutex_unlock(&s
->lock
);
1899 ret
= bdrv_co_preadv(bs
->file
,
1900 cluster_offset
+ offset_in_cluster
,
1901 cur_bytes
, &hd_qiov
, 0);
1902 qemu_co_mutex_lock(&s
->lock
);
1906 if (bs
->encrypted
) {
1908 assert((offset
& (BDRV_SECTOR_SIZE
- 1)) == 0);
1909 assert((cur_bytes
& (BDRV_SECTOR_SIZE
- 1)) == 0);
1910 if (qcrypto_block_decrypt(s
->crypto
,
1911 (s
->crypt_physical_offset
?
1912 cluster_offset
+ offset_in_cluster
:
1920 qemu_iovec_from_buf(qiov
, bytes_done
, cluster_data
, cur_bytes
);
1925 g_assert_not_reached();
1931 offset
+= cur_bytes
;
1932 bytes_done
+= cur_bytes
;
1937 qemu_co_mutex_unlock(&s
->lock
);
1939 qemu_iovec_destroy(&hd_qiov
);
1940 qemu_vfree(cluster_data
);
1945 /* Check if it's possible to merge a write request with the writing of
1946 * the data from the COW regions */
1947 static bool merge_cow(uint64_t offset
, unsigned bytes
,
1948 QEMUIOVector
*hd_qiov
, QCowL2Meta
*l2meta
)
1952 for (m
= l2meta
; m
!= NULL
; m
= m
->next
) {
1953 /* If both COW regions are empty then there's nothing to merge */
1954 if (m
->cow_start
.nb_bytes
== 0 && m
->cow_end
.nb_bytes
== 0) {
1958 /* The data (middle) region must be immediately after the
1960 if (l2meta_cow_start(m
) + m
->cow_start
.nb_bytes
!= offset
) {
1964 /* The end region must be immediately after the data (middle)
1966 if (m
->offset
+ m
->cow_end
.offset
!= offset
+ bytes
) {
1970 /* Make sure that adding both COW regions to the QEMUIOVector
1971 * does not exceed IOV_MAX */
1972 if (hd_qiov
->niov
> IOV_MAX
- 2) {
1976 m
->data_qiov
= hd_qiov
;
1983 static coroutine_fn
int qcow2_co_pwritev(BlockDriverState
*bs
, uint64_t offset
,
1984 uint64_t bytes
, QEMUIOVector
*qiov
,
1987 BDRVQcow2State
*s
= bs
->opaque
;
1988 int offset_in_cluster
;
1990 unsigned int cur_bytes
; /* number of sectors in current iteration */
1991 uint64_t cluster_offset
;
1992 QEMUIOVector hd_qiov
;
1993 uint64_t bytes_done
= 0;
1994 uint8_t *cluster_data
= NULL
;
1995 QCowL2Meta
*l2meta
= NULL
;
1997 trace_qcow2_writev_start_req(qemu_coroutine_self(), offset
, bytes
);
1999 qemu_iovec_init(&hd_qiov
, qiov
->niov
);
2001 s
->cluster_cache_offset
= -1; /* disable compressed cache */
2003 qemu_co_mutex_lock(&s
->lock
);
2005 while (bytes
!= 0) {
2009 trace_qcow2_writev_start_part(qemu_coroutine_self());
2010 offset_in_cluster
= offset_into_cluster(s
, offset
);
2011 cur_bytes
= MIN(bytes
, INT_MAX
);
2012 if (bs
->encrypted
) {
2013 cur_bytes
= MIN(cur_bytes
,
2014 QCOW_MAX_CRYPT_CLUSTERS
* s
->cluster_size
2015 - offset_in_cluster
);
2018 ret
= qcow2_alloc_cluster_offset(bs
, offset
, &cur_bytes
,
2019 &cluster_offset
, &l2meta
);
2024 assert((cluster_offset
& 511) == 0);
2026 qemu_iovec_reset(&hd_qiov
);
2027 qemu_iovec_concat(&hd_qiov
, qiov
, bytes_done
, cur_bytes
);
2029 if (bs
->encrypted
) {
2031 if (!cluster_data
) {
2032 cluster_data
= qemu_try_blockalign(bs
->file
->bs
,
2033 QCOW_MAX_CRYPT_CLUSTERS
2035 if (cluster_data
== NULL
) {
2041 assert(hd_qiov
.size
<=
2042 QCOW_MAX_CRYPT_CLUSTERS
* s
->cluster_size
);
2043 qemu_iovec_to_buf(&hd_qiov
, 0, cluster_data
, hd_qiov
.size
);
2045 if (qcrypto_block_encrypt(s
->crypto
,
2046 (s
->crypt_physical_offset
?
2047 cluster_offset
+ offset_in_cluster
:
2050 cur_bytes
, NULL
) < 0) {
2055 qemu_iovec_reset(&hd_qiov
);
2056 qemu_iovec_add(&hd_qiov
, cluster_data
, cur_bytes
);
2059 ret
= qcow2_pre_write_overlap_check(bs
, 0,
2060 cluster_offset
+ offset_in_cluster
, cur_bytes
);
2065 /* If we need to do COW, check if it's possible to merge the
2066 * writing of the guest data together with that of the COW regions.
2067 * If it's not possible (or not necessary) then write the
2068 * guest data now. */
2069 if (!merge_cow(offset
, cur_bytes
, &hd_qiov
, l2meta
)) {
2070 qemu_co_mutex_unlock(&s
->lock
);
2071 BLKDBG_EVENT(bs
->file
, BLKDBG_WRITE_AIO
);
2072 trace_qcow2_writev_data(qemu_coroutine_self(),
2073 cluster_offset
+ offset_in_cluster
);
2074 ret
= bdrv_co_pwritev(bs
->file
,
2075 cluster_offset
+ offset_in_cluster
,
2076 cur_bytes
, &hd_qiov
, 0);
2077 qemu_co_mutex_lock(&s
->lock
);
2083 ret
= qcow2_handle_l2meta(bs
, &l2meta
, true);
2089 offset
+= cur_bytes
;
2090 bytes_done
+= cur_bytes
;
2091 trace_qcow2_writev_done_part(qemu_coroutine_self(), cur_bytes
);
2096 qcow2_handle_l2meta(bs
, &l2meta
, false);
2098 qemu_co_mutex_unlock(&s
->lock
);
2100 qemu_iovec_destroy(&hd_qiov
);
2101 qemu_vfree(cluster_data
);
2102 trace_qcow2_writev_done_req(qemu_coroutine_self(), ret
);
2107 static int qcow2_inactivate(BlockDriverState
*bs
)
2109 BDRVQcow2State
*s
= bs
->opaque
;
2110 int ret
, result
= 0;
2111 Error
*local_err
= NULL
;
2113 qcow2_store_persistent_dirty_bitmaps(bs
, &local_err
);
2114 if (local_err
!= NULL
) {
2116 error_report_err(local_err
);
2117 error_report("Persistent bitmaps are lost for node '%s'",
2118 bdrv_get_device_or_node_name(bs
));
2121 ret
= qcow2_cache_flush(bs
, s
->l2_table_cache
);
2124 error_report("Failed to flush the L2 table cache: %s",
2128 ret
= qcow2_cache_flush(bs
, s
->refcount_block_cache
);
2131 error_report("Failed to flush the refcount block cache: %s",
2136 qcow2_mark_clean(bs
);
2142 static void qcow2_close(BlockDriverState
*bs
)
2144 BDRVQcow2State
*s
= bs
->opaque
;
2145 qemu_vfree(s
->l1_table
);
2146 /* else pre-write overlap checks in cache_destroy may crash */
2149 if (!(s
->flags
& BDRV_O_INACTIVE
)) {
2150 qcow2_inactivate(bs
);
2153 cache_clean_timer_del(bs
);
2154 qcow2_cache_destroy(s
->l2_table_cache
);
2155 qcow2_cache_destroy(s
->refcount_block_cache
);
2157 qcrypto_block_free(s
->crypto
);
2160 g_free(s
->unknown_header_fields
);
2161 cleanup_unknown_header_ext(bs
);
2163 g_free(s
->image_backing_file
);
2164 g_free(s
->image_backing_format
);
2166 g_free(s
->cluster_cache
);
2167 qemu_vfree(s
->cluster_data
);
2168 qcow2_refcount_close(bs
);
2169 qcow2_free_snapshots(bs
);
2172 static void coroutine_fn
qcow2_co_invalidate_cache(BlockDriverState
*bs
,
2175 BDRVQcow2State
*s
= bs
->opaque
;
2176 int flags
= s
->flags
;
2177 QCryptoBlock
*crypto
= NULL
;
2179 Error
*local_err
= NULL
;
2183 * Backing files are read-only which makes all of their metadata immutable,
2184 * that means we don't have to worry about reopening them here.
2192 memset(s
, 0, sizeof(BDRVQcow2State
));
2193 options
= qdict_clone_shallow(bs
->options
);
2195 flags
&= ~BDRV_O_INACTIVE
;
2196 qemu_co_mutex_lock(&s
->lock
);
2197 ret
= qcow2_do_open(bs
, options
, flags
, &local_err
);
2198 qemu_co_mutex_unlock(&s
->lock
);
2199 qobject_unref(options
);
2201 error_propagate(errp
, local_err
);
2202 error_prepend(errp
, "Could not reopen qcow2 layer: ");
2205 } else if (ret
< 0) {
2206 error_setg_errno(errp
, -ret
, "Could not reopen qcow2 layer");
2214 static size_t header_ext_add(char *buf
, uint32_t magic
, const void *s
,
2215 size_t len
, size_t buflen
)
2217 QCowExtension
*ext_backing_fmt
= (QCowExtension
*) buf
;
2218 size_t ext_len
= sizeof(QCowExtension
) + ((len
+ 7) & ~7);
2220 if (buflen
< ext_len
) {
2224 *ext_backing_fmt
= (QCowExtension
) {
2225 .magic
= cpu_to_be32(magic
),
2226 .len
= cpu_to_be32(len
),
2230 memcpy(buf
+ sizeof(QCowExtension
), s
, len
);
2237 * Updates the qcow2 header, including the variable length parts of it, i.e.
2238 * the backing file name and all extensions. qcow2 was not designed to allow
2239 * such changes, so if we run out of space (we can only use the first cluster)
2240 * this function may fail.
2242 * Returns 0 on success, -errno in error cases.
2244 int qcow2_update_header(BlockDriverState
*bs
)
2246 BDRVQcow2State
*s
= bs
->opaque
;
2249 size_t buflen
= s
->cluster_size
;
2251 uint64_t total_size
;
2252 uint32_t refcount_table_clusters
;
2253 size_t header_length
;
2254 Qcow2UnknownHeaderExtension
*uext
;
2256 buf
= qemu_blockalign(bs
, buflen
);
2258 /* Header structure */
2259 header
= (QCowHeader
*) buf
;
2261 if (buflen
< sizeof(*header
)) {
2266 header_length
= sizeof(*header
) + s
->unknown_header_fields_size
;
2267 total_size
= bs
->total_sectors
* BDRV_SECTOR_SIZE
;
2268 refcount_table_clusters
= s
->refcount_table_size
>> (s
->cluster_bits
- 3);
2270 *header
= (QCowHeader
) {
2271 /* Version 2 fields */
2272 .magic
= cpu_to_be32(QCOW_MAGIC
),
2273 .version
= cpu_to_be32(s
->qcow_version
),
2274 .backing_file_offset
= 0,
2275 .backing_file_size
= 0,
2276 .cluster_bits
= cpu_to_be32(s
->cluster_bits
),
2277 .size
= cpu_to_be64(total_size
),
2278 .crypt_method
= cpu_to_be32(s
->crypt_method_header
),
2279 .l1_size
= cpu_to_be32(s
->l1_size
),
2280 .l1_table_offset
= cpu_to_be64(s
->l1_table_offset
),
2281 .refcount_table_offset
= cpu_to_be64(s
->refcount_table_offset
),
2282 .refcount_table_clusters
= cpu_to_be32(refcount_table_clusters
),
2283 .nb_snapshots
= cpu_to_be32(s
->nb_snapshots
),
2284 .snapshots_offset
= cpu_to_be64(s
->snapshots_offset
),
2286 /* Version 3 fields */
2287 .incompatible_features
= cpu_to_be64(s
->incompatible_features
),
2288 .compatible_features
= cpu_to_be64(s
->compatible_features
),
2289 .autoclear_features
= cpu_to_be64(s
->autoclear_features
),
2290 .refcount_order
= cpu_to_be32(s
->refcount_order
),
2291 .header_length
= cpu_to_be32(header_length
),
2294 /* For older versions, write a shorter header */
2295 switch (s
->qcow_version
) {
2297 ret
= offsetof(QCowHeader
, incompatible_features
);
2300 ret
= sizeof(*header
);
2309 memset(buf
, 0, buflen
);
2311 /* Preserve any unknown field in the header */
2312 if (s
->unknown_header_fields_size
) {
2313 if (buflen
< s
->unknown_header_fields_size
) {
2318 memcpy(buf
, s
->unknown_header_fields
, s
->unknown_header_fields_size
);
2319 buf
+= s
->unknown_header_fields_size
;
2320 buflen
-= s
->unknown_header_fields_size
;
2323 /* Backing file format header extension */
2324 if (s
->image_backing_format
) {
2325 ret
= header_ext_add(buf
, QCOW2_EXT_MAGIC_BACKING_FORMAT
,
2326 s
->image_backing_format
,
2327 strlen(s
->image_backing_format
),
2337 /* Full disk encryption header pointer extension */
2338 if (s
->crypto_header
.offset
!= 0) {
2339 cpu_to_be64s(&s
->crypto_header
.offset
);
2340 cpu_to_be64s(&s
->crypto_header
.length
);
2341 ret
= header_ext_add(buf
, QCOW2_EXT_MAGIC_CRYPTO_HEADER
,
2342 &s
->crypto_header
, sizeof(s
->crypto_header
),
2344 be64_to_cpus(&s
->crypto_header
.offset
);
2345 be64_to_cpus(&s
->crypto_header
.length
);
2354 if (s
->qcow_version
>= 3) {
2355 Qcow2Feature features
[] = {
2357 .type
= QCOW2_FEAT_TYPE_INCOMPATIBLE
,
2358 .bit
= QCOW2_INCOMPAT_DIRTY_BITNR
,
2359 .name
= "dirty bit",
2362 .type
= QCOW2_FEAT_TYPE_INCOMPATIBLE
,
2363 .bit
= QCOW2_INCOMPAT_CORRUPT_BITNR
,
2364 .name
= "corrupt bit",
2367 .type
= QCOW2_FEAT_TYPE_COMPATIBLE
,
2368 .bit
= QCOW2_COMPAT_LAZY_REFCOUNTS_BITNR
,
2369 .name
= "lazy refcounts",
2373 ret
= header_ext_add(buf
, QCOW2_EXT_MAGIC_FEATURE_TABLE
,
2374 features
, sizeof(features
), buflen
);
2382 /* Bitmap extension */
2383 if (s
->nb_bitmaps
> 0) {
2384 Qcow2BitmapHeaderExt bitmaps_header
= {
2385 .nb_bitmaps
= cpu_to_be32(s
->nb_bitmaps
),
2386 .bitmap_directory_size
=
2387 cpu_to_be64(s
->bitmap_directory_size
),
2388 .bitmap_directory_offset
=
2389 cpu_to_be64(s
->bitmap_directory_offset
)
2391 ret
= header_ext_add(buf
, QCOW2_EXT_MAGIC_BITMAPS
,
2392 &bitmaps_header
, sizeof(bitmaps_header
),
2401 /* Keep unknown header extensions */
2402 QLIST_FOREACH(uext
, &s
->unknown_header_ext
, next
) {
2403 ret
= header_ext_add(buf
, uext
->magic
, uext
->data
, uext
->len
, buflen
);
2412 /* End of header extensions */
2413 ret
= header_ext_add(buf
, QCOW2_EXT_MAGIC_END
, NULL
, 0, buflen
);
2421 /* Backing file name */
2422 if (s
->image_backing_file
) {
2423 size_t backing_file_len
= strlen(s
->image_backing_file
);
2425 if (buflen
< backing_file_len
) {
2430 /* Using strncpy is ok here, since buf is not NUL-terminated. */
2431 strncpy(buf
, s
->image_backing_file
, buflen
);
2433 header
->backing_file_offset
= cpu_to_be64(buf
- ((char*) header
));
2434 header
->backing_file_size
= cpu_to_be32(backing_file_len
);
2437 /* Write the new header */
2438 ret
= bdrv_pwrite(bs
->file
, 0, header
, s
->cluster_size
);
2449 static int qcow2_change_backing_file(BlockDriverState
*bs
,
2450 const char *backing_file
, const char *backing_fmt
)
2452 BDRVQcow2State
*s
= bs
->opaque
;
2454 if (backing_file
&& strlen(backing_file
) > 1023) {
2458 pstrcpy(bs
->backing_file
, sizeof(bs
->backing_file
), backing_file
?: "");
2459 pstrcpy(bs
->backing_format
, sizeof(bs
->backing_format
), backing_fmt
?: "");
2461 g_free(s
->image_backing_file
);
2462 g_free(s
->image_backing_format
);
2464 s
->image_backing_file
= backing_file
? g_strdup(bs
->backing_file
) : NULL
;
2465 s
->image_backing_format
= backing_fmt
? g_strdup(bs
->backing_format
) : NULL
;
2467 return qcow2_update_header(bs
);
2470 static int qcow2_crypt_method_from_format(const char *encryptfmt
)
2472 if (g_str_equal(encryptfmt
, "luks")) {
2473 return QCOW_CRYPT_LUKS
;
2474 } else if (g_str_equal(encryptfmt
, "aes")) {
2475 return QCOW_CRYPT_AES
;
2481 static int qcow2_set_up_encryption(BlockDriverState
*bs
,
2482 QCryptoBlockCreateOptions
*cryptoopts
,
2485 BDRVQcow2State
*s
= bs
->opaque
;
2486 QCryptoBlock
*crypto
= NULL
;
2489 switch (cryptoopts
->format
) {
2490 case Q_CRYPTO_BLOCK_FORMAT_LUKS
:
2491 fmt
= QCOW_CRYPT_LUKS
;
2493 case Q_CRYPTO_BLOCK_FORMAT_QCOW
:
2494 fmt
= QCOW_CRYPT_AES
;
2497 error_setg(errp
, "Crypto format not supported in qcow2");
2501 s
->crypt_method_header
= fmt
;
2503 crypto
= qcrypto_block_create(cryptoopts
, "encrypt.",
2504 qcow2_crypto_hdr_init_func
,
2505 qcow2_crypto_hdr_write_func
,
2511 ret
= qcow2_update_header(bs
);
2513 error_setg_errno(errp
, -ret
, "Could not write encryption header");
2519 qcrypto_block_free(crypto
);
2524 typedef struct PreallocCo
{
2525 BlockDriverState
*bs
;
2527 uint64_t new_length
;
2533 * Preallocates metadata structures for data clusters between @offset (in the
2534 * guest disk) and @new_length (which is thus generally the new guest disk
2537 * Returns: 0 on success, -errno on failure.
2539 static void coroutine_fn
preallocate_co(void *opaque
)
2541 PreallocCo
*params
= opaque
;
2542 BlockDriverState
*bs
= params
->bs
;
2543 uint64_t offset
= params
->offset
;
2544 uint64_t new_length
= params
->new_length
;
2545 BDRVQcow2State
*s
= bs
->opaque
;
2547 uint64_t host_offset
= 0;
2548 unsigned int cur_bytes
;
2552 qemu_co_mutex_lock(&s
->lock
);
2554 assert(offset
<= new_length
);
2555 bytes
= new_length
- offset
;
2558 cur_bytes
= MIN(bytes
, INT_MAX
);
2559 ret
= qcow2_alloc_cluster_offset(bs
, offset
, &cur_bytes
,
2560 &host_offset
, &meta
);
2566 QCowL2Meta
*next
= meta
->next
;
2568 ret
= qcow2_alloc_cluster_link_l2(bs
, meta
);
2570 qcow2_free_any_clusters(bs
, meta
->alloc_offset
,
2571 meta
->nb_clusters
, QCOW2_DISCARD_NEVER
);
2575 /* There are no dependent requests, but we need to remove our
2576 * request from the list of in-flight requests */
2577 QLIST_REMOVE(meta
, next_in_flight
);
2583 /* TODO Preallocate data if requested */
2586 offset
+= cur_bytes
;
2590 * It is expected that the image file is large enough to actually contain
2591 * all of the allocated clusters (otherwise we get failing reads after
2592 * EOF). Extend the image to the last allocated sector.
2594 if (host_offset
!= 0) {
2596 ret
= bdrv_pwrite(bs
->file
, (host_offset
+ cur_bytes
) - 1,
2606 qemu_co_mutex_unlock(&s
->lock
);
2610 static int preallocate(BlockDriverState
*bs
,
2611 uint64_t offset
, uint64_t new_length
)
2613 PreallocCo params
= {
2616 .new_length
= new_length
,
2617 .ret
= -EINPROGRESS
,
2620 if (qemu_in_coroutine()) {
2621 preallocate_co(¶ms
);
2623 Coroutine
*co
= qemu_coroutine_create(preallocate_co
, ¶ms
);
2624 bdrv_coroutine_enter(bs
, co
);
2625 BDRV_POLL_WHILE(bs
, params
.ret
== -EINPROGRESS
);
2630 /* qcow2_refcount_metadata_size:
2631 * @clusters: number of clusters to refcount (including data and L1/L2 tables)
2632 * @cluster_size: size of a cluster, in bytes
2633 * @refcount_order: refcount bits power-of-2 exponent
2634 * @generous_increase: allow for the refcount table to be 1.5x as large as it
2637 * Returns: Number of bytes required for refcount blocks and table metadata.
2639 int64_t qcow2_refcount_metadata_size(int64_t clusters
, size_t cluster_size
,
2640 int refcount_order
, bool generous_increase
,
2641 uint64_t *refblock_count
)
2644 * Every host cluster is reference-counted, including metadata (even
2645 * refcount metadata is recursively included).
2647 * An accurate formula for the size of refcount metadata size is difficult
2648 * to derive. An easier method of calculation is finding the fixed point
2649 * where no further refcount blocks or table clusters are required to
2650 * reference count every cluster.
2652 int64_t blocks_per_table_cluster
= cluster_size
/ sizeof(uint64_t);
2653 int64_t refcounts_per_block
= cluster_size
* 8 / (1 << refcount_order
);
2654 int64_t table
= 0; /* number of refcount table clusters */
2655 int64_t blocks
= 0; /* number of refcount block clusters */
2661 blocks
= DIV_ROUND_UP(clusters
+ table
+ blocks
, refcounts_per_block
);
2662 table
= DIV_ROUND_UP(blocks
, blocks_per_table_cluster
);
2663 n
= clusters
+ blocks
+ table
;
2665 if (n
== last
&& generous_increase
) {
2666 clusters
+= DIV_ROUND_UP(table
, 2);
2667 n
= 0; /* force another loop */
2668 generous_increase
= false;
2670 } while (n
!= last
);
2672 if (refblock_count
) {
2673 *refblock_count
= blocks
;
2676 return (blocks
+ table
) * cluster_size
;
2680 * qcow2_calc_prealloc_size:
2681 * @total_size: virtual disk size in bytes
2682 * @cluster_size: cluster size in bytes
2683 * @refcount_order: refcount bits power-of-2 exponent
2685 * Returns: Total number of bytes required for the fully allocated image
2686 * (including metadata).
2688 static int64_t qcow2_calc_prealloc_size(int64_t total_size
,
2689 size_t cluster_size
,
2692 int64_t meta_size
= 0;
2693 uint64_t nl1e
, nl2e
;
2694 int64_t aligned_total_size
= ROUND_UP(total_size
, cluster_size
);
2696 /* header: 1 cluster */
2697 meta_size
+= cluster_size
;
2699 /* total size of L2 tables */
2700 nl2e
= aligned_total_size
/ cluster_size
;
2701 nl2e
= ROUND_UP(nl2e
, cluster_size
/ sizeof(uint64_t));
2702 meta_size
+= nl2e
* sizeof(uint64_t);
2704 /* total size of L1 tables */
2705 nl1e
= nl2e
* sizeof(uint64_t) / cluster_size
;
2706 nl1e
= ROUND_UP(nl1e
, cluster_size
/ sizeof(uint64_t));
2707 meta_size
+= nl1e
* sizeof(uint64_t);
2709 /* total size of refcount table and blocks */
2710 meta_size
+= qcow2_refcount_metadata_size(
2711 (meta_size
+ aligned_total_size
) / cluster_size
,
2712 cluster_size
, refcount_order
, false, NULL
);
2714 return meta_size
+ aligned_total_size
;
2717 static bool validate_cluster_size(size_t cluster_size
, Error
**errp
)
2719 int cluster_bits
= ctz32(cluster_size
);
2720 if (cluster_bits
< MIN_CLUSTER_BITS
|| cluster_bits
> MAX_CLUSTER_BITS
||
2721 (1 << cluster_bits
) != cluster_size
)
2723 error_setg(errp
, "Cluster size must be a power of two between %d and "
2724 "%dk", 1 << MIN_CLUSTER_BITS
, 1 << (MAX_CLUSTER_BITS
- 10));
2730 static size_t qcow2_opt_get_cluster_size_del(QemuOpts
*opts
, Error
**errp
)
2732 size_t cluster_size
;
2734 cluster_size
= qemu_opt_get_size_del(opts
, BLOCK_OPT_CLUSTER_SIZE
,
2735 DEFAULT_CLUSTER_SIZE
);
2736 if (!validate_cluster_size(cluster_size
, errp
)) {
2739 return cluster_size
;
2742 static int qcow2_opt_get_version_del(QemuOpts
*opts
, Error
**errp
)
2747 buf
= qemu_opt_get_del(opts
, BLOCK_OPT_COMPAT_LEVEL
);
2749 ret
= 3; /* default */
2750 } else if (!strcmp(buf
, "0.10")) {
2752 } else if (!strcmp(buf
, "1.1")) {
2755 error_setg(errp
, "Invalid compatibility level: '%s'", buf
);
2762 static uint64_t qcow2_opt_get_refcount_bits_del(QemuOpts
*opts
, int version
,
2765 uint64_t refcount_bits
;
2767 refcount_bits
= qemu_opt_get_number_del(opts
, BLOCK_OPT_REFCOUNT_BITS
, 16);
2768 if (refcount_bits
> 64 || !is_power_of_2(refcount_bits
)) {
2769 error_setg(errp
, "Refcount width must be a power of two and may not "
2774 if (version
< 3 && refcount_bits
!= 16) {
2775 error_setg(errp
, "Different refcount widths than 16 bits require "
2776 "compatibility level 1.1 or above (use compat=1.1 or "
2781 return refcount_bits
;
2784 static int coroutine_fn
2785 qcow2_co_create(BlockdevCreateOptions
*create_options
, Error
**errp
)
2787 BlockdevCreateOptionsQcow2
*qcow2_opts
;
2791 * Open the image file and write a minimal qcow2 header.
2793 * We keep things simple and start with a zero-sized image. We also
2794 * do without refcount blocks or a L1 table for now. We'll fix the
2795 * inconsistency later.
2797 * We do need a refcount table because growing the refcount table means
2798 * allocating two new refcount blocks - the seconds of which would be at
2799 * 2 GB for 64k clusters, and we don't want to have a 2 GB initial file
2800 * size for any qcow2 image.
2802 BlockBackend
*blk
= NULL
;
2803 BlockDriverState
*bs
= NULL
;
2805 size_t cluster_size
;
2808 uint64_t* refcount_table
;
2809 Error
*local_err
= NULL
;
2812 assert(create_options
->driver
== BLOCKDEV_DRIVER_QCOW2
);
2813 qcow2_opts
= &create_options
->u
.qcow2
;
2815 bs
= bdrv_open_blockdev_ref(qcow2_opts
->file
, errp
);
2820 /* Validate options and set default values */
2821 if (!QEMU_IS_ALIGNED(qcow2_opts
->size
, BDRV_SECTOR_SIZE
)) {
2822 error_setg(errp
, "Image size must be a multiple of 512 bytes");
2827 if (qcow2_opts
->has_version
) {
2828 switch (qcow2_opts
->version
) {
2829 case BLOCKDEV_QCOW2_VERSION_V2
:
2832 case BLOCKDEV_QCOW2_VERSION_V3
:
2836 g_assert_not_reached();
2842 if (qcow2_opts
->has_cluster_size
) {
2843 cluster_size
= qcow2_opts
->cluster_size
;
2845 cluster_size
= DEFAULT_CLUSTER_SIZE
;
2848 if (!validate_cluster_size(cluster_size
, errp
)) {
2853 if (!qcow2_opts
->has_preallocation
) {
2854 qcow2_opts
->preallocation
= PREALLOC_MODE_OFF
;
2856 if (qcow2_opts
->has_backing_file
&&
2857 qcow2_opts
->preallocation
!= PREALLOC_MODE_OFF
)
2859 error_setg(errp
, "Backing file and preallocation cannot be used at "
2864 if (qcow2_opts
->has_backing_fmt
&& !qcow2_opts
->has_backing_file
) {
2865 error_setg(errp
, "Backing format cannot be used without backing file");
2870 if (!qcow2_opts
->has_lazy_refcounts
) {
2871 qcow2_opts
->lazy_refcounts
= false;
2873 if (version
< 3 && qcow2_opts
->lazy_refcounts
) {
2874 error_setg(errp
, "Lazy refcounts only supported with compatibility "
2875 "level 1.1 and above (use version=v3 or greater)");
2880 if (!qcow2_opts
->has_refcount_bits
) {
2881 qcow2_opts
->refcount_bits
= 16;
2883 if (qcow2_opts
->refcount_bits
> 64 ||
2884 !is_power_of_2(qcow2_opts
->refcount_bits
))
2886 error_setg(errp
, "Refcount width must be a power of two and may not "
2891 if (version
< 3 && qcow2_opts
->refcount_bits
!= 16) {
2892 error_setg(errp
, "Different refcount widths than 16 bits require "
2893 "compatibility level 1.1 or above (use version=v3 or "
2898 refcount_order
= ctz32(qcow2_opts
->refcount_bits
);
2901 /* Create BlockBackend to write to the image */
2902 blk
= blk_new(BLK_PERM_WRITE
| BLK_PERM_RESIZE
, BLK_PERM_ALL
);
2903 ret
= blk_insert_bs(blk
, bs
, errp
);
2907 blk_set_allow_write_beyond_eof(blk
, true);
2909 /* Clear the protocol layer and preallocate it if necessary */
2910 ret
= blk_truncate(blk
, 0, PREALLOC_MODE_OFF
, errp
);
2915 if (qcow2_opts
->preallocation
== PREALLOC_MODE_FULL
||
2916 qcow2_opts
->preallocation
== PREALLOC_MODE_FALLOC
)
2918 int64_t prealloc_size
=
2919 qcow2_calc_prealloc_size(qcow2_opts
->size
, cluster_size
,
2922 ret
= blk_truncate(blk
, prealloc_size
, qcow2_opts
->preallocation
, errp
);
2928 /* Write the header */
2929 QEMU_BUILD_BUG_ON((1 << MIN_CLUSTER_BITS
) < sizeof(*header
));
2930 header
= g_malloc0(cluster_size
);
2931 *header
= (QCowHeader
) {
2932 .magic
= cpu_to_be32(QCOW_MAGIC
),
2933 .version
= cpu_to_be32(version
),
2934 .cluster_bits
= cpu_to_be32(ctz32(cluster_size
)),
2935 .size
= cpu_to_be64(0),
2936 .l1_table_offset
= cpu_to_be64(0),
2937 .l1_size
= cpu_to_be32(0),
2938 .refcount_table_offset
= cpu_to_be64(cluster_size
),
2939 .refcount_table_clusters
= cpu_to_be32(1),
2940 .refcount_order
= cpu_to_be32(refcount_order
),
2941 .header_length
= cpu_to_be32(sizeof(*header
)),
2944 /* We'll update this to correct value later */
2945 header
->crypt_method
= cpu_to_be32(QCOW_CRYPT_NONE
);
2947 if (qcow2_opts
->lazy_refcounts
) {
2948 header
->compatible_features
|=
2949 cpu_to_be64(QCOW2_COMPAT_LAZY_REFCOUNTS
);
2952 ret
= blk_pwrite(blk
, 0, header
, cluster_size
, 0);
2955 error_setg_errno(errp
, -ret
, "Could not write qcow2 header");
2959 /* Write a refcount table with one refcount block */
2960 refcount_table
= g_malloc0(2 * cluster_size
);
2961 refcount_table
[0] = cpu_to_be64(2 * cluster_size
);
2962 ret
= blk_pwrite(blk
, cluster_size
, refcount_table
, 2 * cluster_size
, 0);
2963 g_free(refcount_table
);
2966 error_setg_errno(errp
, -ret
, "Could not write refcount table");
2974 * And now open the image and make it consistent first (i.e. increase the
2975 * refcount of the cluster that is occupied by the header and the refcount
2978 options
= qdict_new();
2979 qdict_put_str(options
, "driver", "qcow2");
2980 qdict_put_str(options
, "file", bs
->node_name
);
2981 blk
= blk_new_open(NULL
, NULL
, options
,
2982 BDRV_O_RDWR
| BDRV_O_RESIZE
| BDRV_O_NO_FLUSH
,
2985 error_propagate(errp
, local_err
);
2990 ret
= qcow2_alloc_clusters(blk_bs(blk
), 3 * cluster_size
);
2992 error_setg_errno(errp
, -ret
, "Could not allocate clusters for qcow2 "
2993 "header and refcount table");
2996 } else if (ret
!= 0) {
2997 error_report("Huh, first cluster in empty image is already in use?");
3001 /* Create a full header (including things like feature table) */
3002 ret
= qcow2_update_header(blk_bs(blk
));
3004 error_setg_errno(errp
, -ret
, "Could not update qcow2 header");
3008 /* Okay, now that we have a valid image, let's give it the right size */
3009 ret
= blk_truncate(blk
, qcow2_opts
->size
, PREALLOC_MODE_OFF
, errp
);
3011 error_prepend(errp
, "Could not resize image: ");
3015 /* Want a backing file? There you go.*/
3016 if (qcow2_opts
->has_backing_file
) {
3017 const char *backing_format
= NULL
;
3019 if (qcow2_opts
->has_backing_fmt
) {
3020 backing_format
= BlockdevDriver_str(qcow2_opts
->backing_fmt
);
3023 ret
= bdrv_change_backing_file(blk_bs(blk
), qcow2_opts
->backing_file
,
3026 error_setg_errno(errp
, -ret
, "Could not assign backing file '%s' "
3027 "with format '%s'", qcow2_opts
->backing_file
,
3033 /* Want encryption? There you go. */
3034 if (qcow2_opts
->has_encrypt
) {
3035 ret
= qcow2_set_up_encryption(blk_bs(blk
), qcow2_opts
->encrypt
, errp
);
3041 /* And if we're supposed to preallocate metadata, do that now */
3042 if (qcow2_opts
->preallocation
!= PREALLOC_MODE_OFF
) {
3043 ret
= preallocate(blk_bs(blk
), 0, qcow2_opts
->size
);
3045 error_setg_errno(errp
, -ret
, "Could not preallocate metadata");
3053 /* Reopen the image without BDRV_O_NO_FLUSH to flush it before returning.
3054 * Using BDRV_O_NO_IO, since encryption is now setup we don't want to
3055 * have to setup decryption context. We're not doing any I/O on the top
3056 * level BlockDriverState, only lower layers, where BDRV_O_NO_IO does
3059 options
= qdict_new();
3060 qdict_put_str(options
, "driver", "qcow2");
3061 qdict_put_str(options
, "file", bs
->node_name
);
3062 blk
= blk_new_open(NULL
, NULL
, options
,
3063 BDRV_O_RDWR
| BDRV_O_NO_BACKING
| BDRV_O_NO_IO
,
3066 error_propagate(errp
, local_err
);
3078 static int coroutine_fn
qcow2_co_create_opts(const char *filename
, QemuOpts
*opts
,
3081 BlockdevCreateOptions
*create_options
= NULL
;
3082 QDict
*qdict
= NULL
;
3085 BlockDriverState
*bs
= NULL
;
3086 Error
*local_err
= NULL
;
3090 /* Only the keyval visitor supports the dotted syntax needed for
3091 * encryption, so go through a QDict before getting a QAPI type. Ignore
3092 * options meant for the protocol layer so that the visitor doesn't
3094 qdict
= qemu_opts_to_qdict_filtered(opts
, NULL
, bdrv_qcow2
.create_opts
,
3097 /* Handle encryption options */
3098 val
= qdict_get_try_str(qdict
, BLOCK_OPT_ENCRYPT
);
3099 if (val
&& !strcmp(val
, "on")) {
3100 qdict_put_str(qdict
, BLOCK_OPT_ENCRYPT
, "qcow");
3101 } else if (val
&& !strcmp(val
, "off")) {
3102 qdict_del(qdict
, BLOCK_OPT_ENCRYPT
);
3105 val
= qdict_get_try_str(qdict
, BLOCK_OPT_ENCRYPT_FORMAT
);
3106 if (val
&& !strcmp(val
, "aes")) {
3107 qdict_put_str(qdict
, BLOCK_OPT_ENCRYPT_FORMAT
, "qcow");
3110 /* Convert compat=0.10/1.1 into compat=v2/v3, to be renamed into
3111 * version=v2/v3 below. */
3112 val
= qdict_get_try_str(qdict
, BLOCK_OPT_COMPAT_LEVEL
);
3113 if (val
&& !strcmp(val
, "0.10")) {
3114 qdict_put_str(qdict
, BLOCK_OPT_COMPAT_LEVEL
, "v2");
3115 } else if (val
&& !strcmp(val
, "1.1")) {
3116 qdict_put_str(qdict
, BLOCK_OPT_COMPAT_LEVEL
, "v3");
3119 /* Change legacy command line options into QMP ones */
3120 static const QDictRenames opt_renames
[] = {
3121 { BLOCK_OPT_BACKING_FILE
, "backing-file" },
3122 { BLOCK_OPT_BACKING_FMT
, "backing-fmt" },
3123 { BLOCK_OPT_CLUSTER_SIZE
, "cluster-size" },
3124 { BLOCK_OPT_LAZY_REFCOUNTS
, "lazy-refcounts" },
3125 { BLOCK_OPT_REFCOUNT_BITS
, "refcount-bits" },
3126 { BLOCK_OPT_ENCRYPT
, BLOCK_OPT_ENCRYPT_FORMAT
},
3127 { BLOCK_OPT_COMPAT_LEVEL
, "version" },
3131 if (!qdict_rename_keys(qdict
, opt_renames
, errp
)) {
3136 /* Create and open the file (protocol layer) */
3137 ret
= bdrv_create_file(filename
, opts
, errp
);
3142 bs
= bdrv_open(filename
, NULL
, NULL
,
3143 BDRV_O_RDWR
| BDRV_O_RESIZE
| BDRV_O_PROTOCOL
, errp
);
3149 /* Set 'driver' and 'node' options */
3150 qdict_put_str(qdict
, "driver", "qcow2");
3151 qdict_put_str(qdict
, "file", bs
->node_name
);
3153 /* Now get the QAPI type BlockdevCreateOptions */
3154 qobj
= qdict_crumple(qdict
, errp
);
3155 qobject_unref(qdict
);
3156 qdict
= qobject_to(QDict
, qobj
);
3157 if (qdict
== NULL
) {
3162 v
= qobject_input_visitor_new_keyval(QOBJECT(qdict
));
3163 visit_type_BlockdevCreateOptions(v
, NULL
, &create_options
, &local_err
);
3167 error_propagate(errp
, local_err
);
3172 /* Silently round up size */
3173 create_options
->u
.qcow2
.size
= ROUND_UP(create_options
->u
.qcow2
.size
,
3176 /* Create the qcow2 image (format layer) */
3177 ret
= qcow2_co_create(create_options
, errp
);
3184 qobject_unref(qdict
);
3186 qapi_free_BlockdevCreateOptions(create_options
);
3191 static bool is_zero(BlockDriverState
*bs
, int64_t offset
, int64_t bytes
)
3196 /* Clamp to image length, before checking status of underlying sectors */
3197 if (offset
+ bytes
> bs
->total_sectors
* BDRV_SECTOR_SIZE
) {
3198 bytes
= bs
->total_sectors
* BDRV_SECTOR_SIZE
- offset
;
3204 res
= bdrv_block_status_above(bs
, NULL
, offset
, bytes
, &nr
, NULL
, NULL
);
3205 return res
>= 0 && (res
& BDRV_BLOCK_ZERO
) && nr
== bytes
;
3208 static coroutine_fn
int qcow2_co_pwrite_zeroes(BlockDriverState
*bs
,
3209 int64_t offset
, int bytes
, BdrvRequestFlags flags
)
3212 BDRVQcow2State
*s
= bs
->opaque
;
3214 uint32_t head
= offset
% s
->cluster_size
;
3215 uint32_t tail
= (offset
+ bytes
) % s
->cluster_size
;
3217 trace_qcow2_pwrite_zeroes_start_req(qemu_coroutine_self(), offset
, bytes
);
3218 if (offset
+ bytes
== bs
->total_sectors
* BDRV_SECTOR_SIZE
) {
3226 assert(head
+ bytes
<= s
->cluster_size
);
3228 /* check whether remainder of cluster already reads as zero */
3229 if (!(is_zero(bs
, offset
- head
, head
) &&
3230 is_zero(bs
, offset
+ bytes
,
3231 tail
? s
->cluster_size
- tail
: 0))) {
3235 qemu_co_mutex_lock(&s
->lock
);
3236 /* We can have new write after previous check */
3237 offset
= QEMU_ALIGN_DOWN(offset
, s
->cluster_size
);
3238 bytes
= s
->cluster_size
;
3239 nr
= s
->cluster_size
;
3240 ret
= qcow2_get_cluster_offset(bs
, offset
, &nr
, &off
);
3241 if (ret
!= QCOW2_CLUSTER_UNALLOCATED
&&
3242 ret
!= QCOW2_CLUSTER_ZERO_PLAIN
&&
3243 ret
!= QCOW2_CLUSTER_ZERO_ALLOC
) {
3244 qemu_co_mutex_unlock(&s
->lock
);
3248 qemu_co_mutex_lock(&s
->lock
);
3251 trace_qcow2_pwrite_zeroes(qemu_coroutine_self(), offset
, bytes
);
3253 /* Whatever is left can use real zero clusters */
3254 ret
= qcow2_cluster_zeroize(bs
, offset
, bytes
, flags
);
3255 qemu_co_mutex_unlock(&s
->lock
);
3260 static coroutine_fn
int qcow2_co_pdiscard(BlockDriverState
*bs
,
3261 int64_t offset
, int bytes
)
3264 BDRVQcow2State
*s
= bs
->opaque
;
3266 if (!QEMU_IS_ALIGNED(offset
| bytes
, s
->cluster_size
)) {
3267 assert(bytes
< s
->cluster_size
);
3268 /* Ignore partial clusters, except for the special case of the
3269 * complete partial cluster at the end of an unaligned file */
3270 if (!QEMU_IS_ALIGNED(offset
, s
->cluster_size
) ||
3271 offset
+ bytes
!= bs
->total_sectors
* BDRV_SECTOR_SIZE
) {
3276 qemu_co_mutex_lock(&s
->lock
);
3277 ret
= qcow2_cluster_discard(bs
, offset
, bytes
, QCOW2_DISCARD_REQUEST
,
3279 qemu_co_mutex_unlock(&s
->lock
);
3283 static int coroutine_fn
3284 qcow2_co_copy_range_from(BlockDriverState
*bs
,
3285 BdrvChild
*src
, uint64_t src_offset
,
3286 BdrvChild
*dst
, uint64_t dst_offset
,
3287 uint64_t bytes
, BdrvRequestFlags flags
)
3289 BDRVQcow2State
*s
= bs
->opaque
;
3291 unsigned int cur_bytes
; /* number of bytes in current iteration */
3292 BdrvChild
*child
= NULL
;
3293 BdrvRequestFlags cur_flags
;
3295 assert(!bs
->encrypted
);
3296 qemu_co_mutex_lock(&s
->lock
);
3298 while (bytes
!= 0) {
3299 uint64_t copy_offset
= 0;
3300 /* prepare next request */
3301 cur_bytes
= MIN(bytes
, INT_MAX
);
3304 ret
= qcow2_get_cluster_offset(bs
, src_offset
, &cur_bytes
, ©_offset
);
3310 case QCOW2_CLUSTER_UNALLOCATED
:
3311 if (bs
->backing
&& bs
->backing
->bs
) {
3312 int64_t backing_length
= bdrv_getlength(bs
->backing
->bs
);
3313 if (src_offset
>= backing_length
) {
3314 cur_flags
|= BDRV_REQ_ZERO_WRITE
;
3316 child
= bs
->backing
;
3317 cur_bytes
= MIN(cur_bytes
, backing_length
- src_offset
);
3318 copy_offset
= src_offset
;
3321 cur_flags
|= BDRV_REQ_ZERO_WRITE
;
3325 case QCOW2_CLUSTER_ZERO_PLAIN
:
3326 case QCOW2_CLUSTER_ZERO_ALLOC
:
3327 cur_flags
|= BDRV_REQ_ZERO_WRITE
;
3330 case QCOW2_CLUSTER_COMPRESSED
:
3335 case QCOW2_CLUSTER_NORMAL
:
3337 copy_offset
+= offset_into_cluster(s
, src_offset
);
3338 if ((copy_offset
& 511) != 0) {
3347 qemu_co_mutex_unlock(&s
->lock
);
3348 ret
= bdrv_co_copy_range_from(child
,
3351 cur_bytes
, cur_flags
);
3352 qemu_co_mutex_lock(&s
->lock
);
3358 src_offset
+= cur_bytes
;
3359 dst_offset
+= cur_bytes
;
3364 qemu_co_mutex_unlock(&s
->lock
);
3368 static int coroutine_fn
3369 qcow2_co_copy_range_to(BlockDriverState
*bs
,
3370 BdrvChild
*src
, uint64_t src_offset
,
3371 BdrvChild
*dst
, uint64_t dst_offset
,
3372 uint64_t bytes
, BdrvRequestFlags flags
)
3374 BDRVQcow2State
*s
= bs
->opaque
;
3375 int offset_in_cluster
;
3377 unsigned int cur_bytes
; /* number of sectors in current iteration */
3378 uint64_t cluster_offset
;
3379 uint8_t *cluster_data
= NULL
;
3380 QCowL2Meta
*l2meta
= NULL
;
3382 assert(!bs
->encrypted
);
3383 s
->cluster_cache_offset
= -1; /* disable compressed cache */
3385 qemu_co_mutex_lock(&s
->lock
);
3387 while (bytes
!= 0) {
3391 offset_in_cluster
= offset_into_cluster(s
, dst_offset
);
3392 cur_bytes
= MIN(bytes
, INT_MAX
);
3395 * If src->bs == dst->bs, we could simply copy by incrementing
3396 * the refcnt, without copying user data.
3397 * Or if src->bs == dst->bs->backing->bs, we could copy by discarding. */
3398 ret
= qcow2_alloc_cluster_offset(bs
, dst_offset
, &cur_bytes
,
3399 &cluster_offset
, &l2meta
);
3404 assert((cluster_offset
& 511) == 0);
3406 ret
= qcow2_pre_write_overlap_check(bs
, 0,
3407 cluster_offset
+ offset_in_cluster
, cur_bytes
);
3412 qemu_co_mutex_unlock(&s
->lock
);
3413 ret
= bdrv_co_copy_range_to(src
, src_offset
,
3415 cluster_offset
+ offset_in_cluster
,
3417 qemu_co_mutex_lock(&s
->lock
);
3422 ret
= qcow2_handle_l2meta(bs
, &l2meta
, true);
3428 dst_offset
+= cur_bytes
;
3433 qcow2_handle_l2meta(bs
, &l2meta
, false);
3435 qemu_co_mutex_unlock(&s
->lock
);
3437 qemu_vfree(cluster_data
);
3438 trace_qcow2_writev_done_req(qemu_coroutine_self(), ret
);
3443 static int qcow2_truncate(BlockDriverState
*bs
, int64_t offset
,
3444 PreallocMode prealloc
, Error
**errp
)
3446 BDRVQcow2State
*s
= bs
->opaque
;
3447 uint64_t old_length
;
3448 int64_t new_l1_size
;
3451 if (prealloc
!= PREALLOC_MODE_OFF
&& prealloc
!= PREALLOC_MODE_METADATA
&&
3452 prealloc
!= PREALLOC_MODE_FALLOC
&& prealloc
!= PREALLOC_MODE_FULL
)
3454 error_setg(errp
, "Unsupported preallocation mode '%s'",
3455 PreallocMode_str(prealloc
));
3460 error_setg(errp
, "The new size must be a multiple of 512");
3464 /* cannot proceed if image has snapshots */
3465 if (s
->nb_snapshots
) {
3466 error_setg(errp
, "Can't resize an image which has snapshots");
3470 /* cannot proceed if image has bitmaps */
3471 if (s
->nb_bitmaps
) {
3472 /* TODO: resize bitmaps in the image */
3473 error_setg(errp
, "Can't resize an image which has bitmaps");
3477 old_length
= bs
->total_sectors
* 512;
3478 new_l1_size
= size_to_l1(s
, offset
);
3480 if (offset
< old_length
) {
3481 int64_t last_cluster
, old_file_size
;
3482 if (prealloc
!= PREALLOC_MODE_OFF
) {
3484 "Preallocation can't be used for shrinking an image");
3488 ret
= qcow2_cluster_discard(bs
, ROUND_UP(offset
, s
->cluster_size
),
3489 old_length
- ROUND_UP(offset
,
3491 QCOW2_DISCARD_ALWAYS
, true);
3493 error_setg_errno(errp
, -ret
, "Failed to discard cropped clusters");
3497 ret
= qcow2_shrink_l1_table(bs
, new_l1_size
);
3499 error_setg_errno(errp
, -ret
,
3500 "Failed to reduce the number of L2 tables");
3504 ret
= qcow2_shrink_reftable(bs
);
3506 error_setg_errno(errp
, -ret
,
3507 "Failed to discard unused refblocks");
3511 old_file_size
= bdrv_getlength(bs
->file
->bs
);
3512 if (old_file_size
< 0) {
3513 error_setg_errno(errp
, -old_file_size
,
3514 "Failed to inquire current file length");
3515 return old_file_size
;
3517 last_cluster
= qcow2_get_last_cluster(bs
, old_file_size
);
3518 if (last_cluster
< 0) {
3519 error_setg_errno(errp
, -last_cluster
,
3520 "Failed to find the last cluster");
3521 return last_cluster
;
3523 if ((last_cluster
+ 1) * s
->cluster_size
< old_file_size
) {
3524 Error
*local_err
= NULL
;
3526 bdrv_truncate(bs
->file
, (last_cluster
+ 1) * s
->cluster_size
,
3527 PREALLOC_MODE_OFF
, &local_err
);
3529 warn_reportf_err(local_err
,
3530 "Failed to truncate the tail of the image: ");
3534 ret
= qcow2_grow_l1_table(bs
, new_l1_size
, true);
3536 error_setg_errno(errp
, -ret
, "Failed to grow the L1 table");
3542 case PREALLOC_MODE_OFF
:
3545 case PREALLOC_MODE_METADATA
:
3546 ret
= preallocate(bs
, old_length
, offset
);
3548 error_setg_errno(errp
, -ret
, "Preallocation failed");
3553 case PREALLOC_MODE_FALLOC
:
3554 case PREALLOC_MODE_FULL
:
3556 int64_t allocation_start
, host_offset
, guest_offset
;
3557 int64_t clusters_allocated
;
3558 int64_t old_file_size
, new_file_size
;
3559 uint64_t nb_new_data_clusters
, nb_new_l2_tables
;
3561 old_file_size
= bdrv_getlength(bs
->file
->bs
);
3562 if (old_file_size
< 0) {
3563 error_setg_errno(errp
, -old_file_size
,
3564 "Failed to inquire current file length");
3565 return old_file_size
;
3567 old_file_size
= ROUND_UP(old_file_size
, s
->cluster_size
);
3569 nb_new_data_clusters
= DIV_ROUND_UP(offset
- old_length
,
3572 /* This is an overestimation; we will not actually allocate space for
3573 * these in the file but just make sure the new refcount structures are
3574 * able to cover them so we will not have to allocate new refblocks
3575 * while entering the data blocks in the potentially new L2 tables.
3576 * (We do not actually care where the L2 tables are placed. Maybe they
3577 * are already allocated or they can be placed somewhere before
3578 * @old_file_size. It does not matter because they will be fully
3579 * allocated automatically, so they do not need to be covered by the
3580 * preallocation. All that matters is that we will not have to allocate
3581 * new refcount structures for them.) */
3582 nb_new_l2_tables
= DIV_ROUND_UP(nb_new_data_clusters
,
3583 s
->cluster_size
/ sizeof(uint64_t));
3584 /* The cluster range may not be aligned to L2 boundaries, so add one L2
3585 * table for a potential head/tail */
3588 allocation_start
= qcow2_refcount_area(bs
, old_file_size
,
3589 nb_new_data_clusters
+
3592 if (allocation_start
< 0) {
3593 error_setg_errno(errp
, -allocation_start
,
3594 "Failed to resize refcount structures");
3595 return allocation_start
;
3598 clusters_allocated
= qcow2_alloc_clusters_at(bs
, allocation_start
,
3599 nb_new_data_clusters
);
3600 if (clusters_allocated
< 0) {
3601 error_setg_errno(errp
, -clusters_allocated
,
3602 "Failed to allocate data clusters");
3603 return -clusters_allocated
;
3606 assert(clusters_allocated
== nb_new_data_clusters
);
3608 /* Allocate the data area */
3609 new_file_size
= allocation_start
+
3610 nb_new_data_clusters
* s
->cluster_size
;
3611 ret
= bdrv_truncate(bs
->file
, new_file_size
, prealloc
, errp
);
3613 error_prepend(errp
, "Failed to resize underlying file: ");
3614 qcow2_free_clusters(bs
, allocation_start
,
3615 nb_new_data_clusters
* s
->cluster_size
,
3616 QCOW2_DISCARD_OTHER
);
3620 /* Create the necessary L2 entries */
3621 host_offset
= allocation_start
;
3622 guest_offset
= old_length
;
3623 while (nb_new_data_clusters
) {
3624 int64_t nb_clusters
= MIN(
3625 nb_new_data_clusters
,
3626 s
->l2_slice_size
- offset_to_l2_slice_index(s
, guest_offset
));
3627 QCowL2Meta allocation
= {
3628 .offset
= guest_offset
,
3629 .alloc_offset
= host_offset
,
3630 .nb_clusters
= nb_clusters
,
3632 qemu_co_queue_init(&allocation
.dependent_requests
);
3634 ret
= qcow2_alloc_cluster_link_l2(bs
, &allocation
);
3636 error_setg_errno(errp
, -ret
, "Failed to update L2 tables");
3637 qcow2_free_clusters(bs
, host_offset
,
3638 nb_new_data_clusters
* s
->cluster_size
,
3639 QCOW2_DISCARD_OTHER
);
3643 guest_offset
+= nb_clusters
* s
->cluster_size
;
3644 host_offset
+= nb_clusters
* s
->cluster_size
;
3645 nb_new_data_clusters
-= nb_clusters
;
3651 g_assert_not_reached();
3654 if (prealloc
!= PREALLOC_MODE_OFF
) {
3655 /* Flush metadata before actually changing the image size */
3656 ret
= bdrv_flush(bs
);
3658 error_setg_errno(errp
, -ret
,
3659 "Failed to flush the preallocated area to disk");
3664 /* write updated header.size */
3665 offset
= cpu_to_be64(offset
);
3666 ret
= bdrv_pwrite_sync(bs
->file
, offsetof(QCowHeader
, size
),
3667 &offset
, sizeof(uint64_t));
3669 error_setg_errno(errp
, -ret
, "Failed to update the image size");
3673 s
->l1_vm_state_index
= new_l1_size
;
3677 /* XXX: put compressed sectors first, then all the cluster aligned
3678 tables to avoid losing bytes in alignment */
3679 static coroutine_fn
int
3680 qcow2_co_pwritev_compressed(BlockDriverState
*bs
, uint64_t offset
,
3681 uint64_t bytes
, QEMUIOVector
*qiov
)
3683 BDRVQcow2State
*s
= bs
->opaque
;
3684 QEMUIOVector hd_qiov
;
3688 uint8_t *buf
, *out_buf
;
3689 int64_t cluster_offset
;
3692 /* align end of file to a sector boundary to ease reading with
3693 sector based I/Os */
3694 cluster_offset
= bdrv_getlength(bs
->file
->bs
);
3695 if (cluster_offset
< 0) {
3696 return cluster_offset
;
3698 return bdrv_truncate(bs
->file
, cluster_offset
, PREALLOC_MODE_OFF
, NULL
);
3701 if (offset_into_cluster(s
, offset
)) {
3705 buf
= qemu_blockalign(bs
, s
->cluster_size
);
3706 if (bytes
!= s
->cluster_size
) {
3707 if (bytes
> s
->cluster_size
||
3708 offset
+ bytes
!= bs
->total_sectors
<< BDRV_SECTOR_BITS
)
3713 /* Zero-pad last write if image size is not cluster aligned */
3714 memset(buf
+ bytes
, 0, s
->cluster_size
- bytes
);
3716 qemu_iovec_to_buf(qiov
, 0, buf
, bytes
);
3718 out_buf
= g_malloc(s
->cluster_size
);
3720 /* best compression, small window, no zlib header */
3721 memset(&strm
, 0, sizeof(strm
));
3722 ret
= deflateInit2(&strm
, Z_DEFAULT_COMPRESSION
,
3724 9, Z_DEFAULT_STRATEGY
);
3730 strm
.avail_in
= s
->cluster_size
;
3731 strm
.next_in
= (uint8_t *)buf
;
3732 strm
.avail_out
= s
->cluster_size
;
3733 strm
.next_out
= out_buf
;
3735 ret
= deflate(&strm
, Z_FINISH
);
3736 if (ret
!= Z_STREAM_END
&& ret
!= Z_OK
) {
3741 out_len
= strm
.next_out
- out_buf
;
3745 if (ret
!= Z_STREAM_END
|| out_len
>= s
->cluster_size
) {
3746 /* could not compress: write normal cluster */
3747 ret
= qcow2_co_pwritev(bs
, offset
, bytes
, qiov
, 0);
3754 qemu_co_mutex_lock(&s
->lock
);
3756 qcow2_alloc_compressed_cluster_offset(bs
, offset
, out_len
);
3757 if (!cluster_offset
) {
3758 qemu_co_mutex_unlock(&s
->lock
);
3762 cluster_offset
&= s
->cluster_offset_mask
;
3764 ret
= qcow2_pre_write_overlap_check(bs
, 0, cluster_offset
, out_len
);
3765 qemu_co_mutex_unlock(&s
->lock
);
3770 iov
= (struct iovec
) {
3771 .iov_base
= out_buf
,
3774 qemu_iovec_init_external(&hd_qiov
, &iov
, 1);
3776 BLKDBG_EVENT(bs
->file
, BLKDBG_WRITE_COMPRESSED
);
3777 ret
= bdrv_co_pwritev(bs
->file
, cluster_offset
, out_len
, &hd_qiov
, 0);
3789 static int make_completely_empty(BlockDriverState
*bs
)
3791 BDRVQcow2State
*s
= bs
->opaque
;
3792 Error
*local_err
= NULL
;
3793 int ret
, l1_clusters
;
3795 uint64_t *new_reftable
= NULL
;
3796 uint64_t rt_entry
, l1_size2
;
3799 uint64_t reftable_offset
;
3800 uint32_t reftable_clusters
;
3801 } QEMU_PACKED l1_ofs_rt_ofs_cls
;
3803 ret
= qcow2_cache_empty(bs
, s
->l2_table_cache
);
3808 ret
= qcow2_cache_empty(bs
, s
->refcount_block_cache
);
3813 /* Refcounts will be broken utterly */
3814 ret
= qcow2_mark_dirty(bs
);
3819 BLKDBG_EVENT(bs
->file
, BLKDBG_L1_UPDATE
);
3821 l1_clusters
= DIV_ROUND_UP(s
->l1_size
, s
->cluster_size
/ sizeof(uint64_t));
3822 l1_size2
= (uint64_t)s
->l1_size
* sizeof(uint64_t);
3824 /* After this call, neither the in-memory nor the on-disk refcount
3825 * information accurately describe the actual references */
3827 ret
= bdrv_pwrite_zeroes(bs
->file
, s
->l1_table_offset
,
3828 l1_clusters
* s
->cluster_size
, 0);
3830 goto fail_broken_refcounts
;
3832 memset(s
->l1_table
, 0, l1_size2
);
3834 BLKDBG_EVENT(bs
->file
, BLKDBG_EMPTY_IMAGE_PREPARE
);
3836 /* Overwrite enough clusters at the beginning of the sectors to place
3837 * the refcount table, a refcount block and the L1 table in; this may
3838 * overwrite parts of the existing refcount and L1 table, which is not
3839 * an issue because the dirty flag is set, complete data loss is in fact
3840 * desired and partial data loss is consequently fine as well */
3841 ret
= bdrv_pwrite_zeroes(bs
->file
, s
->cluster_size
,
3842 (2 + l1_clusters
) * s
->cluster_size
, 0);
3843 /* This call (even if it failed overall) may have overwritten on-disk
3844 * refcount structures; in that case, the in-memory refcount information
3845 * will probably differ from the on-disk information which makes the BDS
3848 goto fail_broken_refcounts
;
3851 BLKDBG_EVENT(bs
->file
, BLKDBG_L1_UPDATE
);
3852 BLKDBG_EVENT(bs
->file
, BLKDBG_REFTABLE_UPDATE
);
3854 /* "Create" an empty reftable (one cluster) directly after the image
3855 * header and an empty L1 table three clusters after the image header;
3856 * the cluster between those two will be used as the first refblock */
3857 l1_ofs_rt_ofs_cls
.l1_offset
= cpu_to_be64(3 * s
->cluster_size
);
3858 l1_ofs_rt_ofs_cls
.reftable_offset
= cpu_to_be64(s
->cluster_size
);
3859 l1_ofs_rt_ofs_cls
.reftable_clusters
= cpu_to_be32(1);
3860 ret
= bdrv_pwrite_sync(bs
->file
, offsetof(QCowHeader
, l1_table_offset
),
3861 &l1_ofs_rt_ofs_cls
, sizeof(l1_ofs_rt_ofs_cls
));
3863 goto fail_broken_refcounts
;
3866 s
->l1_table_offset
= 3 * s
->cluster_size
;
3868 new_reftable
= g_try_new0(uint64_t, s
->cluster_size
/ sizeof(uint64_t));
3869 if (!new_reftable
) {
3871 goto fail_broken_refcounts
;
3874 s
->refcount_table_offset
= s
->cluster_size
;
3875 s
->refcount_table_size
= s
->cluster_size
/ sizeof(uint64_t);
3876 s
->max_refcount_table_index
= 0;
3878 g_free(s
->refcount_table
);
3879 s
->refcount_table
= new_reftable
;
3880 new_reftable
= NULL
;
3882 /* Now the in-memory refcount information again corresponds to the on-disk
3883 * information (reftable is empty and no refblocks (the refblock cache is
3884 * empty)); however, this means some clusters (e.g. the image header) are
3885 * referenced, but not refcounted, but the normal qcow2 code assumes that
3886 * the in-memory information is always correct */
3888 BLKDBG_EVENT(bs
->file
, BLKDBG_REFBLOCK_ALLOC
);
3890 /* Enter the first refblock into the reftable */
3891 rt_entry
= cpu_to_be64(2 * s
->cluster_size
);
3892 ret
= bdrv_pwrite_sync(bs
->file
, s
->cluster_size
,
3893 &rt_entry
, sizeof(rt_entry
));
3895 goto fail_broken_refcounts
;
3897 s
->refcount_table
[0] = 2 * s
->cluster_size
;
3899 s
->free_cluster_index
= 0;
3900 assert(3 + l1_clusters
<= s
->refcount_block_size
);
3901 offset
= qcow2_alloc_clusters(bs
, 3 * s
->cluster_size
+ l1_size2
);
3904 goto fail_broken_refcounts
;
3905 } else if (offset
> 0) {
3906 error_report("First cluster in emptied image is in use");
3910 /* Now finally the in-memory information corresponds to the on-disk
3911 * structures and is correct */
3912 ret
= qcow2_mark_clean(bs
);
3917 ret
= bdrv_truncate(bs
->file
, (3 + l1_clusters
) * s
->cluster_size
,
3918 PREALLOC_MODE_OFF
, &local_err
);
3920 error_report_err(local_err
);
3926 fail_broken_refcounts
:
3927 /* The BDS is unusable at this point. If we wanted to make it usable, we
3928 * would have to call qcow2_refcount_close(), qcow2_refcount_init(),
3929 * qcow2_check_refcounts(), qcow2_refcount_close() and qcow2_refcount_init()
3930 * again. However, because the functions which could have caused this error
3931 * path to be taken are used by those functions as well, it's very likely
3932 * that that sequence will fail as well. Therefore, just eject the BDS. */
3936 g_free(new_reftable
);
3940 static int qcow2_make_empty(BlockDriverState
*bs
)
3942 BDRVQcow2State
*s
= bs
->opaque
;
3943 uint64_t offset
, end_offset
;
3944 int step
= QEMU_ALIGN_DOWN(INT_MAX
, s
->cluster_size
);
3945 int l1_clusters
, ret
= 0;
3947 l1_clusters
= DIV_ROUND_UP(s
->l1_size
, s
->cluster_size
/ sizeof(uint64_t));
3949 if (s
->qcow_version
>= 3 && !s
->snapshots
&& !s
->nb_bitmaps
&&
3950 3 + l1_clusters
<= s
->refcount_block_size
&&
3951 s
->crypt_method_header
!= QCOW_CRYPT_LUKS
) {
3952 /* The following function only works for qcow2 v3 images (it
3953 * requires the dirty flag) and only as long as there are no
3954 * features that reserve extra clusters (such as snapshots,
3955 * LUKS header, or persistent bitmaps), because it completely
3956 * empties the image. Furthermore, the L1 table and three
3957 * additional clusters (image header, refcount table, one
3958 * refcount block) have to fit inside one refcount block. */
3959 return make_completely_empty(bs
);
3962 /* This fallback code simply discards every active cluster; this is slow,
3963 * but works in all cases */
3964 end_offset
= bs
->total_sectors
* BDRV_SECTOR_SIZE
;
3965 for (offset
= 0; offset
< end_offset
; offset
+= step
) {
3966 /* As this function is generally used after committing an external
3967 * snapshot, QCOW2_DISCARD_SNAPSHOT seems appropriate. Also, the
3968 * default action for this kind of discard is to pass the discard,
3969 * which will ideally result in an actually smaller image file, as
3970 * is probably desired. */
3971 ret
= qcow2_cluster_discard(bs
, offset
, MIN(step
, end_offset
- offset
),
3972 QCOW2_DISCARD_SNAPSHOT
, true);
3981 static coroutine_fn
int qcow2_co_flush_to_os(BlockDriverState
*bs
)
3983 BDRVQcow2State
*s
= bs
->opaque
;
3986 qemu_co_mutex_lock(&s
->lock
);
3987 ret
= qcow2_write_caches(bs
);
3988 qemu_co_mutex_unlock(&s
->lock
);
3993 static BlockMeasureInfo
*qcow2_measure(QemuOpts
*opts
, BlockDriverState
*in_bs
,
3996 Error
*local_err
= NULL
;
3997 BlockMeasureInfo
*info
;
3998 uint64_t required
= 0; /* bytes that contribute to required size */
3999 uint64_t virtual_size
; /* disk size as seen by guest */
4000 uint64_t refcount_bits
;
4002 size_t cluster_size
;
4005 PreallocMode prealloc
;
4006 bool has_backing_file
;
4008 /* Parse image creation options */
4009 cluster_size
= qcow2_opt_get_cluster_size_del(opts
, &local_err
);
4014 version
= qcow2_opt_get_version_del(opts
, &local_err
);
4019 refcount_bits
= qcow2_opt_get_refcount_bits_del(opts
, version
, &local_err
);
4024 optstr
= qemu_opt_get_del(opts
, BLOCK_OPT_PREALLOC
);
4025 prealloc
= qapi_enum_parse(&PreallocMode_lookup
, optstr
,
4026 PREALLOC_MODE_OFF
, &local_err
);
4032 optstr
= qemu_opt_get_del(opts
, BLOCK_OPT_BACKING_FILE
);
4033 has_backing_file
= !!optstr
;
4036 virtual_size
= qemu_opt_get_size_del(opts
, BLOCK_OPT_SIZE
, 0);
4037 virtual_size
= ROUND_UP(virtual_size
, cluster_size
);
4039 /* Check that virtual disk size is valid */
4040 l2_tables
= DIV_ROUND_UP(virtual_size
/ cluster_size
,
4041 cluster_size
/ sizeof(uint64_t));
4042 if (l2_tables
* sizeof(uint64_t) > QCOW_MAX_L1_SIZE
) {
4043 error_setg(&local_err
, "The image size is too large "
4044 "(try using a larger cluster size)");
4048 /* Account for input image */
4050 int64_t ssize
= bdrv_getlength(in_bs
);
4052 error_setg_errno(&local_err
, -ssize
,
4053 "Unable to get image virtual_size");
4057 virtual_size
= ROUND_UP(ssize
, cluster_size
);
4059 if (has_backing_file
) {
4060 /* We don't how much of the backing chain is shared by the input
4061 * image and the new image file. In the worst case the new image's
4062 * backing file has nothing in common with the input image. Be
4063 * conservative and assume all clusters need to be written.
4065 required
= virtual_size
;
4070 for (offset
= 0; offset
< ssize
; offset
+= pnum
) {
4073 ret
= bdrv_block_status_above(in_bs
, NULL
, offset
,
4074 ssize
- offset
, &pnum
, NULL
,
4077 error_setg_errno(&local_err
, -ret
,
4078 "Unable to get block status");
4082 if (ret
& BDRV_BLOCK_ZERO
) {
4083 /* Skip zero regions (safe with no backing file) */
4084 } else if ((ret
& (BDRV_BLOCK_DATA
| BDRV_BLOCK_ALLOCATED
)) ==
4085 (BDRV_BLOCK_DATA
| BDRV_BLOCK_ALLOCATED
)) {
4086 /* Extend pnum to end of cluster for next iteration */
4087 pnum
= ROUND_UP(offset
+ pnum
, cluster_size
) - offset
;
4089 /* Count clusters we've seen */
4090 required
+= offset
% cluster_size
+ pnum
;
4096 /* Take into account preallocation. Nothing special is needed for
4097 * PREALLOC_MODE_METADATA since metadata is always counted.
4099 if (prealloc
== PREALLOC_MODE_FULL
|| prealloc
== PREALLOC_MODE_FALLOC
) {
4100 required
= virtual_size
;
4103 info
= g_new(BlockMeasureInfo
, 1);
4104 info
->fully_allocated
=
4105 qcow2_calc_prealloc_size(virtual_size
, cluster_size
,
4106 ctz32(refcount_bits
));
4108 /* Remove data clusters that are not required. This overestimates the
4109 * required size because metadata needed for the fully allocated file is
4112 info
->required
= info
->fully_allocated
- virtual_size
+ required
;
4116 error_propagate(errp
, local_err
);
4120 static int qcow2_get_info(BlockDriverState
*bs
, BlockDriverInfo
*bdi
)
4122 BDRVQcow2State
*s
= bs
->opaque
;
4123 bdi
->unallocated_blocks_are_zero
= true;
4124 bdi
->cluster_size
= s
->cluster_size
;
4125 bdi
->vm_state_offset
= qcow2_vm_state_offset(s
);
4129 static ImageInfoSpecific
*qcow2_get_specific_info(BlockDriverState
*bs
)
4131 BDRVQcow2State
*s
= bs
->opaque
;
4132 ImageInfoSpecific
*spec_info
;
4133 QCryptoBlockInfo
*encrypt_info
= NULL
;
4135 if (s
->crypto
!= NULL
) {
4136 encrypt_info
= qcrypto_block_get_info(s
->crypto
, &error_abort
);
4139 spec_info
= g_new(ImageInfoSpecific
, 1);
4140 *spec_info
= (ImageInfoSpecific
){
4141 .type
= IMAGE_INFO_SPECIFIC_KIND_QCOW2
,
4142 .u
.qcow2
.data
= g_new(ImageInfoSpecificQCow2
, 1),
4144 if (s
->qcow_version
== 2) {
4145 *spec_info
->u
.qcow2
.data
= (ImageInfoSpecificQCow2
){
4146 .compat
= g_strdup("0.10"),
4147 .refcount_bits
= s
->refcount_bits
,
4149 } else if (s
->qcow_version
== 3) {
4150 *spec_info
->u
.qcow2
.data
= (ImageInfoSpecificQCow2
){
4151 .compat
= g_strdup("1.1"),
4152 .lazy_refcounts
= s
->compatible_features
&
4153 QCOW2_COMPAT_LAZY_REFCOUNTS
,
4154 .has_lazy_refcounts
= true,
4155 .corrupt
= s
->incompatible_features
&
4156 QCOW2_INCOMPAT_CORRUPT
,
4157 .has_corrupt
= true,
4158 .refcount_bits
= s
->refcount_bits
,
4161 /* if this assertion fails, this probably means a new version was
4162 * added without having it covered here */
4167 ImageInfoSpecificQCow2Encryption
*qencrypt
=
4168 g_new(ImageInfoSpecificQCow2Encryption
, 1);
4169 switch (encrypt_info
->format
) {
4170 case Q_CRYPTO_BLOCK_FORMAT_QCOW
:
4171 qencrypt
->format
= BLOCKDEV_QCOW2_ENCRYPTION_FORMAT_AES
;
4172 qencrypt
->u
.aes
= encrypt_info
->u
.qcow
;
4174 case Q_CRYPTO_BLOCK_FORMAT_LUKS
:
4175 qencrypt
->format
= BLOCKDEV_QCOW2_ENCRYPTION_FORMAT_LUKS
;
4176 qencrypt
->u
.luks
= encrypt_info
->u
.luks
;
4181 /* Since we did shallow copy above, erase any pointers
4182 * in the original info */
4183 memset(&encrypt_info
->u
, 0, sizeof(encrypt_info
->u
));
4184 qapi_free_QCryptoBlockInfo(encrypt_info
);
4186 spec_info
->u
.qcow2
.data
->has_encrypt
= true;
4187 spec_info
->u
.qcow2
.data
->encrypt
= qencrypt
;
4193 static int qcow2_save_vmstate(BlockDriverState
*bs
, QEMUIOVector
*qiov
,
4196 BDRVQcow2State
*s
= bs
->opaque
;
4198 BLKDBG_EVENT(bs
->file
, BLKDBG_VMSTATE_SAVE
);
4199 return bs
->drv
->bdrv_co_pwritev(bs
, qcow2_vm_state_offset(s
) + pos
,
4200 qiov
->size
, qiov
, 0);
4203 static int qcow2_load_vmstate(BlockDriverState
*bs
, QEMUIOVector
*qiov
,
4206 BDRVQcow2State
*s
= bs
->opaque
;
4208 BLKDBG_EVENT(bs
->file
, BLKDBG_VMSTATE_LOAD
);
4209 return bs
->drv
->bdrv_co_preadv(bs
, qcow2_vm_state_offset(s
) + pos
,
4210 qiov
->size
, qiov
, 0);
4214 * Downgrades an image's version. To achieve this, any incompatible features
4215 * have to be removed.
4217 static int qcow2_downgrade(BlockDriverState
*bs
, int target_version
,
4218 BlockDriverAmendStatusCB
*status_cb
, void *cb_opaque
,
4221 BDRVQcow2State
*s
= bs
->opaque
;
4222 int current_version
= s
->qcow_version
;
4225 /* This is qcow2_downgrade(), not qcow2_upgrade() */
4226 assert(target_version
< current_version
);
4228 /* There are no other versions (now) that you can downgrade to */
4229 assert(target_version
== 2);
4231 if (s
->refcount_order
!= 4) {
4232 error_setg(errp
, "compat=0.10 requires refcount_bits=16");
4236 /* clear incompatible features */
4237 if (s
->incompatible_features
& QCOW2_INCOMPAT_DIRTY
) {
4238 ret
= qcow2_mark_clean(bs
);
4240 error_setg_errno(errp
, -ret
, "Failed to make the image clean");
4245 /* with QCOW2_INCOMPAT_CORRUPT, it is pretty much impossible to get here in
4246 * the first place; if that happens nonetheless, returning -ENOTSUP is the
4247 * best thing to do anyway */
4249 if (s
->incompatible_features
) {
4250 error_setg(errp
, "Cannot downgrade an image with incompatible features "
4251 "%#" PRIx64
" set", s
->incompatible_features
);
4255 /* since we can ignore compatible features, we can set them to 0 as well */
4256 s
->compatible_features
= 0;
4257 /* if lazy refcounts have been used, they have already been fixed through
4258 * clearing the dirty flag */
4260 /* clearing autoclear features is trivial */
4261 s
->autoclear_features
= 0;
4263 ret
= qcow2_expand_zero_clusters(bs
, status_cb
, cb_opaque
);
4265 error_setg_errno(errp
, -ret
, "Failed to turn zero into data clusters");
4269 s
->qcow_version
= target_version
;
4270 ret
= qcow2_update_header(bs
);
4272 s
->qcow_version
= current_version
;
4273 error_setg_errno(errp
, -ret
, "Failed to update the image header");
4279 typedef enum Qcow2AmendOperation
{
4280 /* This is the value Qcow2AmendHelperCBInfo::last_operation will be
4281 * statically initialized to so that the helper CB can discern the first
4282 * invocation from an operation change */
4283 QCOW2_NO_OPERATION
= 0,
4285 QCOW2_CHANGING_REFCOUNT_ORDER
,
4287 } Qcow2AmendOperation
;
4289 typedef struct Qcow2AmendHelperCBInfo
{
4290 /* The code coordinating the amend operations should only modify
4291 * these four fields; the rest will be managed by the CB */
4292 BlockDriverAmendStatusCB
*original_status_cb
;
4293 void *original_cb_opaque
;
4295 Qcow2AmendOperation current_operation
;
4297 /* Total number of operations to perform (only set once) */
4298 int total_operations
;
4300 /* The following fields are managed by the CB */
4302 /* Number of operations completed */
4303 int operations_completed
;
4305 /* Cumulative offset of all completed operations */
4306 int64_t offset_completed
;
4308 Qcow2AmendOperation last_operation
;
4309 int64_t last_work_size
;
4310 } Qcow2AmendHelperCBInfo
;
4312 static void qcow2_amend_helper_cb(BlockDriverState
*bs
,
4313 int64_t operation_offset
,
4314 int64_t operation_work_size
, void *opaque
)
4316 Qcow2AmendHelperCBInfo
*info
= opaque
;
4317 int64_t current_work_size
;
4318 int64_t projected_work_size
;
4320 if (info
->current_operation
!= info
->last_operation
) {
4321 if (info
->last_operation
!= QCOW2_NO_OPERATION
) {
4322 info
->offset_completed
+= info
->last_work_size
;
4323 info
->operations_completed
++;
4326 info
->last_operation
= info
->current_operation
;
4329 assert(info
->total_operations
> 0);
4330 assert(info
->operations_completed
< info
->total_operations
);
4332 info
->last_work_size
= operation_work_size
;
4334 current_work_size
= info
->offset_completed
+ operation_work_size
;
4336 /* current_work_size is the total work size for (operations_completed + 1)
4337 * operations (which includes this one), so multiply it by the number of
4338 * operations not covered and divide it by the number of operations
4339 * covered to get a projection for the operations not covered */
4340 projected_work_size
= current_work_size
* (info
->total_operations
-
4341 info
->operations_completed
- 1)
4342 / (info
->operations_completed
+ 1);
4344 info
->original_status_cb(bs
, info
->offset_completed
+ operation_offset
,
4345 current_work_size
+ projected_work_size
,
4346 info
->original_cb_opaque
);
4349 static int qcow2_amend_options(BlockDriverState
*bs
, QemuOpts
*opts
,
4350 BlockDriverAmendStatusCB
*status_cb
,
4354 BDRVQcow2State
*s
= bs
->opaque
;
4355 int old_version
= s
->qcow_version
, new_version
= old_version
;
4356 uint64_t new_size
= 0;
4357 const char *backing_file
= NULL
, *backing_format
= NULL
;
4358 bool lazy_refcounts
= s
->use_lazy_refcounts
;
4359 const char *compat
= NULL
;
4360 uint64_t cluster_size
= s
->cluster_size
;
4363 int refcount_bits
= s
->refcount_bits
;
4365 QemuOptDesc
*desc
= opts
->list
->desc
;
4366 Qcow2AmendHelperCBInfo helper_cb_info
;
4368 while (desc
&& desc
->name
) {
4369 if (!qemu_opt_find(opts
, desc
->name
)) {
4370 /* only change explicitly defined options */
4375 if (!strcmp(desc
->name
, BLOCK_OPT_COMPAT_LEVEL
)) {
4376 compat
= qemu_opt_get(opts
, BLOCK_OPT_COMPAT_LEVEL
);
4378 /* preserve default */
4379 } else if (!strcmp(compat
, "0.10")) {
4381 } else if (!strcmp(compat
, "1.1")) {
4384 error_setg(errp
, "Unknown compatibility level %s", compat
);
4387 } else if (!strcmp(desc
->name
, BLOCK_OPT_PREALLOC
)) {
4388 error_setg(errp
, "Cannot change preallocation mode");
4390 } else if (!strcmp(desc
->name
, BLOCK_OPT_SIZE
)) {
4391 new_size
= qemu_opt_get_size(opts
, BLOCK_OPT_SIZE
, 0);
4392 } else if (!strcmp(desc
->name
, BLOCK_OPT_BACKING_FILE
)) {
4393 backing_file
= qemu_opt_get(opts
, BLOCK_OPT_BACKING_FILE
);
4394 } else if (!strcmp(desc
->name
, BLOCK_OPT_BACKING_FMT
)) {
4395 backing_format
= qemu_opt_get(opts
, BLOCK_OPT_BACKING_FMT
);
4396 } else if (!strcmp(desc
->name
, BLOCK_OPT_ENCRYPT
)) {
4397 encrypt
= qemu_opt_get_bool(opts
, BLOCK_OPT_ENCRYPT
,
4400 if (encrypt
!= !!s
->crypto
) {
4402 "Changing the encryption flag is not supported");
4405 } else if (!strcmp(desc
->name
, BLOCK_OPT_ENCRYPT_FORMAT
)) {
4406 encformat
= qcow2_crypt_method_from_format(
4407 qemu_opt_get(opts
, BLOCK_OPT_ENCRYPT_FORMAT
));
4409 if (encformat
!= s
->crypt_method_header
) {
4411 "Changing the encryption format is not supported");
4414 } else if (g_str_has_prefix(desc
->name
, "encrypt.")) {
4416 "Changing the encryption parameters is not supported");
4418 } else if (!strcmp(desc
->name
, BLOCK_OPT_CLUSTER_SIZE
)) {
4419 cluster_size
= qemu_opt_get_size(opts
, BLOCK_OPT_CLUSTER_SIZE
,
4421 if (cluster_size
!= s
->cluster_size
) {
4422 error_setg(errp
, "Changing the cluster size is not supported");
4425 } else if (!strcmp(desc
->name
, BLOCK_OPT_LAZY_REFCOUNTS
)) {
4426 lazy_refcounts
= qemu_opt_get_bool(opts
, BLOCK_OPT_LAZY_REFCOUNTS
,
4428 } else if (!strcmp(desc
->name
, BLOCK_OPT_REFCOUNT_BITS
)) {
4429 refcount_bits
= qemu_opt_get_number(opts
, BLOCK_OPT_REFCOUNT_BITS
,
4432 if (refcount_bits
<= 0 || refcount_bits
> 64 ||
4433 !is_power_of_2(refcount_bits
))
4435 error_setg(errp
, "Refcount width must be a power of two and "
4436 "may not exceed 64 bits");
4440 /* if this point is reached, this probably means a new option was
4441 * added without having it covered here */
4448 helper_cb_info
= (Qcow2AmendHelperCBInfo
){
4449 .original_status_cb
= status_cb
,
4450 .original_cb_opaque
= cb_opaque
,
4451 .total_operations
= (new_version
< old_version
)
4452 + (s
->refcount_bits
!= refcount_bits
)
4455 /* Upgrade first (some features may require compat=1.1) */
4456 if (new_version
> old_version
) {
4457 s
->qcow_version
= new_version
;
4458 ret
= qcow2_update_header(bs
);
4460 s
->qcow_version
= old_version
;
4461 error_setg_errno(errp
, -ret
, "Failed to update the image header");
4466 if (s
->refcount_bits
!= refcount_bits
) {
4467 int refcount_order
= ctz32(refcount_bits
);
4469 if (new_version
< 3 && refcount_bits
!= 16) {
4470 error_setg(errp
, "Refcount widths other than 16 bits require "
4471 "compatibility level 1.1 or above (use compat=1.1 or "
4476 helper_cb_info
.current_operation
= QCOW2_CHANGING_REFCOUNT_ORDER
;
4477 ret
= qcow2_change_refcount_order(bs
, refcount_order
,
4478 &qcow2_amend_helper_cb
,
4479 &helper_cb_info
, errp
);
4485 if (backing_file
|| backing_format
) {
4486 ret
= qcow2_change_backing_file(bs
,
4487 backing_file
?: s
->image_backing_file
,
4488 backing_format
?: s
->image_backing_format
);
4490 error_setg_errno(errp
, -ret
, "Failed to change the backing file");
4495 if (s
->use_lazy_refcounts
!= lazy_refcounts
) {
4496 if (lazy_refcounts
) {
4497 if (new_version
< 3) {
4498 error_setg(errp
, "Lazy refcounts only supported with "
4499 "compatibility level 1.1 and above (use compat=1.1 "
4503 s
->compatible_features
|= QCOW2_COMPAT_LAZY_REFCOUNTS
;
4504 ret
= qcow2_update_header(bs
);
4506 s
->compatible_features
&= ~QCOW2_COMPAT_LAZY_REFCOUNTS
;
4507 error_setg_errno(errp
, -ret
, "Failed to update the image header");
4510 s
->use_lazy_refcounts
= true;
4512 /* make image clean first */
4513 ret
= qcow2_mark_clean(bs
);
4515 error_setg_errno(errp
, -ret
, "Failed to make the image clean");
4518 /* now disallow lazy refcounts */
4519 s
->compatible_features
&= ~QCOW2_COMPAT_LAZY_REFCOUNTS
;
4520 ret
= qcow2_update_header(bs
);
4522 s
->compatible_features
|= QCOW2_COMPAT_LAZY_REFCOUNTS
;
4523 error_setg_errno(errp
, -ret
, "Failed to update the image header");
4526 s
->use_lazy_refcounts
= false;
4531 BlockBackend
*blk
= blk_new(BLK_PERM_RESIZE
, BLK_PERM_ALL
);
4532 ret
= blk_insert_bs(blk
, bs
, errp
);
4538 ret
= blk_truncate(blk
, new_size
, PREALLOC_MODE_OFF
, errp
);
4545 /* Downgrade last (so unsupported features can be removed before) */
4546 if (new_version
< old_version
) {
4547 helper_cb_info
.current_operation
= QCOW2_DOWNGRADING
;
4548 ret
= qcow2_downgrade(bs
, new_version
, &qcow2_amend_helper_cb
,
4549 &helper_cb_info
, errp
);
4559 * If offset or size are negative, respectively, they will not be included in
4560 * the BLOCK_IMAGE_CORRUPTED event emitted.
4561 * fatal will be ignored for read-only BDS; corruptions found there will always
4562 * be considered non-fatal.
4564 void qcow2_signal_corruption(BlockDriverState
*bs
, bool fatal
, int64_t offset
,
4565 int64_t size
, const char *message_format
, ...)
4567 BDRVQcow2State
*s
= bs
->opaque
;
4568 const char *node_name
;
4572 fatal
= fatal
&& bdrv_is_writable(bs
);
4574 if (s
->signaled_corruption
&&
4575 (!fatal
|| (s
->incompatible_features
& QCOW2_INCOMPAT_CORRUPT
)))
4580 va_start(ap
, message_format
);
4581 message
= g_strdup_vprintf(message_format
, ap
);
4585 fprintf(stderr
, "qcow2: Marking image as corrupt: %s; further "
4586 "corruption events will be suppressed\n", message
);
4588 fprintf(stderr
, "qcow2: Image is corrupt: %s; further non-fatal "
4589 "corruption events will be suppressed\n", message
);
4592 node_name
= bdrv_get_node_name(bs
);
4593 qapi_event_send_block_image_corrupted(bdrv_get_device_name(bs
),
4594 *node_name
!= '\0', node_name
,
4595 message
, offset
>= 0, offset
,
4597 fatal
, &error_abort
);
4601 qcow2_mark_corrupt(bs
);
4602 bs
->drv
= NULL
; /* make BDS unusable */
4605 s
->signaled_corruption
= true;
4608 static QemuOptsList qcow2_create_opts
= {
4609 .name
= "qcow2-create-opts",
4610 .head
= QTAILQ_HEAD_INITIALIZER(qcow2_create_opts
.head
),
4613 .name
= BLOCK_OPT_SIZE
,
4614 .type
= QEMU_OPT_SIZE
,
4615 .help
= "Virtual disk size"
4618 .name
= BLOCK_OPT_COMPAT_LEVEL
,
4619 .type
= QEMU_OPT_STRING
,
4620 .help
= "Compatibility level (0.10 or 1.1)"
4623 .name
= BLOCK_OPT_BACKING_FILE
,
4624 .type
= QEMU_OPT_STRING
,
4625 .help
= "File name of a base image"
4628 .name
= BLOCK_OPT_BACKING_FMT
,
4629 .type
= QEMU_OPT_STRING
,
4630 .help
= "Image format of the base image"
4633 .name
= BLOCK_OPT_ENCRYPT
,
4634 .type
= QEMU_OPT_BOOL
,
4635 .help
= "Encrypt the image with format 'aes'. (Deprecated "
4636 "in favor of " BLOCK_OPT_ENCRYPT_FORMAT
"=aes)",
4639 .name
= BLOCK_OPT_ENCRYPT_FORMAT
,
4640 .type
= QEMU_OPT_STRING
,
4641 .help
= "Encrypt the image, format choices: 'aes', 'luks'",
4643 BLOCK_CRYPTO_OPT_DEF_KEY_SECRET("encrypt.",
4644 "ID of secret providing qcow AES key or LUKS passphrase"),
4645 BLOCK_CRYPTO_OPT_DEF_LUKS_CIPHER_ALG("encrypt."),
4646 BLOCK_CRYPTO_OPT_DEF_LUKS_CIPHER_MODE("encrypt."),
4647 BLOCK_CRYPTO_OPT_DEF_LUKS_IVGEN_ALG("encrypt."),
4648 BLOCK_CRYPTO_OPT_DEF_LUKS_IVGEN_HASH_ALG("encrypt."),
4649 BLOCK_CRYPTO_OPT_DEF_LUKS_HASH_ALG("encrypt."),
4650 BLOCK_CRYPTO_OPT_DEF_LUKS_ITER_TIME("encrypt."),
4652 .name
= BLOCK_OPT_CLUSTER_SIZE
,
4653 .type
= QEMU_OPT_SIZE
,
4654 .help
= "qcow2 cluster size",
4655 .def_value_str
= stringify(DEFAULT_CLUSTER_SIZE
)
4658 .name
= BLOCK_OPT_PREALLOC
,
4659 .type
= QEMU_OPT_STRING
,
4660 .help
= "Preallocation mode (allowed values: off, metadata, "
4664 .name
= BLOCK_OPT_LAZY_REFCOUNTS
,
4665 .type
= QEMU_OPT_BOOL
,
4666 .help
= "Postpone refcount updates",
4667 .def_value_str
= "off"
4670 .name
= BLOCK_OPT_REFCOUNT_BITS
,
4671 .type
= QEMU_OPT_NUMBER
,
4672 .help
= "Width of a reference count entry in bits",
4673 .def_value_str
= "16"
4675 { /* end of list */ }
4679 BlockDriver bdrv_qcow2
= {
4680 .format_name
= "qcow2",
4681 .instance_size
= sizeof(BDRVQcow2State
),
4682 .bdrv_probe
= qcow2_probe
,
4683 .bdrv_open
= qcow2_open
,
4684 .bdrv_close
= qcow2_close
,
4685 .bdrv_reopen_prepare
= qcow2_reopen_prepare
,
4686 .bdrv_reopen_commit
= qcow2_reopen_commit
,
4687 .bdrv_reopen_abort
= qcow2_reopen_abort
,
4688 .bdrv_join_options
= qcow2_join_options
,
4689 .bdrv_child_perm
= bdrv_format_default_perms
,
4690 .bdrv_co_create_opts
= qcow2_co_create_opts
,
4691 .bdrv_co_create
= qcow2_co_create
,
4692 .bdrv_has_zero_init
= bdrv_has_zero_init_1
,
4693 .bdrv_co_block_status
= qcow2_co_block_status
,
4695 .bdrv_co_preadv
= qcow2_co_preadv
,
4696 .bdrv_co_pwritev
= qcow2_co_pwritev
,
4697 .bdrv_co_flush_to_os
= qcow2_co_flush_to_os
,
4699 .bdrv_co_pwrite_zeroes
= qcow2_co_pwrite_zeroes
,
4700 .bdrv_co_pdiscard
= qcow2_co_pdiscard
,
4701 .bdrv_co_copy_range_from
= qcow2_co_copy_range_from
,
4702 .bdrv_co_copy_range_to
= qcow2_co_copy_range_to
,
4703 .bdrv_truncate
= qcow2_truncate
,
4704 .bdrv_co_pwritev_compressed
= qcow2_co_pwritev_compressed
,
4705 .bdrv_make_empty
= qcow2_make_empty
,
4707 .bdrv_snapshot_create
= qcow2_snapshot_create
,
4708 .bdrv_snapshot_goto
= qcow2_snapshot_goto
,
4709 .bdrv_snapshot_delete
= qcow2_snapshot_delete
,
4710 .bdrv_snapshot_list
= qcow2_snapshot_list
,
4711 .bdrv_snapshot_load_tmp
= qcow2_snapshot_load_tmp
,
4712 .bdrv_measure
= qcow2_measure
,
4713 .bdrv_get_info
= qcow2_get_info
,
4714 .bdrv_get_specific_info
= qcow2_get_specific_info
,
4716 .bdrv_save_vmstate
= qcow2_save_vmstate
,
4717 .bdrv_load_vmstate
= qcow2_load_vmstate
,
4719 .supports_backing
= true,
4720 .bdrv_change_backing_file
= qcow2_change_backing_file
,
4722 .bdrv_refresh_limits
= qcow2_refresh_limits
,
4723 .bdrv_co_invalidate_cache
= qcow2_co_invalidate_cache
,
4724 .bdrv_inactivate
= qcow2_inactivate
,
4726 .create_opts
= &qcow2_create_opts
,
4727 .bdrv_co_check
= qcow2_co_check
,
4728 .bdrv_amend_options
= qcow2_amend_options
,
4730 .bdrv_detach_aio_context
= qcow2_detach_aio_context
,
4731 .bdrv_attach_aio_context
= qcow2_attach_aio_context
,
4733 .bdrv_reopen_bitmaps_rw
= qcow2_reopen_bitmaps_rw
,
4734 .bdrv_can_store_new_dirty_bitmap
= qcow2_can_store_new_dirty_bitmap
,
4735 .bdrv_remove_persistent_dirty_bitmap
= qcow2_remove_persistent_dirty_bitmap
,
4738 static void bdrv_qcow2_init(void)
4740 bdrv_register(&bdrv_qcow2
);
4743 block_init(bdrv_qcow2_init
);