xref: /qemu/block/qcow2.c (revision 35ed01ba)
1 /*
2  * Block driver for the QCOW version 2 format
3  *
4  * Copyright (c) 2004-2006 Fabrice Bellard
5  *
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:
12  *
13  * The above copyright notice and this permission notice shall be included in
14  * all copies or substantial portions of the Software.
15  *
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.
23  */
24 
25 #include "qemu/osdep.h"
26 
27 #include "block/qdict.h"
28 #include "sysemu/block-backend.h"
29 #include "qemu/main-loop.h"
30 #include "qemu/module.h"
31 #include "qcow2.h"
32 #include "qemu/error-report.h"
33 #include "qapi/error.h"
34 #include "qapi/qapi-events-block-core.h"
35 #include "qapi/qmp/qdict.h"
36 #include "qapi/qmp/qstring.h"
37 #include "trace.h"
38 #include "qemu/option_int.h"
39 #include "qemu/cutils.h"
40 #include "qemu/bswap.h"
41 #include "qemu/memalign.h"
42 #include "qapi/qobject-input-visitor.h"
43 #include "qapi/qapi-visit-block-core.h"
44 #include "crypto.h"
45 #include "block/aio_task.h"
46 #include "block/dirty-bitmap.h"
47 
48 /*
49   Differences with QCOW:
50 
51   - Support for multiple incremental snapshots.
52   - Memory management by reference counts.
53   - Clusters which have a reference count of one have the bit
54     QCOW_OFLAG_COPIED to optimize write performance.
55   - Size of compressed clusters is stored in sectors to reduce bit usage
56     in the cluster offsets.
57   - Support for storing additional data (such as the VM state) in the
58     snapshots.
59   - If a backing store is used, the cluster size is not constrained
60     (could be backported to QCOW).
61   - L2 tables have always a size of one cluster.
62 */
63 
64 
65 typedef struct {
66     uint32_t magic;
67     uint32_t len;
68 } QEMU_PACKED QCowExtension;
69 
70 #define  QCOW2_EXT_MAGIC_END 0
71 #define  QCOW2_EXT_MAGIC_BACKING_FORMAT 0xe2792aca
72 #define  QCOW2_EXT_MAGIC_FEATURE_TABLE 0x6803f857
73 #define  QCOW2_EXT_MAGIC_CRYPTO_HEADER 0x0537be77
74 #define  QCOW2_EXT_MAGIC_BITMAPS 0x23852875
75 #define  QCOW2_EXT_MAGIC_DATA_FILE 0x44415441
76 
77 static int coroutine_fn
78 qcow2_co_preadv_compressed(BlockDriverState *bs,
79                            uint64_t l2_entry,
80                            uint64_t offset,
81                            uint64_t bytes,
82                            QEMUIOVector *qiov,
83                            size_t qiov_offset);
84 
85 static int qcow2_probe(const uint8_t *buf, int buf_size, const char *filename)
86 {
87     const QCowHeader *cow_header = (const void *)buf;
88 
89     if (buf_size >= sizeof(QCowHeader) &&
90         be32_to_cpu(cow_header->magic) == QCOW_MAGIC &&
91         be32_to_cpu(cow_header->version) >= 2)
92         return 100;
93     else
94         return 0;
95 }
96 
97 
98 static int qcow2_crypto_hdr_read_func(QCryptoBlock *block, size_t offset,
99                                       uint8_t *buf, size_t buflen,
100                                       void *opaque, Error **errp)
101 {
102     BlockDriverState *bs = opaque;
103     BDRVQcow2State *s = bs->opaque;
104     ssize_t ret;
105 
106     if ((offset + buflen) > s->crypto_header.length) {
107         error_setg(errp, "Request for data outside of extension header");
108         return -1;
109     }
110 
111     ret = bdrv_pread(bs->file, s->crypto_header.offset + offset, buflen, buf,
112                      0);
113     if (ret < 0) {
114         error_setg_errno(errp, -ret, "Could not read encryption header");
115         return -1;
116     }
117     return 0;
118 }
119 
120 
121 static int coroutine_fn GRAPH_RDLOCK
122 qcow2_crypto_hdr_init_func(QCryptoBlock *block, size_t headerlen, void *opaque,
123                            Error **errp)
124 {
125     BlockDriverState *bs = opaque;
126     BDRVQcow2State *s = bs->opaque;
127     int64_t ret;
128     int64_t clusterlen;
129 
130     ret = qcow2_alloc_clusters(bs, headerlen);
131     if (ret < 0) {
132         error_setg_errno(errp, -ret,
133                          "Cannot allocate cluster for LUKS header size %zu",
134                          headerlen);
135         return -1;
136     }
137 
138     s->crypto_header.length = headerlen;
139     s->crypto_header.offset = ret;
140 
141     /*
142      * Zero fill all space in cluster so it has predictable
143      * content, as we may not initialize some regions of the
144      * header (eg only 1 out of 8 key slots will be initialized)
145      */
146     clusterlen = size_to_clusters(s, headerlen) * s->cluster_size;
147     assert(qcow2_pre_write_overlap_check(bs, 0, ret, clusterlen, false) == 0);
148     ret = bdrv_co_pwrite_zeroes(bs->file, ret, clusterlen, 0);
149     if (ret < 0) {
150         error_setg_errno(errp, -ret, "Could not zero fill encryption header");
151         return -1;
152     }
153 
154     return 0;
155 }
156 
157 
158 /* The graph lock must be held when called in coroutine context */
159 static int coroutine_mixed_fn
160 qcow2_crypto_hdr_write_func(QCryptoBlock *block, size_t offset,
161                             const uint8_t *buf, size_t buflen,
162                             void *opaque, Error **errp)
163 {
164     BlockDriverState *bs = opaque;
165     BDRVQcow2State *s = bs->opaque;
166     ssize_t ret;
167 
168     if ((offset + buflen) > s->crypto_header.length) {
169         error_setg(errp, "Request for data outside of extension header");
170         return -1;
171     }
172 
173     ret = bdrv_pwrite(bs->file, s->crypto_header.offset + offset, buflen, buf,
174                       0);
175     if (ret < 0) {
176         error_setg_errno(errp, -ret, "Could not read encryption header");
177         return -1;
178     }
179     return 0;
180 }
181 
182 static QDict*
183 qcow2_extract_crypto_opts(QemuOpts *opts, const char *fmt, Error **errp)
184 {
185     QDict *cryptoopts_qdict;
186     QDict *opts_qdict;
187 
188     /* Extract "encrypt." options into a qdict */
189     opts_qdict = qemu_opts_to_qdict(opts, NULL);
190     qdict_extract_subqdict(opts_qdict, &cryptoopts_qdict, "encrypt.");
191     qobject_unref(opts_qdict);
192     qdict_put_str(cryptoopts_qdict, "format", fmt);
193     return cryptoopts_qdict;
194 }
195 
196 /*
197  * read qcow2 extension and fill bs
198  * start reading from start_offset
199  * finish reading upon magic of value 0 or when end_offset reached
200  * unknown magic is skipped (future extension this version knows nothing about)
201  * return 0 upon success, non-0 otherwise
202  */
203 static int coroutine_fn GRAPH_RDLOCK
204 qcow2_read_extensions(BlockDriverState *bs, uint64_t start_offset,
205                       uint64_t end_offset, void **p_feature_table,
206                       int flags, bool *need_update_header, Error **errp)
207 {
208     BDRVQcow2State *s = bs->opaque;
209     QCowExtension ext;
210     uint64_t offset;
211     int ret;
212     Qcow2BitmapHeaderExt bitmaps_ext;
213 
214     if (need_update_header != NULL) {
215         *need_update_header = false;
216     }
217 
218 #ifdef DEBUG_EXT
219     printf("qcow2_read_extensions: start=%ld end=%ld\n", start_offset, end_offset);
220 #endif
221     offset = start_offset;
222     while (offset < end_offset) {
223 
224 #ifdef DEBUG_EXT
225         /* Sanity check */
226         if (offset > s->cluster_size)
227             printf("qcow2_read_extension: suspicious offset %lu\n", offset);
228 
229         printf("attempting to read extended header in offset %lu\n", offset);
230 #endif
231 
232         ret = bdrv_co_pread(bs->file, offset, sizeof(ext), &ext, 0);
233         if (ret < 0) {
234             error_setg_errno(errp, -ret, "qcow2_read_extension: ERROR: "
235                              "pread fail from offset %" PRIu64, offset);
236             return 1;
237         }
238         ext.magic = be32_to_cpu(ext.magic);
239         ext.len = be32_to_cpu(ext.len);
240         offset += sizeof(ext);
241 #ifdef DEBUG_EXT
242         printf("ext.magic = 0x%x\n", ext.magic);
243 #endif
244         if (offset > end_offset || ext.len > end_offset - offset) {
245             error_setg(errp, "Header extension too large");
246             return -EINVAL;
247         }
248 
249         switch (ext.magic) {
250         case QCOW2_EXT_MAGIC_END:
251             return 0;
252 
253         case QCOW2_EXT_MAGIC_BACKING_FORMAT:
254             if (ext.len >= sizeof(bs->backing_format)) {
255                 error_setg(errp, "ERROR: ext_backing_format: len=%" PRIu32
256                            " too large (>=%zu)", ext.len,
257                            sizeof(bs->backing_format));
258                 return 2;
259             }
260             ret = bdrv_co_pread(bs->file, offset, ext.len, bs->backing_format, 0);
261             if (ret < 0) {
262                 error_setg_errno(errp, -ret, "ERROR: ext_backing_format: "
263                                  "Could not read format name");
264                 return 3;
265             }
266             bs->backing_format[ext.len] = '\0';
267             s->image_backing_format = g_strdup(bs->backing_format);
268 #ifdef DEBUG_EXT
269             printf("Qcow2: Got format extension %s\n", bs->backing_format);
270 #endif
271             break;
272 
273         case QCOW2_EXT_MAGIC_FEATURE_TABLE:
274             if (p_feature_table != NULL) {
275                 void *feature_table = g_malloc0(ext.len + 2 * sizeof(Qcow2Feature));
276                 ret = bdrv_co_pread(bs->file, offset, ext.len, feature_table, 0);
277                 if (ret < 0) {
278                     error_setg_errno(errp, -ret, "ERROR: ext_feature_table: "
279                                      "Could not read table");
280                     g_free(feature_table);
281                     return ret;
282                 }
283 
284                 *p_feature_table = feature_table;
285             }
286             break;
287 
288         case QCOW2_EXT_MAGIC_CRYPTO_HEADER: {
289             unsigned int cflags = 0;
290             if (s->crypt_method_header != QCOW_CRYPT_LUKS) {
291                 error_setg(errp, "CRYPTO header extension only "
292                            "expected with LUKS encryption method");
293                 return -EINVAL;
294             }
295             if (ext.len != sizeof(Qcow2CryptoHeaderExtension)) {
296                 error_setg(errp, "CRYPTO header extension size %u, "
297                            "but expected size %zu", ext.len,
298                            sizeof(Qcow2CryptoHeaderExtension));
299                 return -EINVAL;
300             }
301 
302             ret = bdrv_co_pread(bs->file, offset, ext.len, &s->crypto_header, 0);
303             if (ret < 0) {
304                 error_setg_errno(errp, -ret,
305                                  "Unable to read CRYPTO header extension");
306                 return ret;
307             }
308             s->crypto_header.offset = be64_to_cpu(s->crypto_header.offset);
309             s->crypto_header.length = be64_to_cpu(s->crypto_header.length);
310 
311             if ((s->crypto_header.offset % s->cluster_size) != 0) {
312                 error_setg(errp, "Encryption header offset '%" PRIu64 "' is "
313                            "not a multiple of cluster size '%u'",
314                            s->crypto_header.offset, s->cluster_size);
315                 return -EINVAL;
316             }
317 
318             if (flags & BDRV_O_NO_IO) {
319                 cflags |= QCRYPTO_BLOCK_OPEN_NO_IO;
320             }
321             s->crypto = qcrypto_block_open(s->crypto_opts, "encrypt.",
322                                            qcow2_crypto_hdr_read_func,
323                                            bs, cflags, QCOW2_MAX_THREADS, errp);
324             if (!s->crypto) {
325                 return -EINVAL;
326             }
327         }   break;
328 
329         case QCOW2_EXT_MAGIC_BITMAPS:
330             if (ext.len != sizeof(bitmaps_ext)) {
331                 error_setg_errno(errp, -ret, "bitmaps_ext: "
332                                  "Invalid extension length");
333                 return -EINVAL;
334             }
335 
336             if (!(s->autoclear_features & QCOW2_AUTOCLEAR_BITMAPS)) {
337                 if (s->qcow_version < 3) {
338                     /* Let's be a bit more specific */
339                     warn_report("This qcow2 v2 image contains bitmaps, but "
340                                 "they may have been modified by a program "
341                                 "without persistent bitmap support; so now "
342                                 "they must all be considered inconsistent");
343                 } else {
344                     warn_report("a program lacking bitmap support "
345                                 "modified this file, so all bitmaps are now "
346                                 "considered inconsistent");
347                 }
348                 error_printf("Some clusters may be leaked, "
349                              "run 'qemu-img check -r' on the image "
350                              "file to fix.");
351                 if (need_update_header != NULL) {
352                     /* Updating is needed to drop invalid bitmap extension. */
353                     *need_update_header = true;
354                 }
355                 break;
356             }
357 
358             ret = bdrv_co_pread(bs->file, offset, ext.len, &bitmaps_ext, 0);
359             if (ret < 0) {
360                 error_setg_errno(errp, -ret, "bitmaps_ext: "
361                                  "Could not read ext header");
362                 return ret;
363             }
364 
365             if (bitmaps_ext.reserved32 != 0) {
366                 error_setg_errno(errp, -ret, "bitmaps_ext: "
367                                  "Reserved field is not zero");
368                 return -EINVAL;
369             }
370 
371             bitmaps_ext.nb_bitmaps = be32_to_cpu(bitmaps_ext.nb_bitmaps);
372             bitmaps_ext.bitmap_directory_size =
373                 be64_to_cpu(bitmaps_ext.bitmap_directory_size);
374             bitmaps_ext.bitmap_directory_offset =
375                 be64_to_cpu(bitmaps_ext.bitmap_directory_offset);
376 
377             if (bitmaps_ext.nb_bitmaps > QCOW2_MAX_BITMAPS) {
378                 error_setg(errp,
379                            "bitmaps_ext: Image has %" PRIu32 " bitmaps, "
380                            "exceeding the QEMU supported maximum of %d",
381                            bitmaps_ext.nb_bitmaps, QCOW2_MAX_BITMAPS);
382                 return -EINVAL;
383             }
384 
385             if (bitmaps_ext.nb_bitmaps == 0) {
386                 error_setg(errp, "found bitmaps extension with zero bitmaps");
387                 return -EINVAL;
388             }
389 
390             if (offset_into_cluster(s, bitmaps_ext.bitmap_directory_offset)) {
391                 error_setg(errp, "bitmaps_ext: "
392                                  "invalid bitmap directory offset");
393                 return -EINVAL;
394             }
395 
396             if (bitmaps_ext.bitmap_directory_size >
397                 QCOW2_MAX_BITMAP_DIRECTORY_SIZE) {
398                 error_setg(errp, "bitmaps_ext: "
399                                  "bitmap directory size (%" PRIu64 ") exceeds "
400                                  "the maximum supported size (%d)",
401                                  bitmaps_ext.bitmap_directory_size,
402                                  QCOW2_MAX_BITMAP_DIRECTORY_SIZE);
403                 return -EINVAL;
404             }
405 
406             s->nb_bitmaps = bitmaps_ext.nb_bitmaps;
407             s->bitmap_directory_offset =
408                     bitmaps_ext.bitmap_directory_offset;
409             s->bitmap_directory_size =
410                     bitmaps_ext.bitmap_directory_size;
411 
412 #ifdef DEBUG_EXT
413             printf("Qcow2: Got bitmaps extension: "
414                    "offset=%" PRIu64 " nb_bitmaps=%" PRIu32 "\n",
415                    s->bitmap_directory_offset, s->nb_bitmaps);
416 #endif
417             break;
418 
419         case QCOW2_EXT_MAGIC_DATA_FILE:
420         {
421             s->image_data_file = g_malloc0(ext.len + 1);
422             ret = bdrv_co_pread(bs->file, offset, ext.len, s->image_data_file, 0);
423             if (ret < 0) {
424                 error_setg_errno(errp, -ret,
425                                  "ERROR: Could not read data file name");
426                 return ret;
427             }
428 #ifdef DEBUG_EXT
429             printf("Qcow2: Got external data file %s\n", s->image_data_file);
430 #endif
431             break;
432         }
433 
434         default:
435             /* unknown magic - save it in case we need to rewrite the header */
436             /* If you add a new feature, make sure to also update the fast
437              * path of qcow2_make_empty() to deal with it. */
438             {
439                 Qcow2UnknownHeaderExtension *uext;
440 
441                 uext = g_malloc0(sizeof(*uext)  + ext.len);
442                 uext->magic = ext.magic;
443                 uext->len = ext.len;
444                 QLIST_INSERT_HEAD(&s->unknown_header_ext, uext, next);
445 
446                 ret = bdrv_co_pread(bs->file, offset, uext->len, uext->data, 0);
447                 if (ret < 0) {
448                     error_setg_errno(errp, -ret, "ERROR: unknown extension: "
449                                      "Could not read data");
450                     return ret;
451                 }
452             }
453             break;
454         }
455 
456         offset += ((ext.len + 7) & ~7);
457     }
458 
459     return 0;
460 }
461 
462 static void cleanup_unknown_header_ext(BlockDriverState *bs)
463 {
464     BDRVQcow2State *s = bs->opaque;
465     Qcow2UnknownHeaderExtension *uext, *next;
466 
467     QLIST_FOREACH_SAFE(uext, &s->unknown_header_ext, next, next) {
468         QLIST_REMOVE(uext, next);
469         g_free(uext);
470     }
471 }
472 
473 static void report_unsupported_feature(Error **errp, Qcow2Feature *table,
474                                        uint64_t mask)
475 {
476     g_autoptr(GString) features = g_string_sized_new(60);
477 
478     while (table && table->name[0] != '\0') {
479         if (table->type == QCOW2_FEAT_TYPE_INCOMPATIBLE) {
480             if (mask & (1ULL << table->bit)) {
481                 if (features->len > 0) {
482                     g_string_append(features, ", ");
483                 }
484                 g_string_append_printf(features, "%.46s", table->name);
485                 mask &= ~(1ULL << table->bit);
486             }
487         }
488         table++;
489     }
490 
491     if (mask) {
492         if (features->len > 0) {
493             g_string_append(features, ", ");
494         }
495         g_string_append_printf(features,
496                                "Unknown incompatible feature: %" PRIx64, mask);
497     }
498 
499     error_setg(errp, "Unsupported qcow2 feature(s): %s", features->str);
500 }
501 
502 /*
503  * Sets the dirty bit and flushes afterwards if necessary.
504  *
505  * The incompatible_features bit is only set if the image file header was
506  * updated successfully.  Therefore it is not required to check the return
507  * value of this function.
508  */
509 int qcow2_mark_dirty(BlockDriverState *bs)
510 {
511     BDRVQcow2State *s = bs->opaque;
512     uint64_t val;
513     int ret;
514 
515     assert(s->qcow_version >= 3);
516 
517     if (s->incompatible_features & QCOW2_INCOMPAT_DIRTY) {
518         return 0; /* already dirty */
519     }
520 
521     val = cpu_to_be64(s->incompatible_features | QCOW2_INCOMPAT_DIRTY);
522     ret = bdrv_pwrite_sync(bs->file,
523                            offsetof(QCowHeader, incompatible_features),
524                            sizeof(val), &val, 0);
525     if (ret < 0) {
526         return ret;
527     }
528 
529     /* Only treat image as dirty if the header was updated successfully */
530     s->incompatible_features |= QCOW2_INCOMPAT_DIRTY;
531     return 0;
532 }
533 
534 /*
535  * Clears the dirty bit and flushes before if necessary.  Only call this
536  * function when there are no pending requests, it does not guard against
537  * concurrent requests dirtying the image.
538  */
539 static int qcow2_mark_clean(BlockDriverState *bs)
540 {
541     BDRVQcow2State *s = bs->opaque;
542 
543     if (s->incompatible_features & QCOW2_INCOMPAT_DIRTY) {
544         int ret;
545 
546         s->incompatible_features &= ~QCOW2_INCOMPAT_DIRTY;
547 
548         ret = qcow2_flush_caches(bs);
549         if (ret < 0) {
550             return ret;
551         }
552 
553         return qcow2_update_header(bs);
554     }
555     return 0;
556 }
557 
558 /*
559  * Marks the image as corrupt.
560  */
561 int qcow2_mark_corrupt(BlockDriverState *bs)
562 {
563     BDRVQcow2State *s = bs->opaque;
564 
565     s->incompatible_features |= QCOW2_INCOMPAT_CORRUPT;
566     return qcow2_update_header(bs);
567 }
568 
569 /*
570  * Marks the image as consistent, i.e., unsets the corrupt bit, and flushes
571  * before if necessary.
572  */
573 static int coroutine_fn qcow2_mark_consistent(BlockDriverState *bs)
574 {
575     BDRVQcow2State *s = bs->opaque;
576 
577     if (s->incompatible_features & QCOW2_INCOMPAT_CORRUPT) {
578         int ret = qcow2_flush_caches(bs);
579         if (ret < 0) {
580             return ret;
581         }
582 
583         s->incompatible_features &= ~QCOW2_INCOMPAT_CORRUPT;
584         return qcow2_update_header(bs);
585     }
586     return 0;
587 }
588 
589 static void qcow2_add_check_result(BdrvCheckResult *out,
590                                    const BdrvCheckResult *src,
591                                    bool set_allocation_info)
592 {
593     out->corruptions += src->corruptions;
594     out->leaks += src->leaks;
595     out->check_errors += src->check_errors;
596     out->corruptions_fixed += src->corruptions_fixed;
597     out->leaks_fixed += src->leaks_fixed;
598 
599     if (set_allocation_info) {
600         out->image_end_offset = src->image_end_offset;
601         out->bfi = src->bfi;
602     }
603 }
604 
605 static int coroutine_fn GRAPH_RDLOCK
606 qcow2_co_check_locked(BlockDriverState *bs, BdrvCheckResult *result,
607                       BdrvCheckMode fix)
608 {
609     BdrvCheckResult snapshot_res = {};
610     BdrvCheckResult refcount_res = {};
611     int ret;
612 
613     memset(result, 0, sizeof(*result));
614 
615     ret = qcow2_check_read_snapshot_table(bs, &snapshot_res, fix);
616     if (ret < 0) {
617         qcow2_add_check_result(result, &snapshot_res, false);
618         return ret;
619     }
620 
621     ret = qcow2_check_refcounts(bs, &refcount_res, fix);
622     qcow2_add_check_result(result, &refcount_res, true);
623     if (ret < 0) {
624         qcow2_add_check_result(result, &snapshot_res, false);
625         return ret;
626     }
627 
628     ret = qcow2_check_fix_snapshot_table(bs, &snapshot_res, fix);
629     qcow2_add_check_result(result, &snapshot_res, false);
630     if (ret < 0) {
631         return ret;
632     }
633 
634     if (fix && result->check_errors == 0 && result->corruptions == 0) {
635         ret = qcow2_mark_clean(bs);
636         if (ret < 0) {
637             return ret;
638         }
639         return qcow2_mark_consistent(bs);
640     }
641     return ret;
642 }
643 
644 static int coroutine_fn GRAPH_RDLOCK
645 qcow2_co_check(BlockDriverState *bs, BdrvCheckResult *result,
646                BdrvCheckMode fix)
647 {
648     BDRVQcow2State *s = bs->opaque;
649     int ret;
650 
651     qemu_co_mutex_lock(&s->lock);
652     ret = qcow2_co_check_locked(bs, result, fix);
653     qemu_co_mutex_unlock(&s->lock);
654     return ret;
655 }
656 
657 int qcow2_validate_table(BlockDriverState *bs, uint64_t offset,
658                          uint64_t entries, size_t entry_len,
659                          int64_t max_size_bytes, const char *table_name,
660                          Error **errp)
661 {
662     BDRVQcow2State *s = bs->opaque;
663 
664     if (entries > max_size_bytes / entry_len) {
665         error_setg(errp, "%s too large", table_name);
666         return -EFBIG;
667     }
668 
669     /* Use signed INT64_MAX as the maximum even for uint64_t header fields,
670      * because values will be passed to qemu functions taking int64_t. */
671     if ((INT64_MAX - entries * entry_len < offset) ||
672         (offset_into_cluster(s, offset) != 0)) {
673         error_setg(errp, "%s offset invalid", table_name);
674         return -EINVAL;
675     }
676 
677     return 0;
678 }
679 
680 static const char *const mutable_opts[] = {
681     QCOW2_OPT_LAZY_REFCOUNTS,
682     QCOW2_OPT_DISCARD_REQUEST,
683     QCOW2_OPT_DISCARD_SNAPSHOT,
684     QCOW2_OPT_DISCARD_OTHER,
685     QCOW2_OPT_DISCARD_NO_UNREF,
686     QCOW2_OPT_OVERLAP,
687     QCOW2_OPT_OVERLAP_TEMPLATE,
688     QCOW2_OPT_OVERLAP_MAIN_HEADER,
689     QCOW2_OPT_OVERLAP_ACTIVE_L1,
690     QCOW2_OPT_OVERLAP_ACTIVE_L2,
691     QCOW2_OPT_OVERLAP_REFCOUNT_TABLE,
692     QCOW2_OPT_OVERLAP_REFCOUNT_BLOCK,
693     QCOW2_OPT_OVERLAP_SNAPSHOT_TABLE,
694     QCOW2_OPT_OVERLAP_INACTIVE_L1,
695     QCOW2_OPT_OVERLAP_INACTIVE_L2,
696     QCOW2_OPT_OVERLAP_BITMAP_DIRECTORY,
697     QCOW2_OPT_CACHE_SIZE,
698     QCOW2_OPT_L2_CACHE_SIZE,
699     QCOW2_OPT_L2_CACHE_ENTRY_SIZE,
700     QCOW2_OPT_REFCOUNT_CACHE_SIZE,
701     QCOW2_OPT_CACHE_CLEAN_INTERVAL,
702     NULL
703 };
704 
705 static QemuOptsList qcow2_runtime_opts = {
706     .name = "qcow2",
707     .head = QTAILQ_HEAD_INITIALIZER(qcow2_runtime_opts.head),
708     .desc = {
709         {
710             .name = QCOW2_OPT_LAZY_REFCOUNTS,
711             .type = QEMU_OPT_BOOL,
712             .help = "Postpone refcount updates",
713         },
714         {
715             .name = QCOW2_OPT_DISCARD_REQUEST,
716             .type = QEMU_OPT_BOOL,
717             .help = "Pass guest discard requests to the layer below",
718         },
719         {
720             .name = QCOW2_OPT_DISCARD_SNAPSHOT,
721             .type = QEMU_OPT_BOOL,
722             .help = "Generate discard requests when snapshot related space "
723                     "is freed",
724         },
725         {
726             .name = QCOW2_OPT_DISCARD_OTHER,
727             .type = QEMU_OPT_BOOL,
728             .help = "Generate discard requests when other clusters are freed",
729         },
730         {
731             .name = QCOW2_OPT_DISCARD_NO_UNREF,
732             .type = QEMU_OPT_BOOL,
733             .help = "Do not unreference discarded clusters",
734         },
735         {
736             .name = QCOW2_OPT_OVERLAP,
737             .type = QEMU_OPT_STRING,
738             .help = "Selects which overlap checks to perform from a range of "
739                     "templates (none, constant, cached, all)",
740         },
741         {
742             .name = QCOW2_OPT_OVERLAP_TEMPLATE,
743             .type = QEMU_OPT_STRING,
744             .help = "Selects which overlap checks to perform from a range of "
745                     "templates (none, constant, cached, all)",
746         },
747         {
748             .name = QCOW2_OPT_OVERLAP_MAIN_HEADER,
749             .type = QEMU_OPT_BOOL,
750             .help = "Check for unintended writes into the main qcow2 header",
751         },
752         {
753             .name = QCOW2_OPT_OVERLAP_ACTIVE_L1,
754             .type = QEMU_OPT_BOOL,
755             .help = "Check for unintended writes into the active L1 table",
756         },
757         {
758             .name = QCOW2_OPT_OVERLAP_ACTIVE_L2,
759             .type = QEMU_OPT_BOOL,
760             .help = "Check for unintended writes into an active L2 table",
761         },
762         {
763             .name = QCOW2_OPT_OVERLAP_REFCOUNT_TABLE,
764             .type = QEMU_OPT_BOOL,
765             .help = "Check for unintended writes into the refcount table",
766         },
767         {
768             .name = QCOW2_OPT_OVERLAP_REFCOUNT_BLOCK,
769             .type = QEMU_OPT_BOOL,
770             .help = "Check for unintended writes into a refcount block",
771         },
772         {
773             .name = QCOW2_OPT_OVERLAP_SNAPSHOT_TABLE,
774             .type = QEMU_OPT_BOOL,
775             .help = "Check for unintended writes into the snapshot table",
776         },
777         {
778             .name = QCOW2_OPT_OVERLAP_INACTIVE_L1,
779             .type = QEMU_OPT_BOOL,
780             .help = "Check for unintended writes into an inactive L1 table",
781         },
782         {
783             .name = QCOW2_OPT_OVERLAP_INACTIVE_L2,
784             .type = QEMU_OPT_BOOL,
785             .help = "Check for unintended writes into an inactive L2 table",
786         },
787         {
788             .name = QCOW2_OPT_OVERLAP_BITMAP_DIRECTORY,
789             .type = QEMU_OPT_BOOL,
790             .help = "Check for unintended writes into the bitmap directory",
791         },
792         {
793             .name = QCOW2_OPT_CACHE_SIZE,
794             .type = QEMU_OPT_SIZE,
795             .help = "Maximum combined metadata (L2 tables and refcount blocks) "
796                     "cache size",
797         },
798         {
799             .name = QCOW2_OPT_L2_CACHE_SIZE,
800             .type = QEMU_OPT_SIZE,
801             .help = "Maximum L2 table cache size",
802         },
803         {
804             .name = QCOW2_OPT_L2_CACHE_ENTRY_SIZE,
805             .type = QEMU_OPT_SIZE,
806             .help = "Size of each entry in the L2 cache",
807         },
808         {
809             .name = QCOW2_OPT_REFCOUNT_CACHE_SIZE,
810             .type = QEMU_OPT_SIZE,
811             .help = "Maximum refcount block cache size",
812         },
813         {
814             .name = QCOW2_OPT_CACHE_CLEAN_INTERVAL,
815             .type = QEMU_OPT_NUMBER,
816             .help = "Clean unused cache entries after this time (in seconds)",
817         },
818         BLOCK_CRYPTO_OPT_DEF_KEY_SECRET("encrypt.",
819             "ID of secret providing qcow2 AES key or LUKS passphrase"),
820         { /* end of list */ }
821     },
822 };
823 
824 static const char *overlap_bool_option_names[QCOW2_OL_MAX_BITNR] = {
825     [QCOW2_OL_MAIN_HEADER_BITNR]      = QCOW2_OPT_OVERLAP_MAIN_HEADER,
826     [QCOW2_OL_ACTIVE_L1_BITNR]        = QCOW2_OPT_OVERLAP_ACTIVE_L1,
827     [QCOW2_OL_ACTIVE_L2_BITNR]        = QCOW2_OPT_OVERLAP_ACTIVE_L2,
828     [QCOW2_OL_REFCOUNT_TABLE_BITNR]   = QCOW2_OPT_OVERLAP_REFCOUNT_TABLE,
829     [QCOW2_OL_REFCOUNT_BLOCK_BITNR]   = QCOW2_OPT_OVERLAP_REFCOUNT_BLOCK,
830     [QCOW2_OL_SNAPSHOT_TABLE_BITNR]   = QCOW2_OPT_OVERLAP_SNAPSHOT_TABLE,
831     [QCOW2_OL_INACTIVE_L1_BITNR]      = QCOW2_OPT_OVERLAP_INACTIVE_L1,
832     [QCOW2_OL_INACTIVE_L2_BITNR]      = QCOW2_OPT_OVERLAP_INACTIVE_L2,
833     [QCOW2_OL_BITMAP_DIRECTORY_BITNR] = QCOW2_OPT_OVERLAP_BITMAP_DIRECTORY,
834 };
835 
836 static void cache_clean_timer_cb(void *opaque)
837 {
838     BlockDriverState *bs = opaque;
839     BDRVQcow2State *s = bs->opaque;
840     qcow2_cache_clean_unused(s->l2_table_cache);
841     qcow2_cache_clean_unused(s->refcount_block_cache);
842     timer_mod(s->cache_clean_timer, qemu_clock_get_ms(QEMU_CLOCK_VIRTUAL) +
843               (int64_t) s->cache_clean_interval * 1000);
844 }
845 
846 static void cache_clean_timer_init(BlockDriverState *bs, AioContext *context)
847 {
848     BDRVQcow2State *s = bs->opaque;
849     if (s->cache_clean_interval > 0) {
850         s->cache_clean_timer =
851             aio_timer_new_with_attrs(context, QEMU_CLOCK_VIRTUAL,
852                                      SCALE_MS, QEMU_TIMER_ATTR_EXTERNAL,
853                                      cache_clean_timer_cb, bs);
854         timer_mod(s->cache_clean_timer, qemu_clock_get_ms(QEMU_CLOCK_VIRTUAL) +
855                   (int64_t) s->cache_clean_interval * 1000);
856     }
857 }
858 
859 static void cache_clean_timer_del(BlockDriverState *bs)
860 {
861     BDRVQcow2State *s = bs->opaque;
862     if (s->cache_clean_timer) {
863         timer_free(s->cache_clean_timer);
864         s->cache_clean_timer = NULL;
865     }
866 }
867 
868 static void qcow2_detach_aio_context(BlockDriverState *bs)
869 {
870     cache_clean_timer_del(bs);
871 }
872 
873 static void qcow2_attach_aio_context(BlockDriverState *bs,
874                                      AioContext *new_context)
875 {
876     cache_clean_timer_init(bs, new_context);
877 }
878 
879 static bool read_cache_sizes(BlockDriverState *bs, QemuOpts *opts,
880                              uint64_t *l2_cache_size,
881                              uint64_t *l2_cache_entry_size,
882                              uint64_t *refcount_cache_size, Error **errp)
883 {
884     BDRVQcow2State *s = bs->opaque;
885     uint64_t combined_cache_size, l2_cache_max_setting;
886     bool l2_cache_size_set, refcount_cache_size_set, combined_cache_size_set;
887     bool l2_cache_entry_size_set;
888     int min_refcount_cache = MIN_REFCOUNT_CACHE_SIZE * s->cluster_size;
889     uint64_t virtual_disk_size = bs->total_sectors * BDRV_SECTOR_SIZE;
890     uint64_t max_l2_entries = DIV_ROUND_UP(virtual_disk_size, s->cluster_size);
891     /* An L2 table is always one cluster in size so the max cache size
892      * should be a multiple of the cluster size. */
893     uint64_t max_l2_cache = ROUND_UP(max_l2_entries * l2_entry_size(s),
894                                      s->cluster_size);
895 
896     combined_cache_size_set = qemu_opt_get(opts, QCOW2_OPT_CACHE_SIZE);
897     l2_cache_size_set = qemu_opt_get(opts, QCOW2_OPT_L2_CACHE_SIZE);
898     refcount_cache_size_set = qemu_opt_get(opts, QCOW2_OPT_REFCOUNT_CACHE_SIZE);
899     l2_cache_entry_size_set = qemu_opt_get(opts, QCOW2_OPT_L2_CACHE_ENTRY_SIZE);
900 
901     combined_cache_size = qemu_opt_get_size(opts, QCOW2_OPT_CACHE_SIZE, 0);
902     l2_cache_max_setting = qemu_opt_get_size(opts, QCOW2_OPT_L2_CACHE_SIZE,
903                                              DEFAULT_L2_CACHE_MAX_SIZE);
904     *refcount_cache_size = qemu_opt_get_size(opts,
905                                              QCOW2_OPT_REFCOUNT_CACHE_SIZE, 0);
906 
907     *l2_cache_entry_size = qemu_opt_get_size(
908         opts, QCOW2_OPT_L2_CACHE_ENTRY_SIZE, s->cluster_size);
909 
910     *l2_cache_size = MIN(max_l2_cache, l2_cache_max_setting);
911 
912     if (combined_cache_size_set) {
913         if (l2_cache_size_set && refcount_cache_size_set) {
914             error_setg(errp, QCOW2_OPT_CACHE_SIZE ", " QCOW2_OPT_L2_CACHE_SIZE
915                        " and " QCOW2_OPT_REFCOUNT_CACHE_SIZE " may not be set "
916                        "at the same time");
917             return false;
918         } else if (l2_cache_size_set &&
919                    (l2_cache_max_setting > combined_cache_size)) {
920             error_setg(errp, QCOW2_OPT_L2_CACHE_SIZE " may not exceed "
921                        QCOW2_OPT_CACHE_SIZE);
922             return false;
923         } else if (*refcount_cache_size > combined_cache_size) {
924             error_setg(errp, QCOW2_OPT_REFCOUNT_CACHE_SIZE " may not exceed "
925                        QCOW2_OPT_CACHE_SIZE);
926             return false;
927         }
928 
929         if (l2_cache_size_set) {
930             *refcount_cache_size = combined_cache_size - *l2_cache_size;
931         } else if (refcount_cache_size_set) {
932             *l2_cache_size = combined_cache_size - *refcount_cache_size;
933         } else {
934             /* Assign as much memory as possible to the L2 cache, and
935              * use the remainder for the refcount cache */
936             if (combined_cache_size >= max_l2_cache + min_refcount_cache) {
937                 *l2_cache_size = max_l2_cache;
938                 *refcount_cache_size = combined_cache_size - *l2_cache_size;
939             } else {
940                 *refcount_cache_size =
941                     MIN(combined_cache_size, min_refcount_cache);
942                 *l2_cache_size = combined_cache_size - *refcount_cache_size;
943             }
944         }
945     }
946 
947     /*
948      * If the L2 cache is not enough to cover the whole disk then
949      * default to 4KB entries. Smaller entries reduce the cost of
950      * loads and evictions and increase I/O performance.
951      */
952     if (*l2_cache_size < max_l2_cache && !l2_cache_entry_size_set) {
953         *l2_cache_entry_size = MIN(s->cluster_size, 4096);
954     }
955 
956     /* l2_cache_size and refcount_cache_size are ensured to have at least
957      * their minimum values in qcow2_update_options_prepare() */
958 
959     if (*l2_cache_entry_size < (1 << MIN_CLUSTER_BITS) ||
960         *l2_cache_entry_size > s->cluster_size ||
961         !is_power_of_2(*l2_cache_entry_size)) {
962         error_setg(errp, "L2 cache entry size must be a power of two "
963                    "between %d and the cluster size (%d)",
964                    1 << MIN_CLUSTER_BITS, s->cluster_size);
965         return false;
966     }
967 
968     return true;
969 }
970 
971 typedef struct Qcow2ReopenState {
972     Qcow2Cache *l2_table_cache;
973     Qcow2Cache *refcount_block_cache;
974     int l2_slice_size; /* Number of entries in a slice of the L2 table */
975     bool use_lazy_refcounts;
976     int overlap_check;
977     bool discard_passthrough[QCOW2_DISCARD_MAX];
978     bool discard_no_unref;
979     uint64_t cache_clean_interval;
980     QCryptoBlockOpenOptions *crypto_opts; /* Disk encryption runtime options */
981 } Qcow2ReopenState;
982 
983 static int qcow2_update_options_prepare(BlockDriverState *bs,
984                                         Qcow2ReopenState *r,
985                                         QDict *options, int flags,
986                                         Error **errp)
987 {
988     BDRVQcow2State *s = bs->opaque;
989     QemuOpts *opts = NULL;
990     const char *opt_overlap_check, *opt_overlap_check_template;
991     int overlap_check_template = 0;
992     uint64_t l2_cache_size, l2_cache_entry_size, refcount_cache_size;
993     int i;
994     const char *encryptfmt;
995     QDict *encryptopts = NULL;
996     int ret;
997 
998     qdict_extract_subqdict(options, &encryptopts, "encrypt.");
999     encryptfmt = qdict_get_try_str(encryptopts, "format");
1000 
1001     opts = qemu_opts_create(&qcow2_runtime_opts, NULL, 0, &error_abort);
1002     if (!qemu_opts_absorb_qdict(opts, options, errp)) {
1003         ret = -EINVAL;
1004         goto fail;
1005     }
1006 
1007     /* get L2 table/refcount block cache size from command line options */
1008     if (!read_cache_sizes(bs, opts, &l2_cache_size, &l2_cache_entry_size,
1009                           &refcount_cache_size, errp)) {
1010         ret = -EINVAL;
1011         goto fail;
1012     }
1013 
1014     l2_cache_size /= l2_cache_entry_size;
1015     if (l2_cache_size < MIN_L2_CACHE_SIZE) {
1016         l2_cache_size = MIN_L2_CACHE_SIZE;
1017     }
1018     if (l2_cache_size > INT_MAX) {
1019         error_setg(errp, "L2 cache size too big");
1020         ret = -EINVAL;
1021         goto fail;
1022     }
1023 
1024     refcount_cache_size /= s->cluster_size;
1025     if (refcount_cache_size < MIN_REFCOUNT_CACHE_SIZE) {
1026         refcount_cache_size = MIN_REFCOUNT_CACHE_SIZE;
1027     }
1028     if (refcount_cache_size > INT_MAX) {
1029         error_setg(errp, "Refcount cache size too big");
1030         ret = -EINVAL;
1031         goto fail;
1032     }
1033 
1034     /* alloc new L2 table/refcount block cache, flush old one */
1035     if (s->l2_table_cache) {
1036         ret = qcow2_cache_flush(bs, s->l2_table_cache);
1037         if (ret) {
1038             error_setg_errno(errp, -ret, "Failed to flush the L2 table cache");
1039             goto fail;
1040         }
1041     }
1042 
1043     if (s->refcount_block_cache) {
1044         ret = qcow2_cache_flush(bs, s->refcount_block_cache);
1045         if (ret) {
1046             error_setg_errno(errp, -ret,
1047                              "Failed to flush the refcount block cache");
1048             goto fail;
1049         }
1050     }
1051 
1052     r->l2_slice_size = l2_cache_entry_size / l2_entry_size(s);
1053     r->l2_table_cache = qcow2_cache_create(bs, l2_cache_size,
1054                                            l2_cache_entry_size);
1055     r->refcount_block_cache = qcow2_cache_create(bs, refcount_cache_size,
1056                                                  s->cluster_size);
1057     if (r->l2_table_cache == NULL || r->refcount_block_cache == NULL) {
1058         error_setg(errp, "Could not allocate metadata caches");
1059         ret = -ENOMEM;
1060         goto fail;
1061     }
1062 
1063     /* New interval for cache cleanup timer */
1064     r->cache_clean_interval =
1065         qemu_opt_get_number(opts, QCOW2_OPT_CACHE_CLEAN_INTERVAL,
1066                             DEFAULT_CACHE_CLEAN_INTERVAL);
1067 #ifndef CONFIG_LINUX
1068     if (r->cache_clean_interval != 0) {
1069         error_setg(errp, QCOW2_OPT_CACHE_CLEAN_INTERVAL
1070                    " not supported on this host");
1071         ret = -EINVAL;
1072         goto fail;
1073     }
1074 #endif
1075     if (r->cache_clean_interval > UINT_MAX) {
1076         error_setg(errp, "Cache clean interval too big");
1077         ret = -EINVAL;
1078         goto fail;
1079     }
1080 
1081     /* lazy-refcounts; flush if going from enabled to disabled */
1082     r->use_lazy_refcounts = qemu_opt_get_bool(opts, QCOW2_OPT_LAZY_REFCOUNTS,
1083         (s->compatible_features & QCOW2_COMPAT_LAZY_REFCOUNTS));
1084     if (r->use_lazy_refcounts && s->qcow_version < 3) {
1085         error_setg(errp, "Lazy refcounts require a qcow2 image with at least "
1086                    "qemu 1.1 compatibility level");
1087         ret = -EINVAL;
1088         goto fail;
1089     }
1090 
1091     if (s->use_lazy_refcounts && !r->use_lazy_refcounts) {
1092         ret = qcow2_mark_clean(bs);
1093         if (ret < 0) {
1094             error_setg_errno(errp, -ret, "Failed to disable lazy refcounts");
1095             goto fail;
1096         }
1097     }
1098 
1099     /* Overlap check options */
1100     opt_overlap_check = qemu_opt_get(opts, QCOW2_OPT_OVERLAP);
1101     opt_overlap_check_template = qemu_opt_get(opts, QCOW2_OPT_OVERLAP_TEMPLATE);
1102     if (opt_overlap_check_template && opt_overlap_check &&
1103         strcmp(opt_overlap_check_template, opt_overlap_check))
1104     {
1105         error_setg(errp, "Conflicting values for qcow2 options '"
1106                    QCOW2_OPT_OVERLAP "' ('%s') and '" QCOW2_OPT_OVERLAP_TEMPLATE
1107                    "' ('%s')", opt_overlap_check, opt_overlap_check_template);
1108         ret = -EINVAL;
1109         goto fail;
1110     }
1111     if (!opt_overlap_check) {
1112         opt_overlap_check = opt_overlap_check_template ?: "cached";
1113     }
1114 
1115     if (!strcmp(opt_overlap_check, "none")) {
1116         overlap_check_template = 0;
1117     } else if (!strcmp(opt_overlap_check, "constant")) {
1118         overlap_check_template = QCOW2_OL_CONSTANT;
1119     } else if (!strcmp(opt_overlap_check, "cached")) {
1120         overlap_check_template = QCOW2_OL_CACHED;
1121     } else if (!strcmp(opt_overlap_check, "all")) {
1122         overlap_check_template = QCOW2_OL_ALL;
1123     } else {
1124         error_setg(errp, "Unsupported value '%s' for qcow2 option "
1125                    "'overlap-check'. Allowed are any of the following: "
1126                    "none, constant, cached, all", opt_overlap_check);
1127         ret = -EINVAL;
1128         goto fail;
1129     }
1130 
1131     r->overlap_check = 0;
1132     for (i = 0; i < QCOW2_OL_MAX_BITNR; i++) {
1133         /* overlap-check defines a template bitmask, but every flag may be
1134          * overwritten through the associated boolean option */
1135         r->overlap_check |=
1136             qemu_opt_get_bool(opts, overlap_bool_option_names[i],
1137                               overlap_check_template & (1 << i)) << i;
1138     }
1139 
1140     r->discard_passthrough[QCOW2_DISCARD_NEVER] = false;
1141     r->discard_passthrough[QCOW2_DISCARD_ALWAYS] = true;
1142     r->discard_passthrough[QCOW2_DISCARD_REQUEST] =
1143         qemu_opt_get_bool(opts, QCOW2_OPT_DISCARD_REQUEST,
1144                           flags & BDRV_O_UNMAP);
1145     r->discard_passthrough[QCOW2_DISCARD_SNAPSHOT] =
1146         qemu_opt_get_bool(opts, QCOW2_OPT_DISCARD_SNAPSHOT, true);
1147     r->discard_passthrough[QCOW2_DISCARD_OTHER] =
1148         qemu_opt_get_bool(opts, QCOW2_OPT_DISCARD_OTHER, false);
1149 
1150     r->discard_no_unref = qemu_opt_get_bool(opts, QCOW2_OPT_DISCARD_NO_UNREF,
1151                                             false);
1152     if (r->discard_no_unref && s->qcow_version < 3) {
1153         error_setg(errp,
1154                    "discard-no-unref is only supported since qcow2 version 3");
1155         ret = -EINVAL;
1156         goto fail;
1157     }
1158 
1159     switch (s->crypt_method_header) {
1160     case QCOW_CRYPT_NONE:
1161         if (encryptfmt) {
1162             error_setg(errp, "No encryption in image header, but options "
1163                        "specified format '%s'", encryptfmt);
1164             ret = -EINVAL;
1165             goto fail;
1166         }
1167         break;
1168 
1169     case QCOW_CRYPT_AES:
1170         if (encryptfmt && !g_str_equal(encryptfmt, "aes")) {
1171             error_setg(errp,
1172                        "Header reported 'aes' encryption format but "
1173                        "options specify '%s'", encryptfmt);
1174             ret = -EINVAL;
1175             goto fail;
1176         }
1177         qdict_put_str(encryptopts, "format", "qcow");
1178         r->crypto_opts = block_crypto_open_opts_init(encryptopts, errp);
1179         if (!r->crypto_opts) {
1180             ret = -EINVAL;
1181             goto fail;
1182         }
1183         break;
1184 
1185     case QCOW_CRYPT_LUKS:
1186         if (encryptfmt && !g_str_equal(encryptfmt, "luks")) {
1187             error_setg(errp,
1188                        "Header reported 'luks' encryption format but "
1189                        "options specify '%s'", encryptfmt);
1190             ret = -EINVAL;
1191             goto fail;
1192         }
1193         qdict_put_str(encryptopts, "format", "luks");
1194         r->crypto_opts = block_crypto_open_opts_init(encryptopts, errp);
1195         if (!r->crypto_opts) {
1196             ret = -EINVAL;
1197             goto fail;
1198         }
1199         break;
1200 
1201     default:
1202         error_setg(errp, "Unsupported encryption method %d",
1203                    s->crypt_method_header);
1204         ret = -EINVAL;
1205         goto fail;
1206     }
1207 
1208     ret = 0;
1209 fail:
1210     qobject_unref(encryptopts);
1211     qemu_opts_del(opts);
1212     opts = NULL;
1213     return ret;
1214 }
1215 
1216 static void qcow2_update_options_commit(BlockDriverState *bs,
1217                                         Qcow2ReopenState *r)
1218 {
1219     BDRVQcow2State *s = bs->opaque;
1220     int i;
1221 
1222     if (s->l2_table_cache) {
1223         qcow2_cache_destroy(s->l2_table_cache);
1224     }
1225     if (s->refcount_block_cache) {
1226         qcow2_cache_destroy(s->refcount_block_cache);
1227     }
1228     s->l2_table_cache = r->l2_table_cache;
1229     s->refcount_block_cache = r->refcount_block_cache;
1230     s->l2_slice_size = r->l2_slice_size;
1231 
1232     s->overlap_check = r->overlap_check;
1233     s->use_lazy_refcounts = r->use_lazy_refcounts;
1234 
1235     for (i = 0; i < QCOW2_DISCARD_MAX; i++) {
1236         s->discard_passthrough[i] = r->discard_passthrough[i];
1237     }
1238 
1239     s->discard_no_unref = r->discard_no_unref;
1240 
1241     if (s->cache_clean_interval != r->cache_clean_interval) {
1242         cache_clean_timer_del(bs);
1243         s->cache_clean_interval = r->cache_clean_interval;
1244         cache_clean_timer_init(bs, bdrv_get_aio_context(bs));
1245     }
1246 
1247     qapi_free_QCryptoBlockOpenOptions(s->crypto_opts);
1248     s->crypto_opts = r->crypto_opts;
1249 }
1250 
1251 static void qcow2_update_options_abort(BlockDriverState *bs,
1252                                        Qcow2ReopenState *r)
1253 {
1254     if (r->l2_table_cache) {
1255         qcow2_cache_destroy(r->l2_table_cache);
1256     }
1257     if (r->refcount_block_cache) {
1258         qcow2_cache_destroy(r->refcount_block_cache);
1259     }
1260     qapi_free_QCryptoBlockOpenOptions(r->crypto_opts);
1261 }
1262 
1263 static int coroutine_fn
1264 qcow2_update_options(BlockDriverState *bs, QDict *options, int flags,
1265                      Error **errp)
1266 {
1267     Qcow2ReopenState r = {};
1268     int ret;
1269 
1270     ret = qcow2_update_options_prepare(bs, &r, options, flags, errp);
1271     if (ret >= 0) {
1272         qcow2_update_options_commit(bs, &r);
1273     } else {
1274         qcow2_update_options_abort(bs, &r);
1275     }
1276 
1277     return ret;
1278 }
1279 
1280 static int validate_compression_type(BDRVQcow2State *s, Error **errp)
1281 {
1282     switch (s->compression_type) {
1283     case QCOW2_COMPRESSION_TYPE_ZLIB:
1284 #ifdef CONFIG_ZSTD
1285     case QCOW2_COMPRESSION_TYPE_ZSTD:
1286 #endif
1287         break;
1288 
1289     default:
1290         error_setg(errp, "qcow2: unknown compression type: %u",
1291                    s->compression_type);
1292         return -ENOTSUP;
1293     }
1294 
1295     /*
1296      * if the compression type differs from QCOW2_COMPRESSION_TYPE_ZLIB
1297      * the incompatible feature flag must be set
1298      */
1299     if (s->compression_type == QCOW2_COMPRESSION_TYPE_ZLIB) {
1300         if (s->incompatible_features & QCOW2_INCOMPAT_COMPRESSION) {
1301             error_setg(errp, "qcow2: Compression type incompatible feature "
1302                              "bit must not be set");
1303             return -EINVAL;
1304         }
1305     } else {
1306         if (!(s->incompatible_features & QCOW2_INCOMPAT_COMPRESSION)) {
1307             error_setg(errp, "qcow2: Compression type incompatible feature "
1308                              "bit must be set");
1309             return -EINVAL;
1310         }
1311     }
1312 
1313     return 0;
1314 }
1315 
1316 /* Called with s->lock held.  */
1317 static int coroutine_fn GRAPH_RDLOCK
1318 qcow2_do_open(BlockDriverState *bs, QDict *options, int flags,
1319               bool open_data_file, Error **errp)
1320 {
1321     ERRP_GUARD();
1322     BDRVQcow2State *s = bs->opaque;
1323     unsigned int len, i;
1324     int ret = 0;
1325     QCowHeader header;
1326     uint64_t ext_end;
1327     uint64_t l1_vm_state_index;
1328     bool update_header = false;
1329 
1330     ret = bdrv_co_pread(bs->file, 0, sizeof(header), &header, 0);
1331     if (ret < 0) {
1332         error_setg_errno(errp, -ret, "Could not read qcow2 header");
1333         goto fail;
1334     }
1335     header.magic = be32_to_cpu(header.magic);
1336     header.version = be32_to_cpu(header.version);
1337     header.backing_file_offset = be64_to_cpu(header.backing_file_offset);
1338     header.backing_file_size = be32_to_cpu(header.backing_file_size);
1339     header.size = be64_to_cpu(header.size);
1340     header.cluster_bits = be32_to_cpu(header.cluster_bits);
1341     header.crypt_method = be32_to_cpu(header.crypt_method);
1342     header.l1_table_offset = be64_to_cpu(header.l1_table_offset);
1343     header.l1_size = be32_to_cpu(header.l1_size);
1344     header.refcount_table_offset = be64_to_cpu(header.refcount_table_offset);
1345     header.refcount_table_clusters =
1346         be32_to_cpu(header.refcount_table_clusters);
1347     header.snapshots_offset = be64_to_cpu(header.snapshots_offset);
1348     header.nb_snapshots = be32_to_cpu(header.nb_snapshots);
1349 
1350     if (header.magic != QCOW_MAGIC) {
1351         error_setg(errp, "Image is not in qcow2 format");
1352         ret = -EINVAL;
1353         goto fail;
1354     }
1355     if (header.version < 2 || header.version > 3) {
1356         error_setg(errp, "Unsupported qcow2 version %" PRIu32, header.version);
1357         ret = -ENOTSUP;
1358         goto fail;
1359     }
1360 
1361     s->qcow_version = header.version;
1362 
1363     /* Initialise cluster size */
1364     if (header.cluster_bits < MIN_CLUSTER_BITS ||
1365         header.cluster_bits > MAX_CLUSTER_BITS) {
1366         error_setg(errp, "Unsupported cluster size: 2^%" PRIu32,
1367                    header.cluster_bits);
1368         ret = -EINVAL;
1369         goto fail;
1370     }
1371 
1372     s->cluster_bits = header.cluster_bits;
1373     s->cluster_size = 1 << s->cluster_bits;
1374 
1375     /* Initialise version 3 header fields */
1376     if (header.version == 2) {
1377         header.incompatible_features    = 0;
1378         header.compatible_features      = 0;
1379         header.autoclear_features       = 0;
1380         header.refcount_order           = 4;
1381         header.header_length            = 72;
1382     } else {
1383         header.incompatible_features =
1384             be64_to_cpu(header.incompatible_features);
1385         header.compatible_features = be64_to_cpu(header.compatible_features);
1386         header.autoclear_features = be64_to_cpu(header.autoclear_features);
1387         header.refcount_order = be32_to_cpu(header.refcount_order);
1388         header.header_length = be32_to_cpu(header.header_length);
1389 
1390         if (header.header_length < 104) {
1391             error_setg(errp, "qcow2 header too short");
1392             ret = -EINVAL;
1393             goto fail;
1394         }
1395     }
1396 
1397     if (header.header_length > s->cluster_size) {
1398         error_setg(errp, "qcow2 header exceeds cluster size");
1399         ret = -EINVAL;
1400         goto fail;
1401     }
1402 
1403     if (header.header_length > sizeof(header)) {
1404         s->unknown_header_fields_size = header.header_length - sizeof(header);
1405         s->unknown_header_fields = g_malloc(s->unknown_header_fields_size);
1406         ret = bdrv_co_pread(bs->file, sizeof(header),
1407                             s->unknown_header_fields_size,
1408                             s->unknown_header_fields, 0);
1409         if (ret < 0) {
1410             error_setg_errno(errp, -ret, "Could not read unknown qcow2 header "
1411                              "fields");
1412             goto fail;
1413         }
1414     }
1415 
1416     if (header.backing_file_offset > s->cluster_size) {
1417         error_setg(errp, "Invalid backing file offset");
1418         ret = -EINVAL;
1419         goto fail;
1420     }
1421 
1422     if (header.backing_file_offset) {
1423         ext_end = header.backing_file_offset;
1424     } else {
1425         ext_end = 1 << header.cluster_bits;
1426     }
1427 
1428     /* Handle feature bits */
1429     s->incompatible_features    = header.incompatible_features;
1430     s->compatible_features      = header.compatible_features;
1431     s->autoclear_features       = header.autoclear_features;
1432 
1433     /*
1434      * Handle compression type
1435      * Older qcow2 images don't contain the compression type header.
1436      * Distinguish them by the header length and use
1437      * the only valid (default) compression type in that case
1438      */
1439     if (header.header_length > offsetof(QCowHeader, compression_type)) {
1440         s->compression_type = header.compression_type;
1441     } else {
1442         s->compression_type = QCOW2_COMPRESSION_TYPE_ZLIB;
1443     }
1444 
1445     ret = validate_compression_type(s, errp);
1446     if (ret) {
1447         goto fail;
1448     }
1449 
1450     if (s->incompatible_features & ~QCOW2_INCOMPAT_MASK) {
1451         void *feature_table = NULL;
1452         qcow2_read_extensions(bs, header.header_length, ext_end,
1453                               &feature_table, flags, NULL, NULL);
1454         report_unsupported_feature(errp, feature_table,
1455                                    s->incompatible_features &
1456                                    ~QCOW2_INCOMPAT_MASK);
1457         ret = -ENOTSUP;
1458         g_free(feature_table);
1459         goto fail;
1460     }
1461 
1462     if (s->incompatible_features & QCOW2_INCOMPAT_CORRUPT) {
1463         /* Corrupt images may not be written to unless they are being repaired
1464          */
1465         if ((flags & BDRV_O_RDWR) && !(flags & BDRV_O_CHECK)) {
1466             error_setg(errp, "qcow2: Image is corrupt; cannot be opened "
1467                        "read/write");
1468             ret = -EACCES;
1469             goto fail;
1470         }
1471     }
1472 
1473     s->subclusters_per_cluster =
1474         has_subclusters(s) ? QCOW_EXTL2_SUBCLUSTERS_PER_CLUSTER : 1;
1475     s->subcluster_size = s->cluster_size / s->subclusters_per_cluster;
1476     s->subcluster_bits = ctz32(s->subcluster_size);
1477 
1478     if (s->subcluster_size < (1 << MIN_CLUSTER_BITS)) {
1479         error_setg(errp, "Unsupported subcluster size: %d", s->subcluster_size);
1480         ret = -EINVAL;
1481         goto fail;
1482     }
1483 
1484     /* Check support for various header values */
1485     if (header.refcount_order > 6) {
1486         error_setg(errp, "Reference count entry width too large; may not "
1487                    "exceed 64 bits");
1488         ret = -EINVAL;
1489         goto fail;
1490     }
1491     s->refcount_order = header.refcount_order;
1492     s->refcount_bits = 1 << s->refcount_order;
1493     s->refcount_max = UINT64_C(1) << (s->refcount_bits - 1);
1494     s->refcount_max += s->refcount_max - 1;
1495 
1496     s->crypt_method_header = header.crypt_method;
1497     if (s->crypt_method_header) {
1498         if (bdrv_uses_whitelist() &&
1499             s->crypt_method_header == QCOW_CRYPT_AES) {
1500             error_setg(errp,
1501                        "Use of AES-CBC encrypted qcow2 images is no longer "
1502                        "supported in system emulators");
1503             error_append_hint(errp,
1504                               "You can use 'qemu-img convert' to convert your "
1505                               "image to an alternative supported format, such "
1506                               "as unencrypted qcow2, or raw with the LUKS "
1507                               "format instead.\n");
1508             ret = -ENOSYS;
1509             goto fail;
1510         }
1511 
1512         if (s->crypt_method_header == QCOW_CRYPT_AES) {
1513             s->crypt_physical_offset = false;
1514         } else {
1515             /* Assuming LUKS and any future crypt methods we
1516              * add will all use physical offsets, due to the
1517              * fact that the alternative is insecure...  */
1518             s->crypt_physical_offset = true;
1519         }
1520 
1521         bs->encrypted = true;
1522     }
1523 
1524     s->l2_bits = s->cluster_bits - ctz32(l2_entry_size(s));
1525     s->l2_size = 1 << s->l2_bits;
1526     /* 2^(s->refcount_order - 3) is the refcount width in bytes */
1527     s->refcount_block_bits = s->cluster_bits - (s->refcount_order - 3);
1528     s->refcount_block_size = 1 << s->refcount_block_bits;
1529     bs->total_sectors = header.size / BDRV_SECTOR_SIZE;
1530     s->csize_shift = (62 - (s->cluster_bits - 8));
1531     s->csize_mask = (1 << (s->cluster_bits - 8)) - 1;
1532     s->cluster_offset_mask = (1LL << s->csize_shift) - 1;
1533 
1534     s->refcount_table_offset = header.refcount_table_offset;
1535     s->refcount_table_size =
1536         header.refcount_table_clusters << (s->cluster_bits - 3);
1537 
1538     if (header.refcount_table_clusters == 0 && !(flags & BDRV_O_CHECK)) {
1539         error_setg(errp, "Image does not contain a reference count table");
1540         ret = -EINVAL;
1541         goto fail;
1542     }
1543 
1544     ret = qcow2_validate_table(bs, s->refcount_table_offset,
1545                                header.refcount_table_clusters,
1546                                s->cluster_size, QCOW_MAX_REFTABLE_SIZE,
1547                                "Reference count table", errp);
1548     if (ret < 0) {
1549         goto fail;
1550     }
1551 
1552     if (!(flags & BDRV_O_CHECK)) {
1553         /*
1554          * The total size in bytes of the snapshot table is checked in
1555          * qcow2_read_snapshots() because the size of each snapshot is
1556          * variable and we don't know it yet.
1557          * Here we only check the offset and number of snapshots.
1558          */
1559         ret = qcow2_validate_table(bs, header.snapshots_offset,
1560                                    header.nb_snapshots,
1561                                    sizeof(QCowSnapshotHeader),
1562                                    sizeof(QCowSnapshotHeader) *
1563                                        QCOW_MAX_SNAPSHOTS,
1564                                    "Snapshot table", errp);
1565         if (ret < 0) {
1566             goto fail;
1567         }
1568     }
1569 
1570     /* read the level 1 table */
1571     ret = qcow2_validate_table(bs, header.l1_table_offset,
1572                                header.l1_size, L1E_SIZE,
1573                                QCOW_MAX_L1_SIZE, "Active L1 table", errp);
1574     if (ret < 0) {
1575         goto fail;
1576     }
1577     s->l1_size = header.l1_size;
1578     s->l1_table_offset = header.l1_table_offset;
1579 
1580     l1_vm_state_index = size_to_l1(s, header.size);
1581     if (l1_vm_state_index > INT_MAX) {
1582         error_setg(errp, "Image is too big");
1583         ret = -EFBIG;
1584         goto fail;
1585     }
1586     s->l1_vm_state_index = l1_vm_state_index;
1587 
1588     /* the L1 table must contain at least enough entries to put
1589        header.size bytes */
1590     if (s->l1_size < s->l1_vm_state_index) {
1591         error_setg(errp, "L1 table is too small");
1592         ret = -EINVAL;
1593         goto fail;
1594     }
1595 
1596     if (s->l1_size > 0) {
1597         s->l1_table = qemu_try_blockalign(bs->file->bs, s->l1_size * L1E_SIZE);
1598         if (s->l1_table == NULL) {
1599             error_setg(errp, "Could not allocate L1 table");
1600             ret = -ENOMEM;
1601             goto fail;
1602         }
1603         ret = bdrv_co_pread(bs->file, s->l1_table_offset, s->l1_size * L1E_SIZE,
1604                             s->l1_table, 0);
1605         if (ret < 0) {
1606             error_setg_errno(errp, -ret, "Could not read L1 table");
1607             goto fail;
1608         }
1609         for(i = 0;i < s->l1_size; i++) {
1610             s->l1_table[i] = be64_to_cpu(s->l1_table[i]);
1611         }
1612     }
1613 
1614     /* Parse driver-specific options */
1615     ret = qcow2_update_options(bs, options, flags, errp);
1616     if (ret < 0) {
1617         goto fail;
1618     }
1619 
1620     s->flags = flags;
1621 
1622     ret = qcow2_refcount_init(bs);
1623     if (ret != 0) {
1624         error_setg_errno(errp, -ret, "Could not initialize refcount handling");
1625         goto fail;
1626     }
1627 
1628     QLIST_INIT(&s->cluster_allocs);
1629     QTAILQ_INIT(&s->discards);
1630 
1631     /* read qcow2 extensions */
1632     if (qcow2_read_extensions(bs, header.header_length, ext_end, NULL,
1633                               flags, &update_header, errp)) {
1634         ret = -EINVAL;
1635         goto fail;
1636     }
1637 
1638     if (open_data_file) {
1639         /* Open external data file */
1640         bdrv_graph_co_rdunlock();
1641         s->data_file = bdrv_co_open_child(NULL, options, "data-file", bs,
1642                                           &child_of_bds, BDRV_CHILD_DATA,
1643                                           true, errp);
1644         bdrv_graph_co_rdlock();
1645         if (*errp) {
1646             ret = -EINVAL;
1647             goto fail;
1648         }
1649 
1650         if (s->incompatible_features & QCOW2_INCOMPAT_DATA_FILE) {
1651             if (!s->data_file && s->image_data_file) {
1652                 bdrv_graph_co_rdunlock();
1653                 s->data_file = bdrv_co_open_child(s->image_data_file, options,
1654                                                   "data-file", bs,
1655                                                   &child_of_bds,
1656                                                   BDRV_CHILD_DATA, false, errp);
1657                 bdrv_graph_co_rdlock();
1658                 if (!s->data_file) {
1659                     ret = -EINVAL;
1660                     goto fail;
1661                 }
1662             }
1663             if (!s->data_file) {
1664                 error_setg(errp, "'data-file' is required for this image");
1665                 ret = -EINVAL;
1666                 goto fail;
1667             }
1668 
1669             /* No data here */
1670             bs->file->role &= ~BDRV_CHILD_DATA;
1671 
1672             /* Must succeed because we have given up permissions if anything */
1673             bdrv_child_refresh_perms(bs, bs->file, &error_abort);
1674         } else {
1675             if (s->data_file) {
1676                 error_setg(errp, "'data-file' can only be set for images with "
1677                                  "an external data file");
1678                 ret = -EINVAL;
1679                 goto fail;
1680             }
1681 
1682             s->data_file = bs->file;
1683 
1684             if (data_file_is_raw(bs)) {
1685                 error_setg(errp, "data-file-raw requires a data file");
1686                 ret = -EINVAL;
1687                 goto fail;
1688             }
1689         }
1690     }
1691 
1692     /* qcow2_read_extension may have set up the crypto context
1693      * if the crypt method needs a header region, some methods
1694      * don't need header extensions, so must check here
1695      */
1696     if (s->crypt_method_header && !s->crypto) {
1697         if (s->crypt_method_header == QCOW_CRYPT_AES) {
1698             unsigned int cflags = 0;
1699             if (flags & BDRV_O_NO_IO) {
1700                 cflags |= QCRYPTO_BLOCK_OPEN_NO_IO;
1701             }
1702             s->crypto = qcrypto_block_open(s->crypto_opts, "encrypt.",
1703                                            NULL, NULL, cflags,
1704                                            QCOW2_MAX_THREADS, errp);
1705             if (!s->crypto) {
1706                 ret = -EINVAL;
1707                 goto fail;
1708             }
1709         } else if (!(flags & BDRV_O_NO_IO)) {
1710             error_setg(errp, "Missing CRYPTO header for crypt method %d",
1711                        s->crypt_method_header);
1712             ret = -EINVAL;
1713             goto fail;
1714         }
1715     }
1716 
1717     /* read the backing file name */
1718     if (header.backing_file_offset != 0) {
1719         len = header.backing_file_size;
1720         if (len > MIN(1023, s->cluster_size - header.backing_file_offset) ||
1721             len >= sizeof(bs->backing_file)) {
1722             error_setg(errp, "Backing file name too long");
1723             ret = -EINVAL;
1724             goto fail;
1725         }
1726 
1727         s->image_backing_file = g_malloc(len + 1);
1728         ret = bdrv_co_pread(bs->file, header.backing_file_offset, len,
1729                             s->image_backing_file, 0);
1730         if (ret < 0) {
1731             error_setg_errno(errp, -ret, "Could not read backing file name");
1732             goto fail;
1733         }
1734         s->image_backing_file[len] = '\0';
1735 
1736         /*
1737          * Update only when something has changed.  This function is called by
1738          * qcow2_co_invalidate_cache(), and we do not want to reset
1739          * auto_backing_file unless necessary.
1740          */
1741         if (!g_str_equal(s->image_backing_file, bs->backing_file)) {
1742             pstrcpy(bs->backing_file, sizeof(bs->backing_file),
1743                     s->image_backing_file);
1744             pstrcpy(bs->auto_backing_file, sizeof(bs->auto_backing_file),
1745                     s->image_backing_file);
1746         }
1747     }
1748 
1749     /*
1750      * Internal snapshots; skip reading them in check mode, because
1751      * we do not need them then, and we do not want to abort because
1752      * of a broken table.
1753      */
1754     if (!(flags & BDRV_O_CHECK)) {
1755         s->snapshots_offset = header.snapshots_offset;
1756         s->nb_snapshots = header.nb_snapshots;
1757 
1758         ret = qcow2_read_snapshots(bs, errp);
1759         if (ret < 0) {
1760             goto fail;
1761         }
1762     }
1763 
1764     /* Clear unknown autoclear feature bits */
1765     update_header |= s->autoclear_features & ~QCOW2_AUTOCLEAR_MASK;
1766     update_header = update_header && bdrv_is_writable(bs);
1767     if (update_header) {
1768         s->autoclear_features &= QCOW2_AUTOCLEAR_MASK;
1769     }
1770 
1771     /* == Handle persistent dirty bitmaps ==
1772      *
1773      * We want load dirty bitmaps in three cases:
1774      *
1775      * 1. Normal open of the disk in active mode, not related to invalidation
1776      *    after migration.
1777      *
1778      * 2. Invalidation of the target vm after pre-copy phase of migration, if
1779      *    bitmaps are _not_ migrating through migration channel, i.e.
1780      *    'dirty-bitmaps' capability is disabled.
1781      *
1782      * 3. Invalidation of source vm after failed or canceled migration.
1783      *    This is a very interesting case. There are two possible types of
1784      *    bitmaps:
1785      *
1786      *    A. Stored on inactivation and removed. They should be loaded from the
1787      *       image.
1788      *
1789      *    B. Not stored: not-persistent bitmaps and bitmaps, migrated through
1790      *       the migration channel (with dirty-bitmaps capability).
1791      *
1792      *    On the other hand, there are two possible sub-cases:
1793      *
1794      *    3.1 disk was changed by somebody else while were inactive. In this
1795      *        case all in-RAM dirty bitmaps (both persistent and not) are
1796      *        definitely invalid. And we don't have any method to determine
1797      *        this.
1798      *
1799      *        Simple and safe thing is to just drop all the bitmaps of type B on
1800      *        inactivation. But in this case we lose bitmaps in valid 4.2 case.
1801      *
1802      *        On the other hand, resuming source vm, if disk was already changed
1803      *        is a bad thing anyway: not only bitmaps, the whole vm state is
1804      *        out of sync with disk.
1805      *
1806      *        This means, that user or management tool, who for some reason
1807      *        decided to resume source vm, after disk was already changed by
1808      *        target vm, should at least drop all dirty bitmaps by hand.
1809      *
1810      *        So, we can ignore this case for now, but TODO: "generation"
1811      *        extension for qcow2, to determine, that image was changed after
1812      *        last inactivation. And if it is changed, we will drop (or at least
1813      *        mark as 'invalid' all the bitmaps of type B, both persistent
1814      *        and not).
1815      *
1816      *    3.2 disk was _not_ changed while were inactive. Bitmaps may be saved
1817      *        to disk ('dirty-bitmaps' capability disabled), or not saved
1818      *        ('dirty-bitmaps' capability enabled), but we don't need to care
1819      *        of: let's load bitmaps as always: stored bitmaps will be loaded,
1820      *        and not stored has flag IN_USE=1 in the image and will be skipped
1821      *        on loading.
1822      *
1823      * One remaining possible case when we don't want load bitmaps:
1824      *
1825      * 4. Open disk in inactive mode in target vm (bitmaps are migrating or
1826      *    will be loaded on invalidation, no needs try loading them before)
1827      */
1828 
1829     if (!(bdrv_get_flags(bs) & BDRV_O_INACTIVE)) {
1830         /* It's case 1, 2 or 3.2. Or 3.1 which is BUG in management layer. */
1831         bool header_updated;
1832         if (!qcow2_load_dirty_bitmaps(bs, &header_updated, errp)) {
1833             ret = -EINVAL;
1834             goto fail;
1835         }
1836 
1837         update_header = update_header && !header_updated;
1838     }
1839 
1840     if (update_header) {
1841         ret = qcow2_update_header(bs);
1842         if (ret < 0) {
1843             error_setg_errno(errp, -ret, "Could not update qcow2 header");
1844             goto fail;
1845         }
1846     }
1847 
1848     bs->supported_zero_flags = header.version >= 3 ?
1849                                BDRV_REQ_MAY_UNMAP | BDRV_REQ_NO_FALLBACK : 0;
1850     bs->supported_truncate_flags = BDRV_REQ_ZERO_WRITE;
1851 
1852     /* Repair image if dirty */
1853     if (!(flags & BDRV_O_CHECK) && bdrv_is_writable(bs) &&
1854         (s->incompatible_features & QCOW2_INCOMPAT_DIRTY)) {
1855         BdrvCheckResult result = {0};
1856 
1857         ret = qcow2_co_check_locked(bs, &result,
1858                                     BDRV_FIX_ERRORS | BDRV_FIX_LEAKS);
1859         if (ret < 0 || result.check_errors) {
1860             if (ret >= 0) {
1861                 ret = -EIO;
1862             }
1863             error_setg_errno(errp, -ret, "Could not repair dirty image");
1864             goto fail;
1865         }
1866     }
1867 
1868 #ifdef DEBUG_ALLOC
1869     {
1870         BdrvCheckResult result = {0};
1871         qcow2_check_refcounts(bs, &result, 0);
1872     }
1873 #endif
1874 
1875     qemu_co_queue_init(&s->thread_task_queue);
1876 
1877     return ret;
1878 
1879  fail:
1880     g_free(s->image_data_file);
1881     if (open_data_file && has_data_file(bs)) {
1882         bdrv_graph_co_rdunlock();
1883         bdrv_co_unref_child(bs, s->data_file);
1884         bdrv_graph_co_rdlock();
1885         s->data_file = NULL;
1886     }
1887     g_free(s->unknown_header_fields);
1888     cleanup_unknown_header_ext(bs);
1889     qcow2_free_snapshots(bs);
1890     qcow2_refcount_close(bs);
1891     qemu_vfree(s->l1_table);
1892     /* else pre-write overlap checks in cache_destroy may crash */
1893     s->l1_table = NULL;
1894     cache_clean_timer_del(bs);
1895     if (s->l2_table_cache) {
1896         qcow2_cache_destroy(s->l2_table_cache);
1897     }
1898     if (s->refcount_block_cache) {
1899         qcow2_cache_destroy(s->refcount_block_cache);
1900     }
1901     qcrypto_block_free(s->crypto);
1902     qapi_free_QCryptoBlockOpenOptions(s->crypto_opts);
1903     return ret;
1904 }
1905 
1906 typedef struct QCow2OpenCo {
1907     BlockDriverState *bs;
1908     QDict *options;
1909     int flags;
1910     Error **errp;
1911     int ret;
1912 } QCow2OpenCo;
1913 
1914 static void coroutine_fn qcow2_open_entry(void *opaque)
1915 {
1916     QCow2OpenCo *qoc = opaque;
1917     BDRVQcow2State *s = qoc->bs->opaque;
1918 
1919     GRAPH_RDLOCK_GUARD();
1920 
1921     qemu_co_mutex_lock(&s->lock);
1922     qoc->ret = qcow2_do_open(qoc->bs, qoc->options, qoc->flags, true,
1923                              qoc->errp);
1924     qemu_co_mutex_unlock(&s->lock);
1925 
1926     aio_wait_kick();
1927 }
1928 
1929 static int qcow2_open(BlockDriverState *bs, QDict *options, int flags,
1930                       Error **errp)
1931 {
1932     BDRVQcow2State *s = bs->opaque;
1933     QCow2OpenCo qoc = {
1934         .bs = bs,
1935         .options = options,
1936         .flags = flags,
1937         .errp = errp,
1938         .ret = -EINPROGRESS
1939     };
1940     int ret;
1941 
1942     ret = bdrv_open_file_child(NULL, options, "file", bs, errp);
1943     if (ret < 0) {
1944         return ret;
1945     }
1946 
1947     /* Initialise locks */
1948     qemu_co_mutex_init(&s->lock);
1949 
1950     assert(!qemu_in_coroutine());
1951     assert(qemu_get_current_aio_context() == qemu_get_aio_context());
1952 
1953     aio_co_enter(bdrv_get_aio_context(bs),
1954                  qemu_coroutine_create(qcow2_open_entry, &qoc));
1955     AIO_WAIT_WHILE_UNLOCKED(NULL, qoc.ret == -EINPROGRESS);
1956 
1957     return qoc.ret;
1958 }
1959 
1960 static void qcow2_refresh_limits(BlockDriverState *bs, Error **errp)
1961 {
1962     BDRVQcow2State *s = bs->opaque;
1963 
1964     if (bs->encrypted) {
1965         /* Encryption works on a sector granularity */
1966         bs->bl.request_alignment = qcrypto_block_get_sector_size(s->crypto);
1967     }
1968     bs->bl.pwrite_zeroes_alignment = s->subcluster_size;
1969     bs->bl.pdiscard_alignment = s->cluster_size;
1970 }
1971 
1972 static int qcow2_reopen_prepare(BDRVReopenState *state,
1973                                 BlockReopenQueue *queue, Error **errp)
1974 {
1975     BDRVQcow2State *s = state->bs->opaque;
1976     Qcow2ReopenState *r;
1977     int ret;
1978 
1979     r = g_new0(Qcow2ReopenState, 1);
1980     state->opaque = r;
1981 
1982     ret = qcow2_update_options_prepare(state->bs, r, state->options,
1983                                        state->flags, errp);
1984     if (ret < 0) {
1985         goto fail;
1986     }
1987 
1988     /* We need to write out any unwritten data if we reopen read-only. */
1989     if ((state->flags & BDRV_O_RDWR) == 0) {
1990         ret = qcow2_reopen_bitmaps_ro(state->bs, errp);
1991         if (ret < 0) {
1992             goto fail;
1993         }
1994 
1995         ret = bdrv_flush(state->bs);
1996         if (ret < 0) {
1997             goto fail;
1998         }
1999 
2000         ret = qcow2_mark_clean(state->bs);
2001         if (ret < 0) {
2002             goto fail;
2003         }
2004     }
2005 
2006     /*
2007      * Without an external data file, s->data_file points to the same BdrvChild
2008      * as bs->file. It needs to be resynced after reopen because bs->file may
2009      * be changed. We can't use it in the meantime.
2010      */
2011     if (!has_data_file(state->bs)) {
2012         assert(s->data_file == state->bs->file);
2013         s->data_file = NULL;
2014     }
2015 
2016     return 0;
2017 
2018 fail:
2019     qcow2_update_options_abort(state->bs, r);
2020     g_free(r);
2021     return ret;
2022 }
2023 
2024 static void qcow2_reopen_commit(BDRVReopenState *state)
2025 {
2026     BDRVQcow2State *s = state->bs->opaque;
2027 
2028     qcow2_update_options_commit(state->bs, state->opaque);
2029     if (!s->data_file) {
2030         /*
2031          * If we don't have an external data file, s->data_file was cleared by
2032          * qcow2_reopen_prepare() and needs to be updated.
2033          */
2034         s->data_file = state->bs->file;
2035     }
2036     g_free(state->opaque);
2037 }
2038 
2039 static void qcow2_reopen_commit_post(BDRVReopenState *state)
2040 {
2041     if (state->flags & BDRV_O_RDWR) {
2042         Error *local_err = NULL;
2043 
2044         if (qcow2_reopen_bitmaps_rw(state->bs, &local_err) < 0) {
2045             /*
2046              * This is not fatal, bitmaps just left read-only, so all following
2047              * writes will fail. User can remove read-only bitmaps to unblock
2048              * writes or retry reopen.
2049              */
2050             error_reportf_err(local_err,
2051                               "%s: Failed to make dirty bitmaps writable: ",
2052                               bdrv_get_node_name(state->bs));
2053         }
2054     }
2055 }
2056 
2057 static void qcow2_reopen_abort(BDRVReopenState *state)
2058 {
2059     BDRVQcow2State *s = state->bs->opaque;
2060 
2061     if (!s->data_file) {
2062         /*
2063          * If we don't have an external data file, s->data_file was cleared by
2064          * qcow2_reopen_prepare() and needs to be restored.
2065          */
2066         s->data_file = state->bs->file;
2067     }
2068     qcow2_update_options_abort(state->bs, state->opaque);
2069     g_free(state->opaque);
2070 }
2071 
2072 static void qcow2_join_options(QDict *options, QDict *old_options)
2073 {
2074     bool has_new_overlap_template =
2075         qdict_haskey(options, QCOW2_OPT_OVERLAP) ||
2076         qdict_haskey(options, QCOW2_OPT_OVERLAP_TEMPLATE);
2077     bool has_new_total_cache_size =
2078         qdict_haskey(options, QCOW2_OPT_CACHE_SIZE);
2079     bool has_all_cache_options;
2080 
2081     /* New overlap template overrides all old overlap options */
2082     if (has_new_overlap_template) {
2083         qdict_del(old_options, QCOW2_OPT_OVERLAP);
2084         qdict_del(old_options, QCOW2_OPT_OVERLAP_TEMPLATE);
2085         qdict_del(old_options, QCOW2_OPT_OVERLAP_MAIN_HEADER);
2086         qdict_del(old_options, QCOW2_OPT_OVERLAP_ACTIVE_L1);
2087         qdict_del(old_options, QCOW2_OPT_OVERLAP_ACTIVE_L2);
2088         qdict_del(old_options, QCOW2_OPT_OVERLAP_REFCOUNT_TABLE);
2089         qdict_del(old_options, QCOW2_OPT_OVERLAP_REFCOUNT_BLOCK);
2090         qdict_del(old_options, QCOW2_OPT_OVERLAP_SNAPSHOT_TABLE);
2091         qdict_del(old_options, QCOW2_OPT_OVERLAP_INACTIVE_L1);
2092         qdict_del(old_options, QCOW2_OPT_OVERLAP_INACTIVE_L2);
2093     }
2094 
2095     /* New total cache size overrides all old options */
2096     if (qdict_haskey(options, QCOW2_OPT_CACHE_SIZE)) {
2097         qdict_del(old_options, QCOW2_OPT_L2_CACHE_SIZE);
2098         qdict_del(old_options, QCOW2_OPT_REFCOUNT_CACHE_SIZE);
2099     }
2100 
2101     qdict_join(options, old_options, false);
2102 
2103     /*
2104      * If after merging all cache size options are set, an old total size is
2105      * overwritten. Do keep all options, however, if all three are new. The
2106      * resulting error message is what we want to happen.
2107      */
2108     has_all_cache_options =
2109         qdict_haskey(options, QCOW2_OPT_CACHE_SIZE) ||
2110         qdict_haskey(options, QCOW2_OPT_L2_CACHE_SIZE) ||
2111         qdict_haskey(options, QCOW2_OPT_REFCOUNT_CACHE_SIZE);
2112 
2113     if (has_all_cache_options && !has_new_total_cache_size) {
2114         qdict_del(options, QCOW2_OPT_CACHE_SIZE);
2115     }
2116 }
2117 
2118 static int coroutine_fn GRAPH_RDLOCK
2119 qcow2_co_block_status(BlockDriverState *bs, bool want_zero, int64_t offset,
2120                       int64_t count, int64_t *pnum, int64_t *map,
2121                       BlockDriverState **file)
2122 {
2123     BDRVQcow2State *s = bs->opaque;
2124     uint64_t host_offset;
2125     unsigned int bytes;
2126     QCow2SubclusterType type;
2127     int ret, status = 0;
2128 
2129     qemu_co_mutex_lock(&s->lock);
2130 
2131     if (!s->metadata_preallocation_checked) {
2132         ret = qcow2_detect_metadata_preallocation(bs);
2133         s->metadata_preallocation = (ret == 1);
2134         s->metadata_preallocation_checked = true;
2135     }
2136 
2137     bytes = MIN(INT_MAX, count);
2138     ret = qcow2_get_host_offset(bs, offset, &bytes, &host_offset, &type);
2139     qemu_co_mutex_unlock(&s->lock);
2140     if (ret < 0) {
2141         return ret;
2142     }
2143 
2144     *pnum = bytes;
2145 
2146     if ((type == QCOW2_SUBCLUSTER_NORMAL ||
2147          type == QCOW2_SUBCLUSTER_ZERO_ALLOC ||
2148          type == QCOW2_SUBCLUSTER_UNALLOCATED_ALLOC) && !s->crypto) {
2149         *map = host_offset;
2150         *file = s->data_file->bs;
2151         status |= BDRV_BLOCK_OFFSET_VALID;
2152     }
2153     if (type == QCOW2_SUBCLUSTER_ZERO_PLAIN ||
2154         type == QCOW2_SUBCLUSTER_ZERO_ALLOC) {
2155         status |= BDRV_BLOCK_ZERO;
2156     } else if (type != QCOW2_SUBCLUSTER_UNALLOCATED_PLAIN &&
2157                type != QCOW2_SUBCLUSTER_UNALLOCATED_ALLOC) {
2158         status |= BDRV_BLOCK_DATA;
2159     }
2160     if (s->metadata_preallocation && (status & BDRV_BLOCK_DATA) &&
2161         (status & BDRV_BLOCK_OFFSET_VALID))
2162     {
2163         status |= BDRV_BLOCK_RECURSE;
2164     }
2165     if (type == QCOW2_SUBCLUSTER_COMPRESSED) {
2166         status |= BDRV_BLOCK_COMPRESSED;
2167     }
2168     return status;
2169 }
2170 
2171 static int coroutine_fn GRAPH_RDLOCK
2172 qcow2_handle_l2meta(BlockDriverState *bs, QCowL2Meta **pl2meta, bool link_l2)
2173 {
2174     int ret = 0;
2175     QCowL2Meta *l2meta = *pl2meta;
2176 
2177     while (l2meta != NULL) {
2178         QCowL2Meta *next;
2179 
2180         if (link_l2) {
2181             ret = qcow2_alloc_cluster_link_l2(bs, l2meta);
2182             if (ret) {
2183                 goto out;
2184             }
2185         } else {
2186             qcow2_alloc_cluster_abort(bs, l2meta);
2187         }
2188 
2189         /* Take the request off the list of running requests */
2190         QLIST_REMOVE(l2meta, next_in_flight);
2191 
2192         qemu_co_queue_restart_all(&l2meta->dependent_requests);
2193 
2194         next = l2meta->next;
2195         g_free(l2meta);
2196         l2meta = next;
2197     }
2198 out:
2199     *pl2meta = l2meta;
2200     return ret;
2201 }
2202 
2203 static int coroutine_fn GRAPH_RDLOCK
2204 qcow2_co_preadv_encrypted(BlockDriverState *bs,
2205                            uint64_t host_offset,
2206                            uint64_t offset,
2207                            uint64_t bytes,
2208                            QEMUIOVector *qiov,
2209                            uint64_t qiov_offset)
2210 {
2211     int ret;
2212     BDRVQcow2State *s = bs->opaque;
2213     uint8_t *buf;
2214 
2215     assert(bs->encrypted && s->crypto);
2216     assert(bytes <= QCOW_MAX_CRYPT_CLUSTERS * s->cluster_size);
2217 
2218     /*
2219      * For encrypted images, read everything into a temporary
2220      * contiguous buffer on which the AES functions can work.
2221      * Also, decryption in a separate buffer is better as it
2222      * prevents the guest from learning information about the
2223      * encrypted nature of the virtual disk.
2224      */
2225 
2226     buf = qemu_try_blockalign(s->data_file->bs, bytes);
2227     if (buf == NULL) {
2228         return -ENOMEM;
2229     }
2230 
2231     BLKDBG_CO_EVENT(bs->file, BLKDBG_READ_AIO);
2232     ret = bdrv_co_pread(s->data_file, host_offset, bytes, buf, 0);
2233     if (ret < 0) {
2234         goto fail;
2235     }
2236 
2237     if (qcow2_co_decrypt(bs, host_offset, offset, buf, bytes) < 0)
2238     {
2239         ret = -EIO;
2240         goto fail;
2241     }
2242     qemu_iovec_from_buf(qiov, qiov_offset, buf, bytes);
2243 
2244 fail:
2245     qemu_vfree(buf);
2246 
2247     return ret;
2248 }
2249 
2250 typedef struct Qcow2AioTask {
2251     AioTask task;
2252 
2253     BlockDriverState *bs;
2254     QCow2SubclusterType subcluster_type; /* only for read */
2255     uint64_t host_offset; /* or l2_entry for compressed read */
2256     uint64_t offset;
2257     uint64_t bytes;
2258     QEMUIOVector *qiov;
2259     uint64_t qiov_offset;
2260     QCowL2Meta *l2meta; /* only for write */
2261 } Qcow2AioTask;
2262 
2263 static coroutine_fn int qcow2_co_preadv_task_entry(AioTask *task);
2264 static coroutine_fn int qcow2_add_task(BlockDriverState *bs,
2265                                        AioTaskPool *pool,
2266                                        AioTaskFunc func,
2267                                        QCow2SubclusterType subcluster_type,
2268                                        uint64_t host_offset,
2269                                        uint64_t offset,
2270                                        uint64_t bytes,
2271                                        QEMUIOVector *qiov,
2272                                        size_t qiov_offset,
2273                                        QCowL2Meta *l2meta)
2274 {
2275     Qcow2AioTask local_task;
2276     Qcow2AioTask *task = pool ? g_new(Qcow2AioTask, 1) : &local_task;
2277 
2278     *task = (Qcow2AioTask) {
2279         .task.func = func,
2280         .bs = bs,
2281         .subcluster_type = subcluster_type,
2282         .qiov = qiov,
2283         .host_offset = host_offset,
2284         .offset = offset,
2285         .bytes = bytes,
2286         .qiov_offset = qiov_offset,
2287         .l2meta = l2meta,
2288     };
2289 
2290     trace_qcow2_add_task(qemu_coroutine_self(), bs, pool,
2291                          func == qcow2_co_preadv_task_entry ? "read" : "write",
2292                          subcluster_type, host_offset, offset, bytes,
2293                          qiov, qiov_offset);
2294 
2295     if (!pool) {
2296         return func(&task->task);
2297     }
2298 
2299     aio_task_pool_start_task(pool, &task->task);
2300 
2301     return 0;
2302 }
2303 
2304 static int coroutine_fn GRAPH_RDLOCK
2305 qcow2_co_preadv_task(BlockDriverState *bs, QCow2SubclusterType subc_type,
2306                      uint64_t host_offset, uint64_t offset, uint64_t bytes,
2307                      QEMUIOVector *qiov, size_t qiov_offset)
2308 {
2309     BDRVQcow2State *s = bs->opaque;
2310 
2311     switch (subc_type) {
2312     case QCOW2_SUBCLUSTER_ZERO_PLAIN:
2313     case QCOW2_SUBCLUSTER_ZERO_ALLOC:
2314         /* Both zero types are handled in qcow2_co_preadv_part */
2315         g_assert_not_reached();
2316 
2317     case QCOW2_SUBCLUSTER_UNALLOCATED_PLAIN:
2318     case QCOW2_SUBCLUSTER_UNALLOCATED_ALLOC:
2319         assert(bs->backing); /* otherwise handled in qcow2_co_preadv_part */
2320 
2321         BLKDBG_CO_EVENT(bs->file, BLKDBG_READ_BACKING_AIO);
2322         return bdrv_co_preadv_part(bs->backing, offset, bytes,
2323                                    qiov, qiov_offset, 0);
2324 
2325     case QCOW2_SUBCLUSTER_COMPRESSED:
2326         return qcow2_co_preadv_compressed(bs, host_offset,
2327                                           offset, bytes, qiov, qiov_offset);
2328 
2329     case QCOW2_SUBCLUSTER_NORMAL:
2330         if (bs->encrypted) {
2331             return qcow2_co_preadv_encrypted(bs, host_offset,
2332                                              offset, bytes, qiov, qiov_offset);
2333         }
2334 
2335         BLKDBG_CO_EVENT(bs->file, BLKDBG_READ_AIO);
2336         return bdrv_co_preadv_part(s->data_file, host_offset,
2337                                    bytes, qiov, qiov_offset, 0);
2338 
2339     default:
2340         g_assert_not_reached();
2341     }
2342 
2343     g_assert_not_reached();
2344 }
2345 
2346 /*
2347  * This function can count as GRAPH_RDLOCK because qcow2_co_preadv_part() holds
2348  * the graph lock and keeps it until this coroutine has terminated.
2349  */
2350 static int coroutine_fn GRAPH_RDLOCK qcow2_co_preadv_task_entry(AioTask *task)
2351 {
2352     Qcow2AioTask *t = container_of(task, Qcow2AioTask, task);
2353 
2354     assert(!t->l2meta);
2355 
2356     return qcow2_co_preadv_task(t->bs, t->subcluster_type,
2357                                 t->host_offset, t->offset, t->bytes,
2358                                 t->qiov, t->qiov_offset);
2359 }
2360 
2361 static int coroutine_fn GRAPH_RDLOCK
2362 qcow2_co_preadv_part(BlockDriverState *bs, int64_t offset, int64_t bytes,
2363                      QEMUIOVector *qiov, size_t qiov_offset,
2364                      BdrvRequestFlags flags)
2365 {
2366     BDRVQcow2State *s = bs->opaque;
2367     int ret = 0;
2368     unsigned int cur_bytes; /* number of bytes in current iteration */
2369     uint64_t host_offset = 0;
2370     QCow2SubclusterType type;
2371     AioTaskPool *aio = NULL;
2372 
2373     while (bytes != 0 && aio_task_pool_status(aio) == 0) {
2374         /* prepare next request */
2375         cur_bytes = MIN(bytes, INT_MAX);
2376         if (s->crypto) {
2377             cur_bytes = MIN(cur_bytes,
2378                             QCOW_MAX_CRYPT_CLUSTERS * s->cluster_size);
2379         }
2380 
2381         qemu_co_mutex_lock(&s->lock);
2382         ret = qcow2_get_host_offset(bs, offset, &cur_bytes,
2383                                     &host_offset, &type);
2384         qemu_co_mutex_unlock(&s->lock);
2385         if (ret < 0) {
2386             goto out;
2387         }
2388 
2389         if (type == QCOW2_SUBCLUSTER_ZERO_PLAIN ||
2390             type == QCOW2_SUBCLUSTER_ZERO_ALLOC ||
2391             (type == QCOW2_SUBCLUSTER_UNALLOCATED_PLAIN && !bs->backing) ||
2392             (type == QCOW2_SUBCLUSTER_UNALLOCATED_ALLOC && !bs->backing))
2393         {
2394             qemu_iovec_memset(qiov, qiov_offset, 0, cur_bytes);
2395         } else {
2396             if (!aio && cur_bytes != bytes) {
2397                 aio = aio_task_pool_new(QCOW2_MAX_WORKERS);
2398             }
2399             ret = qcow2_add_task(bs, aio, qcow2_co_preadv_task_entry, type,
2400                                  host_offset, offset, cur_bytes,
2401                                  qiov, qiov_offset, NULL);
2402             if (ret < 0) {
2403                 goto out;
2404             }
2405         }
2406 
2407         bytes -= cur_bytes;
2408         offset += cur_bytes;
2409         qiov_offset += cur_bytes;
2410     }
2411 
2412 out:
2413     if (aio) {
2414         aio_task_pool_wait_all(aio);
2415         if (ret == 0) {
2416             ret = aio_task_pool_status(aio);
2417         }
2418         g_free(aio);
2419     }
2420 
2421     return ret;
2422 }
2423 
2424 /* Check if it's possible to merge a write request with the writing of
2425  * the data from the COW regions */
2426 static bool merge_cow(uint64_t offset, unsigned bytes,
2427                       QEMUIOVector *qiov, size_t qiov_offset,
2428                       QCowL2Meta *l2meta)
2429 {
2430     QCowL2Meta *m;
2431 
2432     for (m = l2meta; m != NULL; m = m->next) {
2433         /* If both COW regions are empty then there's nothing to merge */
2434         if (m->cow_start.nb_bytes == 0 && m->cow_end.nb_bytes == 0) {
2435             continue;
2436         }
2437 
2438         /* If COW regions are handled already, skip this too */
2439         if (m->skip_cow) {
2440             continue;
2441         }
2442 
2443         /*
2444          * The write request should start immediately after the first
2445          * COW region. This does not always happen because the area
2446          * touched by the request can be larger than the one defined
2447          * by @m (a single request can span an area consisting of a
2448          * mix of previously unallocated and allocated clusters, that
2449          * is why @l2meta is a list).
2450          */
2451         if (l2meta_cow_start(m) + m->cow_start.nb_bytes != offset) {
2452             /* In this case the request starts before this region */
2453             assert(offset < l2meta_cow_start(m));
2454             assert(m->cow_start.nb_bytes == 0);
2455             continue;
2456         }
2457 
2458         /* The write request should end immediately before the second
2459          * COW region (see above for why it does not always happen) */
2460         if (m->offset + m->cow_end.offset != offset + bytes) {
2461             assert(offset + bytes > m->offset + m->cow_end.offset);
2462             assert(m->cow_end.nb_bytes == 0);
2463             continue;
2464         }
2465 
2466         /* Make sure that adding both COW regions to the QEMUIOVector
2467          * does not exceed IOV_MAX */
2468         if (qemu_iovec_subvec_niov(qiov, qiov_offset, bytes) > IOV_MAX - 2) {
2469             continue;
2470         }
2471 
2472         m->data_qiov = qiov;
2473         m->data_qiov_offset = qiov_offset;
2474         return true;
2475     }
2476 
2477     return false;
2478 }
2479 
2480 /*
2481  * Return 1 if the COW regions read as zeroes, 0 if not, < 0 on error.
2482  * Note that returning 0 does not guarantee non-zero data.
2483  */
2484 static int coroutine_fn GRAPH_RDLOCK
2485 is_zero_cow(BlockDriverState *bs, QCowL2Meta *m)
2486 {
2487     /*
2488      * This check is designed for optimization shortcut so it must be
2489      * efficient.
2490      * Instead of is_zero(), use bdrv_co_is_zero_fast() as it is
2491      * faster (but not as accurate and can result in false negatives).
2492      */
2493     int ret = bdrv_co_is_zero_fast(bs, m->offset + m->cow_start.offset,
2494                                    m->cow_start.nb_bytes);
2495     if (ret <= 0) {
2496         return ret;
2497     }
2498 
2499     return bdrv_co_is_zero_fast(bs, m->offset + m->cow_end.offset,
2500                                 m->cow_end.nb_bytes);
2501 }
2502 
2503 static int coroutine_fn GRAPH_RDLOCK
2504 handle_alloc_space(BlockDriverState *bs, QCowL2Meta *l2meta)
2505 {
2506     BDRVQcow2State *s = bs->opaque;
2507     QCowL2Meta *m;
2508 
2509     if (!(s->data_file->bs->supported_zero_flags & BDRV_REQ_NO_FALLBACK)) {
2510         return 0;
2511     }
2512 
2513     if (bs->encrypted) {
2514         return 0;
2515     }
2516 
2517     for (m = l2meta; m != NULL; m = m->next) {
2518         int ret;
2519         uint64_t start_offset = m->alloc_offset + m->cow_start.offset;
2520         unsigned nb_bytes = m->cow_end.offset + m->cow_end.nb_bytes -
2521             m->cow_start.offset;
2522 
2523         if (!m->cow_start.nb_bytes && !m->cow_end.nb_bytes) {
2524             continue;
2525         }
2526 
2527         ret = is_zero_cow(bs, m);
2528         if (ret < 0) {
2529             return ret;
2530         } else if (ret == 0) {
2531             continue;
2532         }
2533 
2534         /*
2535          * instead of writing zero COW buffers,
2536          * efficiently zero out the whole clusters
2537          */
2538 
2539         ret = qcow2_pre_write_overlap_check(bs, 0, start_offset, nb_bytes,
2540                                             true);
2541         if (ret < 0) {
2542             return ret;
2543         }
2544 
2545         BLKDBG_CO_EVENT(bs->file, BLKDBG_CLUSTER_ALLOC_SPACE);
2546         ret = bdrv_co_pwrite_zeroes(s->data_file, start_offset, nb_bytes,
2547                                     BDRV_REQ_NO_FALLBACK);
2548         if (ret < 0) {
2549             if (ret != -ENOTSUP && ret != -EAGAIN) {
2550                 return ret;
2551             }
2552             continue;
2553         }
2554 
2555         trace_qcow2_skip_cow(qemu_coroutine_self(), m->offset, m->nb_clusters);
2556         m->skip_cow = true;
2557     }
2558     return 0;
2559 }
2560 
2561 /*
2562  * qcow2_co_pwritev_task
2563  * Called with s->lock unlocked
2564  * l2meta  - if not NULL, qcow2_co_pwritev_task() will consume it. Caller must
2565  *           not use it somehow after qcow2_co_pwritev_task() call
2566  */
2567 static coroutine_fn GRAPH_RDLOCK
2568 int qcow2_co_pwritev_task(BlockDriverState *bs, uint64_t host_offset,
2569                           uint64_t offset, uint64_t bytes, QEMUIOVector *qiov,
2570                           uint64_t qiov_offset, QCowL2Meta *l2meta)
2571 {
2572     int ret;
2573     BDRVQcow2State *s = bs->opaque;
2574     void *crypt_buf = NULL;
2575     QEMUIOVector encrypted_qiov;
2576 
2577     if (bs->encrypted) {
2578         assert(s->crypto);
2579         assert(bytes <= QCOW_MAX_CRYPT_CLUSTERS * s->cluster_size);
2580         crypt_buf = qemu_try_blockalign(bs->file->bs, bytes);
2581         if (crypt_buf == NULL) {
2582             ret = -ENOMEM;
2583             goto out_unlocked;
2584         }
2585         qemu_iovec_to_buf(qiov, qiov_offset, crypt_buf, bytes);
2586 
2587         if (qcow2_co_encrypt(bs, host_offset, offset, crypt_buf, bytes) < 0) {
2588             ret = -EIO;
2589             goto out_unlocked;
2590         }
2591 
2592         qemu_iovec_init_buf(&encrypted_qiov, crypt_buf, bytes);
2593         qiov = &encrypted_qiov;
2594         qiov_offset = 0;
2595     }
2596 
2597     /* Try to efficiently initialize the physical space with zeroes */
2598     ret = handle_alloc_space(bs, l2meta);
2599     if (ret < 0) {
2600         goto out_unlocked;
2601     }
2602 
2603     /*
2604      * If we need to do COW, check if it's possible to merge the
2605      * writing of the guest data together with that of the COW regions.
2606      * If it's not possible (or not necessary) then write the
2607      * guest data now.
2608      */
2609     if (!merge_cow(offset, bytes, qiov, qiov_offset, l2meta)) {
2610         BLKDBG_CO_EVENT(bs->file, BLKDBG_WRITE_AIO);
2611         trace_qcow2_writev_data(qemu_coroutine_self(), host_offset);
2612         ret = bdrv_co_pwritev_part(s->data_file, host_offset,
2613                                    bytes, qiov, qiov_offset, 0);
2614         if (ret < 0) {
2615             goto out_unlocked;
2616         }
2617     }
2618 
2619     qemu_co_mutex_lock(&s->lock);
2620 
2621     ret = qcow2_handle_l2meta(bs, &l2meta, true);
2622     goto out_locked;
2623 
2624 out_unlocked:
2625     qemu_co_mutex_lock(&s->lock);
2626 
2627 out_locked:
2628     qcow2_handle_l2meta(bs, &l2meta, false);
2629     qemu_co_mutex_unlock(&s->lock);
2630 
2631     qemu_vfree(crypt_buf);
2632 
2633     return ret;
2634 }
2635 
2636 /*
2637  * This function can count as GRAPH_RDLOCK because qcow2_co_pwritev_part() holds
2638  * the graph lock and keeps it until this coroutine has terminated.
2639  */
2640 static coroutine_fn GRAPH_RDLOCK int qcow2_co_pwritev_task_entry(AioTask *task)
2641 {
2642     Qcow2AioTask *t = container_of(task, Qcow2AioTask, task);
2643 
2644     assert(!t->subcluster_type);
2645 
2646     return qcow2_co_pwritev_task(t->bs, t->host_offset,
2647                                  t->offset, t->bytes, t->qiov, t->qiov_offset,
2648                                  t->l2meta);
2649 }
2650 
2651 static int coroutine_fn GRAPH_RDLOCK
2652 qcow2_co_pwritev_part(BlockDriverState *bs, int64_t offset, int64_t bytes,
2653                       QEMUIOVector *qiov, size_t qiov_offset,
2654                       BdrvRequestFlags flags)
2655 {
2656     BDRVQcow2State *s = bs->opaque;
2657     int offset_in_cluster;
2658     int ret;
2659     unsigned int cur_bytes; /* number of sectors in current iteration */
2660     uint64_t host_offset;
2661     QCowL2Meta *l2meta = NULL;
2662     AioTaskPool *aio = NULL;
2663 
2664     trace_qcow2_writev_start_req(qemu_coroutine_self(), offset, bytes);
2665 
2666     while (bytes != 0 && aio_task_pool_status(aio) == 0) {
2667 
2668         l2meta = NULL;
2669 
2670         trace_qcow2_writev_start_part(qemu_coroutine_self());
2671         offset_in_cluster = offset_into_cluster(s, offset);
2672         cur_bytes = MIN(bytes, INT_MAX);
2673         if (bs->encrypted) {
2674             cur_bytes = MIN(cur_bytes,
2675                             QCOW_MAX_CRYPT_CLUSTERS * s->cluster_size
2676                             - offset_in_cluster);
2677         }
2678 
2679         qemu_co_mutex_lock(&s->lock);
2680 
2681         ret = qcow2_alloc_host_offset(bs, offset, &cur_bytes,
2682                                       &host_offset, &l2meta);
2683         if (ret < 0) {
2684             goto out_locked;
2685         }
2686 
2687         ret = qcow2_pre_write_overlap_check(bs, 0, host_offset,
2688                                             cur_bytes, true);
2689         if (ret < 0) {
2690             goto out_locked;
2691         }
2692 
2693         qemu_co_mutex_unlock(&s->lock);
2694 
2695         if (!aio && cur_bytes != bytes) {
2696             aio = aio_task_pool_new(QCOW2_MAX_WORKERS);
2697         }
2698         ret = qcow2_add_task(bs, aio, qcow2_co_pwritev_task_entry, 0,
2699                              host_offset, offset,
2700                              cur_bytes, qiov, qiov_offset, l2meta);
2701         l2meta = NULL; /* l2meta is consumed by qcow2_co_pwritev_task() */
2702         if (ret < 0) {
2703             goto fail_nometa;
2704         }
2705 
2706         bytes -= cur_bytes;
2707         offset += cur_bytes;
2708         qiov_offset += cur_bytes;
2709         trace_qcow2_writev_done_part(qemu_coroutine_self(), cur_bytes);
2710     }
2711     ret = 0;
2712 
2713     qemu_co_mutex_lock(&s->lock);
2714 
2715 out_locked:
2716     qcow2_handle_l2meta(bs, &l2meta, false);
2717 
2718     qemu_co_mutex_unlock(&s->lock);
2719 
2720 fail_nometa:
2721     if (aio) {
2722         aio_task_pool_wait_all(aio);
2723         if (ret == 0) {
2724             ret = aio_task_pool_status(aio);
2725         }
2726         g_free(aio);
2727     }
2728 
2729     trace_qcow2_writev_done_req(qemu_coroutine_self(), ret);
2730 
2731     return ret;
2732 }
2733 
2734 static int qcow2_inactivate(BlockDriverState *bs)
2735 {
2736     BDRVQcow2State *s = bs->opaque;
2737     int ret, result = 0;
2738     Error *local_err = NULL;
2739 
2740     qcow2_store_persistent_dirty_bitmaps(bs, true, &local_err);
2741     if (local_err != NULL) {
2742         result = -EINVAL;
2743         error_reportf_err(local_err, "Lost persistent bitmaps during "
2744                           "inactivation of node '%s': ",
2745                           bdrv_get_device_or_node_name(bs));
2746     }
2747 
2748     ret = qcow2_cache_flush(bs, s->l2_table_cache);
2749     if (ret) {
2750         result = ret;
2751         error_report("Failed to flush the L2 table cache: %s",
2752                      strerror(-ret));
2753     }
2754 
2755     ret = qcow2_cache_flush(bs, s->refcount_block_cache);
2756     if (ret) {
2757         result = ret;
2758         error_report("Failed to flush the refcount block cache: %s",
2759                      strerror(-ret));
2760     }
2761 
2762     if (result == 0) {
2763         qcow2_mark_clean(bs);
2764     }
2765 
2766     return result;
2767 }
2768 
2769 static void qcow2_do_close(BlockDriverState *bs, bool close_data_file)
2770 {
2771     BDRVQcow2State *s = bs->opaque;
2772     qemu_vfree(s->l1_table);
2773     /* else pre-write overlap checks in cache_destroy may crash */
2774     s->l1_table = NULL;
2775 
2776     if (!(s->flags & BDRV_O_INACTIVE)) {
2777         qcow2_inactivate(bs);
2778     }
2779 
2780     cache_clean_timer_del(bs);
2781     qcow2_cache_destroy(s->l2_table_cache);
2782     qcow2_cache_destroy(s->refcount_block_cache);
2783 
2784     qcrypto_block_free(s->crypto);
2785     s->crypto = NULL;
2786     qapi_free_QCryptoBlockOpenOptions(s->crypto_opts);
2787 
2788     g_free(s->unknown_header_fields);
2789     cleanup_unknown_header_ext(bs);
2790 
2791     g_free(s->image_data_file);
2792     g_free(s->image_backing_file);
2793     g_free(s->image_backing_format);
2794 
2795     if (close_data_file && has_data_file(bs)) {
2796         bdrv_graph_wrlock(NULL);
2797         bdrv_unref_child(bs, s->data_file);
2798         bdrv_graph_wrunlock();
2799         s->data_file = NULL;
2800     }
2801 
2802     qcow2_refcount_close(bs);
2803     qcow2_free_snapshots(bs);
2804 }
2805 
2806 static void qcow2_close(BlockDriverState *bs)
2807 {
2808     qcow2_do_close(bs, true);
2809 }
2810 
2811 static void coroutine_fn GRAPH_RDLOCK
2812 qcow2_co_invalidate_cache(BlockDriverState *bs, Error **errp)
2813 {
2814     ERRP_GUARD();
2815     BDRVQcow2State *s = bs->opaque;
2816     BdrvChild *data_file;
2817     int flags = s->flags;
2818     QCryptoBlock *crypto = NULL;
2819     QDict *options;
2820     int ret;
2821 
2822     /*
2823      * Backing files are read-only which makes all of their metadata immutable,
2824      * that means we don't have to worry about reopening them here.
2825      */
2826 
2827     crypto = s->crypto;
2828     s->crypto = NULL;
2829 
2830     /*
2831      * Do not reopen s->data_file (i.e., have qcow2_do_close() not close it,
2832      * and then prevent qcow2_do_open() from opening it), because this function
2833      * runs in the I/O path and as such we must not invoke global-state
2834      * functions like bdrv_unref_child() and bdrv_open_child().
2835      */
2836 
2837     qcow2_do_close(bs, false);
2838 
2839     data_file = s->data_file;
2840     memset(s, 0, sizeof(BDRVQcow2State));
2841     s->data_file = data_file;
2842 
2843     options = qdict_clone_shallow(bs->options);
2844 
2845     flags &= ~BDRV_O_INACTIVE;
2846     qemu_co_mutex_lock(&s->lock);
2847     ret = qcow2_do_open(bs, options, flags, false, errp);
2848     qemu_co_mutex_unlock(&s->lock);
2849     qobject_unref(options);
2850     if (ret < 0) {
2851         error_prepend(errp, "Could not reopen qcow2 layer: ");
2852         bs->drv = NULL;
2853         return;
2854     }
2855 
2856     s->crypto = crypto;
2857 }
2858 
2859 static size_t header_ext_add(char *buf, uint32_t magic, const void *s,
2860     size_t len, size_t buflen)
2861 {
2862     QCowExtension *ext_backing_fmt = (QCowExtension*) buf;
2863     size_t ext_len = sizeof(QCowExtension) + ((len + 7) & ~7);
2864 
2865     if (buflen < ext_len) {
2866         return -ENOSPC;
2867     }
2868 
2869     *ext_backing_fmt = (QCowExtension) {
2870         .magic  = cpu_to_be32(magic),
2871         .len    = cpu_to_be32(len),
2872     };
2873 
2874     if (len) {
2875         memcpy(buf + sizeof(QCowExtension), s, len);
2876     }
2877 
2878     return ext_len;
2879 }
2880 
2881 /*
2882  * Updates the qcow2 header, including the variable length parts of it, i.e.
2883  * the backing file name and all extensions. qcow2 was not designed to allow
2884  * such changes, so if we run out of space (we can only use the first cluster)
2885  * this function may fail.
2886  *
2887  * Returns 0 on success, -errno in error cases.
2888  */
2889 int qcow2_update_header(BlockDriverState *bs)
2890 {
2891     BDRVQcow2State *s = bs->opaque;
2892     QCowHeader *header;
2893     char *buf;
2894     size_t buflen = s->cluster_size;
2895     int ret;
2896     uint64_t total_size;
2897     uint32_t refcount_table_clusters;
2898     size_t header_length;
2899     Qcow2UnknownHeaderExtension *uext;
2900 
2901     buf = qemu_blockalign(bs, buflen);
2902 
2903     /* Header structure */
2904     header = (QCowHeader*) buf;
2905 
2906     if (buflen < sizeof(*header)) {
2907         ret = -ENOSPC;
2908         goto fail;
2909     }
2910 
2911     header_length = sizeof(*header) + s->unknown_header_fields_size;
2912     total_size = bs->total_sectors * BDRV_SECTOR_SIZE;
2913     refcount_table_clusters = s->refcount_table_size >> (s->cluster_bits - 3);
2914 
2915     ret = validate_compression_type(s, NULL);
2916     if (ret) {
2917         goto fail;
2918     }
2919 
2920     *header = (QCowHeader) {
2921         /* Version 2 fields */
2922         .magic                  = cpu_to_be32(QCOW_MAGIC),
2923         .version                = cpu_to_be32(s->qcow_version),
2924         .backing_file_offset    = 0,
2925         .backing_file_size      = 0,
2926         .cluster_bits           = cpu_to_be32(s->cluster_bits),
2927         .size                   = cpu_to_be64(total_size),
2928         .crypt_method           = cpu_to_be32(s->crypt_method_header),
2929         .l1_size                = cpu_to_be32(s->l1_size),
2930         .l1_table_offset        = cpu_to_be64(s->l1_table_offset),
2931         .refcount_table_offset  = cpu_to_be64(s->refcount_table_offset),
2932         .refcount_table_clusters = cpu_to_be32(refcount_table_clusters),
2933         .nb_snapshots           = cpu_to_be32(s->nb_snapshots),
2934         .snapshots_offset       = cpu_to_be64(s->snapshots_offset),
2935 
2936         /* Version 3 fields */
2937         .incompatible_features  = cpu_to_be64(s->incompatible_features),
2938         .compatible_features    = cpu_to_be64(s->compatible_features),
2939         .autoclear_features     = cpu_to_be64(s->autoclear_features),
2940         .refcount_order         = cpu_to_be32(s->refcount_order),
2941         .header_length          = cpu_to_be32(header_length),
2942         .compression_type       = s->compression_type,
2943     };
2944 
2945     /* For older versions, write a shorter header */
2946     switch (s->qcow_version) {
2947     case 2:
2948         ret = offsetof(QCowHeader, incompatible_features);
2949         break;
2950     case 3:
2951         ret = sizeof(*header);
2952         break;
2953     default:
2954         ret = -EINVAL;
2955         goto fail;
2956     }
2957 
2958     buf += ret;
2959     buflen -= ret;
2960     memset(buf, 0, buflen);
2961 
2962     /* Preserve any unknown field in the header */
2963     if (s->unknown_header_fields_size) {
2964         if (buflen < s->unknown_header_fields_size) {
2965             ret = -ENOSPC;
2966             goto fail;
2967         }
2968 
2969         memcpy(buf, s->unknown_header_fields, s->unknown_header_fields_size);
2970         buf += s->unknown_header_fields_size;
2971         buflen -= s->unknown_header_fields_size;
2972     }
2973 
2974     /* Backing file format header extension */
2975     if (s->image_backing_format) {
2976         ret = header_ext_add(buf, QCOW2_EXT_MAGIC_BACKING_FORMAT,
2977                              s->image_backing_format,
2978                              strlen(s->image_backing_format),
2979                              buflen);
2980         if (ret < 0) {
2981             goto fail;
2982         }
2983 
2984         buf += ret;
2985         buflen -= ret;
2986     }
2987 
2988     /* External data file header extension */
2989     if (has_data_file(bs) && s->image_data_file) {
2990         ret = header_ext_add(buf, QCOW2_EXT_MAGIC_DATA_FILE,
2991                              s->image_data_file, strlen(s->image_data_file),
2992                              buflen);
2993         if (ret < 0) {
2994             goto fail;
2995         }
2996 
2997         buf += ret;
2998         buflen -= ret;
2999     }
3000 
3001     /* Full disk encryption header pointer extension */
3002     if (s->crypto_header.offset != 0) {
3003         s->crypto_header.offset = cpu_to_be64(s->crypto_header.offset);
3004         s->crypto_header.length = cpu_to_be64(s->crypto_header.length);
3005         ret = header_ext_add(buf, QCOW2_EXT_MAGIC_CRYPTO_HEADER,
3006                              &s->crypto_header, sizeof(s->crypto_header),
3007                              buflen);
3008         s->crypto_header.offset = be64_to_cpu(s->crypto_header.offset);
3009         s->crypto_header.length = be64_to_cpu(s->crypto_header.length);
3010         if (ret < 0) {
3011             goto fail;
3012         }
3013         buf += ret;
3014         buflen -= ret;
3015     }
3016 
3017     /*
3018      * Feature table.  A mere 8 feature names occupies 392 bytes, and
3019      * when coupled with the v3 minimum header of 104 bytes plus the
3020      * 8-byte end-of-extension marker, that would leave only 8 bytes
3021      * for a backing file name in an image with 512-byte clusters.
3022      * Thus, we choose to omit this header for cluster sizes 4k and
3023      * smaller.
3024      */
3025     if (s->qcow_version >= 3 && s->cluster_size > 4096) {
3026         static const Qcow2Feature features[] = {
3027             {
3028                 .type = QCOW2_FEAT_TYPE_INCOMPATIBLE,
3029                 .bit  = QCOW2_INCOMPAT_DIRTY_BITNR,
3030                 .name = "dirty bit",
3031             },
3032             {
3033                 .type = QCOW2_FEAT_TYPE_INCOMPATIBLE,
3034                 .bit  = QCOW2_INCOMPAT_CORRUPT_BITNR,
3035                 .name = "corrupt bit",
3036             },
3037             {
3038                 .type = QCOW2_FEAT_TYPE_INCOMPATIBLE,
3039                 .bit  = QCOW2_INCOMPAT_DATA_FILE_BITNR,
3040                 .name = "external data file",
3041             },
3042             {
3043                 .type = QCOW2_FEAT_TYPE_INCOMPATIBLE,
3044                 .bit  = QCOW2_INCOMPAT_COMPRESSION_BITNR,
3045                 .name = "compression type",
3046             },
3047             {
3048                 .type = QCOW2_FEAT_TYPE_INCOMPATIBLE,
3049                 .bit  = QCOW2_INCOMPAT_EXTL2_BITNR,
3050                 .name = "extended L2 entries",
3051             },
3052             {
3053                 .type = QCOW2_FEAT_TYPE_COMPATIBLE,
3054                 .bit  = QCOW2_COMPAT_LAZY_REFCOUNTS_BITNR,
3055                 .name = "lazy refcounts",
3056             },
3057             {
3058                 .type = QCOW2_FEAT_TYPE_AUTOCLEAR,
3059                 .bit  = QCOW2_AUTOCLEAR_BITMAPS_BITNR,
3060                 .name = "bitmaps",
3061             },
3062             {
3063                 .type = QCOW2_FEAT_TYPE_AUTOCLEAR,
3064                 .bit  = QCOW2_AUTOCLEAR_DATA_FILE_RAW_BITNR,
3065                 .name = "raw external data",
3066             },
3067         };
3068 
3069         ret = header_ext_add(buf, QCOW2_EXT_MAGIC_FEATURE_TABLE,
3070                              features, sizeof(features), buflen);
3071         if (ret < 0) {
3072             goto fail;
3073         }
3074         buf += ret;
3075         buflen -= ret;
3076     }
3077 
3078     /* Bitmap extension */
3079     if (s->nb_bitmaps > 0) {
3080         Qcow2BitmapHeaderExt bitmaps_header = {
3081             .nb_bitmaps = cpu_to_be32(s->nb_bitmaps),
3082             .bitmap_directory_size =
3083                     cpu_to_be64(s->bitmap_directory_size),
3084             .bitmap_directory_offset =
3085                     cpu_to_be64(s->bitmap_directory_offset)
3086         };
3087         ret = header_ext_add(buf, QCOW2_EXT_MAGIC_BITMAPS,
3088                              &bitmaps_header, sizeof(bitmaps_header),
3089                              buflen);
3090         if (ret < 0) {
3091             goto fail;
3092         }
3093         buf += ret;
3094         buflen -= ret;
3095     }
3096 
3097     /* Keep unknown header extensions */
3098     QLIST_FOREACH(uext, &s->unknown_header_ext, next) {
3099         ret = header_ext_add(buf, uext->magic, uext->data, uext->len, buflen);
3100         if (ret < 0) {
3101             goto fail;
3102         }
3103 
3104         buf += ret;
3105         buflen -= ret;
3106     }
3107 
3108     /* End of header extensions */
3109     ret = header_ext_add(buf, QCOW2_EXT_MAGIC_END, NULL, 0, buflen);
3110     if (ret < 0) {
3111         goto fail;
3112     }
3113 
3114     buf += ret;
3115     buflen -= ret;
3116 
3117     /* Backing file name */
3118     if (s->image_backing_file) {
3119         size_t backing_file_len = strlen(s->image_backing_file);
3120 
3121         if (buflen < backing_file_len) {
3122             ret = -ENOSPC;
3123             goto fail;
3124         }
3125 
3126         /* Using strncpy is ok here, since buf is not NUL-terminated. */
3127         strncpy(buf, s->image_backing_file, buflen);
3128 
3129         header->backing_file_offset = cpu_to_be64(buf - ((char*) header));
3130         header->backing_file_size   = cpu_to_be32(backing_file_len);
3131     }
3132 
3133     /* Write the new header */
3134     ret = bdrv_pwrite(bs->file, 0, s->cluster_size, header, 0);
3135     if (ret < 0) {
3136         goto fail;
3137     }
3138 
3139     ret = 0;
3140 fail:
3141     qemu_vfree(header);
3142     return ret;
3143 }
3144 
3145 static int qcow2_change_backing_file(BlockDriverState *bs,
3146     const char *backing_file, const char *backing_fmt)
3147 {
3148     BDRVQcow2State *s = bs->opaque;
3149 
3150     /* Adding a backing file means that the external data file alone won't be
3151      * enough to make sense of the content */
3152     if (backing_file && data_file_is_raw(bs)) {
3153         return -EINVAL;
3154     }
3155 
3156     if (backing_file && strlen(backing_file) > 1023) {
3157         return -EINVAL;
3158     }
3159 
3160     pstrcpy(bs->auto_backing_file, sizeof(bs->auto_backing_file),
3161             backing_file ?: "");
3162     pstrcpy(bs->backing_file, sizeof(bs->backing_file), backing_file ?: "");
3163     pstrcpy(bs->backing_format, sizeof(bs->backing_format), backing_fmt ?: "");
3164 
3165     g_free(s->image_backing_file);
3166     g_free(s->image_backing_format);
3167 
3168     s->image_backing_file = backing_file ? g_strdup(bs->backing_file) : NULL;
3169     s->image_backing_format = backing_fmt ? g_strdup(bs->backing_format) : NULL;
3170 
3171     return qcow2_update_header(bs);
3172 }
3173 
3174 static int coroutine_fn GRAPH_RDLOCK
3175 qcow2_set_up_encryption(BlockDriverState *bs,
3176                         QCryptoBlockCreateOptions *cryptoopts,
3177                         Error **errp)
3178 {
3179     BDRVQcow2State *s = bs->opaque;
3180     QCryptoBlock *crypto = NULL;
3181     int fmt, ret;
3182 
3183     switch (cryptoopts->format) {
3184     case Q_CRYPTO_BLOCK_FORMAT_LUKS:
3185         fmt = QCOW_CRYPT_LUKS;
3186         break;
3187     case Q_CRYPTO_BLOCK_FORMAT_QCOW:
3188         fmt = QCOW_CRYPT_AES;
3189         break;
3190     default:
3191         error_setg(errp, "Crypto format not supported in qcow2");
3192         return -EINVAL;
3193     }
3194 
3195     s->crypt_method_header = fmt;
3196 
3197     crypto = qcrypto_block_create(cryptoopts, "encrypt.",
3198                                   qcow2_crypto_hdr_init_func,
3199                                   qcow2_crypto_hdr_write_func,
3200                                   bs, errp);
3201     if (!crypto) {
3202         return -EINVAL;
3203     }
3204 
3205     ret = qcow2_update_header(bs);
3206     if (ret < 0) {
3207         error_setg_errno(errp, -ret, "Could not write encryption header");
3208         goto out;
3209     }
3210 
3211     ret = 0;
3212  out:
3213     qcrypto_block_free(crypto);
3214     return ret;
3215 }
3216 
3217 /**
3218  * Preallocates metadata structures for data clusters between @offset (in the
3219  * guest disk) and @new_length (which is thus generally the new guest disk
3220  * size).
3221  *
3222  * Returns: 0 on success, -errno on failure.
3223  */
3224 static int coroutine_fn GRAPH_RDLOCK
3225 preallocate_co(BlockDriverState *bs, uint64_t offset, uint64_t new_length,
3226                PreallocMode mode, Error **errp)
3227 {
3228     BDRVQcow2State *s = bs->opaque;
3229     uint64_t bytes;
3230     uint64_t host_offset = 0;
3231     int64_t file_length;
3232     unsigned int cur_bytes;
3233     int ret;
3234     QCowL2Meta *meta = NULL, *m;
3235 
3236     assert(offset <= new_length);
3237     bytes = new_length - offset;
3238 
3239     while (bytes) {
3240         cur_bytes = MIN(bytes, QEMU_ALIGN_DOWN(INT_MAX, s->cluster_size));
3241         ret = qcow2_alloc_host_offset(bs, offset, &cur_bytes,
3242                                       &host_offset, &meta);
3243         if (ret < 0) {
3244             error_setg_errno(errp, -ret, "Allocating clusters failed");
3245             goto out;
3246         }
3247 
3248         for (m = meta; m != NULL; m = m->next) {
3249             m->prealloc = true;
3250         }
3251 
3252         ret = qcow2_handle_l2meta(bs, &meta, true);
3253         if (ret < 0) {
3254             error_setg_errno(errp, -ret, "Mapping clusters failed");
3255             goto out;
3256         }
3257 
3258         /* TODO Preallocate data if requested */
3259 
3260         bytes -= cur_bytes;
3261         offset += cur_bytes;
3262     }
3263 
3264     /*
3265      * It is expected that the image file is large enough to actually contain
3266      * all of the allocated clusters (otherwise we get failing reads after
3267      * EOF). Extend the image to the last allocated sector.
3268      */
3269     file_length = bdrv_co_getlength(s->data_file->bs);
3270     if (file_length < 0) {
3271         error_setg_errno(errp, -file_length, "Could not get file size");
3272         ret = file_length;
3273         goto out;
3274     }
3275 
3276     if (host_offset + cur_bytes > file_length) {
3277         if (mode == PREALLOC_MODE_METADATA) {
3278             mode = PREALLOC_MODE_OFF;
3279         }
3280         ret = bdrv_co_truncate(s->data_file, host_offset + cur_bytes, false,
3281                                mode, 0, errp);
3282         if (ret < 0) {
3283             goto out;
3284         }
3285     }
3286 
3287     ret = 0;
3288 
3289 out:
3290     qcow2_handle_l2meta(bs, &meta, false);
3291     return ret;
3292 }
3293 
3294 /* qcow2_refcount_metadata_size:
3295  * @clusters: number of clusters to refcount (including data and L1/L2 tables)
3296  * @cluster_size: size of a cluster, in bytes
3297  * @refcount_order: refcount bits power-of-2 exponent
3298  * @generous_increase: allow for the refcount table to be 1.5x as large as it
3299  *                     needs to be
3300  *
3301  * Returns: Number of bytes required for refcount blocks and table metadata.
3302  */
3303 int64_t qcow2_refcount_metadata_size(int64_t clusters, size_t cluster_size,
3304                                      int refcount_order, bool generous_increase,
3305                                      uint64_t *refblock_count)
3306 {
3307     /*
3308      * Every host cluster is reference-counted, including metadata (even
3309      * refcount metadata is recursively included).
3310      *
3311      * An accurate formula for the size of refcount metadata size is difficult
3312      * to derive.  An easier method of calculation is finding the fixed point
3313      * where no further refcount blocks or table clusters are required to
3314      * reference count every cluster.
3315      */
3316     int64_t blocks_per_table_cluster = cluster_size / REFTABLE_ENTRY_SIZE;
3317     int64_t refcounts_per_block = cluster_size * 8 / (1 << refcount_order);
3318     int64_t table = 0;  /* number of refcount table clusters */
3319     int64_t blocks = 0; /* number of refcount block clusters */
3320     int64_t last;
3321     int64_t n = 0;
3322 
3323     do {
3324         last = n;
3325         blocks = DIV_ROUND_UP(clusters + table + blocks, refcounts_per_block);
3326         table = DIV_ROUND_UP(blocks, blocks_per_table_cluster);
3327         n = clusters + blocks + table;
3328 
3329         if (n == last && generous_increase) {
3330             clusters += DIV_ROUND_UP(table, 2);
3331             n = 0; /* force another loop */
3332             generous_increase = false;
3333         }
3334     } while (n != last);
3335 
3336     if (refblock_count) {
3337         *refblock_count = blocks;
3338     }
3339 
3340     return (blocks + table) * cluster_size;
3341 }
3342 
3343 /**
3344  * qcow2_calc_prealloc_size:
3345  * @total_size: virtual disk size in bytes
3346  * @cluster_size: cluster size in bytes
3347  * @refcount_order: refcount bits power-of-2 exponent
3348  * @extended_l2: true if the image has extended L2 entries
3349  *
3350  * Returns: Total number of bytes required for the fully allocated image
3351  * (including metadata).
3352  */
3353 static int64_t qcow2_calc_prealloc_size(int64_t total_size,
3354                                         size_t cluster_size,
3355                                         int refcount_order,
3356                                         bool extended_l2)
3357 {
3358     int64_t meta_size = 0;
3359     uint64_t nl1e, nl2e;
3360     int64_t aligned_total_size = ROUND_UP(total_size, cluster_size);
3361     size_t l2e_size = extended_l2 ? L2E_SIZE_EXTENDED : L2E_SIZE_NORMAL;
3362 
3363     /* header: 1 cluster */
3364     meta_size += cluster_size;
3365 
3366     /* total size of L2 tables */
3367     nl2e = aligned_total_size / cluster_size;
3368     nl2e = ROUND_UP(nl2e, cluster_size / l2e_size);
3369     meta_size += nl2e * l2e_size;
3370 
3371     /* total size of L1 tables */
3372     nl1e = nl2e * l2e_size / cluster_size;
3373     nl1e = ROUND_UP(nl1e, cluster_size / L1E_SIZE);
3374     meta_size += nl1e * L1E_SIZE;
3375 
3376     /* total size of refcount table and blocks */
3377     meta_size += qcow2_refcount_metadata_size(
3378             (meta_size + aligned_total_size) / cluster_size,
3379             cluster_size, refcount_order, false, NULL);
3380 
3381     return meta_size + aligned_total_size;
3382 }
3383 
3384 static bool validate_cluster_size(size_t cluster_size, bool extended_l2,
3385                                   Error **errp)
3386 {
3387     int cluster_bits = ctz32(cluster_size);
3388     if (cluster_bits < MIN_CLUSTER_BITS || cluster_bits > MAX_CLUSTER_BITS ||
3389         (1 << cluster_bits) != cluster_size)
3390     {
3391         error_setg(errp, "Cluster size must be a power of two between %d and "
3392                    "%dk", 1 << MIN_CLUSTER_BITS, 1 << (MAX_CLUSTER_BITS - 10));
3393         return false;
3394     }
3395 
3396     if (extended_l2) {
3397         unsigned min_cluster_size =
3398             (1 << MIN_CLUSTER_BITS) * QCOW_EXTL2_SUBCLUSTERS_PER_CLUSTER;
3399         if (cluster_size < min_cluster_size) {
3400             error_setg(errp, "Extended L2 entries are only supported with "
3401                        "cluster sizes of at least %u bytes", min_cluster_size);
3402             return false;
3403         }
3404     }
3405 
3406     return true;
3407 }
3408 
3409 static size_t qcow2_opt_get_cluster_size_del(QemuOpts *opts, bool extended_l2,
3410                                              Error **errp)
3411 {
3412     size_t cluster_size;
3413 
3414     cluster_size = qemu_opt_get_size_del(opts, BLOCK_OPT_CLUSTER_SIZE,
3415                                          DEFAULT_CLUSTER_SIZE);
3416     if (!validate_cluster_size(cluster_size, extended_l2, errp)) {
3417         return 0;
3418     }
3419     return cluster_size;
3420 }
3421 
3422 static int qcow2_opt_get_version_del(QemuOpts *opts, Error **errp)
3423 {
3424     char *buf;
3425     int ret;
3426 
3427     buf = qemu_opt_get_del(opts, BLOCK_OPT_COMPAT_LEVEL);
3428     if (!buf) {
3429         ret = 3; /* default */
3430     } else if (!strcmp(buf, "0.10")) {
3431         ret = 2;
3432     } else if (!strcmp(buf, "1.1")) {
3433         ret = 3;
3434     } else {
3435         error_setg(errp, "Invalid compatibility level: '%s'", buf);
3436         ret = -EINVAL;
3437     }
3438     g_free(buf);
3439     return ret;
3440 }
3441 
3442 static uint64_t qcow2_opt_get_refcount_bits_del(QemuOpts *opts, int version,
3443                                                 Error **errp)
3444 {
3445     uint64_t refcount_bits;
3446 
3447     refcount_bits = qemu_opt_get_number_del(opts, BLOCK_OPT_REFCOUNT_BITS, 16);
3448     if (refcount_bits > 64 || !is_power_of_2(refcount_bits)) {
3449         error_setg(errp, "Refcount width must be a power of two and may not "
3450                    "exceed 64 bits");
3451         return 0;
3452     }
3453 
3454     if (version < 3 && refcount_bits != 16) {
3455         error_setg(errp, "Different refcount widths than 16 bits require "
3456                    "compatibility level 1.1 or above (use compat=1.1 or "
3457                    "greater)");
3458         return 0;
3459     }
3460 
3461     return refcount_bits;
3462 }
3463 
3464 static int coroutine_fn GRAPH_UNLOCKED
3465 qcow2_co_create(BlockdevCreateOptions *create_options, Error **errp)
3466 {
3467     BlockdevCreateOptionsQcow2 *qcow2_opts;
3468     QDict *options;
3469 
3470     /*
3471      * Open the image file and write a minimal qcow2 header.
3472      *
3473      * We keep things simple and start with a zero-sized image. We also
3474      * do without refcount blocks or a L1 table for now. We'll fix the
3475      * inconsistency later.
3476      *
3477      * We do need a refcount table because growing the refcount table means
3478      * allocating two new refcount blocks - the second of which would be at
3479      * 2 GB for 64k clusters, and we don't want to have a 2 GB initial file
3480      * size for any qcow2 image.
3481      */
3482     BlockBackend *blk = NULL;
3483     BlockDriverState *bs = NULL;
3484     BlockDriverState *data_bs = NULL;
3485     QCowHeader *header;
3486     size_t cluster_size;
3487     int version;
3488     int refcount_order;
3489     uint64_t *refcount_table;
3490     int ret;
3491     uint8_t compression_type = QCOW2_COMPRESSION_TYPE_ZLIB;
3492 
3493     assert(create_options->driver == BLOCKDEV_DRIVER_QCOW2);
3494     qcow2_opts = &create_options->u.qcow2;
3495 
3496     bs = bdrv_co_open_blockdev_ref(qcow2_opts->file, errp);
3497     if (bs == NULL) {
3498         return -EIO;
3499     }
3500 
3501     /* Validate options and set default values */
3502     if (!QEMU_IS_ALIGNED(qcow2_opts->size, BDRV_SECTOR_SIZE)) {
3503         error_setg(errp, "Image size must be a multiple of %u bytes",
3504                    (unsigned) BDRV_SECTOR_SIZE);
3505         ret = -EINVAL;
3506         goto out;
3507     }
3508 
3509     if (qcow2_opts->has_version) {
3510         switch (qcow2_opts->version) {
3511         case BLOCKDEV_QCOW2_VERSION_V2:
3512             version = 2;
3513             break;
3514         case BLOCKDEV_QCOW2_VERSION_V3:
3515             version = 3;
3516             break;
3517         default:
3518             g_assert_not_reached();
3519         }
3520     } else {
3521         version = 3;
3522     }
3523 
3524     if (qcow2_opts->has_cluster_size) {
3525         cluster_size = qcow2_opts->cluster_size;
3526     } else {
3527         cluster_size = DEFAULT_CLUSTER_SIZE;
3528     }
3529 
3530     if (!qcow2_opts->has_extended_l2) {
3531         qcow2_opts->extended_l2 = false;
3532     }
3533     if (qcow2_opts->extended_l2) {
3534         if (version < 3) {
3535             error_setg(errp, "Extended L2 entries are only supported with "
3536                        "compatibility level 1.1 and above (use version=v3 or "
3537                        "greater)");
3538             ret = -EINVAL;
3539             goto out;
3540         }
3541     }
3542 
3543     if (!validate_cluster_size(cluster_size, qcow2_opts->extended_l2, errp)) {
3544         ret = -EINVAL;
3545         goto out;
3546     }
3547 
3548     if (!qcow2_opts->has_preallocation) {
3549         qcow2_opts->preallocation = PREALLOC_MODE_OFF;
3550     }
3551     if (qcow2_opts->backing_file &&
3552         qcow2_opts->preallocation != PREALLOC_MODE_OFF &&
3553         !qcow2_opts->extended_l2)
3554     {
3555         error_setg(errp, "Backing file and preallocation can only be used at "
3556                    "the same time if extended_l2 is on");
3557         ret = -EINVAL;
3558         goto out;
3559     }
3560     if (qcow2_opts->has_backing_fmt && !qcow2_opts->backing_file) {
3561         error_setg(errp, "Backing format cannot be used without backing file");
3562         ret = -EINVAL;
3563         goto out;
3564     }
3565 
3566     if (!qcow2_opts->has_lazy_refcounts) {
3567         qcow2_opts->lazy_refcounts = false;
3568     }
3569     if (version < 3 && qcow2_opts->lazy_refcounts) {
3570         error_setg(errp, "Lazy refcounts only supported with compatibility "
3571                    "level 1.1 and above (use version=v3 or greater)");
3572         ret = -EINVAL;
3573         goto out;
3574     }
3575 
3576     if (!qcow2_opts->has_refcount_bits) {
3577         qcow2_opts->refcount_bits = 16;
3578     }
3579     if (qcow2_opts->refcount_bits > 64 ||
3580         !is_power_of_2(qcow2_opts->refcount_bits))
3581     {
3582         error_setg(errp, "Refcount width must be a power of two and may not "
3583                    "exceed 64 bits");
3584         ret = -EINVAL;
3585         goto out;
3586     }
3587     if (version < 3 && qcow2_opts->refcount_bits != 16) {
3588         error_setg(errp, "Different refcount widths than 16 bits require "
3589                    "compatibility level 1.1 or above (use version=v3 or "
3590                    "greater)");
3591         ret = -EINVAL;
3592         goto out;
3593     }
3594     refcount_order = ctz32(qcow2_opts->refcount_bits);
3595 
3596     if (qcow2_opts->data_file_raw && !qcow2_opts->data_file) {
3597         error_setg(errp, "data-file-raw requires data-file");
3598         ret = -EINVAL;
3599         goto out;
3600     }
3601     if (qcow2_opts->data_file_raw && qcow2_opts->backing_file) {
3602         error_setg(errp, "Backing file and data-file-raw cannot be used at "
3603                    "the same time");
3604         ret = -EINVAL;
3605         goto out;
3606     }
3607     if (qcow2_opts->data_file_raw &&
3608         qcow2_opts->preallocation == PREALLOC_MODE_OFF)
3609     {
3610         /*
3611          * data-file-raw means that "the external data file can be
3612          * read as a consistent standalone raw image without looking
3613          * at the qcow2 metadata."  It does not say that the metadata
3614          * must be ignored, though (and the qcow2 driver in fact does
3615          * not ignore it), so the L1/L2 tables must be present and
3616          * give a 1:1 mapping, so you get the same result regardless
3617          * of whether you look at the metadata or whether you ignore
3618          * it.
3619          */
3620         qcow2_opts->preallocation = PREALLOC_MODE_METADATA;
3621 
3622         /*
3623          * Cannot use preallocation with backing files, but giving a
3624          * backing file when specifying data_file_raw is an error
3625          * anyway.
3626          */
3627         assert(!qcow2_opts->backing_file);
3628     }
3629 
3630     if (qcow2_opts->data_file) {
3631         if (version < 3) {
3632             error_setg(errp, "External data files are only supported with "
3633                        "compatibility level 1.1 and above (use version=v3 or "
3634                        "greater)");
3635             ret = -EINVAL;
3636             goto out;
3637         }
3638         data_bs = bdrv_co_open_blockdev_ref(qcow2_opts->data_file, errp);
3639         if (data_bs == NULL) {
3640             ret = -EIO;
3641             goto out;
3642         }
3643     }
3644 
3645     if (qcow2_opts->has_compression_type &&
3646         qcow2_opts->compression_type != QCOW2_COMPRESSION_TYPE_ZLIB) {
3647 
3648         ret = -EINVAL;
3649 
3650         if (version < 3) {
3651             error_setg(errp, "Non-zlib compression type is only supported with "
3652                        "compatibility level 1.1 and above (use version=v3 or "
3653                        "greater)");
3654             goto out;
3655         }
3656 
3657         switch (qcow2_opts->compression_type) {
3658 #ifdef CONFIG_ZSTD
3659         case QCOW2_COMPRESSION_TYPE_ZSTD:
3660             break;
3661 #endif
3662         default:
3663             error_setg(errp, "Unknown compression type");
3664             goto out;
3665         }
3666 
3667         compression_type = qcow2_opts->compression_type;
3668     }
3669 
3670     /* Create BlockBackend to write to the image */
3671     blk = blk_co_new_with_bs(bs, BLK_PERM_WRITE | BLK_PERM_RESIZE, BLK_PERM_ALL,
3672                              errp);
3673     if (!blk) {
3674         ret = -EPERM;
3675         goto out;
3676     }
3677     blk_set_allow_write_beyond_eof(blk, true);
3678 
3679     /* Write the header */
3680     QEMU_BUILD_BUG_ON((1 << MIN_CLUSTER_BITS) < sizeof(*header));
3681     header = g_malloc0(cluster_size);
3682     *header = (QCowHeader) {
3683         .magic                      = cpu_to_be32(QCOW_MAGIC),
3684         .version                    = cpu_to_be32(version),
3685         .cluster_bits               = cpu_to_be32(ctz32(cluster_size)),
3686         .size                       = cpu_to_be64(0),
3687         .l1_table_offset            = cpu_to_be64(0),
3688         .l1_size                    = cpu_to_be32(0),
3689         .refcount_table_offset      = cpu_to_be64(cluster_size),
3690         .refcount_table_clusters    = cpu_to_be32(1),
3691         .refcount_order             = cpu_to_be32(refcount_order),
3692         /* don't deal with endianness since compression_type is 1 byte long */
3693         .compression_type           = compression_type,
3694         .header_length              = cpu_to_be32(sizeof(*header)),
3695     };
3696 
3697     /* We'll update this to correct value later */
3698     header->crypt_method = cpu_to_be32(QCOW_CRYPT_NONE);
3699 
3700     if (qcow2_opts->lazy_refcounts) {
3701         header->compatible_features |=
3702             cpu_to_be64(QCOW2_COMPAT_LAZY_REFCOUNTS);
3703     }
3704     if (data_bs) {
3705         header->incompatible_features |=
3706             cpu_to_be64(QCOW2_INCOMPAT_DATA_FILE);
3707     }
3708     if (qcow2_opts->data_file_raw) {
3709         header->autoclear_features |=
3710             cpu_to_be64(QCOW2_AUTOCLEAR_DATA_FILE_RAW);
3711     }
3712     if (compression_type != QCOW2_COMPRESSION_TYPE_ZLIB) {
3713         header->incompatible_features |=
3714             cpu_to_be64(QCOW2_INCOMPAT_COMPRESSION);
3715     }
3716 
3717     if (qcow2_opts->extended_l2) {
3718         header->incompatible_features |=
3719             cpu_to_be64(QCOW2_INCOMPAT_EXTL2);
3720     }
3721 
3722     ret = blk_co_pwrite(blk, 0, cluster_size, header, 0);
3723     g_free(header);
3724     if (ret < 0) {
3725         error_setg_errno(errp, -ret, "Could not write qcow2 header");
3726         goto out;
3727     }
3728 
3729     /* Write a refcount table with one refcount block */
3730     refcount_table = g_malloc0(2 * cluster_size);
3731     refcount_table[0] = cpu_to_be64(2 * cluster_size);
3732     ret = blk_co_pwrite(blk, cluster_size, 2 * cluster_size, refcount_table, 0);
3733     g_free(refcount_table);
3734 
3735     if (ret < 0) {
3736         error_setg_errno(errp, -ret, "Could not write refcount table");
3737         goto out;
3738     }
3739 
3740     blk_co_unref(blk);
3741     blk = NULL;
3742 
3743     /*
3744      * And now open the image and make it consistent first (i.e. increase the
3745      * refcount of the cluster that is occupied by the header and the refcount
3746      * table)
3747      */
3748     options = qdict_new();
3749     qdict_put_str(options, "driver", "qcow2");
3750     qdict_put_str(options, "file", bs->node_name);
3751     if (data_bs) {
3752         qdict_put_str(options, "data-file", data_bs->node_name);
3753     }
3754     blk = blk_co_new_open(NULL, NULL, options,
3755                           BDRV_O_RDWR | BDRV_O_RESIZE | BDRV_O_NO_FLUSH,
3756                           errp);
3757     if (blk == NULL) {
3758         ret = -EIO;
3759         goto out;
3760     }
3761 
3762     bdrv_graph_co_rdlock();
3763     ret = qcow2_alloc_clusters(blk_bs(blk), 3 * cluster_size);
3764     if (ret < 0) {
3765         bdrv_graph_co_rdunlock();
3766         error_setg_errno(errp, -ret, "Could not allocate clusters for qcow2 "
3767                          "header and refcount table");
3768         goto out;
3769 
3770     } else if (ret != 0) {
3771         error_report("Huh, first cluster in empty image is already in use?");
3772         abort();
3773     }
3774 
3775     /* Set the external data file if necessary */
3776     if (data_bs) {
3777         BDRVQcow2State *s = blk_bs(blk)->opaque;
3778         s->image_data_file = g_strdup(data_bs->filename);
3779     }
3780 
3781     /* Create a full header (including things like feature table) */
3782     ret = qcow2_update_header(blk_bs(blk));
3783     bdrv_graph_co_rdunlock();
3784 
3785     if (ret < 0) {
3786         error_setg_errno(errp, -ret, "Could not update qcow2 header");
3787         goto out;
3788     }
3789 
3790     /* Okay, now that we have a valid image, let's give it the right size */
3791     ret = blk_co_truncate(blk, qcow2_opts->size, false,
3792                           qcow2_opts->preallocation, 0, errp);
3793     if (ret < 0) {
3794         error_prepend(errp, "Could not resize image: ");
3795         goto out;
3796     }
3797 
3798     /* Want a backing file? There you go. */
3799     if (qcow2_opts->backing_file) {
3800         const char *backing_format = NULL;
3801 
3802         if (qcow2_opts->has_backing_fmt) {
3803             backing_format = BlockdevDriver_str(qcow2_opts->backing_fmt);
3804         }
3805 
3806         ret = bdrv_change_backing_file(blk_bs(blk), qcow2_opts->backing_file,
3807                                        backing_format, false);
3808         if (ret < 0) {
3809             error_setg_errno(errp, -ret, "Could not assign backing file '%s' "
3810                              "with format '%s'", qcow2_opts->backing_file,
3811                              backing_format);
3812             goto out;
3813         }
3814     }
3815 
3816     /* Want encryption? There you go. */
3817     if (qcow2_opts->encrypt) {
3818         bdrv_graph_co_rdlock();
3819         ret = qcow2_set_up_encryption(blk_bs(blk), qcow2_opts->encrypt, errp);
3820         bdrv_graph_co_rdunlock();
3821 
3822         if (ret < 0) {
3823             goto out;
3824         }
3825     }
3826 
3827     blk_co_unref(blk);
3828     blk = NULL;
3829 
3830     /* Reopen the image without BDRV_O_NO_FLUSH to flush it before returning.
3831      * Using BDRV_O_NO_IO, since encryption is now setup we don't want to
3832      * have to setup decryption context. We're not doing any I/O on the top
3833      * level BlockDriverState, only lower layers, where BDRV_O_NO_IO does
3834      * not have effect.
3835      */
3836     options = qdict_new();
3837     qdict_put_str(options, "driver", "qcow2");
3838     qdict_put_str(options, "file", bs->node_name);
3839     if (data_bs) {
3840         qdict_put_str(options, "data-file", data_bs->node_name);
3841     }
3842     blk = blk_co_new_open(NULL, NULL, options,
3843                           BDRV_O_RDWR | BDRV_O_NO_BACKING | BDRV_O_NO_IO,
3844                           errp);
3845     if (blk == NULL) {
3846         ret = -EIO;
3847         goto out;
3848     }
3849 
3850     ret = 0;
3851 out:
3852     blk_co_unref(blk);
3853     bdrv_co_unref(bs);
3854     bdrv_co_unref(data_bs);
3855     return ret;
3856 }
3857 
3858 static int coroutine_fn GRAPH_UNLOCKED
3859 qcow2_co_create_opts(BlockDriver *drv, const char *filename, QemuOpts *opts,
3860                      Error **errp)
3861 {
3862     BlockdevCreateOptions *create_options = NULL;
3863     QDict *qdict;
3864     Visitor *v;
3865     BlockDriverState *bs = NULL;
3866     BlockDriverState *data_bs = NULL;
3867     const char *val;
3868     int ret;
3869 
3870     /* Only the keyval visitor supports the dotted syntax needed for
3871      * encryption, so go through a QDict before getting a QAPI type. Ignore
3872      * options meant for the protocol layer so that the visitor doesn't
3873      * complain. */
3874     qdict = qemu_opts_to_qdict_filtered(opts, NULL, bdrv_qcow2.create_opts,
3875                                         true);
3876 
3877     /* Handle encryption options */
3878     val = qdict_get_try_str(qdict, BLOCK_OPT_ENCRYPT);
3879     if (val && !strcmp(val, "on")) {
3880         qdict_put_str(qdict, BLOCK_OPT_ENCRYPT, "qcow");
3881     } else if (val && !strcmp(val, "off")) {
3882         qdict_del(qdict, BLOCK_OPT_ENCRYPT);
3883     }
3884 
3885     val = qdict_get_try_str(qdict, BLOCK_OPT_ENCRYPT_FORMAT);
3886     if (val && !strcmp(val, "aes")) {
3887         qdict_put_str(qdict, BLOCK_OPT_ENCRYPT_FORMAT, "qcow");
3888     }
3889 
3890     /* Convert compat=0.10/1.1 into compat=v2/v3, to be renamed into
3891      * version=v2/v3 below. */
3892     val = qdict_get_try_str(qdict, BLOCK_OPT_COMPAT_LEVEL);
3893     if (val && !strcmp(val, "0.10")) {
3894         qdict_put_str(qdict, BLOCK_OPT_COMPAT_LEVEL, "v2");
3895     } else if (val && !strcmp(val, "1.1")) {
3896         qdict_put_str(qdict, BLOCK_OPT_COMPAT_LEVEL, "v3");
3897     }
3898 
3899     /* Change legacy command line options into QMP ones */
3900     static const QDictRenames opt_renames[] = {
3901         { BLOCK_OPT_BACKING_FILE,       "backing-file" },
3902         { BLOCK_OPT_BACKING_FMT,        "backing-fmt" },
3903         { BLOCK_OPT_CLUSTER_SIZE,       "cluster-size" },
3904         { BLOCK_OPT_LAZY_REFCOUNTS,     "lazy-refcounts" },
3905         { BLOCK_OPT_EXTL2,              "extended-l2" },
3906         { BLOCK_OPT_REFCOUNT_BITS,      "refcount-bits" },
3907         { BLOCK_OPT_ENCRYPT,            BLOCK_OPT_ENCRYPT_FORMAT },
3908         { BLOCK_OPT_COMPAT_LEVEL,       "version" },
3909         { BLOCK_OPT_DATA_FILE_RAW,      "data-file-raw" },
3910         { BLOCK_OPT_COMPRESSION_TYPE,   "compression-type" },
3911         { NULL, NULL },
3912     };
3913 
3914     if (!qdict_rename_keys(qdict, opt_renames, errp)) {
3915         ret = -EINVAL;
3916         goto finish;
3917     }
3918 
3919     /* Create and open the file (protocol layer) */
3920     ret = bdrv_co_create_file(filename, opts, errp);
3921     if (ret < 0) {
3922         goto finish;
3923     }
3924 
3925     bs = bdrv_co_open(filename, NULL, NULL,
3926                       BDRV_O_RDWR | BDRV_O_RESIZE | BDRV_O_PROTOCOL, errp);
3927     if (bs == NULL) {
3928         ret = -EIO;
3929         goto finish;
3930     }
3931 
3932     /* Create and open an external data file (protocol layer) */
3933     val = qdict_get_try_str(qdict, BLOCK_OPT_DATA_FILE);
3934     if (val) {
3935         ret = bdrv_co_create_file(val, opts, errp);
3936         if (ret < 0) {
3937             goto finish;
3938         }
3939 
3940         data_bs = bdrv_co_open(val, NULL, NULL,
3941                                BDRV_O_RDWR | BDRV_O_RESIZE | BDRV_O_PROTOCOL,
3942                                errp);
3943         if (data_bs == NULL) {
3944             ret = -EIO;
3945             goto finish;
3946         }
3947 
3948         qdict_del(qdict, BLOCK_OPT_DATA_FILE);
3949         qdict_put_str(qdict, "data-file", data_bs->node_name);
3950     }
3951 
3952     /* Set 'driver' and 'node' options */
3953     qdict_put_str(qdict, "driver", "qcow2");
3954     qdict_put_str(qdict, "file", bs->node_name);
3955 
3956     /* Now get the QAPI type BlockdevCreateOptions */
3957     v = qobject_input_visitor_new_flat_confused(qdict, errp);
3958     if (!v) {
3959         ret = -EINVAL;
3960         goto finish;
3961     }
3962 
3963     visit_type_BlockdevCreateOptions(v, NULL, &create_options, errp);
3964     visit_free(v);
3965     if (!create_options) {
3966         ret = -EINVAL;
3967         goto finish;
3968     }
3969 
3970     /* Silently round up size */
3971     create_options->u.qcow2.size = ROUND_UP(create_options->u.qcow2.size,
3972                                             BDRV_SECTOR_SIZE);
3973 
3974     /* Create the qcow2 image (format layer) */
3975     ret = qcow2_co_create(create_options, errp);
3976 finish:
3977     if (ret < 0) {
3978         bdrv_graph_co_rdlock();
3979         bdrv_co_delete_file_noerr(bs);
3980         bdrv_co_delete_file_noerr(data_bs);
3981         bdrv_graph_co_rdunlock();
3982     } else {
3983         ret = 0;
3984     }
3985 
3986     qobject_unref(qdict);
3987     bdrv_co_unref(bs);
3988     bdrv_co_unref(data_bs);
3989     qapi_free_BlockdevCreateOptions(create_options);
3990     return ret;
3991 }
3992 
3993 
3994 static bool is_zero(BlockDriverState *bs, int64_t offset, int64_t bytes)
3995 {
3996     int64_t nr;
3997     int res;
3998 
3999     /* Clamp to image length, before checking status of underlying sectors */
4000     if (offset + bytes > bs->total_sectors * BDRV_SECTOR_SIZE) {
4001         bytes = bs->total_sectors * BDRV_SECTOR_SIZE - offset;
4002     }
4003 
4004     if (!bytes) {
4005         return true;
4006     }
4007 
4008     /*
4009      * bdrv_block_status_above doesn't merge different types of zeros, for
4010      * example, zeros which come from the region which is unallocated in
4011      * the whole backing chain, and zeros which come because of a short
4012      * backing file. So, we need a loop.
4013      */
4014     do {
4015         res = bdrv_block_status_above(bs, NULL, offset, bytes, &nr, NULL, NULL);
4016         offset += nr;
4017         bytes -= nr;
4018     } while (res >= 0 && (res & BDRV_BLOCK_ZERO) && nr && bytes);
4019 
4020     return res >= 0 && (res & BDRV_BLOCK_ZERO) && bytes == 0;
4021 }
4022 
4023 static int coroutine_fn GRAPH_RDLOCK
4024 qcow2_co_pwrite_zeroes(BlockDriverState *bs, int64_t offset, int64_t bytes,
4025                        BdrvRequestFlags flags)
4026 {
4027     int ret;
4028     BDRVQcow2State *s = bs->opaque;
4029 
4030     uint32_t head = offset_into_subcluster(s, offset);
4031     uint32_t tail = ROUND_UP(offset + bytes, s->subcluster_size) -
4032         (offset + bytes);
4033 
4034     trace_qcow2_pwrite_zeroes_start_req(qemu_coroutine_self(), offset, bytes);
4035     if (offset + bytes == bs->total_sectors * BDRV_SECTOR_SIZE) {
4036         tail = 0;
4037     }
4038 
4039     if (head || tail) {
4040         uint64_t off;
4041         unsigned int nr;
4042         QCow2SubclusterType type;
4043 
4044         assert(head + bytes + tail <= s->subcluster_size);
4045 
4046         /* check whether remainder of cluster already reads as zero */
4047         if (!(is_zero(bs, offset - head, head) &&
4048               is_zero(bs, offset + bytes, tail))) {
4049             return -ENOTSUP;
4050         }
4051 
4052         qemu_co_mutex_lock(&s->lock);
4053         /* We can have new write after previous check */
4054         offset -= head;
4055         bytes = s->subcluster_size;
4056         nr = s->subcluster_size;
4057         ret = qcow2_get_host_offset(bs, offset, &nr, &off, &type);
4058         if (ret < 0 ||
4059             (type != QCOW2_SUBCLUSTER_UNALLOCATED_PLAIN &&
4060              type != QCOW2_SUBCLUSTER_UNALLOCATED_ALLOC &&
4061              type != QCOW2_SUBCLUSTER_ZERO_PLAIN &&
4062              type != QCOW2_SUBCLUSTER_ZERO_ALLOC)) {
4063             qemu_co_mutex_unlock(&s->lock);
4064             return ret < 0 ? ret : -ENOTSUP;
4065         }
4066     } else {
4067         qemu_co_mutex_lock(&s->lock);
4068     }
4069 
4070     trace_qcow2_pwrite_zeroes(qemu_coroutine_self(), offset, bytes);
4071 
4072     /* Whatever is left can use real zero subclusters */
4073     ret = qcow2_subcluster_zeroize(bs, offset, bytes, flags);
4074     qemu_co_mutex_unlock(&s->lock);
4075 
4076     return ret;
4077 }
4078 
4079 static coroutine_fn int qcow2_co_pdiscard(BlockDriverState *bs,
4080                                           int64_t offset, int64_t bytes)
4081 {
4082     int ret;
4083     BDRVQcow2State *s = bs->opaque;
4084 
4085     /* If the image does not support QCOW_OFLAG_ZERO then discarding
4086      * clusters could expose stale data from the backing file. */
4087     if (s->qcow_version < 3 && bs->backing) {
4088         return -ENOTSUP;
4089     }
4090 
4091     if (!QEMU_IS_ALIGNED(offset | bytes, s->cluster_size)) {
4092         assert(bytes < s->cluster_size);
4093         /* Ignore partial clusters, except for the special case of the
4094          * complete partial cluster at the end of an unaligned file */
4095         if (!QEMU_IS_ALIGNED(offset, s->cluster_size) ||
4096             offset + bytes != bs->total_sectors * BDRV_SECTOR_SIZE) {
4097             return -ENOTSUP;
4098         }
4099     }
4100 
4101     qemu_co_mutex_lock(&s->lock);
4102     ret = qcow2_cluster_discard(bs, offset, bytes, QCOW2_DISCARD_REQUEST,
4103                                 false);
4104     qemu_co_mutex_unlock(&s->lock);
4105     return ret;
4106 }
4107 
4108 static int coroutine_fn GRAPH_RDLOCK
4109 qcow2_co_copy_range_from(BlockDriverState *bs,
4110                          BdrvChild *src, int64_t src_offset,
4111                          BdrvChild *dst, int64_t dst_offset,
4112                          int64_t bytes, BdrvRequestFlags read_flags,
4113                          BdrvRequestFlags write_flags)
4114 {
4115     BDRVQcow2State *s = bs->opaque;
4116     int ret;
4117     unsigned int cur_bytes; /* number of bytes in current iteration */
4118     BdrvChild *child = NULL;
4119     BdrvRequestFlags cur_write_flags;
4120 
4121     assert(!bs->encrypted);
4122     qemu_co_mutex_lock(&s->lock);
4123 
4124     while (bytes != 0) {
4125         uint64_t copy_offset = 0;
4126         QCow2SubclusterType type;
4127         /* prepare next request */
4128         cur_bytes = MIN(bytes, INT_MAX);
4129         cur_write_flags = write_flags;
4130 
4131         ret = qcow2_get_host_offset(bs, src_offset, &cur_bytes,
4132                                     &copy_offset, &type);
4133         if (ret < 0) {
4134             goto out;
4135         }
4136 
4137         switch (type) {
4138         case QCOW2_SUBCLUSTER_UNALLOCATED_PLAIN:
4139         case QCOW2_SUBCLUSTER_UNALLOCATED_ALLOC:
4140             if (bs->backing && bs->backing->bs) {
4141                 int64_t backing_length = bdrv_co_getlength(bs->backing->bs);
4142                 if (src_offset >= backing_length) {
4143                     cur_write_flags |= BDRV_REQ_ZERO_WRITE;
4144                 } else {
4145                     child = bs->backing;
4146                     cur_bytes = MIN(cur_bytes, backing_length - src_offset);
4147                     copy_offset = src_offset;
4148                 }
4149             } else {
4150                 cur_write_flags |= BDRV_REQ_ZERO_WRITE;
4151             }
4152             break;
4153 
4154         case QCOW2_SUBCLUSTER_ZERO_PLAIN:
4155         case QCOW2_SUBCLUSTER_ZERO_ALLOC:
4156             cur_write_flags |= BDRV_REQ_ZERO_WRITE;
4157             break;
4158 
4159         case QCOW2_SUBCLUSTER_COMPRESSED:
4160             ret = -ENOTSUP;
4161             goto out;
4162 
4163         case QCOW2_SUBCLUSTER_NORMAL:
4164             child = s->data_file;
4165             break;
4166 
4167         default:
4168             abort();
4169         }
4170         qemu_co_mutex_unlock(&s->lock);
4171         ret = bdrv_co_copy_range_from(child,
4172                                       copy_offset,
4173                                       dst, dst_offset,
4174                                       cur_bytes, read_flags, cur_write_flags);
4175         qemu_co_mutex_lock(&s->lock);
4176         if (ret < 0) {
4177             goto out;
4178         }
4179 
4180         bytes -= cur_bytes;
4181         src_offset += cur_bytes;
4182         dst_offset += cur_bytes;
4183     }
4184     ret = 0;
4185 
4186 out:
4187     qemu_co_mutex_unlock(&s->lock);
4188     return ret;
4189 }
4190 
4191 static int coroutine_fn GRAPH_RDLOCK
4192 qcow2_co_copy_range_to(BlockDriverState *bs,
4193                        BdrvChild *src, int64_t src_offset,
4194                        BdrvChild *dst, int64_t dst_offset,
4195                        int64_t bytes, BdrvRequestFlags read_flags,
4196                        BdrvRequestFlags write_flags)
4197 {
4198     BDRVQcow2State *s = bs->opaque;
4199     int ret;
4200     unsigned int cur_bytes; /* number of sectors in current iteration */
4201     uint64_t host_offset;
4202     QCowL2Meta *l2meta = NULL;
4203 
4204     assert(!bs->encrypted);
4205 
4206     qemu_co_mutex_lock(&s->lock);
4207 
4208     while (bytes != 0) {
4209 
4210         l2meta = NULL;
4211 
4212         cur_bytes = MIN(bytes, INT_MAX);
4213 
4214         /* TODO:
4215          * If src->bs == dst->bs, we could simply copy by incrementing
4216          * the refcnt, without copying user data.
4217          * Or if src->bs == dst->bs->backing->bs, we could copy by discarding. */
4218         ret = qcow2_alloc_host_offset(bs, dst_offset, &cur_bytes,
4219                                       &host_offset, &l2meta);
4220         if (ret < 0) {
4221             goto fail;
4222         }
4223 
4224         ret = qcow2_pre_write_overlap_check(bs, 0, host_offset, cur_bytes,
4225                                             true);
4226         if (ret < 0) {
4227             goto fail;
4228         }
4229 
4230         qemu_co_mutex_unlock(&s->lock);
4231         ret = bdrv_co_copy_range_to(src, src_offset, s->data_file, host_offset,
4232                                     cur_bytes, read_flags, write_flags);
4233         qemu_co_mutex_lock(&s->lock);
4234         if (ret < 0) {
4235             goto fail;
4236         }
4237 
4238         ret = qcow2_handle_l2meta(bs, &l2meta, true);
4239         if (ret) {
4240             goto fail;
4241         }
4242 
4243         bytes -= cur_bytes;
4244         src_offset += cur_bytes;
4245         dst_offset += cur_bytes;
4246     }
4247     ret = 0;
4248 
4249 fail:
4250     qcow2_handle_l2meta(bs, &l2meta, false);
4251 
4252     qemu_co_mutex_unlock(&s->lock);
4253 
4254     trace_qcow2_writev_done_req(qemu_coroutine_self(), ret);
4255 
4256     return ret;
4257 }
4258 
4259 static int coroutine_fn GRAPH_RDLOCK
4260 qcow2_co_truncate(BlockDriverState *bs, int64_t offset, bool exact,
4261                   PreallocMode prealloc, BdrvRequestFlags flags, Error **errp)
4262 {
4263     BDRVQcow2State *s = bs->opaque;
4264     uint64_t old_length;
4265     int64_t new_l1_size;
4266     int ret;
4267     QDict *options;
4268 
4269     if (prealloc != PREALLOC_MODE_OFF && prealloc != PREALLOC_MODE_METADATA &&
4270         prealloc != PREALLOC_MODE_FALLOC && prealloc != PREALLOC_MODE_FULL)
4271     {
4272         error_setg(errp, "Unsupported preallocation mode '%s'",
4273                    PreallocMode_str(prealloc));
4274         return -ENOTSUP;
4275     }
4276 
4277     if (!QEMU_IS_ALIGNED(offset, BDRV_SECTOR_SIZE)) {
4278         error_setg(errp, "The new size must be a multiple of %u",
4279                    (unsigned) BDRV_SECTOR_SIZE);
4280         return -EINVAL;
4281     }
4282 
4283     qemu_co_mutex_lock(&s->lock);
4284 
4285     /*
4286      * Even though we store snapshot size for all images, it was not
4287      * required until v3, so it is not safe to proceed for v2.
4288      */
4289     if (s->nb_snapshots && s->qcow_version < 3) {
4290         error_setg(errp, "Can't resize a v2 image which has snapshots");
4291         ret = -ENOTSUP;
4292         goto fail;
4293     }
4294 
4295     /* See qcow2-bitmap.c for which bitmap scenarios prevent a resize. */
4296     if (qcow2_truncate_bitmaps_check(bs, errp)) {
4297         ret = -ENOTSUP;
4298         goto fail;
4299     }
4300 
4301     old_length = bs->total_sectors * BDRV_SECTOR_SIZE;
4302     new_l1_size = size_to_l1(s, offset);
4303 
4304     if (offset < old_length) {
4305         int64_t last_cluster, old_file_size;
4306         if (prealloc != PREALLOC_MODE_OFF) {
4307             error_setg(errp,
4308                        "Preallocation can't be used for shrinking an image");
4309             ret = -EINVAL;
4310             goto fail;
4311         }
4312 
4313         ret = qcow2_cluster_discard(bs, ROUND_UP(offset, s->cluster_size),
4314                                     old_length - ROUND_UP(offset,
4315                                                           s->cluster_size),
4316                                     QCOW2_DISCARD_ALWAYS, true);
4317         if (ret < 0) {
4318             error_setg_errno(errp, -ret, "Failed to discard cropped clusters");
4319             goto fail;
4320         }
4321 
4322         ret = qcow2_shrink_l1_table(bs, new_l1_size);
4323         if (ret < 0) {
4324             error_setg_errno(errp, -ret,
4325                              "Failed to reduce the number of L2 tables");
4326             goto fail;
4327         }
4328 
4329         ret = qcow2_shrink_reftable(bs);
4330         if (ret < 0) {
4331             error_setg_errno(errp, -ret,
4332                              "Failed to discard unused refblocks");
4333             goto fail;
4334         }
4335 
4336         old_file_size = bdrv_co_getlength(bs->file->bs);
4337         if (old_file_size < 0) {
4338             error_setg_errno(errp, -old_file_size,
4339                              "Failed to inquire current file length");
4340             ret = old_file_size;
4341             goto fail;
4342         }
4343         last_cluster = qcow2_get_last_cluster(bs, old_file_size);
4344         if (last_cluster < 0) {
4345             error_setg_errno(errp, -last_cluster,
4346                              "Failed to find the last cluster");
4347             ret = last_cluster;
4348             goto fail;
4349         }
4350         if ((last_cluster + 1) * s->cluster_size < old_file_size) {
4351             Error *local_err = NULL;
4352 
4353             /*
4354              * Do not pass @exact here: It will not help the user if
4355              * we get an error here just because they wanted to shrink
4356              * their qcow2 image (on a block device) with qemu-img.
4357              * (And on the qcow2 layer, the @exact requirement is
4358              * always fulfilled, so there is no need to pass it on.)
4359              */
4360             bdrv_co_truncate(bs->file, (last_cluster + 1) * s->cluster_size,
4361                              false, PREALLOC_MODE_OFF, 0, &local_err);
4362             if (local_err) {
4363                 warn_reportf_err(local_err,
4364                                  "Failed to truncate the tail of the image: ");
4365             }
4366         }
4367     } else {
4368         ret = qcow2_grow_l1_table(bs, new_l1_size, true);
4369         if (ret < 0) {
4370             error_setg_errno(errp, -ret, "Failed to grow the L1 table");
4371             goto fail;
4372         }
4373 
4374         if (data_file_is_raw(bs) && prealloc == PREALLOC_MODE_OFF) {
4375             /*
4376              * When creating a qcow2 image with data-file-raw, we enforce
4377              * at least prealloc=metadata, so that the L1/L2 tables are
4378              * fully allocated and reading from the data file will return
4379              * the same data as reading from the qcow2 image.  When the
4380              * image is grown, we must consequently preallocate the
4381              * metadata structures to cover the added area.
4382              */
4383             prealloc = PREALLOC_MODE_METADATA;
4384         }
4385     }
4386 
4387     switch (prealloc) {
4388     case PREALLOC_MODE_OFF:
4389         if (has_data_file(bs)) {
4390             /*
4391              * If the caller wants an exact resize, the external data
4392              * file should be resized to the exact target size, too,
4393              * so we pass @exact here.
4394              */
4395             ret = bdrv_co_truncate(s->data_file, offset, exact, prealloc, 0,
4396                                    errp);
4397             if (ret < 0) {
4398                 goto fail;
4399             }
4400         }
4401         break;
4402 
4403     case PREALLOC_MODE_METADATA:
4404         ret = preallocate_co(bs, old_length, offset, prealloc, errp);
4405         if (ret < 0) {
4406             goto fail;
4407         }
4408         break;
4409 
4410     case PREALLOC_MODE_FALLOC:
4411     case PREALLOC_MODE_FULL:
4412     {
4413         int64_t allocation_start, host_offset, guest_offset;
4414         int64_t clusters_allocated;
4415         int64_t old_file_size, last_cluster, new_file_size;
4416         uint64_t nb_new_data_clusters, nb_new_l2_tables;
4417         bool subclusters_need_allocation = false;
4418 
4419         /* With a data file, preallocation means just allocating the metadata
4420          * and forwarding the truncate request to the data file */
4421         if (has_data_file(bs)) {
4422             ret = preallocate_co(bs, old_length, offset, prealloc, errp);
4423             if (ret < 0) {
4424                 goto fail;
4425             }
4426             break;
4427         }
4428 
4429         old_file_size = bdrv_co_getlength(bs->file->bs);
4430         if (old_file_size < 0) {
4431             error_setg_errno(errp, -old_file_size,
4432                              "Failed to inquire current file length");
4433             ret = old_file_size;
4434             goto fail;
4435         }
4436 
4437         last_cluster = qcow2_get_last_cluster(bs, old_file_size);
4438         if (last_cluster >= 0) {
4439             old_file_size = (last_cluster + 1) * s->cluster_size;
4440         } else {
4441             old_file_size = ROUND_UP(old_file_size, s->cluster_size);
4442         }
4443 
4444         nb_new_data_clusters = (ROUND_UP(offset, s->cluster_size) -
4445             start_of_cluster(s, old_length)) >> s->cluster_bits;
4446 
4447         /* This is an overestimation; we will not actually allocate space for
4448          * these in the file but just make sure the new refcount structures are
4449          * able to cover them so we will not have to allocate new refblocks
4450          * while entering the data blocks in the potentially new L2 tables.
4451          * (We do not actually care where the L2 tables are placed. Maybe they
4452          *  are already allocated or they can be placed somewhere before
4453          *  @old_file_size. It does not matter because they will be fully
4454          *  allocated automatically, so they do not need to be covered by the
4455          *  preallocation. All that matters is that we will not have to allocate
4456          *  new refcount structures for them.) */
4457         nb_new_l2_tables = DIV_ROUND_UP(nb_new_data_clusters,
4458                                         s->cluster_size / l2_entry_size(s));
4459         /* The cluster range may not be aligned to L2 boundaries, so add one L2
4460          * table for a potential head/tail */
4461         nb_new_l2_tables++;
4462 
4463         allocation_start = qcow2_refcount_area(bs, old_file_size,
4464                                                nb_new_data_clusters +
4465                                                nb_new_l2_tables,
4466                                                true, 0, 0);
4467         if (allocation_start < 0) {
4468             error_setg_errno(errp, -allocation_start,
4469                              "Failed to resize refcount structures");
4470             ret = allocation_start;
4471             goto fail;
4472         }
4473 
4474         clusters_allocated = qcow2_alloc_clusters_at(bs, allocation_start,
4475                                                      nb_new_data_clusters);
4476         if (clusters_allocated < 0) {
4477             error_setg_errno(errp, -clusters_allocated,
4478                              "Failed to allocate data clusters");
4479             ret = clusters_allocated;
4480             goto fail;
4481         }
4482 
4483         assert(clusters_allocated == nb_new_data_clusters);
4484 
4485         /* Allocate the data area */
4486         new_file_size = allocation_start +
4487                         nb_new_data_clusters * s->cluster_size;
4488         /*
4489          * Image file grows, so @exact does not matter.
4490          *
4491          * If we need to zero out the new area, try first whether the protocol
4492          * driver can already take care of this.
4493          */
4494         if (flags & BDRV_REQ_ZERO_WRITE) {
4495             ret = bdrv_co_truncate(bs->file, new_file_size, false, prealloc,
4496                                    BDRV_REQ_ZERO_WRITE, NULL);
4497             if (ret >= 0) {
4498                 flags &= ~BDRV_REQ_ZERO_WRITE;
4499                 /* Ensure that we read zeroes and not backing file data */
4500                 subclusters_need_allocation = true;
4501             }
4502         } else {
4503             ret = -1;
4504         }
4505         if (ret < 0) {
4506             ret = bdrv_co_truncate(bs->file, new_file_size, false, prealloc, 0,
4507                                    errp);
4508         }
4509         if (ret < 0) {
4510             error_prepend(errp, "Failed to resize underlying file: ");
4511             qcow2_free_clusters(bs, allocation_start,
4512                                 nb_new_data_clusters * s->cluster_size,
4513                                 QCOW2_DISCARD_OTHER);
4514             goto fail;
4515         }
4516 
4517         /* Create the necessary L2 entries */
4518         host_offset = allocation_start;
4519         guest_offset = old_length;
4520         while (nb_new_data_clusters) {
4521             int64_t nb_clusters = MIN(
4522                 nb_new_data_clusters,
4523                 s->l2_slice_size - offset_to_l2_slice_index(s, guest_offset));
4524             unsigned cow_start_length = offset_into_cluster(s, guest_offset);
4525             QCowL2Meta allocation;
4526             guest_offset = start_of_cluster(s, guest_offset);
4527             allocation = (QCowL2Meta) {
4528                 .offset       = guest_offset,
4529                 .alloc_offset = host_offset,
4530                 .nb_clusters  = nb_clusters,
4531                 .cow_start    = {
4532                     .offset       = 0,
4533                     .nb_bytes     = cow_start_length,
4534                 },
4535                 .cow_end      = {
4536                     .offset       = nb_clusters << s->cluster_bits,
4537                     .nb_bytes     = 0,
4538                 },
4539                 .prealloc     = !subclusters_need_allocation,
4540             };
4541             qemu_co_queue_init(&allocation.dependent_requests);
4542 
4543             ret = qcow2_alloc_cluster_link_l2(bs, &allocation);
4544             if (ret < 0) {
4545                 error_setg_errno(errp, -ret, "Failed to update L2 tables");
4546                 qcow2_free_clusters(bs, host_offset,
4547                                     nb_new_data_clusters * s->cluster_size,
4548                                     QCOW2_DISCARD_OTHER);
4549                 goto fail;
4550             }
4551 
4552             guest_offset += nb_clusters * s->cluster_size;
4553             host_offset += nb_clusters * s->cluster_size;
4554             nb_new_data_clusters -= nb_clusters;
4555         }
4556         break;
4557     }
4558 
4559     default:
4560         g_assert_not_reached();
4561     }
4562 
4563     if ((flags & BDRV_REQ_ZERO_WRITE) && offset > old_length) {
4564         uint64_t zero_start = QEMU_ALIGN_UP(old_length, s->subcluster_size);
4565 
4566         /*
4567          * Use zero clusters as much as we can. qcow2_subcluster_zeroize()
4568          * requires a subcluster-aligned start. The end may be unaligned if
4569          * it is at the end of the image (which it is here).
4570          */
4571         if (offset > zero_start) {
4572             ret = qcow2_subcluster_zeroize(bs, zero_start, offset - zero_start,
4573                                            0);
4574             if (ret < 0) {
4575                 error_setg_errno(errp, -ret, "Failed to zero out new clusters");
4576                 goto fail;
4577             }
4578         }
4579 
4580         /* Write explicit zeros for the unaligned head */
4581         if (zero_start > old_length) {
4582             uint64_t len = MIN(zero_start, offset) - old_length;
4583             uint8_t *buf = qemu_blockalign0(bs, len);
4584             QEMUIOVector qiov;
4585             qemu_iovec_init_buf(&qiov, buf, len);
4586 
4587             qemu_co_mutex_unlock(&s->lock);
4588             ret = qcow2_co_pwritev_part(bs, old_length, len, &qiov, 0, 0);
4589             qemu_co_mutex_lock(&s->lock);
4590 
4591             qemu_vfree(buf);
4592             if (ret < 0) {
4593                 error_setg_errno(errp, -ret, "Failed to zero out the new area");
4594                 goto fail;
4595             }
4596         }
4597     }
4598 
4599     if (prealloc != PREALLOC_MODE_OFF) {
4600         /* Flush metadata before actually changing the image size */
4601         ret = qcow2_write_caches(bs);
4602         if (ret < 0) {
4603             error_setg_errno(errp, -ret,
4604                              "Failed to flush the preallocated area to disk");
4605             goto fail;
4606         }
4607     }
4608 
4609     bs->total_sectors = offset / BDRV_SECTOR_SIZE;
4610 
4611     /* write updated header.size */
4612     offset = cpu_to_be64(offset);
4613     ret = bdrv_co_pwrite_sync(bs->file, offsetof(QCowHeader, size),
4614                               sizeof(offset), &offset, 0);
4615     if (ret < 0) {
4616         error_setg_errno(errp, -ret, "Failed to update the image size");
4617         goto fail;
4618     }
4619 
4620     s->l1_vm_state_index = new_l1_size;
4621 
4622     /* Update cache sizes */
4623     options = qdict_clone_shallow(bs->options);
4624     ret = qcow2_update_options(bs, options, s->flags, errp);
4625     qobject_unref(options);
4626     if (ret < 0) {
4627         goto fail;
4628     }
4629     ret = 0;
4630 fail:
4631     qemu_co_mutex_unlock(&s->lock);
4632     return ret;
4633 }
4634 
4635 static int coroutine_fn GRAPH_RDLOCK
4636 qcow2_co_pwritev_compressed_task(BlockDriverState *bs,
4637                                  uint64_t offset, uint64_t bytes,
4638                                  QEMUIOVector *qiov, size_t qiov_offset)
4639 {
4640     BDRVQcow2State *s = bs->opaque;
4641     int ret;
4642     ssize_t out_len;
4643     uint8_t *buf, *out_buf;
4644     uint64_t cluster_offset;
4645 
4646     assert(bytes == s->cluster_size || (bytes < s->cluster_size &&
4647            (offset + bytes == bs->total_sectors << BDRV_SECTOR_BITS)));
4648 
4649     buf = qemu_blockalign(bs, s->cluster_size);
4650     if (bytes < s->cluster_size) {
4651         /* Zero-pad last write if image size is not cluster aligned */
4652         memset(buf + bytes, 0, s->cluster_size - bytes);
4653     }
4654     qemu_iovec_to_buf(qiov, qiov_offset, buf, bytes);
4655 
4656     out_buf = g_malloc(s->cluster_size);
4657 
4658     out_len = qcow2_co_compress(bs, out_buf, s->cluster_size - 1,
4659                                 buf, s->cluster_size);
4660     if (out_len == -ENOMEM) {
4661         /* could not compress: write normal cluster */
4662         ret = qcow2_co_pwritev_part(bs, offset, bytes, qiov, qiov_offset, 0);
4663         if (ret < 0) {
4664             goto fail;
4665         }
4666         goto success;
4667     } else if (out_len < 0) {
4668         ret = -EINVAL;
4669         goto fail;
4670     }
4671 
4672     qemu_co_mutex_lock(&s->lock);
4673     ret = qcow2_alloc_compressed_cluster_offset(bs, offset, out_len,
4674                                                 &cluster_offset);
4675     if (ret < 0) {
4676         qemu_co_mutex_unlock(&s->lock);
4677         goto fail;
4678     }
4679 
4680     ret = qcow2_pre_write_overlap_check(bs, 0, cluster_offset, out_len, true);
4681     qemu_co_mutex_unlock(&s->lock);
4682     if (ret < 0) {
4683         goto fail;
4684     }
4685 
4686     BLKDBG_CO_EVENT(s->data_file, BLKDBG_WRITE_COMPRESSED);
4687     ret = bdrv_co_pwrite(s->data_file, cluster_offset, out_len, out_buf, 0);
4688     if (ret < 0) {
4689         goto fail;
4690     }
4691 success:
4692     ret = 0;
4693 fail:
4694     qemu_vfree(buf);
4695     g_free(out_buf);
4696     return ret;
4697 }
4698 
4699 /*
4700  * This function can count as GRAPH_RDLOCK because
4701  * qcow2_co_pwritev_compressed_part() holds the graph lock and keeps it until
4702  * this coroutine has terminated.
4703  */
4704 static int coroutine_fn GRAPH_RDLOCK
4705 qcow2_co_pwritev_compressed_task_entry(AioTask *task)
4706 {
4707     Qcow2AioTask *t = container_of(task, Qcow2AioTask, task);
4708 
4709     assert(!t->subcluster_type && !t->l2meta);
4710 
4711     return qcow2_co_pwritev_compressed_task(t->bs, t->offset, t->bytes, t->qiov,
4712                                             t->qiov_offset);
4713 }
4714 
4715 /*
4716  * XXX: put compressed sectors first, then all the cluster aligned
4717  * tables to avoid losing bytes in alignment
4718  */
4719 static int coroutine_fn GRAPH_RDLOCK
4720 qcow2_co_pwritev_compressed_part(BlockDriverState *bs,
4721                                  int64_t offset, int64_t bytes,
4722                                  QEMUIOVector *qiov, size_t qiov_offset)
4723 {
4724     BDRVQcow2State *s = bs->opaque;
4725     AioTaskPool *aio = NULL;
4726     int ret = 0;
4727 
4728     if (has_data_file(bs)) {
4729         return -ENOTSUP;
4730     }
4731 
4732     if (bytes == 0) {
4733         /*
4734          * align end of file to a sector boundary to ease reading with
4735          * sector based I/Os
4736          */
4737         int64_t len = bdrv_co_getlength(bs->file->bs);
4738         if (len < 0) {
4739             return len;
4740         }
4741         return bdrv_co_truncate(bs->file, len, false, PREALLOC_MODE_OFF, 0,
4742                                 NULL);
4743     }
4744 
4745     if (offset_into_cluster(s, offset)) {
4746         return -EINVAL;
4747     }
4748 
4749     if (offset_into_cluster(s, bytes) &&
4750         (offset + bytes) != (bs->total_sectors << BDRV_SECTOR_BITS)) {
4751         return -EINVAL;
4752     }
4753 
4754     while (bytes && aio_task_pool_status(aio) == 0) {
4755         uint64_t chunk_size = MIN(bytes, s->cluster_size);
4756 
4757         if (!aio && chunk_size != bytes) {
4758             aio = aio_task_pool_new(QCOW2_MAX_WORKERS);
4759         }
4760 
4761         ret = qcow2_add_task(bs, aio, qcow2_co_pwritev_compressed_task_entry,
4762                              0, 0, offset, chunk_size, qiov, qiov_offset, NULL);
4763         if (ret < 0) {
4764             break;
4765         }
4766         qiov_offset += chunk_size;
4767         offset += chunk_size;
4768         bytes -= chunk_size;
4769     }
4770 
4771     if (aio) {
4772         aio_task_pool_wait_all(aio);
4773         if (ret == 0) {
4774             ret = aio_task_pool_status(aio);
4775         }
4776         g_free(aio);
4777     }
4778 
4779     return ret;
4780 }
4781 
4782 static int coroutine_fn GRAPH_RDLOCK
4783 qcow2_co_preadv_compressed(BlockDriverState *bs,
4784                            uint64_t l2_entry,
4785                            uint64_t offset,
4786                            uint64_t bytes,
4787                            QEMUIOVector *qiov,
4788                            size_t qiov_offset)
4789 {
4790     BDRVQcow2State *s = bs->opaque;
4791     int ret = 0, csize;
4792     uint64_t coffset;
4793     uint8_t *buf, *out_buf;
4794     int offset_in_cluster = offset_into_cluster(s, offset);
4795 
4796     qcow2_parse_compressed_l2_entry(bs, l2_entry, &coffset, &csize);
4797 
4798     buf = g_try_malloc(csize);
4799     if (!buf) {
4800         return -ENOMEM;
4801     }
4802 
4803     out_buf = qemu_blockalign(bs, s->cluster_size);
4804 
4805     BLKDBG_CO_EVENT(bs->file, BLKDBG_READ_COMPRESSED);
4806     ret = bdrv_co_pread(bs->file, coffset, csize, buf, 0);
4807     if (ret < 0) {
4808         goto fail;
4809     }
4810 
4811     if (qcow2_co_decompress(bs, out_buf, s->cluster_size, buf, csize) < 0) {
4812         ret = -EIO;
4813         goto fail;
4814     }
4815 
4816     qemu_iovec_from_buf(qiov, qiov_offset, out_buf + offset_in_cluster, bytes);
4817 
4818 fail:
4819     qemu_vfree(out_buf);
4820     g_free(buf);
4821 
4822     return ret;
4823 }
4824 
4825 static int make_completely_empty(BlockDriverState *bs)
4826 {
4827     BDRVQcow2State *s = bs->opaque;
4828     Error *local_err = NULL;
4829     int ret, l1_clusters;
4830     int64_t offset;
4831     uint64_t *new_reftable = NULL;
4832     uint64_t rt_entry, l1_size2;
4833     struct {
4834         uint64_t l1_offset;
4835         uint64_t reftable_offset;
4836         uint32_t reftable_clusters;
4837     } QEMU_PACKED l1_ofs_rt_ofs_cls;
4838 
4839     ret = qcow2_cache_empty(bs, s->l2_table_cache);
4840     if (ret < 0) {
4841         goto fail;
4842     }
4843 
4844     ret = qcow2_cache_empty(bs, s->refcount_block_cache);
4845     if (ret < 0) {
4846         goto fail;
4847     }
4848 
4849     /* Refcounts will be broken utterly */
4850     ret = qcow2_mark_dirty(bs);
4851     if (ret < 0) {
4852         goto fail;
4853     }
4854 
4855     BLKDBG_EVENT(bs->file, BLKDBG_L1_UPDATE);
4856 
4857     l1_clusters = DIV_ROUND_UP(s->l1_size, s->cluster_size / L1E_SIZE);
4858     l1_size2 = (uint64_t)s->l1_size * L1E_SIZE;
4859 
4860     /* After this call, neither the in-memory nor the on-disk refcount
4861      * information accurately describe the actual references */
4862 
4863     ret = bdrv_pwrite_zeroes(bs->file, s->l1_table_offset,
4864                              l1_clusters * s->cluster_size, 0);
4865     if (ret < 0) {
4866         goto fail_broken_refcounts;
4867     }
4868     memset(s->l1_table, 0, l1_size2);
4869 
4870     BLKDBG_EVENT(bs->file, BLKDBG_EMPTY_IMAGE_PREPARE);
4871 
4872     /* Overwrite enough clusters at the beginning of the sectors to place
4873      * the refcount table, a refcount block and the L1 table in; this may
4874      * overwrite parts of the existing refcount and L1 table, which is not
4875      * an issue because the dirty flag is set, complete data loss is in fact
4876      * desired and partial data loss is consequently fine as well */
4877     ret = bdrv_pwrite_zeroes(bs->file, s->cluster_size,
4878                              (2 + l1_clusters) * s->cluster_size, 0);
4879     /* This call (even if it failed overall) may have overwritten on-disk
4880      * refcount structures; in that case, the in-memory refcount information
4881      * will probably differ from the on-disk information which makes the BDS
4882      * unusable */
4883     if (ret < 0) {
4884         goto fail_broken_refcounts;
4885     }
4886 
4887     BLKDBG_EVENT(bs->file, BLKDBG_L1_UPDATE);
4888     BLKDBG_EVENT(bs->file, BLKDBG_REFTABLE_UPDATE);
4889 
4890     /* "Create" an empty reftable (one cluster) directly after the image
4891      * header and an empty L1 table three clusters after the image header;
4892      * the cluster between those two will be used as the first refblock */
4893     l1_ofs_rt_ofs_cls.l1_offset = cpu_to_be64(3 * s->cluster_size);
4894     l1_ofs_rt_ofs_cls.reftable_offset = cpu_to_be64(s->cluster_size);
4895     l1_ofs_rt_ofs_cls.reftable_clusters = cpu_to_be32(1);
4896     ret = bdrv_pwrite_sync(bs->file, offsetof(QCowHeader, l1_table_offset),
4897                            sizeof(l1_ofs_rt_ofs_cls), &l1_ofs_rt_ofs_cls, 0);
4898     if (ret < 0) {
4899         goto fail_broken_refcounts;
4900     }
4901 
4902     s->l1_table_offset = 3 * s->cluster_size;
4903 
4904     new_reftable = g_try_new0(uint64_t, s->cluster_size / REFTABLE_ENTRY_SIZE);
4905     if (!new_reftable) {
4906         ret = -ENOMEM;
4907         goto fail_broken_refcounts;
4908     }
4909 
4910     s->refcount_table_offset = s->cluster_size;
4911     s->refcount_table_size   = s->cluster_size / REFTABLE_ENTRY_SIZE;
4912     s->max_refcount_table_index = 0;
4913 
4914     g_free(s->refcount_table);
4915     s->refcount_table = new_reftable;
4916     new_reftable = NULL;
4917 
4918     /* Now the in-memory refcount information again corresponds to the on-disk
4919      * information (reftable is empty and no refblocks (the refblock cache is
4920      * empty)); however, this means some clusters (e.g. the image header) are
4921      * referenced, but not refcounted, but the normal qcow2 code assumes that
4922      * the in-memory information is always correct */
4923 
4924     BLKDBG_EVENT(bs->file, BLKDBG_REFBLOCK_ALLOC);
4925 
4926     /* Enter the first refblock into the reftable */
4927     rt_entry = cpu_to_be64(2 * s->cluster_size);
4928     ret = bdrv_pwrite_sync(bs->file, s->cluster_size, sizeof(rt_entry),
4929                            &rt_entry, 0);
4930     if (ret < 0) {
4931         goto fail_broken_refcounts;
4932     }
4933     s->refcount_table[0] = 2 * s->cluster_size;
4934 
4935     s->free_cluster_index = 0;
4936     assert(3 + l1_clusters <= s->refcount_block_size);
4937     offset = qcow2_alloc_clusters(bs, 3 * s->cluster_size + l1_size2);
4938     if (offset < 0) {
4939         ret = offset;
4940         goto fail_broken_refcounts;
4941     } else if (offset > 0) {
4942         error_report("First cluster in emptied image is in use");
4943         abort();
4944     }
4945 
4946     /* Now finally the in-memory information corresponds to the on-disk
4947      * structures and is correct */
4948     ret = qcow2_mark_clean(bs);
4949     if (ret < 0) {
4950         goto fail;
4951     }
4952 
4953     ret = bdrv_truncate(bs->file, (3 + l1_clusters) * s->cluster_size, false,
4954                         PREALLOC_MODE_OFF, 0, &local_err);
4955     if (ret < 0) {
4956         error_report_err(local_err);
4957         goto fail;
4958     }
4959 
4960     return 0;
4961 
4962 fail_broken_refcounts:
4963     /* The BDS is unusable at this point. If we wanted to make it usable, we
4964      * would have to call qcow2_refcount_close(), qcow2_refcount_init(),
4965      * qcow2_check_refcounts(), qcow2_refcount_close() and qcow2_refcount_init()
4966      * again. However, because the functions which could have caused this error
4967      * path to be taken are used by those functions as well, it's very likely
4968      * that that sequence will fail as well. Therefore, just eject the BDS. */
4969     bs->drv = NULL;
4970 
4971 fail:
4972     g_free(new_reftable);
4973     return ret;
4974 }
4975 
4976 static int qcow2_make_empty(BlockDriverState *bs)
4977 {
4978     BDRVQcow2State *s = bs->opaque;
4979     uint64_t offset, end_offset;
4980     int step = QEMU_ALIGN_DOWN(INT_MAX, s->cluster_size);
4981     int l1_clusters, ret = 0;
4982 
4983     l1_clusters = DIV_ROUND_UP(s->l1_size, s->cluster_size / L1E_SIZE);
4984 
4985     if (s->qcow_version >= 3 && !s->snapshots && !s->nb_bitmaps &&
4986         3 + l1_clusters <= s->refcount_block_size &&
4987         s->crypt_method_header != QCOW_CRYPT_LUKS &&
4988         !has_data_file(bs)) {
4989         /* The following function only works for qcow2 v3 images (it
4990          * requires the dirty flag) and only as long as there are no
4991          * features that reserve extra clusters (such as snapshots,
4992          * LUKS header, or persistent bitmaps), because it completely
4993          * empties the image.  Furthermore, the L1 table and three
4994          * additional clusters (image header, refcount table, one
4995          * refcount block) have to fit inside one refcount block. It
4996          * only resets the image file, i.e. does not work with an
4997          * external data file. */
4998         return make_completely_empty(bs);
4999     }
5000 
5001     /* This fallback code simply discards every active cluster; this is slow,
5002      * but works in all cases */
5003     end_offset = bs->total_sectors * BDRV_SECTOR_SIZE;
5004     for (offset = 0; offset < end_offset; offset += step) {
5005         /* As this function is generally used after committing an external
5006          * snapshot, QCOW2_DISCARD_SNAPSHOT seems appropriate. Also, the
5007          * default action for this kind of discard is to pass the discard,
5008          * which will ideally result in an actually smaller image file, as
5009          * is probably desired. */
5010         ret = qcow2_cluster_discard(bs, offset, MIN(step, end_offset - offset),
5011                                     QCOW2_DISCARD_SNAPSHOT, true);
5012         if (ret < 0) {
5013             break;
5014         }
5015     }
5016 
5017     return ret;
5018 }
5019 
5020 static coroutine_fn int qcow2_co_flush_to_os(BlockDriverState *bs)
5021 {
5022     BDRVQcow2State *s = bs->opaque;
5023     int ret;
5024 
5025     qemu_co_mutex_lock(&s->lock);
5026     ret = qcow2_write_caches(bs);
5027     qemu_co_mutex_unlock(&s->lock);
5028 
5029     return ret;
5030 }
5031 
5032 static BlockMeasureInfo *qcow2_measure(QemuOpts *opts, BlockDriverState *in_bs,
5033                                        Error **errp)
5034 {
5035     Error *local_err = NULL;
5036     BlockMeasureInfo *info;
5037     uint64_t required = 0; /* bytes that contribute to required size */
5038     uint64_t virtual_size; /* disk size as seen by guest */
5039     uint64_t refcount_bits;
5040     uint64_t l2_tables;
5041     uint64_t luks_payload_size = 0;
5042     size_t cluster_size;
5043     int version;
5044     char *optstr;
5045     PreallocMode prealloc;
5046     bool has_backing_file;
5047     bool has_luks;
5048     bool extended_l2;
5049     size_t l2e_size;
5050 
5051     /* Parse image creation options */
5052     extended_l2 = qemu_opt_get_bool_del(opts, BLOCK_OPT_EXTL2, false);
5053 
5054     cluster_size = qcow2_opt_get_cluster_size_del(opts, extended_l2,
5055                                                   &local_err);
5056     if (local_err) {
5057         goto err;
5058     }
5059 
5060     version = qcow2_opt_get_version_del(opts, &local_err);
5061     if (local_err) {
5062         goto err;
5063     }
5064 
5065     refcount_bits = qcow2_opt_get_refcount_bits_del(opts, version, &local_err);
5066     if (local_err) {
5067         goto err;
5068     }
5069 
5070     optstr = qemu_opt_get_del(opts, BLOCK_OPT_PREALLOC);
5071     prealloc = qapi_enum_parse(&PreallocMode_lookup, optstr,
5072                                PREALLOC_MODE_OFF, &local_err);
5073     g_free(optstr);
5074     if (local_err) {
5075         goto err;
5076     }
5077 
5078     optstr = qemu_opt_get_del(opts, BLOCK_OPT_BACKING_FILE);
5079     has_backing_file = !!optstr;
5080     g_free(optstr);
5081 
5082     optstr = qemu_opt_get_del(opts, BLOCK_OPT_ENCRYPT_FORMAT);
5083     has_luks = optstr && strcmp(optstr, "luks") == 0;
5084     g_free(optstr);
5085 
5086     if (has_luks) {
5087         g_autoptr(QCryptoBlockCreateOptions) create_opts = NULL;
5088         QDict *cryptoopts = qcow2_extract_crypto_opts(opts, "luks", errp);
5089         size_t headerlen;
5090 
5091         create_opts = block_crypto_create_opts_init(cryptoopts, errp);
5092         qobject_unref(cryptoopts);
5093         if (!create_opts) {
5094             goto err;
5095         }
5096 
5097         if (!qcrypto_block_calculate_payload_offset(create_opts,
5098                                                     "encrypt.",
5099                                                     &headerlen,
5100                                                     &local_err)) {
5101             goto err;
5102         }
5103 
5104         luks_payload_size = ROUND_UP(headerlen, cluster_size);
5105     }
5106 
5107     virtual_size = qemu_opt_get_size_del(opts, BLOCK_OPT_SIZE, 0);
5108     virtual_size = ROUND_UP(virtual_size, cluster_size);
5109 
5110     /* Check that virtual disk size is valid */
5111     l2e_size = extended_l2 ? L2E_SIZE_EXTENDED : L2E_SIZE_NORMAL;
5112     l2_tables = DIV_ROUND_UP(virtual_size / cluster_size,
5113                              cluster_size / l2e_size);
5114     if (l2_tables * L1E_SIZE > QCOW_MAX_L1_SIZE) {
5115         error_setg(&local_err, "The image size is too large "
5116                                "(try using a larger cluster size)");
5117         goto err;
5118     }
5119 
5120     /* Account for input image */
5121     if (in_bs) {
5122         int64_t ssize = bdrv_getlength(in_bs);
5123         if (ssize < 0) {
5124             error_setg_errno(&local_err, -ssize,
5125                              "Unable to get image virtual_size");
5126             goto err;
5127         }
5128 
5129         virtual_size = ROUND_UP(ssize, cluster_size);
5130 
5131         if (has_backing_file) {
5132             /* We don't how much of the backing chain is shared by the input
5133              * image and the new image file.  In the worst case the new image's
5134              * backing file has nothing in common with the input image.  Be
5135              * conservative and assume all clusters need to be written.
5136              */
5137             required = virtual_size;
5138         } else {
5139             int64_t offset;
5140             int64_t pnum = 0;
5141 
5142             for (offset = 0; offset < ssize; offset += pnum) {
5143                 int ret;
5144 
5145                 ret = bdrv_block_status_above(in_bs, NULL, offset,
5146                                               ssize - offset, &pnum, NULL,
5147                                               NULL);
5148                 if (ret < 0) {
5149                     error_setg_errno(&local_err, -ret,
5150                                      "Unable to get block status");
5151                     goto err;
5152                 }
5153 
5154                 if (ret & BDRV_BLOCK_ZERO) {
5155                     /* Skip zero regions (safe with no backing file) */
5156                 } else if ((ret & (BDRV_BLOCK_DATA | BDRV_BLOCK_ALLOCATED)) ==
5157                            (BDRV_BLOCK_DATA | BDRV_BLOCK_ALLOCATED)) {
5158                     /* Extend pnum to end of cluster for next iteration */
5159                     pnum = ROUND_UP(offset + pnum, cluster_size) - offset;
5160 
5161                     /* Count clusters we've seen */
5162                     required += offset % cluster_size + pnum;
5163                 }
5164             }
5165         }
5166     }
5167 
5168     /* Take into account preallocation.  Nothing special is needed for
5169      * PREALLOC_MODE_METADATA since metadata is always counted.
5170      */
5171     if (prealloc == PREALLOC_MODE_FULL || prealloc == PREALLOC_MODE_FALLOC) {
5172         required = virtual_size;
5173     }
5174 
5175     info = g_new0(BlockMeasureInfo, 1);
5176     info->fully_allocated = luks_payload_size +
5177         qcow2_calc_prealloc_size(virtual_size, cluster_size,
5178                                  ctz32(refcount_bits), extended_l2);
5179 
5180     /*
5181      * Remove data clusters that are not required.  This overestimates the
5182      * required size because metadata needed for the fully allocated file is
5183      * still counted.  Show bitmaps only if both source and destination
5184      * would support them.
5185      */
5186     info->required = info->fully_allocated - virtual_size + required;
5187     info->has_bitmaps = version >= 3 && in_bs &&
5188         bdrv_supports_persistent_dirty_bitmap(in_bs);
5189     if (info->has_bitmaps) {
5190         info->bitmaps = qcow2_get_persistent_dirty_bitmap_size(in_bs,
5191                                                                cluster_size);
5192     }
5193     return info;
5194 
5195 err:
5196     error_propagate(errp, local_err);
5197     return NULL;
5198 }
5199 
5200 static int coroutine_fn
5201 qcow2_co_get_info(BlockDriverState *bs, BlockDriverInfo *bdi)
5202 {
5203     BDRVQcow2State *s = bs->opaque;
5204     bdi->cluster_size = s->cluster_size;
5205     bdi->subcluster_size = s->subcluster_size;
5206     bdi->vm_state_offset = qcow2_vm_state_offset(s);
5207     bdi->is_dirty = s->incompatible_features & QCOW2_INCOMPAT_DIRTY;
5208     return 0;
5209 }
5210 
5211 static ImageInfoSpecific *qcow2_get_specific_info(BlockDriverState *bs,
5212                                                   Error **errp)
5213 {
5214     BDRVQcow2State *s = bs->opaque;
5215     ImageInfoSpecific *spec_info;
5216     QCryptoBlockInfo *encrypt_info = NULL;
5217 
5218     if (s->crypto != NULL) {
5219         encrypt_info = qcrypto_block_get_info(s->crypto, errp);
5220         if (!encrypt_info) {
5221             return NULL;
5222         }
5223     }
5224 
5225     spec_info = g_new(ImageInfoSpecific, 1);
5226     *spec_info = (ImageInfoSpecific){
5227         .type  = IMAGE_INFO_SPECIFIC_KIND_QCOW2,
5228         .u.qcow2.data = g_new0(ImageInfoSpecificQCow2, 1),
5229     };
5230     if (s->qcow_version == 2) {
5231         *spec_info->u.qcow2.data = (ImageInfoSpecificQCow2){
5232             .compat             = g_strdup("0.10"),
5233             .refcount_bits      = s->refcount_bits,
5234         };
5235     } else if (s->qcow_version == 3) {
5236         Qcow2BitmapInfoList *bitmaps;
5237         if (!qcow2_get_bitmap_info_list(bs, &bitmaps, errp)) {
5238             qapi_free_ImageInfoSpecific(spec_info);
5239             qapi_free_QCryptoBlockInfo(encrypt_info);
5240             return NULL;
5241         }
5242         *spec_info->u.qcow2.data = (ImageInfoSpecificQCow2){
5243             .compat             = g_strdup("1.1"),
5244             .lazy_refcounts     = s->compatible_features &
5245                                   QCOW2_COMPAT_LAZY_REFCOUNTS,
5246             .has_lazy_refcounts = true,
5247             .corrupt            = s->incompatible_features &
5248                                   QCOW2_INCOMPAT_CORRUPT,
5249             .has_corrupt        = true,
5250             .has_extended_l2    = true,
5251             .extended_l2        = has_subclusters(s),
5252             .refcount_bits      = s->refcount_bits,
5253             .has_bitmaps        = !!bitmaps,
5254             .bitmaps            = bitmaps,
5255             .data_file          = g_strdup(s->image_data_file),
5256             .has_data_file_raw  = has_data_file(bs),
5257             .data_file_raw      = data_file_is_raw(bs),
5258             .compression_type   = s->compression_type,
5259         };
5260     } else {
5261         /* if this assertion fails, this probably means a new version was
5262          * added without having it covered here */
5263         assert(false);
5264     }
5265 
5266     if (encrypt_info) {
5267         ImageInfoSpecificQCow2Encryption *qencrypt =
5268             g_new(ImageInfoSpecificQCow2Encryption, 1);
5269         switch (encrypt_info->format) {
5270         case Q_CRYPTO_BLOCK_FORMAT_QCOW:
5271             qencrypt->format = BLOCKDEV_QCOW2_ENCRYPTION_FORMAT_AES;
5272             break;
5273         case Q_CRYPTO_BLOCK_FORMAT_LUKS:
5274             qencrypt->format = BLOCKDEV_QCOW2_ENCRYPTION_FORMAT_LUKS;
5275             qencrypt->u.luks = encrypt_info->u.luks;
5276             break;
5277         default:
5278             abort();
5279         }
5280         /* Since we did shallow copy above, erase any pointers
5281          * in the original info */
5282         memset(&encrypt_info->u, 0, sizeof(encrypt_info->u));
5283         qapi_free_QCryptoBlockInfo(encrypt_info);
5284 
5285         spec_info->u.qcow2.data->encrypt = qencrypt;
5286     }
5287 
5288     return spec_info;
5289 }
5290 
5291 static int coroutine_mixed_fn qcow2_has_zero_init(BlockDriverState *bs)
5292 {
5293     BDRVQcow2State *s = bs->opaque;
5294     bool preallocated;
5295 
5296     if (qemu_in_coroutine()) {
5297         qemu_co_mutex_lock(&s->lock);
5298     }
5299     /*
5300      * Check preallocation status: Preallocated images have all L2
5301      * tables allocated, nonpreallocated images have none.  It is
5302      * therefore enough to check the first one.
5303      */
5304     preallocated = s->l1_size > 0 && s->l1_table[0] != 0;
5305     if (qemu_in_coroutine()) {
5306         qemu_co_mutex_unlock(&s->lock);
5307     }
5308 
5309     if (!preallocated) {
5310         return 1;
5311     } else if (bs->encrypted) {
5312         return 0;
5313     } else {
5314         return bdrv_has_zero_init(s->data_file->bs);
5315     }
5316 }
5317 
5318 /*
5319  * Check the request to vmstate. On success return
5320  *      qcow2_vm_state_offset(bs) + @pos
5321  */
5322 static int64_t qcow2_check_vmstate_request(BlockDriverState *bs,
5323                                            QEMUIOVector *qiov, int64_t pos)
5324 {
5325     BDRVQcow2State *s = bs->opaque;
5326     int64_t vmstate_offset = qcow2_vm_state_offset(s);
5327     int ret;
5328 
5329     /* Incoming requests must be OK */
5330     bdrv_check_qiov_request(pos, qiov->size, qiov, 0, &error_abort);
5331 
5332     if (INT64_MAX - pos < vmstate_offset) {
5333         return -EIO;
5334     }
5335 
5336     pos += vmstate_offset;
5337     ret = bdrv_check_qiov_request(pos, qiov->size, qiov, 0, NULL);
5338     if (ret < 0) {
5339         return ret;
5340     }
5341 
5342     return pos;
5343 }
5344 
5345 static int coroutine_fn GRAPH_RDLOCK
5346 qcow2_co_save_vmstate(BlockDriverState *bs, QEMUIOVector *qiov, int64_t pos)
5347 {
5348     int64_t offset = qcow2_check_vmstate_request(bs, qiov, pos);
5349     if (offset < 0) {
5350         return offset;
5351     }
5352 
5353     BLKDBG_CO_EVENT(bs->file, BLKDBG_VMSTATE_SAVE);
5354     return bs->drv->bdrv_co_pwritev_part(bs, offset, qiov->size, qiov, 0, 0);
5355 }
5356 
5357 static int coroutine_fn GRAPH_RDLOCK
5358 qcow2_co_load_vmstate(BlockDriverState *bs, QEMUIOVector *qiov, int64_t pos)
5359 {
5360     int64_t offset = qcow2_check_vmstate_request(bs, qiov, pos);
5361     if (offset < 0) {
5362         return offset;
5363     }
5364 
5365     BLKDBG_CO_EVENT(bs->file, BLKDBG_VMSTATE_LOAD);
5366     return bs->drv->bdrv_co_preadv_part(bs, offset, qiov->size, qiov, 0, 0);
5367 }
5368 
5369 static int qcow2_has_compressed_clusters(BlockDriverState *bs)
5370 {
5371     int64_t offset = 0;
5372     int64_t bytes = bdrv_getlength(bs);
5373 
5374     if (bytes < 0) {
5375         return bytes;
5376     }
5377 
5378     while (bytes != 0) {
5379         int ret;
5380         QCow2SubclusterType type;
5381         unsigned int cur_bytes = MIN(INT_MAX, bytes);
5382         uint64_t host_offset;
5383 
5384         ret = qcow2_get_host_offset(bs, offset, &cur_bytes, &host_offset,
5385                                     &type);
5386         if (ret < 0) {
5387             return ret;
5388         }
5389 
5390         if (type == QCOW2_SUBCLUSTER_COMPRESSED) {
5391             return 1;
5392         }
5393 
5394         offset += cur_bytes;
5395         bytes -= cur_bytes;
5396     }
5397 
5398     return 0;
5399 }
5400 
5401 /*
5402  * Downgrades an image's version. To achieve this, any incompatible features
5403  * have to be removed.
5404  */
5405 static int qcow2_downgrade(BlockDriverState *bs, int target_version,
5406                            BlockDriverAmendStatusCB *status_cb, void *cb_opaque,
5407                            Error **errp)
5408 {
5409     BDRVQcow2State *s = bs->opaque;
5410     int current_version = s->qcow_version;
5411     int ret;
5412     int i;
5413 
5414     /* This is qcow2_downgrade(), not qcow2_upgrade() */
5415     assert(target_version < current_version);
5416 
5417     /* There are no other versions (now) that you can downgrade to */
5418     assert(target_version == 2);
5419 
5420     if (s->refcount_order != 4) {
5421         error_setg(errp, "compat=0.10 requires refcount_bits=16");
5422         return -ENOTSUP;
5423     }
5424 
5425     if (has_data_file(bs)) {
5426         error_setg(errp, "Cannot downgrade an image with a data file");
5427         return -ENOTSUP;
5428     }
5429 
5430     /*
5431      * If any internal snapshot has a different size than the current
5432      * image size, or VM state size that exceeds 32 bits, downgrading
5433      * is unsafe.  Even though we would still use v3-compliant output
5434      * to preserve that data, other v2 programs might not realize
5435      * those optional fields are important.
5436      */
5437     for (i = 0; i < s->nb_snapshots; i++) {
5438         if (s->snapshots[i].vm_state_size > UINT32_MAX ||
5439             s->snapshots[i].disk_size != bs->total_sectors * BDRV_SECTOR_SIZE) {
5440             error_setg(errp, "Internal snapshots prevent downgrade of image");
5441             return -ENOTSUP;
5442         }
5443     }
5444 
5445     /* clear incompatible features */
5446     if (s->incompatible_features & QCOW2_INCOMPAT_DIRTY) {
5447         ret = qcow2_mark_clean(bs);
5448         if (ret < 0) {
5449             error_setg_errno(errp, -ret, "Failed to make the image clean");
5450             return ret;
5451         }
5452     }
5453 
5454     /* with QCOW2_INCOMPAT_CORRUPT, it is pretty much impossible to get here in
5455      * the first place; if that happens nonetheless, returning -ENOTSUP is the
5456      * best thing to do anyway */
5457 
5458     if (s->incompatible_features & ~QCOW2_INCOMPAT_COMPRESSION) {
5459         error_setg(errp, "Cannot downgrade an image with incompatible features "
5460                    "0x%" PRIx64 " set",
5461                    s->incompatible_features & ~QCOW2_INCOMPAT_COMPRESSION);
5462         return -ENOTSUP;
5463     }
5464 
5465     /* since we can ignore compatible features, we can set them to 0 as well */
5466     s->compatible_features = 0;
5467     /* if lazy refcounts have been used, they have already been fixed through
5468      * clearing the dirty flag */
5469 
5470     /* clearing autoclear features is trivial */
5471     s->autoclear_features = 0;
5472 
5473     ret = qcow2_expand_zero_clusters(bs, status_cb, cb_opaque);
5474     if (ret < 0) {
5475         error_setg_errno(errp, -ret, "Failed to turn zero into data clusters");
5476         return ret;
5477     }
5478 
5479     if (s->incompatible_features & QCOW2_INCOMPAT_COMPRESSION) {
5480         ret = qcow2_has_compressed_clusters(bs);
5481         if (ret < 0) {
5482             error_setg(errp, "Failed to check block status");
5483             return -EINVAL;
5484         }
5485         if (ret) {
5486             error_setg(errp, "Cannot downgrade an image with zstd compression "
5487                        "type and existing compressed clusters");
5488             return -ENOTSUP;
5489         }
5490         /*
5491          * No compressed clusters for now, so just chose default zlib
5492          * compression.
5493          */
5494         s->incompatible_features &= ~QCOW2_INCOMPAT_COMPRESSION;
5495         s->compression_type = QCOW2_COMPRESSION_TYPE_ZLIB;
5496     }
5497 
5498     assert(s->incompatible_features == 0);
5499 
5500     s->qcow_version = target_version;
5501     ret = qcow2_update_header(bs);
5502     if (ret < 0) {
5503         s->qcow_version = current_version;
5504         error_setg_errno(errp, -ret, "Failed to update the image header");
5505         return ret;
5506     }
5507     return 0;
5508 }
5509 
5510 /*
5511  * Upgrades an image's version.  While newer versions encompass all
5512  * features of older versions, some things may have to be presented
5513  * differently.
5514  */
5515 static int qcow2_upgrade(BlockDriverState *bs, int target_version,
5516                          BlockDriverAmendStatusCB *status_cb, void *cb_opaque,
5517                          Error **errp)
5518 {
5519     BDRVQcow2State *s = bs->opaque;
5520     bool need_snapshot_update;
5521     int current_version = s->qcow_version;
5522     int i;
5523     int ret;
5524 
5525     /* This is qcow2_upgrade(), not qcow2_downgrade() */
5526     assert(target_version > current_version);
5527 
5528     /* There are no other versions (yet) that you can upgrade to */
5529     assert(target_version == 3);
5530 
5531     status_cb(bs, 0, 2, cb_opaque);
5532 
5533     /*
5534      * In v2, snapshots do not need to have extra data.  v3 requires
5535      * the 64-bit VM state size and the virtual disk size to be
5536      * present.
5537      * qcow2_write_snapshots() will always write the list in the
5538      * v3-compliant format.
5539      */
5540     need_snapshot_update = false;
5541     for (i = 0; i < s->nb_snapshots; i++) {
5542         if (s->snapshots[i].extra_data_size <
5543             sizeof_field(QCowSnapshotExtraData, vm_state_size_large) +
5544             sizeof_field(QCowSnapshotExtraData, disk_size))
5545         {
5546             need_snapshot_update = true;
5547             break;
5548         }
5549     }
5550     if (need_snapshot_update) {
5551         ret = qcow2_write_snapshots(bs);
5552         if (ret < 0) {
5553             error_setg_errno(errp, -ret, "Failed to update the snapshot table");
5554             return ret;
5555         }
5556     }
5557     status_cb(bs, 1, 2, cb_opaque);
5558 
5559     s->qcow_version = target_version;
5560     ret = qcow2_update_header(bs);
5561     if (ret < 0) {
5562         s->qcow_version = current_version;
5563         error_setg_errno(errp, -ret, "Failed to update the image header");
5564         return ret;
5565     }
5566     status_cb(bs, 2, 2, cb_opaque);
5567 
5568     return 0;
5569 }
5570 
5571 typedef enum Qcow2AmendOperation {
5572     /* This is the value Qcow2AmendHelperCBInfo::last_operation will be
5573      * statically initialized to so that the helper CB can discern the first
5574      * invocation from an operation change */
5575     QCOW2_NO_OPERATION = 0,
5576 
5577     QCOW2_UPGRADING,
5578     QCOW2_UPDATING_ENCRYPTION,
5579     QCOW2_CHANGING_REFCOUNT_ORDER,
5580     QCOW2_DOWNGRADING,
5581 } Qcow2AmendOperation;
5582 
5583 typedef struct Qcow2AmendHelperCBInfo {
5584     /* The code coordinating the amend operations should only modify
5585      * these four fields; the rest will be managed by the CB */
5586     BlockDriverAmendStatusCB *original_status_cb;
5587     void *original_cb_opaque;
5588 
5589     Qcow2AmendOperation current_operation;
5590 
5591     /* Total number of operations to perform (only set once) */
5592     int total_operations;
5593 
5594     /* The following fields are managed by the CB */
5595 
5596     /* Number of operations completed */
5597     int operations_completed;
5598 
5599     /* Cumulative offset of all completed operations */
5600     int64_t offset_completed;
5601 
5602     Qcow2AmendOperation last_operation;
5603     int64_t last_work_size;
5604 } Qcow2AmendHelperCBInfo;
5605 
5606 static void qcow2_amend_helper_cb(BlockDriverState *bs,
5607                                   int64_t operation_offset,
5608                                   int64_t operation_work_size, void *opaque)
5609 {
5610     Qcow2AmendHelperCBInfo *info = opaque;
5611     int64_t current_work_size;
5612     int64_t projected_work_size;
5613 
5614     if (info->current_operation != info->last_operation) {
5615         if (info->last_operation != QCOW2_NO_OPERATION) {
5616             info->offset_completed += info->last_work_size;
5617             info->operations_completed++;
5618         }
5619 
5620         info->last_operation = info->current_operation;
5621     }
5622 
5623     assert(info->total_operations > 0);
5624     assert(info->operations_completed < info->total_operations);
5625 
5626     info->last_work_size = operation_work_size;
5627 
5628     current_work_size = info->offset_completed + operation_work_size;
5629 
5630     /* current_work_size is the total work size for (operations_completed + 1)
5631      * operations (which includes this one), so multiply it by the number of
5632      * operations not covered and divide it by the number of operations
5633      * covered to get a projection for the operations not covered */
5634     projected_work_size = current_work_size * (info->total_operations -
5635                                                info->operations_completed - 1)
5636                                             / (info->operations_completed + 1);
5637 
5638     info->original_status_cb(bs, info->offset_completed + operation_offset,
5639                              current_work_size + projected_work_size,
5640                              info->original_cb_opaque);
5641 }
5642 
5643 static int qcow2_amend_options(BlockDriverState *bs, QemuOpts *opts,
5644                                BlockDriverAmendStatusCB *status_cb,
5645                                void *cb_opaque,
5646                                bool force,
5647                                Error **errp)
5648 {
5649     BDRVQcow2State *s = bs->opaque;
5650     int old_version = s->qcow_version, new_version = old_version;
5651     uint64_t new_size = 0;
5652     const char *backing_file = NULL, *backing_format = NULL, *data_file = NULL;
5653     bool lazy_refcounts = s->use_lazy_refcounts;
5654     bool data_file_raw = data_file_is_raw(bs);
5655     const char *compat = NULL;
5656     int refcount_bits = s->refcount_bits;
5657     int ret;
5658     QemuOptDesc *desc = opts->list->desc;
5659     Qcow2AmendHelperCBInfo helper_cb_info;
5660     bool encryption_update = false;
5661 
5662     while (desc && desc->name) {
5663         if (!qemu_opt_find(opts, desc->name)) {
5664             /* only change explicitly defined options */
5665             desc++;
5666             continue;
5667         }
5668 
5669         if (!strcmp(desc->name, BLOCK_OPT_COMPAT_LEVEL)) {
5670             compat = qemu_opt_get(opts, BLOCK_OPT_COMPAT_LEVEL);
5671             if (!compat) {
5672                 /* preserve default */
5673             } else if (!strcmp(compat, "0.10") || !strcmp(compat, "v2")) {
5674                 new_version = 2;
5675             } else if (!strcmp(compat, "1.1") || !strcmp(compat, "v3")) {
5676                 new_version = 3;
5677             } else {
5678                 error_setg(errp, "Unknown compatibility level %s", compat);
5679                 return -EINVAL;
5680             }
5681         } else if (!strcmp(desc->name, BLOCK_OPT_SIZE)) {
5682             new_size = qemu_opt_get_size(opts, BLOCK_OPT_SIZE, 0);
5683         } else if (!strcmp(desc->name, BLOCK_OPT_BACKING_FILE)) {
5684             backing_file = qemu_opt_get(opts, BLOCK_OPT_BACKING_FILE);
5685         } else if (!strcmp(desc->name, BLOCK_OPT_BACKING_FMT)) {
5686             backing_format = qemu_opt_get(opts, BLOCK_OPT_BACKING_FMT);
5687         } else if (g_str_has_prefix(desc->name, "encrypt.")) {
5688             if (!s->crypto) {
5689                 error_setg(errp,
5690                            "Can't amend encryption options - encryption not present");
5691                 return -EINVAL;
5692             }
5693             if (s->crypt_method_header != QCOW_CRYPT_LUKS) {
5694                 error_setg(errp,
5695                            "Only LUKS encryption options can be amended");
5696                 return -ENOTSUP;
5697             }
5698             encryption_update = true;
5699         } else if (!strcmp(desc->name, BLOCK_OPT_LAZY_REFCOUNTS)) {
5700             lazy_refcounts = qemu_opt_get_bool(opts, BLOCK_OPT_LAZY_REFCOUNTS,
5701                                                lazy_refcounts);
5702         } else if (!strcmp(desc->name, BLOCK_OPT_REFCOUNT_BITS)) {
5703             refcount_bits = qemu_opt_get_number(opts, BLOCK_OPT_REFCOUNT_BITS,
5704                                                 refcount_bits);
5705 
5706             if (refcount_bits <= 0 || refcount_bits > 64 ||
5707                 !is_power_of_2(refcount_bits))
5708             {
5709                 error_setg(errp, "Refcount width must be a power of two and "
5710                            "may not exceed 64 bits");
5711                 return -EINVAL;
5712             }
5713         } else if (!strcmp(desc->name, BLOCK_OPT_DATA_FILE)) {
5714             data_file = qemu_opt_get(opts, BLOCK_OPT_DATA_FILE);
5715             if (data_file && !has_data_file(bs)) {
5716                 error_setg(errp, "data-file can only be set for images that "
5717                                  "use an external data file");
5718                 return -EINVAL;
5719             }
5720         } else if (!strcmp(desc->name, BLOCK_OPT_DATA_FILE_RAW)) {
5721             data_file_raw = qemu_opt_get_bool(opts, BLOCK_OPT_DATA_FILE_RAW,
5722                                               data_file_raw);
5723             if (data_file_raw && !data_file_is_raw(bs)) {
5724                 error_setg(errp, "data-file-raw cannot be set on existing "
5725                                  "images");
5726                 return -EINVAL;
5727             }
5728         } else {
5729             /* if this point is reached, this probably means a new option was
5730              * added without having it covered here */
5731             abort();
5732         }
5733 
5734         desc++;
5735     }
5736 
5737     helper_cb_info = (Qcow2AmendHelperCBInfo){
5738         .original_status_cb = status_cb,
5739         .original_cb_opaque = cb_opaque,
5740         .total_operations = (new_version != old_version)
5741                           + (s->refcount_bits != refcount_bits) +
5742                             (encryption_update == true)
5743     };
5744 
5745     /* Upgrade first (some features may require compat=1.1) */
5746     if (new_version > old_version) {
5747         helper_cb_info.current_operation = QCOW2_UPGRADING;
5748         ret = qcow2_upgrade(bs, new_version, &qcow2_amend_helper_cb,
5749                             &helper_cb_info, errp);
5750         if (ret < 0) {
5751             return ret;
5752         }
5753     }
5754 
5755     if (encryption_update) {
5756         QDict *amend_opts_dict;
5757         QCryptoBlockAmendOptions *amend_opts;
5758 
5759         helper_cb_info.current_operation = QCOW2_UPDATING_ENCRYPTION;
5760         amend_opts_dict = qcow2_extract_crypto_opts(opts, "luks", errp);
5761         if (!amend_opts_dict) {
5762             return -EINVAL;
5763         }
5764         amend_opts = block_crypto_amend_opts_init(amend_opts_dict, errp);
5765         qobject_unref(amend_opts_dict);
5766         if (!amend_opts) {
5767             return -EINVAL;
5768         }
5769         ret = qcrypto_block_amend_options(s->crypto,
5770                                           qcow2_crypto_hdr_read_func,
5771                                           qcow2_crypto_hdr_write_func,
5772                                           bs,
5773                                           amend_opts,
5774                                           force,
5775                                           errp);
5776         qapi_free_QCryptoBlockAmendOptions(amend_opts);
5777         if (ret < 0) {
5778             return ret;
5779         }
5780     }
5781 
5782     if (s->refcount_bits != refcount_bits) {
5783         int refcount_order = ctz32(refcount_bits);
5784 
5785         if (new_version < 3 && refcount_bits != 16) {
5786             error_setg(errp, "Refcount widths other than 16 bits require "
5787                        "compatibility level 1.1 or above (use compat=1.1 or "
5788                        "greater)");
5789             return -EINVAL;
5790         }
5791 
5792         helper_cb_info.current_operation = QCOW2_CHANGING_REFCOUNT_ORDER;
5793         ret = qcow2_change_refcount_order(bs, refcount_order,
5794                                           &qcow2_amend_helper_cb,
5795                                           &helper_cb_info, errp);
5796         if (ret < 0) {
5797             return ret;
5798         }
5799     }
5800 
5801     /* data-file-raw blocks backing files, so clear it first if requested */
5802     if (data_file_raw) {
5803         s->autoclear_features |= QCOW2_AUTOCLEAR_DATA_FILE_RAW;
5804     } else {
5805         s->autoclear_features &= ~QCOW2_AUTOCLEAR_DATA_FILE_RAW;
5806     }
5807 
5808     if (data_file) {
5809         g_free(s->image_data_file);
5810         s->image_data_file = *data_file ? g_strdup(data_file) : NULL;
5811     }
5812 
5813     ret = qcow2_update_header(bs);
5814     if (ret < 0) {
5815         error_setg_errno(errp, -ret, "Failed to update the image header");
5816         return ret;
5817     }
5818 
5819     if (backing_file || backing_format) {
5820         if (g_strcmp0(backing_file, s->image_backing_file) ||
5821             g_strcmp0(backing_format, s->image_backing_format)) {
5822             error_setg(errp, "Cannot amend the backing file");
5823             error_append_hint(errp,
5824                               "You can use 'qemu-img rebase' instead.\n");
5825             return -EINVAL;
5826         }
5827     }
5828 
5829     if (s->use_lazy_refcounts != lazy_refcounts) {
5830         if (lazy_refcounts) {
5831             if (new_version < 3) {
5832                 error_setg(errp, "Lazy refcounts only supported with "
5833                            "compatibility level 1.1 and above (use compat=1.1 "
5834                            "or greater)");
5835                 return -EINVAL;
5836             }
5837             s->compatible_features |= QCOW2_COMPAT_LAZY_REFCOUNTS;
5838             ret = qcow2_update_header(bs);
5839             if (ret < 0) {
5840                 s->compatible_features &= ~QCOW2_COMPAT_LAZY_REFCOUNTS;
5841                 error_setg_errno(errp, -ret, "Failed to update the image header");
5842                 return ret;
5843             }
5844             s->use_lazy_refcounts = true;
5845         } else {
5846             /* make image clean first */
5847             ret = qcow2_mark_clean(bs);
5848             if (ret < 0) {
5849                 error_setg_errno(errp, -ret, "Failed to make the image clean");
5850                 return ret;
5851             }
5852             /* now disallow lazy refcounts */
5853             s->compatible_features &= ~QCOW2_COMPAT_LAZY_REFCOUNTS;
5854             ret = qcow2_update_header(bs);
5855             if (ret < 0) {
5856                 s->compatible_features |= QCOW2_COMPAT_LAZY_REFCOUNTS;
5857                 error_setg_errno(errp, -ret, "Failed to update the image header");
5858                 return ret;
5859             }
5860             s->use_lazy_refcounts = false;
5861         }
5862     }
5863 
5864     if (new_size) {
5865         BlockBackend *blk = blk_new_with_bs(bs, BLK_PERM_RESIZE, BLK_PERM_ALL,
5866                                             errp);
5867         if (!blk) {
5868             return -EPERM;
5869         }
5870 
5871         /*
5872          * Amending image options should ensure that the image has
5873          * exactly the given new values, so pass exact=true here.
5874          */
5875         ret = blk_truncate(blk, new_size, true, PREALLOC_MODE_OFF, 0, errp);
5876         blk_unref(blk);
5877         if (ret < 0) {
5878             return ret;
5879         }
5880     }
5881 
5882     /* Downgrade last (so unsupported features can be removed before) */
5883     if (new_version < old_version) {
5884         helper_cb_info.current_operation = QCOW2_DOWNGRADING;
5885         ret = qcow2_downgrade(bs, new_version, &qcow2_amend_helper_cb,
5886                               &helper_cb_info, errp);
5887         if (ret < 0) {
5888             return ret;
5889         }
5890     }
5891 
5892     return 0;
5893 }
5894 
5895 static int coroutine_fn qcow2_co_amend(BlockDriverState *bs,
5896                                        BlockdevAmendOptions *opts,
5897                                        bool force,
5898                                        Error **errp)
5899 {
5900     BlockdevAmendOptionsQcow2 *qopts = &opts->u.qcow2;
5901     BDRVQcow2State *s = bs->opaque;
5902     int ret = 0;
5903 
5904     if (qopts->encrypt) {
5905         if (!s->crypto) {
5906             error_setg(errp, "image is not encrypted, can't amend");
5907             return -EOPNOTSUPP;
5908         }
5909 
5910         if (qopts->encrypt->format != Q_CRYPTO_BLOCK_FORMAT_LUKS) {
5911             error_setg(errp,
5912                        "Amend can't be used to change the qcow2 encryption format");
5913             return -EOPNOTSUPP;
5914         }
5915 
5916         if (s->crypt_method_header != QCOW_CRYPT_LUKS) {
5917             error_setg(errp,
5918                        "Only LUKS encryption options can be amended for qcow2 with blockdev-amend");
5919             return -EOPNOTSUPP;
5920         }
5921 
5922         ret = qcrypto_block_amend_options(s->crypto,
5923                                           qcow2_crypto_hdr_read_func,
5924                                           qcow2_crypto_hdr_write_func,
5925                                           bs,
5926                                           qopts->encrypt,
5927                                           force,
5928                                           errp);
5929     }
5930     return ret;
5931 }
5932 
5933 /*
5934  * If offset or size are negative, respectively, they will not be included in
5935  * the BLOCK_IMAGE_CORRUPTED event emitted.
5936  * fatal will be ignored for read-only BDS; corruptions found there will always
5937  * be considered non-fatal.
5938  */
5939 void qcow2_signal_corruption(BlockDriverState *bs, bool fatal, int64_t offset,
5940                              int64_t size, const char *message_format, ...)
5941 {
5942     BDRVQcow2State *s = bs->opaque;
5943     const char *node_name;
5944     char *message;
5945     va_list ap;
5946 
5947     fatal = fatal && bdrv_is_writable(bs);
5948 
5949     if (s->signaled_corruption &&
5950         (!fatal || (s->incompatible_features & QCOW2_INCOMPAT_CORRUPT)))
5951     {
5952         return;
5953     }
5954 
5955     va_start(ap, message_format);
5956     message = g_strdup_vprintf(message_format, ap);
5957     va_end(ap);
5958 
5959     if (fatal) {
5960         fprintf(stderr, "qcow2: Marking image as corrupt: %s; further "
5961                 "corruption events will be suppressed\n", message);
5962     } else {
5963         fprintf(stderr, "qcow2: Image is corrupt: %s; further non-fatal "
5964                 "corruption events will be suppressed\n", message);
5965     }
5966 
5967     node_name = bdrv_get_node_name(bs);
5968     qapi_event_send_block_image_corrupted(bdrv_get_device_name(bs),
5969                                           *node_name ? node_name : NULL,
5970                                           message, offset >= 0, offset,
5971                                           size >= 0, size,
5972                                           fatal);
5973     g_free(message);
5974 
5975     if (fatal) {
5976         qcow2_mark_corrupt(bs);
5977         bs->drv = NULL; /* make BDS unusable */
5978     }
5979 
5980     s->signaled_corruption = true;
5981 }
5982 
5983 #define QCOW_COMMON_OPTIONS                                         \
5984     {                                                               \
5985         .name = BLOCK_OPT_SIZE,                                     \
5986         .type = QEMU_OPT_SIZE,                                      \
5987         .help = "Virtual disk size"                                 \
5988     },                                                              \
5989     {                                                               \
5990         .name = BLOCK_OPT_COMPAT_LEVEL,                             \
5991         .type = QEMU_OPT_STRING,                                    \
5992         .help = "Compatibility level (v2 [0.10] or v3 [1.1])"       \
5993     },                                                              \
5994     {                                                               \
5995         .name = BLOCK_OPT_BACKING_FILE,                             \
5996         .type = QEMU_OPT_STRING,                                    \
5997         .help = "File name of a base image"                         \
5998     },                                                              \
5999     {                                                               \
6000         .name = BLOCK_OPT_BACKING_FMT,                              \
6001         .type = QEMU_OPT_STRING,                                    \
6002         .help = "Image format of the base image"                    \
6003     },                                                              \
6004     {                                                               \
6005         .name = BLOCK_OPT_DATA_FILE,                                \
6006         .type = QEMU_OPT_STRING,                                    \
6007         .help = "File name of an external data file"                \
6008     },                                                              \
6009     {                                                               \
6010         .name = BLOCK_OPT_DATA_FILE_RAW,                            \
6011         .type = QEMU_OPT_BOOL,                                      \
6012         .help = "The external data file must stay valid "           \
6013                 "as a raw image"                                    \
6014     },                                                              \
6015     {                                                               \
6016         .name = BLOCK_OPT_LAZY_REFCOUNTS,                           \
6017         .type = QEMU_OPT_BOOL,                                      \
6018         .help = "Postpone refcount updates",                        \
6019         .def_value_str = "off"                                      \
6020     },                                                              \
6021     {                                                               \
6022         .name = BLOCK_OPT_REFCOUNT_BITS,                            \
6023         .type = QEMU_OPT_NUMBER,                                    \
6024         .help = "Width of a reference count entry in bits",         \
6025         .def_value_str = "16"                                       \
6026     }
6027 
6028 static QemuOptsList qcow2_create_opts = {
6029     .name = "qcow2-create-opts",
6030     .head = QTAILQ_HEAD_INITIALIZER(qcow2_create_opts.head),
6031     .desc = {
6032         {                                                               \
6033             .name = BLOCK_OPT_ENCRYPT,                                  \
6034             .type = QEMU_OPT_BOOL,                                      \
6035             .help = "Encrypt the image with format 'aes'. (Deprecated " \
6036                     "in favor of " BLOCK_OPT_ENCRYPT_FORMAT "=aes)",    \
6037         },                                                              \
6038         {                                                               \
6039             .name = BLOCK_OPT_ENCRYPT_FORMAT,                           \
6040             .type = QEMU_OPT_STRING,                                    \
6041             .help = "Encrypt the image, format choices: 'aes', 'luks'", \
6042         },                                                              \
6043         BLOCK_CRYPTO_OPT_DEF_KEY_SECRET("encrypt.",                     \
6044             "ID of secret providing qcow AES key or LUKS passphrase"),  \
6045         BLOCK_CRYPTO_OPT_DEF_LUKS_CIPHER_ALG("encrypt."),               \
6046         BLOCK_CRYPTO_OPT_DEF_LUKS_CIPHER_MODE("encrypt."),              \
6047         BLOCK_CRYPTO_OPT_DEF_LUKS_IVGEN_ALG("encrypt."),                \
6048         BLOCK_CRYPTO_OPT_DEF_LUKS_IVGEN_HASH_ALG("encrypt."),           \
6049         BLOCK_CRYPTO_OPT_DEF_LUKS_HASH_ALG("encrypt."),                 \
6050         BLOCK_CRYPTO_OPT_DEF_LUKS_ITER_TIME("encrypt."),                \
6051         {                                                               \
6052             .name = BLOCK_OPT_CLUSTER_SIZE,                             \
6053             .type = QEMU_OPT_SIZE,                                      \
6054             .help = "qcow2 cluster size",                               \
6055             .def_value_str = stringify(DEFAULT_CLUSTER_SIZE)            \
6056         },                                                              \
6057         {                                                               \
6058             .name = BLOCK_OPT_EXTL2,                                    \
6059             .type = QEMU_OPT_BOOL,                                      \
6060             .help = "Extended L2 tables",                               \
6061             .def_value_str = "off"                                      \
6062         },                                                              \
6063         {                                                               \
6064             .name = BLOCK_OPT_PREALLOC,                                 \
6065             .type = QEMU_OPT_STRING,                                    \
6066             .help = "Preallocation mode (allowed values: off, "         \
6067                     "metadata, falloc, full)"                           \
6068         },                                                              \
6069         {                                                               \
6070             .name = BLOCK_OPT_COMPRESSION_TYPE,                         \
6071             .type = QEMU_OPT_STRING,                                    \
6072             .help = "Compression method used for image cluster "        \
6073                     "compression",                                      \
6074             .def_value_str = "zlib"                                     \
6075         },
6076         QCOW_COMMON_OPTIONS,
6077         { /* end of list */ }
6078     }
6079 };
6080 
6081 static QemuOptsList qcow2_amend_opts = {
6082     .name = "qcow2-amend-opts",
6083     .head = QTAILQ_HEAD_INITIALIZER(qcow2_amend_opts.head),
6084     .desc = {
6085         BLOCK_CRYPTO_OPT_DEF_LUKS_STATE("encrypt."),
6086         BLOCK_CRYPTO_OPT_DEF_LUKS_KEYSLOT("encrypt."),
6087         BLOCK_CRYPTO_OPT_DEF_LUKS_OLD_SECRET("encrypt."),
6088         BLOCK_CRYPTO_OPT_DEF_LUKS_NEW_SECRET("encrypt."),
6089         BLOCK_CRYPTO_OPT_DEF_LUKS_ITER_TIME("encrypt."),
6090         QCOW_COMMON_OPTIONS,
6091         { /* end of list */ }
6092     }
6093 };
6094 
6095 static const char *const qcow2_strong_runtime_opts[] = {
6096     "encrypt." BLOCK_CRYPTO_OPT_QCOW_KEY_SECRET,
6097 
6098     NULL
6099 };
6100 
6101 BlockDriver bdrv_qcow2 = {
6102     .format_name        = "qcow2",
6103     .instance_size      = sizeof(BDRVQcow2State),
6104     .bdrv_probe         = qcow2_probe,
6105     .bdrv_open          = qcow2_open,
6106     .bdrv_close         = qcow2_close,
6107     .bdrv_reopen_prepare  = qcow2_reopen_prepare,
6108     .bdrv_reopen_commit   = qcow2_reopen_commit,
6109     .bdrv_reopen_commit_post = qcow2_reopen_commit_post,
6110     .bdrv_reopen_abort    = qcow2_reopen_abort,
6111     .bdrv_join_options    = qcow2_join_options,
6112     .bdrv_child_perm      = bdrv_default_perms,
6113     .bdrv_co_create_opts  = qcow2_co_create_opts,
6114     .bdrv_co_create       = qcow2_co_create,
6115     .bdrv_has_zero_init   = qcow2_has_zero_init,
6116     .bdrv_co_block_status = qcow2_co_block_status,
6117 
6118     .bdrv_co_preadv_part    = qcow2_co_preadv_part,
6119     .bdrv_co_pwritev_part   = qcow2_co_pwritev_part,
6120     .bdrv_co_flush_to_os    = qcow2_co_flush_to_os,
6121 
6122     .bdrv_co_pwrite_zeroes  = qcow2_co_pwrite_zeroes,
6123     .bdrv_co_pdiscard       = qcow2_co_pdiscard,
6124     .bdrv_co_copy_range_from = qcow2_co_copy_range_from,
6125     .bdrv_co_copy_range_to  = qcow2_co_copy_range_to,
6126     .bdrv_co_truncate       = qcow2_co_truncate,
6127     .bdrv_co_pwritev_compressed_part = qcow2_co_pwritev_compressed_part,
6128     .bdrv_make_empty        = qcow2_make_empty,
6129 
6130     .bdrv_snapshot_create   = qcow2_snapshot_create,
6131     .bdrv_snapshot_goto     = qcow2_snapshot_goto,
6132     .bdrv_snapshot_delete   = qcow2_snapshot_delete,
6133     .bdrv_snapshot_list     = qcow2_snapshot_list,
6134     .bdrv_snapshot_load_tmp = qcow2_snapshot_load_tmp,
6135     .bdrv_measure           = qcow2_measure,
6136     .bdrv_co_get_info       = qcow2_co_get_info,
6137     .bdrv_get_specific_info = qcow2_get_specific_info,
6138 
6139     .bdrv_co_save_vmstate   = qcow2_co_save_vmstate,
6140     .bdrv_co_load_vmstate   = qcow2_co_load_vmstate,
6141 
6142     .is_format                  = true,
6143     .supports_backing           = true,
6144     .bdrv_change_backing_file   = qcow2_change_backing_file,
6145 
6146     .bdrv_refresh_limits        = qcow2_refresh_limits,
6147     .bdrv_co_invalidate_cache   = qcow2_co_invalidate_cache,
6148     .bdrv_inactivate            = qcow2_inactivate,
6149 
6150     .create_opts         = &qcow2_create_opts,
6151     .amend_opts          = &qcow2_amend_opts,
6152     .strong_runtime_opts = qcow2_strong_runtime_opts,
6153     .mutable_opts        = mutable_opts,
6154     .bdrv_co_check       = qcow2_co_check,
6155     .bdrv_amend_options  = qcow2_amend_options,
6156     .bdrv_co_amend       = qcow2_co_amend,
6157 
6158     .bdrv_detach_aio_context  = qcow2_detach_aio_context,
6159     .bdrv_attach_aio_context  = qcow2_attach_aio_context,
6160 
6161     .bdrv_supports_persistent_dirty_bitmap =
6162             qcow2_supports_persistent_dirty_bitmap,
6163     .bdrv_co_can_store_new_dirty_bitmap = qcow2_co_can_store_new_dirty_bitmap,
6164     .bdrv_co_remove_persistent_dirty_bitmap =
6165             qcow2_co_remove_persistent_dirty_bitmap,
6166 };
6167 
6168 static void bdrv_qcow2_init(void)
6169 {
6170     bdrv_register(&bdrv_qcow2);
6171 }
6172 
6173 block_init(bdrv_qcow2_init);
6174