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