iotests: Skip test_stream_parallel in test 030 when doing "make check"
[qemu/ar7.git] / block / qcow2.c
blob3e8114dcf858472ad005bc020083f2bcdf7cc261
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 if (s->subcluster_size < (1 << MIN_CLUSTER_BITS)) {
1453 error_setg(errp, "Unsupported subcluster size: %d", s->subcluster_size);
1454 ret = -EINVAL;
1455 goto fail;
1458 /* Check support for various header values */
1459 if (header.refcount_order > 6) {
1460 error_setg(errp, "Reference count entry width too large; may not "
1461 "exceed 64 bits");
1462 ret = -EINVAL;
1463 goto fail;
1465 s->refcount_order = header.refcount_order;
1466 s->refcount_bits = 1 << s->refcount_order;
1467 s->refcount_max = UINT64_C(1) << (s->refcount_bits - 1);
1468 s->refcount_max += s->refcount_max - 1;
1470 s->crypt_method_header = header.crypt_method;
1471 if (s->crypt_method_header) {
1472 if (bdrv_uses_whitelist() &&
1473 s->crypt_method_header == QCOW_CRYPT_AES) {
1474 error_setg(errp,
1475 "Use of AES-CBC encrypted qcow2 images is no longer "
1476 "supported in system emulators");
1477 error_append_hint(errp,
1478 "You can use 'qemu-img convert' to convert your "
1479 "image to an alternative supported format, such "
1480 "as unencrypted qcow2, or raw with the LUKS "
1481 "format instead.\n");
1482 ret = -ENOSYS;
1483 goto fail;
1486 if (s->crypt_method_header == QCOW_CRYPT_AES) {
1487 s->crypt_physical_offset = false;
1488 } else {
1489 /* Assuming LUKS and any future crypt methods we
1490 * add will all use physical offsets, due to the
1491 * fact that the alternative is insecure... */
1492 s->crypt_physical_offset = true;
1495 bs->encrypted = true;
1498 s->l2_bits = s->cluster_bits - ctz32(l2_entry_size(s));
1499 s->l2_size = 1 << s->l2_bits;
1500 /* 2^(s->refcount_order - 3) is the refcount width in bytes */
1501 s->refcount_block_bits = s->cluster_bits - (s->refcount_order - 3);
1502 s->refcount_block_size = 1 << s->refcount_block_bits;
1503 bs->total_sectors = header.size / BDRV_SECTOR_SIZE;
1504 s->csize_shift = (62 - (s->cluster_bits - 8));
1505 s->csize_mask = (1 << (s->cluster_bits - 8)) - 1;
1506 s->cluster_offset_mask = (1LL << s->csize_shift) - 1;
1508 s->refcount_table_offset = header.refcount_table_offset;
1509 s->refcount_table_size =
1510 header.refcount_table_clusters << (s->cluster_bits - 3);
1512 if (header.refcount_table_clusters == 0 && !(flags & BDRV_O_CHECK)) {
1513 error_setg(errp, "Image does not contain a reference count table");
1514 ret = -EINVAL;
1515 goto fail;
1518 ret = qcow2_validate_table(bs, s->refcount_table_offset,
1519 header.refcount_table_clusters,
1520 s->cluster_size, QCOW_MAX_REFTABLE_SIZE,
1521 "Reference count table", errp);
1522 if (ret < 0) {
1523 goto fail;
1526 if (!(flags & BDRV_O_CHECK)) {
1528 * The total size in bytes of the snapshot table is checked in
1529 * qcow2_read_snapshots() because the size of each snapshot is
1530 * variable and we don't know it yet.
1531 * Here we only check the offset and number of snapshots.
1533 ret = qcow2_validate_table(bs, header.snapshots_offset,
1534 header.nb_snapshots,
1535 sizeof(QCowSnapshotHeader),
1536 sizeof(QCowSnapshotHeader) *
1537 QCOW_MAX_SNAPSHOTS,
1538 "Snapshot table", errp);
1539 if (ret < 0) {
1540 goto fail;
1544 /* read the level 1 table */
1545 ret = qcow2_validate_table(bs, header.l1_table_offset,
1546 header.l1_size, L1E_SIZE,
1547 QCOW_MAX_L1_SIZE, "Active L1 table", errp);
1548 if (ret < 0) {
1549 goto fail;
1551 s->l1_size = header.l1_size;
1552 s->l1_table_offset = header.l1_table_offset;
1554 l1_vm_state_index = size_to_l1(s, header.size);
1555 if (l1_vm_state_index > INT_MAX) {
1556 error_setg(errp, "Image is too big");
1557 ret = -EFBIG;
1558 goto fail;
1560 s->l1_vm_state_index = l1_vm_state_index;
1562 /* the L1 table must contain at least enough entries to put
1563 header.size bytes */
1564 if (s->l1_size < s->l1_vm_state_index) {
1565 error_setg(errp, "L1 table is too small");
1566 ret = -EINVAL;
1567 goto fail;
1570 if (s->l1_size > 0) {
1571 s->l1_table = qemu_try_blockalign(bs->file->bs, s->l1_size * L1E_SIZE);
1572 if (s->l1_table == NULL) {
1573 error_setg(errp, "Could not allocate L1 table");
1574 ret = -ENOMEM;
1575 goto fail;
1577 ret = bdrv_pread(bs->file, s->l1_table_offset, s->l1_table,
1578 s->l1_size * L1E_SIZE);
1579 if (ret < 0) {
1580 error_setg_errno(errp, -ret, "Could not read L1 table");
1581 goto fail;
1583 for(i = 0;i < s->l1_size; i++) {
1584 s->l1_table[i] = be64_to_cpu(s->l1_table[i]);
1588 /* Parse driver-specific options */
1589 ret = qcow2_update_options(bs, options, flags, errp);
1590 if (ret < 0) {
1591 goto fail;
1594 s->flags = flags;
1596 ret = qcow2_refcount_init(bs);
1597 if (ret != 0) {
1598 error_setg_errno(errp, -ret, "Could not initialize refcount handling");
1599 goto fail;
1602 QLIST_INIT(&s->cluster_allocs);
1603 QTAILQ_INIT(&s->discards);
1605 /* read qcow2 extensions */
1606 if (qcow2_read_extensions(bs, header.header_length, ext_end, NULL,
1607 flags, &update_header, errp)) {
1608 ret = -EINVAL;
1609 goto fail;
1612 /* Open external data file */
1613 s->data_file = bdrv_open_child(NULL, options, "data-file", bs,
1614 &child_of_bds, BDRV_CHILD_DATA,
1615 true, &local_err);
1616 if (local_err) {
1617 error_propagate(errp, local_err);
1618 ret = -EINVAL;
1619 goto fail;
1622 if (s->incompatible_features & QCOW2_INCOMPAT_DATA_FILE) {
1623 if (!s->data_file && s->image_data_file) {
1624 s->data_file = bdrv_open_child(s->image_data_file, options,
1625 "data-file", bs, &child_of_bds,
1626 BDRV_CHILD_DATA, false, errp);
1627 if (!s->data_file) {
1628 ret = -EINVAL;
1629 goto fail;
1632 if (!s->data_file) {
1633 error_setg(errp, "'data-file' is required for this image");
1634 ret = -EINVAL;
1635 goto fail;
1638 /* No data here */
1639 bs->file->role &= ~BDRV_CHILD_DATA;
1641 /* Must succeed because we have given up permissions if anything */
1642 bdrv_child_refresh_perms(bs, bs->file, &error_abort);
1643 } else {
1644 if (s->data_file) {
1645 error_setg(errp, "'data-file' can only be set for images with an "
1646 "external data file");
1647 ret = -EINVAL;
1648 goto fail;
1651 s->data_file = bs->file;
1653 if (data_file_is_raw(bs)) {
1654 error_setg(errp, "data-file-raw requires a data file");
1655 ret = -EINVAL;
1656 goto fail;
1660 /* qcow2_read_extension may have set up the crypto context
1661 * if the crypt method needs a header region, some methods
1662 * don't need header extensions, so must check here
1664 if (s->crypt_method_header && !s->crypto) {
1665 if (s->crypt_method_header == QCOW_CRYPT_AES) {
1666 unsigned int cflags = 0;
1667 if (flags & BDRV_O_NO_IO) {
1668 cflags |= QCRYPTO_BLOCK_OPEN_NO_IO;
1670 s->crypto = qcrypto_block_open(s->crypto_opts, "encrypt.",
1671 NULL, NULL, cflags,
1672 QCOW2_MAX_THREADS, errp);
1673 if (!s->crypto) {
1674 ret = -EINVAL;
1675 goto fail;
1677 } else if (!(flags & BDRV_O_NO_IO)) {
1678 error_setg(errp, "Missing CRYPTO header for crypt method %d",
1679 s->crypt_method_header);
1680 ret = -EINVAL;
1681 goto fail;
1685 /* read the backing file name */
1686 if (header.backing_file_offset != 0) {
1687 len = header.backing_file_size;
1688 if (len > MIN(1023, s->cluster_size - header.backing_file_offset) ||
1689 len >= sizeof(bs->backing_file)) {
1690 error_setg(errp, "Backing file name too long");
1691 ret = -EINVAL;
1692 goto fail;
1694 ret = bdrv_pread(bs->file, header.backing_file_offset,
1695 bs->auto_backing_file, len);
1696 if (ret < 0) {
1697 error_setg_errno(errp, -ret, "Could not read backing file name");
1698 goto fail;
1700 bs->auto_backing_file[len] = '\0';
1701 pstrcpy(bs->backing_file, sizeof(bs->backing_file),
1702 bs->auto_backing_file);
1703 s->image_backing_file = g_strdup(bs->auto_backing_file);
1707 * Internal snapshots; skip reading them in check mode, because
1708 * we do not need them then, and we do not want to abort because
1709 * of a broken table.
1711 if (!(flags & BDRV_O_CHECK)) {
1712 s->snapshots_offset = header.snapshots_offset;
1713 s->nb_snapshots = header.nb_snapshots;
1715 ret = qcow2_read_snapshots(bs, errp);
1716 if (ret < 0) {
1717 goto fail;
1721 /* Clear unknown autoclear feature bits */
1722 update_header |= s->autoclear_features & ~QCOW2_AUTOCLEAR_MASK;
1723 update_header =
1724 update_header && !bs->read_only && !(flags & BDRV_O_INACTIVE);
1725 if (update_header) {
1726 s->autoclear_features &= QCOW2_AUTOCLEAR_MASK;
1729 /* == Handle persistent dirty bitmaps ==
1731 * We want load dirty bitmaps in three cases:
1733 * 1. Normal open of the disk in active mode, not related to invalidation
1734 * after migration.
1736 * 2. Invalidation of the target vm after pre-copy phase of migration, if
1737 * bitmaps are _not_ migrating through migration channel, i.e.
1738 * 'dirty-bitmaps' capability is disabled.
1740 * 3. Invalidation of source vm after failed or canceled migration.
1741 * This is a very interesting case. There are two possible types of
1742 * bitmaps:
1744 * A. Stored on inactivation and removed. They should be loaded from the
1745 * image.
1747 * B. Not stored: not-persistent bitmaps and bitmaps, migrated through
1748 * the migration channel (with dirty-bitmaps capability).
1750 * On the other hand, there are two possible sub-cases:
1752 * 3.1 disk was changed by somebody else while were inactive. In this
1753 * case all in-RAM dirty bitmaps (both persistent and not) are
1754 * definitely invalid. And we don't have any method to determine
1755 * this.
1757 * Simple and safe thing is to just drop all the bitmaps of type B on
1758 * inactivation. But in this case we lose bitmaps in valid 4.2 case.
1760 * On the other hand, resuming source vm, if disk was already changed
1761 * is a bad thing anyway: not only bitmaps, the whole vm state is
1762 * out of sync with disk.
1764 * This means, that user or management tool, who for some reason
1765 * decided to resume source vm, after disk was already changed by
1766 * target vm, should at least drop all dirty bitmaps by hand.
1768 * So, we can ignore this case for now, but TODO: "generation"
1769 * extension for qcow2, to determine, that image was changed after
1770 * last inactivation. And if it is changed, we will drop (or at least
1771 * mark as 'invalid' all the bitmaps of type B, both persistent
1772 * and not).
1774 * 3.2 disk was _not_ changed while were inactive. Bitmaps may be saved
1775 * to disk ('dirty-bitmaps' capability disabled), or not saved
1776 * ('dirty-bitmaps' capability enabled), but we don't need to care
1777 * of: let's load bitmaps as always: stored bitmaps will be loaded,
1778 * and not stored has flag IN_USE=1 in the image and will be skipped
1779 * on loading.
1781 * One remaining possible case when we don't want load bitmaps:
1783 * 4. Open disk in inactive mode in target vm (bitmaps are migrating or
1784 * will be loaded on invalidation, no needs try loading them before)
1787 if (!(bdrv_get_flags(bs) & BDRV_O_INACTIVE)) {
1788 /* It's case 1, 2 or 3.2. Or 3.1 which is BUG in management layer. */
1789 bool header_updated = qcow2_load_dirty_bitmaps(bs, &local_err);
1790 if (local_err != NULL) {
1791 error_propagate(errp, local_err);
1792 ret = -EINVAL;
1793 goto fail;
1796 update_header = update_header && !header_updated;
1799 if (update_header) {
1800 ret = qcow2_update_header(bs);
1801 if (ret < 0) {
1802 error_setg_errno(errp, -ret, "Could not update qcow2 header");
1803 goto fail;
1807 bs->supported_zero_flags = header.version >= 3 ?
1808 BDRV_REQ_MAY_UNMAP | BDRV_REQ_NO_FALLBACK : 0;
1809 bs->supported_truncate_flags = BDRV_REQ_ZERO_WRITE;
1811 /* Repair image if dirty */
1812 if (!(flags & (BDRV_O_CHECK | BDRV_O_INACTIVE)) && !bs->read_only &&
1813 (s->incompatible_features & QCOW2_INCOMPAT_DIRTY)) {
1814 BdrvCheckResult result = {0};
1816 ret = qcow2_co_check_locked(bs, &result,
1817 BDRV_FIX_ERRORS | BDRV_FIX_LEAKS);
1818 if (ret < 0 || result.check_errors) {
1819 if (ret >= 0) {
1820 ret = -EIO;
1822 error_setg_errno(errp, -ret, "Could not repair dirty image");
1823 goto fail;
1827 #ifdef DEBUG_ALLOC
1829 BdrvCheckResult result = {0};
1830 qcow2_check_refcounts(bs, &result, 0);
1832 #endif
1834 qemu_co_queue_init(&s->thread_task_queue);
1836 return ret;
1838 fail:
1839 g_free(s->image_data_file);
1840 if (has_data_file(bs)) {
1841 bdrv_unref_child(bs, s->data_file);
1842 s->data_file = NULL;
1844 g_free(s->unknown_header_fields);
1845 cleanup_unknown_header_ext(bs);
1846 qcow2_free_snapshots(bs);
1847 qcow2_refcount_close(bs);
1848 qemu_vfree(s->l1_table);
1849 /* else pre-write overlap checks in cache_destroy may crash */
1850 s->l1_table = NULL;
1851 cache_clean_timer_del(bs);
1852 if (s->l2_table_cache) {
1853 qcow2_cache_destroy(s->l2_table_cache);
1855 if (s->refcount_block_cache) {
1856 qcow2_cache_destroy(s->refcount_block_cache);
1858 qcrypto_block_free(s->crypto);
1859 qapi_free_QCryptoBlockOpenOptions(s->crypto_opts);
1860 return ret;
1863 typedef struct QCow2OpenCo {
1864 BlockDriverState *bs;
1865 QDict *options;
1866 int flags;
1867 Error **errp;
1868 int ret;
1869 } QCow2OpenCo;
1871 static void coroutine_fn qcow2_open_entry(void *opaque)
1873 QCow2OpenCo *qoc = opaque;
1874 BDRVQcow2State *s = qoc->bs->opaque;
1876 qemu_co_mutex_lock(&s->lock);
1877 qoc->ret = qcow2_do_open(qoc->bs, qoc->options, qoc->flags, qoc->errp);
1878 qemu_co_mutex_unlock(&s->lock);
1881 static int qcow2_open(BlockDriverState *bs, QDict *options, int flags,
1882 Error **errp)
1884 BDRVQcow2State *s = bs->opaque;
1885 QCow2OpenCo qoc = {
1886 .bs = bs,
1887 .options = options,
1888 .flags = flags,
1889 .errp = errp,
1890 .ret = -EINPROGRESS
1893 bs->file = bdrv_open_child(NULL, options, "file", bs, &child_of_bds,
1894 BDRV_CHILD_IMAGE, false, errp);
1895 if (!bs->file) {
1896 return -EINVAL;
1899 /* Initialise locks */
1900 qemu_co_mutex_init(&s->lock);
1902 if (qemu_in_coroutine()) {
1903 /* From bdrv_co_create. */
1904 qcow2_open_entry(&qoc);
1905 } else {
1906 assert(qemu_get_current_aio_context() == qemu_get_aio_context());
1907 qemu_coroutine_enter(qemu_coroutine_create(qcow2_open_entry, &qoc));
1908 BDRV_POLL_WHILE(bs, qoc.ret == -EINPROGRESS);
1910 return qoc.ret;
1913 static void qcow2_refresh_limits(BlockDriverState *bs, Error **errp)
1915 BDRVQcow2State *s = bs->opaque;
1917 if (bs->encrypted) {
1918 /* Encryption works on a sector granularity */
1919 bs->bl.request_alignment = qcrypto_block_get_sector_size(s->crypto);
1921 bs->bl.pwrite_zeroes_alignment = s->subcluster_size;
1922 bs->bl.pdiscard_alignment = s->cluster_size;
1925 static int qcow2_reopen_prepare(BDRVReopenState *state,
1926 BlockReopenQueue *queue, Error **errp)
1928 Qcow2ReopenState *r;
1929 int ret;
1931 r = g_new0(Qcow2ReopenState, 1);
1932 state->opaque = r;
1934 ret = qcow2_update_options_prepare(state->bs, r, state->options,
1935 state->flags, errp);
1936 if (ret < 0) {
1937 goto fail;
1940 /* We need to write out any unwritten data if we reopen read-only. */
1941 if ((state->flags & BDRV_O_RDWR) == 0) {
1942 ret = qcow2_reopen_bitmaps_ro(state->bs, errp);
1943 if (ret < 0) {
1944 goto fail;
1947 ret = bdrv_flush(state->bs);
1948 if (ret < 0) {
1949 goto fail;
1952 ret = qcow2_mark_clean(state->bs);
1953 if (ret < 0) {
1954 goto fail;
1958 return 0;
1960 fail:
1961 qcow2_update_options_abort(state->bs, r);
1962 g_free(r);
1963 return ret;
1966 static void qcow2_reopen_commit(BDRVReopenState *state)
1968 qcow2_update_options_commit(state->bs, state->opaque);
1969 g_free(state->opaque);
1972 static void qcow2_reopen_commit_post(BDRVReopenState *state)
1974 if (state->flags & BDRV_O_RDWR) {
1975 Error *local_err = NULL;
1977 if (qcow2_reopen_bitmaps_rw(state->bs, &local_err) < 0) {
1979 * This is not fatal, bitmaps just left read-only, so all following
1980 * writes will fail. User can remove read-only bitmaps to unblock
1981 * writes or retry reopen.
1983 error_reportf_err(local_err,
1984 "%s: Failed to make dirty bitmaps writable: ",
1985 bdrv_get_node_name(state->bs));
1990 static void qcow2_reopen_abort(BDRVReopenState *state)
1992 qcow2_update_options_abort(state->bs, state->opaque);
1993 g_free(state->opaque);
1996 static void qcow2_join_options(QDict *options, QDict *old_options)
1998 bool has_new_overlap_template =
1999 qdict_haskey(options, QCOW2_OPT_OVERLAP) ||
2000 qdict_haskey(options, QCOW2_OPT_OVERLAP_TEMPLATE);
2001 bool has_new_total_cache_size =
2002 qdict_haskey(options, QCOW2_OPT_CACHE_SIZE);
2003 bool has_all_cache_options;
2005 /* New overlap template overrides all old overlap options */
2006 if (has_new_overlap_template) {
2007 qdict_del(old_options, QCOW2_OPT_OVERLAP);
2008 qdict_del(old_options, QCOW2_OPT_OVERLAP_TEMPLATE);
2009 qdict_del(old_options, QCOW2_OPT_OVERLAP_MAIN_HEADER);
2010 qdict_del(old_options, QCOW2_OPT_OVERLAP_ACTIVE_L1);
2011 qdict_del(old_options, QCOW2_OPT_OVERLAP_ACTIVE_L2);
2012 qdict_del(old_options, QCOW2_OPT_OVERLAP_REFCOUNT_TABLE);
2013 qdict_del(old_options, QCOW2_OPT_OVERLAP_REFCOUNT_BLOCK);
2014 qdict_del(old_options, QCOW2_OPT_OVERLAP_SNAPSHOT_TABLE);
2015 qdict_del(old_options, QCOW2_OPT_OVERLAP_INACTIVE_L1);
2016 qdict_del(old_options, QCOW2_OPT_OVERLAP_INACTIVE_L2);
2019 /* New total cache size overrides all old options */
2020 if (qdict_haskey(options, QCOW2_OPT_CACHE_SIZE)) {
2021 qdict_del(old_options, QCOW2_OPT_L2_CACHE_SIZE);
2022 qdict_del(old_options, QCOW2_OPT_REFCOUNT_CACHE_SIZE);
2025 qdict_join(options, old_options, false);
2028 * If after merging all cache size options are set, an old total size is
2029 * overwritten. Do keep all options, however, if all three are new. The
2030 * resulting error message is what we want to happen.
2032 has_all_cache_options =
2033 qdict_haskey(options, QCOW2_OPT_CACHE_SIZE) ||
2034 qdict_haskey(options, QCOW2_OPT_L2_CACHE_SIZE) ||
2035 qdict_haskey(options, QCOW2_OPT_REFCOUNT_CACHE_SIZE);
2037 if (has_all_cache_options && !has_new_total_cache_size) {
2038 qdict_del(options, QCOW2_OPT_CACHE_SIZE);
2042 static int coroutine_fn qcow2_co_block_status(BlockDriverState *bs,
2043 bool want_zero,
2044 int64_t offset, int64_t count,
2045 int64_t *pnum, int64_t *map,
2046 BlockDriverState **file)
2048 BDRVQcow2State *s = bs->opaque;
2049 uint64_t host_offset;
2050 unsigned int bytes;
2051 QCow2SubclusterType type;
2052 int ret, status = 0;
2054 qemu_co_mutex_lock(&s->lock);
2056 if (!s->metadata_preallocation_checked) {
2057 ret = qcow2_detect_metadata_preallocation(bs);
2058 s->metadata_preallocation = (ret == 1);
2059 s->metadata_preallocation_checked = true;
2062 bytes = MIN(INT_MAX, count);
2063 ret = qcow2_get_host_offset(bs, offset, &bytes, &host_offset, &type);
2064 qemu_co_mutex_unlock(&s->lock);
2065 if (ret < 0) {
2066 return ret;
2069 *pnum = bytes;
2071 if ((type == QCOW2_SUBCLUSTER_NORMAL ||
2072 type == QCOW2_SUBCLUSTER_ZERO_ALLOC ||
2073 type == QCOW2_SUBCLUSTER_UNALLOCATED_ALLOC) && !s->crypto) {
2074 *map = host_offset;
2075 *file = s->data_file->bs;
2076 status |= BDRV_BLOCK_OFFSET_VALID;
2078 if (type == QCOW2_SUBCLUSTER_ZERO_PLAIN ||
2079 type == QCOW2_SUBCLUSTER_ZERO_ALLOC) {
2080 status |= BDRV_BLOCK_ZERO;
2081 } else if (type != QCOW2_SUBCLUSTER_UNALLOCATED_PLAIN &&
2082 type != QCOW2_SUBCLUSTER_UNALLOCATED_ALLOC) {
2083 status |= BDRV_BLOCK_DATA;
2085 if (s->metadata_preallocation && (status & BDRV_BLOCK_DATA) &&
2086 (status & BDRV_BLOCK_OFFSET_VALID))
2088 status |= BDRV_BLOCK_RECURSE;
2090 return status;
2093 static coroutine_fn int qcow2_handle_l2meta(BlockDriverState *bs,
2094 QCowL2Meta **pl2meta,
2095 bool link_l2)
2097 int ret = 0;
2098 QCowL2Meta *l2meta = *pl2meta;
2100 while (l2meta != NULL) {
2101 QCowL2Meta *next;
2103 if (link_l2) {
2104 assert(!l2meta->prealloc);
2105 ret = qcow2_alloc_cluster_link_l2(bs, l2meta);
2106 if (ret) {
2107 goto out;
2109 } else {
2110 qcow2_alloc_cluster_abort(bs, l2meta);
2113 /* Take the request off the list of running requests */
2114 QLIST_REMOVE(l2meta, next_in_flight);
2116 qemu_co_queue_restart_all(&l2meta->dependent_requests);
2118 next = l2meta->next;
2119 g_free(l2meta);
2120 l2meta = next;
2122 out:
2123 *pl2meta = l2meta;
2124 return ret;
2127 static coroutine_fn int
2128 qcow2_co_preadv_encrypted(BlockDriverState *bs,
2129 uint64_t host_offset,
2130 uint64_t offset,
2131 uint64_t bytes,
2132 QEMUIOVector *qiov,
2133 uint64_t qiov_offset)
2135 int ret;
2136 BDRVQcow2State *s = bs->opaque;
2137 uint8_t *buf;
2139 assert(bs->encrypted && s->crypto);
2140 assert(bytes <= QCOW_MAX_CRYPT_CLUSTERS * s->cluster_size);
2143 * For encrypted images, read everything into a temporary
2144 * contiguous buffer on which the AES functions can work.
2145 * Also, decryption in a separate buffer is better as it
2146 * prevents the guest from learning information about the
2147 * encrypted nature of the virtual disk.
2150 buf = qemu_try_blockalign(s->data_file->bs, bytes);
2151 if (buf == NULL) {
2152 return -ENOMEM;
2155 BLKDBG_EVENT(bs->file, BLKDBG_READ_AIO);
2156 ret = bdrv_co_pread(s->data_file, host_offset, bytes, buf, 0);
2157 if (ret < 0) {
2158 goto fail;
2161 if (qcow2_co_decrypt(bs, host_offset, offset, buf, bytes) < 0)
2163 ret = -EIO;
2164 goto fail;
2166 qemu_iovec_from_buf(qiov, qiov_offset, buf, bytes);
2168 fail:
2169 qemu_vfree(buf);
2171 return ret;
2174 typedef struct Qcow2AioTask {
2175 AioTask task;
2177 BlockDriverState *bs;
2178 QCow2SubclusterType subcluster_type; /* only for read */
2179 uint64_t host_offset; /* or full descriptor in compressed clusters */
2180 uint64_t offset;
2181 uint64_t bytes;
2182 QEMUIOVector *qiov;
2183 uint64_t qiov_offset;
2184 QCowL2Meta *l2meta; /* only for write */
2185 } Qcow2AioTask;
2187 static coroutine_fn int qcow2_co_preadv_task_entry(AioTask *task);
2188 static coroutine_fn int qcow2_add_task(BlockDriverState *bs,
2189 AioTaskPool *pool,
2190 AioTaskFunc func,
2191 QCow2SubclusterType subcluster_type,
2192 uint64_t host_offset,
2193 uint64_t offset,
2194 uint64_t bytes,
2195 QEMUIOVector *qiov,
2196 size_t qiov_offset,
2197 QCowL2Meta *l2meta)
2199 Qcow2AioTask local_task;
2200 Qcow2AioTask *task = pool ? g_new(Qcow2AioTask, 1) : &local_task;
2202 *task = (Qcow2AioTask) {
2203 .task.func = func,
2204 .bs = bs,
2205 .subcluster_type = subcluster_type,
2206 .qiov = qiov,
2207 .host_offset = host_offset,
2208 .offset = offset,
2209 .bytes = bytes,
2210 .qiov_offset = qiov_offset,
2211 .l2meta = l2meta,
2214 trace_qcow2_add_task(qemu_coroutine_self(), bs, pool,
2215 func == qcow2_co_preadv_task_entry ? "read" : "write",
2216 subcluster_type, host_offset, offset, bytes,
2217 qiov, qiov_offset);
2219 if (!pool) {
2220 return func(&task->task);
2223 aio_task_pool_start_task(pool, &task->task);
2225 return 0;
2228 static coroutine_fn int qcow2_co_preadv_task(BlockDriverState *bs,
2229 QCow2SubclusterType subc_type,
2230 uint64_t host_offset,
2231 uint64_t offset, uint64_t bytes,
2232 QEMUIOVector *qiov,
2233 size_t qiov_offset)
2235 BDRVQcow2State *s = bs->opaque;
2237 switch (subc_type) {
2238 case QCOW2_SUBCLUSTER_ZERO_PLAIN:
2239 case QCOW2_SUBCLUSTER_ZERO_ALLOC:
2240 /* Both zero types are handled in qcow2_co_preadv_part */
2241 g_assert_not_reached();
2243 case QCOW2_SUBCLUSTER_UNALLOCATED_PLAIN:
2244 case QCOW2_SUBCLUSTER_UNALLOCATED_ALLOC:
2245 assert(bs->backing); /* otherwise handled in qcow2_co_preadv_part */
2247 BLKDBG_EVENT(bs->file, BLKDBG_READ_BACKING_AIO);
2248 return bdrv_co_preadv_part(bs->backing, offset, bytes,
2249 qiov, qiov_offset, 0);
2251 case QCOW2_SUBCLUSTER_COMPRESSED:
2252 return qcow2_co_preadv_compressed(bs, host_offset,
2253 offset, bytes, qiov, qiov_offset);
2255 case QCOW2_SUBCLUSTER_NORMAL:
2256 if (bs->encrypted) {
2257 return qcow2_co_preadv_encrypted(bs, host_offset,
2258 offset, bytes, qiov, qiov_offset);
2261 BLKDBG_EVENT(bs->file, BLKDBG_READ_AIO);
2262 return bdrv_co_preadv_part(s->data_file, host_offset,
2263 bytes, qiov, qiov_offset, 0);
2265 default:
2266 g_assert_not_reached();
2269 g_assert_not_reached();
2272 static coroutine_fn int qcow2_co_preadv_task_entry(AioTask *task)
2274 Qcow2AioTask *t = container_of(task, Qcow2AioTask, task);
2276 assert(!t->l2meta);
2278 return qcow2_co_preadv_task(t->bs, t->subcluster_type,
2279 t->host_offset, t->offset, t->bytes,
2280 t->qiov, t->qiov_offset);
2283 static coroutine_fn int qcow2_co_preadv_part(BlockDriverState *bs,
2284 uint64_t offset, uint64_t bytes,
2285 QEMUIOVector *qiov,
2286 size_t qiov_offset, int flags)
2288 BDRVQcow2State *s = bs->opaque;
2289 int ret = 0;
2290 unsigned int cur_bytes; /* number of bytes in current iteration */
2291 uint64_t host_offset = 0;
2292 QCow2SubclusterType type;
2293 AioTaskPool *aio = NULL;
2295 while (bytes != 0 && aio_task_pool_status(aio) == 0) {
2296 /* prepare next request */
2297 cur_bytes = MIN(bytes, INT_MAX);
2298 if (s->crypto) {
2299 cur_bytes = MIN(cur_bytes,
2300 QCOW_MAX_CRYPT_CLUSTERS * s->cluster_size);
2303 qemu_co_mutex_lock(&s->lock);
2304 ret = qcow2_get_host_offset(bs, offset, &cur_bytes,
2305 &host_offset, &type);
2306 qemu_co_mutex_unlock(&s->lock);
2307 if (ret < 0) {
2308 goto out;
2311 if (type == QCOW2_SUBCLUSTER_ZERO_PLAIN ||
2312 type == QCOW2_SUBCLUSTER_ZERO_ALLOC ||
2313 (type == QCOW2_SUBCLUSTER_UNALLOCATED_PLAIN && !bs->backing) ||
2314 (type == QCOW2_SUBCLUSTER_UNALLOCATED_ALLOC && !bs->backing))
2316 qemu_iovec_memset(qiov, qiov_offset, 0, cur_bytes);
2317 } else {
2318 if (!aio && cur_bytes != bytes) {
2319 aio = aio_task_pool_new(QCOW2_MAX_WORKERS);
2321 ret = qcow2_add_task(bs, aio, qcow2_co_preadv_task_entry, type,
2322 host_offset, offset, cur_bytes,
2323 qiov, qiov_offset, NULL);
2324 if (ret < 0) {
2325 goto out;
2329 bytes -= cur_bytes;
2330 offset += cur_bytes;
2331 qiov_offset += cur_bytes;
2334 out:
2335 if (aio) {
2336 aio_task_pool_wait_all(aio);
2337 if (ret == 0) {
2338 ret = aio_task_pool_status(aio);
2340 g_free(aio);
2343 return ret;
2346 /* Check if it's possible to merge a write request with the writing of
2347 * the data from the COW regions */
2348 static bool merge_cow(uint64_t offset, unsigned bytes,
2349 QEMUIOVector *qiov, size_t qiov_offset,
2350 QCowL2Meta *l2meta)
2352 QCowL2Meta *m;
2354 for (m = l2meta; m != NULL; m = m->next) {
2355 /* If both COW regions are empty then there's nothing to merge */
2356 if (m->cow_start.nb_bytes == 0 && m->cow_end.nb_bytes == 0) {
2357 continue;
2360 /* If COW regions are handled already, skip this too */
2361 if (m->skip_cow) {
2362 continue;
2365 /* The data (middle) region must be immediately after the
2366 * start region */
2367 if (l2meta_cow_start(m) + m->cow_start.nb_bytes != offset) {
2368 continue;
2371 /* The end region must be immediately after the data (middle)
2372 * region */
2373 if (m->offset + m->cow_end.offset != offset + bytes) {
2374 continue;
2377 /* Make sure that adding both COW regions to the QEMUIOVector
2378 * does not exceed IOV_MAX */
2379 if (qemu_iovec_subvec_niov(qiov, qiov_offset, bytes) > IOV_MAX - 2) {
2380 continue;
2383 m->data_qiov = qiov;
2384 m->data_qiov_offset = qiov_offset;
2385 return true;
2388 return false;
2391 static bool is_unallocated(BlockDriverState *bs, int64_t offset, int64_t bytes)
2393 int64_t nr;
2394 return !bytes ||
2395 (!bdrv_is_allocated_above(bs, NULL, false, offset, bytes, &nr) &&
2396 nr == bytes);
2399 static bool is_zero_cow(BlockDriverState *bs, QCowL2Meta *m)
2402 * This check is designed for optimization shortcut so it must be
2403 * efficient.
2404 * Instead of is_zero(), use is_unallocated() as it is faster (but not
2405 * as accurate and can result in false negatives).
2407 return is_unallocated(bs, m->offset + m->cow_start.offset,
2408 m->cow_start.nb_bytes) &&
2409 is_unallocated(bs, m->offset + m->cow_end.offset,
2410 m->cow_end.nb_bytes);
2413 static int handle_alloc_space(BlockDriverState *bs, QCowL2Meta *l2meta)
2415 BDRVQcow2State *s = bs->opaque;
2416 QCowL2Meta *m;
2418 if (!(s->data_file->bs->supported_zero_flags & BDRV_REQ_NO_FALLBACK)) {
2419 return 0;
2422 if (bs->encrypted) {
2423 return 0;
2426 for (m = l2meta; m != NULL; m = m->next) {
2427 int ret;
2428 uint64_t start_offset = m->alloc_offset + m->cow_start.offset;
2429 unsigned nb_bytes = m->cow_end.offset + m->cow_end.nb_bytes -
2430 m->cow_start.offset;
2432 if (!m->cow_start.nb_bytes && !m->cow_end.nb_bytes) {
2433 continue;
2436 if (!is_zero_cow(bs, m)) {
2437 continue;
2441 * instead of writing zero COW buffers,
2442 * efficiently zero out the whole clusters
2445 ret = qcow2_pre_write_overlap_check(bs, 0, start_offset, nb_bytes,
2446 true);
2447 if (ret < 0) {
2448 return ret;
2451 BLKDBG_EVENT(bs->file, BLKDBG_CLUSTER_ALLOC_SPACE);
2452 ret = bdrv_co_pwrite_zeroes(s->data_file, start_offset, nb_bytes,
2453 BDRV_REQ_NO_FALLBACK);
2454 if (ret < 0) {
2455 if (ret != -ENOTSUP && ret != -EAGAIN) {
2456 return ret;
2458 continue;
2461 trace_qcow2_skip_cow(qemu_coroutine_self(), m->offset, m->nb_clusters);
2462 m->skip_cow = true;
2464 return 0;
2468 * qcow2_co_pwritev_task
2469 * Called with s->lock unlocked
2470 * l2meta - if not NULL, qcow2_co_pwritev_task() will consume it. Caller must
2471 * not use it somehow after qcow2_co_pwritev_task() call
2473 static coroutine_fn int qcow2_co_pwritev_task(BlockDriverState *bs,
2474 uint64_t host_offset,
2475 uint64_t offset, uint64_t bytes,
2476 QEMUIOVector *qiov,
2477 uint64_t qiov_offset,
2478 QCowL2Meta *l2meta)
2480 int ret;
2481 BDRVQcow2State *s = bs->opaque;
2482 void *crypt_buf = NULL;
2483 QEMUIOVector encrypted_qiov;
2485 if (bs->encrypted) {
2486 assert(s->crypto);
2487 assert(bytes <= QCOW_MAX_CRYPT_CLUSTERS * s->cluster_size);
2488 crypt_buf = qemu_try_blockalign(bs->file->bs, bytes);
2489 if (crypt_buf == NULL) {
2490 ret = -ENOMEM;
2491 goto out_unlocked;
2493 qemu_iovec_to_buf(qiov, qiov_offset, crypt_buf, bytes);
2495 if (qcow2_co_encrypt(bs, host_offset, offset, crypt_buf, bytes) < 0) {
2496 ret = -EIO;
2497 goto out_unlocked;
2500 qemu_iovec_init_buf(&encrypted_qiov, crypt_buf, bytes);
2501 qiov = &encrypted_qiov;
2502 qiov_offset = 0;
2505 /* Try to efficiently initialize the physical space with zeroes */
2506 ret = handle_alloc_space(bs, l2meta);
2507 if (ret < 0) {
2508 goto out_unlocked;
2512 * If we need to do COW, check if it's possible to merge the
2513 * writing of the guest data together with that of the COW regions.
2514 * If it's not possible (or not necessary) then write the
2515 * guest data now.
2517 if (!merge_cow(offset, bytes, qiov, qiov_offset, l2meta)) {
2518 BLKDBG_EVENT(bs->file, BLKDBG_WRITE_AIO);
2519 trace_qcow2_writev_data(qemu_coroutine_self(), host_offset);
2520 ret = bdrv_co_pwritev_part(s->data_file, host_offset,
2521 bytes, qiov, qiov_offset, 0);
2522 if (ret < 0) {
2523 goto out_unlocked;
2527 qemu_co_mutex_lock(&s->lock);
2529 ret = qcow2_handle_l2meta(bs, &l2meta, true);
2530 goto out_locked;
2532 out_unlocked:
2533 qemu_co_mutex_lock(&s->lock);
2535 out_locked:
2536 qcow2_handle_l2meta(bs, &l2meta, false);
2537 qemu_co_mutex_unlock(&s->lock);
2539 qemu_vfree(crypt_buf);
2541 return ret;
2544 static coroutine_fn int qcow2_co_pwritev_task_entry(AioTask *task)
2546 Qcow2AioTask *t = container_of(task, Qcow2AioTask, task);
2548 assert(!t->subcluster_type);
2550 return qcow2_co_pwritev_task(t->bs, t->host_offset,
2551 t->offset, t->bytes, t->qiov, t->qiov_offset,
2552 t->l2meta);
2555 static coroutine_fn int qcow2_co_pwritev_part(
2556 BlockDriverState *bs, uint64_t offset, uint64_t bytes,
2557 QEMUIOVector *qiov, size_t qiov_offset, int flags)
2559 BDRVQcow2State *s = bs->opaque;
2560 int offset_in_cluster;
2561 int ret;
2562 unsigned int cur_bytes; /* number of sectors in current iteration */
2563 uint64_t cluster_offset;
2564 QCowL2Meta *l2meta = NULL;
2565 AioTaskPool *aio = NULL;
2567 trace_qcow2_writev_start_req(qemu_coroutine_self(), offset, bytes);
2569 while (bytes != 0 && aio_task_pool_status(aio) == 0) {
2571 l2meta = NULL;
2573 trace_qcow2_writev_start_part(qemu_coroutine_self());
2574 offset_in_cluster = offset_into_cluster(s, offset);
2575 cur_bytes = MIN(bytes, INT_MAX);
2576 if (bs->encrypted) {
2577 cur_bytes = MIN(cur_bytes,
2578 QCOW_MAX_CRYPT_CLUSTERS * s->cluster_size
2579 - offset_in_cluster);
2582 qemu_co_mutex_lock(&s->lock);
2584 ret = qcow2_alloc_cluster_offset(bs, offset, &cur_bytes,
2585 &cluster_offset, &l2meta);
2586 if (ret < 0) {
2587 goto out_locked;
2590 assert(offset_into_cluster(s, cluster_offset) == 0);
2592 ret = qcow2_pre_write_overlap_check(bs, 0,
2593 cluster_offset + offset_in_cluster,
2594 cur_bytes, true);
2595 if (ret < 0) {
2596 goto out_locked;
2599 qemu_co_mutex_unlock(&s->lock);
2601 if (!aio && cur_bytes != bytes) {
2602 aio = aio_task_pool_new(QCOW2_MAX_WORKERS);
2604 ret = qcow2_add_task(bs, aio, qcow2_co_pwritev_task_entry, 0,
2605 cluster_offset + offset_in_cluster, offset,
2606 cur_bytes, qiov, qiov_offset, l2meta);
2607 l2meta = NULL; /* l2meta is consumed by qcow2_co_pwritev_task() */
2608 if (ret < 0) {
2609 goto fail_nometa;
2612 bytes -= cur_bytes;
2613 offset += cur_bytes;
2614 qiov_offset += cur_bytes;
2615 trace_qcow2_writev_done_part(qemu_coroutine_self(), cur_bytes);
2617 ret = 0;
2619 qemu_co_mutex_lock(&s->lock);
2621 out_locked:
2622 qcow2_handle_l2meta(bs, &l2meta, false);
2624 qemu_co_mutex_unlock(&s->lock);
2626 fail_nometa:
2627 if (aio) {
2628 aio_task_pool_wait_all(aio);
2629 if (ret == 0) {
2630 ret = aio_task_pool_status(aio);
2632 g_free(aio);
2635 trace_qcow2_writev_done_req(qemu_coroutine_self(), ret);
2637 return ret;
2640 static int qcow2_inactivate(BlockDriverState *bs)
2642 BDRVQcow2State *s = bs->opaque;
2643 int ret, result = 0;
2644 Error *local_err = NULL;
2646 qcow2_store_persistent_dirty_bitmaps(bs, true, &local_err);
2647 if (local_err != NULL) {
2648 result = -EINVAL;
2649 error_reportf_err(local_err, "Lost persistent bitmaps during "
2650 "inactivation of node '%s': ",
2651 bdrv_get_device_or_node_name(bs));
2654 ret = qcow2_cache_flush(bs, s->l2_table_cache);
2655 if (ret) {
2656 result = ret;
2657 error_report("Failed to flush the L2 table cache: %s",
2658 strerror(-ret));
2661 ret = qcow2_cache_flush(bs, s->refcount_block_cache);
2662 if (ret) {
2663 result = ret;
2664 error_report("Failed to flush the refcount block cache: %s",
2665 strerror(-ret));
2668 if (result == 0) {
2669 qcow2_mark_clean(bs);
2672 return result;
2675 static void qcow2_close(BlockDriverState *bs)
2677 BDRVQcow2State *s = bs->opaque;
2678 qemu_vfree(s->l1_table);
2679 /* else pre-write overlap checks in cache_destroy may crash */
2680 s->l1_table = NULL;
2682 if (!(s->flags & BDRV_O_INACTIVE)) {
2683 qcow2_inactivate(bs);
2686 cache_clean_timer_del(bs);
2687 qcow2_cache_destroy(s->l2_table_cache);
2688 qcow2_cache_destroy(s->refcount_block_cache);
2690 qcrypto_block_free(s->crypto);
2691 s->crypto = NULL;
2692 qapi_free_QCryptoBlockOpenOptions(s->crypto_opts);
2694 g_free(s->unknown_header_fields);
2695 cleanup_unknown_header_ext(bs);
2697 g_free(s->image_data_file);
2698 g_free(s->image_backing_file);
2699 g_free(s->image_backing_format);
2701 if (has_data_file(bs)) {
2702 bdrv_unref_child(bs, s->data_file);
2703 s->data_file = NULL;
2706 qcow2_refcount_close(bs);
2707 qcow2_free_snapshots(bs);
2710 static void coroutine_fn qcow2_co_invalidate_cache(BlockDriverState *bs,
2711 Error **errp)
2713 BDRVQcow2State *s = bs->opaque;
2714 int flags = s->flags;
2715 QCryptoBlock *crypto = NULL;
2716 QDict *options;
2717 Error *local_err = NULL;
2718 int ret;
2721 * Backing files are read-only which makes all of their metadata immutable,
2722 * that means we don't have to worry about reopening them here.
2725 crypto = s->crypto;
2726 s->crypto = NULL;
2728 qcow2_close(bs);
2730 memset(s, 0, sizeof(BDRVQcow2State));
2731 options = qdict_clone_shallow(bs->options);
2733 flags &= ~BDRV_O_INACTIVE;
2734 qemu_co_mutex_lock(&s->lock);
2735 ret = qcow2_do_open(bs, options, flags, &local_err);
2736 qemu_co_mutex_unlock(&s->lock);
2737 qobject_unref(options);
2738 if (local_err) {
2739 error_propagate_prepend(errp, local_err,
2740 "Could not reopen qcow2 layer: ");
2741 bs->drv = NULL;
2742 return;
2743 } else if (ret < 0) {
2744 error_setg_errno(errp, -ret, "Could not reopen qcow2 layer");
2745 bs->drv = NULL;
2746 return;
2749 s->crypto = crypto;
2752 static size_t header_ext_add(char *buf, uint32_t magic, const void *s,
2753 size_t len, size_t buflen)
2755 QCowExtension *ext_backing_fmt = (QCowExtension*) buf;
2756 size_t ext_len = sizeof(QCowExtension) + ((len + 7) & ~7);
2758 if (buflen < ext_len) {
2759 return -ENOSPC;
2762 *ext_backing_fmt = (QCowExtension) {
2763 .magic = cpu_to_be32(magic),
2764 .len = cpu_to_be32(len),
2767 if (len) {
2768 memcpy(buf + sizeof(QCowExtension), s, len);
2771 return ext_len;
2775 * Updates the qcow2 header, including the variable length parts of it, i.e.
2776 * the backing file name and all extensions. qcow2 was not designed to allow
2777 * such changes, so if we run out of space (we can only use the first cluster)
2778 * this function may fail.
2780 * Returns 0 on success, -errno in error cases.
2782 int qcow2_update_header(BlockDriverState *bs)
2784 BDRVQcow2State *s = bs->opaque;
2785 QCowHeader *header;
2786 char *buf;
2787 size_t buflen = s->cluster_size;
2788 int ret;
2789 uint64_t total_size;
2790 uint32_t refcount_table_clusters;
2791 size_t header_length;
2792 Qcow2UnknownHeaderExtension *uext;
2794 buf = qemu_blockalign(bs, buflen);
2796 /* Header structure */
2797 header = (QCowHeader*) buf;
2799 if (buflen < sizeof(*header)) {
2800 ret = -ENOSPC;
2801 goto fail;
2804 header_length = sizeof(*header) + s->unknown_header_fields_size;
2805 total_size = bs->total_sectors * BDRV_SECTOR_SIZE;
2806 refcount_table_clusters = s->refcount_table_size >> (s->cluster_bits - 3);
2808 ret = validate_compression_type(s, NULL);
2809 if (ret) {
2810 goto fail;
2813 *header = (QCowHeader) {
2814 /* Version 2 fields */
2815 .magic = cpu_to_be32(QCOW_MAGIC),
2816 .version = cpu_to_be32(s->qcow_version),
2817 .backing_file_offset = 0,
2818 .backing_file_size = 0,
2819 .cluster_bits = cpu_to_be32(s->cluster_bits),
2820 .size = cpu_to_be64(total_size),
2821 .crypt_method = cpu_to_be32(s->crypt_method_header),
2822 .l1_size = cpu_to_be32(s->l1_size),
2823 .l1_table_offset = cpu_to_be64(s->l1_table_offset),
2824 .refcount_table_offset = cpu_to_be64(s->refcount_table_offset),
2825 .refcount_table_clusters = cpu_to_be32(refcount_table_clusters),
2826 .nb_snapshots = cpu_to_be32(s->nb_snapshots),
2827 .snapshots_offset = cpu_to_be64(s->snapshots_offset),
2829 /* Version 3 fields */
2830 .incompatible_features = cpu_to_be64(s->incompatible_features),
2831 .compatible_features = cpu_to_be64(s->compatible_features),
2832 .autoclear_features = cpu_to_be64(s->autoclear_features),
2833 .refcount_order = cpu_to_be32(s->refcount_order),
2834 .header_length = cpu_to_be32(header_length),
2835 .compression_type = s->compression_type,
2838 /* For older versions, write a shorter header */
2839 switch (s->qcow_version) {
2840 case 2:
2841 ret = offsetof(QCowHeader, incompatible_features);
2842 break;
2843 case 3:
2844 ret = sizeof(*header);
2845 break;
2846 default:
2847 ret = -EINVAL;
2848 goto fail;
2851 buf += ret;
2852 buflen -= ret;
2853 memset(buf, 0, buflen);
2855 /* Preserve any unknown field in the header */
2856 if (s->unknown_header_fields_size) {
2857 if (buflen < s->unknown_header_fields_size) {
2858 ret = -ENOSPC;
2859 goto fail;
2862 memcpy(buf, s->unknown_header_fields, s->unknown_header_fields_size);
2863 buf += s->unknown_header_fields_size;
2864 buflen -= s->unknown_header_fields_size;
2867 /* Backing file format header extension */
2868 if (s->image_backing_format) {
2869 ret = header_ext_add(buf, QCOW2_EXT_MAGIC_BACKING_FORMAT,
2870 s->image_backing_format,
2871 strlen(s->image_backing_format),
2872 buflen);
2873 if (ret < 0) {
2874 goto fail;
2877 buf += ret;
2878 buflen -= ret;
2881 /* External data file header extension */
2882 if (has_data_file(bs) && s->image_data_file) {
2883 ret = header_ext_add(buf, QCOW2_EXT_MAGIC_DATA_FILE,
2884 s->image_data_file, strlen(s->image_data_file),
2885 buflen);
2886 if (ret < 0) {
2887 goto fail;
2890 buf += ret;
2891 buflen -= ret;
2894 /* Full disk encryption header pointer extension */
2895 if (s->crypto_header.offset != 0) {
2896 s->crypto_header.offset = cpu_to_be64(s->crypto_header.offset);
2897 s->crypto_header.length = cpu_to_be64(s->crypto_header.length);
2898 ret = header_ext_add(buf, QCOW2_EXT_MAGIC_CRYPTO_HEADER,
2899 &s->crypto_header, sizeof(s->crypto_header),
2900 buflen);
2901 s->crypto_header.offset = be64_to_cpu(s->crypto_header.offset);
2902 s->crypto_header.length = be64_to_cpu(s->crypto_header.length);
2903 if (ret < 0) {
2904 goto fail;
2906 buf += ret;
2907 buflen -= ret;
2911 * Feature table. A mere 8 feature names occupies 392 bytes, and
2912 * when coupled with the v3 minimum header of 104 bytes plus the
2913 * 8-byte end-of-extension marker, that would leave only 8 bytes
2914 * for a backing file name in an image with 512-byte clusters.
2915 * Thus, we choose to omit this header for cluster sizes 4k and
2916 * smaller.
2918 if (s->qcow_version >= 3 && s->cluster_size > 4096) {
2919 static const Qcow2Feature features[] = {
2921 .type = QCOW2_FEAT_TYPE_INCOMPATIBLE,
2922 .bit = QCOW2_INCOMPAT_DIRTY_BITNR,
2923 .name = "dirty bit",
2926 .type = QCOW2_FEAT_TYPE_INCOMPATIBLE,
2927 .bit = QCOW2_INCOMPAT_CORRUPT_BITNR,
2928 .name = "corrupt bit",
2931 .type = QCOW2_FEAT_TYPE_INCOMPATIBLE,
2932 .bit = QCOW2_INCOMPAT_DATA_FILE_BITNR,
2933 .name = "external data file",
2936 .type = QCOW2_FEAT_TYPE_INCOMPATIBLE,
2937 .bit = QCOW2_INCOMPAT_COMPRESSION_BITNR,
2938 .name = "compression type",
2941 .type = QCOW2_FEAT_TYPE_INCOMPATIBLE,
2942 .bit = QCOW2_INCOMPAT_EXTL2_BITNR,
2943 .name = "extended L2 entries",
2946 .type = QCOW2_FEAT_TYPE_COMPATIBLE,
2947 .bit = QCOW2_COMPAT_LAZY_REFCOUNTS_BITNR,
2948 .name = "lazy refcounts",
2951 .type = QCOW2_FEAT_TYPE_AUTOCLEAR,
2952 .bit = QCOW2_AUTOCLEAR_BITMAPS_BITNR,
2953 .name = "bitmaps",
2956 .type = QCOW2_FEAT_TYPE_AUTOCLEAR,
2957 .bit = QCOW2_AUTOCLEAR_DATA_FILE_RAW_BITNR,
2958 .name = "raw external data",
2962 ret = header_ext_add(buf, QCOW2_EXT_MAGIC_FEATURE_TABLE,
2963 features, sizeof(features), buflen);
2964 if (ret < 0) {
2965 goto fail;
2967 buf += ret;
2968 buflen -= ret;
2971 /* Bitmap extension */
2972 if (s->nb_bitmaps > 0) {
2973 Qcow2BitmapHeaderExt bitmaps_header = {
2974 .nb_bitmaps = cpu_to_be32(s->nb_bitmaps),
2975 .bitmap_directory_size =
2976 cpu_to_be64(s->bitmap_directory_size),
2977 .bitmap_directory_offset =
2978 cpu_to_be64(s->bitmap_directory_offset)
2980 ret = header_ext_add(buf, QCOW2_EXT_MAGIC_BITMAPS,
2981 &bitmaps_header, sizeof(bitmaps_header),
2982 buflen);
2983 if (ret < 0) {
2984 goto fail;
2986 buf += ret;
2987 buflen -= ret;
2990 /* Keep unknown header extensions */
2991 QLIST_FOREACH(uext, &s->unknown_header_ext, next) {
2992 ret = header_ext_add(buf, uext->magic, uext->data, uext->len, buflen);
2993 if (ret < 0) {
2994 goto fail;
2997 buf += ret;
2998 buflen -= ret;
3001 /* End of header extensions */
3002 ret = header_ext_add(buf, QCOW2_EXT_MAGIC_END, NULL, 0, buflen);
3003 if (ret < 0) {
3004 goto fail;
3007 buf += ret;
3008 buflen -= ret;
3010 /* Backing file name */
3011 if (s->image_backing_file) {
3012 size_t backing_file_len = strlen(s->image_backing_file);
3014 if (buflen < backing_file_len) {
3015 ret = -ENOSPC;
3016 goto fail;
3019 /* Using strncpy is ok here, since buf is not NUL-terminated. */
3020 strncpy(buf, s->image_backing_file, buflen);
3022 header->backing_file_offset = cpu_to_be64(buf - ((char*) header));
3023 header->backing_file_size = cpu_to_be32(backing_file_len);
3026 /* Write the new header */
3027 ret = bdrv_pwrite(bs->file, 0, header, s->cluster_size);
3028 if (ret < 0) {
3029 goto fail;
3032 ret = 0;
3033 fail:
3034 qemu_vfree(header);
3035 return ret;
3038 static int qcow2_change_backing_file(BlockDriverState *bs,
3039 const char *backing_file, const char *backing_fmt)
3041 BDRVQcow2State *s = bs->opaque;
3043 /* Adding a backing file means that the external data file alone won't be
3044 * enough to make sense of the content */
3045 if (backing_file && data_file_is_raw(bs)) {
3046 return -EINVAL;
3049 if (backing_file && strlen(backing_file) > 1023) {
3050 return -EINVAL;
3053 pstrcpy(bs->auto_backing_file, sizeof(bs->auto_backing_file),
3054 backing_file ?: "");
3055 pstrcpy(bs->backing_file, sizeof(bs->backing_file), backing_file ?: "");
3056 pstrcpy(bs->backing_format, sizeof(bs->backing_format), backing_fmt ?: "");
3058 g_free(s->image_backing_file);
3059 g_free(s->image_backing_format);
3061 s->image_backing_file = backing_file ? g_strdup(bs->backing_file) : NULL;
3062 s->image_backing_format = backing_fmt ? g_strdup(bs->backing_format) : NULL;
3064 return qcow2_update_header(bs);
3067 static int qcow2_set_up_encryption(BlockDriverState *bs,
3068 QCryptoBlockCreateOptions *cryptoopts,
3069 Error **errp)
3071 BDRVQcow2State *s = bs->opaque;
3072 QCryptoBlock *crypto = NULL;
3073 int fmt, ret;
3075 switch (cryptoopts->format) {
3076 case Q_CRYPTO_BLOCK_FORMAT_LUKS:
3077 fmt = QCOW_CRYPT_LUKS;
3078 break;
3079 case Q_CRYPTO_BLOCK_FORMAT_QCOW:
3080 fmt = QCOW_CRYPT_AES;
3081 break;
3082 default:
3083 error_setg(errp, "Crypto format not supported in qcow2");
3084 return -EINVAL;
3087 s->crypt_method_header = fmt;
3089 crypto = qcrypto_block_create(cryptoopts, "encrypt.",
3090 qcow2_crypto_hdr_init_func,
3091 qcow2_crypto_hdr_write_func,
3092 bs, errp);
3093 if (!crypto) {
3094 return -EINVAL;
3097 ret = qcow2_update_header(bs);
3098 if (ret < 0) {
3099 error_setg_errno(errp, -ret, "Could not write encryption header");
3100 goto out;
3103 ret = 0;
3104 out:
3105 qcrypto_block_free(crypto);
3106 return ret;
3110 * Preallocates metadata structures for data clusters between @offset (in the
3111 * guest disk) and @new_length (which is thus generally the new guest disk
3112 * size).
3114 * Returns: 0 on success, -errno on failure.
3116 static int coroutine_fn preallocate_co(BlockDriverState *bs, uint64_t offset,
3117 uint64_t new_length, PreallocMode mode,
3118 Error **errp)
3120 BDRVQcow2State *s = bs->opaque;
3121 uint64_t bytes;
3122 uint64_t host_offset = 0;
3123 int64_t file_length;
3124 unsigned int cur_bytes;
3125 int ret;
3126 QCowL2Meta *meta;
3128 assert(offset <= new_length);
3129 bytes = new_length - offset;
3131 while (bytes) {
3132 cur_bytes = MIN(bytes, QEMU_ALIGN_DOWN(INT_MAX, s->cluster_size));
3133 ret = qcow2_alloc_cluster_offset(bs, offset, &cur_bytes,
3134 &host_offset, &meta);
3135 if (ret < 0) {
3136 error_setg_errno(errp, -ret, "Allocating clusters failed");
3137 return ret;
3140 while (meta) {
3141 QCowL2Meta *next = meta->next;
3142 meta->prealloc = true;
3144 ret = qcow2_alloc_cluster_link_l2(bs, meta);
3145 if (ret < 0) {
3146 error_setg_errno(errp, -ret, "Mapping clusters failed");
3147 qcow2_free_any_clusters(bs, meta->alloc_offset,
3148 meta->nb_clusters, QCOW2_DISCARD_NEVER);
3149 return ret;
3152 /* There are no dependent requests, but we need to remove our
3153 * request from the list of in-flight requests */
3154 QLIST_REMOVE(meta, next_in_flight);
3156 g_free(meta);
3157 meta = next;
3160 /* TODO Preallocate data if requested */
3162 bytes -= cur_bytes;
3163 offset += cur_bytes;
3167 * It is expected that the image file is large enough to actually contain
3168 * all of the allocated clusters (otherwise we get failing reads after
3169 * EOF). Extend the image to the last allocated sector.
3171 file_length = bdrv_getlength(s->data_file->bs);
3172 if (file_length < 0) {
3173 error_setg_errno(errp, -file_length, "Could not get file size");
3174 return file_length;
3177 if (host_offset + cur_bytes > file_length) {
3178 if (mode == PREALLOC_MODE_METADATA) {
3179 mode = PREALLOC_MODE_OFF;
3181 ret = bdrv_co_truncate(s->data_file, host_offset + cur_bytes, false,
3182 mode, 0, errp);
3183 if (ret < 0) {
3184 return ret;
3188 return 0;
3191 /* qcow2_refcount_metadata_size:
3192 * @clusters: number of clusters to refcount (including data and L1/L2 tables)
3193 * @cluster_size: size of a cluster, in bytes
3194 * @refcount_order: refcount bits power-of-2 exponent
3195 * @generous_increase: allow for the refcount table to be 1.5x as large as it
3196 * needs to be
3198 * Returns: Number of bytes required for refcount blocks and table metadata.
3200 int64_t qcow2_refcount_metadata_size(int64_t clusters, size_t cluster_size,
3201 int refcount_order, bool generous_increase,
3202 uint64_t *refblock_count)
3205 * Every host cluster is reference-counted, including metadata (even
3206 * refcount metadata is recursively included).
3208 * An accurate formula for the size of refcount metadata size is difficult
3209 * to derive. An easier method of calculation is finding the fixed point
3210 * where no further refcount blocks or table clusters are required to
3211 * reference count every cluster.
3213 int64_t blocks_per_table_cluster = cluster_size / REFTABLE_ENTRY_SIZE;
3214 int64_t refcounts_per_block = cluster_size * 8 / (1 << refcount_order);
3215 int64_t table = 0; /* number of refcount table clusters */
3216 int64_t blocks = 0; /* number of refcount block clusters */
3217 int64_t last;
3218 int64_t n = 0;
3220 do {
3221 last = n;
3222 blocks = DIV_ROUND_UP(clusters + table + blocks, refcounts_per_block);
3223 table = DIV_ROUND_UP(blocks, blocks_per_table_cluster);
3224 n = clusters + blocks + table;
3226 if (n == last && generous_increase) {
3227 clusters += DIV_ROUND_UP(table, 2);
3228 n = 0; /* force another loop */
3229 generous_increase = false;
3231 } while (n != last);
3233 if (refblock_count) {
3234 *refblock_count = blocks;
3237 return (blocks + table) * cluster_size;
3241 * qcow2_calc_prealloc_size:
3242 * @total_size: virtual disk size in bytes
3243 * @cluster_size: cluster size in bytes
3244 * @refcount_order: refcount bits power-of-2 exponent
3245 * @extended_l2: true if the image has extended L2 entries
3247 * Returns: Total number of bytes required for the fully allocated image
3248 * (including metadata).
3250 static int64_t qcow2_calc_prealloc_size(int64_t total_size,
3251 size_t cluster_size,
3252 int refcount_order,
3253 bool extended_l2)
3255 int64_t meta_size = 0;
3256 uint64_t nl1e, nl2e;
3257 int64_t aligned_total_size = ROUND_UP(total_size, cluster_size);
3258 size_t l2e_size = extended_l2 ? L2E_SIZE_EXTENDED : L2E_SIZE_NORMAL;
3260 /* header: 1 cluster */
3261 meta_size += cluster_size;
3263 /* total size of L2 tables */
3264 nl2e = aligned_total_size / cluster_size;
3265 nl2e = ROUND_UP(nl2e, cluster_size / l2e_size);
3266 meta_size += nl2e * l2e_size;
3268 /* total size of L1 tables */
3269 nl1e = nl2e * l2e_size / cluster_size;
3270 nl1e = ROUND_UP(nl1e, cluster_size / L1E_SIZE);
3271 meta_size += nl1e * L1E_SIZE;
3273 /* total size of refcount table and blocks */
3274 meta_size += qcow2_refcount_metadata_size(
3275 (meta_size + aligned_total_size) / cluster_size,
3276 cluster_size, refcount_order, false, NULL);
3278 return meta_size + aligned_total_size;
3281 static bool validate_cluster_size(size_t cluster_size, bool extended_l2,
3282 Error **errp)
3284 int cluster_bits = ctz32(cluster_size);
3285 if (cluster_bits < MIN_CLUSTER_BITS || cluster_bits > MAX_CLUSTER_BITS ||
3286 (1 << cluster_bits) != cluster_size)
3288 error_setg(errp, "Cluster size must be a power of two between %d and "
3289 "%dk", 1 << MIN_CLUSTER_BITS, 1 << (MAX_CLUSTER_BITS - 10));
3290 return false;
3293 if (extended_l2) {
3294 unsigned min_cluster_size =
3295 (1 << MIN_CLUSTER_BITS) * QCOW_EXTL2_SUBCLUSTERS_PER_CLUSTER;
3296 if (cluster_size < min_cluster_size) {
3297 error_setg(errp, "Extended L2 entries are only supported with "
3298 "cluster sizes of at least %u bytes", min_cluster_size);
3299 return false;
3303 return true;
3306 static size_t qcow2_opt_get_cluster_size_del(QemuOpts *opts, bool extended_l2,
3307 Error **errp)
3309 size_t cluster_size;
3311 cluster_size = qemu_opt_get_size_del(opts, BLOCK_OPT_CLUSTER_SIZE,
3312 DEFAULT_CLUSTER_SIZE);
3313 if (!validate_cluster_size(cluster_size, extended_l2, errp)) {
3314 return 0;
3316 return cluster_size;
3319 static int qcow2_opt_get_version_del(QemuOpts *opts, Error **errp)
3321 char *buf;
3322 int ret;
3324 buf = qemu_opt_get_del(opts, BLOCK_OPT_COMPAT_LEVEL);
3325 if (!buf) {
3326 ret = 3; /* default */
3327 } else if (!strcmp(buf, "0.10")) {
3328 ret = 2;
3329 } else if (!strcmp(buf, "1.1")) {
3330 ret = 3;
3331 } else {
3332 error_setg(errp, "Invalid compatibility level: '%s'", buf);
3333 ret = -EINVAL;
3335 g_free(buf);
3336 return ret;
3339 static uint64_t qcow2_opt_get_refcount_bits_del(QemuOpts *opts, int version,
3340 Error **errp)
3342 uint64_t refcount_bits;
3344 refcount_bits = qemu_opt_get_number_del(opts, BLOCK_OPT_REFCOUNT_BITS, 16);
3345 if (refcount_bits > 64 || !is_power_of_2(refcount_bits)) {
3346 error_setg(errp, "Refcount width must be a power of two and may not "
3347 "exceed 64 bits");
3348 return 0;
3351 if (version < 3 && refcount_bits != 16) {
3352 error_setg(errp, "Different refcount widths than 16 bits require "
3353 "compatibility level 1.1 or above (use compat=1.1 or "
3354 "greater)");
3355 return 0;
3358 return refcount_bits;
3361 static int coroutine_fn
3362 qcow2_co_create(BlockdevCreateOptions *create_options, Error **errp)
3364 BlockdevCreateOptionsQcow2 *qcow2_opts;
3365 QDict *options;
3368 * Open the image file and write a minimal qcow2 header.
3370 * We keep things simple and start with a zero-sized image. We also
3371 * do without refcount blocks or a L1 table for now. We'll fix the
3372 * inconsistency later.
3374 * We do need a refcount table because growing the refcount table means
3375 * allocating two new refcount blocks - the second of which would be at
3376 * 2 GB for 64k clusters, and we don't want to have a 2 GB initial file
3377 * size for any qcow2 image.
3379 BlockBackend *blk = NULL;
3380 BlockDriverState *bs = NULL;
3381 BlockDriverState *data_bs = NULL;
3382 QCowHeader *header;
3383 size_t cluster_size;
3384 int version;
3385 int refcount_order;
3386 uint64_t* refcount_table;
3387 int ret;
3388 uint8_t compression_type = QCOW2_COMPRESSION_TYPE_ZLIB;
3390 assert(create_options->driver == BLOCKDEV_DRIVER_QCOW2);
3391 qcow2_opts = &create_options->u.qcow2;
3393 bs = bdrv_open_blockdev_ref(qcow2_opts->file, errp);
3394 if (bs == NULL) {
3395 return -EIO;
3398 /* Validate options and set default values */
3399 if (!QEMU_IS_ALIGNED(qcow2_opts->size, BDRV_SECTOR_SIZE)) {
3400 error_setg(errp, "Image size must be a multiple of %u bytes",
3401 (unsigned) BDRV_SECTOR_SIZE);
3402 ret = -EINVAL;
3403 goto out;
3406 if (qcow2_opts->has_version) {
3407 switch (qcow2_opts->version) {
3408 case BLOCKDEV_QCOW2_VERSION_V2:
3409 version = 2;
3410 break;
3411 case BLOCKDEV_QCOW2_VERSION_V3:
3412 version = 3;
3413 break;
3414 default:
3415 g_assert_not_reached();
3417 } else {
3418 version = 3;
3421 if (qcow2_opts->has_cluster_size) {
3422 cluster_size = qcow2_opts->cluster_size;
3423 } else {
3424 cluster_size = DEFAULT_CLUSTER_SIZE;
3427 if (!qcow2_opts->has_extended_l2) {
3428 qcow2_opts->extended_l2 = false;
3430 if (qcow2_opts->extended_l2) {
3431 if (version < 3) {
3432 error_setg(errp, "Extended L2 entries are only supported with "
3433 "compatibility level 1.1 and above (use version=v3 or "
3434 "greater)");
3435 ret = -EINVAL;
3436 goto out;
3440 if (!validate_cluster_size(cluster_size, qcow2_opts->extended_l2, errp)) {
3441 ret = -EINVAL;
3442 goto out;
3445 if (!qcow2_opts->has_preallocation) {
3446 qcow2_opts->preallocation = PREALLOC_MODE_OFF;
3448 if (qcow2_opts->has_backing_file &&
3449 qcow2_opts->preallocation != PREALLOC_MODE_OFF &&
3450 !qcow2_opts->extended_l2)
3452 error_setg(errp, "Backing file and preallocation can only be used at "
3453 "the same time if extended_l2 is on");
3454 ret = -EINVAL;
3455 goto out;
3457 if (qcow2_opts->has_backing_fmt && !qcow2_opts->has_backing_file) {
3458 error_setg(errp, "Backing format cannot be used without backing file");
3459 ret = -EINVAL;
3460 goto out;
3463 if (!qcow2_opts->has_lazy_refcounts) {
3464 qcow2_opts->lazy_refcounts = false;
3466 if (version < 3 && qcow2_opts->lazy_refcounts) {
3467 error_setg(errp, "Lazy refcounts only supported with compatibility "
3468 "level 1.1 and above (use version=v3 or greater)");
3469 ret = -EINVAL;
3470 goto out;
3473 if (!qcow2_opts->has_refcount_bits) {
3474 qcow2_opts->refcount_bits = 16;
3476 if (qcow2_opts->refcount_bits > 64 ||
3477 !is_power_of_2(qcow2_opts->refcount_bits))
3479 error_setg(errp, "Refcount width must be a power of two and may not "
3480 "exceed 64 bits");
3481 ret = -EINVAL;
3482 goto out;
3484 if (version < 3 && qcow2_opts->refcount_bits != 16) {
3485 error_setg(errp, "Different refcount widths than 16 bits require "
3486 "compatibility level 1.1 or above (use version=v3 or "
3487 "greater)");
3488 ret = -EINVAL;
3489 goto out;
3491 refcount_order = ctz32(qcow2_opts->refcount_bits);
3493 if (qcow2_opts->data_file_raw && !qcow2_opts->data_file) {
3494 error_setg(errp, "data-file-raw requires data-file");
3495 ret = -EINVAL;
3496 goto out;
3498 if (qcow2_opts->data_file_raw && qcow2_opts->has_backing_file) {
3499 error_setg(errp, "Backing file and data-file-raw cannot be used at "
3500 "the same time");
3501 ret = -EINVAL;
3502 goto out;
3505 if (qcow2_opts->data_file) {
3506 if (version < 3) {
3507 error_setg(errp, "External data files are only supported with "
3508 "compatibility level 1.1 and above (use version=v3 or "
3509 "greater)");
3510 ret = -EINVAL;
3511 goto out;
3513 data_bs = bdrv_open_blockdev_ref(qcow2_opts->data_file, errp);
3514 if (data_bs == NULL) {
3515 ret = -EIO;
3516 goto out;
3520 if (qcow2_opts->has_compression_type &&
3521 qcow2_opts->compression_type != QCOW2_COMPRESSION_TYPE_ZLIB) {
3523 ret = -EINVAL;
3525 if (version < 3) {
3526 error_setg(errp, "Non-zlib compression type is only supported with "
3527 "compatibility level 1.1 and above (use version=v3 or "
3528 "greater)");
3529 goto out;
3532 switch (qcow2_opts->compression_type) {
3533 #ifdef CONFIG_ZSTD
3534 case QCOW2_COMPRESSION_TYPE_ZSTD:
3535 break;
3536 #endif
3537 default:
3538 error_setg(errp, "Unknown compression type");
3539 goto out;
3542 compression_type = qcow2_opts->compression_type;
3545 /* Create BlockBackend to write to the image */
3546 blk = blk_new_with_bs(bs, BLK_PERM_WRITE | BLK_PERM_RESIZE, BLK_PERM_ALL,
3547 errp);
3548 if (!blk) {
3549 ret = -EPERM;
3550 goto out;
3552 blk_set_allow_write_beyond_eof(blk, true);
3554 /* Write the header */
3555 QEMU_BUILD_BUG_ON((1 << MIN_CLUSTER_BITS) < sizeof(*header));
3556 header = g_malloc0(cluster_size);
3557 *header = (QCowHeader) {
3558 .magic = cpu_to_be32(QCOW_MAGIC),
3559 .version = cpu_to_be32(version),
3560 .cluster_bits = cpu_to_be32(ctz32(cluster_size)),
3561 .size = cpu_to_be64(0),
3562 .l1_table_offset = cpu_to_be64(0),
3563 .l1_size = cpu_to_be32(0),
3564 .refcount_table_offset = cpu_to_be64(cluster_size),
3565 .refcount_table_clusters = cpu_to_be32(1),
3566 .refcount_order = cpu_to_be32(refcount_order),
3567 /* don't deal with endianness since compression_type is 1 byte long */
3568 .compression_type = compression_type,
3569 .header_length = cpu_to_be32(sizeof(*header)),
3572 /* We'll update this to correct value later */
3573 header->crypt_method = cpu_to_be32(QCOW_CRYPT_NONE);
3575 if (qcow2_opts->lazy_refcounts) {
3576 header->compatible_features |=
3577 cpu_to_be64(QCOW2_COMPAT_LAZY_REFCOUNTS);
3579 if (data_bs) {
3580 header->incompatible_features |=
3581 cpu_to_be64(QCOW2_INCOMPAT_DATA_FILE);
3583 if (qcow2_opts->data_file_raw) {
3584 header->autoclear_features |=
3585 cpu_to_be64(QCOW2_AUTOCLEAR_DATA_FILE_RAW);
3587 if (compression_type != QCOW2_COMPRESSION_TYPE_ZLIB) {
3588 header->incompatible_features |=
3589 cpu_to_be64(QCOW2_INCOMPAT_COMPRESSION);
3592 if (qcow2_opts->extended_l2) {
3593 header->incompatible_features |=
3594 cpu_to_be64(QCOW2_INCOMPAT_EXTL2);
3597 ret = blk_pwrite(blk, 0, header, cluster_size, 0);
3598 g_free(header);
3599 if (ret < 0) {
3600 error_setg_errno(errp, -ret, "Could not write qcow2 header");
3601 goto out;
3604 /* Write a refcount table with one refcount block */
3605 refcount_table = g_malloc0(2 * cluster_size);
3606 refcount_table[0] = cpu_to_be64(2 * cluster_size);
3607 ret = blk_pwrite(blk, cluster_size, refcount_table, 2 * cluster_size, 0);
3608 g_free(refcount_table);
3610 if (ret < 0) {
3611 error_setg_errno(errp, -ret, "Could not write refcount table");
3612 goto out;
3615 blk_unref(blk);
3616 blk = NULL;
3619 * And now open the image and make it consistent first (i.e. increase the
3620 * refcount of the cluster that is occupied by the header and the refcount
3621 * table)
3623 options = qdict_new();
3624 qdict_put_str(options, "driver", "qcow2");
3625 qdict_put_str(options, "file", bs->node_name);
3626 if (data_bs) {
3627 qdict_put_str(options, "data-file", data_bs->node_name);
3629 blk = blk_new_open(NULL, NULL, options,
3630 BDRV_O_RDWR | BDRV_O_RESIZE | BDRV_O_NO_FLUSH,
3631 errp);
3632 if (blk == NULL) {
3633 ret = -EIO;
3634 goto out;
3637 ret = qcow2_alloc_clusters(blk_bs(blk), 3 * cluster_size);
3638 if (ret < 0) {
3639 error_setg_errno(errp, -ret, "Could not allocate clusters for qcow2 "
3640 "header and refcount table");
3641 goto out;
3643 } else if (ret != 0) {
3644 error_report("Huh, first cluster in empty image is already in use?");
3645 abort();
3648 /* Set the external data file if necessary */
3649 if (data_bs) {
3650 BDRVQcow2State *s = blk_bs(blk)->opaque;
3651 s->image_data_file = g_strdup(data_bs->filename);
3654 /* Create a full header (including things like feature table) */
3655 ret = qcow2_update_header(blk_bs(blk));
3656 if (ret < 0) {
3657 error_setg_errno(errp, -ret, "Could not update qcow2 header");
3658 goto out;
3661 /* Okay, now that we have a valid image, let's give it the right size */
3662 ret = blk_truncate(blk, qcow2_opts->size, false, qcow2_opts->preallocation,
3663 0, errp);
3664 if (ret < 0) {
3665 error_prepend(errp, "Could not resize image: ");
3666 goto out;
3669 /* Want a backing file? There you go. */
3670 if (qcow2_opts->has_backing_file) {
3671 const char *backing_format = NULL;
3673 if (qcow2_opts->has_backing_fmt) {
3674 backing_format = BlockdevDriver_str(qcow2_opts->backing_fmt);
3677 ret = bdrv_change_backing_file(blk_bs(blk), qcow2_opts->backing_file,
3678 backing_format, false);
3679 if (ret < 0) {
3680 error_setg_errno(errp, -ret, "Could not assign backing file '%s' "
3681 "with format '%s'", qcow2_opts->backing_file,
3682 backing_format);
3683 goto out;
3687 /* Want encryption? There you go. */
3688 if (qcow2_opts->has_encrypt) {
3689 ret = qcow2_set_up_encryption(blk_bs(blk), qcow2_opts->encrypt, errp);
3690 if (ret < 0) {
3691 goto out;
3695 blk_unref(blk);
3696 blk = NULL;
3698 /* Reopen the image without BDRV_O_NO_FLUSH to flush it before returning.
3699 * Using BDRV_O_NO_IO, since encryption is now setup we don't want to
3700 * have to setup decryption context. We're not doing any I/O on the top
3701 * level BlockDriverState, only lower layers, where BDRV_O_NO_IO does
3702 * not have effect.
3704 options = qdict_new();
3705 qdict_put_str(options, "driver", "qcow2");
3706 qdict_put_str(options, "file", bs->node_name);
3707 if (data_bs) {
3708 qdict_put_str(options, "data-file", data_bs->node_name);
3710 blk = blk_new_open(NULL, NULL, options,
3711 BDRV_O_RDWR | BDRV_O_NO_BACKING | BDRV_O_NO_IO,
3712 errp);
3713 if (blk == NULL) {
3714 ret = -EIO;
3715 goto out;
3718 ret = 0;
3719 out:
3720 blk_unref(blk);
3721 bdrv_unref(bs);
3722 bdrv_unref(data_bs);
3723 return ret;
3726 static int coroutine_fn qcow2_co_create_opts(BlockDriver *drv,
3727 const char *filename,
3728 QemuOpts *opts,
3729 Error **errp)
3731 BlockdevCreateOptions *create_options = NULL;
3732 QDict *qdict;
3733 Visitor *v;
3734 BlockDriverState *bs = NULL;
3735 BlockDriverState *data_bs = NULL;
3736 const char *val;
3737 int ret;
3739 /* Only the keyval visitor supports the dotted syntax needed for
3740 * encryption, so go through a QDict before getting a QAPI type. Ignore
3741 * options meant for the protocol layer so that the visitor doesn't
3742 * complain. */
3743 qdict = qemu_opts_to_qdict_filtered(opts, NULL, bdrv_qcow2.create_opts,
3744 true);
3746 /* Handle encryption options */
3747 val = qdict_get_try_str(qdict, BLOCK_OPT_ENCRYPT);
3748 if (val && !strcmp(val, "on")) {
3749 qdict_put_str(qdict, BLOCK_OPT_ENCRYPT, "qcow");
3750 } else if (val && !strcmp(val, "off")) {
3751 qdict_del(qdict, BLOCK_OPT_ENCRYPT);
3754 val = qdict_get_try_str(qdict, BLOCK_OPT_ENCRYPT_FORMAT);
3755 if (val && !strcmp(val, "aes")) {
3756 qdict_put_str(qdict, BLOCK_OPT_ENCRYPT_FORMAT, "qcow");
3759 /* Convert compat=0.10/1.1 into compat=v2/v3, to be renamed into
3760 * version=v2/v3 below. */
3761 val = qdict_get_try_str(qdict, BLOCK_OPT_COMPAT_LEVEL);
3762 if (val && !strcmp(val, "0.10")) {
3763 qdict_put_str(qdict, BLOCK_OPT_COMPAT_LEVEL, "v2");
3764 } else if (val && !strcmp(val, "1.1")) {
3765 qdict_put_str(qdict, BLOCK_OPT_COMPAT_LEVEL, "v3");
3768 /* Change legacy command line options into QMP ones */
3769 static const QDictRenames opt_renames[] = {
3770 { BLOCK_OPT_BACKING_FILE, "backing-file" },
3771 { BLOCK_OPT_BACKING_FMT, "backing-fmt" },
3772 { BLOCK_OPT_CLUSTER_SIZE, "cluster-size" },
3773 { BLOCK_OPT_LAZY_REFCOUNTS, "lazy-refcounts" },
3774 { BLOCK_OPT_EXTL2, "extended-l2" },
3775 { BLOCK_OPT_REFCOUNT_BITS, "refcount-bits" },
3776 { BLOCK_OPT_ENCRYPT, BLOCK_OPT_ENCRYPT_FORMAT },
3777 { BLOCK_OPT_COMPAT_LEVEL, "version" },
3778 { BLOCK_OPT_DATA_FILE_RAW, "data-file-raw" },
3779 { BLOCK_OPT_COMPRESSION_TYPE, "compression-type" },
3780 { NULL, NULL },
3783 if (!qdict_rename_keys(qdict, opt_renames, errp)) {
3784 ret = -EINVAL;
3785 goto finish;
3788 /* Create and open the file (protocol layer) */
3789 ret = bdrv_create_file(filename, opts, errp);
3790 if (ret < 0) {
3791 goto finish;
3794 bs = bdrv_open(filename, NULL, NULL,
3795 BDRV_O_RDWR | BDRV_O_RESIZE | BDRV_O_PROTOCOL, errp);
3796 if (bs == NULL) {
3797 ret = -EIO;
3798 goto finish;
3801 /* Create and open an external data file (protocol layer) */
3802 val = qdict_get_try_str(qdict, BLOCK_OPT_DATA_FILE);
3803 if (val) {
3804 ret = bdrv_create_file(val, opts, errp);
3805 if (ret < 0) {
3806 goto finish;
3809 data_bs = bdrv_open(val, NULL, NULL,
3810 BDRV_O_RDWR | BDRV_O_RESIZE | BDRV_O_PROTOCOL,
3811 errp);
3812 if (data_bs == NULL) {
3813 ret = -EIO;
3814 goto finish;
3817 qdict_del(qdict, BLOCK_OPT_DATA_FILE);
3818 qdict_put_str(qdict, "data-file", data_bs->node_name);
3821 /* Set 'driver' and 'node' options */
3822 qdict_put_str(qdict, "driver", "qcow2");
3823 qdict_put_str(qdict, "file", bs->node_name);
3825 /* Now get the QAPI type BlockdevCreateOptions */
3826 v = qobject_input_visitor_new_flat_confused(qdict, errp);
3827 if (!v) {
3828 ret = -EINVAL;
3829 goto finish;
3832 visit_type_BlockdevCreateOptions(v, NULL, &create_options, errp);
3833 visit_free(v);
3834 if (!create_options) {
3835 ret = -EINVAL;
3836 goto finish;
3839 /* Silently round up size */
3840 create_options->u.qcow2.size = ROUND_UP(create_options->u.qcow2.size,
3841 BDRV_SECTOR_SIZE);
3843 /* Create the qcow2 image (format layer) */
3844 ret = qcow2_co_create(create_options, errp);
3845 if (ret < 0) {
3846 goto finish;
3849 ret = 0;
3850 finish:
3851 qobject_unref(qdict);
3852 bdrv_unref(bs);
3853 bdrv_unref(data_bs);
3854 qapi_free_BlockdevCreateOptions(create_options);
3855 return ret;
3859 static bool is_zero(BlockDriverState *bs, int64_t offset, int64_t bytes)
3861 int64_t nr;
3862 int res;
3864 /* Clamp to image length, before checking status of underlying sectors */
3865 if (offset + bytes > bs->total_sectors * BDRV_SECTOR_SIZE) {
3866 bytes = bs->total_sectors * BDRV_SECTOR_SIZE - offset;
3869 if (!bytes) {
3870 return true;
3872 res = bdrv_block_status_above(bs, NULL, offset, bytes, &nr, NULL, NULL);
3873 return res >= 0 && (res & BDRV_BLOCK_ZERO) && nr == bytes;
3876 static coroutine_fn int qcow2_co_pwrite_zeroes(BlockDriverState *bs,
3877 int64_t offset, int bytes, BdrvRequestFlags flags)
3879 int ret;
3880 BDRVQcow2State *s = bs->opaque;
3882 uint32_t head = offset_into_subcluster(s, offset);
3883 uint32_t tail = ROUND_UP(offset + bytes, s->subcluster_size) -
3884 (offset + bytes);
3886 trace_qcow2_pwrite_zeroes_start_req(qemu_coroutine_self(), offset, bytes);
3887 if (offset + bytes == bs->total_sectors * BDRV_SECTOR_SIZE) {
3888 tail = 0;
3891 if (head || tail) {
3892 uint64_t off;
3893 unsigned int nr;
3894 QCow2SubclusterType type;
3896 assert(head + bytes + tail <= s->subcluster_size);
3898 /* check whether remainder of cluster already reads as zero */
3899 if (!(is_zero(bs, offset - head, head) &&
3900 is_zero(bs, offset + bytes, tail))) {
3901 return -ENOTSUP;
3904 qemu_co_mutex_lock(&s->lock);
3905 /* We can have new write after previous check */
3906 offset -= head;
3907 bytes = s->subcluster_size;
3908 nr = s->subcluster_size;
3909 ret = qcow2_get_host_offset(bs, offset, &nr, &off, &type);
3910 if (ret < 0 ||
3911 (type != QCOW2_SUBCLUSTER_UNALLOCATED_PLAIN &&
3912 type != QCOW2_SUBCLUSTER_UNALLOCATED_ALLOC &&
3913 type != QCOW2_SUBCLUSTER_ZERO_PLAIN &&
3914 type != QCOW2_SUBCLUSTER_ZERO_ALLOC)) {
3915 qemu_co_mutex_unlock(&s->lock);
3916 return -ENOTSUP;
3918 } else {
3919 qemu_co_mutex_lock(&s->lock);
3922 trace_qcow2_pwrite_zeroes(qemu_coroutine_self(), offset, bytes);
3924 /* Whatever is left can use real zero subclusters */
3925 ret = qcow2_subcluster_zeroize(bs, offset, bytes, flags);
3926 qemu_co_mutex_unlock(&s->lock);
3928 return ret;
3931 static coroutine_fn int qcow2_co_pdiscard(BlockDriverState *bs,
3932 int64_t offset, int bytes)
3934 int ret;
3935 BDRVQcow2State *s = bs->opaque;
3937 /* If the image does not support QCOW_OFLAG_ZERO then discarding
3938 * clusters could expose stale data from the backing file. */
3939 if (s->qcow_version < 3 && bs->backing) {
3940 return -ENOTSUP;
3943 if (!QEMU_IS_ALIGNED(offset | bytes, s->cluster_size)) {
3944 assert(bytes < s->cluster_size);
3945 /* Ignore partial clusters, except for the special case of the
3946 * complete partial cluster at the end of an unaligned file */
3947 if (!QEMU_IS_ALIGNED(offset, s->cluster_size) ||
3948 offset + bytes != bs->total_sectors * BDRV_SECTOR_SIZE) {
3949 return -ENOTSUP;
3953 qemu_co_mutex_lock(&s->lock);
3954 ret = qcow2_cluster_discard(bs, offset, bytes, QCOW2_DISCARD_REQUEST,
3955 false);
3956 qemu_co_mutex_unlock(&s->lock);
3957 return ret;
3960 static int coroutine_fn
3961 qcow2_co_copy_range_from(BlockDriverState *bs,
3962 BdrvChild *src, uint64_t src_offset,
3963 BdrvChild *dst, uint64_t dst_offset,
3964 uint64_t bytes, BdrvRequestFlags read_flags,
3965 BdrvRequestFlags write_flags)
3967 BDRVQcow2State *s = bs->opaque;
3968 int ret;
3969 unsigned int cur_bytes; /* number of bytes in current iteration */
3970 BdrvChild *child = NULL;
3971 BdrvRequestFlags cur_write_flags;
3973 assert(!bs->encrypted);
3974 qemu_co_mutex_lock(&s->lock);
3976 while (bytes != 0) {
3977 uint64_t copy_offset = 0;
3978 QCow2SubclusterType type;
3979 /* prepare next request */
3980 cur_bytes = MIN(bytes, INT_MAX);
3981 cur_write_flags = write_flags;
3983 ret = qcow2_get_host_offset(bs, src_offset, &cur_bytes,
3984 &copy_offset, &type);
3985 if (ret < 0) {
3986 goto out;
3989 switch (type) {
3990 case QCOW2_SUBCLUSTER_UNALLOCATED_PLAIN:
3991 case QCOW2_SUBCLUSTER_UNALLOCATED_ALLOC:
3992 if (bs->backing && bs->backing->bs) {
3993 int64_t backing_length = bdrv_getlength(bs->backing->bs);
3994 if (src_offset >= backing_length) {
3995 cur_write_flags |= BDRV_REQ_ZERO_WRITE;
3996 } else {
3997 child = bs->backing;
3998 cur_bytes = MIN(cur_bytes, backing_length - src_offset);
3999 copy_offset = src_offset;
4001 } else {
4002 cur_write_flags |= BDRV_REQ_ZERO_WRITE;
4004 break;
4006 case QCOW2_SUBCLUSTER_ZERO_PLAIN:
4007 case QCOW2_SUBCLUSTER_ZERO_ALLOC:
4008 cur_write_flags |= BDRV_REQ_ZERO_WRITE;
4009 break;
4011 case QCOW2_SUBCLUSTER_COMPRESSED:
4012 ret = -ENOTSUP;
4013 goto out;
4015 case QCOW2_SUBCLUSTER_NORMAL:
4016 child = s->data_file;
4017 break;
4019 default:
4020 abort();
4022 qemu_co_mutex_unlock(&s->lock);
4023 ret = bdrv_co_copy_range_from(child,
4024 copy_offset,
4025 dst, dst_offset,
4026 cur_bytes, read_flags, cur_write_flags);
4027 qemu_co_mutex_lock(&s->lock);
4028 if (ret < 0) {
4029 goto out;
4032 bytes -= cur_bytes;
4033 src_offset += cur_bytes;
4034 dst_offset += cur_bytes;
4036 ret = 0;
4038 out:
4039 qemu_co_mutex_unlock(&s->lock);
4040 return ret;
4043 static int coroutine_fn
4044 qcow2_co_copy_range_to(BlockDriverState *bs,
4045 BdrvChild *src, uint64_t src_offset,
4046 BdrvChild *dst, uint64_t dst_offset,
4047 uint64_t bytes, BdrvRequestFlags read_flags,
4048 BdrvRequestFlags write_flags)
4050 BDRVQcow2State *s = bs->opaque;
4051 int offset_in_cluster;
4052 int ret;
4053 unsigned int cur_bytes; /* number of sectors in current iteration */
4054 uint64_t cluster_offset;
4055 QCowL2Meta *l2meta = NULL;
4057 assert(!bs->encrypted);
4059 qemu_co_mutex_lock(&s->lock);
4061 while (bytes != 0) {
4063 l2meta = NULL;
4065 offset_in_cluster = offset_into_cluster(s, dst_offset);
4066 cur_bytes = MIN(bytes, INT_MAX);
4068 /* TODO:
4069 * If src->bs == dst->bs, we could simply copy by incrementing
4070 * the refcnt, without copying user data.
4071 * Or if src->bs == dst->bs->backing->bs, we could copy by discarding. */
4072 ret = qcow2_alloc_cluster_offset(bs, dst_offset, &cur_bytes,
4073 &cluster_offset, &l2meta);
4074 if (ret < 0) {
4075 goto fail;
4078 assert(offset_into_cluster(s, cluster_offset) == 0);
4080 ret = qcow2_pre_write_overlap_check(bs, 0,
4081 cluster_offset + offset_in_cluster, cur_bytes, true);
4082 if (ret < 0) {
4083 goto fail;
4086 qemu_co_mutex_unlock(&s->lock);
4087 ret = bdrv_co_copy_range_to(src, src_offset,
4088 s->data_file,
4089 cluster_offset + offset_in_cluster,
4090 cur_bytes, read_flags, write_flags);
4091 qemu_co_mutex_lock(&s->lock);
4092 if (ret < 0) {
4093 goto fail;
4096 ret = qcow2_handle_l2meta(bs, &l2meta, true);
4097 if (ret) {
4098 goto fail;
4101 bytes -= cur_bytes;
4102 src_offset += cur_bytes;
4103 dst_offset += cur_bytes;
4105 ret = 0;
4107 fail:
4108 qcow2_handle_l2meta(bs, &l2meta, false);
4110 qemu_co_mutex_unlock(&s->lock);
4112 trace_qcow2_writev_done_req(qemu_coroutine_self(), ret);
4114 return ret;
4117 static int coroutine_fn qcow2_co_truncate(BlockDriverState *bs, int64_t offset,
4118 bool exact, PreallocMode prealloc,
4119 BdrvRequestFlags flags, Error **errp)
4121 BDRVQcow2State *s = bs->opaque;
4122 uint64_t old_length;
4123 int64_t new_l1_size;
4124 int ret;
4125 QDict *options;
4127 if (prealloc != PREALLOC_MODE_OFF && prealloc != PREALLOC_MODE_METADATA &&
4128 prealloc != PREALLOC_MODE_FALLOC && prealloc != PREALLOC_MODE_FULL)
4130 error_setg(errp, "Unsupported preallocation mode '%s'",
4131 PreallocMode_str(prealloc));
4132 return -ENOTSUP;
4135 if (!QEMU_IS_ALIGNED(offset, BDRV_SECTOR_SIZE)) {
4136 error_setg(errp, "The new size must be a multiple of %u",
4137 (unsigned) BDRV_SECTOR_SIZE);
4138 return -EINVAL;
4141 qemu_co_mutex_lock(&s->lock);
4144 * Even though we store snapshot size for all images, it was not
4145 * required until v3, so it is not safe to proceed for v2.
4147 if (s->nb_snapshots && s->qcow_version < 3) {
4148 error_setg(errp, "Can't resize a v2 image which has snapshots");
4149 ret = -ENOTSUP;
4150 goto fail;
4153 /* See qcow2-bitmap.c for which bitmap scenarios prevent a resize. */
4154 if (qcow2_truncate_bitmaps_check(bs, errp)) {
4155 ret = -ENOTSUP;
4156 goto fail;
4159 old_length = bs->total_sectors * BDRV_SECTOR_SIZE;
4160 new_l1_size = size_to_l1(s, offset);
4162 if (offset < old_length) {
4163 int64_t last_cluster, old_file_size;
4164 if (prealloc != PREALLOC_MODE_OFF) {
4165 error_setg(errp,
4166 "Preallocation can't be used for shrinking an image");
4167 ret = -EINVAL;
4168 goto fail;
4171 ret = qcow2_cluster_discard(bs, ROUND_UP(offset, s->cluster_size),
4172 old_length - ROUND_UP(offset,
4173 s->cluster_size),
4174 QCOW2_DISCARD_ALWAYS, true);
4175 if (ret < 0) {
4176 error_setg_errno(errp, -ret, "Failed to discard cropped clusters");
4177 goto fail;
4180 ret = qcow2_shrink_l1_table(bs, new_l1_size);
4181 if (ret < 0) {
4182 error_setg_errno(errp, -ret,
4183 "Failed to reduce the number of L2 tables");
4184 goto fail;
4187 ret = qcow2_shrink_reftable(bs);
4188 if (ret < 0) {
4189 error_setg_errno(errp, -ret,
4190 "Failed to discard unused refblocks");
4191 goto fail;
4194 old_file_size = bdrv_getlength(bs->file->bs);
4195 if (old_file_size < 0) {
4196 error_setg_errno(errp, -old_file_size,
4197 "Failed to inquire current file length");
4198 ret = old_file_size;
4199 goto fail;
4201 last_cluster = qcow2_get_last_cluster(bs, old_file_size);
4202 if (last_cluster < 0) {
4203 error_setg_errno(errp, -last_cluster,
4204 "Failed to find the last cluster");
4205 ret = last_cluster;
4206 goto fail;
4208 if ((last_cluster + 1) * s->cluster_size < old_file_size) {
4209 Error *local_err = NULL;
4212 * Do not pass @exact here: It will not help the user if
4213 * we get an error here just because they wanted to shrink
4214 * their qcow2 image (on a block device) with qemu-img.
4215 * (And on the qcow2 layer, the @exact requirement is
4216 * always fulfilled, so there is no need to pass it on.)
4218 bdrv_co_truncate(bs->file, (last_cluster + 1) * s->cluster_size,
4219 false, PREALLOC_MODE_OFF, 0, &local_err);
4220 if (local_err) {
4221 warn_reportf_err(local_err,
4222 "Failed to truncate the tail of the image: ");
4225 } else {
4226 ret = qcow2_grow_l1_table(bs, new_l1_size, true);
4227 if (ret < 0) {
4228 error_setg_errno(errp, -ret, "Failed to grow the L1 table");
4229 goto fail;
4233 switch (prealloc) {
4234 case PREALLOC_MODE_OFF:
4235 if (has_data_file(bs)) {
4237 * If the caller wants an exact resize, the external data
4238 * file should be resized to the exact target size, too,
4239 * so we pass @exact here.
4241 ret = bdrv_co_truncate(s->data_file, offset, exact, prealloc, 0,
4242 errp);
4243 if (ret < 0) {
4244 goto fail;
4247 break;
4249 case PREALLOC_MODE_METADATA:
4250 ret = preallocate_co(bs, old_length, offset, prealloc, errp);
4251 if (ret < 0) {
4252 goto fail;
4254 break;
4256 case PREALLOC_MODE_FALLOC:
4257 case PREALLOC_MODE_FULL:
4259 int64_t allocation_start, host_offset, guest_offset;
4260 int64_t clusters_allocated;
4261 int64_t old_file_size, last_cluster, new_file_size;
4262 uint64_t nb_new_data_clusters, nb_new_l2_tables;
4263 bool subclusters_need_allocation = false;
4265 /* With a data file, preallocation means just allocating the metadata
4266 * and forwarding the truncate request to the data file */
4267 if (has_data_file(bs)) {
4268 ret = preallocate_co(bs, old_length, offset, prealloc, errp);
4269 if (ret < 0) {
4270 goto fail;
4272 break;
4275 old_file_size = bdrv_getlength(bs->file->bs);
4276 if (old_file_size < 0) {
4277 error_setg_errno(errp, -old_file_size,
4278 "Failed to inquire current file length");
4279 ret = old_file_size;
4280 goto fail;
4283 last_cluster = qcow2_get_last_cluster(bs, old_file_size);
4284 if (last_cluster >= 0) {
4285 old_file_size = (last_cluster + 1) * s->cluster_size;
4286 } else {
4287 old_file_size = ROUND_UP(old_file_size, s->cluster_size);
4290 nb_new_data_clusters = (ROUND_UP(offset, s->cluster_size) -
4291 start_of_cluster(s, old_length)) >> s->cluster_bits;
4293 /* This is an overestimation; we will not actually allocate space for
4294 * these in the file but just make sure the new refcount structures are
4295 * able to cover them so we will not have to allocate new refblocks
4296 * while entering the data blocks in the potentially new L2 tables.
4297 * (We do not actually care where the L2 tables are placed. Maybe they
4298 * are already allocated or they can be placed somewhere before
4299 * @old_file_size. It does not matter because they will be fully
4300 * allocated automatically, so they do not need to be covered by the
4301 * preallocation. All that matters is that we will not have to allocate
4302 * new refcount structures for them.) */
4303 nb_new_l2_tables = DIV_ROUND_UP(nb_new_data_clusters,
4304 s->cluster_size / l2_entry_size(s));
4305 /* The cluster range may not be aligned to L2 boundaries, so add one L2
4306 * table for a potential head/tail */
4307 nb_new_l2_tables++;
4309 allocation_start = qcow2_refcount_area(bs, old_file_size,
4310 nb_new_data_clusters +
4311 nb_new_l2_tables,
4312 true, 0, 0);
4313 if (allocation_start < 0) {
4314 error_setg_errno(errp, -allocation_start,
4315 "Failed to resize refcount structures");
4316 ret = allocation_start;
4317 goto fail;
4320 clusters_allocated = qcow2_alloc_clusters_at(bs, allocation_start,
4321 nb_new_data_clusters);
4322 if (clusters_allocated < 0) {
4323 error_setg_errno(errp, -clusters_allocated,
4324 "Failed to allocate data clusters");
4325 ret = clusters_allocated;
4326 goto fail;
4329 assert(clusters_allocated == nb_new_data_clusters);
4331 /* Allocate the data area */
4332 new_file_size = allocation_start +
4333 nb_new_data_clusters * s->cluster_size;
4335 * Image file grows, so @exact does not matter.
4337 * If we need to zero out the new area, try first whether the protocol
4338 * driver can already take care of this.
4340 if (flags & BDRV_REQ_ZERO_WRITE) {
4341 ret = bdrv_co_truncate(bs->file, new_file_size, false, prealloc,
4342 BDRV_REQ_ZERO_WRITE, NULL);
4343 if (ret >= 0) {
4344 flags &= ~BDRV_REQ_ZERO_WRITE;
4345 /* Ensure that we read zeroes and not backing file data */
4346 subclusters_need_allocation = true;
4348 } else {
4349 ret = -1;
4351 if (ret < 0) {
4352 ret = bdrv_co_truncate(bs->file, new_file_size, false, prealloc, 0,
4353 errp);
4355 if (ret < 0) {
4356 error_prepend(errp, "Failed to resize underlying file: ");
4357 qcow2_free_clusters(bs, allocation_start,
4358 nb_new_data_clusters * s->cluster_size,
4359 QCOW2_DISCARD_OTHER);
4360 goto fail;
4363 /* Create the necessary L2 entries */
4364 host_offset = allocation_start;
4365 guest_offset = old_length;
4366 while (nb_new_data_clusters) {
4367 int64_t nb_clusters = MIN(
4368 nb_new_data_clusters,
4369 s->l2_slice_size - offset_to_l2_slice_index(s, guest_offset));
4370 unsigned cow_start_length = offset_into_cluster(s, guest_offset);
4371 QCowL2Meta allocation;
4372 guest_offset = start_of_cluster(s, guest_offset);
4373 allocation = (QCowL2Meta) {
4374 .offset = guest_offset,
4375 .alloc_offset = host_offset,
4376 .nb_clusters = nb_clusters,
4377 .cow_start = {
4378 .offset = 0,
4379 .nb_bytes = cow_start_length,
4381 .cow_end = {
4382 .offset = nb_clusters << s->cluster_bits,
4383 .nb_bytes = 0,
4385 .prealloc = !subclusters_need_allocation,
4387 qemu_co_queue_init(&allocation.dependent_requests);
4389 ret = qcow2_alloc_cluster_link_l2(bs, &allocation);
4390 if (ret < 0) {
4391 error_setg_errno(errp, -ret, "Failed to update L2 tables");
4392 qcow2_free_clusters(bs, host_offset,
4393 nb_new_data_clusters * s->cluster_size,
4394 QCOW2_DISCARD_OTHER);
4395 goto fail;
4398 guest_offset += nb_clusters * s->cluster_size;
4399 host_offset += nb_clusters * s->cluster_size;
4400 nb_new_data_clusters -= nb_clusters;
4402 break;
4405 default:
4406 g_assert_not_reached();
4409 if ((flags & BDRV_REQ_ZERO_WRITE) && offset > old_length) {
4410 uint64_t zero_start = QEMU_ALIGN_UP(old_length, s->subcluster_size);
4413 * Use zero clusters as much as we can. qcow2_subcluster_zeroize()
4414 * requires a subcluster-aligned start. The end may be unaligned if
4415 * it is at the end of the image (which it is here).
4417 if (offset > zero_start) {
4418 ret = qcow2_subcluster_zeroize(bs, zero_start, offset - zero_start,
4420 if (ret < 0) {
4421 error_setg_errno(errp, -ret, "Failed to zero out new clusters");
4422 goto fail;
4426 /* Write explicit zeros for the unaligned head */
4427 if (zero_start > old_length) {
4428 uint64_t len = MIN(zero_start, offset) - old_length;
4429 uint8_t *buf = qemu_blockalign0(bs, len);
4430 QEMUIOVector qiov;
4431 qemu_iovec_init_buf(&qiov, buf, len);
4433 qemu_co_mutex_unlock(&s->lock);
4434 ret = qcow2_co_pwritev_part(bs, old_length, len, &qiov, 0, 0);
4435 qemu_co_mutex_lock(&s->lock);
4437 qemu_vfree(buf);
4438 if (ret < 0) {
4439 error_setg_errno(errp, -ret, "Failed to zero out the new area");
4440 goto fail;
4445 if (prealloc != PREALLOC_MODE_OFF) {
4446 /* Flush metadata before actually changing the image size */
4447 ret = qcow2_write_caches(bs);
4448 if (ret < 0) {
4449 error_setg_errno(errp, -ret,
4450 "Failed to flush the preallocated area to disk");
4451 goto fail;
4455 bs->total_sectors = offset / BDRV_SECTOR_SIZE;
4457 /* write updated header.size */
4458 offset = cpu_to_be64(offset);
4459 ret = bdrv_pwrite_sync(bs->file, offsetof(QCowHeader, size),
4460 &offset, sizeof(offset));
4461 if (ret < 0) {
4462 error_setg_errno(errp, -ret, "Failed to update the image size");
4463 goto fail;
4466 s->l1_vm_state_index = new_l1_size;
4468 /* Update cache sizes */
4469 options = qdict_clone_shallow(bs->options);
4470 ret = qcow2_update_options(bs, options, s->flags, errp);
4471 qobject_unref(options);
4472 if (ret < 0) {
4473 goto fail;
4475 ret = 0;
4476 fail:
4477 qemu_co_mutex_unlock(&s->lock);
4478 return ret;
4481 static coroutine_fn int
4482 qcow2_co_pwritev_compressed_task(BlockDriverState *bs,
4483 uint64_t offset, uint64_t bytes,
4484 QEMUIOVector *qiov, size_t qiov_offset)
4486 BDRVQcow2State *s = bs->opaque;
4487 int ret;
4488 ssize_t out_len;
4489 uint8_t *buf, *out_buf;
4490 uint64_t cluster_offset;
4492 assert(bytes == s->cluster_size || (bytes < s->cluster_size &&
4493 (offset + bytes == bs->total_sectors << BDRV_SECTOR_BITS)));
4495 buf = qemu_blockalign(bs, s->cluster_size);
4496 if (bytes < s->cluster_size) {
4497 /* Zero-pad last write if image size is not cluster aligned */
4498 memset(buf + bytes, 0, s->cluster_size - bytes);
4500 qemu_iovec_to_buf(qiov, qiov_offset, buf, bytes);
4502 out_buf = g_malloc(s->cluster_size);
4504 out_len = qcow2_co_compress(bs, out_buf, s->cluster_size - 1,
4505 buf, s->cluster_size);
4506 if (out_len == -ENOMEM) {
4507 /* could not compress: write normal cluster */
4508 ret = qcow2_co_pwritev_part(bs, offset, bytes, qiov, qiov_offset, 0);
4509 if (ret < 0) {
4510 goto fail;
4512 goto success;
4513 } else if (out_len < 0) {
4514 ret = -EINVAL;
4515 goto fail;
4518 qemu_co_mutex_lock(&s->lock);
4519 ret = qcow2_alloc_compressed_cluster_offset(bs, offset, out_len,
4520 &cluster_offset);
4521 if (ret < 0) {
4522 qemu_co_mutex_unlock(&s->lock);
4523 goto fail;
4526 ret = qcow2_pre_write_overlap_check(bs, 0, cluster_offset, out_len, true);
4527 qemu_co_mutex_unlock(&s->lock);
4528 if (ret < 0) {
4529 goto fail;
4532 BLKDBG_EVENT(s->data_file, BLKDBG_WRITE_COMPRESSED);
4533 ret = bdrv_co_pwrite(s->data_file, cluster_offset, out_len, out_buf, 0);
4534 if (ret < 0) {
4535 goto fail;
4537 success:
4538 ret = 0;
4539 fail:
4540 qemu_vfree(buf);
4541 g_free(out_buf);
4542 return ret;
4545 static coroutine_fn int qcow2_co_pwritev_compressed_task_entry(AioTask *task)
4547 Qcow2AioTask *t = container_of(task, Qcow2AioTask, task);
4549 assert(!t->subcluster_type && !t->l2meta);
4551 return qcow2_co_pwritev_compressed_task(t->bs, t->offset, t->bytes, t->qiov,
4552 t->qiov_offset);
4556 * XXX: put compressed sectors first, then all the cluster aligned
4557 * tables to avoid losing bytes in alignment
4559 static coroutine_fn int
4560 qcow2_co_pwritev_compressed_part(BlockDriverState *bs,
4561 uint64_t offset, uint64_t bytes,
4562 QEMUIOVector *qiov, size_t qiov_offset)
4564 BDRVQcow2State *s = bs->opaque;
4565 AioTaskPool *aio = NULL;
4566 int ret = 0;
4568 if (has_data_file(bs)) {
4569 return -ENOTSUP;
4572 if (bytes == 0) {
4574 * align end of file to a sector boundary to ease reading with
4575 * sector based I/Os
4577 int64_t len = bdrv_getlength(bs->file->bs);
4578 if (len < 0) {
4579 return len;
4581 return bdrv_co_truncate(bs->file, len, false, PREALLOC_MODE_OFF, 0,
4582 NULL);
4585 if (offset_into_cluster(s, offset)) {
4586 return -EINVAL;
4589 if (offset_into_cluster(s, bytes) &&
4590 (offset + bytes) != (bs->total_sectors << BDRV_SECTOR_BITS)) {
4591 return -EINVAL;
4594 while (bytes && aio_task_pool_status(aio) == 0) {
4595 uint64_t chunk_size = MIN(bytes, s->cluster_size);
4597 if (!aio && chunk_size != bytes) {
4598 aio = aio_task_pool_new(QCOW2_MAX_WORKERS);
4601 ret = qcow2_add_task(bs, aio, qcow2_co_pwritev_compressed_task_entry,
4602 0, 0, offset, chunk_size, qiov, qiov_offset, NULL);
4603 if (ret < 0) {
4604 break;
4606 qiov_offset += chunk_size;
4607 offset += chunk_size;
4608 bytes -= chunk_size;
4611 if (aio) {
4612 aio_task_pool_wait_all(aio);
4613 if (ret == 0) {
4614 ret = aio_task_pool_status(aio);
4616 g_free(aio);
4619 return ret;
4622 static int coroutine_fn
4623 qcow2_co_preadv_compressed(BlockDriverState *bs,
4624 uint64_t cluster_descriptor,
4625 uint64_t offset,
4626 uint64_t bytes,
4627 QEMUIOVector *qiov,
4628 size_t qiov_offset)
4630 BDRVQcow2State *s = bs->opaque;
4631 int ret = 0, csize, nb_csectors;
4632 uint64_t coffset;
4633 uint8_t *buf, *out_buf;
4634 int offset_in_cluster = offset_into_cluster(s, offset);
4636 coffset = cluster_descriptor & s->cluster_offset_mask;
4637 nb_csectors = ((cluster_descriptor >> s->csize_shift) & s->csize_mask) + 1;
4638 csize = nb_csectors * QCOW2_COMPRESSED_SECTOR_SIZE -
4639 (coffset & ~QCOW2_COMPRESSED_SECTOR_MASK);
4641 buf = g_try_malloc(csize);
4642 if (!buf) {
4643 return -ENOMEM;
4646 out_buf = qemu_blockalign(bs, s->cluster_size);
4648 BLKDBG_EVENT(bs->file, BLKDBG_READ_COMPRESSED);
4649 ret = bdrv_co_pread(bs->file, coffset, csize, buf, 0);
4650 if (ret < 0) {
4651 goto fail;
4654 if (qcow2_co_decompress(bs, out_buf, s->cluster_size, buf, csize) < 0) {
4655 ret = -EIO;
4656 goto fail;
4659 qemu_iovec_from_buf(qiov, qiov_offset, out_buf + offset_in_cluster, bytes);
4661 fail:
4662 qemu_vfree(out_buf);
4663 g_free(buf);
4665 return ret;
4668 static int make_completely_empty(BlockDriverState *bs)
4670 BDRVQcow2State *s = bs->opaque;
4671 Error *local_err = NULL;
4672 int ret, l1_clusters;
4673 int64_t offset;
4674 uint64_t *new_reftable = NULL;
4675 uint64_t rt_entry, l1_size2;
4676 struct {
4677 uint64_t l1_offset;
4678 uint64_t reftable_offset;
4679 uint32_t reftable_clusters;
4680 } QEMU_PACKED l1_ofs_rt_ofs_cls;
4682 ret = qcow2_cache_empty(bs, s->l2_table_cache);
4683 if (ret < 0) {
4684 goto fail;
4687 ret = qcow2_cache_empty(bs, s->refcount_block_cache);
4688 if (ret < 0) {
4689 goto fail;
4692 /* Refcounts will be broken utterly */
4693 ret = qcow2_mark_dirty(bs);
4694 if (ret < 0) {
4695 goto fail;
4698 BLKDBG_EVENT(bs->file, BLKDBG_L1_UPDATE);
4700 l1_clusters = DIV_ROUND_UP(s->l1_size, s->cluster_size / L1E_SIZE);
4701 l1_size2 = (uint64_t)s->l1_size * L1E_SIZE;
4703 /* After this call, neither the in-memory nor the on-disk refcount
4704 * information accurately describe the actual references */
4706 ret = bdrv_pwrite_zeroes(bs->file, s->l1_table_offset,
4707 l1_clusters * s->cluster_size, 0);
4708 if (ret < 0) {
4709 goto fail_broken_refcounts;
4711 memset(s->l1_table, 0, l1_size2);
4713 BLKDBG_EVENT(bs->file, BLKDBG_EMPTY_IMAGE_PREPARE);
4715 /* Overwrite enough clusters at the beginning of the sectors to place
4716 * the refcount table, a refcount block and the L1 table in; this may
4717 * overwrite parts of the existing refcount and L1 table, which is not
4718 * an issue because the dirty flag is set, complete data loss is in fact
4719 * desired and partial data loss is consequently fine as well */
4720 ret = bdrv_pwrite_zeroes(bs->file, s->cluster_size,
4721 (2 + l1_clusters) * s->cluster_size, 0);
4722 /* This call (even if it failed overall) may have overwritten on-disk
4723 * refcount structures; in that case, the in-memory refcount information
4724 * will probably differ from the on-disk information which makes the BDS
4725 * unusable */
4726 if (ret < 0) {
4727 goto fail_broken_refcounts;
4730 BLKDBG_EVENT(bs->file, BLKDBG_L1_UPDATE);
4731 BLKDBG_EVENT(bs->file, BLKDBG_REFTABLE_UPDATE);
4733 /* "Create" an empty reftable (one cluster) directly after the image
4734 * header and an empty L1 table three clusters after the image header;
4735 * the cluster between those two will be used as the first refblock */
4736 l1_ofs_rt_ofs_cls.l1_offset = cpu_to_be64(3 * s->cluster_size);
4737 l1_ofs_rt_ofs_cls.reftable_offset = cpu_to_be64(s->cluster_size);
4738 l1_ofs_rt_ofs_cls.reftable_clusters = cpu_to_be32(1);
4739 ret = bdrv_pwrite_sync(bs->file, offsetof(QCowHeader, l1_table_offset),
4740 &l1_ofs_rt_ofs_cls, sizeof(l1_ofs_rt_ofs_cls));
4741 if (ret < 0) {
4742 goto fail_broken_refcounts;
4745 s->l1_table_offset = 3 * s->cluster_size;
4747 new_reftable = g_try_new0(uint64_t, s->cluster_size / REFTABLE_ENTRY_SIZE);
4748 if (!new_reftable) {
4749 ret = -ENOMEM;
4750 goto fail_broken_refcounts;
4753 s->refcount_table_offset = s->cluster_size;
4754 s->refcount_table_size = s->cluster_size / REFTABLE_ENTRY_SIZE;
4755 s->max_refcount_table_index = 0;
4757 g_free(s->refcount_table);
4758 s->refcount_table = new_reftable;
4759 new_reftable = NULL;
4761 /* Now the in-memory refcount information again corresponds to the on-disk
4762 * information (reftable is empty and no refblocks (the refblock cache is
4763 * empty)); however, this means some clusters (e.g. the image header) are
4764 * referenced, but not refcounted, but the normal qcow2 code assumes that
4765 * the in-memory information is always correct */
4767 BLKDBG_EVENT(bs->file, BLKDBG_REFBLOCK_ALLOC);
4769 /* Enter the first refblock into the reftable */
4770 rt_entry = cpu_to_be64(2 * s->cluster_size);
4771 ret = bdrv_pwrite_sync(bs->file, s->cluster_size,
4772 &rt_entry, sizeof(rt_entry));
4773 if (ret < 0) {
4774 goto fail_broken_refcounts;
4776 s->refcount_table[0] = 2 * s->cluster_size;
4778 s->free_cluster_index = 0;
4779 assert(3 + l1_clusters <= s->refcount_block_size);
4780 offset = qcow2_alloc_clusters(bs, 3 * s->cluster_size + l1_size2);
4781 if (offset < 0) {
4782 ret = offset;
4783 goto fail_broken_refcounts;
4784 } else if (offset > 0) {
4785 error_report("First cluster in emptied image is in use");
4786 abort();
4789 /* Now finally the in-memory information corresponds to the on-disk
4790 * structures and is correct */
4791 ret = qcow2_mark_clean(bs);
4792 if (ret < 0) {
4793 goto fail;
4796 ret = bdrv_truncate(bs->file, (3 + l1_clusters) * s->cluster_size, false,
4797 PREALLOC_MODE_OFF, 0, &local_err);
4798 if (ret < 0) {
4799 error_report_err(local_err);
4800 goto fail;
4803 return 0;
4805 fail_broken_refcounts:
4806 /* The BDS is unusable at this point. If we wanted to make it usable, we
4807 * would have to call qcow2_refcount_close(), qcow2_refcount_init(),
4808 * qcow2_check_refcounts(), qcow2_refcount_close() and qcow2_refcount_init()
4809 * again. However, because the functions which could have caused this error
4810 * path to be taken are used by those functions as well, it's very likely
4811 * that that sequence will fail as well. Therefore, just eject the BDS. */
4812 bs->drv = NULL;
4814 fail:
4815 g_free(new_reftable);
4816 return ret;
4819 static int qcow2_make_empty(BlockDriverState *bs)
4821 BDRVQcow2State *s = bs->opaque;
4822 uint64_t offset, end_offset;
4823 int step = QEMU_ALIGN_DOWN(INT_MAX, s->cluster_size);
4824 int l1_clusters, ret = 0;
4826 l1_clusters = DIV_ROUND_UP(s->l1_size, s->cluster_size / L1E_SIZE);
4828 if (s->qcow_version >= 3 && !s->snapshots && !s->nb_bitmaps &&
4829 3 + l1_clusters <= s->refcount_block_size &&
4830 s->crypt_method_header != QCOW_CRYPT_LUKS &&
4831 !has_data_file(bs)) {
4832 /* The following function only works for qcow2 v3 images (it
4833 * requires the dirty flag) and only as long as there are no
4834 * features that reserve extra clusters (such as snapshots,
4835 * LUKS header, or persistent bitmaps), because it completely
4836 * empties the image. Furthermore, the L1 table and three
4837 * additional clusters (image header, refcount table, one
4838 * refcount block) have to fit inside one refcount block. It
4839 * only resets the image file, i.e. does not work with an
4840 * external data file. */
4841 return make_completely_empty(bs);
4844 /* This fallback code simply discards every active cluster; this is slow,
4845 * but works in all cases */
4846 end_offset = bs->total_sectors * BDRV_SECTOR_SIZE;
4847 for (offset = 0; offset < end_offset; offset += step) {
4848 /* As this function is generally used after committing an external
4849 * snapshot, QCOW2_DISCARD_SNAPSHOT seems appropriate. Also, the
4850 * default action for this kind of discard is to pass the discard,
4851 * which will ideally result in an actually smaller image file, as
4852 * is probably desired. */
4853 ret = qcow2_cluster_discard(bs, offset, MIN(step, end_offset - offset),
4854 QCOW2_DISCARD_SNAPSHOT, true);
4855 if (ret < 0) {
4856 break;
4860 return ret;
4863 static coroutine_fn int qcow2_co_flush_to_os(BlockDriverState *bs)
4865 BDRVQcow2State *s = bs->opaque;
4866 int ret;
4868 qemu_co_mutex_lock(&s->lock);
4869 ret = qcow2_write_caches(bs);
4870 qemu_co_mutex_unlock(&s->lock);
4872 return ret;
4875 static BlockMeasureInfo *qcow2_measure(QemuOpts *opts, BlockDriverState *in_bs,
4876 Error **errp)
4878 Error *local_err = NULL;
4879 BlockMeasureInfo *info;
4880 uint64_t required = 0; /* bytes that contribute to required size */
4881 uint64_t virtual_size; /* disk size as seen by guest */
4882 uint64_t refcount_bits;
4883 uint64_t l2_tables;
4884 uint64_t luks_payload_size = 0;
4885 size_t cluster_size;
4886 int version;
4887 char *optstr;
4888 PreallocMode prealloc;
4889 bool has_backing_file;
4890 bool has_luks;
4891 bool extended_l2;
4892 size_t l2e_size;
4894 /* Parse image creation options */
4895 extended_l2 = qemu_opt_get_bool_del(opts, BLOCK_OPT_EXTL2, false);
4897 cluster_size = qcow2_opt_get_cluster_size_del(opts, extended_l2,
4898 &local_err);
4899 if (local_err) {
4900 goto err;
4903 version = qcow2_opt_get_version_del(opts, &local_err);
4904 if (local_err) {
4905 goto err;
4908 refcount_bits = qcow2_opt_get_refcount_bits_del(opts, version, &local_err);
4909 if (local_err) {
4910 goto err;
4913 optstr = qemu_opt_get_del(opts, BLOCK_OPT_PREALLOC);
4914 prealloc = qapi_enum_parse(&PreallocMode_lookup, optstr,
4915 PREALLOC_MODE_OFF, &local_err);
4916 g_free(optstr);
4917 if (local_err) {
4918 goto err;
4921 optstr = qemu_opt_get_del(opts, BLOCK_OPT_BACKING_FILE);
4922 has_backing_file = !!optstr;
4923 g_free(optstr);
4925 optstr = qemu_opt_get_del(opts, BLOCK_OPT_ENCRYPT_FORMAT);
4926 has_luks = optstr && strcmp(optstr, "luks") == 0;
4927 g_free(optstr);
4929 if (has_luks) {
4930 g_autoptr(QCryptoBlockCreateOptions) create_opts = NULL;
4931 QDict *cryptoopts = qcow2_extract_crypto_opts(opts, "luks", errp);
4932 size_t headerlen;
4934 create_opts = block_crypto_create_opts_init(cryptoopts, errp);
4935 qobject_unref(cryptoopts);
4936 if (!create_opts) {
4937 goto err;
4940 if (!qcrypto_block_calculate_payload_offset(create_opts,
4941 "encrypt.",
4942 &headerlen,
4943 &local_err)) {
4944 goto err;
4947 luks_payload_size = ROUND_UP(headerlen, cluster_size);
4950 virtual_size = qemu_opt_get_size_del(opts, BLOCK_OPT_SIZE, 0);
4951 virtual_size = ROUND_UP(virtual_size, cluster_size);
4953 /* Check that virtual disk size is valid */
4954 l2e_size = extended_l2 ? L2E_SIZE_EXTENDED : L2E_SIZE_NORMAL;
4955 l2_tables = DIV_ROUND_UP(virtual_size / cluster_size,
4956 cluster_size / l2e_size);
4957 if (l2_tables * L1E_SIZE > QCOW_MAX_L1_SIZE) {
4958 error_setg(&local_err, "The image size is too large "
4959 "(try using a larger cluster size)");
4960 goto err;
4963 /* Account for input image */
4964 if (in_bs) {
4965 int64_t ssize = bdrv_getlength(in_bs);
4966 if (ssize < 0) {
4967 error_setg_errno(&local_err, -ssize,
4968 "Unable to get image virtual_size");
4969 goto err;
4972 virtual_size = ROUND_UP(ssize, cluster_size);
4974 if (has_backing_file) {
4975 /* We don't how much of the backing chain is shared by the input
4976 * image and the new image file. In the worst case the new image's
4977 * backing file has nothing in common with the input image. Be
4978 * conservative and assume all clusters need to be written.
4980 required = virtual_size;
4981 } else {
4982 int64_t offset;
4983 int64_t pnum = 0;
4985 for (offset = 0; offset < ssize; offset += pnum) {
4986 int ret;
4988 ret = bdrv_block_status_above(in_bs, NULL, offset,
4989 ssize - offset, &pnum, NULL,
4990 NULL);
4991 if (ret < 0) {
4992 error_setg_errno(&local_err, -ret,
4993 "Unable to get block status");
4994 goto err;
4997 if (ret & BDRV_BLOCK_ZERO) {
4998 /* Skip zero regions (safe with no backing file) */
4999 } else if ((ret & (BDRV_BLOCK_DATA | BDRV_BLOCK_ALLOCATED)) ==
5000 (BDRV_BLOCK_DATA | BDRV_BLOCK_ALLOCATED)) {
5001 /* Extend pnum to end of cluster for next iteration */
5002 pnum = ROUND_UP(offset + pnum, cluster_size) - offset;
5004 /* Count clusters we've seen */
5005 required += offset % cluster_size + pnum;
5011 /* Take into account preallocation. Nothing special is needed for
5012 * PREALLOC_MODE_METADATA since metadata is always counted.
5014 if (prealloc == PREALLOC_MODE_FULL || prealloc == PREALLOC_MODE_FALLOC) {
5015 required = virtual_size;
5018 info = g_new0(BlockMeasureInfo, 1);
5019 info->fully_allocated = luks_payload_size +
5020 qcow2_calc_prealloc_size(virtual_size, cluster_size,
5021 ctz32(refcount_bits), extended_l2);
5024 * Remove data clusters that are not required. This overestimates the
5025 * required size because metadata needed for the fully allocated file is
5026 * still counted. Show bitmaps only if both source and destination
5027 * would support them.
5029 info->required = info->fully_allocated - virtual_size + required;
5030 info->has_bitmaps = version >= 3 && in_bs &&
5031 bdrv_supports_persistent_dirty_bitmap(in_bs);
5032 if (info->has_bitmaps) {
5033 info->bitmaps = qcow2_get_persistent_dirty_bitmap_size(in_bs,
5034 cluster_size);
5036 return info;
5038 err:
5039 error_propagate(errp, local_err);
5040 return NULL;
5043 static int qcow2_get_info(BlockDriverState *bs, BlockDriverInfo *bdi)
5045 BDRVQcow2State *s = bs->opaque;
5046 bdi->cluster_size = s->cluster_size;
5047 bdi->vm_state_offset = qcow2_vm_state_offset(s);
5048 return 0;
5051 static ImageInfoSpecific *qcow2_get_specific_info(BlockDriverState *bs,
5052 Error **errp)
5054 BDRVQcow2State *s = bs->opaque;
5055 ImageInfoSpecific *spec_info;
5056 QCryptoBlockInfo *encrypt_info = NULL;
5057 Error *local_err = NULL;
5059 if (s->crypto != NULL) {
5060 encrypt_info = qcrypto_block_get_info(s->crypto, &local_err);
5061 if (local_err) {
5062 error_propagate(errp, local_err);
5063 return NULL;
5067 spec_info = g_new(ImageInfoSpecific, 1);
5068 *spec_info = (ImageInfoSpecific){
5069 .type = IMAGE_INFO_SPECIFIC_KIND_QCOW2,
5070 .u.qcow2.data = g_new0(ImageInfoSpecificQCow2, 1),
5072 if (s->qcow_version == 2) {
5073 *spec_info->u.qcow2.data = (ImageInfoSpecificQCow2){
5074 .compat = g_strdup("0.10"),
5075 .refcount_bits = s->refcount_bits,
5077 } else if (s->qcow_version == 3) {
5078 Qcow2BitmapInfoList *bitmaps;
5079 bitmaps = qcow2_get_bitmap_info_list(bs, &local_err);
5080 if (local_err) {
5081 error_propagate(errp, local_err);
5082 qapi_free_ImageInfoSpecific(spec_info);
5083 qapi_free_QCryptoBlockInfo(encrypt_info);
5084 return NULL;
5086 *spec_info->u.qcow2.data = (ImageInfoSpecificQCow2){
5087 .compat = g_strdup("1.1"),
5088 .lazy_refcounts = s->compatible_features &
5089 QCOW2_COMPAT_LAZY_REFCOUNTS,
5090 .has_lazy_refcounts = true,
5091 .corrupt = s->incompatible_features &
5092 QCOW2_INCOMPAT_CORRUPT,
5093 .has_corrupt = true,
5094 .has_extended_l2 = true,
5095 .extended_l2 = has_subclusters(s),
5096 .refcount_bits = s->refcount_bits,
5097 .has_bitmaps = !!bitmaps,
5098 .bitmaps = bitmaps,
5099 .has_data_file = !!s->image_data_file,
5100 .data_file = g_strdup(s->image_data_file),
5101 .has_data_file_raw = has_data_file(bs),
5102 .data_file_raw = data_file_is_raw(bs),
5103 .compression_type = s->compression_type,
5105 } else {
5106 /* if this assertion fails, this probably means a new version was
5107 * added without having it covered here */
5108 assert(false);
5111 if (encrypt_info) {
5112 ImageInfoSpecificQCow2Encryption *qencrypt =
5113 g_new(ImageInfoSpecificQCow2Encryption, 1);
5114 switch (encrypt_info->format) {
5115 case Q_CRYPTO_BLOCK_FORMAT_QCOW:
5116 qencrypt->format = BLOCKDEV_QCOW2_ENCRYPTION_FORMAT_AES;
5117 break;
5118 case Q_CRYPTO_BLOCK_FORMAT_LUKS:
5119 qencrypt->format = BLOCKDEV_QCOW2_ENCRYPTION_FORMAT_LUKS;
5120 qencrypt->u.luks = encrypt_info->u.luks;
5121 break;
5122 default:
5123 abort();
5125 /* Since we did shallow copy above, erase any pointers
5126 * in the original info */
5127 memset(&encrypt_info->u, 0, sizeof(encrypt_info->u));
5128 qapi_free_QCryptoBlockInfo(encrypt_info);
5130 spec_info->u.qcow2.data->has_encrypt = true;
5131 spec_info->u.qcow2.data->encrypt = qencrypt;
5134 return spec_info;
5137 static int qcow2_has_zero_init(BlockDriverState *bs)
5139 BDRVQcow2State *s = bs->opaque;
5140 bool preallocated;
5142 if (qemu_in_coroutine()) {
5143 qemu_co_mutex_lock(&s->lock);
5146 * Check preallocation status: Preallocated images have all L2
5147 * tables allocated, nonpreallocated images have none. It is
5148 * therefore enough to check the first one.
5150 preallocated = s->l1_size > 0 && s->l1_table[0] != 0;
5151 if (qemu_in_coroutine()) {
5152 qemu_co_mutex_unlock(&s->lock);
5155 if (!preallocated) {
5156 return 1;
5157 } else if (bs->encrypted) {
5158 return 0;
5159 } else {
5160 return bdrv_has_zero_init(s->data_file->bs);
5164 static int qcow2_save_vmstate(BlockDriverState *bs, QEMUIOVector *qiov,
5165 int64_t pos)
5167 BDRVQcow2State *s = bs->opaque;
5169 BLKDBG_EVENT(bs->file, BLKDBG_VMSTATE_SAVE);
5170 return bs->drv->bdrv_co_pwritev_part(bs, qcow2_vm_state_offset(s) + pos,
5171 qiov->size, qiov, 0, 0);
5174 static int qcow2_load_vmstate(BlockDriverState *bs, QEMUIOVector *qiov,
5175 int64_t pos)
5177 BDRVQcow2State *s = bs->opaque;
5179 BLKDBG_EVENT(bs->file, BLKDBG_VMSTATE_LOAD);
5180 return bs->drv->bdrv_co_preadv_part(bs, qcow2_vm_state_offset(s) + pos,
5181 qiov->size, qiov, 0, 0);
5185 * Downgrades an image's version. To achieve this, any incompatible features
5186 * have to be removed.
5188 static int qcow2_downgrade(BlockDriverState *bs, int target_version,
5189 BlockDriverAmendStatusCB *status_cb, void *cb_opaque,
5190 Error **errp)
5192 BDRVQcow2State *s = bs->opaque;
5193 int current_version = s->qcow_version;
5194 int ret;
5195 int i;
5197 /* This is qcow2_downgrade(), not qcow2_upgrade() */
5198 assert(target_version < current_version);
5200 /* There are no other versions (now) that you can downgrade to */
5201 assert(target_version == 2);
5203 if (s->refcount_order != 4) {
5204 error_setg(errp, "compat=0.10 requires refcount_bits=16");
5205 return -ENOTSUP;
5208 if (has_data_file(bs)) {
5209 error_setg(errp, "Cannot downgrade an image with a data file");
5210 return -ENOTSUP;
5214 * If any internal snapshot has a different size than the current
5215 * image size, or VM state size that exceeds 32 bits, downgrading
5216 * is unsafe. Even though we would still use v3-compliant output
5217 * to preserve that data, other v2 programs might not realize
5218 * those optional fields are important.
5220 for (i = 0; i < s->nb_snapshots; i++) {
5221 if (s->snapshots[i].vm_state_size > UINT32_MAX ||
5222 s->snapshots[i].disk_size != bs->total_sectors * BDRV_SECTOR_SIZE) {
5223 error_setg(errp, "Internal snapshots prevent downgrade of image");
5224 return -ENOTSUP;
5228 /* clear incompatible features */
5229 if (s->incompatible_features & QCOW2_INCOMPAT_DIRTY) {
5230 ret = qcow2_mark_clean(bs);
5231 if (ret < 0) {
5232 error_setg_errno(errp, -ret, "Failed to make the image clean");
5233 return ret;
5237 /* with QCOW2_INCOMPAT_CORRUPT, it is pretty much impossible to get here in
5238 * the first place; if that happens nonetheless, returning -ENOTSUP is the
5239 * best thing to do anyway */
5241 if (s->incompatible_features) {
5242 error_setg(errp, "Cannot downgrade an image with incompatible features "
5243 "%#" PRIx64 " set", s->incompatible_features);
5244 return -ENOTSUP;
5247 /* since we can ignore compatible features, we can set them to 0 as well */
5248 s->compatible_features = 0;
5249 /* if lazy refcounts have been used, they have already been fixed through
5250 * clearing the dirty flag */
5252 /* clearing autoclear features is trivial */
5253 s->autoclear_features = 0;
5255 ret = qcow2_expand_zero_clusters(bs, status_cb, cb_opaque);
5256 if (ret < 0) {
5257 error_setg_errno(errp, -ret, "Failed to turn zero into data clusters");
5258 return ret;
5261 s->qcow_version = target_version;
5262 ret = qcow2_update_header(bs);
5263 if (ret < 0) {
5264 s->qcow_version = current_version;
5265 error_setg_errno(errp, -ret, "Failed to update the image header");
5266 return ret;
5268 return 0;
5272 * Upgrades an image's version. While newer versions encompass all
5273 * features of older versions, some things may have to be presented
5274 * differently.
5276 static int qcow2_upgrade(BlockDriverState *bs, int target_version,
5277 BlockDriverAmendStatusCB *status_cb, void *cb_opaque,
5278 Error **errp)
5280 BDRVQcow2State *s = bs->opaque;
5281 bool need_snapshot_update;
5282 int current_version = s->qcow_version;
5283 int i;
5284 int ret;
5286 /* This is qcow2_upgrade(), not qcow2_downgrade() */
5287 assert(target_version > current_version);
5289 /* There are no other versions (yet) that you can upgrade to */
5290 assert(target_version == 3);
5292 status_cb(bs, 0, 2, cb_opaque);
5295 * In v2, snapshots do not need to have extra data. v3 requires
5296 * the 64-bit VM state size and the virtual disk size to be
5297 * present.
5298 * qcow2_write_snapshots() will always write the list in the
5299 * v3-compliant format.
5301 need_snapshot_update = false;
5302 for (i = 0; i < s->nb_snapshots; i++) {
5303 if (s->snapshots[i].extra_data_size <
5304 sizeof_field(QCowSnapshotExtraData, vm_state_size_large) +
5305 sizeof_field(QCowSnapshotExtraData, disk_size))
5307 need_snapshot_update = true;
5308 break;
5311 if (need_snapshot_update) {
5312 ret = qcow2_write_snapshots(bs);
5313 if (ret < 0) {
5314 error_setg_errno(errp, -ret, "Failed to update the snapshot table");
5315 return ret;
5318 status_cb(bs, 1, 2, cb_opaque);
5320 s->qcow_version = target_version;
5321 ret = qcow2_update_header(bs);
5322 if (ret < 0) {
5323 s->qcow_version = current_version;
5324 error_setg_errno(errp, -ret, "Failed to update the image header");
5325 return ret;
5327 status_cb(bs, 2, 2, cb_opaque);
5329 return 0;
5332 typedef enum Qcow2AmendOperation {
5333 /* This is the value Qcow2AmendHelperCBInfo::last_operation will be
5334 * statically initialized to so that the helper CB can discern the first
5335 * invocation from an operation change */
5336 QCOW2_NO_OPERATION = 0,
5338 QCOW2_UPGRADING,
5339 QCOW2_UPDATING_ENCRYPTION,
5340 QCOW2_CHANGING_REFCOUNT_ORDER,
5341 QCOW2_DOWNGRADING,
5342 } Qcow2AmendOperation;
5344 typedef struct Qcow2AmendHelperCBInfo {
5345 /* The code coordinating the amend operations should only modify
5346 * these four fields; the rest will be managed by the CB */
5347 BlockDriverAmendStatusCB *original_status_cb;
5348 void *original_cb_opaque;
5350 Qcow2AmendOperation current_operation;
5352 /* Total number of operations to perform (only set once) */
5353 int total_operations;
5355 /* The following fields are managed by the CB */
5357 /* Number of operations completed */
5358 int operations_completed;
5360 /* Cumulative offset of all completed operations */
5361 int64_t offset_completed;
5363 Qcow2AmendOperation last_operation;
5364 int64_t last_work_size;
5365 } Qcow2AmendHelperCBInfo;
5367 static void qcow2_amend_helper_cb(BlockDriverState *bs,
5368 int64_t operation_offset,
5369 int64_t operation_work_size, void *opaque)
5371 Qcow2AmendHelperCBInfo *info = opaque;
5372 int64_t current_work_size;
5373 int64_t projected_work_size;
5375 if (info->current_operation != info->last_operation) {
5376 if (info->last_operation != QCOW2_NO_OPERATION) {
5377 info->offset_completed += info->last_work_size;
5378 info->operations_completed++;
5381 info->last_operation = info->current_operation;
5384 assert(info->total_operations > 0);
5385 assert(info->operations_completed < info->total_operations);
5387 info->last_work_size = operation_work_size;
5389 current_work_size = info->offset_completed + operation_work_size;
5391 /* current_work_size is the total work size for (operations_completed + 1)
5392 * operations (which includes this one), so multiply it by the number of
5393 * operations not covered and divide it by the number of operations
5394 * covered to get a projection for the operations not covered */
5395 projected_work_size = current_work_size * (info->total_operations -
5396 info->operations_completed - 1)
5397 / (info->operations_completed + 1);
5399 info->original_status_cb(bs, info->offset_completed + operation_offset,
5400 current_work_size + projected_work_size,
5401 info->original_cb_opaque);
5404 static int qcow2_amend_options(BlockDriverState *bs, QemuOpts *opts,
5405 BlockDriverAmendStatusCB *status_cb,
5406 void *cb_opaque,
5407 bool force,
5408 Error **errp)
5410 BDRVQcow2State *s = bs->opaque;
5411 int old_version = s->qcow_version, new_version = old_version;
5412 uint64_t new_size = 0;
5413 const char *backing_file = NULL, *backing_format = NULL, *data_file = NULL;
5414 bool lazy_refcounts = s->use_lazy_refcounts;
5415 bool data_file_raw = data_file_is_raw(bs);
5416 const char *compat = NULL;
5417 int refcount_bits = s->refcount_bits;
5418 int ret;
5419 QemuOptDesc *desc = opts->list->desc;
5420 Qcow2AmendHelperCBInfo helper_cb_info;
5421 bool encryption_update = false;
5423 while (desc && desc->name) {
5424 if (!qemu_opt_find(opts, desc->name)) {
5425 /* only change explicitly defined options */
5426 desc++;
5427 continue;
5430 if (!strcmp(desc->name, BLOCK_OPT_COMPAT_LEVEL)) {
5431 compat = qemu_opt_get(opts, BLOCK_OPT_COMPAT_LEVEL);
5432 if (!compat) {
5433 /* preserve default */
5434 } else if (!strcmp(compat, "0.10") || !strcmp(compat, "v2")) {
5435 new_version = 2;
5436 } else if (!strcmp(compat, "1.1") || !strcmp(compat, "v3")) {
5437 new_version = 3;
5438 } else {
5439 error_setg(errp, "Unknown compatibility level %s", compat);
5440 return -EINVAL;
5442 } else if (!strcmp(desc->name, BLOCK_OPT_SIZE)) {
5443 new_size = qemu_opt_get_size(opts, BLOCK_OPT_SIZE, 0);
5444 } else if (!strcmp(desc->name, BLOCK_OPT_BACKING_FILE)) {
5445 backing_file = qemu_opt_get(opts, BLOCK_OPT_BACKING_FILE);
5446 } else if (!strcmp(desc->name, BLOCK_OPT_BACKING_FMT)) {
5447 backing_format = qemu_opt_get(opts, BLOCK_OPT_BACKING_FMT);
5448 } else if (g_str_has_prefix(desc->name, "encrypt.")) {
5449 if (!s->crypto) {
5450 error_setg(errp,
5451 "Can't amend encryption options - encryption not present");
5452 return -EINVAL;
5454 if (s->crypt_method_header != QCOW_CRYPT_LUKS) {
5455 error_setg(errp,
5456 "Only LUKS encryption options can be amended");
5457 return -ENOTSUP;
5459 encryption_update = true;
5460 } else if (!strcmp(desc->name, BLOCK_OPT_LAZY_REFCOUNTS)) {
5461 lazy_refcounts = qemu_opt_get_bool(opts, BLOCK_OPT_LAZY_REFCOUNTS,
5462 lazy_refcounts);
5463 } else if (!strcmp(desc->name, BLOCK_OPT_REFCOUNT_BITS)) {
5464 refcount_bits = qemu_opt_get_number(opts, BLOCK_OPT_REFCOUNT_BITS,
5465 refcount_bits);
5467 if (refcount_bits <= 0 || refcount_bits > 64 ||
5468 !is_power_of_2(refcount_bits))
5470 error_setg(errp, "Refcount width must be a power of two and "
5471 "may not exceed 64 bits");
5472 return -EINVAL;
5474 } else if (!strcmp(desc->name, BLOCK_OPT_DATA_FILE)) {
5475 data_file = qemu_opt_get(opts, BLOCK_OPT_DATA_FILE);
5476 if (data_file && !has_data_file(bs)) {
5477 error_setg(errp, "data-file can only be set for images that "
5478 "use an external data file");
5479 return -EINVAL;
5481 } else if (!strcmp(desc->name, BLOCK_OPT_DATA_FILE_RAW)) {
5482 data_file_raw = qemu_opt_get_bool(opts, BLOCK_OPT_DATA_FILE_RAW,
5483 data_file_raw);
5484 if (data_file_raw && !data_file_is_raw(bs)) {
5485 error_setg(errp, "data-file-raw cannot be set on existing "
5486 "images");
5487 return -EINVAL;
5489 } else {
5490 /* if this point is reached, this probably means a new option was
5491 * added without having it covered here */
5492 abort();
5495 desc++;
5498 helper_cb_info = (Qcow2AmendHelperCBInfo){
5499 .original_status_cb = status_cb,
5500 .original_cb_opaque = cb_opaque,
5501 .total_operations = (new_version != old_version)
5502 + (s->refcount_bits != refcount_bits) +
5503 (encryption_update == true)
5506 /* Upgrade first (some features may require compat=1.1) */
5507 if (new_version > old_version) {
5508 helper_cb_info.current_operation = QCOW2_UPGRADING;
5509 ret = qcow2_upgrade(bs, new_version, &qcow2_amend_helper_cb,
5510 &helper_cb_info, errp);
5511 if (ret < 0) {
5512 return ret;
5516 if (encryption_update) {
5517 QDict *amend_opts_dict;
5518 QCryptoBlockAmendOptions *amend_opts;
5520 helper_cb_info.current_operation = QCOW2_UPDATING_ENCRYPTION;
5521 amend_opts_dict = qcow2_extract_crypto_opts(opts, "luks", errp);
5522 if (!amend_opts_dict) {
5523 return -EINVAL;
5525 amend_opts = block_crypto_amend_opts_init(amend_opts_dict, errp);
5526 qobject_unref(amend_opts_dict);
5527 if (!amend_opts) {
5528 return -EINVAL;
5530 ret = qcrypto_block_amend_options(s->crypto,
5531 qcow2_crypto_hdr_read_func,
5532 qcow2_crypto_hdr_write_func,
5534 amend_opts,
5535 force,
5536 errp);
5537 qapi_free_QCryptoBlockAmendOptions(amend_opts);
5538 if (ret < 0) {
5539 return ret;
5543 if (s->refcount_bits != refcount_bits) {
5544 int refcount_order = ctz32(refcount_bits);
5546 if (new_version < 3 && refcount_bits != 16) {
5547 error_setg(errp, "Refcount widths other than 16 bits require "
5548 "compatibility level 1.1 or above (use compat=1.1 or "
5549 "greater)");
5550 return -EINVAL;
5553 helper_cb_info.current_operation = QCOW2_CHANGING_REFCOUNT_ORDER;
5554 ret = qcow2_change_refcount_order(bs, refcount_order,
5555 &qcow2_amend_helper_cb,
5556 &helper_cb_info, errp);
5557 if (ret < 0) {
5558 return ret;
5562 /* data-file-raw blocks backing files, so clear it first if requested */
5563 if (data_file_raw) {
5564 s->autoclear_features |= QCOW2_AUTOCLEAR_DATA_FILE_RAW;
5565 } else {
5566 s->autoclear_features &= ~QCOW2_AUTOCLEAR_DATA_FILE_RAW;
5569 if (data_file) {
5570 g_free(s->image_data_file);
5571 s->image_data_file = *data_file ? g_strdup(data_file) : NULL;
5574 ret = qcow2_update_header(bs);
5575 if (ret < 0) {
5576 error_setg_errno(errp, -ret, "Failed to update the image header");
5577 return ret;
5580 if (backing_file || backing_format) {
5581 if (g_strcmp0(backing_file, s->image_backing_file) ||
5582 g_strcmp0(backing_format, s->image_backing_format)) {
5583 warn_report("Deprecated use of amend to alter the backing file; "
5584 "use qemu-img rebase instead");
5586 ret = qcow2_change_backing_file(bs,
5587 backing_file ?: s->image_backing_file,
5588 backing_format ?: s->image_backing_format);
5589 if (ret < 0) {
5590 error_setg_errno(errp, -ret, "Failed to change the backing file");
5591 return ret;
5595 if (s->use_lazy_refcounts != lazy_refcounts) {
5596 if (lazy_refcounts) {
5597 if (new_version < 3) {
5598 error_setg(errp, "Lazy refcounts only supported with "
5599 "compatibility level 1.1 and above (use compat=1.1 "
5600 "or greater)");
5601 return -EINVAL;
5603 s->compatible_features |= QCOW2_COMPAT_LAZY_REFCOUNTS;
5604 ret = qcow2_update_header(bs);
5605 if (ret < 0) {
5606 s->compatible_features &= ~QCOW2_COMPAT_LAZY_REFCOUNTS;
5607 error_setg_errno(errp, -ret, "Failed to update the image header");
5608 return ret;
5610 s->use_lazy_refcounts = true;
5611 } else {
5612 /* make image clean first */
5613 ret = qcow2_mark_clean(bs);
5614 if (ret < 0) {
5615 error_setg_errno(errp, -ret, "Failed to make the image clean");
5616 return ret;
5618 /* now disallow lazy refcounts */
5619 s->compatible_features &= ~QCOW2_COMPAT_LAZY_REFCOUNTS;
5620 ret = qcow2_update_header(bs);
5621 if (ret < 0) {
5622 s->compatible_features |= QCOW2_COMPAT_LAZY_REFCOUNTS;
5623 error_setg_errno(errp, -ret, "Failed to update the image header");
5624 return ret;
5626 s->use_lazy_refcounts = false;
5630 if (new_size) {
5631 BlockBackend *blk = blk_new_with_bs(bs, BLK_PERM_RESIZE, BLK_PERM_ALL,
5632 errp);
5633 if (!blk) {
5634 return -EPERM;
5638 * Amending image options should ensure that the image has
5639 * exactly the given new values, so pass exact=true here.
5641 ret = blk_truncate(blk, new_size, true, PREALLOC_MODE_OFF, 0, errp);
5642 blk_unref(blk);
5643 if (ret < 0) {
5644 return ret;
5648 /* Downgrade last (so unsupported features can be removed before) */
5649 if (new_version < old_version) {
5650 helper_cb_info.current_operation = QCOW2_DOWNGRADING;
5651 ret = qcow2_downgrade(bs, new_version, &qcow2_amend_helper_cb,
5652 &helper_cb_info, errp);
5653 if (ret < 0) {
5654 return ret;
5658 return 0;
5661 static int coroutine_fn qcow2_co_amend(BlockDriverState *bs,
5662 BlockdevAmendOptions *opts,
5663 bool force,
5664 Error **errp)
5666 BlockdevAmendOptionsQcow2 *qopts = &opts->u.qcow2;
5667 BDRVQcow2State *s = bs->opaque;
5668 int ret = 0;
5670 if (qopts->has_encrypt) {
5671 if (!s->crypto) {
5672 error_setg(errp, "image is not encrypted, can't amend");
5673 return -EOPNOTSUPP;
5676 if (qopts->encrypt->format != Q_CRYPTO_BLOCK_FORMAT_LUKS) {
5677 error_setg(errp,
5678 "Amend can't be used to change the qcow2 encryption format");
5679 return -EOPNOTSUPP;
5682 if (s->crypt_method_header != QCOW_CRYPT_LUKS) {
5683 error_setg(errp,
5684 "Only LUKS encryption options can be amended for qcow2 with blockdev-amend");
5685 return -EOPNOTSUPP;
5688 ret = qcrypto_block_amend_options(s->crypto,
5689 qcow2_crypto_hdr_read_func,
5690 qcow2_crypto_hdr_write_func,
5692 qopts->encrypt,
5693 force,
5694 errp);
5696 return ret;
5700 * If offset or size are negative, respectively, they will not be included in
5701 * the BLOCK_IMAGE_CORRUPTED event emitted.
5702 * fatal will be ignored for read-only BDS; corruptions found there will always
5703 * be considered non-fatal.
5705 void qcow2_signal_corruption(BlockDriverState *bs, bool fatal, int64_t offset,
5706 int64_t size, const char *message_format, ...)
5708 BDRVQcow2State *s = bs->opaque;
5709 const char *node_name;
5710 char *message;
5711 va_list ap;
5713 fatal = fatal && bdrv_is_writable(bs);
5715 if (s->signaled_corruption &&
5716 (!fatal || (s->incompatible_features & QCOW2_INCOMPAT_CORRUPT)))
5718 return;
5721 va_start(ap, message_format);
5722 message = g_strdup_vprintf(message_format, ap);
5723 va_end(ap);
5725 if (fatal) {
5726 fprintf(stderr, "qcow2: Marking image as corrupt: %s; further "
5727 "corruption events will be suppressed\n", message);
5728 } else {
5729 fprintf(stderr, "qcow2: Image is corrupt: %s; further non-fatal "
5730 "corruption events will be suppressed\n", message);
5733 node_name = bdrv_get_node_name(bs);
5734 qapi_event_send_block_image_corrupted(bdrv_get_device_name(bs),
5735 *node_name != '\0', node_name,
5736 message, offset >= 0, offset,
5737 size >= 0, size,
5738 fatal);
5739 g_free(message);
5741 if (fatal) {
5742 qcow2_mark_corrupt(bs);
5743 bs->drv = NULL; /* make BDS unusable */
5746 s->signaled_corruption = true;
5749 #define QCOW_COMMON_OPTIONS \
5751 .name = BLOCK_OPT_SIZE, \
5752 .type = QEMU_OPT_SIZE, \
5753 .help = "Virtual disk size" \
5754 }, \
5756 .name = BLOCK_OPT_COMPAT_LEVEL, \
5757 .type = QEMU_OPT_STRING, \
5758 .help = "Compatibility level (v2 [0.10] or v3 [1.1])" \
5759 }, \
5761 .name = BLOCK_OPT_BACKING_FILE, \
5762 .type = QEMU_OPT_STRING, \
5763 .help = "File name of a base image" \
5764 }, \
5766 .name = BLOCK_OPT_BACKING_FMT, \
5767 .type = QEMU_OPT_STRING, \
5768 .help = "Image format of the base image" \
5769 }, \
5771 .name = BLOCK_OPT_DATA_FILE, \
5772 .type = QEMU_OPT_STRING, \
5773 .help = "File name of an external data file" \
5774 }, \
5776 .name = BLOCK_OPT_DATA_FILE_RAW, \
5777 .type = QEMU_OPT_BOOL, \
5778 .help = "The external data file must stay valid " \
5779 "as a raw image" \
5780 }, \
5782 .name = BLOCK_OPT_LAZY_REFCOUNTS, \
5783 .type = QEMU_OPT_BOOL, \
5784 .help = "Postpone refcount updates", \
5785 .def_value_str = "off" \
5786 }, \
5788 .name = BLOCK_OPT_REFCOUNT_BITS, \
5789 .type = QEMU_OPT_NUMBER, \
5790 .help = "Width of a reference count entry in bits", \
5791 .def_value_str = "16" \
5794 static QemuOptsList qcow2_create_opts = {
5795 .name = "qcow2-create-opts",
5796 .head = QTAILQ_HEAD_INITIALIZER(qcow2_create_opts.head),
5797 .desc = {
5799 .name = BLOCK_OPT_ENCRYPT, \
5800 .type = QEMU_OPT_BOOL, \
5801 .help = "Encrypt the image with format 'aes'. (Deprecated " \
5802 "in favor of " BLOCK_OPT_ENCRYPT_FORMAT "=aes)", \
5803 }, \
5805 .name = BLOCK_OPT_ENCRYPT_FORMAT, \
5806 .type = QEMU_OPT_STRING, \
5807 .help = "Encrypt the image, format choices: 'aes', 'luks'", \
5808 }, \
5809 BLOCK_CRYPTO_OPT_DEF_KEY_SECRET("encrypt.", \
5810 "ID of secret providing qcow AES key or LUKS passphrase"), \
5811 BLOCK_CRYPTO_OPT_DEF_LUKS_CIPHER_ALG("encrypt."), \
5812 BLOCK_CRYPTO_OPT_DEF_LUKS_CIPHER_MODE("encrypt."), \
5813 BLOCK_CRYPTO_OPT_DEF_LUKS_IVGEN_ALG("encrypt."), \
5814 BLOCK_CRYPTO_OPT_DEF_LUKS_IVGEN_HASH_ALG("encrypt."), \
5815 BLOCK_CRYPTO_OPT_DEF_LUKS_HASH_ALG("encrypt."), \
5816 BLOCK_CRYPTO_OPT_DEF_LUKS_ITER_TIME("encrypt."), \
5818 .name = BLOCK_OPT_CLUSTER_SIZE, \
5819 .type = QEMU_OPT_SIZE, \
5820 .help = "qcow2 cluster size", \
5821 .def_value_str = stringify(DEFAULT_CLUSTER_SIZE) \
5822 }, \
5824 .name = BLOCK_OPT_EXTL2, \
5825 .type = QEMU_OPT_BOOL, \
5826 .help = "Extended L2 tables", \
5827 .def_value_str = "off" \
5828 }, \
5830 .name = BLOCK_OPT_PREALLOC, \
5831 .type = QEMU_OPT_STRING, \
5832 .help = "Preallocation mode (allowed values: off, " \
5833 "metadata, falloc, full)" \
5834 }, \
5836 .name = BLOCK_OPT_COMPRESSION_TYPE, \
5837 .type = QEMU_OPT_STRING, \
5838 .help = "Compression method used for image cluster " \
5839 "compression", \
5840 .def_value_str = "zlib" \
5842 QCOW_COMMON_OPTIONS,
5843 { /* end of list */ }
5847 static QemuOptsList qcow2_amend_opts = {
5848 .name = "qcow2-amend-opts",
5849 .head = QTAILQ_HEAD_INITIALIZER(qcow2_amend_opts.head),
5850 .desc = {
5851 BLOCK_CRYPTO_OPT_DEF_LUKS_STATE("encrypt."),
5852 BLOCK_CRYPTO_OPT_DEF_LUKS_KEYSLOT("encrypt."),
5853 BLOCK_CRYPTO_OPT_DEF_LUKS_OLD_SECRET("encrypt."),
5854 BLOCK_CRYPTO_OPT_DEF_LUKS_NEW_SECRET("encrypt."),
5855 BLOCK_CRYPTO_OPT_DEF_LUKS_ITER_TIME("encrypt."),
5856 QCOW_COMMON_OPTIONS,
5857 { /* end of list */ }
5861 static const char *const qcow2_strong_runtime_opts[] = {
5862 "encrypt." BLOCK_CRYPTO_OPT_QCOW_KEY_SECRET,
5864 NULL
5867 BlockDriver bdrv_qcow2 = {
5868 .format_name = "qcow2",
5869 .instance_size = sizeof(BDRVQcow2State),
5870 .bdrv_probe = qcow2_probe,
5871 .bdrv_open = qcow2_open,
5872 .bdrv_close = qcow2_close,
5873 .bdrv_reopen_prepare = qcow2_reopen_prepare,
5874 .bdrv_reopen_commit = qcow2_reopen_commit,
5875 .bdrv_reopen_commit_post = qcow2_reopen_commit_post,
5876 .bdrv_reopen_abort = qcow2_reopen_abort,
5877 .bdrv_join_options = qcow2_join_options,
5878 .bdrv_child_perm = bdrv_default_perms,
5879 .bdrv_co_create_opts = qcow2_co_create_opts,
5880 .bdrv_co_create = qcow2_co_create,
5881 .bdrv_has_zero_init = qcow2_has_zero_init,
5882 .bdrv_co_block_status = qcow2_co_block_status,
5884 .bdrv_co_preadv_part = qcow2_co_preadv_part,
5885 .bdrv_co_pwritev_part = qcow2_co_pwritev_part,
5886 .bdrv_co_flush_to_os = qcow2_co_flush_to_os,
5888 .bdrv_co_pwrite_zeroes = qcow2_co_pwrite_zeroes,
5889 .bdrv_co_pdiscard = qcow2_co_pdiscard,
5890 .bdrv_co_copy_range_from = qcow2_co_copy_range_from,
5891 .bdrv_co_copy_range_to = qcow2_co_copy_range_to,
5892 .bdrv_co_truncate = qcow2_co_truncate,
5893 .bdrv_co_pwritev_compressed_part = qcow2_co_pwritev_compressed_part,
5894 .bdrv_make_empty = qcow2_make_empty,
5896 .bdrv_snapshot_create = qcow2_snapshot_create,
5897 .bdrv_snapshot_goto = qcow2_snapshot_goto,
5898 .bdrv_snapshot_delete = qcow2_snapshot_delete,
5899 .bdrv_snapshot_list = qcow2_snapshot_list,
5900 .bdrv_snapshot_load_tmp = qcow2_snapshot_load_tmp,
5901 .bdrv_measure = qcow2_measure,
5902 .bdrv_get_info = qcow2_get_info,
5903 .bdrv_get_specific_info = qcow2_get_specific_info,
5905 .bdrv_save_vmstate = qcow2_save_vmstate,
5906 .bdrv_load_vmstate = qcow2_load_vmstate,
5908 .is_format = true,
5909 .supports_backing = true,
5910 .bdrv_change_backing_file = qcow2_change_backing_file,
5912 .bdrv_refresh_limits = qcow2_refresh_limits,
5913 .bdrv_co_invalidate_cache = qcow2_co_invalidate_cache,
5914 .bdrv_inactivate = qcow2_inactivate,
5916 .create_opts = &qcow2_create_opts,
5917 .amend_opts = &qcow2_amend_opts,
5918 .strong_runtime_opts = qcow2_strong_runtime_opts,
5919 .mutable_opts = mutable_opts,
5920 .bdrv_co_check = qcow2_co_check,
5921 .bdrv_amend_options = qcow2_amend_options,
5922 .bdrv_co_amend = qcow2_co_amend,
5924 .bdrv_detach_aio_context = qcow2_detach_aio_context,
5925 .bdrv_attach_aio_context = qcow2_attach_aio_context,
5927 .bdrv_supports_persistent_dirty_bitmap =
5928 qcow2_supports_persistent_dirty_bitmap,
5929 .bdrv_co_can_store_new_dirty_bitmap = qcow2_co_can_store_new_dirty_bitmap,
5930 .bdrv_co_remove_persistent_dirty_bitmap =
5931 qcow2_co_remove_persistent_dirty_bitmap,
5934 static void bdrv_qcow2_init(void)
5936 bdrv_register(&bdrv_qcow2);
5939 block_init(bdrv_qcow2_init);