qcow2: Add prealloc field to QCowL2Meta
[qemu.git] / block / qcow2.c
blob7c03d411705f841c145a91c35d46d4af3f5807ed
1 /*
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
22 * THE SOFTWARE.
25 #include "qemu/osdep.h"
27 #include "block/qdict.h"
28 #include "sysemu/block-backend.h"
29 #include "qemu/main-loop.h"
30 #include "qemu/module.h"
31 #include "qcow2.h"
32 #include "qemu/error-report.h"
33 #include "qapi/error.h"
34 #include "qapi/qapi-events-block-core.h"
35 #include "qapi/qmp/qdict.h"
36 #include "qapi/qmp/qstring.h"
37 #include "trace.h"
38 #include "qemu/option_int.h"
39 #include "qemu/cutils.h"
40 #include "qemu/bswap.h"
41 #include "qapi/qobject-input-visitor.h"
42 #include "qapi/qapi-visit-block-core.h"
43 #include "crypto.h"
44 #include "block/aio_task.h"
47 Differences with QCOW:
49 - Support for multiple incremental snapshots.
50 - Memory management by reference counts.
51 - Clusters which have a reference count of one have the bit
52 QCOW_OFLAG_COPIED to optimize write performance.
53 - Size of compressed clusters is stored in sectors to reduce bit usage
54 in the cluster offsets.
55 - Support for storing additional data (such as the VM state) in the
56 snapshots.
57 - If a backing store is used, the cluster size is not constrained
58 (could be backported to QCOW).
59 - L2 tables have always a size of one cluster.
63 typedef struct {
64 uint32_t magic;
65 uint32_t len;
66 } QEMU_PACKED QCowExtension;
68 #define QCOW2_EXT_MAGIC_END 0
69 #define QCOW2_EXT_MAGIC_BACKING_FORMAT 0xe2792aca
70 #define QCOW2_EXT_MAGIC_FEATURE_TABLE 0x6803f857
71 #define QCOW2_EXT_MAGIC_CRYPTO_HEADER 0x0537be77
72 #define QCOW2_EXT_MAGIC_BITMAPS 0x23852875
73 #define QCOW2_EXT_MAGIC_DATA_FILE 0x44415441
75 static int coroutine_fn
76 qcow2_co_preadv_compressed(BlockDriverState *bs,
77 uint64_t cluster_descriptor,
78 uint64_t offset,
79 uint64_t bytes,
80 QEMUIOVector *qiov,
81 size_t qiov_offset);
83 static int qcow2_probe(const uint8_t *buf, int buf_size, const char *filename)
85 const QCowHeader *cow_header = (const void *)buf;
87 if (buf_size >= sizeof(QCowHeader) &&
88 be32_to_cpu(cow_header->magic) == QCOW_MAGIC &&
89 be32_to_cpu(cow_header->version) >= 2)
90 return 100;
91 else
92 return 0;
96 static ssize_t qcow2_crypto_hdr_read_func(QCryptoBlock *block, size_t offset,
97 uint8_t *buf, size_t buflen,
98 void *opaque, Error **errp)
100 BlockDriverState *bs = opaque;
101 BDRVQcow2State *s = bs->opaque;
102 ssize_t ret;
104 if ((offset + buflen) > s->crypto_header.length) {
105 error_setg(errp, "Request for data outside of extension header");
106 return -1;
109 ret = bdrv_pread(bs->file,
110 s->crypto_header.offset + offset, buf, buflen);
111 if (ret < 0) {
112 error_setg_errno(errp, -ret, "Could not read encryption header");
113 return -1;
115 return ret;
119 static ssize_t qcow2_crypto_hdr_init_func(QCryptoBlock *block, size_t headerlen,
120 void *opaque, Error **errp)
122 BlockDriverState *bs = opaque;
123 BDRVQcow2State *s = bs->opaque;
124 int64_t ret;
125 int64_t clusterlen;
127 ret = qcow2_alloc_clusters(bs, headerlen);
128 if (ret < 0) {
129 error_setg_errno(errp, -ret,
130 "Cannot allocate cluster for LUKS header size %zu",
131 headerlen);
132 return -1;
135 s->crypto_header.length = headerlen;
136 s->crypto_header.offset = ret;
139 * Zero fill all space in cluster so it has predictable
140 * content, as we may not initialize some regions of the
141 * header (eg only 1 out of 8 key slots will be initialized)
143 clusterlen = size_to_clusters(s, headerlen) * s->cluster_size;
144 assert(qcow2_pre_write_overlap_check(bs, 0, ret, clusterlen, false) == 0);
145 ret = bdrv_pwrite_zeroes(bs->file,
146 ret,
147 clusterlen, 0);
148 if (ret < 0) {
149 error_setg_errno(errp, -ret, "Could not zero fill encryption header");
150 return -1;
153 return ret;
157 static ssize_t qcow2_crypto_hdr_write_func(QCryptoBlock *block, size_t offset,
158 const uint8_t *buf, size_t buflen,
159 void *opaque, Error **errp)
161 BlockDriverState *bs = opaque;
162 BDRVQcow2State *s = bs->opaque;
163 ssize_t ret;
165 if ((offset + buflen) > s->crypto_header.length) {
166 error_setg(errp, "Request for data outside of extension header");
167 return -1;
170 ret = bdrv_pwrite(bs->file,
171 s->crypto_header.offset + offset, buf, buflen);
172 if (ret < 0) {
173 error_setg_errno(errp, -ret, "Could not read encryption header");
174 return -1;
176 return ret;
179 static QDict*
180 qcow2_extract_crypto_opts(QemuOpts *opts, const char *fmt, Error **errp)
182 QDict *cryptoopts_qdict;
183 QDict *opts_qdict;
185 /* Extract "encrypt." options into a qdict */
186 opts_qdict = qemu_opts_to_qdict(opts, NULL);
187 qdict_extract_subqdict(opts_qdict, &cryptoopts_qdict, "encrypt.");
188 qobject_unref(opts_qdict);
189 qdict_put_str(cryptoopts_qdict, "format", fmt);
190 return cryptoopts_qdict;
194 * read qcow2 extension and fill bs
195 * start reading from start_offset
196 * finish reading upon magic of value 0 or when end_offset reached
197 * unknown magic is skipped (future extension this version knows nothing about)
198 * return 0 upon success, non-0 otherwise
200 static int qcow2_read_extensions(BlockDriverState *bs, uint64_t start_offset,
201 uint64_t end_offset, void **p_feature_table,
202 int flags, bool *need_update_header,
203 Error **errp)
205 BDRVQcow2State *s = bs->opaque;
206 QCowExtension ext;
207 uint64_t offset;
208 int ret;
209 Qcow2BitmapHeaderExt bitmaps_ext;
211 if (need_update_header != NULL) {
212 *need_update_header = false;
215 #ifdef DEBUG_EXT
216 printf("qcow2_read_extensions: start=%ld end=%ld\n", start_offset, end_offset);
217 #endif
218 offset = start_offset;
219 while (offset < end_offset) {
221 #ifdef DEBUG_EXT
222 /* Sanity check */
223 if (offset > s->cluster_size)
224 printf("qcow2_read_extension: suspicious offset %lu\n", offset);
226 printf("attempting to read extended header in offset %lu\n", offset);
227 #endif
229 ret = bdrv_pread(bs->file, offset, &ext, sizeof(ext));
230 if (ret < 0) {
231 error_setg_errno(errp, -ret, "qcow2_read_extension: ERROR: "
232 "pread fail from offset %" PRIu64, offset);
233 return 1;
235 ext.magic = be32_to_cpu(ext.magic);
236 ext.len = be32_to_cpu(ext.len);
237 offset += sizeof(ext);
238 #ifdef DEBUG_EXT
239 printf("ext.magic = 0x%x\n", ext.magic);
240 #endif
241 if (offset > end_offset || ext.len > end_offset - offset) {
242 error_setg(errp, "Header extension too large");
243 return -EINVAL;
246 switch (ext.magic) {
247 case QCOW2_EXT_MAGIC_END:
248 return 0;
250 case QCOW2_EXT_MAGIC_BACKING_FORMAT:
251 if (ext.len >= sizeof(bs->backing_format)) {
252 error_setg(errp, "ERROR: ext_backing_format: len=%" PRIu32
253 " too large (>=%zu)", ext.len,
254 sizeof(bs->backing_format));
255 return 2;
257 ret = bdrv_pread(bs->file, offset, bs->backing_format, ext.len);
258 if (ret < 0) {
259 error_setg_errno(errp, -ret, "ERROR: ext_backing_format: "
260 "Could not read format name");
261 return 3;
263 bs->backing_format[ext.len] = '\0';
264 s->image_backing_format = g_strdup(bs->backing_format);
265 #ifdef DEBUG_EXT
266 printf("Qcow2: Got format extension %s\n", bs->backing_format);
267 #endif
268 break;
270 case QCOW2_EXT_MAGIC_FEATURE_TABLE:
271 if (p_feature_table != NULL) {
272 void* feature_table = g_malloc0(ext.len + 2 * sizeof(Qcow2Feature));
273 ret = bdrv_pread(bs->file, offset , feature_table, ext.len);
274 if (ret < 0) {
275 error_setg_errno(errp, -ret, "ERROR: ext_feature_table: "
276 "Could not read table");
277 return ret;
280 *p_feature_table = feature_table;
282 break;
284 case QCOW2_EXT_MAGIC_CRYPTO_HEADER: {
285 unsigned int cflags = 0;
286 if (s->crypt_method_header != QCOW_CRYPT_LUKS) {
287 error_setg(errp, "CRYPTO header extension only "
288 "expected with LUKS encryption method");
289 return -EINVAL;
291 if (ext.len != sizeof(Qcow2CryptoHeaderExtension)) {
292 error_setg(errp, "CRYPTO header extension size %u, "
293 "but expected size %zu", ext.len,
294 sizeof(Qcow2CryptoHeaderExtension));
295 return -EINVAL;
298 ret = bdrv_pread(bs->file, offset, &s->crypto_header, ext.len);
299 if (ret < 0) {
300 error_setg_errno(errp, -ret,
301 "Unable to read CRYPTO header extension");
302 return ret;
304 s->crypto_header.offset = be64_to_cpu(s->crypto_header.offset);
305 s->crypto_header.length = be64_to_cpu(s->crypto_header.length);
307 if ((s->crypto_header.offset % s->cluster_size) != 0) {
308 error_setg(errp, "Encryption header offset '%" PRIu64 "' is "
309 "not a multiple of cluster size '%u'",
310 s->crypto_header.offset, s->cluster_size);
311 return -EINVAL;
314 if (flags & BDRV_O_NO_IO) {
315 cflags |= QCRYPTO_BLOCK_OPEN_NO_IO;
317 s->crypto = qcrypto_block_open(s->crypto_opts, "encrypt.",
318 qcow2_crypto_hdr_read_func,
319 bs, cflags, QCOW2_MAX_THREADS, errp);
320 if (!s->crypto) {
321 return -EINVAL;
323 } break;
325 case QCOW2_EXT_MAGIC_BITMAPS:
326 if (ext.len != sizeof(bitmaps_ext)) {
327 error_setg_errno(errp, -ret, "bitmaps_ext: "
328 "Invalid extension length");
329 return -EINVAL;
332 if (!(s->autoclear_features & QCOW2_AUTOCLEAR_BITMAPS)) {
333 if (s->qcow_version < 3) {
334 /* Let's be a bit more specific */
335 warn_report("This qcow2 v2 image contains bitmaps, but "
336 "they may have been modified by a program "
337 "without persistent bitmap support; so now "
338 "they must all be considered inconsistent");
339 } else {
340 warn_report("a program lacking bitmap support "
341 "modified this file, so all bitmaps are now "
342 "considered inconsistent");
344 error_printf("Some clusters may be leaked, "
345 "run 'qemu-img check -r' on the image "
346 "file to fix.");
347 if (need_update_header != NULL) {
348 /* Updating is needed to drop invalid bitmap extension. */
349 *need_update_header = true;
351 break;
354 ret = bdrv_pread(bs->file, offset, &bitmaps_ext, ext.len);
355 if (ret < 0) {
356 error_setg_errno(errp, -ret, "bitmaps_ext: "
357 "Could not read ext header");
358 return ret;
361 if (bitmaps_ext.reserved32 != 0) {
362 error_setg_errno(errp, -ret, "bitmaps_ext: "
363 "Reserved field is not zero");
364 return -EINVAL;
367 bitmaps_ext.nb_bitmaps = be32_to_cpu(bitmaps_ext.nb_bitmaps);
368 bitmaps_ext.bitmap_directory_size =
369 be64_to_cpu(bitmaps_ext.bitmap_directory_size);
370 bitmaps_ext.bitmap_directory_offset =
371 be64_to_cpu(bitmaps_ext.bitmap_directory_offset);
373 if (bitmaps_ext.nb_bitmaps > QCOW2_MAX_BITMAPS) {
374 error_setg(errp,
375 "bitmaps_ext: Image has %" PRIu32 " bitmaps, "
376 "exceeding the QEMU supported maximum of %d",
377 bitmaps_ext.nb_bitmaps, QCOW2_MAX_BITMAPS);
378 return -EINVAL;
381 if (bitmaps_ext.nb_bitmaps == 0) {
382 error_setg(errp, "found bitmaps extension with zero bitmaps");
383 return -EINVAL;
386 if (offset_into_cluster(s, bitmaps_ext.bitmap_directory_offset)) {
387 error_setg(errp, "bitmaps_ext: "
388 "invalid bitmap directory offset");
389 return -EINVAL;
392 if (bitmaps_ext.bitmap_directory_size >
393 QCOW2_MAX_BITMAP_DIRECTORY_SIZE) {
394 error_setg(errp, "bitmaps_ext: "
395 "bitmap directory size (%" PRIu64 ") exceeds "
396 "the maximum supported size (%d)",
397 bitmaps_ext.bitmap_directory_size,
398 QCOW2_MAX_BITMAP_DIRECTORY_SIZE);
399 return -EINVAL;
402 s->nb_bitmaps = bitmaps_ext.nb_bitmaps;
403 s->bitmap_directory_offset =
404 bitmaps_ext.bitmap_directory_offset;
405 s->bitmap_directory_size =
406 bitmaps_ext.bitmap_directory_size;
408 #ifdef DEBUG_EXT
409 printf("Qcow2: Got bitmaps extension: "
410 "offset=%" PRIu64 " nb_bitmaps=%" PRIu32 "\n",
411 s->bitmap_directory_offset, s->nb_bitmaps);
412 #endif
413 break;
415 case QCOW2_EXT_MAGIC_DATA_FILE:
417 s->image_data_file = g_malloc0(ext.len + 1);
418 ret = bdrv_pread(bs->file, offset, s->image_data_file, ext.len);
419 if (ret < 0) {
420 error_setg_errno(errp, -ret,
421 "ERROR: Could not read data file name");
422 return ret;
424 #ifdef DEBUG_EXT
425 printf("Qcow2: Got external data file %s\n", s->image_data_file);
426 #endif
427 break;
430 default:
431 /* unknown magic - save it in case we need to rewrite the header */
432 /* If you add a new feature, make sure to also update the fast
433 * path of qcow2_make_empty() to deal with it. */
435 Qcow2UnknownHeaderExtension *uext;
437 uext = g_malloc0(sizeof(*uext) + ext.len);
438 uext->magic = ext.magic;
439 uext->len = ext.len;
440 QLIST_INSERT_HEAD(&s->unknown_header_ext, uext, next);
442 ret = bdrv_pread(bs->file, offset , uext->data, uext->len);
443 if (ret < 0) {
444 error_setg_errno(errp, -ret, "ERROR: unknown extension: "
445 "Could not read data");
446 return ret;
449 break;
452 offset += ((ext.len + 7) & ~7);
455 return 0;
458 static void cleanup_unknown_header_ext(BlockDriverState *bs)
460 BDRVQcow2State *s = bs->opaque;
461 Qcow2UnknownHeaderExtension *uext, *next;
463 QLIST_FOREACH_SAFE(uext, &s->unknown_header_ext, next, next) {
464 QLIST_REMOVE(uext, next);
465 g_free(uext);
469 static void report_unsupported_feature(Error **errp, Qcow2Feature *table,
470 uint64_t mask)
472 g_autoptr(GString) features = g_string_sized_new(60);
474 while (table && table->name[0] != '\0') {
475 if (table->type == QCOW2_FEAT_TYPE_INCOMPATIBLE) {
476 if (mask & (1ULL << table->bit)) {
477 if (features->len > 0) {
478 g_string_append(features, ", ");
480 g_string_append_printf(features, "%.46s", table->name);
481 mask &= ~(1ULL << table->bit);
484 table++;
487 if (mask) {
488 if (features->len > 0) {
489 g_string_append(features, ", ");
491 g_string_append_printf(features,
492 "Unknown incompatible feature: %" PRIx64, mask);
495 error_setg(errp, "Unsupported qcow2 feature(s): %s", features->str);
499 * Sets the dirty bit and flushes afterwards if necessary.
501 * The incompatible_features bit is only set if the image file header was
502 * updated successfully. Therefore it is not required to check the return
503 * value of this function.
505 int qcow2_mark_dirty(BlockDriverState *bs)
507 BDRVQcow2State *s = bs->opaque;
508 uint64_t val;
509 int ret;
511 assert(s->qcow_version >= 3);
513 if (s->incompatible_features & QCOW2_INCOMPAT_DIRTY) {
514 return 0; /* already dirty */
517 val = cpu_to_be64(s->incompatible_features | QCOW2_INCOMPAT_DIRTY);
518 ret = bdrv_pwrite(bs->file, offsetof(QCowHeader, incompatible_features),
519 &val, sizeof(val));
520 if (ret < 0) {
521 return ret;
523 ret = bdrv_flush(bs->file->bs);
524 if (ret < 0) {
525 return ret;
528 /* Only treat image as dirty if the header was updated successfully */
529 s->incompatible_features |= QCOW2_INCOMPAT_DIRTY;
530 return 0;
534 * Clears the dirty bit and flushes before if necessary. Only call this
535 * function when there are no pending requests, it does not guard against
536 * concurrent requests dirtying the image.
538 static int qcow2_mark_clean(BlockDriverState *bs)
540 BDRVQcow2State *s = bs->opaque;
542 if (s->incompatible_features & QCOW2_INCOMPAT_DIRTY) {
543 int ret;
545 s->incompatible_features &= ~QCOW2_INCOMPAT_DIRTY;
547 ret = qcow2_flush_caches(bs);
548 if (ret < 0) {
549 return ret;
552 return qcow2_update_header(bs);
554 return 0;
558 * Marks the image as corrupt.
560 int qcow2_mark_corrupt(BlockDriverState *bs)
562 BDRVQcow2State *s = bs->opaque;
564 s->incompatible_features |= QCOW2_INCOMPAT_CORRUPT;
565 return qcow2_update_header(bs);
569 * Marks the image as consistent, i.e., unsets the corrupt bit, and flushes
570 * before if necessary.
572 int qcow2_mark_consistent(BlockDriverState *bs)
574 BDRVQcow2State *s = bs->opaque;
576 if (s->incompatible_features & QCOW2_INCOMPAT_CORRUPT) {
577 int ret = qcow2_flush_caches(bs);
578 if (ret < 0) {
579 return ret;
582 s->incompatible_features &= ~QCOW2_INCOMPAT_CORRUPT;
583 return qcow2_update_header(bs);
585 return 0;
588 static void qcow2_add_check_result(BdrvCheckResult *out,
589 const BdrvCheckResult *src,
590 bool set_allocation_info)
592 out->corruptions += src->corruptions;
593 out->leaks += src->leaks;
594 out->check_errors += src->check_errors;
595 out->corruptions_fixed += src->corruptions_fixed;
596 out->leaks_fixed += src->leaks_fixed;
598 if (set_allocation_info) {
599 out->image_end_offset = src->image_end_offset;
600 out->bfi = src->bfi;
604 static int coroutine_fn qcow2_co_check_locked(BlockDriverState *bs,
605 BdrvCheckResult *result,
606 BdrvCheckMode fix)
608 BdrvCheckResult snapshot_res = {};
609 BdrvCheckResult refcount_res = {};
610 int ret;
612 memset(result, 0, sizeof(*result));
614 ret = qcow2_check_read_snapshot_table(bs, &snapshot_res, fix);
615 if (ret < 0) {
616 qcow2_add_check_result(result, &snapshot_res, false);
617 return ret;
620 ret = qcow2_check_refcounts(bs, &refcount_res, fix);
621 qcow2_add_check_result(result, &refcount_res, true);
622 if (ret < 0) {
623 qcow2_add_check_result(result, &snapshot_res, false);
624 return ret;
627 ret = qcow2_check_fix_snapshot_table(bs, &snapshot_res, fix);
628 qcow2_add_check_result(result, &snapshot_res, false);
629 if (ret < 0) {
630 return ret;
633 if (fix && result->check_errors == 0 && result->corruptions == 0) {
634 ret = qcow2_mark_clean(bs);
635 if (ret < 0) {
636 return ret;
638 return qcow2_mark_consistent(bs);
640 return ret;
643 static int coroutine_fn qcow2_co_check(BlockDriverState *bs,
644 BdrvCheckResult *result,
645 BdrvCheckMode fix)
647 BDRVQcow2State *s = bs->opaque;
648 int ret;
650 qemu_co_mutex_lock(&s->lock);
651 ret = qcow2_co_check_locked(bs, result, fix);
652 qemu_co_mutex_unlock(&s->lock);
653 return ret;
656 int qcow2_validate_table(BlockDriverState *bs, uint64_t offset,
657 uint64_t entries, size_t entry_len,
658 int64_t max_size_bytes, const char *table_name,
659 Error **errp)
661 BDRVQcow2State *s = bs->opaque;
663 if (entries > max_size_bytes / entry_len) {
664 error_setg(errp, "%s too large", table_name);
665 return -EFBIG;
668 /* Use signed INT64_MAX as the maximum even for uint64_t header fields,
669 * because values will be passed to qemu functions taking int64_t. */
670 if ((INT64_MAX - entries * entry_len < offset) ||
671 (offset_into_cluster(s, offset) != 0)) {
672 error_setg(errp, "%s offset invalid", table_name);
673 return -EINVAL;
676 return 0;
679 static const char *const mutable_opts[] = {
680 QCOW2_OPT_LAZY_REFCOUNTS,
681 QCOW2_OPT_DISCARD_REQUEST,
682 QCOW2_OPT_DISCARD_SNAPSHOT,
683 QCOW2_OPT_DISCARD_OTHER,
684 QCOW2_OPT_OVERLAP,
685 QCOW2_OPT_OVERLAP_TEMPLATE,
686 QCOW2_OPT_OVERLAP_MAIN_HEADER,
687 QCOW2_OPT_OVERLAP_ACTIVE_L1,
688 QCOW2_OPT_OVERLAP_ACTIVE_L2,
689 QCOW2_OPT_OVERLAP_REFCOUNT_TABLE,
690 QCOW2_OPT_OVERLAP_REFCOUNT_BLOCK,
691 QCOW2_OPT_OVERLAP_SNAPSHOT_TABLE,
692 QCOW2_OPT_OVERLAP_INACTIVE_L1,
693 QCOW2_OPT_OVERLAP_INACTIVE_L2,
694 QCOW2_OPT_OVERLAP_BITMAP_DIRECTORY,
695 QCOW2_OPT_CACHE_SIZE,
696 QCOW2_OPT_L2_CACHE_SIZE,
697 QCOW2_OPT_L2_CACHE_ENTRY_SIZE,
698 QCOW2_OPT_REFCOUNT_CACHE_SIZE,
699 QCOW2_OPT_CACHE_CLEAN_INTERVAL,
700 NULL
703 static QemuOptsList qcow2_runtime_opts = {
704 .name = "qcow2",
705 .head = QTAILQ_HEAD_INITIALIZER(qcow2_runtime_opts.head),
706 .desc = {
708 .name = QCOW2_OPT_LAZY_REFCOUNTS,
709 .type = QEMU_OPT_BOOL,
710 .help = "Postpone refcount updates",
713 .name = QCOW2_OPT_DISCARD_REQUEST,
714 .type = QEMU_OPT_BOOL,
715 .help = "Pass guest discard requests to the layer below",
718 .name = QCOW2_OPT_DISCARD_SNAPSHOT,
719 .type = QEMU_OPT_BOOL,
720 .help = "Generate discard requests when snapshot related space "
721 "is freed",
724 .name = QCOW2_OPT_DISCARD_OTHER,
725 .type = QEMU_OPT_BOOL,
726 .help = "Generate discard requests when other clusters are freed",
729 .name = QCOW2_OPT_OVERLAP,
730 .type = QEMU_OPT_STRING,
731 .help = "Selects which overlap checks to perform from a range of "
732 "templates (none, constant, cached, all)",
735 .name = QCOW2_OPT_OVERLAP_TEMPLATE,
736 .type = QEMU_OPT_STRING,
737 .help = "Selects which overlap checks to perform from a range of "
738 "templates (none, constant, cached, all)",
741 .name = QCOW2_OPT_OVERLAP_MAIN_HEADER,
742 .type = QEMU_OPT_BOOL,
743 .help = "Check for unintended writes into the main qcow2 header",
746 .name = QCOW2_OPT_OVERLAP_ACTIVE_L1,
747 .type = QEMU_OPT_BOOL,
748 .help = "Check for unintended writes into the active L1 table",
751 .name = QCOW2_OPT_OVERLAP_ACTIVE_L2,
752 .type = QEMU_OPT_BOOL,
753 .help = "Check for unintended writes into an active L2 table",
756 .name = QCOW2_OPT_OVERLAP_REFCOUNT_TABLE,
757 .type = QEMU_OPT_BOOL,
758 .help = "Check for unintended writes into the refcount table",
761 .name = QCOW2_OPT_OVERLAP_REFCOUNT_BLOCK,
762 .type = QEMU_OPT_BOOL,
763 .help = "Check for unintended writes into a refcount block",
766 .name = QCOW2_OPT_OVERLAP_SNAPSHOT_TABLE,
767 .type = QEMU_OPT_BOOL,
768 .help = "Check for unintended writes into the snapshot table",
771 .name = QCOW2_OPT_OVERLAP_INACTIVE_L1,
772 .type = QEMU_OPT_BOOL,
773 .help = "Check for unintended writes into an inactive L1 table",
776 .name = QCOW2_OPT_OVERLAP_INACTIVE_L2,
777 .type = QEMU_OPT_BOOL,
778 .help = "Check for unintended writes into an inactive L2 table",
781 .name = QCOW2_OPT_OVERLAP_BITMAP_DIRECTORY,
782 .type = QEMU_OPT_BOOL,
783 .help = "Check for unintended writes into the bitmap directory",
786 .name = QCOW2_OPT_CACHE_SIZE,
787 .type = QEMU_OPT_SIZE,
788 .help = "Maximum combined metadata (L2 tables and refcount blocks) "
789 "cache size",
792 .name = QCOW2_OPT_L2_CACHE_SIZE,
793 .type = QEMU_OPT_SIZE,
794 .help = "Maximum L2 table cache size",
797 .name = QCOW2_OPT_L2_CACHE_ENTRY_SIZE,
798 .type = QEMU_OPT_SIZE,
799 .help = "Size of each entry in the L2 cache",
802 .name = QCOW2_OPT_REFCOUNT_CACHE_SIZE,
803 .type = QEMU_OPT_SIZE,
804 .help = "Maximum refcount block cache size",
807 .name = QCOW2_OPT_CACHE_CLEAN_INTERVAL,
808 .type = QEMU_OPT_NUMBER,
809 .help = "Clean unused cache entries after this time (in seconds)",
811 BLOCK_CRYPTO_OPT_DEF_KEY_SECRET("encrypt.",
812 "ID of secret providing qcow2 AES key or LUKS passphrase"),
813 { /* end of list */ }
817 static const char *overlap_bool_option_names[QCOW2_OL_MAX_BITNR] = {
818 [QCOW2_OL_MAIN_HEADER_BITNR] = QCOW2_OPT_OVERLAP_MAIN_HEADER,
819 [QCOW2_OL_ACTIVE_L1_BITNR] = QCOW2_OPT_OVERLAP_ACTIVE_L1,
820 [QCOW2_OL_ACTIVE_L2_BITNR] = QCOW2_OPT_OVERLAP_ACTIVE_L2,
821 [QCOW2_OL_REFCOUNT_TABLE_BITNR] = QCOW2_OPT_OVERLAP_REFCOUNT_TABLE,
822 [QCOW2_OL_REFCOUNT_BLOCK_BITNR] = QCOW2_OPT_OVERLAP_REFCOUNT_BLOCK,
823 [QCOW2_OL_SNAPSHOT_TABLE_BITNR] = QCOW2_OPT_OVERLAP_SNAPSHOT_TABLE,
824 [QCOW2_OL_INACTIVE_L1_BITNR] = QCOW2_OPT_OVERLAP_INACTIVE_L1,
825 [QCOW2_OL_INACTIVE_L2_BITNR] = QCOW2_OPT_OVERLAP_INACTIVE_L2,
826 [QCOW2_OL_BITMAP_DIRECTORY_BITNR] = QCOW2_OPT_OVERLAP_BITMAP_DIRECTORY,
829 static void cache_clean_timer_cb(void *opaque)
831 BlockDriverState *bs = opaque;
832 BDRVQcow2State *s = bs->opaque;
833 qcow2_cache_clean_unused(s->l2_table_cache);
834 qcow2_cache_clean_unused(s->refcount_block_cache);
835 timer_mod(s->cache_clean_timer, qemu_clock_get_ms(QEMU_CLOCK_VIRTUAL) +
836 (int64_t) s->cache_clean_interval * 1000);
839 static void cache_clean_timer_init(BlockDriverState *bs, AioContext *context)
841 BDRVQcow2State *s = bs->opaque;
842 if (s->cache_clean_interval > 0) {
843 s->cache_clean_timer = aio_timer_new(context, QEMU_CLOCK_VIRTUAL,
844 SCALE_MS, cache_clean_timer_cb,
845 bs);
846 timer_mod(s->cache_clean_timer, qemu_clock_get_ms(QEMU_CLOCK_VIRTUAL) +
847 (int64_t) s->cache_clean_interval * 1000);
851 static void cache_clean_timer_del(BlockDriverState *bs)
853 BDRVQcow2State *s = bs->opaque;
854 if (s->cache_clean_timer) {
855 timer_del(s->cache_clean_timer);
856 timer_free(s->cache_clean_timer);
857 s->cache_clean_timer = NULL;
861 static void qcow2_detach_aio_context(BlockDriverState *bs)
863 cache_clean_timer_del(bs);
866 static void qcow2_attach_aio_context(BlockDriverState *bs,
867 AioContext *new_context)
869 cache_clean_timer_init(bs, new_context);
872 static void read_cache_sizes(BlockDriverState *bs, QemuOpts *opts,
873 uint64_t *l2_cache_size,
874 uint64_t *l2_cache_entry_size,
875 uint64_t *refcount_cache_size, Error **errp)
877 BDRVQcow2State *s = bs->opaque;
878 uint64_t combined_cache_size, l2_cache_max_setting;
879 bool l2_cache_size_set, refcount_cache_size_set, combined_cache_size_set;
880 bool l2_cache_entry_size_set;
881 int min_refcount_cache = MIN_REFCOUNT_CACHE_SIZE * s->cluster_size;
882 uint64_t virtual_disk_size = bs->total_sectors * BDRV_SECTOR_SIZE;
883 uint64_t max_l2_entries = DIV_ROUND_UP(virtual_disk_size, s->cluster_size);
884 /* An L2 table is always one cluster in size so the max cache size
885 * should be a multiple of the cluster size. */
886 uint64_t max_l2_cache = ROUND_UP(max_l2_entries * l2_entry_size(s),
887 s->cluster_size);
889 combined_cache_size_set = qemu_opt_get(opts, QCOW2_OPT_CACHE_SIZE);
890 l2_cache_size_set = qemu_opt_get(opts, QCOW2_OPT_L2_CACHE_SIZE);
891 refcount_cache_size_set = qemu_opt_get(opts, QCOW2_OPT_REFCOUNT_CACHE_SIZE);
892 l2_cache_entry_size_set = qemu_opt_get(opts, QCOW2_OPT_L2_CACHE_ENTRY_SIZE);
894 combined_cache_size = qemu_opt_get_size(opts, QCOW2_OPT_CACHE_SIZE, 0);
895 l2_cache_max_setting = qemu_opt_get_size(opts, QCOW2_OPT_L2_CACHE_SIZE,
896 DEFAULT_L2_CACHE_MAX_SIZE);
897 *refcount_cache_size = qemu_opt_get_size(opts,
898 QCOW2_OPT_REFCOUNT_CACHE_SIZE, 0);
900 *l2_cache_entry_size = qemu_opt_get_size(
901 opts, QCOW2_OPT_L2_CACHE_ENTRY_SIZE, s->cluster_size);
903 *l2_cache_size = MIN(max_l2_cache, l2_cache_max_setting);
905 if (combined_cache_size_set) {
906 if (l2_cache_size_set && refcount_cache_size_set) {
907 error_setg(errp, QCOW2_OPT_CACHE_SIZE ", " QCOW2_OPT_L2_CACHE_SIZE
908 " and " QCOW2_OPT_REFCOUNT_CACHE_SIZE " may not be set "
909 "at the same time");
910 return;
911 } else if (l2_cache_size_set &&
912 (l2_cache_max_setting > combined_cache_size)) {
913 error_setg(errp, QCOW2_OPT_L2_CACHE_SIZE " may not exceed "
914 QCOW2_OPT_CACHE_SIZE);
915 return;
916 } else if (*refcount_cache_size > combined_cache_size) {
917 error_setg(errp, QCOW2_OPT_REFCOUNT_CACHE_SIZE " may not exceed "
918 QCOW2_OPT_CACHE_SIZE);
919 return;
922 if (l2_cache_size_set) {
923 *refcount_cache_size = combined_cache_size - *l2_cache_size;
924 } else if (refcount_cache_size_set) {
925 *l2_cache_size = combined_cache_size - *refcount_cache_size;
926 } else {
927 /* Assign as much memory as possible to the L2 cache, and
928 * use the remainder for the refcount cache */
929 if (combined_cache_size >= max_l2_cache + min_refcount_cache) {
930 *l2_cache_size = max_l2_cache;
931 *refcount_cache_size = combined_cache_size - *l2_cache_size;
932 } else {
933 *refcount_cache_size =
934 MIN(combined_cache_size, min_refcount_cache);
935 *l2_cache_size = combined_cache_size - *refcount_cache_size;
941 * If the L2 cache is not enough to cover the whole disk then
942 * default to 4KB entries. Smaller entries reduce the cost of
943 * loads and evictions and increase I/O performance.
945 if (*l2_cache_size < max_l2_cache && !l2_cache_entry_size_set) {
946 *l2_cache_entry_size = MIN(s->cluster_size, 4096);
949 /* l2_cache_size and refcount_cache_size are ensured to have at least
950 * their minimum values in qcow2_update_options_prepare() */
952 if (*l2_cache_entry_size < (1 << MIN_CLUSTER_BITS) ||
953 *l2_cache_entry_size > s->cluster_size ||
954 !is_power_of_2(*l2_cache_entry_size)) {
955 error_setg(errp, "L2 cache entry size must be a power of two "
956 "between %d and the cluster size (%d)",
957 1 << MIN_CLUSTER_BITS, s->cluster_size);
958 return;
962 typedef struct Qcow2ReopenState {
963 Qcow2Cache *l2_table_cache;
964 Qcow2Cache *refcount_block_cache;
965 int l2_slice_size; /* Number of entries in a slice of the L2 table */
966 bool use_lazy_refcounts;
967 int overlap_check;
968 bool discard_passthrough[QCOW2_DISCARD_MAX];
969 uint64_t cache_clean_interval;
970 QCryptoBlockOpenOptions *crypto_opts; /* Disk encryption runtime options */
971 } Qcow2ReopenState;
973 static int qcow2_update_options_prepare(BlockDriverState *bs,
974 Qcow2ReopenState *r,
975 QDict *options, int flags,
976 Error **errp)
978 BDRVQcow2State *s = bs->opaque;
979 QemuOpts *opts = NULL;
980 const char *opt_overlap_check, *opt_overlap_check_template;
981 int overlap_check_template = 0;
982 uint64_t l2_cache_size, l2_cache_entry_size, refcount_cache_size;
983 int i;
984 const char *encryptfmt;
985 QDict *encryptopts = NULL;
986 Error *local_err = NULL;
987 int ret;
989 qdict_extract_subqdict(options, &encryptopts, "encrypt.");
990 encryptfmt = qdict_get_try_str(encryptopts, "format");
992 opts = qemu_opts_create(&qcow2_runtime_opts, NULL, 0, &error_abort);
993 if (!qemu_opts_absorb_qdict(opts, options, errp)) {
994 ret = -EINVAL;
995 goto fail;
998 /* get L2 table/refcount block cache size from command line options */
999 read_cache_sizes(bs, opts, &l2_cache_size, &l2_cache_entry_size,
1000 &refcount_cache_size, &local_err);
1001 if (local_err) {
1002 error_propagate(errp, local_err);
1003 ret = -EINVAL;
1004 goto fail;
1007 l2_cache_size /= l2_cache_entry_size;
1008 if (l2_cache_size < MIN_L2_CACHE_SIZE) {
1009 l2_cache_size = MIN_L2_CACHE_SIZE;
1011 if (l2_cache_size > INT_MAX) {
1012 error_setg(errp, "L2 cache size too big");
1013 ret = -EINVAL;
1014 goto fail;
1017 refcount_cache_size /= s->cluster_size;
1018 if (refcount_cache_size < MIN_REFCOUNT_CACHE_SIZE) {
1019 refcount_cache_size = MIN_REFCOUNT_CACHE_SIZE;
1021 if (refcount_cache_size > INT_MAX) {
1022 error_setg(errp, "Refcount cache size too big");
1023 ret = -EINVAL;
1024 goto fail;
1027 /* alloc new L2 table/refcount block cache, flush old one */
1028 if (s->l2_table_cache) {
1029 ret = qcow2_cache_flush(bs, s->l2_table_cache);
1030 if (ret) {
1031 error_setg_errno(errp, -ret, "Failed to flush the L2 table cache");
1032 goto fail;
1036 if (s->refcount_block_cache) {
1037 ret = qcow2_cache_flush(bs, s->refcount_block_cache);
1038 if (ret) {
1039 error_setg_errno(errp, -ret,
1040 "Failed to flush the refcount block cache");
1041 goto fail;
1045 r->l2_slice_size = l2_cache_entry_size / l2_entry_size(s);
1046 r->l2_table_cache = qcow2_cache_create(bs, l2_cache_size,
1047 l2_cache_entry_size);
1048 r->refcount_block_cache = qcow2_cache_create(bs, refcount_cache_size,
1049 s->cluster_size);
1050 if (r->l2_table_cache == NULL || r->refcount_block_cache == NULL) {
1051 error_setg(errp, "Could not allocate metadata caches");
1052 ret = -ENOMEM;
1053 goto fail;
1056 /* New interval for cache cleanup timer */
1057 r->cache_clean_interval =
1058 qemu_opt_get_number(opts, QCOW2_OPT_CACHE_CLEAN_INTERVAL,
1059 DEFAULT_CACHE_CLEAN_INTERVAL);
1060 #ifndef CONFIG_LINUX
1061 if (r->cache_clean_interval != 0) {
1062 error_setg(errp, QCOW2_OPT_CACHE_CLEAN_INTERVAL
1063 " not supported on this host");
1064 ret = -EINVAL;
1065 goto fail;
1067 #endif
1068 if (r->cache_clean_interval > UINT_MAX) {
1069 error_setg(errp, "Cache clean interval too big");
1070 ret = -EINVAL;
1071 goto fail;
1074 /* lazy-refcounts; flush if going from enabled to disabled */
1075 r->use_lazy_refcounts = qemu_opt_get_bool(opts, QCOW2_OPT_LAZY_REFCOUNTS,
1076 (s->compatible_features & QCOW2_COMPAT_LAZY_REFCOUNTS));
1077 if (r->use_lazy_refcounts && s->qcow_version < 3) {
1078 error_setg(errp, "Lazy refcounts require a qcow2 image with at least "
1079 "qemu 1.1 compatibility level");
1080 ret = -EINVAL;
1081 goto fail;
1084 if (s->use_lazy_refcounts && !r->use_lazy_refcounts) {
1085 ret = qcow2_mark_clean(bs);
1086 if (ret < 0) {
1087 error_setg_errno(errp, -ret, "Failed to disable lazy refcounts");
1088 goto fail;
1092 /* Overlap check options */
1093 opt_overlap_check = qemu_opt_get(opts, QCOW2_OPT_OVERLAP);
1094 opt_overlap_check_template = qemu_opt_get(opts, QCOW2_OPT_OVERLAP_TEMPLATE);
1095 if (opt_overlap_check_template && opt_overlap_check &&
1096 strcmp(opt_overlap_check_template, opt_overlap_check))
1098 error_setg(errp, "Conflicting values for qcow2 options '"
1099 QCOW2_OPT_OVERLAP "' ('%s') and '" QCOW2_OPT_OVERLAP_TEMPLATE
1100 "' ('%s')", opt_overlap_check, opt_overlap_check_template);
1101 ret = -EINVAL;
1102 goto fail;
1104 if (!opt_overlap_check) {
1105 opt_overlap_check = opt_overlap_check_template ?: "cached";
1108 if (!strcmp(opt_overlap_check, "none")) {
1109 overlap_check_template = 0;
1110 } else if (!strcmp(opt_overlap_check, "constant")) {
1111 overlap_check_template = QCOW2_OL_CONSTANT;
1112 } else if (!strcmp(opt_overlap_check, "cached")) {
1113 overlap_check_template = QCOW2_OL_CACHED;
1114 } else if (!strcmp(opt_overlap_check, "all")) {
1115 overlap_check_template = QCOW2_OL_ALL;
1116 } else {
1117 error_setg(errp, "Unsupported value '%s' for qcow2 option "
1118 "'overlap-check'. Allowed are any of the following: "
1119 "none, constant, cached, all", opt_overlap_check);
1120 ret = -EINVAL;
1121 goto fail;
1124 r->overlap_check = 0;
1125 for (i = 0; i < QCOW2_OL_MAX_BITNR; i++) {
1126 /* overlap-check defines a template bitmask, but every flag may be
1127 * overwritten through the associated boolean option */
1128 r->overlap_check |=
1129 qemu_opt_get_bool(opts, overlap_bool_option_names[i],
1130 overlap_check_template & (1 << i)) << i;
1133 r->discard_passthrough[QCOW2_DISCARD_NEVER] = false;
1134 r->discard_passthrough[QCOW2_DISCARD_ALWAYS] = true;
1135 r->discard_passthrough[QCOW2_DISCARD_REQUEST] =
1136 qemu_opt_get_bool(opts, QCOW2_OPT_DISCARD_REQUEST,
1137 flags & BDRV_O_UNMAP);
1138 r->discard_passthrough[QCOW2_DISCARD_SNAPSHOT] =
1139 qemu_opt_get_bool(opts, QCOW2_OPT_DISCARD_SNAPSHOT, true);
1140 r->discard_passthrough[QCOW2_DISCARD_OTHER] =
1141 qemu_opt_get_bool(opts, QCOW2_OPT_DISCARD_OTHER, false);
1143 switch (s->crypt_method_header) {
1144 case QCOW_CRYPT_NONE:
1145 if (encryptfmt) {
1146 error_setg(errp, "No encryption in image header, but options "
1147 "specified format '%s'", encryptfmt);
1148 ret = -EINVAL;
1149 goto fail;
1151 break;
1153 case QCOW_CRYPT_AES:
1154 if (encryptfmt && !g_str_equal(encryptfmt, "aes")) {
1155 error_setg(errp,
1156 "Header reported 'aes' encryption format but "
1157 "options specify '%s'", encryptfmt);
1158 ret = -EINVAL;
1159 goto fail;
1161 qdict_put_str(encryptopts, "format", "qcow");
1162 r->crypto_opts = block_crypto_open_opts_init(encryptopts, errp);
1163 break;
1165 case QCOW_CRYPT_LUKS:
1166 if (encryptfmt && !g_str_equal(encryptfmt, "luks")) {
1167 error_setg(errp,
1168 "Header reported 'luks' encryption format but "
1169 "options specify '%s'", encryptfmt);
1170 ret = -EINVAL;
1171 goto fail;
1173 qdict_put_str(encryptopts, "format", "luks");
1174 r->crypto_opts = block_crypto_open_opts_init(encryptopts, errp);
1175 break;
1177 default:
1178 error_setg(errp, "Unsupported encryption method %d",
1179 s->crypt_method_header);
1180 break;
1182 if (s->crypt_method_header != QCOW_CRYPT_NONE && !r->crypto_opts) {
1183 ret = -EINVAL;
1184 goto fail;
1187 ret = 0;
1188 fail:
1189 qobject_unref(encryptopts);
1190 qemu_opts_del(opts);
1191 opts = NULL;
1192 return ret;
1195 static void qcow2_update_options_commit(BlockDriverState *bs,
1196 Qcow2ReopenState *r)
1198 BDRVQcow2State *s = bs->opaque;
1199 int i;
1201 if (s->l2_table_cache) {
1202 qcow2_cache_destroy(s->l2_table_cache);
1204 if (s->refcount_block_cache) {
1205 qcow2_cache_destroy(s->refcount_block_cache);
1207 s->l2_table_cache = r->l2_table_cache;
1208 s->refcount_block_cache = r->refcount_block_cache;
1209 s->l2_slice_size = r->l2_slice_size;
1211 s->overlap_check = r->overlap_check;
1212 s->use_lazy_refcounts = r->use_lazy_refcounts;
1214 for (i = 0; i < QCOW2_DISCARD_MAX; i++) {
1215 s->discard_passthrough[i] = r->discard_passthrough[i];
1218 if (s->cache_clean_interval != r->cache_clean_interval) {
1219 cache_clean_timer_del(bs);
1220 s->cache_clean_interval = r->cache_clean_interval;
1221 cache_clean_timer_init(bs, bdrv_get_aio_context(bs));
1224 qapi_free_QCryptoBlockOpenOptions(s->crypto_opts);
1225 s->crypto_opts = r->crypto_opts;
1228 static void qcow2_update_options_abort(BlockDriverState *bs,
1229 Qcow2ReopenState *r)
1231 if (r->l2_table_cache) {
1232 qcow2_cache_destroy(r->l2_table_cache);
1234 if (r->refcount_block_cache) {
1235 qcow2_cache_destroy(r->refcount_block_cache);
1237 qapi_free_QCryptoBlockOpenOptions(r->crypto_opts);
1240 static int qcow2_update_options(BlockDriverState *bs, QDict *options,
1241 int flags, Error **errp)
1243 Qcow2ReopenState r = {};
1244 int ret;
1246 ret = qcow2_update_options_prepare(bs, &r, options, flags, errp);
1247 if (ret >= 0) {
1248 qcow2_update_options_commit(bs, &r);
1249 } else {
1250 qcow2_update_options_abort(bs, &r);
1253 return ret;
1256 static int validate_compression_type(BDRVQcow2State *s, Error **errp)
1258 switch (s->compression_type) {
1259 case QCOW2_COMPRESSION_TYPE_ZLIB:
1260 #ifdef CONFIG_ZSTD
1261 case QCOW2_COMPRESSION_TYPE_ZSTD:
1262 #endif
1263 break;
1265 default:
1266 error_setg(errp, "qcow2: unknown compression type: %u",
1267 s->compression_type);
1268 return -ENOTSUP;
1272 * if the compression type differs from QCOW2_COMPRESSION_TYPE_ZLIB
1273 * the incompatible feature flag must be set
1275 if (s->compression_type == QCOW2_COMPRESSION_TYPE_ZLIB) {
1276 if (s->incompatible_features & QCOW2_INCOMPAT_COMPRESSION) {
1277 error_setg(errp, "qcow2: Compression type incompatible feature "
1278 "bit must not be set");
1279 return -EINVAL;
1281 } else {
1282 if (!(s->incompatible_features & QCOW2_INCOMPAT_COMPRESSION)) {
1283 error_setg(errp, "qcow2: Compression type incompatible feature "
1284 "bit must be set");
1285 return -EINVAL;
1289 return 0;
1292 /* Called with s->lock held. */
1293 static int coroutine_fn qcow2_do_open(BlockDriverState *bs, QDict *options,
1294 int flags, Error **errp)
1296 BDRVQcow2State *s = bs->opaque;
1297 unsigned int len, i;
1298 int ret = 0;
1299 QCowHeader header;
1300 Error *local_err = NULL;
1301 uint64_t ext_end;
1302 uint64_t l1_vm_state_index;
1303 bool update_header = false;
1305 ret = bdrv_pread(bs->file, 0, &header, sizeof(header));
1306 if (ret < 0) {
1307 error_setg_errno(errp, -ret, "Could not read qcow2 header");
1308 goto fail;
1310 header.magic = be32_to_cpu(header.magic);
1311 header.version = be32_to_cpu(header.version);
1312 header.backing_file_offset = be64_to_cpu(header.backing_file_offset);
1313 header.backing_file_size = be32_to_cpu(header.backing_file_size);
1314 header.size = be64_to_cpu(header.size);
1315 header.cluster_bits = be32_to_cpu(header.cluster_bits);
1316 header.crypt_method = be32_to_cpu(header.crypt_method);
1317 header.l1_table_offset = be64_to_cpu(header.l1_table_offset);
1318 header.l1_size = be32_to_cpu(header.l1_size);
1319 header.refcount_table_offset = be64_to_cpu(header.refcount_table_offset);
1320 header.refcount_table_clusters =
1321 be32_to_cpu(header.refcount_table_clusters);
1322 header.snapshots_offset = be64_to_cpu(header.snapshots_offset);
1323 header.nb_snapshots = be32_to_cpu(header.nb_snapshots);
1325 if (header.magic != QCOW_MAGIC) {
1326 error_setg(errp, "Image is not in qcow2 format");
1327 ret = -EINVAL;
1328 goto fail;
1330 if (header.version < 2 || header.version > 3) {
1331 error_setg(errp, "Unsupported qcow2 version %" PRIu32, header.version);
1332 ret = -ENOTSUP;
1333 goto fail;
1336 s->qcow_version = header.version;
1338 /* Initialise cluster size */
1339 if (header.cluster_bits < MIN_CLUSTER_BITS ||
1340 header.cluster_bits > MAX_CLUSTER_BITS) {
1341 error_setg(errp, "Unsupported cluster size: 2^%" PRIu32,
1342 header.cluster_bits);
1343 ret = -EINVAL;
1344 goto fail;
1347 s->cluster_bits = header.cluster_bits;
1348 s->cluster_size = 1 << s->cluster_bits;
1350 /* Initialise version 3 header fields */
1351 if (header.version == 2) {
1352 header.incompatible_features = 0;
1353 header.compatible_features = 0;
1354 header.autoclear_features = 0;
1355 header.refcount_order = 4;
1356 header.header_length = 72;
1357 } else {
1358 header.incompatible_features =
1359 be64_to_cpu(header.incompatible_features);
1360 header.compatible_features = be64_to_cpu(header.compatible_features);
1361 header.autoclear_features = be64_to_cpu(header.autoclear_features);
1362 header.refcount_order = be32_to_cpu(header.refcount_order);
1363 header.header_length = be32_to_cpu(header.header_length);
1365 if (header.header_length < 104) {
1366 error_setg(errp, "qcow2 header too short");
1367 ret = -EINVAL;
1368 goto fail;
1372 if (header.header_length > s->cluster_size) {
1373 error_setg(errp, "qcow2 header exceeds cluster size");
1374 ret = -EINVAL;
1375 goto fail;
1378 if (header.header_length > sizeof(header)) {
1379 s->unknown_header_fields_size = header.header_length - sizeof(header);
1380 s->unknown_header_fields = g_malloc(s->unknown_header_fields_size);
1381 ret = bdrv_pread(bs->file, sizeof(header), s->unknown_header_fields,
1382 s->unknown_header_fields_size);
1383 if (ret < 0) {
1384 error_setg_errno(errp, -ret, "Could not read unknown qcow2 header "
1385 "fields");
1386 goto fail;
1390 if (header.backing_file_offset > s->cluster_size) {
1391 error_setg(errp, "Invalid backing file offset");
1392 ret = -EINVAL;
1393 goto fail;
1396 if (header.backing_file_offset) {
1397 ext_end = header.backing_file_offset;
1398 } else {
1399 ext_end = 1 << header.cluster_bits;
1402 /* Handle feature bits */
1403 s->incompatible_features = header.incompatible_features;
1404 s->compatible_features = header.compatible_features;
1405 s->autoclear_features = header.autoclear_features;
1408 * Handle compression type
1409 * Older qcow2 images don't contain the compression type header.
1410 * Distinguish them by the header length and use
1411 * the only valid (default) compression type in that case
1413 if (header.header_length > offsetof(QCowHeader, compression_type)) {
1414 s->compression_type = header.compression_type;
1415 } else {
1416 s->compression_type = QCOW2_COMPRESSION_TYPE_ZLIB;
1419 ret = validate_compression_type(s, errp);
1420 if (ret) {
1421 goto fail;
1424 if (s->incompatible_features & ~QCOW2_INCOMPAT_MASK) {
1425 void *feature_table = NULL;
1426 qcow2_read_extensions(bs, header.header_length, ext_end,
1427 &feature_table, flags, NULL, NULL);
1428 report_unsupported_feature(errp, feature_table,
1429 s->incompatible_features &
1430 ~QCOW2_INCOMPAT_MASK);
1431 ret = -ENOTSUP;
1432 g_free(feature_table);
1433 goto fail;
1436 if (s->incompatible_features & QCOW2_INCOMPAT_CORRUPT) {
1437 /* Corrupt images may not be written to unless they are being repaired
1439 if ((flags & BDRV_O_RDWR) && !(flags & BDRV_O_CHECK)) {
1440 error_setg(errp, "qcow2: Image is corrupt; cannot be opened "
1441 "read/write");
1442 ret = -EACCES;
1443 goto fail;
1447 s->subclusters_per_cluster =
1448 has_subclusters(s) ? QCOW_EXTL2_SUBCLUSTERS_PER_CLUSTER : 1;
1449 s->subcluster_size = s->cluster_size / s->subclusters_per_cluster;
1450 s->subcluster_bits = ctz32(s->subcluster_size);
1452 /* Check support for various header values */
1453 if (header.refcount_order > 6) {
1454 error_setg(errp, "Reference count entry width too large; may not "
1455 "exceed 64 bits");
1456 ret = -EINVAL;
1457 goto fail;
1459 s->refcount_order = header.refcount_order;
1460 s->refcount_bits = 1 << s->refcount_order;
1461 s->refcount_max = UINT64_C(1) << (s->refcount_bits - 1);
1462 s->refcount_max += s->refcount_max - 1;
1464 s->crypt_method_header = header.crypt_method;
1465 if (s->crypt_method_header) {
1466 if (bdrv_uses_whitelist() &&
1467 s->crypt_method_header == QCOW_CRYPT_AES) {
1468 error_setg(errp,
1469 "Use of AES-CBC encrypted qcow2 images is no longer "
1470 "supported in system emulators");
1471 error_append_hint(errp,
1472 "You can use 'qemu-img convert' to convert your "
1473 "image to an alternative supported format, such "
1474 "as unencrypted qcow2, or raw with the LUKS "
1475 "format instead.\n");
1476 ret = -ENOSYS;
1477 goto fail;
1480 if (s->crypt_method_header == QCOW_CRYPT_AES) {
1481 s->crypt_physical_offset = false;
1482 } else {
1483 /* Assuming LUKS and any future crypt methods we
1484 * add will all use physical offsets, due to the
1485 * fact that the alternative is insecure... */
1486 s->crypt_physical_offset = true;
1489 bs->encrypted = true;
1492 s->l2_bits = s->cluster_bits - ctz32(l2_entry_size(s));
1493 s->l2_size = 1 << s->l2_bits;
1494 /* 2^(s->refcount_order - 3) is the refcount width in bytes */
1495 s->refcount_block_bits = s->cluster_bits - (s->refcount_order - 3);
1496 s->refcount_block_size = 1 << s->refcount_block_bits;
1497 bs->total_sectors = header.size / BDRV_SECTOR_SIZE;
1498 s->csize_shift = (62 - (s->cluster_bits - 8));
1499 s->csize_mask = (1 << (s->cluster_bits - 8)) - 1;
1500 s->cluster_offset_mask = (1LL << s->csize_shift) - 1;
1502 s->refcount_table_offset = header.refcount_table_offset;
1503 s->refcount_table_size =
1504 header.refcount_table_clusters << (s->cluster_bits - 3);
1506 if (header.refcount_table_clusters == 0 && !(flags & BDRV_O_CHECK)) {
1507 error_setg(errp, "Image does not contain a reference count table");
1508 ret = -EINVAL;
1509 goto fail;
1512 ret = qcow2_validate_table(bs, s->refcount_table_offset,
1513 header.refcount_table_clusters,
1514 s->cluster_size, QCOW_MAX_REFTABLE_SIZE,
1515 "Reference count table", errp);
1516 if (ret < 0) {
1517 goto fail;
1520 if (!(flags & BDRV_O_CHECK)) {
1522 * The total size in bytes of the snapshot table is checked in
1523 * qcow2_read_snapshots() because the size of each snapshot is
1524 * variable and we don't know it yet.
1525 * Here we only check the offset and number of snapshots.
1527 ret = qcow2_validate_table(bs, header.snapshots_offset,
1528 header.nb_snapshots,
1529 sizeof(QCowSnapshotHeader),
1530 sizeof(QCowSnapshotHeader) *
1531 QCOW_MAX_SNAPSHOTS,
1532 "Snapshot table", errp);
1533 if (ret < 0) {
1534 goto fail;
1538 /* read the level 1 table */
1539 ret = qcow2_validate_table(bs, header.l1_table_offset,
1540 header.l1_size, sizeof(uint64_t),
1541 QCOW_MAX_L1_SIZE, "Active L1 table", errp);
1542 if (ret < 0) {
1543 goto fail;
1545 s->l1_size = header.l1_size;
1546 s->l1_table_offset = header.l1_table_offset;
1548 l1_vm_state_index = size_to_l1(s, header.size);
1549 if (l1_vm_state_index > INT_MAX) {
1550 error_setg(errp, "Image is too big");
1551 ret = -EFBIG;
1552 goto fail;
1554 s->l1_vm_state_index = l1_vm_state_index;
1556 /* the L1 table must contain at least enough entries to put
1557 header.size bytes */
1558 if (s->l1_size < s->l1_vm_state_index) {
1559 error_setg(errp, "L1 table is too small");
1560 ret = -EINVAL;
1561 goto fail;
1564 if (s->l1_size > 0) {
1565 s->l1_table = qemu_try_blockalign(bs->file->bs,
1566 s->l1_size * sizeof(uint64_t));
1567 if (s->l1_table == NULL) {
1568 error_setg(errp, "Could not allocate L1 table");
1569 ret = -ENOMEM;
1570 goto fail;
1572 ret = bdrv_pread(bs->file, s->l1_table_offset, s->l1_table,
1573 s->l1_size * sizeof(uint64_t));
1574 if (ret < 0) {
1575 error_setg_errno(errp, -ret, "Could not read L1 table");
1576 goto fail;
1578 for(i = 0;i < s->l1_size; i++) {
1579 s->l1_table[i] = be64_to_cpu(s->l1_table[i]);
1583 /* Parse driver-specific options */
1584 ret = qcow2_update_options(bs, options, flags, errp);
1585 if (ret < 0) {
1586 goto fail;
1589 s->flags = flags;
1591 ret = qcow2_refcount_init(bs);
1592 if (ret != 0) {
1593 error_setg_errno(errp, -ret, "Could not initialize refcount handling");
1594 goto fail;
1597 QLIST_INIT(&s->cluster_allocs);
1598 QTAILQ_INIT(&s->discards);
1600 /* read qcow2 extensions */
1601 if (qcow2_read_extensions(bs, header.header_length, ext_end, NULL,
1602 flags, &update_header, errp)) {
1603 ret = -EINVAL;
1604 goto fail;
1607 /* Open external data file */
1608 s->data_file = bdrv_open_child(NULL, options, "data-file", bs,
1609 &child_of_bds, BDRV_CHILD_DATA,
1610 true, &local_err);
1611 if (local_err) {
1612 error_propagate(errp, local_err);
1613 ret = -EINVAL;
1614 goto fail;
1617 if (s->incompatible_features & QCOW2_INCOMPAT_DATA_FILE) {
1618 if (!s->data_file && s->image_data_file) {
1619 s->data_file = bdrv_open_child(s->image_data_file, options,
1620 "data-file", bs, &child_of_bds,
1621 BDRV_CHILD_DATA, false, errp);
1622 if (!s->data_file) {
1623 ret = -EINVAL;
1624 goto fail;
1627 if (!s->data_file) {
1628 error_setg(errp, "'data-file' is required for this image");
1629 ret = -EINVAL;
1630 goto fail;
1633 /* No data here */
1634 bs->file->role &= ~BDRV_CHILD_DATA;
1636 /* Must succeed because we have given up permissions if anything */
1637 bdrv_child_refresh_perms(bs, bs->file, &error_abort);
1638 } else {
1639 if (s->data_file) {
1640 error_setg(errp, "'data-file' can only be set for images with an "
1641 "external data file");
1642 ret = -EINVAL;
1643 goto fail;
1646 s->data_file = bs->file;
1648 if (data_file_is_raw(bs)) {
1649 error_setg(errp, "data-file-raw requires a data file");
1650 ret = -EINVAL;
1651 goto fail;
1655 /* qcow2_read_extension may have set up the crypto context
1656 * if the crypt method needs a header region, some methods
1657 * don't need header extensions, so must check here
1659 if (s->crypt_method_header && !s->crypto) {
1660 if (s->crypt_method_header == QCOW_CRYPT_AES) {
1661 unsigned int cflags = 0;
1662 if (flags & BDRV_O_NO_IO) {
1663 cflags |= QCRYPTO_BLOCK_OPEN_NO_IO;
1665 s->crypto = qcrypto_block_open(s->crypto_opts, "encrypt.",
1666 NULL, NULL, cflags,
1667 QCOW2_MAX_THREADS, errp);
1668 if (!s->crypto) {
1669 ret = -EINVAL;
1670 goto fail;
1672 } else if (!(flags & BDRV_O_NO_IO)) {
1673 error_setg(errp, "Missing CRYPTO header for crypt method %d",
1674 s->crypt_method_header);
1675 ret = -EINVAL;
1676 goto fail;
1680 /* read the backing file name */
1681 if (header.backing_file_offset != 0) {
1682 len = header.backing_file_size;
1683 if (len > MIN(1023, s->cluster_size - header.backing_file_offset) ||
1684 len >= sizeof(bs->backing_file)) {
1685 error_setg(errp, "Backing file name too long");
1686 ret = -EINVAL;
1687 goto fail;
1689 ret = bdrv_pread(bs->file, header.backing_file_offset,
1690 bs->auto_backing_file, len);
1691 if (ret < 0) {
1692 error_setg_errno(errp, -ret, "Could not read backing file name");
1693 goto fail;
1695 bs->auto_backing_file[len] = '\0';
1696 pstrcpy(bs->backing_file, sizeof(bs->backing_file),
1697 bs->auto_backing_file);
1698 s->image_backing_file = g_strdup(bs->auto_backing_file);
1702 * Internal snapshots; skip reading them in check mode, because
1703 * we do not need them then, and we do not want to abort because
1704 * of a broken table.
1706 if (!(flags & BDRV_O_CHECK)) {
1707 s->snapshots_offset = header.snapshots_offset;
1708 s->nb_snapshots = header.nb_snapshots;
1710 ret = qcow2_read_snapshots(bs, errp);
1711 if (ret < 0) {
1712 goto fail;
1716 /* Clear unknown autoclear feature bits */
1717 update_header |= s->autoclear_features & ~QCOW2_AUTOCLEAR_MASK;
1718 update_header =
1719 update_header && !bs->read_only && !(flags & BDRV_O_INACTIVE);
1720 if (update_header) {
1721 s->autoclear_features &= QCOW2_AUTOCLEAR_MASK;
1724 /* == Handle persistent dirty bitmaps ==
1726 * We want load dirty bitmaps in three cases:
1728 * 1. Normal open of the disk in active mode, not related to invalidation
1729 * after migration.
1731 * 2. Invalidation of the target vm after pre-copy phase of migration, if
1732 * bitmaps are _not_ migrating through migration channel, i.e.
1733 * 'dirty-bitmaps' capability is disabled.
1735 * 3. Invalidation of source vm after failed or canceled migration.
1736 * This is a very interesting case. There are two possible types of
1737 * bitmaps:
1739 * A. Stored on inactivation and removed. They should be loaded from the
1740 * image.
1742 * B. Not stored: not-persistent bitmaps and bitmaps, migrated through
1743 * the migration channel (with dirty-bitmaps capability).
1745 * On the other hand, there are two possible sub-cases:
1747 * 3.1 disk was changed by somebody else while were inactive. In this
1748 * case all in-RAM dirty bitmaps (both persistent and not) are
1749 * definitely invalid. And we don't have any method to determine
1750 * this.
1752 * Simple and safe thing is to just drop all the bitmaps of type B on
1753 * inactivation. But in this case we lose bitmaps in valid 4.2 case.
1755 * On the other hand, resuming source vm, if disk was already changed
1756 * is a bad thing anyway: not only bitmaps, the whole vm state is
1757 * out of sync with disk.
1759 * This means, that user or management tool, who for some reason
1760 * decided to resume source vm, after disk was already changed by
1761 * target vm, should at least drop all dirty bitmaps by hand.
1763 * So, we can ignore this case for now, but TODO: "generation"
1764 * extension for qcow2, to determine, that image was changed after
1765 * last inactivation. And if it is changed, we will drop (or at least
1766 * mark as 'invalid' all the bitmaps of type B, both persistent
1767 * and not).
1769 * 3.2 disk was _not_ changed while were inactive. Bitmaps may be saved
1770 * to disk ('dirty-bitmaps' capability disabled), or not saved
1771 * ('dirty-bitmaps' capability enabled), but we don't need to care
1772 * of: let's load bitmaps as always: stored bitmaps will be loaded,
1773 * and not stored has flag IN_USE=1 in the image and will be skipped
1774 * on loading.
1776 * One remaining possible case when we don't want load bitmaps:
1778 * 4. Open disk in inactive mode in target vm (bitmaps are migrating or
1779 * will be loaded on invalidation, no needs try loading them before)
1782 if (!(bdrv_get_flags(bs) & BDRV_O_INACTIVE)) {
1783 /* It's case 1, 2 or 3.2. Or 3.1 which is BUG in management layer. */
1784 bool header_updated = qcow2_load_dirty_bitmaps(bs, &local_err);
1785 if (local_err != NULL) {
1786 error_propagate(errp, local_err);
1787 ret = -EINVAL;
1788 goto fail;
1791 update_header = update_header && !header_updated;
1794 if (update_header) {
1795 ret = qcow2_update_header(bs);
1796 if (ret < 0) {
1797 error_setg_errno(errp, -ret, "Could not update qcow2 header");
1798 goto fail;
1802 bs->supported_zero_flags = header.version >= 3 ?
1803 BDRV_REQ_MAY_UNMAP | BDRV_REQ_NO_FALLBACK : 0;
1804 bs->supported_truncate_flags = BDRV_REQ_ZERO_WRITE;
1806 /* Repair image if dirty */
1807 if (!(flags & (BDRV_O_CHECK | BDRV_O_INACTIVE)) && !bs->read_only &&
1808 (s->incompatible_features & QCOW2_INCOMPAT_DIRTY)) {
1809 BdrvCheckResult result = {0};
1811 ret = qcow2_co_check_locked(bs, &result,
1812 BDRV_FIX_ERRORS | BDRV_FIX_LEAKS);
1813 if (ret < 0 || result.check_errors) {
1814 if (ret >= 0) {
1815 ret = -EIO;
1817 error_setg_errno(errp, -ret, "Could not repair dirty image");
1818 goto fail;
1822 #ifdef DEBUG_ALLOC
1824 BdrvCheckResult result = {0};
1825 qcow2_check_refcounts(bs, &result, 0);
1827 #endif
1829 qemu_co_queue_init(&s->thread_task_queue);
1831 return ret;
1833 fail:
1834 g_free(s->image_data_file);
1835 if (has_data_file(bs)) {
1836 bdrv_unref_child(bs, s->data_file);
1837 s->data_file = NULL;
1839 g_free(s->unknown_header_fields);
1840 cleanup_unknown_header_ext(bs);
1841 qcow2_free_snapshots(bs);
1842 qcow2_refcount_close(bs);
1843 qemu_vfree(s->l1_table);
1844 /* else pre-write overlap checks in cache_destroy may crash */
1845 s->l1_table = NULL;
1846 cache_clean_timer_del(bs);
1847 if (s->l2_table_cache) {
1848 qcow2_cache_destroy(s->l2_table_cache);
1850 if (s->refcount_block_cache) {
1851 qcow2_cache_destroy(s->refcount_block_cache);
1853 qcrypto_block_free(s->crypto);
1854 qapi_free_QCryptoBlockOpenOptions(s->crypto_opts);
1855 return ret;
1858 typedef struct QCow2OpenCo {
1859 BlockDriverState *bs;
1860 QDict *options;
1861 int flags;
1862 Error **errp;
1863 int ret;
1864 } QCow2OpenCo;
1866 static void coroutine_fn qcow2_open_entry(void *opaque)
1868 QCow2OpenCo *qoc = opaque;
1869 BDRVQcow2State *s = qoc->bs->opaque;
1871 qemu_co_mutex_lock(&s->lock);
1872 qoc->ret = qcow2_do_open(qoc->bs, qoc->options, qoc->flags, qoc->errp);
1873 qemu_co_mutex_unlock(&s->lock);
1876 static int qcow2_open(BlockDriverState *bs, QDict *options, int flags,
1877 Error **errp)
1879 BDRVQcow2State *s = bs->opaque;
1880 QCow2OpenCo qoc = {
1881 .bs = bs,
1882 .options = options,
1883 .flags = flags,
1884 .errp = errp,
1885 .ret = -EINPROGRESS
1888 bs->file = bdrv_open_child(NULL, options, "file", bs, &child_of_bds,
1889 BDRV_CHILD_IMAGE, false, errp);
1890 if (!bs->file) {
1891 return -EINVAL;
1894 /* Initialise locks */
1895 qemu_co_mutex_init(&s->lock);
1897 if (qemu_in_coroutine()) {
1898 /* From bdrv_co_create. */
1899 qcow2_open_entry(&qoc);
1900 } else {
1901 assert(qemu_get_current_aio_context() == qemu_get_aio_context());
1902 qemu_coroutine_enter(qemu_coroutine_create(qcow2_open_entry, &qoc));
1903 BDRV_POLL_WHILE(bs, qoc.ret == -EINPROGRESS);
1905 return qoc.ret;
1908 static void qcow2_refresh_limits(BlockDriverState *bs, Error **errp)
1910 BDRVQcow2State *s = bs->opaque;
1912 if (bs->encrypted) {
1913 /* Encryption works on a sector granularity */
1914 bs->bl.request_alignment = qcrypto_block_get_sector_size(s->crypto);
1916 bs->bl.pwrite_zeroes_alignment = s->subcluster_size;
1917 bs->bl.pdiscard_alignment = s->cluster_size;
1920 static int qcow2_reopen_prepare(BDRVReopenState *state,
1921 BlockReopenQueue *queue, Error **errp)
1923 Qcow2ReopenState *r;
1924 int ret;
1926 r = g_new0(Qcow2ReopenState, 1);
1927 state->opaque = r;
1929 ret = qcow2_update_options_prepare(state->bs, r, state->options,
1930 state->flags, errp);
1931 if (ret < 0) {
1932 goto fail;
1935 /* We need to write out any unwritten data if we reopen read-only. */
1936 if ((state->flags & BDRV_O_RDWR) == 0) {
1937 ret = qcow2_reopen_bitmaps_ro(state->bs, errp);
1938 if (ret < 0) {
1939 goto fail;
1942 ret = bdrv_flush(state->bs);
1943 if (ret < 0) {
1944 goto fail;
1947 ret = qcow2_mark_clean(state->bs);
1948 if (ret < 0) {
1949 goto fail;
1953 return 0;
1955 fail:
1956 qcow2_update_options_abort(state->bs, r);
1957 g_free(r);
1958 return ret;
1961 static void qcow2_reopen_commit(BDRVReopenState *state)
1963 qcow2_update_options_commit(state->bs, state->opaque);
1964 g_free(state->opaque);
1967 static void qcow2_reopen_commit_post(BDRVReopenState *state)
1969 if (state->flags & BDRV_O_RDWR) {
1970 Error *local_err = NULL;
1972 if (qcow2_reopen_bitmaps_rw(state->bs, &local_err) < 0) {
1974 * This is not fatal, bitmaps just left read-only, so all following
1975 * writes will fail. User can remove read-only bitmaps to unblock
1976 * writes or retry reopen.
1978 error_reportf_err(local_err,
1979 "%s: Failed to make dirty bitmaps writable: ",
1980 bdrv_get_node_name(state->bs));
1985 static void qcow2_reopen_abort(BDRVReopenState *state)
1987 qcow2_update_options_abort(state->bs, state->opaque);
1988 g_free(state->opaque);
1991 static void qcow2_join_options(QDict *options, QDict *old_options)
1993 bool has_new_overlap_template =
1994 qdict_haskey(options, QCOW2_OPT_OVERLAP) ||
1995 qdict_haskey(options, QCOW2_OPT_OVERLAP_TEMPLATE);
1996 bool has_new_total_cache_size =
1997 qdict_haskey(options, QCOW2_OPT_CACHE_SIZE);
1998 bool has_all_cache_options;
2000 /* New overlap template overrides all old overlap options */
2001 if (has_new_overlap_template) {
2002 qdict_del(old_options, QCOW2_OPT_OVERLAP);
2003 qdict_del(old_options, QCOW2_OPT_OVERLAP_TEMPLATE);
2004 qdict_del(old_options, QCOW2_OPT_OVERLAP_MAIN_HEADER);
2005 qdict_del(old_options, QCOW2_OPT_OVERLAP_ACTIVE_L1);
2006 qdict_del(old_options, QCOW2_OPT_OVERLAP_ACTIVE_L2);
2007 qdict_del(old_options, QCOW2_OPT_OVERLAP_REFCOUNT_TABLE);
2008 qdict_del(old_options, QCOW2_OPT_OVERLAP_REFCOUNT_BLOCK);
2009 qdict_del(old_options, QCOW2_OPT_OVERLAP_SNAPSHOT_TABLE);
2010 qdict_del(old_options, QCOW2_OPT_OVERLAP_INACTIVE_L1);
2011 qdict_del(old_options, QCOW2_OPT_OVERLAP_INACTIVE_L2);
2014 /* New total cache size overrides all old options */
2015 if (qdict_haskey(options, QCOW2_OPT_CACHE_SIZE)) {
2016 qdict_del(old_options, QCOW2_OPT_L2_CACHE_SIZE);
2017 qdict_del(old_options, QCOW2_OPT_REFCOUNT_CACHE_SIZE);
2020 qdict_join(options, old_options, false);
2023 * If after merging all cache size options are set, an old total size is
2024 * overwritten. Do keep all options, however, if all three are new. The
2025 * resulting error message is what we want to happen.
2027 has_all_cache_options =
2028 qdict_haskey(options, QCOW2_OPT_CACHE_SIZE) ||
2029 qdict_haskey(options, QCOW2_OPT_L2_CACHE_SIZE) ||
2030 qdict_haskey(options, QCOW2_OPT_REFCOUNT_CACHE_SIZE);
2032 if (has_all_cache_options && !has_new_total_cache_size) {
2033 qdict_del(options, QCOW2_OPT_CACHE_SIZE);
2037 static int coroutine_fn qcow2_co_block_status(BlockDriverState *bs,
2038 bool want_zero,
2039 int64_t offset, int64_t count,
2040 int64_t *pnum, int64_t *map,
2041 BlockDriverState **file)
2043 BDRVQcow2State *s = bs->opaque;
2044 uint64_t host_offset;
2045 unsigned int bytes;
2046 QCow2SubclusterType type;
2047 int ret, status = 0;
2049 qemu_co_mutex_lock(&s->lock);
2051 if (!s->metadata_preallocation_checked) {
2052 ret = qcow2_detect_metadata_preallocation(bs);
2053 s->metadata_preallocation = (ret == 1);
2054 s->metadata_preallocation_checked = true;
2057 bytes = MIN(INT_MAX, count);
2058 ret = qcow2_get_host_offset(bs, offset, &bytes, &host_offset, &type);
2059 qemu_co_mutex_unlock(&s->lock);
2060 if (ret < 0) {
2061 return ret;
2064 *pnum = bytes;
2066 if ((type == QCOW2_SUBCLUSTER_NORMAL ||
2067 type == QCOW2_SUBCLUSTER_ZERO_ALLOC ||
2068 type == QCOW2_SUBCLUSTER_UNALLOCATED_ALLOC) && !s->crypto) {
2069 *map = host_offset;
2070 *file = s->data_file->bs;
2071 status |= BDRV_BLOCK_OFFSET_VALID;
2073 if (type == QCOW2_SUBCLUSTER_ZERO_PLAIN ||
2074 type == QCOW2_SUBCLUSTER_ZERO_ALLOC) {
2075 status |= BDRV_BLOCK_ZERO;
2076 } else if (type != QCOW2_SUBCLUSTER_UNALLOCATED_PLAIN &&
2077 type != QCOW2_SUBCLUSTER_UNALLOCATED_ALLOC) {
2078 status |= BDRV_BLOCK_DATA;
2080 if (s->metadata_preallocation && (status & BDRV_BLOCK_DATA) &&
2081 (status & BDRV_BLOCK_OFFSET_VALID))
2083 status |= BDRV_BLOCK_RECURSE;
2085 return status;
2088 static coroutine_fn int qcow2_handle_l2meta(BlockDriverState *bs,
2089 QCowL2Meta **pl2meta,
2090 bool link_l2)
2092 int ret = 0;
2093 QCowL2Meta *l2meta = *pl2meta;
2095 while (l2meta != NULL) {
2096 QCowL2Meta *next;
2098 if (link_l2) {
2099 assert(!l2meta->prealloc);
2100 ret = qcow2_alloc_cluster_link_l2(bs, l2meta);
2101 if (ret) {
2102 goto out;
2104 } else {
2105 qcow2_alloc_cluster_abort(bs, l2meta);
2108 /* Take the request off the list of running requests */
2109 if (l2meta->nb_clusters != 0) {
2110 QLIST_REMOVE(l2meta, next_in_flight);
2113 qemu_co_queue_restart_all(&l2meta->dependent_requests);
2115 next = l2meta->next;
2116 g_free(l2meta);
2117 l2meta = next;
2119 out:
2120 *pl2meta = l2meta;
2121 return ret;
2124 static coroutine_fn int
2125 qcow2_co_preadv_encrypted(BlockDriverState *bs,
2126 uint64_t host_offset,
2127 uint64_t offset,
2128 uint64_t bytes,
2129 QEMUIOVector *qiov,
2130 uint64_t qiov_offset)
2132 int ret;
2133 BDRVQcow2State *s = bs->opaque;
2134 uint8_t *buf;
2136 assert(bs->encrypted && s->crypto);
2137 assert(bytes <= QCOW_MAX_CRYPT_CLUSTERS * s->cluster_size);
2140 * For encrypted images, read everything into a temporary
2141 * contiguous buffer on which the AES functions can work.
2142 * Also, decryption in a separate buffer is better as it
2143 * prevents the guest from learning information about the
2144 * encrypted nature of the virtual disk.
2147 buf = qemu_try_blockalign(s->data_file->bs, bytes);
2148 if (buf == NULL) {
2149 return -ENOMEM;
2152 BLKDBG_EVENT(bs->file, BLKDBG_READ_AIO);
2153 ret = bdrv_co_pread(s->data_file, host_offset, bytes, buf, 0);
2154 if (ret < 0) {
2155 goto fail;
2158 if (qcow2_co_decrypt(bs, host_offset, offset, buf, bytes) < 0)
2160 ret = -EIO;
2161 goto fail;
2163 qemu_iovec_from_buf(qiov, qiov_offset, buf, bytes);
2165 fail:
2166 qemu_vfree(buf);
2168 return ret;
2171 typedef struct Qcow2AioTask {
2172 AioTask task;
2174 BlockDriverState *bs;
2175 QCow2SubclusterType subcluster_type; /* only for read */
2176 uint64_t host_offset; /* or full descriptor in compressed clusters */
2177 uint64_t offset;
2178 uint64_t bytes;
2179 QEMUIOVector *qiov;
2180 uint64_t qiov_offset;
2181 QCowL2Meta *l2meta; /* only for write */
2182 } Qcow2AioTask;
2184 static coroutine_fn int qcow2_co_preadv_task_entry(AioTask *task);
2185 static coroutine_fn int qcow2_add_task(BlockDriverState *bs,
2186 AioTaskPool *pool,
2187 AioTaskFunc func,
2188 QCow2SubclusterType subcluster_type,
2189 uint64_t host_offset,
2190 uint64_t offset,
2191 uint64_t bytes,
2192 QEMUIOVector *qiov,
2193 size_t qiov_offset,
2194 QCowL2Meta *l2meta)
2196 Qcow2AioTask local_task;
2197 Qcow2AioTask *task = pool ? g_new(Qcow2AioTask, 1) : &local_task;
2199 *task = (Qcow2AioTask) {
2200 .task.func = func,
2201 .bs = bs,
2202 .subcluster_type = subcluster_type,
2203 .qiov = qiov,
2204 .host_offset = host_offset,
2205 .offset = offset,
2206 .bytes = bytes,
2207 .qiov_offset = qiov_offset,
2208 .l2meta = l2meta,
2211 trace_qcow2_add_task(qemu_coroutine_self(), bs, pool,
2212 func == qcow2_co_preadv_task_entry ? "read" : "write",
2213 subcluster_type, host_offset, offset, bytes,
2214 qiov, qiov_offset);
2216 if (!pool) {
2217 return func(&task->task);
2220 aio_task_pool_start_task(pool, &task->task);
2222 return 0;
2225 static coroutine_fn int qcow2_co_preadv_task(BlockDriverState *bs,
2226 QCow2SubclusterType subc_type,
2227 uint64_t host_offset,
2228 uint64_t offset, uint64_t bytes,
2229 QEMUIOVector *qiov,
2230 size_t qiov_offset)
2232 BDRVQcow2State *s = bs->opaque;
2234 switch (subc_type) {
2235 case QCOW2_SUBCLUSTER_ZERO_PLAIN:
2236 case QCOW2_SUBCLUSTER_ZERO_ALLOC:
2237 /* Both zero types are handled in qcow2_co_preadv_part */
2238 g_assert_not_reached();
2240 case QCOW2_SUBCLUSTER_UNALLOCATED_PLAIN:
2241 case QCOW2_SUBCLUSTER_UNALLOCATED_ALLOC:
2242 assert(bs->backing); /* otherwise handled in qcow2_co_preadv_part */
2244 BLKDBG_EVENT(bs->file, BLKDBG_READ_BACKING_AIO);
2245 return bdrv_co_preadv_part(bs->backing, offset, bytes,
2246 qiov, qiov_offset, 0);
2248 case QCOW2_SUBCLUSTER_COMPRESSED:
2249 return qcow2_co_preadv_compressed(bs, host_offset,
2250 offset, bytes, qiov, qiov_offset);
2252 case QCOW2_SUBCLUSTER_NORMAL:
2253 if (bs->encrypted) {
2254 return qcow2_co_preadv_encrypted(bs, host_offset,
2255 offset, bytes, qiov, qiov_offset);
2258 BLKDBG_EVENT(bs->file, BLKDBG_READ_AIO);
2259 return bdrv_co_preadv_part(s->data_file, host_offset,
2260 bytes, qiov, qiov_offset, 0);
2262 default:
2263 g_assert_not_reached();
2266 g_assert_not_reached();
2269 static coroutine_fn int qcow2_co_preadv_task_entry(AioTask *task)
2271 Qcow2AioTask *t = container_of(task, Qcow2AioTask, task);
2273 assert(!t->l2meta);
2275 return qcow2_co_preadv_task(t->bs, t->subcluster_type,
2276 t->host_offset, t->offset, t->bytes,
2277 t->qiov, t->qiov_offset);
2280 static coroutine_fn int qcow2_co_preadv_part(BlockDriverState *bs,
2281 uint64_t offset, uint64_t bytes,
2282 QEMUIOVector *qiov,
2283 size_t qiov_offset, int flags)
2285 BDRVQcow2State *s = bs->opaque;
2286 int ret = 0;
2287 unsigned int cur_bytes; /* number of bytes in current iteration */
2288 uint64_t host_offset = 0;
2289 QCow2SubclusterType type;
2290 AioTaskPool *aio = NULL;
2292 while (bytes != 0 && aio_task_pool_status(aio) == 0) {
2293 /* prepare next request */
2294 cur_bytes = MIN(bytes, INT_MAX);
2295 if (s->crypto) {
2296 cur_bytes = MIN(cur_bytes,
2297 QCOW_MAX_CRYPT_CLUSTERS * s->cluster_size);
2300 qemu_co_mutex_lock(&s->lock);
2301 ret = qcow2_get_host_offset(bs, offset, &cur_bytes,
2302 &host_offset, &type);
2303 qemu_co_mutex_unlock(&s->lock);
2304 if (ret < 0) {
2305 goto out;
2308 if (type == QCOW2_SUBCLUSTER_ZERO_PLAIN ||
2309 type == QCOW2_SUBCLUSTER_ZERO_ALLOC ||
2310 (type == QCOW2_SUBCLUSTER_UNALLOCATED_PLAIN && !bs->backing) ||
2311 (type == QCOW2_SUBCLUSTER_UNALLOCATED_ALLOC && !bs->backing))
2313 qemu_iovec_memset(qiov, qiov_offset, 0, cur_bytes);
2314 } else {
2315 if (!aio && cur_bytes != bytes) {
2316 aio = aio_task_pool_new(QCOW2_MAX_WORKERS);
2318 ret = qcow2_add_task(bs, aio, qcow2_co_preadv_task_entry, type,
2319 host_offset, offset, cur_bytes,
2320 qiov, qiov_offset, NULL);
2321 if (ret < 0) {
2322 goto out;
2326 bytes -= cur_bytes;
2327 offset += cur_bytes;
2328 qiov_offset += cur_bytes;
2331 out:
2332 if (aio) {
2333 aio_task_pool_wait_all(aio);
2334 if (ret == 0) {
2335 ret = aio_task_pool_status(aio);
2337 g_free(aio);
2340 return ret;
2343 /* Check if it's possible to merge a write request with the writing of
2344 * the data from the COW regions */
2345 static bool merge_cow(uint64_t offset, unsigned bytes,
2346 QEMUIOVector *qiov, size_t qiov_offset,
2347 QCowL2Meta *l2meta)
2349 QCowL2Meta *m;
2351 for (m = l2meta; m != NULL; m = m->next) {
2352 /* If both COW regions are empty then there's nothing to merge */
2353 if (m->cow_start.nb_bytes == 0 && m->cow_end.nb_bytes == 0) {
2354 continue;
2357 /* If COW regions are handled already, skip this too */
2358 if (m->skip_cow) {
2359 continue;
2362 /* The data (middle) region must be immediately after the
2363 * start region */
2364 if (l2meta_cow_start(m) + m->cow_start.nb_bytes != offset) {
2365 continue;
2368 /* The end region must be immediately after the data (middle)
2369 * region */
2370 if (m->offset + m->cow_end.offset != offset + bytes) {
2371 continue;
2374 /* Make sure that adding both COW regions to the QEMUIOVector
2375 * does not exceed IOV_MAX */
2376 if (qemu_iovec_subvec_niov(qiov, qiov_offset, bytes) > IOV_MAX - 2) {
2377 continue;
2380 m->data_qiov = qiov;
2381 m->data_qiov_offset = qiov_offset;
2382 return true;
2385 return false;
2388 static bool is_unallocated(BlockDriverState *bs, int64_t offset, int64_t bytes)
2390 int64_t nr;
2391 return !bytes ||
2392 (!bdrv_is_allocated_above(bs, NULL, false, offset, bytes, &nr) &&
2393 nr == bytes);
2396 static bool is_zero_cow(BlockDriverState *bs, QCowL2Meta *m)
2399 * This check is designed for optimization shortcut so it must be
2400 * efficient.
2401 * Instead of is_zero(), use is_unallocated() as it is faster (but not
2402 * as accurate and can result in false negatives).
2404 return is_unallocated(bs, m->offset + m->cow_start.offset,
2405 m->cow_start.nb_bytes) &&
2406 is_unallocated(bs, m->offset + m->cow_end.offset,
2407 m->cow_end.nb_bytes);
2410 static int handle_alloc_space(BlockDriverState *bs, QCowL2Meta *l2meta)
2412 BDRVQcow2State *s = bs->opaque;
2413 QCowL2Meta *m;
2415 if (!(s->data_file->bs->supported_zero_flags & BDRV_REQ_NO_FALLBACK)) {
2416 return 0;
2419 if (bs->encrypted) {
2420 return 0;
2423 for (m = l2meta; m != NULL; m = m->next) {
2424 int ret;
2425 uint64_t start_offset = m->alloc_offset + m->cow_start.offset;
2426 unsigned nb_bytes = m->cow_end.offset + m->cow_end.nb_bytes -
2427 m->cow_start.offset;
2429 if (!m->cow_start.nb_bytes && !m->cow_end.nb_bytes) {
2430 continue;
2433 if (!is_zero_cow(bs, m)) {
2434 continue;
2438 * instead of writing zero COW buffers,
2439 * efficiently zero out the whole clusters
2442 ret = qcow2_pre_write_overlap_check(bs, 0, start_offset, nb_bytes,
2443 true);
2444 if (ret < 0) {
2445 return ret;
2448 BLKDBG_EVENT(bs->file, BLKDBG_CLUSTER_ALLOC_SPACE);
2449 ret = bdrv_co_pwrite_zeroes(s->data_file, start_offset, nb_bytes,
2450 BDRV_REQ_NO_FALLBACK);
2451 if (ret < 0) {
2452 if (ret != -ENOTSUP && ret != -EAGAIN) {
2453 return ret;
2455 continue;
2458 trace_qcow2_skip_cow(qemu_coroutine_self(), m->offset, m->nb_clusters);
2459 m->skip_cow = true;
2461 return 0;
2465 * qcow2_co_pwritev_task
2466 * Called with s->lock unlocked
2467 * l2meta - if not NULL, qcow2_co_pwritev_task() will consume it. Caller must
2468 * not use it somehow after qcow2_co_pwritev_task() call
2470 static coroutine_fn int qcow2_co_pwritev_task(BlockDriverState *bs,
2471 uint64_t host_offset,
2472 uint64_t offset, uint64_t bytes,
2473 QEMUIOVector *qiov,
2474 uint64_t qiov_offset,
2475 QCowL2Meta *l2meta)
2477 int ret;
2478 BDRVQcow2State *s = bs->opaque;
2479 void *crypt_buf = NULL;
2480 QEMUIOVector encrypted_qiov;
2482 if (bs->encrypted) {
2483 assert(s->crypto);
2484 assert(bytes <= QCOW_MAX_CRYPT_CLUSTERS * s->cluster_size);
2485 crypt_buf = qemu_try_blockalign(bs->file->bs, bytes);
2486 if (crypt_buf == NULL) {
2487 ret = -ENOMEM;
2488 goto out_unlocked;
2490 qemu_iovec_to_buf(qiov, qiov_offset, crypt_buf, bytes);
2492 if (qcow2_co_encrypt(bs, host_offset, offset, crypt_buf, bytes) < 0) {
2493 ret = -EIO;
2494 goto out_unlocked;
2497 qemu_iovec_init_buf(&encrypted_qiov, crypt_buf, bytes);
2498 qiov = &encrypted_qiov;
2499 qiov_offset = 0;
2502 /* Try to efficiently initialize the physical space with zeroes */
2503 ret = handle_alloc_space(bs, l2meta);
2504 if (ret < 0) {
2505 goto out_unlocked;
2509 * If we need to do COW, check if it's possible to merge the
2510 * writing of the guest data together with that of the COW regions.
2511 * If it's not possible (or not necessary) then write the
2512 * guest data now.
2514 if (!merge_cow(offset, bytes, qiov, qiov_offset, l2meta)) {
2515 BLKDBG_EVENT(bs->file, BLKDBG_WRITE_AIO);
2516 trace_qcow2_writev_data(qemu_coroutine_self(), host_offset);
2517 ret = bdrv_co_pwritev_part(s->data_file, host_offset,
2518 bytes, qiov, qiov_offset, 0);
2519 if (ret < 0) {
2520 goto out_unlocked;
2524 qemu_co_mutex_lock(&s->lock);
2526 ret = qcow2_handle_l2meta(bs, &l2meta, true);
2527 goto out_locked;
2529 out_unlocked:
2530 qemu_co_mutex_lock(&s->lock);
2532 out_locked:
2533 qcow2_handle_l2meta(bs, &l2meta, false);
2534 qemu_co_mutex_unlock(&s->lock);
2536 qemu_vfree(crypt_buf);
2538 return ret;
2541 static coroutine_fn int qcow2_co_pwritev_task_entry(AioTask *task)
2543 Qcow2AioTask *t = container_of(task, Qcow2AioTask, task);
2545 assert(!t->subcluster_type);
2547 return qcow2_co_pwritev_task(t->bs, t->host_offset,
2548 t->offset, t->bytes, t->qiov, t->qiov_offset,
2549 t->l2meta);
2552 static coroutine_fn int qcow2_co_pwritev_part(
2553 BlockDriverState *bs, uint64_t offset, uint64_t bytes,
2554 QEMUIOVector *qiov, size_t qiov_offset, int flags)
2556 BDRVQcow2State *s = bs->opaque;
2557 int offset_in_cluster;
2558 int ret;
2559 unsigned int cur_bytes; /* number of sectors in current iteration */
2560 uint64_t cluster_offset;
2561 QCowL2Meta *l2meta = NULL;
2562 AioTaskPool *aio = NULL;
2564 trace_qcow2_writev_start_req(qemu_coroutine_self(), offset, bytes);
2566 while (bytes != 0 && aio_task_pool_status(aio) == 0) {
2568 l2meta = NULL;
2570 trace_qcow2_writev_start_part(qemu_coroutine_self());
2571 offset_in_cluster = offset_into_cluster(s, offset);
2572 cur_bytes = MIN(bytes, INT_MAX);
2573 if (bs->encrypted) {
2574 cur_bytes = MIN(cur_bytes,
2575 QCOW_MAX_CRYPT_CLUSTERS * s->cluster_size
2576 - offset_in_cluster);
2579 qemu_co_mutex_lock(&s->lock);
2581 ret = qcow2_alloc_cluster_offset(bs, offset, &cur_bytes,
2582 &cluster_offset, &l2meta);
2583 if (ret < 0) {
2584 goto out_locked;
2587 assert(offset_into_cluster(s, cluster_offset) == 0);
2589 ret = qcow2_pre_write_overlap_check(bs, 0,
2590 cluster_offset + offset_in_cluster,
2591 cur_bytes, true);
2592 if (ret < 0) {
2593 goto out_locked;
2596 qemu_co_mutex_unlock(&s->lock);
2598 if (!aio && cur_bytes != bytes) {
2599 aio = aio_task_pool_new(QCOW2_MAX_WORKERS);
2601 ret = qcow2_add_task(bs, aio, qcow2_co_pwritev_task_entry, 0,
2602 cluster_offset + offset_in_cluster, offset,
2603 cur_bytes, qiov, qiov_offset, l2meta);
2604 l2meta = NULL; /* l2meta is consumed by qcow2_co_pwritev_task() */
2605 if (ret < 0) {
2606 goto fail_nometa;
2609 bytes -= cur_bytes;
2610 offset += cur_bytes;
2611 qiov_offset += cur_bytes;
2612 trace_qcow2_writev_done_part(qemu_coroutine_self(), cur_bytes);
2614 ret = 0;
2616 qemu_co_mutex_lock(&s->lock);
2618 out_locked:
2619 qcow2_handle_l2meta(bs, &l2meta, false);
2621 qemu_co_mutex_unlock(&s->lock);
2623 fail_nometa:
2624 if (aio) {
2625 aio_task_pool_wait_all(aio);
2626 if (ret == 0) {
2627 ret = aio_task_pool_status(aio);
2629 g_free(aio);
2632 trace_qcow2_writev_done_req(qemu_coroutine_self(), ret);
2634 return ret;
2637 static int qcow2_inactivate(BlockDriverState *bs)
2639 BDRVQcow2State *s = bs->opaque;
2640 int ret, result = 0;
2641 Error *local_err = NULL;
2643 qcow2_store_persistent_dirty_bitmaps(bs, true, &local_err);
2644 if (local_err != NULL) {
2645 result = -EINVAL;
2646 error_reportf_err(local_err, "Lost persistent bitmaps during "
2647 "inactivation of node '%s': ",
2648 bdrv_get_device_or_node_name(bs));
2651 ret = qcow2_cache_flush(bs, s->l2_table_cache);
2652 if (ret) {
2653 result = ret;
2654 error_report("Failed to flush the L2 table cache: %s",
2655 strerror(-ret));
2658 ret = qcow2_cache_flush(bs, s->refcount_block_cache);
2659 if (ret) {
2660 result = ret;
2661 error_report("Failed to flush the refcount block cache: %s",
2662 strerror(-ret));
2665 if (result == 0) {
2666 qcow2_mark_clean(bs);
2669 return result;
2672 static void qcow2_close(BlockDriverState *bs)
2674 BDRVQcow2State *s = bs->opaque;
2675 qemu_vfree(s->l1_table);
2676 /* else pre-write overlap checks in cache_destroy may crash */
2677 s->l1_table = NULL;
2679 if (!(s->flags & BDRV_O_INACTIVE)) {
2680 qcow2_inactivate(bs);
2683 cache_clean_timer_del(bs);
2684 qcow2_cache_destroy(s->l2_table_cache);
2685 qcow2_cache_destroy(s->refcount_block_cache);
2687 qcrypto_block_free(s->crypto);
2688 s->crypto = NULL;
2689 qapi_free_QCryptoBlockOpenOptions(s->crypto_opts);
2691 g_free(s->unknown_header_fields);
2692 cleanup_unknown_header_ext(bs);
2694 g_free(s->image_data_file);
2695 g_free(s->image_backing_file);
2696 g_free(s->image_backing_format);
2698 if (has_data_file(bs)) {
2699 bdrv_unref_child(bs, s->data_file);
2700 s->data_file = NULL;
2703 qcow2_refcount_close(bs);
2704 qcow2_free_snapshots(bs);
2707 static void coroutine_fn qcow2_co_invalidate_cache(BlockDriverState *bs,
2708 Error **errp)
2710 BDRVQcow2State *s = bs->opaque;
2711 int flags = s->flags;
2712 QCryptoBlock *crypto = NULL;
2713 QDict *options;
2714 Error *local_err = NULL;
2715 int ret;
2718 * Backing files are read-only which makes all of their metadata immutable,
2719 * that means we don't have to worry about reopening them here.
2722 crypto = s->crypto;
2723 s->crypto = NULL;
2725 qcow2_close(bs);
2727 memset(s, 0, sizeof(BDRVQcow2State));
2728 options = qdict_clone_shallow(bs->options);
2730 flags &= ~BDRV_O_INACTIVE;
2731 qemu_co_mutex_lock(&s->lock);
2732 ret = qcow2_do_open(bs, options, flags, &local_err);
2733 qemu_co_mutex_unlock(&s->lock);
2734 qobject_unref(options);
2735 if (local_err) {
2736 error_propagate_prepend(errp, local_err,
2737 "Could not reopen qcow2 layer: ");
2738 bs->drv = NULL;
2739 return;
2740 } else if (ret < 0) {
2741 error_setg_errno(errp, -ret, "Could not reopen qcow2 layer");
2742 bs->drv = NULL;
2743 return;
2746 s->crypto = crypto;
2749 static size_t header_ext_add(char *buf, uint32_t magic, const void *s,
2750 size_t len, size_t buflen)
2752 QCowExtension *ext_backing_fmt = (QCowExtension*) buf;
2753 size_t ext_len = sizeof(QCowExtension) + ((len + 7) & ~7);
2755 if (buflen < ext_len) {
2756 return -ENOSPC;
2759 *ext_backing_fmt = (QCowExtension) {
2760 .magic = cpu_to_be32(magic),
2761 .len = cpu_to_be32(len),
2764 if (len) {
2765 memcpy(buf + sizeof(QCowExtension), s, len);
2768 return ext_len;
2772 * Updates the qcow2 header, including the variable length parts of it, i.e.
2773 * the backing file name and all extensions. qcow2 was not designed to allow
2774 * such changes, so if we run out of space (we can only use the first cluster)
2775 * this function may fail.
2777 * Returns 0 on success, -errno in error cases.
2779 int qcow2_update_header(BlockDriverState *bs)
2781 BDRVQcow2State *s = bs->opaque;
2782 QCowHeader *header;
2783 char *buf;
2784 size_t buflen = s->cluster_size;
2785 int ret;
2786 uint64_t total_size;
2787 uint32_t refcount_table_clusters;
2788 size_t header_length;
2789 Qcow2UnknownHeaderExtension *uext;
2791 buf = qemu_blockalign(bs, buflen);
2793 /* Header structure */
2794 header = (QCowHeader*) buf;
2796 if (buflen < sizeof(*header)) {
2797 ret = -ENOSPC;
2798 goto fail;
2801 header_length = sizeof(*header) + s->unknown_header_fields_size;
2802 total_size = bs->total_sectors * BDRV_SECTOR_SIZE;
2803 refcount_table_clusters = s->refcount_table_size >> (s->cluster_bits - 3);
2805 ret = validate_compression_type(s, NULL);
2806 if (ret) {
2807 goto fail;
2810 *header = (QCowHeader) {
2811 /* Version 2 fields */
2812 .magic = cpu_to_be32(QCOW_MAGIC),
2813 .version = cpu_to_be32(s->qcow_version),
2814 .backing_file_offset = 0,
2815 .backing_file_size = 0,
2816 .cluster_bits = cpu_to_be32(s->cluster_bits),
2817 .size = cpu_to_be64(total_size),
2818 .crypt_method = cpu_to_be32(s->crypt_method_header),
2819 .l1_size = cpu_to_be32(s->l1_size),
2820 .l1_table_offset = cpu_to_be64(s->l1_table_offset),
2821 .refcount_table_offset = cpu_to_be64(s->refcount_table_offset),
2822 .refcount_table_clusters = cpu_to_be32(refcount_table_clusters),
2823 .nb_snapshots = cpu_to_be32(s->nb_snapshots),
2824 .snapshots_offset = cpu_to_be64(s->snapshots_offset),
2826 /* Version 3 fields */
2827 .incompatible_features = cpu_to_be64(s->incompatible_features),
2828 .compatible_features = cpu_to_be64(s->compatible_features),
2829 .autoclear_features = cpu_to_be64(s->autoclear_features),
2830 .refcount_order = cpu_to_be32(s->refcount_order),
2831 .header_length = cpu_to_be32(header_length),
2832 .compression_type = s->compression_type,
2835 /* For older versions, write a shorter header */
2836 switch (s->qcow_version) {
2837 case 2:
2838 ret = offsetof(QCowHeader, incompatible_features);
2839 break;
2840 case 3:
2841 ret = sizeof(*header);
2842 break;
2843 default:
2844 ret = -EINVAL;
2845 goto fail;
2848 buf += ret;
2849 buflen -= ret;
2850 memset(buf, 0, buflen);
2852 /* Preserve any unknown field in the header */
2853 if (s->unknown_header_fields_size) {
2854 if (buflen < s->unknown_header_fields_size) {
2855 ret = -ENOSPC;
2856 goto fail;
2859 memcpy(buf, s->unknown_header_fields, s->unknown_header_fields_size);
2860 buf += s->unknown_header_fields_size;
2861 buflen -= s->unknown_header_fields_size;
2864 /* Backing file format header extension */
2865 if (s->image_backing_format) {
2866 ret = header_ext_add(buf, QCOW2_EXT_MAGIC_BACKING_FORMAT,
2867 s->image_backing_format,
2868 strlen(s->image_backing_format),
2869 buflen);
2870 if (ret < 0) {
2871 goto fail;
2874 buf += ret;
2875 buflen -= ret;
2878 /* External data file header extension */
2879 if (has_data_file(bs) && s->image_data_file) {
2880 ret = header_ext_add(buf, QCOW2_EXT_MAGIC_DATA_FILE,
2881 s->image_data_file, strlen(s->image_data_file),
2882 buflen);
2883 if (ret < 0) {
2884 goto fail;
2887 buf += ret;
2888 buflen -= ret;
2891 /* Full disk encryption header pointer extension */
2892 if (s->crypto_header.offset != 0) {
2893 s->crypto_header.offset = cpu_to_be64(s->crypto_header.offset);
2894 s->crypto_header.length = cpu_to_be64(s->crypto_header.length);
2895 ret = header_ext_add(buf, QCOW2_EXT_MAGIC_CRYPTO_HEADER,
2896 &s->crypto_header, sizeof(s->crypto_header),
2897 buflen);
2898 s->crypto_header.offset = be64_to_cpu(s->crypto_header.offset);
2899 s->crypto_header.length = be64_to_cpu(s->crypto_header.length);
2900 if (ret < 0) {
2901 goto fail;
2903 buf += ret;
2904 buflen -= ret;
2908 * Feature table. A mere 8 feature names occupies 392 bytes, and
2909 * when coupled with the v3 minimum header of 104 bytes plus the
2910 * 8-byte end-of-extension marker, that would leave only 8 bytes
2911 * for a backing file name in an image with 512-byte clusters.
2912 * Thus, we choose to omit this header for cluster sizes 4k and
2913 * smaller.
2915 if (s->qcow_version >= 3 && s->cluster_size > 4096) {
2916 static const Qcow2Feature features[] = {
2918 .type = QCOW2_FEAT_TYPE_INCOMPATIBLE,
2919 .bit = QCOW2_INCOMPAT_DIRTY_BITNR,
2920 .name = "dirty bit",
2923 .type = QCOW2_FEAT_TYPE_INCOMPATIBLE,
2924 .bit = QCOW2_INCOMPAT_CORRUPT_BITNR,
2925 .name = "corrupt bit",
2928 .type = QCOW2_FEAT_TYPE_INCOMPATIBLE,
2929 .bit = QCOW2_INCOMPAT_DATA_FILE_BITNR,
2930 .name = "external data file",
2933 .type = QCOW2_FEAT_TYPE_INCOMPATIBLE,
2934 .bit = QCOW2_INCOMPAT_COMPRESSION_BITNR,
2935 .name = "compression type",
2938 .type = QCOW2_FEAT_TYPE_COMPATIBLE,
2939 .bit = QCOW2_COMPAT_LAZY_REFCOUNTS_BITNR,
2940 .name = "lazy refcounts",
2943 .type = QCOW2_FEAT_TYPE_AUTOCLEAR,
2944 .bit = QCOW2_AUTOCLEAR_BITMAPS_BITNR,
2945 .name = "bitmaps",
2948 .type = QCOW2_FEAT_TYPE_AUTOCLEAR,
2949 .bit = QCOW2_AUTOCLEAR_DATA_FILE_RAW_BITNR,
2950 .name = "raw external data",
2954 ret = header_ext_add(buf, QCOW2_EXT_MAGIC_FEATURE_TABLE,
2955 features, sizeof(features), buflen);
2956 if (ret < 0) {
2957 goto fail;
2959 buf += ret;
2960 buflen -= ret;
2963 /* Bitmap extension */
2964 if (s->nb_bitmaps > 0) {
2965 Qcow2BitmapHeaderExt bitmaps_header = {
2966 .nb_bitmaps = cpu_to_be32(s->nb_bitmaps),
2967 .bitmap_directory_size =
2968 cpu_to_be64(s->bitmap_directory_size),
2969 .bitmap_directory_offset =
2970 cpu_to_be64(s->bitmap_directory_offset)
2972 ret = header_ext_add(buf, QCOW2_EXT_MAGIC_BITMAPS,
2973 &bitmaps_header, sizeof(bitmaps_header),
2974 buflen);
2975 if (ret < 0) {
2976 goto fail;
2978 buf += ret;
2979 buflen -= ret;
2982 /* Keep unknown header extensions */
2983 QLIST_FOREACH(uext, &s->unknown_header_ext, next) {
2984 ret = header_ext_add(buf, uext->magic, uext->data, uext->len, buflen);
2985 if (ret < 0) {
2986 goto fail;
2989 buf += ret;
2990 buflen -= ret;
2993 /* End of header extensions */
2994 ret = header_ext_add(buf, QCOW2_EXT_MAGIC_END, NULL, 0, buflen);
2995 if (ret < 0) {
2996 goto fail;
2999 buf += ret;
3000 buflen -= ret;
3002 /* Backing file name */
3003 if (s->image_backing_file) {
3004 size_t backing_file_len = strlen(s->image_backing_file);
3006 if (buflen < backing_file_len) {
3007 ret = -ENOSPC;
3008 goto fail;
3011 /* Using strncpy is ok here, since buf is not NUL-terminated. */
3012 strncpy(buf, s->image_backing_file, buflen);
3014 header->backing_file_offset = cpu_to_be64(buf - ((char*) header));
3015 header->backing_file_size = cpu_to_be32(backing_file_len);
3018 /* Write the new header */
3019 ret = bdrv_pwrite(bs->file, 0, header, s->cluster_size);
3020 if (ret < 0) {
3021 goto fail;
3024 ret = 0;
3025 fail:
3026 qemu_vfree(header);
3027 return ret;
3030 static int qcow2_change_backing_file(BlockDriverState *bs,
3031 const char *backing_file, const char *backing_fmt)
3033 BDRVQcow2State *s = bs->opaque;
3035 /* Adding a backing file means that the external data file alone won't be
3036 * enough to make sense of the content */
3037 if (backing_file && data_file_is_raw(bs)) {
3038 return -EINVAL;
3041 if (backing_file && strlen(backing_file) > 1023) {
3042 return -EINVAL;
3045 pstrcpy(bs->auto_backing_file, sizeof(bs->auto_backing_file),
3046 backing_file ?: "");
3047 pstrcpy(bs->backing_file, sizeof(bs->backing_file), backing_file ?: "");
3048 pstrcpy(bs->backing_format, sizeof(bs->backing_format), backing_fmt ?: "");
3050 g_free(s->image_backing_file);
3051 g_free(s->image_backing_format);
3053 s->image_backing_file = backing_file ? g_strdup(bs->backing_file) : NULL;
3054 s->image_backing_format = backing_fmt ? g_strdup(bs->backing_format) : NULL;
3056 return qcow2_update_header(bs);
3059 static int qcow2_set_up_encryption(BlockDriverState *bs,
3060 QCryptoBlockCreateOptions *cryptoopts,
3061 Error **errp)
3063 BDRVQcow2State *s = bs->opaque;
3064 QCryptoBlock *crypto = NULL;
3065 int fmt, ret;
3067 switch (cryptoopts->format) {
3068 case Q_CRYPTO_BLOCK_FORMAT_LUKS:
3069 fmt = QCOW_CRYPT_LUKS;
3070 break;
3071 case Q_CRYPTO_BLOCK_FORMAT_QCOW:
3072 fmt = QCOW_CRYPT_AES;
3073 break;
3074 default:
3075 error_setg(errp, "Crypto format not supported in qcow2");
3076 return -EINVAL;
3079 s->crypt_method_header = fmt;
3081 crypto = qcrypto_block_create(cryptoopts, "encrypt.",
3082 qcow2_crypto_hdr_init_func,
3083 qcow2_crypto_hdr_write_func,
3084 bs, errp);
3085 if (!crypto) {
3086 return -EINVAL;
3089 ret = qcow2_update_header(bs);
3090 if (ret < 0) {
3091 error_setg_errno(errp, -ret, "Could not write encryption header");
3092 goto out;
3095 ret = 0;
3096 out:
3097 qcrypto_block_free(crypto);
3098 return ret;
3102 * Preallocates metadata structures for data clusters between @offset (in the
3103 * guest disk) and @new_length (which is thus generally the new guest disk
3104 * size).
3106 * Returns: 0 on success, -errno on failure.
3108 static int coroutine_fn preallocate_co(BlockDriverState *bs, uint64_t offset,
3109 uint64_t new_length, PreallocMode mode,
3110 Error **errp)
3112 BDRVQcow2State *s = bs->opaque;
3113 uint64_t bytes;
3114 uint64_t host_offset = 0;
3115 int64_t file_length;
3116 unsigned int cur_bytes;
3117 int ret;
3118 QCowL2Meta *meta;
3120 assert(offset <= new_length);
3121 bytes = new_length - offset;
3123 while (bytes) {
3124 cur_bytes = MIN(bytes, QEMU_ALIGN_DOWN(INT_MAX, s->cluster_size));
3125 ret = qcow2_alloc_cluster_offset(bs, offset, &cur_bytes,
3126 &host_offset, &meta);
3127 if (ret < 0) {
3128 error_setg_errno(errp, -ret, "Allocating clusters failed");
3129 return ret;
3132 while (meta) {
3133 QCowL2Meta *next = meta->next;
3134 meta->prealloc = true;
3136 ret = qcow2_alloc_cluster_link_l2(bs, meta);
3137 if (ret < 0) {
3138 error_setg_errno(errp, -ret, "Mapping clusters failed");
3139 qcow2_free_any_clusters(bs, meta->alloc_offset,
3140 meta->nb_clusters, QCOW2_DISCARD_NEVER);
3141 return ret;
3144 /* There are no dependent requests, but we need to remove our
3145 * request from the list of in-flight requests */
3146 QLIST_REMOVE(meta, next_in_flight);
3148 g_free(meta);
3149 meta = next;
3152 /* TODO Preallocate data if requested */
3154 bytes -= cur_bytes;
3155 offset += cur_bytes;
3159 * It is expected that the image file is large enough to actually contain
3160 * all of the allocated clusters (otherwise we get failing reads after
3161 * EOF). Extend the image to the last allocated sector.
3163 file_length = bdrv_getlength(s->data_file->bs);
3164 if (file_length < 0) {
3165 error_setg_errno(errp, -file_length, "Could not get file size");
3166 return file_length;
3169 if (host_offset + cur_bytes > file_length) {
3170 if (mode == PREALLOC_MODE_METADATA) {
3171 mode = PREALLOC_MODE_OFF;
3173 ret = bdrv_co_truncate(s->data_file, host_offset + cur_bytes, false,
3174 mode, 0, errp);
3175 if (ret < 0) {
3176 return ret;
3180 return 0;
3183 /* qcow2_refcount_metadata_size:
3184 * @clusters: number of clusters to refcount (including data and L1/L2 tables)
3185 * @cluster_size: size of a cluster, in bytes
3186 * @refcount_order: refcount bits power-of-2 exponent
3187 * @generous_increase: allow for the refcount table to be 1.5x as large as it
3188 * needs to be
3190 * Returns: Number of bytes required for refcount blocks and table metadata.
3192 int64_t qcow2_refcount_metadata_size(int64_t clusters, size_t cluster_size,
3193 int refcount_order, bool generous_increase,
3194 uint64_t *refblock_count)
3197 * Every host cluster is reference-counted, including metadata (even
3198 * refcount metadata is recursively included).
3200 * An accurate formula for the size of refcount metadata size is difficult
3201 * to derive. An easier method of calculation is finding the fixed point
3202 * where no further refcount blocks or table clusters are required to
3203 * reference count every cluster.
3205 int64_t blocks_per_table_cluster = cluster_size / sizeof(uint64_t);
3206 int64_t refcounts_per_block = cluster_size * 8 / (1 << refcount_order);
3207 int64_t table = 0; /* number of refcount table clusters */
3208 int64_t blocks = 0; /* number of refcount block clusters */
3209 int64_t last;
3210 int64_t n = 0;
3212 do {
3213 last = n;
3214 blocks = DIV_ROUND_UP(clusters + table + blocks, refcounts_per_block);
3215 table = DIV_ROUND_UP(blocks, blocks_per_table_cluster);
3216 n = clusters + blocks + table;
3218 if (n == last && generous_increase) {
3219 clusters += DIV_ROUND_UP(table, 2);
3220 n = 0; /* force another loop */
3221 generous_increase = false;
3223 } while (n != last);
3225 if (refblock_count) {
3226 *refblock_count = blocks;
3229 return (blocks + table) * cluster_size;
3233 * qcow2_calc_prealloc_size:
3234 * @total_size: virtual disk size in bytes
3235 * @cluster_size: cluster size in bytes
3236 * @refcount_order: refcount bits power-of-2 exponent
3237 * @extended_l2: true if the image has extended L2 entries
3239 * Returns: Total number of bytes required for the fully allocated image
3240 * (including metadata).
3242 static int64_t qcow2_calc_prealloc_size(int64_t total_size,
3243 size_t cluster_size,
3244 int refcount_order,
3245 bool extended_l2)
3247 int64_t meta_size = 0;
3248 uint64_t nl1e, nl2e;
3249 int64_t aligned_total_size = ROUND_UP(total_size, cluster_size);
3250 size_t l2e_size = extended_l2 ? L2E_SIZE_EXTENDED : L2E_SIZE_NORMAL;
3252 /* header: 1 cluster */
3253 meta_size += cluster_size;
3255 /* total size of L2 tables */
3256 nl2e = aligned_total_size / cluster_size;
3257 nl2e = ROUND_UP(nl2e, cluster_size / l2e_size);
3258 meta_size += nl2e * l2e_size;
3260 /* total size of L1 tables */
3261 nl1e = nl2e * l2e_size / cluster_size;
3262 nl1e = ROUND_UP(nl1e, cluster_size / sizeof(uint64_t));
3263 meta_size += nl1e * sizeof(uint64_t);
3265 /* total size of refcount table and blocks */
3266 meta_size += qcow2_refcount_metadata_size(
3267 (meta_size + aligned_total_size) / cluster_size,
3268 cluster_size, refcount_order, false, NULL);
3270 return meta_size + aligned_total_size;
3273 static bool validate_cluster_size(size_t cluster_size, Error **errp)
3275 int cluster_bits = ctz32(cluster_size);
3276 if (cluster_bits < MIN_CLUSTER_BITS || cluster_bits > MAX_CLUSTER_BITS ||
3277 (1 << cluster_bits) != cluster_size)
3279 error_setg(errp, "Cluster size must be a power of two between %d and "
3280 "%dk", 1 << MIN_CLUSTER_BITS, 1 << (MAX_CLUSTER_BITS - 10));
3281 return false;
3283 return true;
3286 static size_t qcow2_opt_get_cluster_size_del(QemuOpts *opts, Error **errp)
3288 size_t cluster_size;
3290 cluster_size = qemu_opt_get_size_del(opts, BLOCK_OPT_CLUSTER_SIZE,
3291 DEFAULT_CLUSTER_SIZE);
3292 if (!validate_cluster_size(cluster_size, errp)) {
3293 return 0;
3295 return cluster_size;
3298 static int qcow2_opt_get_version_del(QemuOpts *opts, Error **errp)
3300 char *buf;
3301 int ret;
3303 buf = qemu_opt_get_del(opts, BLOCK_OPT_COMPAT_LEVEL);
3304 if (!buf) {
3305 ret = 3; /* default */
3306 } else if (!strcmp(buf, "0.10")) {
3307 ret = 2;
3308 } else if (!strcmp(buf, "1.1")) {
3309 ret = 3;
3310 } else {
3311 error_setg(errp, "Invalid compatibility level: '%s'", buf);
3312 ret = -EINVAL;
3314 g_free(buf);
3315 return ret;
3318 static uint64_t qcow2_opt_get_refcount_bits_del(QemuOpts *opts, int version,
3319 Error **errp)
3321 uint64_t refcount_bits;
3323 refcount_bits = qemu_opt_get_number_del(opts, BLOCK_OPT_REFCOUNT_BITS, 16);
3324 if (refcount_bits > 64 || !is_power_of_2(refcount_bits)) {
3325 error_setg(errp, "Refcount width must be a power of two and may not "
3326 "exceed 64 bits");
3327 return 0;
3330 if (version < 3 && refcount_bits != 16) {
3331 error_setg(errp, "Different refcount widths than 16 bits require "
3332 "compatibility level 1.1 or above (use compat=1.1 or "
3333 "greater)");
3334 return 0;
3337 return refcount_bits;
3340 static int coroutine_fn
3341 qcow2_co_create(BlockdevCreateOptions *create_options, Error **errp)
3343 BlockdevCreateOptionsQcow2 *qcow2_opts;
3344 QDict *options;
3347 * Open the image file and write a minimal qcow2 header.
3349 * We keep things simple and start with a zero-sized image. We also
3350 * do without refcount blocks or a L1 table for now. We'll fix the
3351 * inconsistency later.
3353 * We do need a refcount table because growing the refcount table means
3354 * allocating two new refcount blocks - the second of which would be at
3355 * 2 GB for 64k clusters, and we don't want to have a 2 GB initial file
3356 * size for any qcow2 image.
3358 BlockBackend *blk = NULL;
3359 BlockDriverState *bs = NULL;
3360 BlockDriverState *data_bs = NULL;
3361 QCowHeader *header;
3362 size_t cluster_size;
3363 int version;
3364 int refcount_order;
3365 uint64_t* refcount_table;
3366 int ret;
3367 uint8_t compression_type = QCOW2_COMPRESSION_TYPE_ZLIB;
3369 assert(create_options->driver == BLOCKDEV_DRIVER_QCOW2);
3370 qcow2_opts = &create_options->u.qcow2;
3372 bs = bdrv_open_blockdev_ref(qcow2_opts->file, errp);
3373 if (bs == NULL) {
3374 return -EIO;
3377 /* Validate options and set default values */
3378 if (!QEMU_IS_ALIGNED(qcow2_opts->size, BDRV_SECTOR_SIZE)) {
3379 error_setg(errp, "Image size must be a multiple of %u bytes",
3380 (unsigned) BDRV_SECTOR_SIZE);
3381 ret = -EINVAL;
3382 goto out;
3385 if (qcow2_opts->has_version) {
3386 switch (qcow2_opts->version) {
3387 case BLOCKDEV_QCOW2_VERSION_V2:
3388 version = 2;
3389 break;
3390 case BLOCKDEV_QCOW2_VERSION_V3:
3391 version = 3;
3392 break;
3393 default:
3394 g_assert_not_reached();
3396 } else {
3397 version = 3;
3400 if (qcow2_opts->has_cluster_size) {
3401 cluster_size = qcow2_opts->cluster_size;
3402 } else {
3403 cluster_size = DEFAULT_CLUSTER_SIZE;
3406 if (!validate_cluster_size(cluster_size, errp)) {
3407 ret = -EINVAL;
3408 goto out;
3411 if (!qcow2_opts->has_preallocation) {
3412 qcow2_opts->preallocation = PREALLOC_MODE_OFF;
3414 if (qcow2_opts->has_backing_file &&
3415 qcow2_opts->preallocation != PREALLOC_MODE_OFF)
3417 error_setg(errp, "Backing file and preallocation cannot be used at "
3418 "the same time");
3419 ret = -EINVAL;
3420 goto out;
3422 if (qcow2_opts->has_backing_fmt && !qcow2_opts->has_backing_file) {
3423 error_setg(errp, "Backing format cannot be used without backing file");
3424 ret = -EINVAL;
3425 goto out;
3428 if (!qcow2_opts->has_lazy_refcounts) {
3429 qcow2_opts->lazy_refcounts = false;
3431 if (version < 3 && qcow2_opts->lazy_refcounts) {
3432 error_setg(errp, "Lazy refcounts only supported with compatibility "
3433 "level 1.1 and above (use version=v3 or greater)");
3434 ret = -EINVAL;
3435 goto out;
3438 if (!qcow2_opts->has_refcount_bits) {
3439 qcow2_opts->refcount_bits = 16;
3441 if (qcow2_opts->refcount_bits > 64 ||
3442 !is_power_of_2(qcow2_opts->refcount_bits))
3444 error_setg(errp, "Refcount width must be a power of two and may not "
3445 "exceed 64 bits");
3446 ret = -EINVAL;
3447 goto out;
3449 if (version < 3 && qcow2_opts->refcount_bits != 16) {
3450 error_setg(errp, "Different refcount widths than 16 bits require "
3451 "compatibility level 1.1 or above (use version=v3 or "
3452 "greater)");
3453 ret = -EINVAL;
3454 goto out;
3456 refcount_order = ctz32(qcow2_opts->refcount_bits);
3458 if (qcow2_opts->data_file_raw && !qcow2_opts->data_file) {
3459 error_setg(errp, "data-file-raw requires data-file");
3460 ret = -EINVAL;
3461 goto out;
3463 if (qcow2_opts->data_file_raw && qcow2_opts->has_backing_file) {
3464 error_setg(errp, "Backing file and data-file-raw cannot be used at "
3465 "the same time");
3466 ret = -EINVAL;
3467 goto out;
3470 if (qcow2_opts->data_file) {
3471 if (version < 3) {
3472 error_setg(errp, "External data files are only supported with "
3473 "compatibility level 1.1 and above (use version=v3 or "
3474 "greater)");
3475 ret = -EINVAL;
3476 goto out;
3478 data_bs = bdrv_open_blockdev_ref(qcow2_opts->data_file, errp);
3479 if (data_bs == NULL) {
3480 ret = -EIO;
3481 goto out;
3485 if (qcow2_opts->has_compression_type &&
3486 qcow2_opts->compression_type != QCOW2_COMPRESSION_TYPE_ZLIB) {
3488 ret = -EINVAL;
3490 if (version < 3) {
3491 error_setg(errp, "Non-zlib compression type is only supported with "
3492 "compatibility level 1.1 and above (use version=v3 or "
3493 "greater)");
3494 goto out;
3497 switch (qcow2_opts->compression_type) {
3498 #ifdef CONFIG_ZSTD
3499 case QCOW2_COMPRESSION_TYPE_ZSTD:
3500 break;
3501 #endif
3502 default:
3503 error_setg(errp, "Unknown compression type");
3504 goto out;
3507 compression_type = qcow2_opts->compression_type;
3510 /* Create BlockBackend to write to the image */
3511 blk = blk_new_with_bs(bs, BLK_PERM_WRITE | BLK_PERM_RESIZE, BLK_PERM_ALL,
3512 errp);
3513 if (!blk) {
3514 ret = -EPERM;
3515 goto out;
3517 blk_set_allow_write_beyond_eof(blk, true);
3519 /* Write the header */
3520 QEMU_BUILD_BUG_ON((1 << MIN_CLUSTER_BITS) < sizeof(*header));
3521 header = g_malloc0(cluster_size);
3522 *header = (QCowHeader) {
3523 .magic = cpu_to_be32(QCOW_MAGIC),
3524 .version = cpu_to_be32(version),
3525 .cluster_bits = cpu_to_be32(ctz32(cluster_size)),
3526 .size = cpu_to_be64(0),
3527 .l1_table_offset = cpu_to_be64(0),
3528 .l1_size = cpu_to_be32(0),
3529 .refcount_table_offset = cpu_to_be64(cluster_size),
3530 .refcount_table_clusters = cpu_to_be32(1),
3531 .refcount_order = cpu_to_be32(refcount_order),
3532 /* don't deal with endianness since compression_type is 1 byte long */
3533 .compression_type = compression_type,
3534 .header_length = cpu_to_be32(sizeof(*header)),
3537 /* We'll update this to correct value later */
3538 header->crypt_method = cpu_to_be32(QCOW_CRYPT_NONE);
3540 if (qcow2_opts->lazy_refcounts) {
3541 header->compatible_features |=
3542 cpu_to_be64(QCOW2_COMPAT_LAZY_REFCOUNTS);
3544 if (data_bs) {
3545 header->incompatible_features |=
3546 cpu_to_be64(QCOW2_INCOMPAT_DATA_FILE);
3548 if (qcow2_opts->data_file_raw) {
3549 header->autoclear_features |=
3550 cpu_to_be64(QCOW2_AUTOCLEAR_DATA_FILE_RAW);
3552 if (compression_type != QCOW2_COMPRESSION_TYPE_ZLIB) {
3553 header->incompatible_features |=
3554 cpu_to_be64(QCOW2_INCOMPAT_COMPRESSION);
3557 ret = blk_pwrite(blk, 0, header, cluster_size, 0);
3558 g_free(header);
3559 if (ret < 0) {
3560 error_setg_errno(errp, -ret, "Could not write qcow2 header");
3561 goto out;
3564 /* Write a refcount table with one refcount block */
3565 refcount_table = g_malloc0(2 * cluster_size);
3566 refcount_table[0] = cpu_to_be64(2 * cluster_size);
3567 ret = blk_pwrite(blk, cluster_size, refcount_table, 2 * cluster_size, 0);
3568 g_free(refcount_table);
3570 if (ret < 0) {
3571 error_setg_errno(errp, -ret, "Could not write refcount table");
3572 goto out;
3575 blk_unref(blk);
3576 blk = NULL;
3579 * And now open the image and make it consistent first (i.e. increase the
3580 * refcount of the cluster that is occupied by the header and the refcount
3581 * table)
3583 options = qdict_new();
3584 qdict_put_str(options, "driver", "qcow2");
3585 qdict_put_str(options, "file", bs->node_name);
3586 if (data_bs) {
3587 qdict_put_str(options, "data-file", data_bs->node_name);
3589 blk = blk_new_open(NULL, NULL, options,
3590 BDRV_O_RDWR | BDRV_O_RESIZE | BDRV_O_NO_FLUSH,
3591 errp);
3592 if (blk == NULL) {
3593 ret = -EIO;
3594 goto out;
3597 ret = qcow2_alloc_clusters(blk_bs(blk), 3 * cluster_size);
3598 if (ret < 0) {
3599 error_setg_errno(errp, -ret, "Could not allocate clusters for qcow2 "
3600 "header and refcount table");
3601 goto out;
3603 } else if (ret != 0) {
3604 error_report("Huh, first cluster in empty image is already in use?");
3605 abort();
3608 /* Set the external data file if necessary */
3609 if (data_bs) {
3610 BDRVQcow2State *s = blk_bs(blk)->opaque;
3611 s->image_data_file = g_strdup(data_bs->filename);
3614 /* Create a full header (including things like feature table) */
3615 ret = qcow2_update_header(blk_bs(blk));
3616 if (ret < 0) {
3617 error_setg_errno(errp, -ret, "Could not update qcow2 header");
3618 goto out;
3621 /* Okay, now that we have a valid image, let's give it the right size */
3622 ret = blk_truncate(blk, qcow2_opts->size, false, qcow2_opts->preallocation,
3623 0, errp);
3624 if (ret < 0) {
3625 error_prepend(errp, "Could not resize image: ");
3626 goto out;
3629 /* Want a backing file? There you go. */
3630 if (qcow2_opts->has_backing_file) {
3631 const char *backing_format = NULL;
3633 if (qcow2_opts->has_backing_fmt) {
3634 backing_format = BlockdevDriver_str(qcow2_opts->backing_fmt);
3637 ret = bdrv_change_backing_file(blk_bs(blk), qcow2_opts->backing_file,
3638 backing_format, false);
3639 if (ret < 0) {
3640 error_setg_errno(errp, -ret, "Could not assign backing file '%s' "
3641 "with format '%s'", qcow2_opts->backing_file,
3642 backing_format);
3643 goto out;
3647 /* Want encryption? There you go. */
3648 if (qcow2_opts->has_encrypt) {
3649 ret = qcow2_set_up_encryption(blk_bs(blk), qcow2_opts->encrypt, errp);
3650 if (ret < 0) {
3651 goto out;
3655 blk_unref(blk);
3656 blk = NULL;
3658 /* Reopen the image without BDRV_O_NO_FLUSH to flush it before returning.
3659 * Using BDRV_O_NO_IO, since encryption is now setup we don't want to
3660 * have to setup decryption context. We're not doing any I/O on the top
3661 * level BlockDriverState, only lower layers, where BDRV_O_NO_IO does
3662 * not have effect.
3664 options = qdict_new();
3665 qdict_put_str(options, "driver", "qcow2");
3666 qdict_put_str(options, "file", bs->node_name);
3667 if (data_bs) {
3668 qdict_put_str(options, "data-file", data_bs->node_name);
3670 blk = blk_new_open(NULL, NULL, options,
3671 BDRV_O_RDWR | BDRV_O_NO_BACKING | BDRV_O_NO_IO,
3672 errp);
3673 if (blk == NULL) {
3674 ret = -EIO;
3675 goto out;
3678 ret = 0;
3679 out:
3680 blk_unref(blk);
3681 bdrv_unref(bs);
3682 bdrv_unref(data_bs);
3683 return ret;
3686 static int coroutine_fn qcow2_co_create_opts(BlockDriver *drv,
3687 const char *filename,
3688 QemuOpts *opts,
3689 Error **errp)
3691 BlockdevCreateOptions *create_options = NULL;
3692 QDict *qdict;
3693 Visitor *v;
3694 BlockDriverState *bs = NULL;
3695 BlockDriverState *data_bs = NULL;
3696 const char *val;
3697 int ret;
3699 /* Only the keyval visitor supports the dotted syntax needed for
3700 * encryption, so go through a QDict before getting a QAPI type. Ignore
3701 * options meant for the protocol layer so that the visitor doesn't
3702 * complain. */
3703 qdict = qemu_opts_to_qdict_filtered(opts, NULL, bdrv_qcow2.create_opts,
3704 true);
3706 /* Handle encryption options */
3707 val = qdict_get_try_str(qdict, BLOCK_OPT_ENCRYPT);
3708 if (val && !strcmp(val, "on")) {
3709 qdict_put_str(qdict, BLOCK_OPT_ENCRYPT, "qcow");
3710 } else if (val && !strcmp(val, "off")) {
3711 qdict_del(qdict, BLOCK_OPT_ENCRYPT);
3714 val = qdict_get_try_str(qdict, BLOCK_OPT_ENCRYPT_FORMAT);
3715 if (val && !strcmp(val, "aes")) {
3716 qdict_put_str(qdict, BLOCK_OPT_ENCRYPT_FORMAT, "qcow");
3719 /* Convert compat=0.10/1.1 into compat=v2/v3, to be renamed into
3720 * version=v2/v3 below. */
3721 val = qdict_get_try_str(qdict, BLOCK_OPT_COMPAT_LEVEL);
3722 if (val && !strcmp(val, "0.10")) {
3723 qdict_put_str(qdict, BLOCK_OPT_COMPAT_LEVEL, "v2");
3724 } else if (val && !strcmp(val, "1.1")) {
3725 qdict_put_str(qdict, BLOCK_OPT_COMPAT_LEVEL, "v3");
3728 /* Change legacy command line options into QMP ones */
3729 static const QDictRenames opt_renames[] = {
3730 { BLOCK_OPT_BACKING_FILE, "backing-file" },
3731 { BLOCK_OPT_BACKING_FMT, "backing-fmt" },
3732 { BLOCK_OPT_CLUSTER_SIZE, "cluster-size" },
3733 { BLOCK_OPT_LAZY_REFCOUNTS, "lazy-refcounts" },
3734 { BLOCK_OPT_REFCOUNT_BITS, "refcount-bits" },
3735 { BLOCK_OPT_ENCRYPT, BLOCK_OPT_ENCRYPT_FORMAT },
3736 { BLOCK_OPT_COMPAT_LEVEL, "version" },
3737 { BLOCK_OPT_DATA_FILE_RAW, "data-file-raw" },
3738 { BLOCK_OPT_COMPRESSION_TYPE, "compression-type" },
3739 { NULL, NULL },
3742 if (!qdict_rename_keys(qdict, opt_renames, errp)) {
3743 ret = -EINVAL;
3744 goto finish;
3747 /* Create and open the file (protocol layer) */
3748 ret = bdrv_create_file(filename, opts, errp);
3749 if (ret < 0) {
3750 goto finish;
3753 bs = bdrv_open(filename, NULL, NULL,
3754 BDRV_O_RDWR | BDRV_O_RESIZE | BDRV_O_PROTOCOL, errp);
3755 if (bs == NULL) {
3756 ret = -EIO;
3757 goto finish;
3760 /* Create and open an external data file (protocol layer) */
3761 val = qdict_get_try_str(qdict, BLOCK_OPT_DATA_FILE);
3762 if (val) {
3763 ret = bdrv_create_file(val, opts, errp);
3764 if (ret < 0) {
3765 goto finish;
3768 data_bs = bdrv_open(val, NULL, NULL,
3769 BDRV_O_RDWR | BDRV_O_RESIZE | BDRV_O_PROTOCOL,
3770 errp);
3771 if (data_bs == NULL) {
3772 ret = -EIO;
3773 goto finish;
3776 qdict_del(qdict, BLOCK_OPT_DATA_FILE);
3777 qdict_put_str(qdict, "data-file", data_bs->node_name);
3780 /* Set 'driver' and 'node' options */
3781 qdict_put_str(qdict, "driver", "qcow2");
3782 qdict_put_str(qdict, "file", bs->node_name);
3784 /* Now get the QAPI type BlockdevCreateOptions */
3785 v = qobject_input_visitor_new_flat_confused(qdict, errp);
3786 if (!v) {
3787 ret = -EINVAL;
3788 goto finish;
3791 visit_type_BlockdevCreateOptions(v, NULL, &create_options, errp);
3792 visit_free(v);
3793 if (!create_options) {
3794 ret = -EINVAL;
3795 goto finish;
3798 /* Silently round up size */
3799 create_options->u.qcow2.size = ROUND_UP(create_options->u.qcow2.size,
3800 BDRV_SECTOR_SIZE);
3802 /* Create the qcow2 image (format layer) */
3803 ret = qcow2_co_create(create_options, errp);
3804 if (ret < 0) {
3805 goto finish;
3808 ret = 0;
3809 finish:
3810 qobject_unref(qdict);
3811 bdrv_unref(bs);
3812 bdrv_unref(data_bs);
3813 qapi_free_BlockdevCreateOptions(create_options);
3814 return ret;
3818 static bool is_zero(BlockDriverState *bs, int64_t offset, int64_t bytes)
3820 int64_t nr;
3821 int res;
3823 /* Clamp to image length, before checking status of underlying sectors */
3824 if (offset + bytes > bs->total_sectors * BDRV_SECTOR_SIZE) {
3825 bytes = bs->total_sectors * BDRV_SECTOR_SIZE - offset;
3828 if (!bytes) {
3829 return true;
3831 res = bdrv_block_status_above(bs, NULL, offset, bytes, &nr, NULL, NULL);
3832 return res >= 0 && (res & BDRV_BLOCK_ZERO) && nr == bytes;
3835 static coroutine_fn int qcow2_co_pwrite_zeroes(BlockDriverState *bs,
3836 int64_t offset, int bytes, BdrvRequestFlags flags)
3838 int ret;
3839 BDRVQcow2State *s = bs->opaque;
3841 uint32_t head = offset_into_subcluster(s, offset);
3842 uint32_t tail = ROUND_UP(offset + bytes, s->subcluster_size) -
3843 (offset + bytes);
3845 trace_qcow2_pwrite_zeroes_start_req(qemu_coroutine_self(), offset, bytes);
3846 if (offset + bytes == bs->total_sectors * BDRV_SECTOR_SIZE) {
3847 tail = 0;
3850 if (head || tail) {
3851 uint64_t off;
3852 unsigned int nr;
3853 QCow2SubclusterType type;
3855 assert(head + bytes + tail <= s->subcluster_size);
3857 /* check whether remainder of cluster already reads as zero */
3858 if (!(is_zero(bs, offset - head, head) &&
3859 is_zero(bs, offset + bytes, tail))) {
3860 return -ENOTSUP;
3863 qemu_co_mutex_lock(&s->lock);
3864 /* We can have new write after previous check */
3865 offset -= head;
3866 bytes = s->subcluster_size;
3867 nr = s->subcluster_size;
3868 ret = qcow2_get_host_offset(bs, offset, &nr, &off, &type);
3869 if (ret < 0 ||
3870 (type != QCOW2_SUBCLUSTER_UNALLOCATED_PLAIN &&
3871 type != QCOW2_SUBCLUSTER_UNALLOCATED_ALLOC &&
3872 type != QCOW2_SUBCLUSTER_ZERO_PLAIN &&
3873 type != QCOW2_SUBCLUSTER_ZERO_ALLOC)) {
3874 qemu_co_mutex_unlock(&s->lock);
3875 return -ENOTSUP;
3877 } else {
3878 qemu_co_mutex_lock(&s->lock);
3881 trace_qcow2_pwrite_zeroes(qemu_coroutine_self(), offset, bytes);
3883 /* Whatever is left can use real zero subclusters */
3884 ret = qcow2_subcluster_zeroize(bs, offset, bytes, flags);
3885 qemu_co_mutex_unlock(&s->lock);
3887 return ret;
3890 static coroutine_fn int qcow2_co_pdiscard(BlockDriverState *bs,
3891 int64_t offset, int bytes)
3893 int ret;
3894 BDRVQcow2State *s = bs->opaque;
3896 /* If the image does not support QCOW_OFLAG_ZERO then discarding
3897 * clusters could expose stale data from the backing file. */
3898 if (s->qcow_version < 3 && bs->backing) {
3899 return -ENOTSUP;
3902 if (!QEMU_IS_ALIGNED(offset | bytes, s->cluster_size)) {
3903 assert(bytes < s->cluster_size);
3904 /* Ignore partial clusters, except for the special case of the
3905 * complete partial cluster at the end of an unaligned file */
3906 if (!QEMU_IS_ALIGNED(offset, s->cluster_size) ||
3907 offset + bytes != bs->total_sectors * BDRV_SECTOR_SIZE) {
3908 return -ENOTSUP;
3912 qemu_co_mutex_lock(&s->lock);
3913 ret = qcow2_cluster_discard(bs, offset, bytes, QCOW2_DISCARD_REQUEST,
3914 false);
3915 qemu_co_mutex_unlock(&s->lock);
3916 return ret;
3919 static int coroutine_fn
3920 qcow2_co_copy_range_from(BlockDriverState *bs,
3921 BdrvChild *src, uint64_t src_offset,
3922 BdrvChild *dst, uint64_t dst_offset,
3923 uint64_t bytes, BdrvRequestFlags read_flags,
3924 BdrvRequestFlags write_flags)
3926 BDRVQcow2State *s = bs->opaque;
3927 int ret;
3928 unsigned int cur_bytes; /* number of bytes in current iteration */
3929 BdrvChild *child = NULL;
3930 BdrvRequestFlags cur_write_flags;
3932 assert(!bs->encrypted);
3933 qemu_co_mutex_lock(&s->lock);
3935 while (bytes != 0) {
3936 uint64_t copy_offset = 0;
3937 QCow2SubclusterType type;
3938 /* prepare next request */
3939 cur_bytes = MIN(bytes, INT_MAX);
3940 cur_write_flags = write_flags;
3942 ret = qcow2_get_host_offset(bs, src_offset, &cur_bytes,
3943 &copy_offset, &type);
3944 if (ret < 0) {
3945 goto out;
3948 switch (type) {
3949 case QCOW2_SUBCLUSTER_UNALLOCATED_PLAIN:
3950 case QCOW2_SUBCLUSTER_UNALLOCATED_ALLOC:
3951 if (bs->backing && bs->backing->bs) {
3952 int64_t backing_length = bdrv_getlength(bs->backing->bs);
3953 if (src_offset >= backing_length) {
3954 cur_write_flags |= BDRV_REQ_ZERO_WRITE;
3955 } else {
3956 child = bs->backing;
3957 cur_bytes = MIN(cur_bytes, backing_length - src_offset);
3958 copy_offset = src_offset;
3960 } else {
3961 cur_write_flags |= BDRV_REQ_ZERO_WRITE;
3963 break;
3965 case QCOW2_SUBCLUSTER_ZERO_PLAIN:
3966 case QCOW2_SUBCLUSTER_ZERO_ALLOC:
3967 cur_write_flags |= BDRV_REQ_ZERO_WRITE;
3968 break;
3970 case QCOW2_SUBCLUSTER_COMPRESSED:
3971 ret = -ENOTSUP;
3972 goto out;
3974 case QCOW2_SUBCLUSTER_NORMAL:
3975 child = s->data_file;
3976 break;
3978 default:
3979 abort();
3981 qemu_co_mutex_unlock(&s->lock);
3982 ret = bdrv_co_copy_range_from(child,
3983 copy_offset,
3984 dst, dst_offset,
3985 cur_bytes, read_flags, cur_write_flags);
3986 qemu_co_mutex_lock(&s->lock);
3987 if (ret < 0) {
3988 goto out;
3991 bytes -= cur_bytes;
3992 src_offset += cur_bytes;
3993 dst_offset += cur_bytes;
3995 ret = 0;
3997 out:
3998 qemu_co_mutex_unlock(&s->lock);
3999 return ret;
4002 static int coroutine_fn
4003 qcow2_co_copy_range_to(BlockDriverState *bs,
4004 BdrvChild *src, uint64_t src_offset,
4005 BdrvChild *dst, uint64_t dst_offset,
4006 uint64_t bytes, BdrvRequestFlags read_flags,
4007 BdrvRequestFlags write_flags)
4009 BDRVQcow2State *s = bs->opaque;
4010 int offset_in_cluster;
4011 int ret;
4012 unsigned int cur_bytes; /* number of sectors in current iteration */
4013 uint64_t cluster_offset;
4014 QCowL2Meta *l2meta = NULL;
4016 assert(!bs->encrypted);
4018 qemu_co_mutex_lock(&s->lock);
4020 while (bytes != 0) {
4022 l2meta = NULL;
4024 offset_in_cluster = offset_into_cluster(s, dst_offset);
4025 cur_bytes = MIN(bytes, INT_MAX);
4027 /* TODO:
4028 * If src->bs == dst->bs, we could simply copy by incrementing
4029 * the refcnt, without copying user data.
4030 * Or if src->bs == dst->bs->backing->bs, we could copy by discarding. */
4031 ret = qcow2_alloc_cluster_offset(bs, dst_offset, &cur_bytes,
4032 &cluster_offset, &l2meta);
4033 if (ret < 0) {
4034 goto fail;
4037 assert(offset_into_cluster(s, cluster_offset) == 0);
4039 ret = qcow2_pre_write_overlap_check(bs, 0,
4040 cluster_offset + offset_in_cluster, cur_bytes, true);
4041 if (ret < 0) {
4042 goto fail;
4045 qemu_co_mutex_unlock(&s->lock);
4046 ret = bdrv_co_copy_range_to(src, src_offset,
4047 s->data_file,
4048 cluster_offset + offset_in_cluster,
4049 cur_bytes, read_flags, write_flags);
4050 qemu_co_mutex_lock(&s->lock);
4051 if (ret < 0) {
4052 goto fail;
4055 ret = qcow2_handle_l2meta(bs, &l2meta, true);
4056 if (ret) {
4057 goto fail;
4060 bytes -= cur_bytes;
4061 src_offset += cur_bytes;
4062 dst_offset += cur_bytes;
4064 ret = 0;
4066 fail:
4067 qcow2_handle_l2meta(bs, &l2meta, false);
4069 qemu_co_mutex_unlock(&s->lock);
4071 trace_qcow2_writev_done_req(qemu_coroutine_self(), ret);
4073 return ret;
4076 static int coroutine_fn qcow2_co_truncate(BlockDriverState *bs, int64_t offset,
4077 bool exact, PreallocMode prealloc,
4078 BdrvRequestFlags flags, Error **errp)
4080 BDRVQcow2State *s = bs->opaque;
4081 uint64_t old_length;
4082 int64_t new_l1_size;
4083 int ret;
4084 QDict *options;
4086 if (prealloc != PREALLOC_MODE_OFF && prealloc != PREALLOC_MODE_METADATA &&
4087 prealloc != PREALLOC_MODE_FALLOC && prealloc != PREALLOC_MODE_FULL)
4089 error_setg(errp, "Unsupported preallocation mode '%s'",
4090 PreallocMode_str(prealloc));
4091 return -ENOTSUP;
4094 if (!QEMU_IS_ALIGNED(offset, BDRV_SECTOR_SIZE)) {
4095 error_setg(errp, "The new size must be a multiple of %u",
4096 (unsigned) BDRV_SECTOR_SIZE);
4097 return -EINVAL;
4100 qemu_co_mutex_lock(&s->lock);
4103 * Even though we store snapshot size for all images, it was not
4104 * required until v3, so it is not safe to proceed for v2.
4106 if (s->nb_snapshots && s->qcow_version < 3) {
4107 error_setg(errp, "Can't resize a v2 image which has snapshots");
4108 ret = -ENOTSUP;
4109 goto fail;
4112 /* See qcow2-bitmap.c for which bitmap scenarios prevent a resize. */
4113 if (qcow2_truncate_bitmaps_check(bs, errp)) {
4114 ret = -ENOTSUP;
4115 goto fail;
4118 old_length = bs->total_sectors * BDRV_SECTOR_SIZE;
4119 new_l1_size = size_to_l1(s, offset);
4121 if (offset < old_length) {
4122 int64_t last_cluster, old_file_size;
4123 if (prealloc != PREALLOC_MODE_OFF) {
4124 error_setg(errp,
4125 "Preallocation can't be used for shrinking an image");
4126 ret = -EINVAL;
4127 goto fail;
4130 ret = qcow2_cluster_discard(bs, ROUND_UP(offset, s->cluster_size),
4131 old_length - ROUND_UP(offset,
4132 s->cluster_size),
4133 QCOW2_DISCARD_ALWAYS, true);
4134 if (ret < 0) {
4135 error_setg_errno(errp, -ret, "Failed to discard cropped clusters");
4136 goto fail;
4139 ret = qcow2_shrink_l1_table(bs, new_l1_size);
4140 if (ret < 0) {
4141 error_setg_errno(errp, -ret,
4142 "Failed to reduce the number of L2 tables");
4143 goto fail;
4146 ret = qcow2_shrink_reftable(bs);
4147 if (ret < 0) {
4148 error_setg_errno(errp, -ret,
4149 "Failed to discard unused refblocks");
4150 goto fail;
4153 old_file_size = bdrv_getlength(bs->file->bs);
4154 if (old_file_size < 0) {
4155 error_setg_errno(errp, -old_file_size,
4156 "Failed to inquire current file length");
4157 ret = old_file_size;
4158 goto fail;
4160 last_cluster = qcow2_get_last_cluster(bs, old_file_size);
4161 if (last_cluster < 0) {
4162 error_setg_errno(errp, -last_cluster,
4163 "Failed to find the last cluster");
4164 ret = last_cluster;
4165 goto fail;
4167 if ((last_cluster + 1) * s->cluster_size < old_file_size) {
4168 Error *local_err = NULL;
4171 * Do not pass @exact here: It will not help the user if
4172 * we get an error here just because they wanted to shrink
4173 * their qcow2 image (on a block device) with qemu-img.
4174 * (And on the qcow2 layer, the @exact requirement is
4175 * always fulfilled, so there is no need to pass it on.)
4177 bdrv_co_truncate(bs->file, (last_cluster + 1) * s->cluster_size,
4178 false, PREALLOC_MODE_OFF, 0, &local_err);
4179 if (local_err) {
4180 warn_reportf_err(local_err,
4181 "Failed to truncate the tail of the image: ");
4184 } else {
4185 ret = qcow2_grow_l1_table(bs, new_l1_size, true);
4186 if (ret < 0) {
4187 error_setg_errno(errp, -ret, "Failed to grow the L1 table");
4188 goto fail;
4192 switch (prealloc) {
4193 case PREALLOC_MODE_OFF:
4194 if (has_data_file(bs)) {
4196 * If the caller wants an exact resize, the external data
4197 * file should be resized to the exact target size, too,
4198 * so we pass @exact here.
4200 ret = bdrv_co_truncate(s->data_file, offset, exact, prealloc, 0,
4201 errp);
4202 if (ret < 0) {
4203 goto fail;
4206 break;
4208 case PREALLOC_MODE_METADATA:
4209 ret = preallocate_co(bs, old_length, offset, prealloc, errp);
4210 if (ret < 0) {
4211 goto fail;
4213 break;
4215 case PREALLOC_MODE_FALLOC:
4216 case PREALLOC_MODE_FULL:
4218 int64_t allocation_start, host_offset, guest_offset;
4219 int64_t clusters_allocated;
4220 int64_t old_file_size, last_cluster, new_file_size;
4221 uint64_t nb_new_data_clusters, nb_new_l2_tables;
4222 bool subclusters_need_allocation = false;
4224 /* With a data file, preallocation means just allocating the metadata
4225 * and forwarding the truncate request to the data file */
4226 if (has_data_file(bs)) {
4227 ret = preallocate_co(bs, old_length, offset, prealloc, errp);
4228 if (ret < 0) {
4229 goto fail;
4231 break;
4234 old_file_size = bdrv_getlength(bs->file->bs);
4235 if (old_file_size < 0) {
4236 error_setg_errno(errp, -old_file_size,
4237 "Failed to inquire current file length");
4238 ret = old_file_size;
4239 goto fail;
4242 last_cluster = qcow2_get_last_cluster(bs, old_file_size);
4243 if (last_cluster >= 0) {
4244 old_file_size = (last_cluster + 1) * s->cluster_size;
4245 } else {
4246 old_file_size = ROUND_UP(old_file_size, s->cluster_size);
4249 nb_new_data_clusters = (ROUND_UP(offset, s->cluster_size) -
4250 start_of_cluster(s, old_length)) >> s->cluster_bits;
4252 /* This is an overestimation; we will not actually allocate space for
4253 * these in the file but just make sure the new refcount structures are
4254 * able to cover them so we will not have to allocate new refblocks
4255 * while entering the data blocks in the potentially new L2 tables.
4256 * (We do not actually care where the L2 tables are placed. Maybe they
4257 * are already allocated or they can be placed somewhere before
4258 * @old_file_size. It does not matter because they will be fully
4259 * allocated automatically, so they do not need to be covered by the
4260 * preallocation. All that matters is that we will not have to allocate
4261 * new refcount structures for them.) */
4262 nb_new_l2_tables = DIV_ROUND_UP(nb_new_data_clusters,
4263 s->cluster_size / l2_entry_size(s));
4264 /* The cluster range may not be aligned to L2 boundaries, so add one L2
4265 * table for a potential head/tail */
4266 nb_new_l2_tables++;
4268 allocation_start = qcow2_refcount_area(bs, old_file_size,
4269 nb_new_data_clusters +
4270 nb_new_l2_tables,
4271 true, 0, 0);
4272 if (allocation_start < 0) {
4273 error_setg_errno(errp, -allocation_start,
4274 "Failed to resize refcount structures");
4275 ret = allocation_start;
4276 goto fail;
4279 clusters_allocated = qcow2_alloc_clusters_at(bs, allocation_start,
4280 nb_new_data_clusters);
4281 if (clusters_allocated < 0) {
4282 error_setg_errno(errp, -clusters_allocated,
4283 "Failed to allocate data clusters");
4284 ret = clusters_allocated;
4285 goto fail;
4288 assert(clusters_allocated == nb_new_data_clusters);
4290 /* Allocate the data area */
4291 new_file_size = allocation_start +
4292 nb_new_data_clusters * s->cluster_size;
4294 * Image file grows, so @exact does not matter.
4296 * If we need to zero out the new area, try first whether the protocol
4297 * driver can already take care of this.
4299 if (flags & BDRV_REQ_ZERO_WRITE) {
4300 ret = bdrv_co_truncate(bs->file, new_file_size, false, prealloc,
4301 BDRV_REQ_ZERO_WRITE, NULL);
4302 if (ret >= 0) {
4303 flags &= ~BDRV_REQ_ZERO_WRITE;
4304 /* Ensure that we read zeroes and not backing file data */
4305 subclusters_need_allocation = true;
4307 } else {
4308 ret = -1;
4310 if (ret < 0) {
4311 ret = bdrv_co_truncate(bs->file, new_file_size, false, prealloc, 0,
4312 errp);
4314 if (ret < 0) {
4315 error_prepend(errp, "Failed to resize underlying file: ");
4316 qcow2_free_clusters(bs, allocation_start,
4317 nb_new_data_clusters * s->cluster_size,
4318 QCOW2_DISCARD_OTHER);
4319 goto fail;
4322 /* Create the necessary L2 entries */
4323 host_offset = allocation_start;
4324 guest_offset = old_length;
4325 while (nb_new_data_clusters) {
4326 int64_t nb_clusters = MIN(
4327 nb_new_data_clusters,
4328 s->l2_slice_size - offset_to_l2_slice_index(s, guest_offset));
4329 unsigned cow_start_length = offset_into_cluster(s, guest_offset);
4330 QCowL2Meta allocation;
4331 guest_offset = start_of_cluster(s, guest_offset);
4332 allocation = (QCowL2Meta) {
4333 .offset = guest_offset,
4334 .alloc_offset = host_offset,
4335 .nb_clusters = nb_clusters,
4336 .cow_start = {
4337 .offset = 0,
4338 .nb_bytes = cow_start_length,
4340 .cow_end = {
4341 .offset = nb_clusters << s->cluster_bits,
4342 .nb_bytes = 0,
4344 .prealloc = !subclusters_need_allocation,
4346 qemu_co_queue_init(&allocation.dependent_requests);
4348 ret = qcow2_alloc_cluster_link_l2(bs, &allocation);
4349 if (ret < 0) {
4350 error_setg_errno(errp, -ret, "Failed to update L2 tables");
4351 qcow2_free_clusters(bs, host_offset,
4352 nb_new_data_clusters * s->cluster_size,
4353 QCOW2_DISCARD_OTHER);
4354 goto fail;
4357 guest_offset += nb_clusters * s->cluster_size;
4358 host_offset += nb_clusters * s->cluster_size;
4359 nb_new_data_clusters -= nb_clusters;
4361 break;
4364 default:
4365 g_assert_not_reached();
4368 if ((flags & BDRV_REQ_ZERO_WRITE) && offset > old_length) {
4369 uint64_t zero_start = QEMU_ALIGN_UP(old_length, s->subcluster_size);
4372 * Use zero clusters as much as we can. qcow2_subcluster_zeroize()
4373 * requires a subcluster-aligned start. The end may be unaligned if
4374 * it is at the end of the image (which it is here).
4376 if (offset > zero_start) {
4377 ret = qcow2_subcluster_zeroize(bs, zero_start, offset - zero_start,
4379 if (ret < 0) {
4380 error_setg_errno(errp, -ret, "Failed to zero out new clusters");
4381 goto fail;
4385 /* Write explicit zeros for the unaligned head */
4386 if (zero_start > old_length) {
4387 uint64_t len = MIN(zero_start, offset) - old_length;
4388 uint8_t *buf = qemu_blockalign0(bs, len);
4389 QEMUIOVector qiov;
4390 qemu_iovec_init_buf(&qiov, buf, len);
4392 qemu_co_mutex_unlock(&s->lock);
4393 ret = qcow2_co_pwritev_part(bs, old_length, len, &qiov, 0, 0);
4394 qemu_co_mutex_lock(&s->lock);
4396 qemu_vfree(buf);
4397 if (ret < 0) {
4398 error_setg_errno(errp, -ret, "Failed to zero out the new area");
4399 goto fail;
4404 if (prealloc != PREALLOC_MODE_OFF) {
4405 /* Flush metadata before actually changing the image size */
4406 ret = qcow2_write_caches(bs);
4407 if (ret < 0) {
4408 error_setg_errno(errp, -ret,
4409 "Failed to flush the preallocated area to disk");
4410 goto fail;
4414 bs->total_sectors = offset / BDRV_SECTOR_SIZE;
4416 /* write updated header.size */
4417 offset = cpu_to_be64(offset);
4418 ret = bdrv_pwrite_sync(bs->file, offsetof(QCowHeader, size),
4419 &offset, sizeof(uint64_t));
4420 if (ret < 0) {
4421 error_setg_errno(errp, -ret, "Failed to update the image size");
4422 goto fail;
4425 s->l1_vm_state_index = new_l1_size;
4427 /* Update cache sizes */
4428 options = qdict_clone_shallow(bs->options);
4429 ret = qcow2_update_options(bs, options, s->flags, errp);
4430 qobject_unref(options);
4431 if (ret < 0) {
4432 goto fail;
4434 ret = 0;
4435 fail:
4436 qemu_co_mutex_unlock(&s->lock);
4437 return ret;
4440 static coroutine_fn int
4441 qcow2_co_pwritev_compressed_task(BlockDriverState *bs,
4442 uint64_t offset, uint64_t bytes,
4443 QEMUIOVector *qiov, size_t qiov_offset)
4445 BDRVQcow2State *s = bs->opaque;
4446 int ret;
4447 ssize_t out_len;
4448 uint8_t *buf, *out_buf;
4449 uint64_t cluster_offset;
4451 assert(bytes == s->cluster_size || (bytes < s->cluster_size &&
4452 (offset + bytes == bs->total_sectors << BDRV_SECTOR_BITS)));
4454 buf = qemu_blockalign(bs, s->cluster_size);
4455 if (bytes < s->cluster_size) {
4456 /* Zero-pad last write if image size is not cluster aligned */
4457 memset(buf + bytes, 0, s->cluster_size - bytes);
4459 qemu_iovec_to_buf(qiov, qiov_offset, buf, bytes);
4461 out_buf = g_malloc(s->cluster_size);
4463 out_len = qcow2_co_compress(bs, out_buf, s->cluster_size - 1,
4464 buf, s->cluster_size);
4465 if (out_len == -ENOMEM) {
4466 /* could not compress: write normal cluster */
4467 ret = qcow2_co_pwritev_part(bs, offset, bytes, qiov, qiov_offset, 0);
4468 if (ret < 0) {
4469 goto fail;
4471 goto success;
4472 } else if (out_len < 0) {
4473 ret = -EINVAL;
4474 goto fail;
4477 qemu_co_mutex_lock(&s->lock);
4478 ret = qcow2_alloc_compressed_cluster_offset(bs, offset, out_len,
4479 &cluster_offset);
4480 if (ret < 0) {
4481 qemu_co_mutex_unlock(&s->lock);
4482 goto fail;
4485 ret = qcow2_pre_write_overlap_check(bs, 0, cluster_offset, out_len, true);
4486 qemu_co_mutex_unlock(&s->lock);
4487 if (ret < 0) {
4488 goto fail;
4491 BLKDBG_EVENT(s->data_file, BLKDBG_WRITE_COMPRESSED);
4492 ret = bdrv_co_pwrite(s->data_file, cluster_offset, out_len, out_buf, 0);
4493 if (ret < 0) {
4494 goto fail;
4496 success:
4497 ret = 0;
4498 fail:
4499 qemu_vfree(buf);
4500 g_free(out_buf);
4501 return ret;
4504 static coroutine_fn int qcow2_co_pwritev_compressed_task_entry(AioTask *task)
4506 Qcow2AioTask *t = container_of(task, Qcow2AioTask, task);
4508 assert(!t->subcluster_type && !t->l2meta);
4510 return qcow2_co_pwritev_compressed_task(t->bs, t->offset, t->bytes, t->qiov,
4511 t->qiov_offset);
4515 * XXX: put compressed sectors first, then all the cluster aligned
4516 * tables to avoid losing bytes in alignment
4518 static coroutine_fn int
4519 qcow2_co_pwritev_compressed_part(BlockDriverState *bs,
4520 uint64_t offset, uint64_t bytes,
4521 QEMUIOVector *qiov, size_t qiov_offset)
4523 BDRVQcow2State *s = bs->opaque;
4524 AioTaskPool *aio = NULL;
4525 int ret = 0;
4527 if (has_data_file(bs)) {
4528 return -ENOTSUP;
4531 if (bytes == 0) {
4533 * align end of file to a sector boundary to ease reading with
4534 * sector based I/Os
4536 int64_t len = bdrv_getlength(bs->file->bs);
4537 if (len < 0) {
4538 return len;
4540 return bdrv_co_truncate(bs->file, len, false, PREALLOC_MODE_OFF, 0,
4541 NULL);
4544 if (offset_into_cluster(s, offset)) {
4545 return -EINVAL;
4548 if (offset_into_cluster(s, bytes) &&
4549 (offset + bytes) != (bs->total_sectors << BDRV_SECTOR_BITS)) {
4550 return -EINVAL;
4553 while (bytes && aio_task_pool_status(aio) == 0) {
4554 uint64_t chunk_size = MIN(bytes, s->cluster_size);
4556 if (!aio && chunk_size != bytes) {
4557 aio = aio_task_pool_new(QCOW2_MAX_WORKERS);
4560 ret = qcow2_add_task(bs, aio, qcow2_co_pwritev_compressed_task_entry,
4561 0, 0, offset, chunk_size, qiov, qiov_offset, NULL);
4562 if (ret < 0) {
4563 break;
4565 qiov_offset += chunk_size;
4566 offset += chunk_size;
4567 bytes -= chunk_size;
4570 if (aio) {
4571 aio_task_pool_wait_all(aio);
4572 if (ret == 0) {
4573 ret = aio_task_pool_status(aio);
4575 g_free(aio);
4578 return ret;
4581 static int coroutine_fn
4582 qcow2_co_preadv_compressed(BlockDriverState *bs,
4583 uint64_t cluster_descriptor,
4584 uint64_t offset,
4585 uint64_t bytes,
4586 QEMUIOVector *qiov,
4587 size_t qiov_offset)
4589 BDRVQcow2State *s = bs->opaque;
4590 int ret = 0, csize, nb_csectors;
4591 uint64_t coffset;
4592 uint8_t *buf, *out_buf;
4593 int offset_in_cluster = offset_into_cluster(s, offset);
4595 coffset = cluster_descriptor & s->cluster_offset_mask;
4596 nb_csectors = ((cluster_descriptor >> s->csize_shift) & s->csize_mask) + 1;
4597 csize = nb_csectors * QCOW2_COMPRESSED_SECTOR_SIZE -
4598 (coffset & ~QCOW2_COMPRESSED_SECTOR_MASK);
4600 buf = g_try_malloc(csize);
4601 if (!buf) {
4602 return -ENOMEM;
4605 out_buf = qemu_blockalign(bs, s->cluster_size);
4607 BLKDBG_EVENT(bs->file, BLKDBG_READ_COMPRESSED);
4608 ret = bdrv_co_pread(bs->file, coffset, csize, buf, 0);
4609 if (ret < 0) {
4610 goto fail;
4613 if (qcow2_co_decompress(bs, out_buf, s->cluster_size, buf, csize) < 0) {
4614 ret = -EIO;
4615 goto fail;
4618 qemu_iovec_from_buf(qiov, qiov_offset, out_buf + offset_in_cluster, bytes);
4620 fail:
4621 qemu_vfree(out_buf);
4622 g_free(buf);
4624 return ret;
4627 static int make_completely_empty(BlockDriverState *bs)
4629 BDRVQcow2State *s = bs->opaque;
4630 Error *local_err = NULL;
4631 int ret, l1_clusters;
4632 int64_t offset;
4633 uint64_t *new_reftable = NULL;
4634 uint64_t rt_entry, l1_size2;
4635 struct {
4636 uint64_t l1_offset;
4637 uint64_t reftable_offset;
4638 uint32_t reftable_clusters;
4639 } QEMU_PACKED l1_ofs_rt_ofs_cls;
4641 ret = qcow2_cache_empty(bs, s->l2_table_cache);
4642 if (ret < 0) {
4643 goto fail;
4646 ret = qcow2_cache_empty(bs, s->refcount_block_cache);
4647 if (ret < 0) {
4648 goto fail;
4651 /* Refcounts will be broken utterly */
4652 ret = qcow2_mark_dirty(bs);
4653 if (ret < 0) {
4654 goto fail;
4657 BLKDBG_EVENT(bs->file, BLKDBG_L1_UPDATE);
4659 l1_clusters = DIV_ROUND_UP(s->l1_size, s->cluster_size / sizeof(uint64_t));
4660 l1_size2 = (uint64_t)s->l1_size * sizeof(uint64_t);
4662 /* After this call, neither the in-memory nor the on-disk refcount
4663 * information accurately describe the actual references */
4665 ret = bdrv_pwrite_zeroes(bs->file, s->l1_table_offset,
4666 l1_clusters * s->cluster_size, 0);
4667 if (ret < 0) {
4668 goto fail_broken_refcounts;
4670 memset(s->l1_table, 0, l1_size2);
4672 BLKDBG_EVENT(bs->file, BLKDBG_EMPTY_IMAGE_PREPARE);
4674 /* Overwrite enough clusters at the beginning of the sectors to place
4675 * the refcount table, a refcount block and the L1 table in; this may
4676 * overwrite parts of the existing refcount and L1 table, which is not
4677 * an issue because the dirty flag is set, complete data loss is in fact
4678 * desired and partial data loss is consequently fine as well */
4679 ret = bdrv_pwrite_zeroes(bs->file, s->cluster_size,
4680 (2 + l1_clusters) * s->cluster_size, 0);
4681 /* This call (even if it failed overall) may have overwritten on-disk
4682 * refcount structures; in that case, the in-memory refcount information
4683 * will probably differ from the on-disk information which makes the BDS
4684 * unusable */
4685 if (ret < 0) {
4686 goto fail_broken_refcounts;
4689 BLKDBG_EVENT(bs->file, BLKDBG_L1_UPDATE);
4690 BLKDBG_EVENT(bs->file, BLKDBG_REFTABLE_UPDATE);
4692 /* "Create" an empty reftable (one cluster) directly after the image
4693 * header and an empty L1 table three clusters after the image header;
4694 * the cluster between those two will be used as the first refblock */
4695 l1_ofs_rt_ofs_cls.l1_offset = cpu_to_be64(3 * s->cluster_size);
4696 l1_ofs_rt_ofs_cls.reftable_offset = cpu_to_be64(s->cluster_size);
4697 l1_ofs_rt_ofs_cls.reftable_clusters = cpu_to_be32(1);
4698 ret = bdrv_pwrite_sync(bs->file, offsetof(QCowHeader, l1_table_offset),
4699 &l1_ofs_rt_ofs_cls, sizeof(l1_ofs_rt_ofs_cls));
4700 if (ret < 0) {
4701 goto fail_broken_refcounts;
4704 s->l1_table_offset = 3 * s->cluster_size;
4706 new_reftable = g_try_new0(uint64_t, s->cluster_size / sizeof(uint64_t));
4707 if (!new_reftable) {
4708 ret = -ENOMEM;
4709 goto fail_broken_refcounts;
4712 s->refcount_table_offset = s->cluster_size;
4713 s->refcount_table_size = s->cluster_size / sizeof(uint64_t);
4714 s->max_refcount_table_index = 0;
4716 g_free(s->refcount_table);
4717 s->refcount_table = new_reftable;
4718 new_reftable = NULL;
4720 /* Now the in-memory refcount information again corresponds to the on-disk
4721 * information (reftable is empty and no refblocks (the refblock cache is
4722 * empty)); however, this means some clusters (e.g. the image header) are
4723 * referenced, but not refcounted, but the normal qcow2 code assumes that
4724 * the in-memory information is always correct */
4726 BLKDBG_EVENT(bs->file, BLKDBG_REFBLOCK_ALLOC);
4728 /* Enter the first refblock into the reftable */
4729 rt_entry = cpu_to_be64(2 * s->cluster_size);
4730 ret = bdrv_pwrite_sync(bs->file, s->cluster_size,
4731 &rt_entry, sizeof(rt_entry));
4732 if (ret < 0) {
4733 goto fail_broken_refcounts;
4735 s->refcount_table[0] = 2 * s->cluster_size;
4737 s->free_cluster_index = 0;
4738 assert(3 + l1_clusters <= s->refcount_block_size);
4739 offset = qcow2_alloc_clusters(bs, 3 * s->cluster_size + l1_size2);
4740 if (offset < 0) {
4741 ret = offset;
4742 goto fail_broken_refcounts;
4743 } else if (offset > 0) {
4744 error_report("First cluster in emptied image is in use");
4745 abort();
4748 /* Now finally the in-memory information corresponds to the on-disk
4749 * structures and is correct */
4750 ret = qcow2_mark_clean(bs);
4751 if (ret < 0) {
4752 goto fail;
4755 ret = bdrv_truncate(bs->file, (3 + l1_clusters) * s->cluster_size, false,
4756 PREALLOC_MODE_OFF, 0, &local_err);
4757 if (ret < 0) {
4758 error_report_err(local_err);
4759 goto fail;
4762 return 0;
4764 fail_broken_refcounts:
4765 /* The BDS is unusable at this point. If we wanted to make it usable, we
4766 * would have to call qcow2_refcount_close(), qcow2_refcount_init(),
4767 * qcow2_check_refcounts(), qcow2_refcount_close() and qcow2_refcount_init()
4768 * again. However, because the functions which could have caused this error
4769 * path to be taken are used by those functions as well, it's very likely
4770 * that that sequence will fail as well. Therefore, just eject the BDS. */
4771 bs->drv = NULL;
4773 fail:
4774 g_free(new_reftable);
4775 return ret;
4778 static int qcow2_make_empty(BlockDriverState *bs)
4780 BDRVQcow2State *s = bs->opaque;
4781 uint64_t offset, end_offset;
4782 int step = QEMU_ALIGN_DOWN(INT_MAX, s->cluster_size);
4783 int l1_clusters, ret = 0;
4785 l1_clusters = DIV_ROUND_UP(s->l1_size, s->cluster_size / sizeof(uint64_t));
4787 if (s->qcow_version >= 3 && !s->snapshots && !s->nb_bitmaps &&
4788 3 + l1_clusters <= s->refcount_block_size &&
4789 s->crypt_method_header != QCOW_CRYPT_LUKS &&
4790 !has_data_file(bs)) {
4791 /* The following function only works for qcow2 v3 images (it
4792 * requires the dirty flag) and only as long as there are no
4793 * features that reserve extra clusters (such as snapshots,
4794 * LUKS header, or persistent bitmaps), because it completely
4795 * empties the image. Furthermore, the L1 table and three
4796 * additional clusters (image header, refcount table, one
4797 * refcount block) have to fit inside one refcount block. It
4798 * only resets the image file, i.e. does not work with an
4799 * external data file. */
4800 return make_completely_empty(bs);
4803 /* This fallback code simply discards every active cluster; this is slow,
4804 * but works in all cases */
4805 end_offset = bs->total_sectors * BDRV_SECTOR_SIZE;
4806 for (offset = 0; offset < end_offset; offset += step) {
4807 /* As this function is generally used after committing an external
4808 * snapshot, QCOW2_DISCARD_SNAPSHOT seems appropriate. Also, the
4809 * default action for this kind of discard is to pass the discard,
4810 * which will ideally result in an actually smaller image file, as
4811 * is probably desired. */
4812 ret = qcow2_cluster_discard(bs, offset, MIN(step, end_offset - offset),
4813 QCOW2_DISCARD_SNAPSHOT, true);
4814 if (ret < 0) {
4815 break;
4819 return ret;
4822 static coroutine_fn int qcow2_co_flush_to_os(BlockDriverState *bs)
4824 BDRVQcow2State *s = bs->opaque;
4825 int ret;
4827 qemu_co_mutex_lock(&s->lock);
4828 ret = qcow2_write_caches(bs);
4829 qemu_co_mutex_unlock(&s->lock);
4831 return ret;
4834 static BlockMeasureInfo *qcow2_measure(QemuOpts *opts, BlockDriverState *in_bs,
4835 Error **errp)
4837 Error *local_err = NULL;
4838 BlockMeasureInfo *info;
4839 uint64_t required = 0; /* bytes that contribute to required size */
4840 uint64_t virtual_size; /* disk size as seen by guest */
4841 uint64_t refcount_bits;
4842 uint64_t l2_tables;
4843 uint64_t luks_payload_size = 0;
4844 size_t cluster_size;
4845 int version;
4846 char *optstr;
4847 PreallocMode prealloc;
4848 bool has_backing_file;
4849 bool has_luks;
4850 bool extended_l2 = false; /* Set to false until the option is added */
4851 size_t l2e_size;
4853 /* Parse image creation options */
4854 cluster_size = qcow2_opt_get_cluster_size_del(opts, &local_err);
4855 if (local_err) {
4856 goto err;
4859 version = qcow2_opt_get_version_del(opts, &local_err);
4860 if (local_err) {
4861 goto err;
4864 refcount_bits = qcow2_opt_get_refcount_bits_del(opts, version, &local_err);
4865 if (local_err) {
4866 goto err;
4869 optstr = qemu_opt_get_del(opts, BLOCK_OPT_PREALLOC);
4870 prealloc = qapi_enum_parse(&PreallocMode_lookup, optstr,
4871 PREALLOC_MODE_OFF, &local_err);
4872 g_free(optstr);
4873 if (local_err) {
4874 goto err;
4877 optstr = qemu_opt_get_del(opts, BLOCK_OPT_BACKING_FILE);
4878 has_backing_file = !!optstr;
4879 g_free(optstr);
4881 optstr = qemu_opt_get_del(opts, BLOCK_OPT_ENCRYPT_FORMAT);
4882 has_luks = optstr && strcmp(optstr, "luks") == 0;
4883 g_free(optstr);
4885 if (has_luks) {
4886 g_autoptr(QCryptoBlockCreateOptions) create_opts = NULL;
4887 QDict *cryptoopts = qcow2_extract_crypto_opts(opts, "luks", errp);
4888 size_t headerlen;
4890 create_opts = block_crypto_create_opts_init(cryptoopts, errp);
4891 qobject_unref(cryptoopts);
4892 if (!create_opts) {
4893 goto err;
4896 if (!qcrypto_block_calculate_payload_offset(create_opts,
4897 "encrypt.",
4898 &headerlen,
4899 &local_err)) {
4900 goto err;
4903 luks_payload_size = ROUND_UP(headerlen, cluster_size);
4906 virtual_size = qemu_opt_get_size_del(opts, BLOCK_OPT_SIZE, 0);
4907 virtual_size = ROUND_UP(virtual_size, cluster_size);
4909 /* Check that virtual disk size is valid */
4910 l2e_size = extended_l2 ? L2E_SIZE_EXTENDED : L2E_SIZE_NORMAL;
4911 l2_tables = DIV_ROUND_UP(virtual_size / cluster_size,
4912 cluster_size / l2e_size);
4913 if (l2_tables * sizeof(uint64_t) > QCOW_MAX_L1_SIZE) {
4914 error_setg(&local_err, "The image size is too large "
4915 "(try using a larger cluster size)");
4916 goto err;
4919 /* Account for input image */
4920 if (in_bs) {
4921 int64_t ssize = bdrv_getlength(in_bs);
4922 if (ssize < 0) {
4923 error_setg_errno(&local_err, -ssize,
4924 "Unable to get image virtual_size");
4925 goto err;
4928 virtual_size = ROUND_UP(ssize, cluster_size);
4930 if (has_backing_file) {
4931 /* We don't how much of the backing chain is shared by the input
4932 * image and the new image file. In the worst case the new image's
4933 * backing file has nothing in common with the input image. Be
4934 * conservative and assume all clusters need to be written.
4936 required = virtual_size;
4937 } else {
4938 int64_t offset;
4939 int64_t pnum = 0;
4941 for (offset = 0; offset < ssize; offset += pnum) {
4942 int ret;
4944 ret = bdrv_block_status_above(in_bs, NULL, offset,
4945 ssize - offset, &pnum, NULL,
4946 NULL);
4947 if (ret < 0) {
4948 error_setg_errno(&local_err, -ret,
4949 "Unable to get block status");
4950 goto err;
4953 if (ret & BDRV_BLOCK_ZERO) {
4954 /* Skip zero regions (safe with no backing file) */
4955 } else if ((ret & (BDRV_BLOCK_DATA | BDRV_BLOCK_ALLOCATED)) ==
4956 (BDRV_BLOCK_DATA | BDRV_BLOCK_ALLOCATED)) {
4957 /* Extend pnum to end of cluster for next iteration */
4958 pnum = ROUND_UP(offset + pnum, cluster_size) - offset;
4960 /* Count clusters we've seen */
4961 required += offset % cluster_size + pnum;
4967 /* Take into account preallocation. Nothing special is needed for
4968 * PREALLOC_MODE_METADATA since metadata is always counted.
4970 if (prealloc == PREALLOC_MODE_FULL || prealloc == PREALLOC_MODE_FALLOC) {
4971 required = virtual_size;
4974 info = g_new0(BlockMeasureInfo, 1);
4975 info->fully_allocated = luks_payload_size +
4976 qcow2_calc_prealloc_size(virtual_size, cluster_size,
4977 ctz32(refcount_bits), extended_l2);
4980 * Remove data clusters that are not required. This overestimates the
4981 * required size because metadata needed for the fully allocated file is
4982 * still counted. Show bitmaps only if both source and destination
4983 * would support them.
4985 info->required = info->fully_allocated - virtual_size + required;
4986 info->has_bitmaps = version >= 3 && in_bs &&
4987 bdrv_supports_persistent_dirty_bitmap(in_bs);
4988 if (info->has_bitmaps) {
4989 info->bitmaps = qcow2_get_persistent_dirty_bitmap_size(in_bs,
4990 cluster_size);
4992 return info;
4994 err:
4995 error_propagate(errp, local_err);
4996 return NULL;
4999 static int qcow2_get_info(BlockDriverState *bs, BlockDriverInfo *bdi)
5001 BDRVQcow2State *s = bs->opaque;
5002 bdi->cluster_size = s->cluster_size;
5003 bdi->vm_state_offset = qcow2_vm_state_offset(s);
5004 return 0;
5007 static ImageInfoSpecific *qcow2_get_specific_info(BlockDriverState *bs,
5008 Error **errp)
5010 BDRVQcow2State *s = bs->opaque;
5011 ImageInfoSpecific *spec_info;
5012 QCryptoBlockInfo *encrypt_info = NULL;
5013 Error *local_err = NULL;
5015 if (s->crypto != NULL) {
5016 encrypt_info = qcrypto_block_get_info(s->crypto, &local_err);
5017 if (local_err) {
5018 error_propagate(errp, local_err);
5019 return NULL;
5023 spec_info = g_new(ImageInfoSpecific, 1);
5024 *spec_info = (ImageInfoSpecific){
5025 .type = IMAGE_INFO_SPECIFIC_KIND_QCOW2,
5026 .u.qcow2.data = g_new0(ImageInfoSpecificQCow2, 1),
5028 if (s->qcow_version == 2) {
5029 *spec_info->u.qcow2.data = (ImageInfoSpecificQCow2){
5030 .compat = g_strdup("0.10"),
5031 .refcount_bits = s->refcount_bits,
5033 } else if (s->qcow_version == 3) {
5034 Qcow2BitmapInfoList *bitmaps;
5035 bitmaps = qcow2_get_bitmap_info_list(bs, &local_err);
5036 if (local_err) {
5037 error_propagate(errp, local_err);
5038 qapi_free_ImageInfoSpecific(spec_info);
5039 qapi_free_QCryptoBlockInfo(encrypt_info);
5040 return NULL;
5042 *spec_info->u.qcow2.data = (ImageInfoSpecificQCow2){
5043 .compat = g_strdup("1.1"),
5044 .lazy_refcounts = s->compatible_features &
5045 QCOW2_COMPAT_LAZY_REFCOUNTS,
5046 .has_lazy_refcounts = true,
5047 .corrupt = s->incompatible_features &
5048 QCOW2_INCOMPAT_CORRUPT,
5049 .has_corrupt = true,
5050 .refcount_bits = s->refcount_bits,
5051 .has_bitmaps = !!bitmaps,
5052 .bitmaps = bitmaps,
5053 .has_data_file = !!s->image_data_file,
5054 .data_file = g_strdup(s->image_data_file),
5055 .has_data_file_raw = has_data_file(bs),
5056 .data_file_raw = data_file_is_raw(bs),
5057 .compression_type = s->compression_type,
5059 } else {
5060 /* if this assertion fails, this probably means a new version was
5061 * added without having it covered here */
5062 assert(false);
5065 if (encrypt_info) {
5066 ImageInfoSpecificQCow2Encryption *qencrypt =
5067 g_new(ImageInfoSpecificQCow2Encryption, 1);
5068 switch (encrypt_info->format) {
5069 case Q_CRYPTO_BLOCK_FORMAT_QCOW:
5070 qencrypt->format = BLOCKDEV_QCOW2_ENCRYPTION_FORMAT_AES;
5071 break;
5072 case Q_CRYPTO_BLOCK_FORMAT_LUKS:
5073 qencrypt->format = BLOCKDEV_QCOW2_ENCRYPTION_FORMAT_LUKS;
5074 qencrypt->u.luks = encrypt_info->u.luks;
5075 break;
5076 default:
5077 abort();
5079 /* Since we did shallow copy above, erase any pointers
5080 * in the original info */
5081 memset(&encrypt_info->u, 0, sizeof(encrypt_info->u));
5082 qapi_free_QCryptoBlockInfo(encrypt_info);
5084 spec_info->u.qcow2.data->has_encrypt = true;
5085 spec_info->u.qcow2.data->encrypt = qencrypt;
5088 return spec_info;
5091 static int qcow2_has_zero_init(BlockDriverState *bs)
5093 BDRVQcow2State *s = bs->opaque;
5094 bool preallocated;
5096 if (qemu_in_coroutine()) {
5097 qemu_co_mutex_lock(&s->lock);
5100 * Check preallocation status: Preallocated images have all L2
5101 * tables allocated, nonpreallocated images have none. It is
5102 * therefore enough to check the first one.
5104 preallocated = s->l1_size > 0 && s->l1_table[0] != 0;
5105 if (qemu_in_coroutine()) {
5106 qemu_co_mutex_unlock(&s->lock);
5109 if (!preallocated) {
5110 return 1;
5111 } else if (bs->encrypted) {
5112 return 0;
5113 } else {
5114 return bdrv_has_zero_init(s->data_file->bs);
5118 static int qcow2_save_vmstate(BlockDriverState *bs, QEMUIOVector *qiov,
5119 int64_t pos)
5121 BDRVQcow2State *s = bs->opaque;
5123 BLKDBG_EVENT(bs->file, BLKDBG_VMSTATE_SAVE);
5124 return bs->drv->bdrv_co_pwritev_part(bs, qcow2_vm_state_offset(s) + pos,
5125 qiov->size, qiov, 0, 0);
5128 static int qcow2_load_vmstate(BlockDriverState *bs, QEMUIOVector *qiov,
5129 int64_t pos)
5131 BDRVQcow2State *s = bs->opaque;
5133 BLKDBG_EVENT(bs->file, BLKDBG_VMSTATE_LOAD);
5134 return bs->drv->bdrv_co_preadv_part(bs, qcow2_vm_state_offset(s) + pos,
5135 qiov->size, qiov, 0, 0);
5139 * Downgrades an image's version. To achieve this, any incompatible features
5140 * have to be removed.
5142 static int qcow2_downgrade(BlockDriverState *bs, int target_version,
5143 BlockDriverAmendStatusCB *status_cb, void *cb_opaque,
5144 Error **errp)
5146 BDRVQcow2State *s = bs->opaque;
5147 int current_version = s->qcow_version;
5148 int ret;
5149 int i;
5151 /* This is qcow2_downgrade(), not qcow2_upgrade() */
5152 assert(target_version < current_version);
5154 /* There are no other versions (now) that you can downgrade to */
5155 assert(target_version == 2);
5157 if (s->refcount_order != 4) {
5158 error_setg(errp, "compat=0.10 requires refcount_bits=16");
5159 return -ENOTSUP;
5162 if (has_data_file(bs)) {
5163 error_setg(errp, "Cannot downgrade an image with a data file");
5164 return -ENOTSUP;
5168 * If any internal snapshot has a different size than the current
5169 * image size, or VM state size that exceeds 32 bits, downgrading
5170 * is unsafe. Even though we would still use v3-compliant output
5171 * to preserve that data, other v2 programs might not realize
5172 * those optional fields are important.
5174 for (i = 0; i < s->nb_snapshots; i++) {
5175 if (s->snapshots[i].vm_state_size > UINT32_MAX ||
5176 s->snapshots[i].disk_size != bs->total_sectors * BDRV_SECTOR_SIZE) {
5177 error_setg(errp, "Internal snapshots prevent downgrade of image");
5178 return -ENOTSUP;
5182 /* clear incompatible features */
5183 if (s->incompatible_features & QCOW2_INCOMPAT_DIRTY) {
5184 ret = qcow2_mark_clean(bs);
5185 if (ret < 0) {
5186 error_setg_errno(errp, -ret, "Failed to make the image clean");
5187 return ret;
5191 /* with QCOW2_INCOMPAT_CORRUPT, it is pretty much impossible to get here in
5192 * the first place; if that happens nonetheless, returning -ENOTSUP is the
5193 * best thing to do anyway */
5195 if (s->incompatible_features) {
5196 error_setg(errp, "Cannot downgrade an image with incompatible features "
5197 "%#" PRIx64 " set", s->incompatible_features);
5198 return -ENOTSUP;
5201 /* since we can ignore compatible features, we can set them to 0 as well */
5202 s->compatible_features = 0;
5203 /* if lazy refcounts have been used, they have already been fixed through
5204 * clearing the dirty flag */
5206 /* clearing autoclear features is trivial */
5207 s->autoclear_features = 0;
5209 ret = qcow2_expand_zero_clusters(bs, status_cb, cb_opaque);
5210 if (ret < 0) {
5211 error_setg_errno(errp, -ret, "Failed to turn zero into data clusters");
5212 return ret;
5215 s->qcow_version = target_version;
5216 ret = qcow2_update_header(bs);
5217 if (ret < 0) {
5218 s->qcow_version = current_version;
5219 error_setg_errno(errp, -ret, "Failed to update the image header");
5220 return ret;
5222 return 0;
5226 * Upgrades an image's version. While newer versions encompass all
5227 * features of older versions, some things may have to be presented
5228 * differently.
5230 static int qcow2_upgrade(BlockDriverState *bs, int target_version,
5231 BlockDriverAmendStatusCB *status_cb, void *cb_opaque,
5232 Error **errp)
5234 BDRVQcow2State *s = bs->opaque;
5235 bool need_snapshot_update;
5236 int current_version = s->qcow_version;
5237 int i;
5238 int ret;
5240 /* This is qcow2_upgrade(), not qcow2_downgrade() */
5241 assert(target_version > current_version);
5243 /* There are no other versions (yet) that you can upgrade to */
5244 assert(target_version == 3);
5246 status_cb(bs, 0, 2, cb_opaque);
5249 * In v2, snapshots do not need to have extra data. v3 requires
5250 * the 64-bit VM state size and the virtual disk size to be
5251 * present.
5252 * qcow2_write_snapshots() will always write the list in the
5253 * v3-compliant format.
5255 need_snapshot_update = false;
5256 for (i = 0; i < s->nb_snapshots; i++) {
5257 if (s->snapshots[i].extra_data_size <
5258 sizeof_field(QCowSnapshotExtraData, vm_state_size_large) +
5259 sizeof_field(QCowSnapshotExtraData, disk_size))
5261 need_snapshot_update = true;
5262 break;
5265 if (need_snapshot_update) {
5266 ret = qcow2_write_snapshots(bs);
5267 if (ret < 0) {
5268 error_setg_errno(errp, -ret, "Failed to update the snapshot table");
5269 return ret;
5272 status_cb(bs, 1, 2, cb_opaque);
5274 s->qcow_version = target_version;
5275 ret = qcow2_update_header(bs);
5276 if (ret < 0) {
5277 s->qcow_version = current_version;
5278 error_setg_errno(errp, -ret, "Failed to update the image header");
5279 return ret;
5281 status_cb(bs, 2, 2, cb_opaque);
5283 return 0;
5286 typedef enum Qcow2AmendOperation {
5287 /* This is the value Qcow2AmendHelperCBInfo::last_operation will be
5288 * statically initialized to so that the helper CB can discern the first
5289 * invocation from an operation change */
5290 QCOW2_NO_OPERATION = 0,
5292 QCOW2_UPGRADING,
5293 QCOW2_UPDATING_ENCRYPTION,
5294 QCOW2_CHANGING_REFCOUNT_ORDER,
5295 QCOW2_DOWNGRADING,
5296 } Qcow2AmendOperation;
5298 typedef struct Qcow2AmendHelperCBInfo {
5299 /* The code coordinating the amend operations should only modify
5300 * these four fields; the rest will be managed by the CB */
5301 BlockDriverAmendStatusCB *original_status_cb;
5302 void *original_cb_opaque;
5304 Qcow2AmendOperation current_operation;
5306 /* Total number of operations to perform (only set once) */
5307 int total_operations;
5309 /* The following fields are managed by the CB */
5311 /* Number of operations completed */
5312 int operations_completed;
5314 /* Cumulative offset of all completed operations */
5315 int64_t offset_completed;
5317 Qcow2AmendOperation last_operation;
5318 int64_t last_work_size;
5319 } Qcow2AmendHelperCBInfo;
5321 static void qcow2_amend_helper_cb(BlockDriverState *bs,
5322 int64_t operation_offset,
5323 int64_t operation_work_size, void *opaque)
5325 Qcow2AmendHelperCBInfo *info = opaque;
5326 int64_t current_work_size;
5327 int64_t projected_work_size;
5329 if (info->current_operation != info->last_operation) {
5330 if (info->last_operation != QCOW2_NO_OPERATION) {
5331 info->offset_completed += info->last_work_size;
5332 info->operations_completed++;
5335 info->last_operation = info->current_operation;
5338 assert(info->total_operations > 0);
5339 assert(info->operations_completed < info->total_operations);
5341 info->last_work_size = operation_work_size;
5343 current_work_size = info->offset_completed + operation_work_size;
5345 /* current_work_size is the total work size for (operations_completed + 1)
5346 * operations (which includes this one), so multiply it by the number of
5347 * operations not covered and divide it by the number of operations
5348 * covered to get a projection for the operations not covered */
5349 projected_work_size = current_work_size * (info->total_operations -
5350 info->operations_completed - 1)
5351 / (info->operations_completed + 1);
5353 info->original_status_cb(bs, info->offset_completed + operation_offset,
5354 current_work_size + projected_work_size,
5355 info->original_cb_opaque);
5358 static int qcow2_amend_options(BlockDriverState *bs, QemuOpts *opts,
5359 BlockDriverAmendStatusCB *status_cb,
5360 void *cb_opaque,
5361 bool force,
5362 Error **errp)
5364 BDRVQcow2State *s = bs->opaque;
5365 int old_version = s->qcow_version, new_version = old_version;
5366 uint64_t new_size = 0;
5367 const char *backing_file = NULL, *backing_format = NULL, *data_file = NULL;
5368 bool lazy_refcounts = s->use_lazy_refcounts;
5369 bool data_file_raw = data_file_is_raw(bs);
5370 const char *compat = NULL;
5371 int refcount_bits = s->refcount_bits;
5372 int ret;
5373 QemuOptDesc *desc = opts->list->desc;
5374 Qcow2AmendHelperCBInfo helper_cb_info;
5375 bool encryption_update = false;
5377 while (desc && desc->name) {
5378 if (!qemu_opt_find(opts, desc->name)) {
5379 /* only change explicitly defined options */
5380 desc++;
5381 continue;
5384 if (!strcmp(desc->name, BLOCK_OPT_COMPAT_LEVEL)) {
5385 compat = qemu_opt_get(opts, BLOCK_OPT_COMPAT_LEVEL);
5386 if (!compat) {
5387 /* preserve default */
5388 } else if (!strcmp(compat, "0.10") || !strcmp(compat, "v2")) {
5389 new_version = 2;
5390 } else if (!strcmp(compat, "1.1") || !strcmp(compat, "v3")) {
5391 new_version = 3;
5392 } else {
5393 error_setg(errp, "Unknown compatibility level %s", compat);
5394 return -EINVAL;
5396 } else if (!strcmp(desc->name, BLOCK_OPT_SIZE)) {
5397 new_size = qemu_opt_get_size(opts, BLOCK_OPT_SIZE, 0);
5398 } else if (!strcmp(desc->name, BLOCK_OPT_BACKING_FILE)) {
5399 backing_file = qemu_opt_get(opts, BLOCK_OPT_BACKING_FILE);
5400 } else if (!strcmp(desc->name, BLOCK_OPT_BACKING_FMT)) {
5401 backing_format = qemu_opt_get(opts, BLOCK_OPT_BACKING_FMT);
5402 } else if (g_str_has_prefix(desc->name, "encrypt.")) {
5403 if (!s->crypto) {
5404 error_setg(errp,
5405 "Can't amend encryption options - encryption not present");
5406 return -EINVAL;
5408 if (s->crypt_method_header != QCOW_CRYPT_LUKS) {
5409 error_setg(errp,
5410 "Only LUKS encryption options can be amended");
5411 return -ENOTSUP;
5413 encryption_update = true;
5414 } else if (!strcmp(desc->name, BLOCK_OPT_LAZY_REFCOUNTS)) {
5415 lazy_refcounts = qemu_opt_get_bool(opts, BLOCK_OPT_LAZY_REFCOUNTS,
5416 lazy_refcounts);
5417 } else if (!strcmp(desc->name, BLOCK_OPT_REFCOUNT_BITS)) {
5418 refcount_bits = qemu_opt_get_number(opts, BLOCK_OPT_REFCOUNT_BITS,
5419 refcount_bits);
5421 if (refcount_bits <= 0 || refcount_bits > 64 ||
5422 !is_power_of_2(refcount_bits))
5424 error_setg(errp, "Refcount width must be a power of two and "
5425 "may not exceed 64 bits");
5426 return -EINVAL;
5428 } else if (!strcmp(desc->name, BLOCK_OPT_DATA_FILE)) {
5429 data_file = qemu_opt_get(opts, BLOCK_OPT_DATA_FILE);
5430 if (data_file && !has_data_file(bs)) {
5431 error_setg(errp, "data-file can only be set for images that "
5432 "use an external data file");
5433 return -EINVAL;
5435 } else if (!strcmp(desc->name, BLOCK_OPT_DATA_FILE_RAW)) {
5436 data_file_raw = qemu_opt_get_bool(opts, BLOCK_OPT_DATA_FILE_RAW,
5437 data_file_raw);
5438 if (data_file_raw && !data_file_is_raw(bs)) {
5439 error_setg(errp, "data-file-raw cannot be set on existing "
5440 "images");
5441 return -EINVAL;
5443 } else {
5444 /* if this point is reached, this probably means a new option was
5445 * added without having it covered here */
5446 abort();
5449 desc++;
5452 helper_cb_info = (Qcow2AmendHelperCBInfo){
5453 .original_status_cb = status_cb,
5454 .original_cb_opaque = cb_opaque,
5455 .total_operations = (new_version != old_version)
5456 + (s->refcount_bits != refcount_bits) +
5457 (encryption_update == true)
5460 /* Upgrade first (some features may require compat=1.1) */
5461 if (new_version > old_version) {
5462 helper_cb_info.current_operation = QCOW2_UPGRADING;
5463 ret = qcow2_upgrade(bs, new_version, &qcow2_amend_helper_cb,
5464 &helper_cb_info, errp);
5465 if (ret < 0) {
5466 return ret;
5470 if (encryption_update) {
5471 QDict *amend_opts_dict;
5472 QCryptoBlockAmendOptions *amend_opts;
5474 helper_cb_info.current_operation = QCOW2_UPDATING_ENCRYPTION;
5475 amend_opts_dict = qcow2_extract_crypto_opts(opts, "luks", errp);
5476 if (!amend_opts_dict) {
5477 return -EINVAL;
5479 amend_opts = block_crypto_amend_opts_init(amend_opts_dict, errp);
5480 qobject_unref(amend_opts_dict);
5481 if (!amend_opts) {
5482 return -EINVAL;
5484 ret = qcrypto_block_amend_options(s->crypto,
5485 qcow2_crypto_hdr_read_func,
5486 qcow2_crypto_hdr_write_func,
5488 amend_opts,
5489 force,
5490 errp);
5491 qapi_free_QCryptoBlockAmendOptions(amend_opts);
5492 if (ret < 0) {
5493 return ret;
5497 if (s->refcount_bits != refcount_bits) {
5498 int refcount_order = ctz32(refcount_bits);
5500 if (new_version < 3 && refcount_bits != 16) {
5501 error_setg(errp, "Refcount widths other than 16 bits require "
5502 "compatibility level 1.1 or above (use compat=1.1 or "
5503 "greater)");
5504 return -EINVAL;
5507 helper_cb_info.current_operation = QCOW2_CHANGING_REFCOUNT_ORDER;
5508 ret = qcow2_change_refcount_order(bs, refcount_order,
5509 &qcow2_amend_helper_cb,
5510 &helper_cb_info, errp);
5511 if (ret < 0) {
5512 return ret;
5516 /* data-file-raw blocks backing files, so clear it first if requested */
5517 if (data_file_raw) {
5518 s->autoclear_features |= QCOW2_AUTOCLEAR_DATA_FILE_RAW;
5519 } else {
5520 s->autoclear_features &= ~QCOW2_AUTOCLEAR_DATA_FILE_RAW;
5523 if (data_file) {
5524 g_free(s->image_data_file);
5525 s->image_data_file = *data_file ? g_strdup(data_file) : NULL;
5528 ret = qcow2_update_header(bs);
5529 if (ret < 0) {
5530 error_setg_errno(errp, -ret, "Failed to update the image header");
5531 return ret;
5534 if (backing_file || backing_format) {
5535 if (g_strcmp0(backing_file, s->image_backing_file) ||
5536 g_strcmp0(backing_format, s->image_backing_format)) {
5537 warn_report("Deprecated use of amend to alter the backing file; "
5538 "use qemu-img rebase instead");
5540 ret = qcow2_change_backing_file(bs,
5541 backing_file ?: s->image_backing_file,
5542 backing_format ?: s->image_backing_format);
5543 if (ret < 0) {
5544 error_setg_errno(errp, -ret, "Failed to change the backing file");
5545 return ret;
5549 if (s->use_lazy_refcounts != lazy_refcounts) {
5550 if (lazy_refcounts) {
5551 if (new_version < 3) {
5552 error_setg(errp, "Lazy refcounts only supported with "
5553 "compatibility level 1.1 and above (use compat=1.1 "
5554 "or greater)");
5555 return -EINVAL;
5557 s->compatible_features |= QCOW2_COMPAT_LAZY_REFCOUNTS;
5558 ret = qcow2_update_header(bs);
5559 if (ret < 0) {
5560 s->compatible_features &= ~QCOW2_COMPAT_LAZY_REFCOUNTS;
5561 error_setg_errno(errp, -ret, "Failed to update the image header");
5562 return ret;
5564 s->use_lazy_refcounts = true;
5565 } else {
5566 /* make image clean first */
5567 ret = qcow2_mark_clean(bs);
5568 if (ret < 0) {
5569 error_setg_errno(errp, -ret, "Failed to make the image clean");
5570 return ret;
5572 /* now disallow lazy refcounts */
5573 s->compatible_features &= ~QCOW2_COMPAT_LAZY_REFCOUNTS;
5574 ret = qcow2_update_header(bs);
5575 if (ret < 0) {
5576 s->compatible_features |= QCOW2_COMPAT_LAZY_REFCOUNTS;
5577 error_setg_errno(errp, -ret, "Failed to update the image header");
5578 return ret;
5580 s->use_lazy_refcounts = false;
5584 if (new_size) {
5585 BlockBackend *blk = blk_new_with_bs(bs, BLK_PERM_RESIZE, BLK_PERM_ALL,
5586 errp);
5587 if (!blk) {
5588 return -EPERM;
5592 * Amending image options should ensure that the image has
5593 * exactly the given new values, so pass exact=true here.
5595 ret = blk_truncate(blk, new_size, true, PREALLOC_MODE_OFF, 0, errp);
5596 blk_unref(blk);
5597 if (ret < 0) {
5598 return ret;
5602 /* Downgrade last (so unsupported features can be removed before) */
5603 if (new_version < old_version) {
5604 helper_cb_info.current_operation = QCOW2_DOWNGRADING;
5605 ret = qcow2_downgrade(bs, new_version, &qcow2_amend_helper_cb,
5606 &helper_cb_info, errp);
5607 if (ret < 0) {
5608 return ret;
5612 return 0;
5615 static int coroutine_fn qcow2_co_amend(BlockDriverState *bs,
5616 BlockdevAmendOptions *opts,
5617 bool force,
5618 Error **errp)
5620 BlockdevAmendOptionsQcow2 *qopts = &opts->u.qcow2;
5621 BDRVQcow2State *s = bs->opaque;
5622 int ret = 0;
5624 if (qopts->has_encrypt) {
5625 if (!s->crypto) {
5626 error_setg(errp, "image is not encrypted, can't amend");
5627 return -EOPNOTSUPP;
5630 if (qopts->encrypt->format != Q_CRYPTO_BLOCK_FORMAT_LUKS) {
5631 error_setg(errp,
5632 "Amend can't be used to change the qcow2 encryption format");
5633 return -EOPNOTSUPP;
5636 if (s->crypt_method_header != QCOW_CRYPT_LUKS) {
5637 error_setg(errp,
5638 "Only LUKS encryption options can be amended for qcow2 with blockdev-amend");
5639 return -EOPNOTSUPP;
5642 ret = qcrypto_block_amend_options(s->crypto,
5643 qcow2_crypto_hdr_read_func,
5644 qcow2_crypto_hdr_write_func,
5646 qopts->encrypt,
5647 force,
5648 errp);
5650 return ret;
5654 * If offset or size are negative, respectively, they will not be included in
5655 * the BLOCK_IMAGE_CORRUPTED event emitted.
5656 * fatal will be ignored for read-only BDS; corruptions found there will always
5657 * be considered non-fatal.
5659 void qcow2_signal_corruption(BlockDriverState *bs, bool fatal, int64_t offset,
5660 int64_t size, const char *message_format, ...)
5662 BDRVQcow2State *s = bs->opaque;
5663 const char *node_name;
5664 char *message;
5665 va_list ap;
5667 fatal = fatal && bdrv_is_writable(bs);
5669 if (s->signaled_corruption &&
5670 (!fatal || (s->incompatible_features & QCOW2_INCOMPAT_CORRUPT)))
5672 return;
5675 va_start(ap, message_format);
5676 message = g_strdup_vprintf(message_format, ap);
5677 va_end(ap);
5679 if (fatal) {
5680 fprintf(stderr, "qcow2: Marking image as corrupt: %s; further "
5681 "corruption events will be suppressed\n", message);
5682 } else {
5683 fprintf(stderr, "qcow2: Image is corrupt: %s; further non-fatal "
5684 "corruption events will be suppressed\n", message);
5687 node_name = bdrv_get_node_name(bs);
5688 qapi_event_send_block_image_corrupted(bdrv_get_device_name(bs),
5689 *node_name != '\0', node_name,
5690 message, offset >= 0, offset,
5691 size >= 0, size,
5692 fatal);
5693 g_free(message);
5695 if (fatal) {
5696 qcow2_mark_corrupt(bs);
5697 bs->drv = NULL; /* make BDS unusable */
5700 s->signaled_corruption = true;
5703 #define QCOW_COMMON_OPTIONS \
5705 .name = BLOCK_OPT_SIZE, \
5706 .type = QEMU_OPT_SIZE, \
5707 .help = "Virtual disk size" \
5708 }, \
5710 .name = BLOCK_OPT_COMPAT_LEVEL, \
5711 .type = QEMU_OPT_STRING, \
5712 .help = "Compatibility level (v2 [0.10] or v3 [1.1])" \
5713 }, \
5715 .name = BLOCK_OPT_BACKING_FILE, \
5716 .type = QEMU_OPT_STRING, \
5717 .help = "File name of a base image" \
5718 }, \
5720 .name = BLOCK_OPT_BACKING_FMT, \
5721 .type = QEMU_OPT_STRING, \
5722 .help = "Image format of the base image" \
5723 }, \
5725 .name = BLOCK_OPT_DATA_FILE, \
5726 .type = QEMU_OPT_STRING, \
5727 .help = "File name of an external data file" \
5728 }, \
5730 .name = BLOCK_OPT_DATA_FILE_RAW, \
5731 .type = QEMU_OPT_BOOL, \
5732 .help = "The external data file must stay valid " \
5733 "as a raw image" \
5734 }, \
5736 .name = BLOCK_OPT_LAZY_REFCOUNTS, \
5737 .type = QEMU_OPT_BOOL, \
5738 .help = "Postpone refcount updates", \
5739 .def_value_str = "off" \
5740 }, \
5742 .name = BLOCK_OPT_REFCOUNT_BITS, \
5743 .type = QEMU_OPT_NUMBER, \
5744 .help = "Width of a reference count entry in bits", \
5745 .def_value_str = "16" \
5748 static QemuOptsList qcow2_create_opts = {
5749 .name = "qcow2-create-opts",
5750 .head = QTAILQ_HEAD_INITIALIZER(qcow2_create_opts.head),
5751 .desc = {
5753 .name = BLOCK_OPT_ENCRYPT, \
5754 .type = QEMU_OPT_BOOL, \
5755 .help = "Encrypt the image with format 'aes'. (Deprecated " \
5756 "in favor of " BLOCK_OPT_ENCRYPT_FORMAT "=aes)", \
5757 }, \
5759 .name = BLOCK_OPT_ENCRYPT_FORMAT, \
5760 .type = QEMU_OPT_STRING, \
5761 .help = "Encrypt the image, format choices: 'aes', 'luks'", \
5762 }, \
5763 BLOCK_CRYPTO_OPT_DEF_KEY_SECRET("encrypt.", \
5764 "ID of secret providing qcow AES key or LUKS passphrase"), \
5765 BLOCK_CRYPTO_OPT_DEF_LUKS_CIPHER_ALG("encrypt."), \
5766 BLOCK_CRYPTO_OPT_DEF_LUKS_CIPHER_MODE("encrypt."), \
5767 BLOCK_CRYPTO_OPT_DEF_LUKS_IVGEN_ALG("encrypt."), \
5768 BLOCK_CRYPTO_OPT_DEF_LUKS_IVGEN_HASH_ALG("encrypt."), \
5769 BLOCK_CRYPTO_OPT_DEF_LUKS_HASH_ALG("encrypt."), \
5770 BLOCK_CRYPTO_OPT_DEF_LUKS_ITER_TIME("encrypt."), \
5772 .name = BLOCK_OPT_CLUSTER_SIZE, \
5773 .type = QEMU_OPT_SIZE, \
5774 .help = "qcow2 cluster size", \
5775 .def_value_str = stringify(DEFAULT_CLUSTER_SIZE) \
5776 }, \
5778 .name = BLOCK_OPT_PREALLOC, \
5779 .type = QEMU_OPT_STRING, \
5780 .help = "Preallocation mode (allowed values: off, " \
5781 "metadata, falloc, full)" \
5782 }, \
5784 .name = BLOCK_OPT_COMPRESSION_TYPE, \
5785 .type = QEMU_OPT_STRING, \
5786 .help = "Compression method used for image cluster " \
5787 "compression", \
5788 .def_value_str = "zlib" \
5790 QCOW_COMMON_OPTIONS,
5791 { /* end of list */ }
5795 static QemuOptsList qcow2_amend_opts = {
5796 .name = "qcow2-amend-opts",
5797 .head = QTAILQ_HEAD_INITIALIZER(qcow2_amend_opts.head),
5798 .desc = {
5799 BLOCK_CRYPTO_OPT_DEF_LUKS_STATE("encrypt."),
5800 BLOCK_CRYPTO_OPT_DEF_LUKS_KEYSLOT("encrypt."),
5801 BLOCK_CRYPTO_OPT_DEF_LUKS_OLD_SECRET("encrypt."),
5802 BLOCK_CRYPTO_OPT_DEF_LUKS_NEW_SECRET("encrypt."),
5803 BLOCK_CRYPTO_OPT_DEF_LUKS_ITER_TIME("encrypt."),
5804 QCOW_COMMON_OPTIONS,
5805 { /* end of list */ }
5809 static const char *const qcow2_strong_runtime_opts[] = {
5810 "encrypt." BLOCK_CRYPTO_OPT_QCOW_KEY_SECRET,
5812 NULL
5815 BlockDriver bdrv_qcow2 = {
5816 .format_name = "qcow2",
5817 .instance_size = sizeof(BDRVQcow2State),
5818 .bdrv_probe = qcow2_probe,
5819 .bdrv_open = qcow2_open,
5820 .bdrv_close = qcow2_close,
5821 .bdrv_reopen_prepare = qcow2_reopen_prepare,
5822 .bdrv_reopen_commit = qcow2_reopen_commit,
5823 .bdrv_reopen_commit_post = qcow2_reopen_commit_post,
5824 .bdrv_reopen_abort = qcow2_reopen_abort,
5825 .bdrv_join_options = qcow2_join_options,
5826 .bdrv_child_perm = bdrv_default_perms,
5827 .bdrv_co_create_opts = qcow2_co_create_opts,
5828 .bdrv_co_create = qcow2_co_create,
5829 .bdrv_has_zero_init = qcow2_has_zero_init,
5830 .bdrv_co_block_status = qcow2_co_block_status,
5832 .bdrv_co_preadv_part = qcow2_co_preadv_part,
5833 .bdrv_co_pwritev_part = qcow2_co_pwritev_part,
5834 .bdrv_co_flush_to_os = qcow2_co_flush_to_os,
5836 .bdrv_co_pwrite_zeroes = qcow2_co_pwrite_zeroes,
5837 .bdrv_co_pdiscard = qcow2_co_pdiscard,
5838 .bdrv_co_copy_range_from = qcow2_co_copy_range_from,
5839 .bdrv_co_copy_range_to = qcow2_co_copy_range_to,
5840 .bdrv_co_truncate = qcow2_co_truncate,
5841 .bdrv_co_pwritev_compressed_part = qcow2_co_pwritev_compressed_part,
5842 .bdrv_make_empty = qcow2_make_empty,
5844 .bdrv_snapshot_create = qcow2_snapshot_create,
5845 .bdrv_snapshot_goto = qcow2_snapshot_goto,
5846 .bdrv_snapshot_delete = qcow2_snapshot_delete,
5847 .bdrv_snapshot_list = qcow2_snapshot_list,
5848 .bdrv_snapshot_load_tmp = qcow2_snapshot_load_tmp,
5849 .bdrv_measure = qcow2_measure,
5850 .bdrv_get_info = qcow2_get_info,
5851 .bdrv_get_specific_info = qcow2_get_specific_info,
5853 .bdrv_save_vmstate = qcow2_save_vmstate,
5854 .bdrv_load_vmstate = qcow2_load_vmstate,
5856 .is_format = true,
5857 .supports_backing = true,
5858 .bdrv_change_backing_file = qcow2_change_backing_file,
5860 .bdrv_refresh_limits = qcow2_refresh_limits,
5861 .bdrv_co_invalidate_cache = qcow2_co_invalidate_cache,
5862 .bdrv_inactivate = qcow2_inactivate,
5864 .create_opts = &qcow2_create_opts,
5865 .amend_opts = &qcow2_amend_opts,
5866 .strong_runtime_opts = qcow2_strong_runtime_opts,
5867 .mutable_opts = mutable_opts,
5868 .bdrv_co_check = qcow2_co_check,
5869 .bdrv_amend_options = qcow2_amend_options,
5870 .bdrv_co_amend = qcow2_co_amend,
5872 .bdrv_detach_aio_context = qcow2_detach_aio_context,
5873 .bdrv_attach_aio_context = qcow2_attach_aio_context,
5875 .bdrv_supports_persistent_dirty_bitmap =
5876 qcow2_supports_persistent_dirty_bitmap,
5877 .bdrv_co_can_store_new_dirty_bitmap = qcow2_co_can_store_new_dirty_bitmap,
5878 .bdrv_co_remove_persistent_dirty_bitmap =
5879 qcow2_co_remove_persistent_dirty_bitmap,
5882 static void bdrv_qcow2_init(void)
5884 bdrv_register(&bdrv_qcow2);
5887 block_init(bdrv_qcow2_init);