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