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