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