pci core: assert ENOSPC when add capability
[qemu/ar7.git] / block / qcow2.c
blob6f5fb810e4fc7039d18b00251ebf43b9d75e253e
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.
24 #include "qemu/osdep.h"
25 #include "block/block_int.h"
26 #include "sysemu/block-backend.h"
27 #include "qemu/module.h"
28 #include <zlib.h>
29 #include "block/qcow2.h"
30 #include "qemu/error-report.h"
31 #include "qapi/qmp/qerror.h"
32 #include "qapi/qmp/qbool.h"
33 #include "qapi/util.h"
34 #include "qapi/qmp/types.h"
35 #include "qapi-event.h"
36 #include "trace.h"
37 #include "qemu/option_int.h"
38 #include "qemu/cutils.h"
39 #include "qemu/bswap.h"
42 Differences with QCOW:
44 - Support for multiple incremental snapshots.
45 - Memory management by reference counts.
46 - Clusters which have a reference count of one have the bit
47 QCOW_OFLAG_COPIED to optimize write performance.
48 - Size of compressed clusters is stored in sectors to reduce bit usage
49 in the cluster offsets.
50 - Support for storing additional data (such as the VM state) in the
51 snapshots.
52 - If a backing store is used, the cluster size is not constrained
53 (could be backported to QCOW).
54 - L2 tables have always a size of one cluster.
58 typedef struct {
59 uint32_t magic;
60 uint32_t len;
61 } QEMU_PACKED QCowExtension;
63 #define QCOW2_EXT_MAGIC_END 0
64 #define QCOW2_EXT_MAGIC_BACKING_FORMAT 0xE2792ACA
65 #define QCOW2_EXT_MAGIC_FEATURE_TABLE 0x6803f857
67 static int qcow2_probe(const uint8_t *buf, int buf_size, const char *filename)
69 const QCowHeader *cow_header = (const void *)buf;
71 if (buf_size >= sizeof(QCowHeader) &&
72 be32_to_cpu(cow_header->magic) == QCOW_MAGIC &&
73 be32_to_cpu(cow_header->version) >= 2)
74 return 100;
75 else
76 return 0;
80 /*
81 * read qcow2 extension and fill bs
82 * start reading from start_offset
83 * finish reading upon magic of value 0 or when end_offset reached
84 * unknown magic is skipped (future extension this version knows nothing about)
85 * return 0 upon success, non-0 otherwise
87 static int qcow2_read_extensions(BlockDriverState *bs, uint64_t start_offset,
88 uint64_t end_offset, void **p_feature_table,
89 Error **errp)
91 BDRVQcow2State *s = bs->opaque;
92 QCowExtension ext;
93 uint64_t offset;
94 int ret;
96 #ifdef DEBUG_EXT
97 printf("qcow2_read_extensions: start=%ld end=%ld\n", start_offset, end_offset);
98 #endif
99 offset = start_offset;
100 while (offset < end_offset) {
102 #ifdef DEBUG_EXT
103 /* Sanity check */
104 if (offset > s->cluster_size)
105 printf("qcow2_read_extension: suspicious offset %lu\n", offset);
107 printf("attempting to read extended header in offset %lu\n", offset);
108 #endif
110 ret = bdrv_pread(bs->file->bs, offset, &ext, sizeof(ext));
111 if (ret < 0) {
112 error_setg_errno(errp, -ret, "qcow2_read_extension: ERROR: "
113 "pread fail from offset %" PRIu64, offset);
114 return 1;
116 be32_to_cpus(&ext.magic);
117 be32_to_cpus(&ext.len);
118 offset += sizeof(ext);
119 #ifdef DEBUG_EXT
120 printf("ext.magic = 0x%x\n", ext.magic);
121 #endif
122 if (offset > end_offset || ext.len > end_offset - offset) {
123 error_setg(errp, "Header extension too large");
124 return -EINVAL;
127 switch (ext.magic) {
128 case QCOW2_EXT_MAGIC_END:
129 return 0;
131 case QCOW2_EXT_MAGIC_BACKING_FORMAT:
132 if (ext.len >= sizeof(bs->backing_format)) {
133 error_setg(errp, "ERROR: ext_backing_format: len=%" PRIu32
134 " too large (>=%zu)", ext.len,
135 sizeof(bs->backing_format));
136 return 2;
138 ret = bdrv_pread(bs->file->bs, offset, bs->backing_format, ext.len);
139 if (ret < 0) {
140 error_setg_errno(errp, -ret, "ERROR: ext_backing_format: "
141 "Could not read format name");
142 return 3;
144 bs->backing_format[ext.len] = '\0';
145 s->image_backing_format = g_strdup(bs->backing_format);
146 #ifdef DEBUG_EXT
147 printf("Qcow2: Got format extension %s\n", bs->backing_format);
148 #endif
149 break;
151 case QCOW2_EXT_MAGIC_FEATURE_TABLE:
152 if (p_feature_table != NULL) {
153 void* feature_table = g_malloc0(ext.len + 2 * sizeof(Qcow2Feature));
154 ret = bdrv_pread(bs->file->bs, offset , feature_table, ext.len);
155 if (ret < 0) {
156 error_setg_errno(errp, -ret, "ERROR: ext_feature_table: "
157 "Could not read table");
158 return ret;
161 *p_feature_table = feature_table;
163 break;
165 default:
166 /* unknown magic - save it in case we need to rewrite the header */
168 Qcow2UnknownHeaderExtension *uext;
170 uext = g_malloc0(sizeof(*uext) + ext.len);
171 uext->magic = ext.magic;
172 uext->len = ext.len;
173 QLIST_INSERT_HEAD(&s->unknown_header_ext, uext, next);
175 ret = bdrv_pread(bs->file->bs, offset , uext->data, uext->len);
176 if (ret < 0) {
177 error_setg_errno(errp, -ret, "ERROR: unknown extension: "
178 "Could not read data");
179 return ret;
182 break;
185 offset += ((ext.len + 7) & ~7);
188 return 0;
191 static void cleanup_unknown_header_ext(BlockDriverState *bs)
193 BDRVQcow2State *s = bs->opaque;
194 Qcow2UnknownHeaderExtension *uext, *next;
196 QLIST_FOREACH_SAFE(uext, &s->unknown_header_ext, next, next) {
197 QLIST_REMOVE(uext, next);
198 g_free(uext);
202 static void report_unsupported_feature(Error **errp, Qcow2Feature *table,
203 uint64_t mask)
205 char *features = g_strdup("");
206 char *old;
208 while (table && table->name[0] != '\0') {
209 if (table->type == QCOW2_FEAT_TYPE_INCOMPATIBLE) {
210 if (mask & (1ULL << table->bit)) {
211 old = features;
212 features = g_strdup_printf("%s%s%.46s", old, *old ? ", " : "",
213 table->name);
214 g_free(old);
215 mask &= ~(1ULL << table->bit);
218 table++;
221 if (mask) {
222 old = features;
223 features = g_strdup_printf("%s%sUnknown incompatible feature: %" PRIx64,
224 old, *old ? ", " : "", mask);
225 g_free(old);
228 error_setg(errp, "Unsupported qcow2 feature(s): %s", features);
229 g_free(features);
233 * Sets the dirty bit and flushes afterwards if necessary.
235 * The incompatible_features bit is only set if the image file header was
236 * updated successfully. Therefore it is not required to check the return
237 * value of this function.
239 int qcow2_mark_dirty(BlockDriverState *bs)
241 BDRVQcow2State *s = bs->opaque;
242 uint64_t val;
243 int ret;
245 assert(s->qcow_version >= 3);
247 if (s->incompatible_features & QCOW2_INCOMPAT_DIRTY) {
248 return 0; /* already dirty */
251 val = cpu_to_be64(s->incompatible_features | QCOW2_INCOMPAT_DIRTY);
252 ret = bdrv_pwrite(bs->file->bs, offsetof(QCowHeader, incompatible_features),
253 &val, sizeof(val));
254 if (ret < 0) {
255 return ret;
257 ret = bdrv_flush(bs->file->bs);
258 if (ret < 0) {
259 return ret;
262 /* Only treat image as dirty if the header was updated successfully */
263 s->incompatible_features |= QCOW2_INCOMPAT_DIRTY;
264 return 0;
268 * Clears the dirty bit and flushes before if necessary. Only call this
269 * function when there are no pending requests, it does not guard against
270 * concurrent requests dirtying the image.
272 static int qcow2_mark_clean(BlockDriverState *bs)
274 BDRVQcow2State *s = bs->opaque;
276 if (s->incompatible_features & QCOW2_INCOMPAT_DIRTY) {
277 int ret;
279 s->incompatible_features &= ~QCOW2_INCOMPAT_DIRTY;
281 ret = bdrv_flush(bs);
282 if (ret < 0) {
283 return ret;
286 return qcow2_update_header(bs);
288 return 0;
292 * Marks the image as corrupt.
294 int qcow2_mark_corrupt(BlockDriverState *bs)
296 BDRVQcow2State *s = bs->opaque;
298 s->incompatible_features |= QCOW2_INCOMPAT_CORRUPT;
299 return qcow2_update_header(bs);
303 * Marks the image as consistent, i.e., unsets the corrupt bit, and flushes
304 * before if necessary.
306 int qcow2_mark_consistent(BlockDriverState *bs)
308 BDRVQcow2State *s = bs->opaque;
310 if (s->incompatible_features & QCOW2_INCOMPAT_CORRUPT) {
311 int ret = bdrv_flush(bs);
312 if (ret < 0) {
313 return ret;
316 s->incompatible_features &= ~QCOW2_INCOMPAT_CORRUPT;
317 return qcow2_update_header(bs);
319 return 0;
322 static int qcow2_check(BlockDriverState *bs, BdrvCheckResult *result,
323 BdrvCheckMode fix)
325 int ret = qcow2_check_refcounts(bs, result, fix);
326 if (ret < 0) {
327 return ret;
330 if (fix && result->check_errors == 0 && result->corruptions == 0) {
331 ret = qcow2_mark_clean(bs);
332 if (ret < 0) {
333 return ret;
335 return qcow2_mark_consistent(bs);
337 return ret;
340 static int validate_table_offset(BlockDriverState *bs, uint64_t offset,
341 uint64_t entries, size_t entry_len)
343 BDRVQcow2State *s = bs->opaque;
344 uint64_t size;
346 /* Use signed INT64_MAX as the maximum even for uint64_t header fields,
347 * because values will be passed to qemu functions taking int64_t. */
348 if (entries > INT64_MAX / entry_len) {
349 return -EINVAL;
352 size = entries * entry_len;
354 if (INT64_MAX - size < offset) {
355 return -EINVAL;
358 /* Tables must be cluster aligned */
359 if (offset & (s->cluster_size - 1)) {
360 return -EINVAL;
363 return 0;
366 static QemuOptsList qcow2_runtime_opts = {
367 .name = "qcow2",
368 .head = QTAILQ_HEAD_INITIALIZER(qcow2_runtime_opts.head),
369 .desc = {
371 .name = QCOW2_OPT_LAZY_REFCOUNTS,
372 .type = QEMU_OPT_BOOL,
373 .help = "Postpone refcount updates",
376 .name = QCOW2_OPT_DISCARD_REQUEST,
377 .type = QEMU_OPT_BOOL,
378 .help = "Pass guest discard requests to the layer below",
381 .name = QCOW2_OPT_DISCARD_SNAPSHOT,
382 .type = QEMU_OPT_BOOL,
383 .help = "Generate discard requests when snapshot related space "
384 "is freed",
387 .name = QCOW2_OPT_DISCARD_OTHER,
388 .type = QEMU_OPT_BOOL,
389 .help = "Generate discard requests when other clusters are freed",
392 .name = QCOW2_OPT_OVERLAP,
393 .type = QEMU_OPT_STRING,
394 .help = "Selects which overlap checks to perform from a range of "
395 "templates (none, constant, cached, all)",
398 .name = QCOW2_OPT_OVERLAP_TEMPLATE,
399 .type = QEMU_OPT_STRING,
400 .help = "Selects which overlap checks to perform from a range of "
401 "templates (none, constant, cached, all)",
404 .name = QCOW2_OPT_OVERLAP_MAIN_HEADER,
405 .type = QEMU_OPT_BOOL,
406 .help = "Check for unintended writes into the main qcow2 header",
409 .name = QCOW2_OPT_OVERLAP_ACTIVE_L1,
410 .type = QEMU_OPT_BOOL,
411 .help = "Check for unintended writes into the active L1 table",
414 .name = QCOW2_OPT_OVERLAP_ACTIVE_L2,
415 .type = QEMU_OPT_BOOL,
416 .help = "Check for unintended writes into an active L2 table",
419 .name = QCOW2_OPT_OVERLAP_REFCOUNT_TABLE,
420 .type = QEMU_OPT_BOOL,
421 .help = "Check for unintended writes into the refcount table",
424 .name = QCOW2_OPT_OVERLAP_REFCOUNT_BLOCK,
425 .type = QEMU_OPT_BOOL,
426 .help = "Check for unintended writes into a refcount block",
429 .name = QCOW2_OPT_OVERLAP_SNAPSHOT_TABLE,
430 .type = QEMU_OPT_BOOL,
431 .help = "Check for unintended writes into the snapshot table",
434 .name = QCOW2_OPT_OVERLAP_INACTIVE_L1,
435 .type = QEMU_OPT_BOOL,
436 .help = "Check for unintended writes into an inactive L1 table",
439 .name = QCOW2_OPT_OVERLAP_INACTIVE_L2,
440 .type = QEMU_OPT_BOOL,
441 .help = "Check for unintended writes into an inactive L2 table",
444 .name = QCOW2_OPT_CACHE_SIZE,
445 .type = QEMU_OPT_SIZE,
446 .help = "Maximum combined metadata (L2 tables and refcount blocks) "
447 "cache size",
450 .name = QCOW2_OPT_L2_CACHE_SIZE,
451 .type = QEMU_OPT_SIZE,
452 .help = "Maximum L2 table cache size",
455 .name = QCOW2_OPT_REFCOUNT_CACHE_SIZE,
456 .type = QEMU_OPT_SIZE,
457 .help = "Maximum refcount block cache size",
460 .name = QCOW2_OPT_CACHE_CLEAN_INTERVAL,
461 .type = QEMU_OPT_NUMBER,
462 .help = "Clean unused cache entries after this time (in seconds)",
464 { /* end of list */ }
468 static const char *overlap_bool_option_names[QCOW2_OL_MAX_BITNR] = {
469 [QCOW2_OL_MAIN_HEADER_BITNR] = QCOW2_OPT_OVERLAP_MAIN_HEADER,
470 [QCOW2_OL_ACTIVE_L1_BITNR] = QCOW2_OPT_OVERLAP_ACTIVE_L1,
471 [QCOW2_OL_ACTIVE_L2_BITNR] = QCOW2_OPT_OVERLAP_ACTIVE_L2,
472 [QCOW2_OL_REFCOUNT_TABLE_BITNR] = QCOW2_OPT_OVERLAP_REFCOUNT_TABLE,
473 [QCOW2_OL_REFCOUNT_BLOCK_BITNR] = QCOW2_OPT_OVERLAP_REFCOUNT_BLOCK,
474 [QCOW2_OL_SNAPSHOT_TABLE_BITNR] = QCOW2_OPT_OVERLAP_SNAPSHOT_TABLE,
475 [QCOW2_OL_INACTIVE_L1_BITNR] = QCOW2_OPT_OVERLAP_INACTIVE_L1,
476 [QCOW2_OL_INACTIVE_L2_BITNR] = QCOW2_OPT_OVERLAP_INACTIVE_L2,
479 static void cache_clean_timer_cb(void *opaque)
481 BlockDriverState *bs = opaque;
482 BDRVQcow2State *s = bs->opaque;
483 qcow2_cache_clean_unused(bs, s->l2_table_cache);
484 qcow2_cache_clean_unused(bs, s->refcount_block_cache);
485 timer_mod(s->cache_clean_timer, qemu_clock_get_ms(QEMU_CLOCK_VIRTUAL) +
486 (int64_t) s->cache_clean_interval * 1000);
489 static void cache_clean_timer_init(BlockDriverState *bs, AioContext *context)
491 BDRVQcow2State *s = bs->opaque;
492 if (s->cache_clean_interval > 0) {
493 s->cache_clean_timer = aio_timer_new(context, QEMU_CLOCK_VIRTUAL,
494 SCALE_MS, cache_clean_timer_cb,
495 bs);
496 timer_mod(s->cache_clean_timer, qemu_clock_get_ms(QEMU_CLOCK_VIRTUAL) +
497 (int64_t) s->cache_clean_interval * 1000);
501 static void cache_clean_timer_del(BlockDriverState *bs)
503 BDRVQcow2State *s = bs->opaque;
504 if (s->cache_clean_timer) {
505 timer_del(s->cache_clean_timer);
506 timer_free(s->cache_clean_timer);
507 s->cache_clean_timer = NULL;
511 static void qcow2_detach_aio_context(BlockDriverState *bs)
513 cache_clean_timer_del(bs);
516 static void qcow2_attach_aio_context(BlockDriverState *bs,
517 AioContext *new_context)
519 cache_clean_timer_init(bs, new_context);
522 static void read_cache_sizes(BlockDriverState *bs, QemuOpts *opts,
523 uint64_t *l2_cache_size,
524 uint64_t *refcount_cache_size, Error **errp)
526 BDRVQcow2State *s = bs->opaque;
527 uint64_t combined_cache_size;
528 bool l2_cache_size_set, refcount_cache_size_set, combined_cache_size_set;
530 combined_cache_size_set = qemu_opt_get(opts, QCOW2_OPT_CACHE_SIZE);
531 l2_cache_size_set = qemu_opt_get(opts, QCOW2_OPT_L2_CACHE_SIZE);
532 refcount_cache_size_set = qemu_opt_get(opts, QCOW2_OPT_REFCOUNT_CACHE_SIZE);
534 combined_cache_size = qemu_opt_get_size(opts, QCOW2_OPT_CACHE_SIZE, 0);
535 *l2_cache_size = qemu_opt_get_size(opts, QCOW2_OPT_L2_CACHE_SIZE, 0);
536 *refcount_cache_size = qemu_opt_get_size(opts,
537 QCOW2_OPT_REFCOUNT_CACHE_SIZE, 0);
539 if (combined_cache_size_set) {
540 if (l2_cache_size_set && refcount_cache_size_set) {
541 error_setg(errp, QCOW2_OPT_CACHE_SIZE ", " QCOW2_OPT_L2_CACHE_SIZE
542 " and " QCOW2_OPT_REFCOUNT_CACHE_SIZE " may not be set "
543 "the same time");
544 return;
545 } else if (*l2_cache_size > combined_cache_size) {
546 error_setg(errp, QCOW2_OPT_L2_CACHE_SIZE " may not exceed "
547 QCOW2_OPT_CACHE_SIZE);
548 return;
549 } else if (*refcount_cache_size > combined_cache_size) {
550 error_setg(errp, QCOW2_OPT_REFCOUNT_CACHE_SIZE " may not exceed "
551 QCOW2_OPT_CACHE_SIZE);
552 return;
555 if (l2_cache_size_set) {
556 *refcount_cache_size = combined_cache_size - *l2_cache_size;
557 } else if (refcount_cache_size_set) {
558 *l2_cache_size = combined_cache_size - *refcount_cache_size;
559 } else {
560 *refcount_cache_size = combined_cache_size
561 / (DEFAULT_L2_REFCOUNT_SIZE_RATIO + 1);
562 *l2_cache_size = combined_cache_size - *refcount_cache_size;
564 } else {
565 if (!l2_cache_size_set && !refcount_cache_size_set) {
566 *l2_cache_size = MAX(DEFAULT_L2_CACHE_BYTE_SIZE,
567 (uint64_t)DEFAULT_L2_CACHE_CLUSTERS
568 * s->cluster_size);
569 *refcount_cache_size = *l2_cache_size
570 / DEFAULT_L2_REFCOUNT_SIZE_RATIO;
571 } else if (!l2_cache_size_set) {
572 *l2_cache_size = *refcount_cache_size
573 * DEFAULT_L2_REFCOUNT_SIZE_RATIO;
574 } else if (!refcount_cache_size_set) {
575 *refcount_cache_size = *l2_cache_size
576 / DEFAULT_L2_REFCOUNT_SIZE_RATIO;
581 typedef struct Qcow2ReopenState {
582 Qcow2Cache *l2_table_cache;
583 Qcow2Cache *refcount_block_cache;
584 bool use_lazy_refcounts;
585 int overlap_check;
586 bool discard_passthrough[QCOW2_DISCARD_MAX];
587 uint64_t cache_clean_interval;
588 } Qcow2ReopenState;
590 static int qcow2_update_options_prepare(BlockDriverState *bs,
591 Qcow2ReopenState *r,
592 QDict *options, int flags,
593 Error **errp)
595 BDRVQcow2State *s = bs->opaque;
596 QemuOpts *opts = NULL;
597 const char *opt_overlap_check, *opt_overlap_check_template;
598 int overlap_check_template = 0;
599 uint64_t l2_cache_size, refcount_cache_size;
600 int i;
601 Error *local_err = NULL;
602 int ret;
604 opts = qemu_opts_create(&qcow2_runtime_opts, NULL, 0, &error_abort);
605 qemu_opts_absorb_qdict(opts, options, &local_err);
606 if (local_err) {
607 error_propagate(errp, local_err);
608 ret = -EINVAL;
609 goto fail;
612 /* get L2 table/refcount block cache size from command line options */
613 read_cache_sizes(bs, opts, &l2_cache_size, &refcount_cache_size,
614 &local_err);
615 if (local_err) {
616 error_propagate(errp, local_err);
617 ret = -EINVAL;
618 goto fail;
621 l2_cache_size /= s->cluster_size;
622 if (l2_cache_size < MIN_L2_CACHE_SIZE) {
623 l2_cache_size = MIN_L2_CACHE_SIZE;
625 if (l2_cache_size > INT_MAX) {
626 error_setg(errp, "L2 cache size too big");
627 ret = -EINVAL;
628 goto fail;
631 refcount_cache_size /= s->cluster_size;
632 if (refcount_cache_size < MIN_REFCOUNT_CACHE_SIZE) {
633 refcount_cache_size = MIN_REFCOUNT_CACHE_SIZE;
635 if (refcount_cache_size > INT_MAX) {
636 error_setg(errp, "Refcount cache size too big");
637 ret = -EINVAL;
638 goto fail;
641 /* alloc new L2 table/refcount block cache, flush old one */
642 if (s->l2_table_cache) {
643 ret = qcow2_cache_flush(bs, s->l2_table_cache);
644 if (ret) {
645 error_setg_errno(errp, -ret, "Failed to flush the L2 table cache");
646 goto fail;
650 if (s->refcount_block_cache) {
651 ret = qcow2_cache_flush(bs, s->refcount_block_cache);
652 if (ret) {
653 error_setg_errno(errp, -ret,
654 "Failed to flush the refcount block cache");
655 goto fail;
659 r->l2_table_cache = qcow2_cache_create(bs, l2_cache_size);
660 r->refcount_block_cache = qcow2_cache_create(bs, refcount_cache_size);
661 if (r->l2_table_cache == NULL || r->refcount_block_cache == NULL) {
662 error_setg(errp, "Could not allocate metadata caches");
663 ret = -ENOMEM;
664 goto fail;
667 /* New interval for cache cleanup timer */
668 r->cache_clean_interval =
669 qemu_opt_get_number(opts, QCOW2_OPT_CACHE_CLEAN_INTERVAL,
670 s->cache_clean_interval);
671 if (r->cache_clean_interval > UINT_MAX) {
672 error_setg(errp, "Cache clean interval too big");
673 ret = -EINVAL;
674 goto fail;
677 /* lazy-refcounts; flush if going from enabled to disabled */
678 r->use_lazy_refcounts = qemu_opt_get_bool(opts, QCOW2_OPT_LAZY_REFCOUNTS,
679 (s->compatible_features & QCOW2_COMPAT_LAZY_REFCOUNTS));
680 if (r->use_lazy_refcounts && s->qcow_version < 3) {
681 error_setg(errp, "Lazy refcounts require a qcow2 image with at least "
682 "qemu 1.1 compatibility level");
683 ret = -EINVAL;
684 goto fail;
687 if (s->use_lazy_refcounts && !r->use_lazy_refcounts) {
688 ret = qcow2_mark_clean(bs);
689 if (ret < 0) {
690 error_setg_errno(errp, -ret, "Failed to disable lazy refcounts");
691 goto fail;
695 /* Overlap check options */
696 opt_overlap_check = qemu_opt_get(opts, QCOW2_OPT_OVERLAP);
697 opt_overlap_check_template = qemu_opt_get(opts, QCOW2_OPT_OVERLAP_TEMPLATE);
698 if (opt_overlap_check_template && opt_overlap_check &&
699 strcmp(opt_overlap_check_template, opt_overlap_check))
701 error_setg(errp, "Conflicting values for qcow2 options '"
702 QCOW2_OPT_OVERLAP "' ('%s') and '" QCOW2_OPT_OVERLAP_TEMPLATE
703 "' ('%s')", opt_overlap_check, opt_overlap_check_template);
704 ret = -EINVAL;
705 goto fail;
707 if (!opt_overlap_check) {
708 opt_overlap_check = opt_overlap_check_template ?: "cached";
711 if (!strcmp(opt_overlap_check, "none")) {
712 overlap_check_template = 0;
713 } else if (!strcmp(opt_overlap_check, "constant")) {
714 overlap_check_template = QCOW2_OL_CONSTANT;
715 } else if (!strcmp(opt_overlap_check, "cached")) {
716 overlap_check_template = QCOW2_OL_CACHED;
717 } else if (!strcmp(opt_overlap_check, "all")) {
718 overlap_check_template = QCOW2_OL_ALL;
719 } else {
720 error_setg(errp, "Unsupported value '%s' for qcow2 option "
721 "'overlap-check'. Allowed are any of the following: "
722 "none, constant, cached, all", opt_overlap_check);
723 ret = -EINVAL;
724 goto fail;
727 r->overlap_check = 0;
728 for (i = 0; i < QCOW2_OL_MAX_BITNR; i++) {
729 /* overlap-check defines a template bitmask, but every flag may be
730 * overwritten through the associated boolean option */
731 r->overlap_check |=
732 qemu_opt_get_bool(opts, overlap_bool_option_names[i],
733 overlap_check_template & (1 << i)) << i;
736 r->discard_passthrough[QCOW2_DISCARD_NEVER] = false;
737 r->discard_passthrough[QCOW2_DISCARD_ALWAYS] = true;
738 r->discard_passthrough[QCOW2_DISCARD_REQUEST] =
739 qemu_opt_get_bool(opts, QCOW2_OPT_DISCARD_REQUEST,
740 flags & BDRV_O_UNMAP);
741 r->discard_passthrough[QCOW2_DISCARD_SNAPSHOT] =
742 qemu_opt_get_bool(opts, QCOW2_OPT_DISCARD_SNAPSHOT, true);
743 r->discard_passthrough[QCOW2_DISCARD_OTHER] =
744 qemu_opt_get_bool(opts, QCOW2_OPT_DISCARD_OTHER, false);
746 ret = 0;
747 fail:
748 qemu_opts_del(opts);
749 opts = NULL;
750 return ret;
753 static void qcow2_update_options_commit(BlockDriverState *bs,
754 Qcow2ReopenState *r)
756 BDRVQcow2State *s = bs->opaque;
757 int i;
759 if (s->l2_table_cache) {
760 qcow2_cache_destroy(bs, s->l2_table_cache);
762 if (s->refcount_block_cache) {
763 qcow2_cache_destroy(bs, s->refcount_block_cache);
765 s->l2_table_cache = r->l2_table_cache;
766 s->refcount_block_cache = r->refcount_block_cache;
768 s->overlap_check = r->overlap_check;
769 s->use_lazy_refcounts = r->use_lazy_refcounts;
771 for (i = 0; i < QCOW2_DISCARD_MAX; i++) {
772 s->discard_passthrough[i] = r->discard_passthrough[i];
775 if (s->cache_clean_interval != r->cache_clean_interval) {
776 cache_clean_timer_del(bs);
777 s->cache_clean_interval = r->cache_clean_interval;
778 cache_clean_timer_init(bs, bdrv_get_aio_context(bs));
782 static void qcow2_update_options_abort(BlockDriverState *bs,
783 Qcow2ReopenState *r)
785 if (r->l2_table_cache) {
786 qcow2_cache_destroy(bs, r->l2_table_cache);
788 if (r->refcount_block_cache) {
789 qcow2_cache_destroy(bs, r->refcount_block_cache);
793 static int qcow2_update_options(BlockDriverState *bs, QDict *options,
794 int flags, Error **errp)
796 Qcow2ReopenState r = {};
797 int ret;
799 ret = qcow2_update_options_prepare(bs, &r, options, flags, errp);
800 if (ret >= 0) {
801 qcow2_update_options_commit(bs, &r);
802 } else {
803 qcow2_update_options_abort(bs, &r);
806 return ret;
809 static int qcow2_open(BlockDriverState *bs, QDict *options, int flags,
810 Error **errp)
812 BDRVQcow2State *s = bs->opaque;
813 unsigned int len, i;
814 int ret = 0;
815 QCowHeader header;
816 Error *local_err = NULL;
817 uint64_t ext_end;
818 uint64_t l1_vm_state_index;
820 ret = bdrv_pread(bs->file->bs, 0, &header, sizeof(header));
821 if (ret < 0) {
822 error_setg_errno(errp, -ret, "Could not read qcow2 header");
823 goto fail;
825 be32_to_cpus(&header.magic);
826 be32_to_cpus(&header.version);
827 be64_to_cpus(&header.backing_file_offset);
828 be32_to_cpus(&header.backing_file_size);
829 be64_to_cpus(&header.size);
830 be32_to_cpus(&header.cluster_bits);
831 be32_to_cpus(&header.crypt_method);
832 be64_to_cpus(&header.l1_table_offset);
833 be32_to_cpus(&header.l1_size);
834 be64_to_cpus(&header.refcount_table_offset);
835 be32_to_cpus(&header.refcount_table_clusters);
836 be64_to_cpus(&header.snapshots_offset);
837 be32_to_cpus(&header.nb_snapshots);
839 if (header.magic != QCOW_MAGIC) {
840 error_setg(errp, "Image is not in qcow2 format");
841 ret = -EINVAL;
842 goto fail;
844 if (header.version < 2 || header.version > 3) {
845 error_setg(errp, "Unsupported qcow2 version %" PRIu32, header.version);
846 ret = -ENOTSUP;
847 goto fail;
850 s->qcow_version = header.version;
852 /* Initialise cluster size */
853 if (header.cluster_bits < MIN_CLUSTER_BITS ||
854 header.cluster_bits > MAX_CLUSTER_BITS) {
855 error_setg(errp, "Unsupported cluster size: 2^%" PRIu32,
856 header.cluster_bits);
857 ret = -EINVAL;
858 goto fail;
861 s->cluster_bits = header.cluster_bits;
862 s->cluster_size = 1 << s->cluster_bits;
863 s->cluster_sectors = 1 << (s->cluster_bits - 9);
865 /* Initialise version 3 header fields */
866 if (header.version == 2) {
867 header.incompatible_features = 0;
868 header.compatible_features = 0;
869 header.autoclear_features = 0;
870 header.refcount_order = 4;
871 header.header_length = 72;
872 } else {
873 be64_to_cpus(&header.incompatible_features);
874 be64_to_cpus(&header.compatible_features);
875 be64_to_cpus(&header.autoclear_features);
876 be32_to_cpus(&header.refcount_order);
877 be32_to_cpus(&header.header_length);
879 if (header.header_length < 104) {
880 error_setg(errp, "qcow2 header too short");
881 ret = -EINVAL;
882 goto fail;
886 if (header.header_length > s->cluster_size) {
887 error_setg(errp, "qcow2 header exceeds cluster size");
888 ret = -EINVAL;
889 goto fail;
892 if (header.header_length > sizeof(header)) {
893 s->unknown_header_fields_size = header.header_length - sizeof(header);
894 s->unknown_header_fields = g_malloc(s->unknown_header_fields_size);
895 ret = bdrv_pread(bs->file->bs, sizeof(header), s->unknown_header_fields,
896 s->unknown_header_fields_size);
897 if (ret < 0) {
898 error_setg_errno(errp, -ret, "Could not read unknown qcow2 header "
899 "fields");
900 goto fail;
904 if (header.backing_file_offset > s->cluster_size) {
905 error_setg(errp, "Invalid backing file offset");
906 ret = -EINVAL;
907 goto fail;
910 if (header.backing_file_offset) {
911 ext_end = header.backing_file_offset;
912 } else {
913 ext_end = 1 << header.cluster_bits;
916 /* Handle feature bits */
917 s->incompatible_features = header.incompatible_features;
918 s->compatible_features = header.compatible_features;
919 s->autoclear_features = header.autoclear_features;
921 if (s->incompatible_features & ~QCOW2_INCOMPAT_MASK) {
922 void *feature_table = NULL;
923 qcow2_read_extensions(bs, header.header_length, ext_end,
924 &feature_table, NULL);
925 report_unsupported_feature(errp, feature_table,
926 s->incompatible_features &
927 ~QCOW2_INCOMPAT_MASK);
928 ret = -ENOTSUP;
929 g_free(feature_table);
930 goto fail;
933 if (s->incompatible_features & QCOW2_INCOMPAT_CORRUPT) {
934 /* Corrupt images may not be written to unless they are being repaired
936 if ((flags & BDRV_O_RDWR) && !(flags & BDRV_O_CHECK)) {
937 error_setg(errp, "qcow2: Image is corrupt; cannot be opened "
938 "read/write");
939 ret = -EACCES;
940 goto fail;
944 /* Check support for various header values */
945 if (header.refcount_order > 6) {
946 error_setg(errp, "Reference count entry width too large; may not "
947 "exceed 64 bits");
948 ret = -EINVAL;
949 goto fail;
951 s->refcount_order = header.refcount_order;
952 s->refcount_bits = 1 << s->refcount_order;
953 s->refcount_max = UINT64_C(1) << (s->refcount_bits - 1);
954 s->refcount_max += s->refcount_max - 1;
956 if (header.crypt_method > QCOW_CRYPT_AES) {
957 error_setg(errp, "Unsupported encryption method: %" PRIu32,
958 header.crypt_method);
959 ret = -EINVAL;
960 goto fail;
962 if (!qcrypto_cipher_supports(QCRYPTO_CIPHER_ALG_AES_128)) {
963 error_setg(errp, "AES cipher not available");
964 ret = -EINVAL;
965 goto fail;
967 s->crypt_method_header = header.crypt_method;
968 if (s->crypt_method_header) {
969 if (bdrv_uses_whitelist() &&
970 s->crypt_method_header == QCOW_CRYPT_AES) {
971 error_report("qcow2 built-in AES encryption is deprecated");
972 error_printf("Support for it will be removed in a future release.\n"
973 "You can use 'qemu-img convert' to switch to an\n"
974 "unencrypted qcow2 image, or a LUKS raw image.\n");
977 bs->encrypted = 1;
980 s->l2_bits = s->cluster_bits - 3; /* L2 is always one cluster */
981 s->l2_size = 1 << s->l2_bits;
982 /* 2^(s->refcount_order - 3) is the refcount width in bytes */
983 s->refcount_block_bits = s->cluster_bits - (s->refcount_order - 3);
984 s->refcount_block_size = 1 << s->refcount_block_bits;
985 bs->total_sectors = header.size / 512;
986 s->csize_shift = (62 - (s->cluster_bits - 8));
987 s->csize_mask = (1 << (s->cluster_bits - 8)) - 1;
988 s->cluster_offset_mask = (1LL << s->csize_shift) - 1;
990 s->refcount_table_offset = header.refcount_table_offset;
991 s->refcount_table_size =
992 header.refcount_table_clusters << (s->cluster_bits - 3);
994 if (header.refcount_table_clusters > qcow2_max_refcount_clusters(s)) {
995 error_setg(errp, "Reference count table too large");
996 ret = -EINVAL;
997 goto fail;
1000 ret = validate_table_offset(bs, s->refcount_table_offset,
1001 s->refcount_table_size, sizeof(uint64_t));
1002 if (ret < 0) {
1003 error_setg(errp, "Invalid reference count table offset");
1004 goto fail;
1007 /* Snapshot table offset/length */
1008 if (header.nb_snapshots > QCOW_MAX_SNAPSHOTS) {
1009 error_setg(errp, "Too many snapshots");
1010 ret = -EINVAL;
1011 goto fail;
1014 ret = validate_table_offset(bs, header.snapshots_offset,
1015 header.nb_snapshots,
1016 sizeof(QCowSnapshotHeader));
1017 if (ret < 0) {
1018 error_setg(errp, "Invalid snapshot table offset");
1019 goto fail;
1022 /* read the level 1 table */
1023 if (header.l1_size > QCOW_MAX_L1_SIZE / sizeof(uint64_t)) {
1024 error_setg(errp, "Active L1 table too large");
1025 ret = -EFBIG;
1026 goto fail;
1028 s->l1_size = header.l1_size;
1030 l1_vm_state_index = size_to_l1(s, header.size);
1031 if (l1_vm_state_index > INT_MAX) {
1032 error_setg(errp, "Image is too big");
1033 ret = -EFBIG;
1034 goto fail;
1036 s->l1_vm_state_index = l1_vm_state_index;
1038 /* the L1 table must contain at least enough entries to put
1039 header.size bytes */
1040 if (s->l1_size < s->l1_vm_state_index) {
1041 error_setg(errp, "L1 table is too small");
1042 ret = -EINVAL;
1043 goto fail;
1046 ret = validate_table_offset(bs, header.l1_table_offset,
1047 header.l1_size, sizeof(uint64_t));
1048 if (ret < 0) {
1049 error_setg(errp, "Invalid L1 table offset");
1050 goto fail;
1052 s->l1_table_offset = header.l1_table_offset;
1055 if (s->l1_size > 0) {
1056 s->l1_table = qemu_try_blockalign(bs->file->bs,
1057 align_offset(s->l1_size * sizeof(uint64_t), 512));
1058 if (s->l1_table == NULL) {
1059 error_setg(errp, "Could not allocate L1 table");
1060 ret = -ENOMEM;
1061 goto fail;
1063 ret = bdrv_pread(bs->file->bs, s->l1_table_offset, s->l1_table,
1064 s->l1_size * sizeof(uint64_t));
1065 if (ret < 0) {
1066 error_setg_errno(errp, -ret, "Could not read L1 table");
1067 goto fail;
1069 for(i = 0;i < s->l1_size; i++) {
1070 be64_to_cpus(&s->l1_table[i]);
1074 /* Parse driver-specific options */
1075 ret = qcow2_update_options(bs, options, flags, errp);
1076 if (ret < 0) {
1077 goto fail;
1080 s->cluster_cache = g_malloc(s->cluster_size);
1081 /* one more sector for decompressed data alignment */
1082 s->cluster_data = qemu_try_blockalign(bs->file->bs, QCOW_MAX_CRYPT_CLUSTERS
1083 * s->cluster_size + 512);
1084 if (s->cluster_data == NULL) {
1085 error_setg(errp, "Could not allocate temporary cluster buffer");
1086 ret = -ENOMEM;
1087 goto fail;
1090 s->cluster_cache_offset = -1;
1091 s->flags = flags;
1093 ret = qcow2_refcount_init(bs);
1094 if (ret != 0) {
1095 error_setg_errno(errp, -ret, "Could not initialize refcount handling");
1096 goto fail;
1099 QLIST_INIT(&s->cluster_allocs);
1100 QTAILQ_INIT(&s->discards);
1102 /* read qcow2 extensions */
1103 if (qcow2_read_extensions(bs, header.header_length, ext_end, NULL,
1104 &local_err)) {
1105 error_propagate(errp, local_err);
1106 ret = -EINVAL;
1107 goto fail;
1110 /* read the backing file name */
1111 if (header.backing_file_offset != 0) {
1112 len = header.backing_file_size;
1113 if (len > MIN(1023, s->cluster_size - header.backing_file_offset) ||
1114 len >= sizeof(bs->backing_file)) {
1115 error_setg(errp, "Backing file name too long");
1116 ret = -EINVAL;
1117 goto fail;
1119 ret = bdrv_pread(bs->file->bs, header.backing_file_offset,
1120 bs->backing_file, len);
1121 if (ret < 0) {
1122 error_setg_errno(errp, -ret, "Could not read backing file name");
1123 goto fail;
1125 bs->backing_file[len] = '\0';
1126 s->image_backing_file = g_strdup(bs->backing_file);
1129 /* Internal snapshots */
1130 s->snapshots_offset = header.snapshots_offset;
1131 s->nb_snapshots = header.nb_snapshots;
1133 ret = qcow2_read_snapshots(bs);
1134 if (ret < 0) {
1135 error_setg_errno(errp, -ret, "Could not read snapshots");
1136 goto fail;
1139 /* Clear unknown autoclear feature bits */
1140 if (!bs->read_only && !(flags & BDRV_O_INACTIVE) && s->autoclear_features) {
1141 s->autoclear_features = 0;
1142 ret = qcow2_update_header(bs);
1143 if (ret < 0) {
1144 error_setg_errno(errp, -ret, "Could not update qcow2 header");
1145 goto fail;
1149 /* Initialise locks */
1150 qemu_co_mutex_init(&s->lock);
1152 /* Repair image if dirty */
1153 if (!(flags & (BDRV_O_CHECK | BDRV_O_INACTIVE)) && !bs->read_only &&
1154 (s->incompatible_features & QCOW2_INCOMPAT_DIRTY)) {
1155 BdrvCheckResult result = {0};
1157 ret = qcow2_check(bs, &result, BDRV_FIX_ERRORS | BDRV_FIX_LEAKS);
1158 if (ret < 0) {
1159 error_setg_errno(errp, -ret, "Could not repair dirty image");
1160 goto fail;
1164 #ifdef DEBUG_ALLOC
1166 BdrvCheckResult result = {0};
1167 qcow2_check_refcounts(bs, &result, 0);
1169 #endif
1170 return ret;
1172 fail:
1173 g_free(s->unknown_header_fields);
1174 cleanup_unknown_header_ext(bs);
1175 qcow2_free_snapshots(bs);
1176 qcow2_refcount_close(bs);
1177 qemu_vfree(s->l1_table);
1178 /* else pre-write overlap checks in cache_destroy may crash */
1179 s->l1_table = NULL;
1180 cache_clean_timer_del(bs);
1181 if (s->l2_table_cache) {
1182 qcow2_cache_destroy(bs, s->l2_table_cache);
1184 if (s->refcount_block_cache) {
1185 qcow2_cache_destroy(bs, s->refcount_block_cache);
1187 g_free(s->cluster_cache);
1188 qemu_vfree(s->cluster_data);
1189 return ret;
1192 static void qcow2_refresh_limits(BlockDriverState *bs, Error **errp)
1194 BDRVQcow2State *s = bs->opaque;
1196 bs->bl.pwrite_zeroes_alignment = s->cluster_size;
1199 static int qcow2_set_key(BlockDriverState *bs, const char *key)
1201 BDRVQcow2State *s = bs->opaque;
1202 uint8_t keybuf[16];
1203 int len, i;
1204 Error *err = NULL;
1206 memset(keybuf, 0, 16);
1207 len = strlen(key);
1208 if (len > 16)
1209 len = 16;
1210 /* XXX: we could compress the chars to 7 bits to increase
1211 entropy */
1212 for(i = 0;i < len;i++) {
1213 keybuf[i] = key[i];
1215 assert(bs->encrypted);
1217 qcrypto_cipher_free(s->cipher);
1218 s->cipher = qcrypto_cipher_new(
1219 QCRYPTO_CIPHER_ALG_AES_128,
1220 QCRYPTO_CIPHER_MODE_CBC,
1221 keybuf, G_N_ELEMENTS(keybuf),
1222 &err);
1224 if (!s->cipher) {
1225 /* XXX would be nice if errors in this method could
1226 * be properly propagate to the caller. Would need
1227 * the bdrv_set_key() API signature to be fixed. */
1228 error_free(err);
1229 return -1;
1231 return 0;
1234 static int qcow2_reopen_prepare(BDRVReopenState *state,
1235 BlockReopenQueue *queue, Error **errp)
1237 Qcow2ReopenState *r;
1238 int ret;
1240 r = g_new0(Qcow2ReopenState, 1);
1241 state->opaque = r;
1243 ret = qcow2_update_options_prepare(state->bs, r, state->options,
1244 state->flags, errp);
1245 if (ret < 0) {
1246 goto fail;
1249 /* We need to write out any unwritten data if we reopen read-only. */
1250 if ((state->flags & BDRV_O_RDWR) == 0) {
1251 ret = bdrv_flush(state->bs);
1252 if (ret < 0) {
1253 goto fail;
1256 ret = qcow2_mark_clean(state->bs);
1257 if (ret < 0) {
1258 goto fail;
1262 return 0;
1264 fail:
1265 qcow2_update_options_abort(state->bs, r);
1266 g_free(r);
1267 return ret;
1270 static void qcow2_reopen_commit(BDRVReopenState *state)
1272 qcow2_update_options_commit(state->bs, state->opaque);
1273 g_free(state->opaque);
1276 static void qcow2_reopen_abort(BDRVReopenState *state)
1278 qcow2_update_options_abort(state->bs, state->opaque);
1279 g_free(state->opaque);
1282 static void qcow2_join_options(QDict *options, QDict *old_options)
1284 bool has_new_overlap_template =
1285 qdict_haskey(options, QCOW2_OPT_OVERLAP) ||
1286 qdict_haskey(options, QCOW2_OPT_OVERLAP_TEMPLATE);
1287 bool has_new_total_cache_size =
1288 qdict_haskey(options, QCOW2_OPT_CACHE_SIZE);
1289 bool has_all_cache_options;
1291 /* New overlap template overrides all old overlap options */
1292 if (has_new_overlap_template) {
1293 qdict_del(old_options, QCOW2_OPT_OVERLAP);
1294 qdict_del(old_options, QCOW2_OPT_OVERLAP_TEMPLATE);
1295 qdict_del(old_options, QCOW2_OPT_OVERLAP_MAIN_HEADER);
1296 qdict_del(old_options, QCOW2_OPT_OVERLAP_ACTIVE_L1);
1297 qdict_del(old_options, QCOW2_OPT_OVERLAP_ACTIVE_L2);
1298 qdict_del(old_options, QCOW2_OPT_OVERLAP_REFCOUNT_TABLE);
1299 qdict_del(old_options, QCOW2_OPT_OVERLAP_REFCOUNT_BLOCK);
1300 qdict_del(old_options, QCOW2_OPT_OVERLAP_SNAPSHOT_TABLE);
1301 qdict_del(old_options, QCOW2_OPT_OVERLAP_INACTIVE_L1);
1302 qdict_del(old_options, QCOW2_OPT_OVERLAP_INACTIVE_L2);
1305 /* New total cache size overrides all old options */
1306 if (qdict_haskey(options, QCOW2_OPT_CACHE_SIZE)) {
1307 qdict_del(old_options, QCOW2_OPT_L2_CACHE_SIZE);
1308 qdict_del(old_options, QCOW2_OPT_REFCOUNT_CACHE_SIZE);
1311 qdict_join(options, old_options, false);
1314 * If after merging all cache size options are set, an old total size is
1315 * overwritten. Do keep all options, however, if all three are new. The
1316 * resulting error message is what we want to happen.
1318 has_all_cache_options =
1319 qdict_haskey(options, QCOW2_OPT_CACHE_SIZE) ||
1320 qdict_haskey(options, QCOW2_OPT_L2_CACHE_SIZE) ||
1321 qdict_haskey(options, QCOW2_OPT_REFCOUNT_CACHE_SIZE);
1323 if (has_all_cache_options && !has_new_total_cache_size) {
1324 qdict_del(options, QCOW2_OPT_CACHE_SIZE);
1328 static int64_t coroutine_fn qcow2_co_get_block_status(BlockDriverState *bs,
1329 int64_t sector_num, int nb_sectors, int *pnum, BlockDriverState **file)
1331 BDRVQcow2State *s = bs->opaque;
1332 uint64_t cluster_offset;
1333 int index_in_cluster, ret;
1334 int64_t status = 0;
1336 *pnum = nb_sectors;
1337 qemu_co_mutex_lock(&s->lock);
1338 ret = qcow2_get_cluster_offset(bs, sector_num << 9, pnum, &cluster_offset);
1339 qemu_co_mutex_unlock(&s->lock);
1340 if (ret < 0) {
1341 return ret;
1344 if (cluster_offset != 0 && ret != QCOW2_CLUSTER_COMPRESSED &&
1345 !s->cipher) {
1346 index_in_cluster = sector_num & (s->cluster_sectors - 1);
1347 cluster_offset |= (index_in_cluster << BDRV_SECTOR_BITS);
1348 *file = bs->file->bs;
1349 status |= BDRV_BLOCK_OFFSET_VALID | cluster_offset;
1351 if (ret == QCOW2_CLUSTER_ZERO) {
1352 status |= BDRV_BLOCK_ZERO;
1353 } else if (ret != QCOW2_CLUSTER_UNALLOCATED) {
1354 status |= BDRV_BLOCK_DATA;
1356 return status;
1359 /* handle reading after the end of the backing file */
1360 int qcow2_backing_read1(BlockDriverState *bs, QEMUIOVector *qiov,
1361 int64_t sector_num, int nb_sectors)
1363 int n1;
1364 if ((sector_num + nb_sectors) <= bs->total_sectors)
1365 return nb_sectors;
1366 if (sector_num >= bs->total_sectors)
1367 n1 = 0;
1368 else
1369 n1 = bs->total_sectors - sector_num;
1371 qemu_iovec_memset(qiov, 512 * n1, 0, 512 * (nb_sectors - n1));
1373 return n1;
1376 static coroutine_fn int qcow2_co_readv(BlockDriverState *bs, int64_t sector_num,
1377 int remaining_sectors, QEMUIOVector *qiov)
1379 BDRVQcow2State *s = bs->opaque;
1380 int index_in_cluster, n1;
1381 int ret;
1382 int cur_nr_sectors; /* number of sectors in current iteration */
1383 uint64_t cluster_offset = 0;
1384 uint64_t bytes_done = 0;
1385 QEMUIOVector hd_qiov;
1386 uint8_t *cluster_data = NULL;
1388 qemu_iovec_init(&hd_qiov, qiov->niov);
1390 qemu_co_mutex_lock(&s->lock);
1392 while (remaining_sectors != 0) {
1394 /* prepare next request */
1395 cur_nr_sectors = remaining_sectors;
1396 if (s->cipher) {
1397 cur_nr_sectors = MIN(cur_nr_sectors,
1398 QCOW_MAX_CRYPT_CLUSTERS * s->cluster_sectors);
1401 ret = qcow2_get_cluster_offset(bs, sector_num << 9,
1402 &cur_nr_sectors, &cluster_offset);
1403 if (ret < 0) {
1404 goto fail;
1407 index_in_cluster = sector_num & (s->cluster_sectors - 1);
1409 qemu_iovec_reset(&hd_qiov);
1410 qemu_iovec_concat(&hd_qiov, qiov, bytes_done,
1411 cur_nr_sectors * 512);
1413 switch (ret) {
1414 case QCOW2_CLUSTER_UNALLOCATED:
1416 if (bs->backing) {
1417 /* read from the base image */
1418 n1 = qcow2_backing_read1(bs->backing->bs, &hd_qiov,
1419 sector_num, cur_nr_sectors);
1420 if (n1 > 0) {
1421 QEMUIOVector local_qiov;
1423 qemu_iovec_init(&local_qiov, hd_qiov.niov);
1424 qemu_iovec_concat(&local_qiov, &hd_qiov, 0,
1425 n1 * BDRV_SECTOR_SIZE);
1427 BLKDBG_EVENT(bs->file, BLKDBG_READ_BACKING_AIO);
1428 qemu_co_mutex_unlock(&s->lock);
1429 ret = bdrv_co_readv(bs->backing->bs, sector_num,
1430 n1, &local_qiov);
1431 qemu_co_mutex_lock(&s->lock);
1433 qemu_iovec_destroy(&local_qiov);
1435 if (ret < 0) {
1436 goto fail;
1439 } else {
1440 /* Note: in this case, no need to wait */
1441 qemu_iovec_memset(&hd_qiov, 0, 0, 512 * cur_nr_sectors);
1443 break;
1445 case QCOW2_CLUSTER_ZERO:
1446 qemu_iovec_memset(&hd_qiov, 0, 0, 512 * cur_nr_sectors);
1447 break;
1449 case QCOW2_CLUSTER_COMPRESSED:
1450 /* add AIO support for compressed blocks ? */
1451 ret = qcow2_decompress_cluster(bs, cluster_offset);
1452 if (ret < 0) {
1453 goto fail;
1456 qemu_iovec_from_buf(&hd_qiov, 0,
1457 s->cluster_cache + index_in_cluster * 512,
1458 512 * cur_nr_sectors);
1459 break;
1461 case QCOW2_CLUSTER_NORMAL:
1462 if ((cluster_offset & 511) != 0) {
1463 ret = -EIO;
1464 goto fail;
1467 if (bs->encrypted) {
1468 assert(s->cipher);
1471 * For encrypted images, read everything into a temporary
1472 * contiguous buffer on which the AES functions can work.
1474 if (!cluster_data) {
1475 cluster_data =
1476 qemu_try_blockalign(bs->file->bs,
1477 QCOW_MAX_CRYPT_CLUSTERS
1478 * s->cluster_size);
1479 if (cluster_data == NULL) {
1480 ret = -ENOMEM;
1481 goto fail;
1485 assert(cur_nr_sectors <=
1486 QCOW_MAX_CRYPT_CLUSTERS * s->cluster_sectors);
1487 qemu_iovec_reset(&hd_qiov);
1488 qemu_iovec_add(&hd_qiov, cluster_data,
1489 512 * cur_nr_sectors);
1492 BLKDBG_EVENT(bs->file, BLKDBG_READ_AIO);
1493 qemu_co_mutex_unlock(&s->lock);
1494 ret = bdrv_co_readv(bs->file->bs,
1495 (cluster_offset >> 9) + index_in_cluster,
1496 cur_nr_sectors, &hd_qiov);
1497 qemu_co_mutex_lock(&s->lock);
1498 if (ret < 0) {
1499 goto fail;
1501 if (bs->encrypted) {
1502 assert(s->cipher);
1503 Error *err = NULL;
1504 if (qcow2_encrypt_sectors(s, sector_num, cluster_data,
1505 cluster_data, cur_nr_sectors, false,
1506 &err) < 0) {
1507 error_free(err);
1508 ret = -EIO;
1509 goto fail;
1511 qemu_iovec_from_buf(qiov, bytes_done,
1512 cluster_data, 512 * cur_nr_sectors);
1514 break;
1516 default:
1517 g_assert_not_reached();
1518 ret = -EIO;
1519 goto fail;
1522 remaining_sectors -= cur_nr_sectors;
1523 sector_num += cur_nr_sectors;
1524 bytes_done += cur_nr_sectors * 512;
1526 ret = 0;
1528 fail:
1529 qemu_co_mutex_unlock(&s->lock);
1531 qemu_iovec_destroy(&hd_qiov);
1532 qemu_vfree(cluster_data);
1534 return ret;
1537 static coroutine_fn int qcow2_co_writev(BlockDriverState *bs,
1538 int64_t sector_num,
1539 int remaining_sectors,
1540 QEMUIOVector *qiov)
1542 BDRVQcow2State *s = bs->opaque;
1543 int index_in_cluster;
1544 int ret;
1545 int cur_nr_sectors; /* number of sectors in current iteration */
1546 uint64_t cluster_offset;
1547 QEMUIOVector hd_qiov;
1548 uint64_t bytes_done = 0;
1549 uint8_t *cluster_data = NULL;
1550 QCowL2Meta *l2meta = NULL;
1552 trace_qcow2_writev_start_req(qemu_coroutine_self(), sector_num,
1553 remaining_sectors);
1555 qemu_iovec_init(&hd_qiov, qiov->niov);
1557 s->cluster_cache_offset = -1; /* disable compressed cache */
1559 qemu_co_mutex_lock(&s->lock);
1561 while (remaining_sectors != 0) {
1563 l2meta = NULL;
1565 trace_qcow2_writev_start_part(qemu_coroutine_self());
1566 index_in_cluster = sector_num & (s->cluster_sectors - 1);
1567 cur_nr_sectors = remaining_sectors;
1568 if (bs->encrypted &&
1569 cur_nr_sectors >
1570 QCOW_MAX_CRYPT_CLUSTERS * s->cluster_sectors - index_in_cluster) {
1571 cur_nr_sectors =
1572 QCOW_MAX_CRYPT_CLUSTERS * s->cluster_sectors - index_in_cluster;
1575 ret = qcow2_alloc_cluster_offset(bs, sector_num << 9,
1576 &cur_nr_sectors, &cluster_offset, &l2meta);
1577 if (ret < 0) {
1578 goto fail;
1581 assert((cluster_offset & 511) == 0);
1583 qemu_iovec_reset(&hd_qiov);
1584 qemu_iovec_concat(&hd_qiov, qiov, bytes_done,
1585 cur_nr_sectors * 512);
1587 if (bs->encrypted) {
1588 Error *err = NULL;
1589 assert(s->cipher);
1590 if (!cluster_data) {
1591 cluster_data = qemu_try_blockalign(bs->file->bs,
1592 QCOW_MAX_CRYPT_CLUSTERS
1593 * s->cluster_size);
1594 if (cluster_data == NULL) {
1595 ret = -ENOMEM;
1596 goto fail;
1600 assert(hd_qiov.size <=
1601 QCOW_MAX_CRYPT_CLUSTERS * s->cluster_size);
1602 qemu_iovec_to_buf(&hd_qiov, 0, cluster_data, hd_qiov.size);
1604 if (qcow2_encrypt_sectors(s, sector_num, cluster_data,
1605 cluster_data, cur_nr_sectors,
1606 true, &err) < 0) {
1607 error_free(err);
1608 ret = -EIO;
1609 goto fail;
1612 qemu_iovec_reset(&hd_qiov);
1613 qemu_iovec_add(&hd_qiov, cluster_data,
1614 cur_nr_sectors * 512);
1617 ret = qcow2_pre_write_overlap_check(bs, 0,
1618 cluster_offset + index_in_cluster * BDRV_SECTOR_SIZE,
1619 cur_nr_sectors * BDRV_SECTOR_SIZE);
1620 if (ret < 0) {
1621 goto fail;
1624 qemu_co_mutex_unlock(&s->lock);
1625 BLKDBG_EVENT(bs->file, BLKDBG_WRITE_AIO);
1626 trace_qcow2_writev_data(qemu_coroutine_self(),
1627 (cluster_offset >> 9) + index_in_cluster);
1628 ret = bdrv_co_writev(bs->file->bs,
1629 (cluster_offset >> 9) + index_in_cluster,
1630 cur_nr_sectors, &hd_qiov);
1631 qemu_co_mutex_lock(&s->lock);
1632 if (ret < 0) {
1633 goto fail;
1636 while (l2meta != NULL) {
1637 QCowL2Meta *next;
1639 ret = qcow2_alloc_cluster_link_l2(bs, l2meta);
1640 if (ret < 0) {
1641 goto fail;
1644 /* Take the request off the list of running requests */
1645 if (l2meta->nb_clusters != 0) {
1646 QLIST_REMOVE(l2meta, next_in_flight);
1649 qemu_co_queue_restart_all(&l2meta->dependent_requests);
1651 next = l2meta->next;
1652 g_free(l2meta);
1653 l2meta = next;
1656 remaining_sectors -= cur_nr_sectors;
1657 sector_num += cur_nr_sectors;
1658 bytes_done += cur_nr_sectors * 512;
1659 trace_qcow2_writev_done_part(qemu_coroutine_self(), cur_nr_sectors);
1661 ret = 0;
1663 fail:
1664 qemu_co_mutex_unlock(&s->lock);
1666 while (l2meta != NULL) {
1667 QCowL2Meta *next;
1669 if (l2meta->nb_clusters != 0) {
1670 QLIST_REMOVE(l2meta, next_in_flight);
1672 qemu_co_queue_restart_all(&l2meta->dependent_requests);
1674 next = l2meta->next;
1675 g_free(l2meta);
1676 l2meta = next;
1679 qemu_iovec_destroy(&hd_qiov);
1680 qemu_vfree(cluster_data);
1681 trace_qcow2_writev_done_req(qemu_coroutine_self(), ret);
1683 return ret;
1686 static int qcow2_inactivate(BlockDriverState *bs)
1688 BDRVQcow2State *s = bs->opaque;
1689 int ret, result = 0;
1691 ret = qcow2_cache_flush(bs, s->l2_table_cache);
1692 if (ret) {
1693 result = ret;
1694 error_report("Failed to flush the L2 table cache: %s",
1695 strerror(-ret));
1698 ret = qcow2_cache_flush(bs, s->refcount_block_cache);
1699 if (ret) {
1700 result = ret;
1701 error_report("Failed to flush the refcount block cache: %s",
1702 strerror(-ret));
1705 if (result == 0) {
1706 qcow2_mark_clean(bs);
1709 return result;
1712 static void qcow2_close(BlockDriverState *bs)
1714 BDRVQcow2State *s = bs->opaque;
1715 qemu_vfree(s->l1_table);
1716 /* else pre-write overlap checks in cache_destroy may crash */
1717 s->l1_table = NULL;
1719 if (!(s->flags & BDRV_O_INACTIVE)) {
1720 qcow2_inactivate(bs);
1723 cache_clean_timer_del(bs);
1724 qcow2_cache_destroy(bs, s->l2_table_cache);
1725 qcow2_cache_destroy(bs, s->refcount_block_cache);
1727 qcrypto_cipher_free(s->cipher);
1728 s->cipher = NULL;
1730 g_free(s->unknown_header_fields);
1731 cleanup_unknown_header_ext(bs);
1733 g_free(s->image_backing_file);
1734 g_free(s->image_backing_format);
1736 g_free(s->cluster_cache);
1737 qemu_vfree(s->cluster_data);
1738 qcow2_refcount_close(bs);
1739 qcow2_free_snapshots(bs);
1742 static void qcow2_invalidate_cache(BlockDriverState *bs, Error **errp)
1744 BDRVQcow2State *s = bs->opaque;
1745 int flags = s->flags;
1746 QCryptoCipher *cipher = NULL;
1747 QDict *options;
1748 Error *local_err = NULL;
1749 int ret;
1752 * Backing files are read-only which makes all of their metadata immutable,
1753 * that means we don't have to worry about reopening them here.
1756 cipher = s->cipher;
1757 s->cipher = NULL;
1759 qcow2_close(bs);
1761 memset(s, 0, sizeof(BDRVQcow2State));
1762 options = qdict_clone_shallow(bs->options);
1764 flags &= ~BDRV_O_INACTIVE;
1765 ret = qcow2_open(bs, options, flags, &local_err);
1766 QDECREF(options);
1767 if (local_err) {
1768 error_propagate(errp, local_err);
1769 error_prepend(errp, "Could not reopen qcow2 layer: ");
1770 bs->drv = NULL;
1771 return;
1772 } else if (ret < 0) {
1773 error_setg_errno(errp, -ret, "Could not reopen qcow2 layer");
1774 bs->drv = NULL;
1775 return;
1778 s->cipher = cipher;
1781 static size_t header_ext_add(char *buf, uint32_t magic, const void *s,
1782 size_t len, size_t buflen)
1784 QCowExtension *ext_backing_fmt = (QCowExtension*) buf;
1785 size_t ext_len = sizeof(QCowExtension) + ((len + 7) & ~7);
1787 if (buflen < ext_len) {
1788 return -ENOSPC;
1791 *ext_backing_fmt = (QCowExtension) {
1792 .magic = cpu_to_be32(magic),
1793 .len = cpu_to_be32(len),
1795 memcpy(buf + sizeof(QCowExtension), s, len);
1797 return ext_len;
1801 * Updates the qcow2 header, including the variable length parts of it, i.e.
1802 * the backing file name and all extensions. qcow2 was not designed to allow
1803 * such changes, so if we run out of space (we can only use the first cluster)
1804 * this function may fail.
1806 * Returns 0 on success, -errno in error cases.
1808 int qcow2_update_header(BlockDriverState *bs)
1810 BDRVQcow2State *s = bs->opaque;
1811 QCowHeader *header;
1812 char *buf;
1813 size_t buflen = s->cluster_size;
1814 int ret;
1815 uint64_t total_size;
1816 uint32_t refcount_table_clusters;
1817 size_t header_length;
1818 Qcow2UnknownHeaderExtension *uext;
1820 buf = qemu_blockalign(bs, buflen);
1822 /* Header structure */
1823 header = (QCowHeader*) buf;
1825 if (buflen < sizeof(*header)) {
1826 ret = -ENOSPC;
1827 goto fail;
1830 header_length = sizeof(*header) + s->unknown_header_fields_size;
1831 total_size = bs->total_sectors * BDRV_SECTOR_SIZE;
1832 refcount_table_clusters = s->refcount_table_size >> (s->cluster_bits - 3);
1834 *header = (QCowHeader) {
1835 /* Version 2 fields */
1836 .magic = cpu_to_be32(QCOW_MAGIC),
1837 .version = cpu_to_be32(s->qcow_version),
1838 .backing_file_offset = 0,
1839 .backing_file_size = 0,
1840 .cluster_bits = cpu_to_be32(s->cluster_bits),
1841 .size = cpu_to_be64(total_size),
1842 .crypt_method = cpu_to_be32(s->crypt_method_header),
1843 .l1_size = cpu_to_be32(s->l1_size),
1844 .l1_table_offset = cpu_to_be64(s->l1_table_offset),
1845 .refcount_table_offset = cpu_to_be64(s->refcount_table_offset),
1846 .refcount_table_clusters = cpu_to_be32(refcount_table_clusters),
1847 .nb_snapshots = cpu_to_be32(s->nb_snapshots),
1848 .snapshots_offset = cpu_to_be64(s->snapshots_offset),
1850 /* Version 3 fields */
1851 .incompatible_features = cpu_to_be64(s->incompatible_features),
1852 .compatible_features = cpu_to_be64(s->compatible_features),
1853 .autoclear_features = cpu_to_be64(s->autoclear_features),
1854 .refcount_order = cpu_to_be32(s->refcount_order),
1855 .header_length = cpu_to_be32(header_length),
1858 /* For older versions, write a shorter header */
1859 switch (s->qcow_version) {
1860 case 2:
1861 ret = offsetof(QCowHeader, incompatible_features);
1862 break;
1863 case 3:
1864 ret = sizeof(*header);
1865 break;
1866 default:
1867 ret = -EINVAL;
1868 goto fail;
1871 buf += ret;
1872 buflen -= ret;
1873 memset(buf, 0, buflen);
1875 /* Preserve any unknown field in the header */
1876 if (s->unknown_header_fields_size) {
1877 if (buflen < s->unknown_header_fields_size) {
1878 ret = -ENOSPC;
1879 goto fail;
1882 memcpy(buf, s->unknown_header_fields, s->unknown_header_fields_size);
1883 buf += s->unknown_header_fields_size;
1884 buflen -= s->unknown_header_fields_size;
1887 /* Backing file format header extension */
1888 if (s->image_backing_format) {
1889 ret = header_ext_add(buf, QCOW2_EXT_MAGIC_BACKING_FORMAT,
1890 s->image_backing_format,
1891 strlen(s->image_backing_format),
1892 buflen);
1893 if (ret < 0) {
1894 goto fail;
1897 buf += ret;
1898 buflen -= ret;
1901 /* Feature table */
1902 if (s->qcow_version >= 3) {
1903 Qcow2Feature features[] = {
1905 .type = QCOW2_FEAT_TYPE_INCOMPATIBLE,
1906 .bit = QCOW2_INCOMPAT_DIRTY_BITNR,
1907 .name = "dirty bit",
1910 .type = QCOW2_FEAT_TYPE_INCOMPATIBLE,
1911 .bit = QCOW2_INCOMPAT_CORRUPT_BITNR,
1912 .name = "corrupt bit",
1915 .type = QCOW2_FEAT_TYPE_COMPATIBLE,
1916 .bit = QCOW2_COMPAT_LAZY_REFCOUNTS_BITNR,
1917 .name = "lazy refcounts",
1921 ret = header_ext_add(buf, QCOW2_EXT_MAGIC_FEATURE_TABLE,
1922 features, sizeof(features), buflen);
1923 if (ret < 0) {
1924 goto fail;
1926 buf += ret;
1927 buflen -= ret;
1930 /* Keep unknown header extensions */
1931 QLIST_FOREACH(uext, &s->unknown_header_ext, next) {
1932 ret = header_ext_add(buf, uext->magic, uext->data, uext->len, buflen);
1933 if (ret < 0) {
1934 goto fail;
1937 buf += ret;
1938 buflen -= ret;
1941 /* End of header extensions */
1942 ret = header_ext_add(buf, QCOW2_EXT_MAGIC_END, NULL, 0, buflen);
1943 if (ret < 0) {
1944 goto fail;
1947 buf += ret;
1948 buflen -= ret;
1950 /* Backing file name */
1951 if (s->image_backing_file) {
1952 size_t backing_file_len = strlen(s->image_backing_file);
1954 if (buflen < backing_file_len) {
1955 ret = -ENOSPC;
1956 goto fail;
1959 /* Using strncpy is ok here, since buf is not NUL-terminated. */
1960 strncpy(buf, s->image_backing_file, buflen);
1962 header->backing_file_offset = cpu_to_be64(buf - ((char*) header));
1963 header->backing_file_size = cpu_to_be32(backing_file_len);
1966 /* Write the new header */
1967 ret = bdrv_pwrite(bs->file->bs, 0, header, s->cluster_size);
1968 if (ret < 0) {
1969 goto fail;
1972 ret = 0;
1973 fail:
1974 qemu_vfree(header);
1975 return ret;
1978 static int qcow2_change_backing_file(BlockDriverState *bs,
1979 const char *backing_file, const char *backing_fmt)
1981 BDRVQcow2State *s = bs->opaque;
1983 if (backing_file && strlen(backing_file) > 1023) {
1984 return -EINVAL;
1987 pstrcpy(bs->backing_file, sizeof(bs->backing_file), backing_file ?: "");
1988 pstrcpy(bs->backing_format, sizeof(bs->backing_format), backing_fmt ?: "");
1990 g_free(s->image_backing_file);
1991 g_free(s->image_backing_format);
1993 s->image_backing_file = backing_file ? g_strdup(bs->backing_file) : NULL;
1994 s->image_backing_format = backing_fmt ? g_strdup(bs->backing_format) : NULL;
1996 return qcow2_update_header(bs);
1999 static int preallocate(BlockDriverState *bs)
2001 uint64_t nb_sectors;
2002 uint64_t offset;
2003 uint64_t host_offset = 0;
2004 int num;
2005 int ret;
2006 QCowL2Meta *meta;
2008 nb_sectors = bdrv_nb_sectors(bs);
2009 offset = 0;
2011 while (nb_sectors) {
2012 num = MIN(nb_sectors, INT_MAX >> BDRV_SECTOR_BITS);
2013 ret = qcow2_alloc_cluster_offset(bs, offset, &num,
2014 &host_offset, &meta);
2015 if (ret < 0) {
2016 return ret;
2019 while (meta) {
2020 QCowL2Meta *next = meta->next;
2022 ret = qcow2_alloc_cluster_link_l2(bs, meta);
2023 if (ret < 0) {
2024 qcow2_free_any_clusters(bs, meta->alloc_offset,
2025 meta->nb_clusters, QCOW2_DISCARD_NEVER);
2026 return ret;
2029 /* There are no dependent requests, but we need to remove our
2030 * request from the list of in-flight requests */
2031 QLIST_REMOVE(meta, next_in_flight);
2033 g_free(meta);
2034 meta = next;
2037 /* TODO Preallocate data if requested */
2039 nb_sectors -= num;
2040 offset += num << BDRV_SECTOR_BITS;
2044 * It is expected that the image file is large enough to actually contain
2045 * all of the allocated clusters (otherwise we get failing reads after
2046 * EOF). Extend the image to the last allocated sector.
2048 if (host_offset != 0) {
2049 uint8_t buf[BDRV_SECTOR_SIZE];
2050 memset(buf, 0, BDRV_SECTOR_SIZE);
2051 ret = bdrv_write(bs->file->bs,
2052 (host_offset >> BDRV_SECTOR_BITS) + num - 1,
2053 buf, 1);
2054 if (ret < 0) {
2055 return ret;
2059 return 0;
2062 static int qcow2_create2(const char *filename, int64_t total_size,
2063 const char *backing_file, const char *backing_format,
2064 int flags, size_t cluster_size, PreallocMode prealloc,
2065 QemuOpts *opts, int version, int refcount_order,
2066 Error **errp)
2068 int cluster_bits;
2069 QDict *options;
2071 /* Calculate cluster_bits */
2072 cluster_bits = ctz32(cluster_size);
2073 if (cluster_bits < MIN_CLUSTER_BITS || cluster_bits > MAX_CLUSTER_BITS ||
2074 (1 << cluster_bits) != cluster_size)
2076 error_setg(errp, "Cluster size must be a power of two between %d and "
2077 "%dk", 1 << MIN_CLUSTER_BITS, 1 << (MAX_CLUSTER_BITS - 10));
2078 return -EINVAL;
2082 * Open the image file and write a minimal qcow2 header.
2084 * We keep things simple and start with a zero-sized image. We also
2085 * do without refcount blocks or a L1 table for now. We'll fix the
2086 * inconsistency later.
2088 * We do need a refcount table because growing the refcount table means
2089 * allocating two new refcount blocks - the seconds of which would be at
2090 * 2 GB for 64k clusters, and we don't want to have a 2 GB initial file
2091 * size for any qcow2 image.
2093 BlockBackend *blk;
2094 QCowHeader *header;
2095 uint64_t* refcount_table;
2096 Error *local_err = NULL;
2097 int ret;
2099 if (prealloc == PREALLOC_MODE_FULL || prealloc == PREALLOC_MODE_FALLOC) {
2100 /* Note: The following calculation does not need to be exact; if it is a
2101 * bit off, either some bytes will be "leaked" (which is fine) or we
2102 * will need to increase the file size by some bytes (which is fine,
2103 * too, as long as the bulk is allocated here). Therefore, using
2104 * floating point arithmetic is fine. */
2105 int64_t meta_size = 0;
2106 uint64_t nreftablee, nrefblocke, nl1e, nl2e;
2107 int64_t aligned_total_size = align_offset(total_size, cluster_size);
2108 int refblock_bits, refblock_size;
2109 /* refcount entry size in bytes */
2110 double rces = (1 << refcount_order) / 8.;
2112 /* see qcow2_open() */
2113 refblock_bits = cluster_bits - (refcount_order - 3);
2114 refblock_size = 1 << refblock_bits;
2116 /* header: 1 cluster */
2117 meta_size += cluster_size;
2119 /* total size of L2 tables */
2120 nl2e = aligned_total_size / cluster_size;
2121 nl2e = align_offset(nl2e, cluster_size / sizeof(uint64_t));
2122 meta_size += nl2e * sizeof(uint64_t);
2124 /* total size of L1 tables */
2125 nl1e = nl2e * sizeof(uint64_t) / cluster_size;
2126 nl1e = align_offset(nl1e, cluster_size / sizeof(uint64_t));
2127 meta_size += nl1e * sizeof(uint64_t);
2129 /* total size of refcount blocks
2131 * note: every host cluster is reference-counted, including metadata
2132 * (even refcount blocks are recursively included).
2133 * Let:
2134 * a = total_size (this is the guest disk size)
2135 * m = meta size not including refcount blocks and refcount tables
2136 * c = cluster size
2137 * y1 = number of refcount blocks entries
2138 * y2 = meta size including everything
2139 * rces = refcount entry size in bytes
2140 * then,
2141 * y1 = (y2 + a)/c
2142 * y2 = y1 * rces + y1 * rces * sizeof(u64) / c + m
2143 * we can get y1:
2144 * y1 = (a + m) / (c - rces - rces * sizeof(u64) / c)
2146 nrefblocke = (aligned_total_size + meta_size + cluster_size)
2147 / (cluster_size - rces - rces * sizeof(uint64_t)
2148 / cluster_size);
2149 meta_size += DIV_ROUND_UP(nrefblocke, refblock_size) * cluster_size;
2151 /* total size of refcount tables */
2152 nreftablee = nrefblocke / refblock_size;
2153 nreftablee = align_offset(nreftablee, cluster_size / sizeof(uint64_t));
2154 meta_size += nreftablee * sizeof(uint64_t);
2156 qemu_opt_set_number(opts, BLOCK_OPT_SIZE,
2157 aligned_total_size + meta_size, &error_abort);
2158 qemu_opt_set(opts, BLOCK_OPT_PREALLOC, PreallocMode_lookup[prealloc],
2159 &error_abort);
2162 ret = bdrv_create_file(filename, opts, &local_err);
2163 if (ret < 0) {
2164 error_propagate(errp, local_err);
2165 return ret;
2168 blk = blk_new_open(filename, NULL, NULL,
2169 BDRV_O_RDWR | BDRV_O_PROTOCOL, &local_err);
2170 if (blk == NULL) {
2171 error_propagate(errp, local_err);
2172 return -EIO;
2175 blk_set_allow_write_beyond_eof(blk, true);
2177 /* Write the header */
2178 QEMU_BUILD_BUG_ON((1 << MIN_CLUSTER_BITS) < sizeof(*header));
2179 header = g_malloc0(cluster_size);
2180 *header = (QCowHeader) {
2181 .magic = cpu_to_be32(QCOW_MAGIC),
2182 .version = cpu_to_be32(version),
2183 .cluster_bits = cpu_to_be32(cluster_bits),
2184 .size = cpu_to_be64(0),
2185 .l1_table_offset = cpu_to_be64(0),
2186 .l1_size = cpu_to_be32(0),
2187 .refcount_table_offset = cpu_to_be64(cluster_size),
2188 .refcount_table_clusters = cpu_to_be32(1),
2189 .refcount_order = cpu_to_be32(refcount_order),
2190 .header_length = cpu_to_be32(sizeof(*header)),
2193 if (flags & BLOCK_FLAG_ENCRYPT) {
2194 header->crypt_method = cpu_to_be32(QCOW_CRYPT_AES);
2195 } else {
2196 header->crypt_method = cpu_to_be32(QCOW_CRYPT_NONE);
2199 if (flags & BLOCK_FLAG_LAZY_REFCOUNTS) {
2200 header->compatible_features |=
2201 cpu_to_be64(QCOW2_COMPAT_LAZY_REFCOUNTS);
2204 ret = blk_pwrite(blk, 0, header, cluster_size, 0);
2205 g_free(header);
2206 if (ret < 0) {
2207 error_setg_errno(errp, -ret, "Could not write qcow2 header");
2208 goto out;
2211 /* Write a refcount table with one refcount block */
2212 refcount_table = g_malloc0(2 * cluster_size);
2213 refcount_table[0] = cpu_to_be64(2 * cluster_size);
2214 ret = blk_pwrite(blk, cluster_size, refcount_table, 2 * cluster_size, 0);
2215 g_free(refcount_table);
2217 if (ret < 0) {
2218 error_setg_errno(errp, -ret, "Could not write refcount table");
2219 goto out;
2222 blk_unref(blk);
2223 blk = NULL;
2226 * And now open the image and make it consistent first (i.e. increase the
2227 * refcount of the cluster that is occupied by the header and the refcount
2228 * table)
2230 options = qdict_new();
2231 qdict_put(options, "driver", qstring_from_str("qcow2"));
2232 blk = blk_new_open(filename, NULL, options,
2233 BDRV_O_RDWR | BDRV_O_NO_FLUSH, &local_err);
2234 if (blk == NULL) {
2235 error_propagate(errp, local_err);
2236 ret = -EIO;
2237 goto out;
2240 ret = qcow2_alloc_clusters(blk_bs(blk), 3 * cluster_size);
2241 if (ret < 0) {
2242 error_setg_errno(errp, -ret, "Could not allocate clusters for qcow2 "
2243 "header and refcount table");
2244 goto out;
2246 } else if (ret != 0) {
2247 error_report("Huh, first cluster in empty image is already in use?");
2248 abort();
2251 /* Create a full header (including things like feature table) */
2252 ret = qcow2_update_header(blk_bs(blk));
2253 if (ret < 0) {
2254 error_setg_errno(errp, -ret, "Could not update qcow2 header");
2255 goto out;
2258 /* Okay, now that we have a valid image, let's give it the right size */
2259 ret = blk_truncate(blk, total_size);
2260 if (ret < 0) {
2261 error_setg_errno(errp, -ret, "Could not resize image");
2262 goto out;
2265 /* Want a backing file? There you go.*/
2266 if (backing_file) {
2267 ret = bdrv_change_backing_file(blk_bs(blk), backing_file, backing_format);
2268 if (ret < 0) {
2269 error_setg_errno(errp, -ret, "Could not assign backing file '%s' "
2270 "with format '%s'", backing_file, backing_format);
2271 goto out;
2275 /* And if we're supposed to preallocate metadata, do that now */
2276 if (prealloc != PREALLOC_MODE_OFF) {
2277 BDRVQcow2State *s = blk_bs(blk)->opaque;
2278 qemu_co_mutex_lock(&s->lock);
2279 ret = preallocate(blk_bs(blk));
2280 qemu_co_mutex_unlock(&s->lock);
2281 if (ret < 0) {
2282 error_setg_errno(errp, -ret, "Could not preallocate metadata");
2283 goto out;
2287 blk_unref(blk);
2288 blk = NULL;
2290 /* Reopen the image without BDRV_O_NO_FLUSH to flush it before returning */
2291 options = qdict_new();
2292 qdict_put(options, "driver", qstring_from_str("qcow2"));
2293 blk = blk_new_open(filename, NULL, options,
2294 BDRV_O_RDWR | BDRV_O_NO_BACKING, &local_err);
2295 if (blk == NULL) {
2296 error_propagate(errp, local_err);
2297 ret = -EIO;
2298 goto out;
2301 ret = 0;
2302 out:
2303 if (blk) {
2304 blk_unref(blk);
2306 return ret;
2309 static int qcow2_create(const char *filename, QemuOpts *opts, Error **errp)
2311 char *backing_file = NULL;
2312 char *backing_fmt = NULL;
2313 char *buf = NULL;
2314 uint64_t size = 0;
2315 int flags = 0;
2316 size_t cluster_size = DEFAULT_CLUSTER_SIZE;
2317 PreallocMode prealloc;
2318 int version = 3;
2319 uint64_t refcount_bits = 16;
2320 int refcount_order;
2321 Error *local_err = NULL;
2322 int ret;
2324 /* Read out options */
2325 size = ROUND_UP(qemu_opt_get_size_del(opts, BLOCK_OPT_SIZE, 0),
2326 BDRV_SECTOR_SIZE);
2327 backing_file = qemu_opt_get_del(opts, BLOCK_OPT_BACKING_FILE);
2328 backing_fmt = qemu_opt_get_del(opts, BLOCK_OPT_BACKING_FMT);
2329 if (qemu_opt_get_bool_del(opts, BLOCK_OPT_ENCRYPT, false)) {
2330 flags |= BLOCK_FLAG_ENCRYPT;
2332 cluster_size = qemu_opt_get_size_del(opts, BLOCK_OPT_CLUSTER_SIZE,
2333 DEFAULT_CLUSTER_SIZE);
2334 buf = qemu_opt_get_del(opts, BLOCK_OPT_PREALLOC);
2335 prealloc = qapi_enum_parse(PreallocMode_lookup, buf,
2336 PREALLOC_MODE__MAX, PREALLOC_MODE_OFF,
2337 &local_err);
2338 if (local_err) {
2339 error_propagate(errp, local_err);
2340 ret = -EINVAL;
2341 goto finish;
2343 g_free(buf);
2344 buf = qemu_opt_get_del(opts, BLOCK_OPT_COMPAT_LEVEL);
2345 if (!buf) {
2346 /* keep the default */
2347 } else if (!strcmp(buf, "0.10")) {
2348 version = 2;
2349 } else if (!strcmp(buf, "1.1")) {
2350 version = 3;
2351 } else {
2352 error_setg(errp, "Invalid compatibility level: '%s'", buf);
2353 ret = -EINVAL;
2354 goto finish;
2357 if (qemu_opt_get_bool_del(opts, BLOCK_OPT_LAZY_REFCOUNTS, false)) {
2358 flags |= BLOCK_FLAG_LAZY_REFCOUNTS;
2361 if (backing_file && prealloc != PREALLOC_MODE_OFF) {
2362 error_setg(errp, "Backing file and preallocation cannot be used at "
2363 "the same time");
2364 ret = -EINVAL;
2365 goto finish;
2368 if (version < 3 && (flags & BLOCK_FLAG_LAZY_REFCOUNTS)) {
2369 error_setg(errp, "Lazy refcounts only supported with compatibility "
2370 "level 1.1 and above (use compat=1.1 or greater)");
2371 ret = -EINVAL;
2372 goto finish;
2375 refcount_bits = qemu_opt_get_number_del(opts, BLOCK_OPT_REFCOUNT_BITS,
2376 refcount_bits);
2377 if (refcount_bits > 64 || !is_power_of_2(refcount_bits)) {
2378 error_setg(errp, "Refcount width must be a power of two and may not "
2379 "exceed 64 bits");
2380 ret = -EINVAL;
2381 goto finish;
2384 if (version < 3 && refcount_bits != 16) {
2385 error_setg(errp, "Different refcount widths than 16 bits require "
2386 "compatibility level 1.1 or above (use compat=1.1 or "
2387 "greater)");
2388 ret = -EINVAL;
2389 goto finish;
2392 refcount_order = ctz32(refcount_bits);
2394 ret = qcow2_create2(filename, size, backing_file, backing_fmt, flags,
2395 cluster_size, prealloc, opts, version, refcount_order,
2396 &local_err);
2397 if (local_err) {
2398 error_propagate(errp, local_err);
2401 finish:
2402 g_free(backing_file);
2403 g_free(backing_fmt);
2404 g_free(buf);
2405 return ret;
2409 static bool is_zero_sectors(BlockDriverState *bs, int64_t start,
2410 uint32_t count)
2412 int nr;
2413 BlockDriverState *file;
2414 int64_t res;
2416 if (!count) {
2417 return true;
2419 res = bdrv_get_block_status_above(bs, NULL, start, count,
2420 &nr, &file);
2421 return res >= 0 && (res & BDRV_BLOCK_ZERO) && nr == count;
2424 static coroutine_fn int qcow2_co_pwrite_zeroes(BlockDriverState *bs,
2425 int64_t offset, int count, BdrvRequestFlags flags)
2427 int ret;
2428 BDRVQcow2State *s = bs->opaque;
2430 uint32_t head = offset % s->cluster_size;
2431 uint32_t tail = (offset + count) % s->cluster_size;
2433 trace_qcow2_pwrite_zeroes_start_req(qemu_coroutine_self(), offset, count);
2435 if (head || tail) {
2436 int64_t cl_start = (offset - head) >> BDRV_SECTOR_BITS;
2437 uint64_t off;
2438 int nr;
2440 assert(head + count <= s->cluster_size);
2442 /* check whether remainder of cluster already reads as zero */
2443 if (!(is_zero_sectors(bs, cl_start,
2444 DIV_ROUND_UP(head, BDRV_SECTOR_SIZE)) &&
2445 is_zero_sectors(bs, (offset + count) >> BDRV_SECTOR_BITS,
2446 DIV_ROUND_UP(-tail & (s->cluster_size - 1),
2447 BDRV_SECTOR_SIZE)))) {
2448 return -ENOTSUP;
2451 qemu_co_mutex_lock(&s->lock);
2452 /* We can have new write after previous check */
2453 offset = cl_start << BDRV_SECTOR_BITS;
2454 count = s->cluster_size;
2455 nr = s->cluster_sectors;
2456 ret = qcow2_get_cluster_offset(bs, offset, &nr, &off);
2457 if (ret != QCOW2_CLUSTER_UNALLOCATED && ret != QCOW2_CLUSTER_ZERO) {
2458 qemu_co_mutex_unlock(&s->lock);
2459 return -ENOTSUP;
2461 } else {
2462 qemu_co_mutex_lock(&s->lock);
2465 trace_qcow2_pwrite_zeroes(qemu_coroutine_self(), offset, count);
2467 /* Whatever is left can use real zero clusters */
2468 ret = qcow2_zero_clusters(bs, offset, count >> BDRV_SECTOR_BITS);
2469 qemu_co_mutex_unlock(&s->lock);
2471 return ret;
2474 static coroutine_fn int qcow2_co_discard(BlockDriverState *bs,
2475 int64_t sector_num, int nb_sectors)
2477 int ret;
2478 BDRVQcow2State *s = bs->opaque;
2480 qemu_co_mutex_lock(&s->lock);
2481 ret = qcow2_discard_clusters(bs, sector_num << BDRV_SECTOR_BITS,
2482 nb_sectors, QCOW2_DISCARD_REQUEST, false);
2483 qemu_co_mutex_unlock(&s->lock);
2484 return ret;
2487 static int qcow2_truncate(BlockDriverState *bs, int64_t offset)
2489 BDRVQcow2State *s = bs->opaque;
2490 int64_t new_l1_size;
2491 int ret;
2493 if (offset & 511) {
2494 error_report("The new size must be a multiple of 512");
2495 return -EINVAL;
2498 /* cannot proceed if image has snapshots */
2499 if (s->nb_snapshots) {
2500 error_report("Can't resize an image which has snapshots");
2501 return -ENOTSUP;
2504 /* shrinking is currently not supported */
2505 if (offset < bs->total_sectors * 512) {
2506 error_report("qcow2 doesn't support shrinking images yet");
2507 return -ENOTSUP;
2510 new_l1_size = size_to_l1(s, offset);
2511 ret = qcow2_grow_l1_table(bs, new_l1_size, true);
2512 if (ret < 0) {
2513 return ret;
2516 /* write updated header.size */
2517 offset = cpu_to_be64(offset);
2518 ret = bdrv_pwrite_sync(bs->file->bs, offsetof(QCowHeader, size),
2519 &offset, sizeof(uint64_t));
2520 if (ret < 0) {
2521 return ret;
2524 s->l1_vm_state_index = new_l1_size;
2525 return 0;
2528 /* XXX: put compressed sectors first, then all the cluster aligned
2529 tables to avoid losing bytes in alignment */
2530 static int qcow2_write_compressed(BlockDriverState *bs, int64_t sector_num,
2531 const uint8_t *buf, int nb_sectors)
2533 BDRVQcow2State *s = bs->opaque;
2534 z_stream strm;
2535 int ret, out_len;
2536 uint8_t *out_buf;
2537 uint64_t cluster_offset;
2539 if (nb_sectors == 0) {
2540 /* align end of file to a sector boundary to ease reading with
2541 sector based I/Os */
2542 cluster_offset = bdrv_getlength(bs->file->bs);
2543 return bdrv_truncate(bs->file->bs, cluster_offset);
2546 if (nb_sectors != s->cluster_sectors) {
2547 ret = -EINVAL;
2549 /* Zero-pad last write if image size is not cluster aligned */
2550 if (sector_num + nb_sectors == bs->total_sectors &&
2551 nb_sectors < s->cluster_sectors) {
2552 uint8_t *pad_buf = qemu_blockalign(bs, s->cluster_size);
2553 memset(pad_buf, 0, s->cluster_size);
2554 memcpy(pad_buf, buf, nb_sectors * BDRV_SECTOR_SIZE);
2555 ret = qcow2_write_compressed(bs, sector_num,
2556 pad_buf, s->cluster_sectors);
2557 qemu_vfree(pad_buf);
2559 return ret;
2562 out_buf = g_malloc(s->cluster_size + (s->cluster_size / 1000) + 128);
2564 /* best compression, small window, no zlib header */
2565 memset(&strm, 0, sizeof(strm));
2566 ret = deflateInit2(&strm, Z_DEFAULT_COMPRESSION,
2567 Z_DEFLATED, -12,
2568 9, Z_DEFAULT_STRATEGY);
2569 if (ret != 0) {
2570 ret = -EINVAL;
2571 goto fail;
2574 strm.avail_in = s->cluster_size;
2575 strm.next_in = (uint8_t *)buf;
2576 strm.avail_out = s->cluster_size;
2577 strm.next_out = out_buf;
2579 ret = deflate(&strm, Z_FINISH);
2580 if (ret != Z_STREAM_END && ret != Z_OK) {
2581 deflateEnd(&strm);
2582 ret = -EINVAL;
2583 goto fail;
2585 out_len = strm.next_out - out_buf;
2587 deflateEnd(&strm);
2589 if (ret != Z_STREAM_END || out_len >= s->cluster_size) {
2590 /* could not compress: write normal cluster */
2591 ret = bdrv_write(bs, sector_num, buf, s->cluster_sectors);
2592 if (ret < 0) {
2593 goto fail;
2595 } else {
2596 cluster_offset = qcow2_alloc_compressed_cluster_offset(bs,
2597 sector_num << 9, out_len);
2598 if (!cluster_offset) {
2599 ret = -EIO;
2600 goto fail;
2602 cluster_offset &= s->cluster_offset_mask;
2604 ret = qcow2_pre_write_overlap_check(bs, 0, cluster_offset, out_len);
2605 if (ret < 0) {
2606 goto fail;
2609 BLKDBG_EVENT(bs->file, BLKDBG_WRITE_COMPRESSED);
2610 ret = bdrv_pwrite(bs->file->bs, cluster_offset, out_buf, out_len);
2611 if (ret < 0) {
2612 goto fail;
2616 ret = 0;
2617 fail:
2618 g_free(out_buf);
2619 return ret;
2622 static int make_completely_empty(BlockDriverState *bs)
2624 BDRVQcow2State *s = bs->opaque;
2625 int ret, l1_clusters;
2626 int64_t offset;
2627 uint64_t *new_reftable = NULL;
2628 uint64_t rt_entry, l1_size2;
2629 struct {
2630 uint64_t l1_offset;
2631 uint64_t reftable_offset;
2632 uint32_t reftable_clusters;
2633 } QEMU_PACKED l1_ofs_rt_ofs_cls;
2635 ret = qcow2_cache_empty(bs, s->l2_table_cache);
2636 if (ret < 0) {
2637 goto fail;
2640 ret = qcow2_cache_empty(bs, s->refcount_block_cache);
2641 if (ret < 0) {
2642 goto fail;
2645 /* Refcounts will be broken utterly */
2646 ret = qcow2_mark_dirty(bs);
2647 if (ret < 0) {
2648 goto fail;
2651 BLKDBG_EVENT(bs->file, BLKDBG_L1_UPDATE);
2653 l1_clusters = DIV_ROUND_UP(s->l1_size, s->cluster_size / sizeof(uint64_t));
2654 l1_size2 = (uint64_t)s->l1_size * sizeof(uint64_t);
2656 /* After this call, neither the in-memory nor the on-disk refcount
2657 * information accurately describe the actual references */
2659 ret = bdrv_pwrite_zeroes(bs->file->bs, s->l1_table_offset,
2660 l1_clusters * s->cluster_size, 0);
2661 if (ret < 0) {
2662 goto fail_broken_refcounts;
2664 memset(s->l1_table, 0, l1_size2);
2666 BLKDBG_EVENT(bs->file, BLKDBG_EMPTY_IMAGE_PREPARE);
2668 /* Overwrite enough clusters at the beginning of the sectors to place
2669 * the refcount table, a refcount block and the L1 table in; this may
2670 * overwrite parts of the existing refcount and L1 table, which is not
2671 * an issue because the dirty flag is set, complete data loss is in fact
2672 * desired and partial data loss is consequently fine as well */
2673 ret = bdrv_pwrite_zeroes(bs->file->bs, s->cluster_size,
2674 (2 + l1_clusters) * s->cluster_size, 0);
2675 /* This call (even if it failed overall) may have overwritten on-disk
2676 * refcount structures; in that case, the in-memory refcount information
2677 * will probably differ from the on-disk information which makes the BDS
2678 * unusable */
2679 if (ret < 0) {
2680 goto fail_broken_refcounts;
2683 BLKDBG_EVENT(bs->file, BLKDBG_L1_UPDATE);
2684 BLKDBG_EVENT(bs->file, BLKDBG_REFTABLE_UPDATE);
2686 /* "Create" an empty reftable (one cluster) directly after the image
2687 * header and an empty L1 table three clusters after the image header;
2688 * the cluster between those two will be used as the first refblock */
2689 cpu_to_be64w(&l1_ofs_rt_ofs_cls.l1_offset, 3 * s->cluster_size);
2690 cpu_to_be64w(&l1_ofs_rt_ofs_cls.reftable_offset, s->cluster_size);
2691 cpu_to_be32w(&l1_ofs_rt_ofs_cls.reftable_clusters, 1);
2692 ret = bdrv_pwrite_sync(bs->file->bs, offsetof(QCowHeader, l1_table_offset),
2693 &l1_ofs_rt_ofs_cls, sizeof(l1_ofs_rt_ofs_cls));
2694 if (ret < 0) {
2695 goto fail_broken_refcounts;
2698 s->l1_table_offset = 3 * s->cluster_size;
2700 new_reftable = g_try_new0(uint64_t, s->cluster_size / sizeof(uint64_t));
2701 if (!new_reftable) {
2702 ret = -ENOMEM;
2703 goto fail_broken_refcounts;
2706 s->refcount_table_offset = s->cluster_size;
2707 s->refcount_table_size = s->cluster_size / sizeof(uint64_t);
2709 g_free(s->refcount_table);
2710 s->refcount_table = new_reftable;
2711 new_reftable = NULL;
2713 /* Now the in-memory refcount information again corresponds to the on-disk
2714 * information (reftable is empty and no refblocks (the refblock cache is
2715 * empty)); however, this means some clusters (e.g. the image header) are
2716 * referenced, but not refcounted, but the normal qcow2 code assumes that
2717 * the in-memory information is always correct */
2719 BLKDBG_EVENT(bs->file, BLKDBG_REFBLOCK_ALLOC);
2721 /* Enter the first refblock into the reftable */
2722 rt_entry = cpu_to_be64(2 * s->cluster_size);
2723 ret = bdrv_pwrite_sync(bs->file->bs, s->cluster_size,
2724 &rt_entry, sizeof(rt_entry));
2725 if (ret < 0) {
2726 goto fail_broken_refcounts;
2728 s->refcount_table[0] = 2 * s->cluster_size;
2730 s->free_cluster_index = 0;
2731 assert(3 + l1_clusters <= s->refcount_block_size);
2732 offset = qcow2_alloc_clusters(bs, 3 * s->cluster_size + l1_size2);
2733 if (offset < 0) {
2734 ret = offset;
2735 goto fail_broken_refcounts;
2736 } else if (offset > 0) {
2737 error_report("First cluster in emptied image is in use");
2738 abort();
2741 /* Now finally the in-memory information corresponds to the on-disk
2742 * structures and is correct */
2743 ret = qcow2_mark_clean(bs);
2744 if (ret < 0) {
2745 goto fail;
2748 ret = bdrv_truncate(bs->file->bs, (3 + l1_clusters) * s->cluster_size);
2749 if (ret < 0) {
2750 goto fail;
2753 return 0;
2755 fail_broken_refcounts:
2756 /* The BDS is unusable at this point. If we wanted to make it usable, we
2757 * would have to call qcow2_refcount_close(), qcow2_refcount_init(),
2758 * qcow2_check_refcounts(), qcow2_refcount_close() and qcow2_refcount_init()
2759 * again. However, because the functions which could have caused this error
2760 * path to be taken are used by those functions as well, it's very likely
2761 * that that sequence will fail as well. Therefore, just eject the BDS. */
2762 bs->drv = NULL;
2764 fail:
2765 g_free(new_reftable);
2766 return ret;
2769 static int qcow2_make_empty(BlockDriverState *bs)
2771 BDRVQcow2State *s = bs->opaque;
2772 uint64_t start_sector;
2773 int sector_step = INT_MAX / BDRV_SECTOR_SIZE;
2774 int l1_clusters, ret = 0;
2776 l1_clusters = DIV_ROUND_UP(s->l1_size, s->cluster_size / sizeof(uint64_t));
2778 if (s->qcow_version >= 3 && !s->snapshots &&
2779 3 + l1_clusters <= s->refcount_block_size) {
2780 /* The following function only works for qcow2 v3 images (it requires
2781 * the dirty flag) and only as long as there are no snapshots (because
2782 * it completely empties the image). Furthermore, the L1 table and three
2783 * additional clusters (image header, refcount table, one refcount
2784 * block) have to fit inside one refcount block. */
2785 return make_completely_empty(bs);
2788 /* This fallback code simply discards every active cluster; this is slow,
2789 * but works in all cases */
2790 for (start_sector = 0; start_sector < bs->total_sectors;
2791 start_sector += sector_step)
2793 /* As this function is generally used after committing an external
2794 * snapshot, QCOW2_DISCARD_SNAPSHOT seems appropriate. Also, the
2795 * default action for this kind of discard is to pass the discard,
2796 * which will ideally result in an actually smaller image file, as
2797 * is probably desired. */
2798 ret = qcow2_discard_clusters(bs, start_sector * BDRV_SECTOR_SIZE,
2799 MIN(sector_step,
2800 bs->total_sectors - start_sector),
2801 QCOW2_DISCARD_SNAPSHOT, true);
2802 if (ret < 0) {
2803 break;
2807 return ret;
2810 static coroutine_fn int qcow2_co_flush_to_os(BlockDriverState *bs)
2812 BDRVQcow2State *s = bs->opaque;
2813 int ret;
2815 qemu_co_mutex_lock(&s->lock);
2816 ret = qcow2_cache_write(bs, s->l2_table_cache);
2817 if (ret < 0) {
2818 qemu_co_mutex_unlock(&s->lock);
2819 return ret;
2822 if (qcow2_need_accurate_refcounts(s)) {
2823 ret = qcow2_cache_write(bs, s->refcount_block_cache);
2824 if (ret < 0) {
2825 qemu_co_mutex_unlock(&s->lock);
2826 return ret;
2829 qemu_co_mutex_unlock(&s->lock);
2831 return 0;
2834 static int qcow2_get_info(BlockDriverState *bs, BlockDriverInfo *bdi)
2836 BDRVQcow2State *s = bs->opaque;
2837 bdi->unallocated_blocks_are_zero = true;
2838 bdi->can_write_zeroes_with_unmap = (s->qcow_version >= 3);
2839 bdi->cluster_size = s->cluster_size;
2840 bdi->vm_state_offset = qcow2_vm_state_offset(s);
2841 return 0;
2844 static ImageInfoSpecific *qcow2_get_specific_info(BlockDriverState *bs)
2846 BDRVQcow2State *s = bs->opaque;
2847 ImageInfoSpecific *spec_info = g_new(ImageInfoSpecific, 1);
2849 *spec_info = (ImageInfoSpecific){
2850 .type = IMAGE_INFO_SPECIFIC_KIND_QCOW2,
2851 .u.qcow2.data = g_new(ImageInfoSpecificQCow2, 1),
2853 if (s->qcow_version == 2) {
2854 *spec_info->u.qcow2.data = (ImageInfoSpecificQCow2){
2855 .compat = g_strdup("0.10"),
2856 .refcount_bits = s->refcount_bits,
2858 } else if (s->qcow_version == 3) {
2859 *spec_info->u.qcow2.data = (ImageInfoSpecificQCow2){
2860 .compat = g_strdup("1.1"),
2861 .lazy_refcounts = s->compatible_features &
2862 QCOW2_COMPAT_LAZY_REFCOUNTS,
2863 .has_lazy_refcounts = true,
2864 .corrupt = s->incompatible_features &
2865 QCOW2_INCOMPAT_CORRUPT,
2866 .has_corrupt = true,
2867 .refcount_bits = s->refcount_bits,
2869 } else {
2870 /* if this assertion fails, this probably means a new version was
2871 * added without having it covered here */
2872 assert(false);
2875 return spec_info;
2878 #if 0
2879 static void dump_refcounts(BlockDriverState *bs)
2881 BDRVQcow2State *s = bs->opaque;
2882 int64_t nb_clusters, k, k1, size;
2883 int refcount;
2885 size = bdrv_getlength(bs->file->bs);
2886 nb_clusters = size_to_clusters(s, size);
2887 for(k = 0; k < nb_clusters;) {
2888 k1 = k;
2889 refcount = get_refcount(bs, k);
2890 k++;
2891 while (k < nb_clusters && get_refcount(bs, k) == refcount)
2892 k++;
2893 printf("%" PRId64 ": refcount=%d nb=%" PRId64 "\n", k, refcount,
2894 k - k1);
2897 #endif
2899 static int qcow2_save_vmstate(BlockDriverState *bs, QEMUIOVector *qiov,
2900 int64_t pos)
2902 BDRVQcow2State *s = bs->opaque;
2903 int64_t total_sectors = bs->total_sectors;
2904 bool zero_beyond_eof = bs->zero_beyond_eof;
2905 int ret;
2907 BLKDBG_EVENT(bs->file, BLKDBG_VMSTATE_SAVE);
2908 bs->zero_beyond_eof = false;
2909 ret = bdrv_pwritev(bs, qcow2_vm_state_offset(s) + pos, qiov);
2910 bs->zero_beyond_eof = zero_beyond_eof;
2912 /* bdrv_co_do_writev will have increased the total_sectors value to include
2913 * the VM state - the VM state is however not an actual part of the block
2914 * device, therefore, we need to restore the old value. */
2915 bs->total_sectors = total_sectors;
2917 return ret;
2920 static int qcow2_load_vmstate(BlockDriverState *bs, uint8_t *buf,
2921 int64_t pos, int size)
2923 BDRVQcow2State *s = bs->opaque;
2924 bool zero_beyond_eof = bs->zero_beyond_eof;
2925 int ret;
2927 BLKDBG_EVENT(bs->file, BLKDBG_VMSTATE_LOAD);
2928 bs->zero_beyond_eof = false;
2929 ret = bdrv_pread(bs, qcow2_vm_state_offset(s) + pos, buf, size);
2930 bs->zero_beyond_eof = zero_beyond_eof;
2932 return ret;
2936 * Downgrades an image's version. To achieve this, any incompatible features
2937 * have to be removed.
2939 static int qcow2_downgrade(BlockDriverState *bs, int target_version,
2940 BlockDriverAmendStatusCB *status_cb, void *cb_opaque)
2942 BDRVQcow2State *s = bs->opaque;
2943 int current_version = s->qcow_version;
2944 int ret;
2946 if (target_version == current_version) {
2947 return 0;
2948 } else if (target_version > current_version) {
2949 return -EINVAL;
2950 } else if (target_version != 2) {
2951 return -EINVAL;
2954 if (s->refcount_order != 4) {
2955 error_report("compat=0.10 requires refcount_bits=16");
2956 return -ENOTSUP;
2959 /* clear incompatible features */
2960 if (s->incompatible_features & QCOW2_INCOMPAT_DIRTY) {
2961 ret = qcow2_mark_clean(bs);
2962 if (ret < 0) {
2963 return ret;
2967 /* with QCOW2_INCOMPAT_CORRUPT, it is pretty much impossible to get here in
2968 * the first place; if that happens nonetheless, returning -ENOTSUP is the
2969 * best thing to do anyway */
2971 if (s->incompatible_features) {
2972 return -ENOTSUP;
2975 /* since we can ignore compatible features, we can set them to 0 as well */
2976 s->compatible_features = 0;
2977 /* if lazy refcounts have been used, they have already been fixed through
2978 * clearing the dirty flag */
2980 /* clearing autoclear features is trivial */
2981 s->autoclear_features = 0;
2983 ret = qcow2_expand_zero_clusters(bs, status_cb, cb_opaque);
2984 if (ret < 0) {
2985 return ret;
2988 s->qcow_version = target_version;
2989 ret = qcow2_update_header(bs);
2990 if (ret < 0) {
2991 s->qcow_version = current_version;
2992 return ret;
2994 return 0;
2997 typedef enum Qcow2AmendOperation {
2998 /* This is the value Qcow2AmendHelperCBInfo::last_operation will be
2999 * statically initialized to so that the helper CB can discern the first
3000 * invocation from an operation change */
3001 QCOW2_NO_OPERATION = 0,
3003 QCOW2_CHANGING_REFCOUNT_ORDER,
3004 QCOW2_DOWNGRADING,
3005 } Qcow2AmendOperation;
3007 typedef struct Qcow2AmendHelperCBInfo {
3008 /* The code coordinating the amend operations should only modify
3009 * these four fields; the rest will be managed by the CB */
3010 BlockDriverAmendStatusCB *original_status_cb;
3011 void *original_cb_opaque;
3013 Qcow2AmendOperation current_operation;
3015 /* Total number of operations to perform (only set once) */
3016 int total_operations;
3018 /* The following fields are managed by the CB */
3020 /* Number of operations completed */
3021 int operations_completed;
3023 /* Cumulative offset of all completed operations */
3024 int64_t offset_completed;
3026 Qcow2AmendOperation last_operation;
3027 int64_t last_work_size;
3028 } Qcow2AmendHelperCBInfo;
3030 static void qcow2_amend_helper_cb(BlockDriverState *bs,
3031 int64_t operation_offset,
3032 int64_t operation_work_size, void *opaque)
3034 Qcow2AmendHelperCBInfo *info = opaque;
3035 int64_t current_work_size;
3036 int64_t projected_work_size;
3038 if (info->current_operation != info->last_operation) {
3039 if (info->last_operation != QCOW2_NO_OPERATION) {
3040 info->offset_completed += info->last_work_size;
3041 info->operations_completed++;
3044 info->last_operation = info->current_operation;
3047 assert(info->total_operations > 0);
3048 assert(info->operations_completed < info->total_operations);
3050 info->last_work_size = operation_work_size;
3052 current_work_size = info->offset_completed + operation_work_size;
3054 /* current_work_size is the total work size for (operations_completed + 1)
3055 * operations (which includes this one), so multiply it by the number of
3056 * operations not covered and divide it by the number of operations
3057 * covered to get a projection for the operations not covered */
3058 projected_work_size = current_work_size * (info->total_operations -
3059 info->operations_completed - 1)
3060 / (info->operations_completed + 1);
3062 info->original_status_cb(bs, info->offset_completed + operation_offset,
3063 current_work_size + projected_work_size,
3064 info->original_cb_opaque);
3067 static int qcow2_amend_options(BlockDriverState *bs, QemuOpts *opts,
3068 BlockDriverAmendStatusCB *status_cb,
3069 void *cb_opaque)
3071 BDRVQcow2State *s = bs->opaque;
3072 int old_version = s->qcow_version, new_version = old_version;
3073 uint64_t new_size = 0;
3074 const char *backing_file = NULL, *backing_format = NULL;
3075 bool lazy_refcounts = s->use_lazy_refcounts;
3076 const char *compat = NULL;
3077 uint64_t cluster_size = s->cluster_size;
3078 bool encrypt;
3079 int refcount_bits = s->refcount_bits;
3080 int ret;
3081 QemuOptDesc *desc = opts->list->desc;
3082 Qcow2AmendHelperCBInfo helper_cb_info;
3084 while (desc && desc->name) {
3085 if (!qemu_opt_find(opts, desc->name)) {
3086 /* only change explicitly defined options */
3087 desc++;
3088 continue;
3091 if (!strcmp(desc->name, BLOCK_OPT_COMPAT_LEVEL)) {
3092 compat = qemu_opt_get(opts, BLOCK_OPT_COMPAT_LEVEL);
3093 if (!compat) {
3094 /* preserve default */
3095 } else if (!strcmp(compat, "0.10")) {
3096 new_version = 2;
3097 } else if (!strcmp(compat, "1.1")) {
3098 new_version = 3;
3099 } else {
3100 error_report("Unknown compatibility level %s", compat);
3101 return -EINVAL;
3103 } else if (!strcmp(desc->name, BLOCK_OPT_PREALLOC)) {
3104 error_report("Cannot change preallocation mode");
3105 return -ENOTSUP;
3106 } else if (!strcmp(desc->name, BLOCK_OPT_SIZE)) {
3107 new_size = qemu_opt_get_size(opts, BLOCK_OPT_SIZE, 0);
3108 } else if (!strcmp(desc->name, BLOCK_OPT_BACKING_FILE)) {
3109 backing_file = qemu_opt_get(opts, BLOCK_OPT_BACKING_FILE);
3110 } else if (!strcmp(desc->name, BLOCK_OPT_BACKING_FMT)) {
3111 backing_format = qemu_opt_get(opts, BLOCK_OPT_BACKING_FMT);
3112 } else if (!strcmp(desc->name, BLOCK_OPT_ENCRYPT)) {
3113 encrypt = qemu_opt_get_bool(opts, BLOCK_OPT_ENCRYPT,
3114 !!s->cipher);
3116 if (encrypt != !!s->cipher) {
3117 error_report("Changing the encryption flag is not supported");
3118 return -ENOTSUP;
3120 } else if (!strcmp(desc->name, BLOCK_OPT_CLUSTER_SIZE)) {
3121 cluster_size = qemu_opt_get_size(opts, BLOCK_OPT_CLUSTER_SIZE,
3122 cluster_size);
3123 if (cluster_size != s->cluster_size) {
3124 error_report("Changing the cluster size is not supported");
3125 return -ENOTSUP;
3127 } else if (!strcmp(desc->name, BLOCK_OPT_LAZY_REFCOUNTS)) {
3128 lazy_refcounts = qemu_opt_get_bool(opts, BLOCK_OPT_LAZY_REFCOUNTS,
3129 lazy_refcounts);
3130 } else if (!strcmp(desc->name, BLOCK_OPT_REFCOUNT_BITS)) {
3131 refcount_bits = qemu_opt_get_number(opts, BLOCK_OPT_REFCOUNT_BITS,
3132 refcount_bits);
3134 if (refcount_bits <= 0 || refcount_bits > 64 ||
3135 !is_power_of_2(refcount_bits))
3137 error_report("Refcount width must be a power of two and may "
3138 "not exceed 64 bits");
3139 return -EINVAL;
3141 } else {
3142 /* if this point is reached, this probably means a new option was
3143 * added without having it covered here */
3144 abort();
3147 desc++;
3150 helper_cb_info = (Qcow2AmendHelperCBInfo){
3151 .original_status_cb = status_cb,
3152 .original_cb_opaque = cb_opaque,
3153 .total_operations = (new_version < old_version)
3154 + (s->refcount_bits != refcount_bits)
3157 /* Upgrade first (some features may require compat=1.1) */
3158 if (new_version > old_version) {
3159 s->qcow_version = new_version;
3160 ret = qcow2_update_header(bs);
3161 if (ret < 0) {
3162 s->qcow_version = old_version;
3163 return ret;
3167 if (s->refcount_bits != refcount_bits) {
3168 int refcount_order = ctz32(refcount_bits);
3169 Error *local_error = NULL;
3171 if (new_version < 3 && refcount_bits != 16) {
3172 error_report("Different refcount widths than 16 bits require "
3173 "compatibility level 1.1 or above (use compat=1.1 or "
3174 "greater)");
3175 return -EINVAL;
3178 helper_cb_info.current_operation = QCOW2_CHANGING_REFCOUNT_ORDER;
3179 ret = qcow2_change_refcount_order(bs, refcount_order,
3180 &qcow2_amend_helper_cb,
3181 &helper_cb_info, &local_error);
3182 if (ret < 0) {
3183 error_report_err(local_error);
3184 return ret;
3188 if (backing_file || backing_format) {
3189 ret = qcow2_change_backing_file(bs,
3190 backing_file ?: s->image_backing_file,
3191 backing_format ?: s->image_backing_format);
3192 if (ret < 0) {
3193 return ret;
3197 if (s->use_lazy_refcounts != lazy_refcounts) {
3198 if (lazy_refcounts) {
3199 if (new_version < 3) {
3200 error_report("Lazy refcounts only supported with compatibility "
3201 "level 1.1 and above (use compat=1.1 or greater)");
3202 return -EINVAL;
3204 s->compatible_features |= QCOW2_COMPAT_LAZY_REFCOUNTS;
3205 ret = qcow2_update_header(bs);
3206 if (ret < 0) {
3207 s->compatible_features &= ~QCOW2_COMPAT_LAZY_REFCOUNTS;
3208 return ret;
3210 s->use_lazy_refcounts = true;
3211 } else {
3212 /* make image clean first */
3213 ret = qcow2_mark_clean(bs);
3214 if (ret < 0) {
3215 return ret;
3217 /* now disallow lazy refcounts */
3218 s->compatible_features &= ~QCOW2_COMPAT_LAZY_REFCOUNTS;
3219 ret = qcow2_update_header(bs);
3220 if (ret < 0) {
3221 s->compatible_features |= QCOW2_COMPAT_LAZY_REFCOUNTS;
3222 return ret;
3224 s->use_lazy_refcounts = false;
3228 if (new_size) {
3229 ret = bdrv_truncate(bs, new_size);
3230 if (ret < 0) {
3231 return ret;
3235 /* Downgrade last (so unsupported features can be removed before) */
3236 if (new_version < old_version) {
3237 helper_cb_info.current_operation = QCOW2_DOWNGRADING;
3238 ret = qcow2_downgrade(bs, new_version, &qcow2_amend_helper_cb,
3239 &helper_cb_info);
3240 if (ret < 0) {
3241 return ret;
3245 return 0;
3249 * If offset or size are negative, respectively, they will not be included in
3250 * the BLOCK_IMAGE_CORRUPTED event emitted.
3251 * fatal will be ignored for read-only BDS; corruptions found there will always
3252 * be considered non-fatal.
3254 void qcow2_signal_corruption(BlockDriverState *bs, bool fatal, int64_t offset,
3255 int64_t size, const char *message_format, ...)
3257 BDRVQcow2State *s = bs->opaque;
3258 const char *node_name;
3259 char *message;
3260 va_list ap;
3262 fatal = fatal && !bs->read_only;
3264 if (s->signaled_corruption &&
3265 (!fatal || (s->incompatible_features & QCOW2_INCOMPAT_CORRUPT)))
3267 return;
3270 va_start(ap, message_format);
3271 message = g_strdup_vprintf(message_format, ap);
3272 va_end(ap);
3274 if (fatal) {
3275 fprintf(stderr, "qcow2: Marking image as corrupt: %s; further "
3276 "corruption events will be suppressed\n", message);
3277 } else {
3278 fprintf(stderr, "qcow2: Image is corrupt: %s; further non-fatal "
3279 "corruption events will be suppressed\n", message);
3282 node_name = bdrv_get_node_name(bs);
3283 qapi_event_send_block_image_corrupted(bdrv_get_device_name(bs),
3284 *node_name != '\0', node_name,
3285 message, offset >= 0, offset,
3286 size >= 0, size,
3287 fatal, &error_abort);
3288 g_free(message);
3290 if (fatal) {
3291 qcow2_mark_corrupt(bs);
3292 bs->drv = NULL; /* make BDS unusable */
3295 s->signaled_corruption = true;
3298 static QemuOptsList qcow2_create_opts = {
3299 .name = "qcow2-create-opts",
3300 .head = QTAILQ_HEAD_INITIALIZER(qcow2_create_opts.head),
3301 .desc = {
3303 .name = BLOCK_OPT_SIZE,
3304 .type = QEMU_OPT_SIZE,
3305 .help = "Virtual disk size"
3308 .name = BLOCK_OPT_COMPAT_LEVEL,
3309 .type = QEMU_OPT_STRING,
3310 .help = "Compatibility level (0.10 or 1.1)"
3313 .name = BLOCK_OPT_BACKING_FILE,
3314 .type = QEMU_OPT_STRING,
3315 .help = "File name of a base image"
3318 .name = BLOCK_OPT_BACKING_FMT,
3319 .type = QEMU_OPT_STRING,
3320 .help = "Image format of the base image"
3323 .name = BLOCK_OPT_ENCRYPT,
3324 .type = QEMU_OPT_BOOL,
3325 .help = "Encrypt the image",
3326 .def_value_str = "off"
3329 .name = BLOCK_OPT_CLUSTER_SIZE,
3330 .type = QEMU_OPT_SIZE,
3331 .help = "qcow2 cluster size",
3332 .def_value_str = stringify(DEFAULT_CLUSTER_SIZE)
3335 .name = BLOCK_OPT_PREALLOC,
3336 .type = QEMU_OPT_STRING,
3337 .help = "Preallocation mode (allowed values: off, metadata, "
3338 "falloc, full)"
3341 .name = BLOCK_OPT_LAZY_REFCOUNTS,
3342 .type = QEMU_OPT_BOOL,
3343 .help = "Postpone refcount updates",
3344 .def_value_str = "off"
3347 .name = BLOCK_OPT_REFCOUNT_BITS,
3348 .type = QEMU_OPT_NUMBER,
3349 .help = "Width of a reference count entry in bits",
3350 .def_value_str = "16"
3352 { /* end of list */ }
3356 BlockDriver bdrv_qcow2 = {
3357 .format_name = "qcow2",
3358 .instance_size = sizeof(BDRVQcow2State),
3359 .bdrv_probe = qcow2_probe,
3360 .bdrv_open = qcow2_open,
3361 .bdrv_close = qcow2_close,
3362 .bdrv_reopen_prepare = qcow2_reopen_prepare,
3363 .bdrv_reopen_commit = qcow2_reopen_commit,
3364 .bdrv_reopen_abort = qcow2_reopen_abort,
3365 .bdrv_join_options = qcow2_join_options,
3366 .bdrv_create = qcow2_create,
3367 .bdrv_has_zero_init = bdrv_has_zero_init_1,
3368 .bdrv_co_get_block_status = qcow2_co_get_block_status,
3369 .bdrv_set_key = qcow2_set_key,
3371 .bdrv_co_readv = qcow2_co_readv,
3372 .bdrv_co_writev = qcow2_co_writev,
3373 .bdrv_co_flush_to_os = qcow2_co_flush_to_os,
3375 .bdrv_co_pwrite_zeroes = qcow2_co_pwrite_zeroes,
3376 .bdrv_co_discard = qcow2_co_discard,
3377 .bdrv_truncate = qcow2_truncate,
3378 .bdrv_write_compressed = qcow2_write_compressed,
3379 .bdrv_make_empty = qcow2_make_empty,
3381 .bdrv_snapshot_create = qcow2_snapshot_create,
3382 .bdrv_snapshot_goto = qcow2_snapshot_goto,
3383 .bdrv_snapshot_delete = qcow2_snapshot_delete,
3384 .bdrv_snapshot_list = qcow2_snapshot_list,
3385 .bdrv_snapshot_load_tmp = qcow2_snapshot_load_tmp,
3386 .bdrv_get_info = qcow2_get_info,
3387 .bdrv_get_specific_info = qcow2_get_specific_info,
3389 .bdrv_save_vmstate = qcow2_save_vmstate,
3390 .bdrv_load_vmstate = qcow2_load_vmstate,
3392 .supports_backing = true,
3393 .bdrv_change_backing_file = qcow2_change_backing_file,
3395 .bdrv_refresh_limits = qcow2_refresh_limits,
3396 .bdrv_invalidate_cache = qcow2_invalidate_cache,
3397 .bdrv_inactivate = qcow2_inactivate,
3399 .create_opts = &qcow2_create_opts,
3400 .bdrv_check = qcow2_check,
3401 .bdrv_amend_options = qcow2_amend_options,
3403 .bdrv_detach_aio_context = qcow2_detach_aio_context,
3404 .bdrv_attach_aio_context = qcow2_attach_aio_context,
3407 static void bdrv_qcow2_init(void)
3409 bdrv_register(&bdrv_qcow2);
3412 block_init(bdrv_qcow2_init);