]> git.proxmox.com Git - mirror_qemu.git/blame - block/qcow2.c
block/export: disable VHOST_USER_PROTOCOL_F_INFLIGHT_SHMFD for now
[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
AG
842 if (s->cache_clean_interval > 0) {
843 s->cache_clean_timer = aio_timer_new(context, QEMU_CLOCK_VIRTUAL,
844 SCALE_MS, cache_clean_timer_cb,
845 bs);
846 timer_mod(s->cache_clean_timer, qemu_clock_get_ms(QEMU_CLOCK_VIRTUAL) +
847 (int64_t) s->cache_clean_interval * 1000);
848 }
849}
850
851static void cache_clean_timer_del(BlockDriverState *bs)
852{
ff99129a 853 BDRVQcow2State *s = bs->opaque;
279621c0 854 if (s->cache_clean_timer) {
279621c0
AG
855 timer_free(s->cache_clean_timer);
856 s->cache_clean_timer = NULL;
857 }
858}
859
860static void qcow2_detach_aio_context(BlockDriverState *bs)
861{
862 cache_clean_timer_del(bs);
863}
864
865static void qcow2_attach_aio_context(BlockDriverState *bs,
866 AioContext *new_context)
867{
868 cache_clean_timer_init(bs, new_context);
869}
870
772c4cad 871static bool read_cache_sizes(BlockDriverState *bs, QemuOpts *opts,
bc85ef26 872 uint64_t *l2_cache_size,
1221fe6f 873 uint64_t *l2_cache_entry_size,
6c1c8d5d
HR
874 uint64_t *refcount_cache_size, Error **errp)
875{
ff99129a 876 BDRVQcow2State *s = bs->opaque;
b749562d 877 uint64_t combined_cache_size, l2_cache_max_setting;
6c1c8d5d 878 bool l2_cache_size_set, refcount_cache_size_set, combined_cache_size_set;
af39bd0d 879 bool l2_cache_entry_size_set;
7af5eea9 880 int min_refcount_cache = MIN_REFCOUNT_CACHE_SIZE * s->cluster_size;
b749562d 881 uint64_t virtual_disk_size = bs->total_sectors * BDRV_SECTOR_SIZE;
b70d0820
AG
882 uint64_t max_l2_entries = DIV_ROUND_UP(virtual_disk_size, s->cluster_size);
883 /* An L2 table is always one cluster in size so the max cache size
884 * should be a multiple of the cluster size. */
c8fd8554 885 uint64_t max_l2_cache = ROUND_UP(max_l2_entries * l2_entry_size(s),
b70d0820 886 s->cluster_size);
6c1c8d5d
HR
887
888 combined_cache_size_set = qemu_opt_get(opts, QCOW2_OPT_CACHE_SIZE);
889 l2_cache_size_set = qemu_opt_get(opts, QCOW2_OPT_L2_CACHE_SIZE);
890 refcount_cache_size_set = qemu_opt_get(opts, QCOW2_OPT_REFCOUNT_CACHE_SIZE);
af39bd0d 891 l2_cache_entry_size_set = qemu_opt_get(opts, QCOW2_OPT_L2_CACHE_ENTRY_SIZE);
6c1c8d5d
HR
892
893 combined_cache_size = qemu_opt_get_size(opts, QCOW2_OPT_CACHE_SIZE, 0);
b749562d
LB
894 l2_cache_max_setting = qemu_opt_get_size(opts, QCOW2_OPT_L2_CACHE_SIZE,
895 DEFAULT_L2_CACHE_MAX_SIZE);
6c1c8d5d
HR
896 *refcount_cache_size = qemu_opt_get_size(opts,
897 QCOW2_OPT_REFCOUNT_CACHE_SIZE, 0);
898
1221fe6f
AG
899 *l2_cache_entry_size = qemu_opt_get_size(
900 opts, QCOW2_OPT_L2_CACHE_ENTRY_SIZE, s->cluster_size);
901
b749562d
LB
902 *l2_cache_size = MIN(max_l2_cache, l2_cache_max_setting);
903
6c1c8d5d
HR
904 if (combined_cache_size_set) {
905 if (l2_cache_size_set && refcount_cache_size_set) {
906 error_setg(errp, QCOW2_OPT_CACHE_SIZE ", " QCOW2_OPT_L2_CACHE_SIZE
907 " and " QCOW2_OPT_REFCOUNT_CACHE_SIZE " may not be set "
308999e9 908 "at the same time");
772c4cad 909 return false;
b749562d
LB
910 } else if (l2_cache_size_set &&
911 (l2_cache_max_setting > combined_cache_size)) {
6c1c8d5d
HR
912 error_setg(errp, QCOW2_OPT_L2_CACHE_SIZE " may not exceed "
913 QCOW2_OPT_CACHE_SIZE);
772c4cad 914 return false;
6c1c8d5d
HR
915 } else if (*refcount_cache_size > combined_cache_size) {
916 error_setg(errp, QCOW2_OPT_REFCOUNT_CACHE_SIZE " may not exceed "
917 QCOW2_OPT_CACHE_SIZE);
772c4cad 918 return false;
6c1c8d5d
HR
919 }
920
921 if (l2_cache_size_set) {
922 *refcount_cache_size = combined_cache_size - *l2_cache_size;
923 } else if (refcount_cache_size_set) {
924 *l2_cache_size = combined_cache_size - *refcount_cache_size;
925 } else {
52253998
AG
926 /* Assign as much memory as possible to the L2 cache, and
927 * use the remainder for the refcount cache */
928 if (combined_cache_size >= max_l2_cache + min_refcount_cache) {
929 *l2_cache_size = max_l2_cache;
930 *refcount_cache_size = combined_cache_size - *l2_cache_size;
931 } else {
932 *refcount_cache_size =
933 MIN(combined_cache_size, min_refcount_cache);
934 *l2_cache_size = combined_cache_size - *refcount_cache_size;
935 }
6c1c8d5d 936 }
6c1c8d5d 937 }
af39bd0d
AG
938
939 /*
940 * If the L2 cache is not enough to cover the whole disk then
941 * default to 4KB entries. Smaller entries reduce the cost of
942 * loads and evictions and increase I/O performance.
943 */
944 if (*l2_cache_size < max_l2_cache && !l2_cache_entry_size_set) {
945 *l2_cache_entry_size = MIN(s->cluster_size, 4096);
946 }
947
657ada52
LB
948 /* l2_cache_size and refcount_cache_size are ensured to have at least
949 * their minimum values in qcow2_update_options_prepare() */
1221fe6f
AG
950
951 if (*l2_cache_entry_size < (1 << MIN_CLUSTER_BITS) ||
952 *l2_cache_entry_size > s->cluster_size ||
953 !is_power_of_2(*l2_cache_entry_size)) {
954 error_setg(errp, "L2 cache entry size must be a power of two "
955 "between %d and the cluster size (%d)",
956 1 << MIN_CLUSTER_BITS, s->cluster_size);
772c4cad 957 return false;
1221fe6f 958 }
772c4cad
VSO
959
960 return true;
6c1c8d5d
HR
961}
962
ee55b173
KW
963typedef struct Qcow2ReopenState {
964 Qcow2Cache *l2_table_cache;
965 Qcow2Cache *refcount_block_cache;
3c2e511a 966 int l2_slice_size; /* Number of entries in a slice of the L2 table */
ee55b173
KW
967 bool use_lazy_refcounts;
968 int overlap_check;
969 bool discard_passthrough[QCOW2_DISCARD_MAX];
970 uint64_t cache_clean_interval;
b25b387f 971 QCryptoBlockOpenOptions *crypto_opts; /* Disk encryption runtime options */
ee55b173
KW
972} Qcow2ReopenState;
973
974static int qcow2_update_options_prepare(BlockDriverState *bs,
975 Qcow2ReopenState *r,
976 QDict *options, int flags,
977 Error **errp)
4c75d1a1
KW
978{
979 BDRVQcow2State *s = bs->opaque;
94edf3fb 980 QemuOpts *opts = NULL;
4c75d1a1
KW
981 const char *opt_overlap_check, *opt_overlap_check_template;
982 int overlap_check_template = 0;
1221fe6f 983 uint64_t l2_cache_size, l2_cache_entry_size, refcount_cache_size;
4c75d1a1 984 int i;
b25b387f
DB
985 const char *encryptfmt;
986 QDict *encryptopts = NULL;
4c75d1a1
KW
987 int ret;
988
b25b387f
DB
989 qdict_extract_subqdict(options, &encryptopts, "encrypt.");
990 encryptfmt = qdict_get_try_str(encryptopts, "format");
991
94edf3fb 992 opts = qemu_opts_create(&qcow2_runtime_opts, NULL, 0, &error_abort);
af175e85 993 if (!qemu_opts_absorb_qdict(opts, options, errp)) {
94edf3fb
KW
994 ret = -EINVAL;
995 goto fail;
996 }
997
998 /* get L2 table/refcount block cache size from command line options */
772c4cad
VSO
999 if (!read_cache_sizes(bs, opts, &l2_cache_size, &l2_cache_entry_size,
1000 &refcount_cache_size, errp)) {
94edf3fb
KW
1001 ret = -EINVAL;
1002 goto fail;
1003 }
1004
1221fe6f 1005 l2_cache_size /= l2_cache_entry_size;
94edf3fb
KW
1006 if (l2_cache_size < MIN_L2_CACHE_SIZE) {
1007 l2_cache_size = MIN_L2_CACHE_SIZE;
1008 }
1009 if (l2_cache_size > INT_MAX) {
1010 error_setg(errp, "L2 cache size too big");
1011 ret = -EINVAL;
1012 goto fail;
1013 }
1014
1015 refcount_cache_size /= s->cluster_size;
1016 if (refcount_cache_size < MIN_REFCOUNT_CACHE_SIZE) {
1017 refcount_cache_size = MIN_REFCOUNT_CACHE_SIZE;
1018 }
1019 if (refcount_cache_size > INT_MAX) {
1020 error_setg(errp, "Refcount cache size too big");
1021 ret = -EINVAL;
1022 goto fail;
1023 }
1024
5b0959a7
KW
1025 /* alloc new L2 table/refcount block cache, flush old one */
1026 if (s->l2_table_cache) {
1027 ret = qcow2_cache_flush(bs, s->l2_table_cache);
1028 if (ret) {
1029 error_setg_errno(errp, -ret, "Failed to flush the L2 table cache");
1030 goto fail;
1031 }
1032 }
1033
1034 if (s->refcount_block_cache) {
1035 ret = qcow2_cache_flush(bs, s->refcount_block_cache);
1036 if (ret) {
1037 error_setg_errno(errp, -ret,
1038 "Failed to flush the refcount block cache");
1039 goto fail;
1040 }
1041 }
1042
c8fd8554 1043 r->l2_slice_size = l2_cache_entry_size / l2_entry_size(s);
1221fe6f
AG
1044 r->l2_table_cache = qcow2_cache_create(bs, l2_cache_size,
1045 l2_cache_entry_size);
1046 r->refcount_block_cache = qcow2_cache_create(bs, refcount_cache_size,
1047 s->cluster_size);
ee55b173 1048 if (r->l2_table_cache == NULL || r->refcount_block_cache == NULL) {
94edf3fb
KW
1049 error_setg(errp, "Could not allocate metadata caches");
1050 ret = -ENOMEM;
1051 goto fail;
1052 }
1053
1054 /* New interval for cache cleanup timer */
ee55b173 1055 r->cache_clean_interval =
5b0959a7 1056 qemu_opt_get_number(opts, QCOW2_OPT_CACHE_CLEAN_INTERVAL,
e957b50b 1057 DEFAULT_CACHE_CLEAN_INTERVAL);
91203f08
AG
1058#ifndef CONFIG_LINUX
1059 if (r->cache_clean_interval != 0) {
1060 error_setg(errp, QCOW2_OPT_CACHE_CLEAN_INTERVAL
1061 " not supported on this host");
1062 ret = -EINVAL;
1063 goto fail;
1064 }
1065#endif
ee55b173 1066 if (r->cache_clean_interval > UINT_MAX) {
94edf3fb
KW
1067 error_setg(errp, "Cache clean interval too big");
1068 ret = -EINVAL;
1069 goto fail;
1070 }
94edf3fb 1071
5b0959a7 1072 /* lazy-refcounts; flush if going from enabled to disabled */
ee55b173 1073 r->use_lazy_refcounts = qemu_opt_get_bool(opts, QCOW2_OPT_LAZY_REFCOUNTS,
4c75d1a1 1074 (s->compatible_features & QCOW2_COMPAT_LAZY_REFCOUNTS));
ee55b173 1075 if (r->use_lazy_refcounts && s->qcow_version < 3) {
007dbc39
KW
1076 error_setg(errp, "Lazy refcounts require a qcow2 image with at least "
1077 "qemu 1.1 compatibility level");
1078 ret = -EINVAL;
1079 goto fail;
1080 }
4c75d1a1 1081
5b0959a7
KW
1082 if (s->use_lazy_refcounts && !r->use_lazy_refcounts) {
1083 ret = qcow2_mark_clean(bs);
1084 if (ret < 0) {
1085 error_setg_errno(errp, -ret, "Failed to disable lazy refcounts");
1086 goto fail;
1087 }
1088 }
1089
007dbc39 1090 /* Overlap check options */
4c75d1a1
KW
1091 opt_overlap_check = qemu_opt_get(opts, QCOW2_OPT_OVERLAP);
1092 opt_overlap_check_template = qemu_opt_get(opts, QCOW2_OPT_OVERLAP_TEMPLATE);
1093 if (opt_overlap_check_template && opt_overlap_check &&
1094 strcmp(opt_overlap_check_template, opt_overlap_check))
1095 {
1096 error_setg(errp, "Conflicting values for qcow2 options '"
1097 QCOW2_OPT_OVERLAP "' ('%s') and '" QCOW2_OPT_OVERLAP_TEMPLATE
1098 "' ('%s')", opt_overlap_check, opt_overlap_check_template);
1099 ret = -EINVAL;
1100 goto fail;
1101 }
1102 if (!opt_overlap_check) {
1103 opt_overlap_check = opt_overlap_check_template ?: "cached";
1104 }
1105
1106 if (!strcmp(opt_overlap_check, "none")) {
1107 overlap_check_template = 0;
1108 } else if (!strcmp(opt_overlap_check, "constant")) {
1109 overlap_check_template = QCOW2_OL_CONSTANT;
1110 } else if (!strcmp(opt_overlap_check, "cached")) {
1111 overlap_check_template = QCOW2_OL_CACHED;
1112 } else if (!strcmp(opt_overlap_check, "all")) {
1113 overlap_check_template = QCOW2_OL_ALL;
1114 } else {
1115 error_setg(errp, "Unsupported value '%s' for qcow2 option "
1116 "'overlap-check'. Allowed are any of the following: "
1117 "none, constant, cached, all", opt_overlap_check);
1118 ret = -EINVAL;
1119 goto fail;
1120 }
1121
ee55b173 1122 r->overlap_check = 0;
4c75d1a1
KW
1123 for (i = 0; i < QCOW2_OL_MAX_BITNR; i++) {
1124 /* overlap-check defines a template bitmask, but every flag may be
1125 * overwritten through the associated boolean option */
ee55b173 1126 r->overlap_check |=
4c75d1a1
KW
1127 qemu_opt_get_bool(opts, overlap_bool_option_names[i],
1128 overlap_check_template & (1 << i)) << i;
1129 }
1130
ee55b173
KW
1131 r->discard_passthrough[QCOW2_DISCARD_NEVER] = false;
1132 r->discard_passthrough[QCOW2_DISCARD_ALWAYS] = true;
1133 r->discard_passthrough[QCOW2_DISCARD_REQUEST] =
007dbc39
KW
1134 qemu_opt_get_bool(opts, QCOW2_OPT_DISCARD_REQUEST,
1135 flags & BDRV_O_UNMAP);
ee55b173 1136 r->discard_passthrough[QCOW2_DISCARD_SNAPSHOT] =
007dbc39 1137 qemu_opt_get_bool(opts, QCOW2_OPT_DISCARD_SNAPSHOT, true);
ee55b173 1138 r->discard_passthrough[QCOW2_DISCARD_OTHER] =
007dbc39
KW
1139 qemu_opt_get_bool(opts, QCOW2_OPT_DISCARD_OTHER, false);
1140
b25b387f
DB
1141 switch (s->crypt_method_header) {
1142 case QCOW_CRYPT_NONE:
1143 if (encryptfmt) {
1144 error_setg(errp, "No encryption in image header, but options "
1145 "specified format '%s'", encryptfmt);
1146 ret = -EINVAL;
1147 goto fail;
1148 }
1149 break;
1150
1151 case QCOW_CRYPT_AES:
1152 if (encryptfmt && !g_str_equal(encryptfmt, "aes")) {
1153 error_setg(errp,
1154 "Header reported 'aes' encryption format but "
1155 "options specify '%s'", encryptfmt);
1156 ret = -EINVAL;
1157 goto fail;
1158 }
796d3239
MA
1159 qdict_put_str(encryptopts, "format", "qcow");
1160 r->crypto_opts = block_crypto_open_opts_init(encryptopts, errp);
1184b411
VSO
1161 if (!r->crypto_opts) {
1162 ret = -EINVAL;
1163 goto fail;
1164 }
b25b387f
DB
1165 break;
1166
4652b8f3
DB
1167 case QCOW_CRYPT_LUKS:
1168 if (encryptfmt && !g_str_equal(encryptfmt, "luks")) {
1169 error_setg(errp,
1170 "Header reported 'luks' encryption format but "
1171 "options specify '%s'", encryptfmt);
1172 ret = -EINVAL;
1173 goto fail;
1174 }
796d3239
MA
1175 qdict_put_str(encryptopts, "format", "luks");
1176 r->crypto_opts = block_crypto_open_opts_init(encryptopts, errp);
1184b411
VSO
1177 if (!r->crypto_opts) {
1178 ret = -EINVAL;
1179 goto fail;
1180 }
4652b8f3
DB
1181 break;
1182
b25b387f
DB
1183 default:
1184 error_setg(errp, "Unsupported encryption method %d",
1185 s->crypt_method_header);
b25b387f
DB
1186 ret = -EINVAL;
1187 goto fail;
1188 }
1189
4c75d1a1
KW
1190 ret = 0;
1191fail:
cb3e7f08 1192 qobject_unref(encryptopts);
94edf3fb
KW
1193 qemu_opts_del(opts);
1194 opts = NULL;
ee55b173
KW
1195 return ret;
1196}
1197
1198static void qcow2_update_options_commit(BlockDriverState *bs,
1199 Qcow2ReopenState *r)
1200{
1201 BDRVQcow2State *s = bs->opaque;
1202 int i;
1203
5b0959a7 1204 if (s->l2_table_cache) {
e64d4072 1205 qcow2_cache_destroy(s->l2_table_cache);
5b0959a7
KW
1206 }
1207 if (s->refcount_block_cache) {
e64d4072 1208 qcow2_cache_destroy(s->refcount_block_cache);
5b0959a7 1209 }
ee55b173
KW
1210 s->l2_table_cache = r->l2_table_cache;
1211 s->refcount_block_cache = r->refcount_block_cache;
3c2e511a 1212 s->l2_slice_size = r->l2_slice_size;
ee55b173
KW
1213
1214 s->overlap_check = r->overlap_check;
1215 s->use_lazy_refcounts = r->use_lazy_refcounts;
1216
1217 for (i = 0; i < QCOW2_DISCARD_MAX; i++) {
1218 s->discard_passthrough[i] = r->discard_passthrough[i];
1219 }
1220
5b0959a7
KW
1221 if (s->cache_clean_interval != r->cache_clean_interval) {
1222 cache_clean_timer_del(bs);
1223 s->cache_clean_interval = r->cache_clean_interval;
1224 cache_clean_timer_init(bs, bdrv_get_aio_context(bs));
1225 }
b25b387f
DB
1226
1227 qapi_free_QCryptoBlockOpenOptions(s->crypto_opts);
1228 s->crypto_opts = r->crypto_opts;
ee55b173
KW
1229}
1230
1231static void qcow2_update_options_abort(BlockDriverState *bs,
1232 Qcow2ReopenState *r)
1233{
1234 if (r->l2_table_cache) {
e64d4072 1235 qcow2_cache_destroy(r->l2_table_cache);
ee55b173
KW
1236 }
1237 if (r->refcount_block_cache) {
e64d4072 1238 qcow2_cache_destroy(r->refcount_block_cache);
ee55b173 1239 }
b25b387f 1240 qapi_free_QCryptoBlockOpenOptions(r->crypto_opts);
ee55b173
KW
1241}
1242
1243static int qcow2_update_options(BlockDriverState *bs, QDict *options,
1244 int flags, Error **errp)
1245{
1246 Qcow2ReopenState r = {};
1247 int ret;
1248
1249 ret = qcow2_update_options_prepare(bs, &r, options, flags, errp);
1250 if (ret >= 0) {
1251 qcow2_update_options_commit(bs, &r);
1252 } else {
1253 qcow2_update_options_abort(bs, &r);
1254 }
94edf3fb 1255
4c75d1a1
KW
1256 return ret;
1257}
1258
572ad978
DP
1259static int validate_compression_type(BDRVQcow2State *s, Error **errp)
1260{
1261 switch (s->compression_type) {
1262 case QCOW2_COMPRESSION_TYPE_ZLIB:
d298ac10
DP
1263#ifdef CONFIG_ZSTD
1264 case QCOW2_COMPRESSION_TYPE_ZSTD:
1265#endif
572ad978
DP
1266 break;
1267
1268 default:
1269 error_setg(errp, "qcow2: unknown compression type: %u",
1270 s->compression_type);
1271 return -ENOTSUP;
1272 }
1273
1274 /*
1275 * if the compression type differs from QCOW2_COMPRESSION_TYPE_ZLIB
1276 * the incompatible feature flag must be set
1277 */
1278 if (s->compression_type == QCOW2_COMPRESSION_TYPE_ZLIB) {
1279 if (s->incompatible_features & QCOW2_INCOMPAT_COMPRESSION) {
1280 error_setg(errp, "qcow2: Compression type incompatible feature "
1281 "bit must not be set");
1282 return -EINVAL;
1283 }
1284 } else {
1285 if (!(s->incompatible_features & QCOW2_INCOMPAT_COMPRESSION)) {
1286 error_setg(errp, "qcow2: Compression type incompatible feature "
1287 "bit must be set");
1288 return -EINVAL;
1289 }
1290 }
1291
1292 return 0;
1293}
1294
1fafcd93
PB
1295/* Called with s->lock held. */
1296static int coroutine_fn qcow2_do_open(BlockDriverState *bs, QDict *options,
1297 int flags, Error **errp)
585f8587 1298{
bc520249 1299 ERRP_GUARD();
ff99129a 1300 BDRVQcow2State *s = bs->opaque;
6d33e8e7
KW
1301 unsigned int len, i;
1302 int ret = 0;
585f8587 1303 QCowHeader header;
9b80ddf3 1304 uint64_t ext_end;
2cf7cfa1 1305 uint64_t l1_vm_state_index;
88ddffae 1306 bool update_header = false;
585f8587 1307
cf2ab8fc 1308 ret = bdrv_pread(bs->file, 0, &header, sizeof(header));
6d85a57e 1309 if (ret < 0) {
3ef6c40a 1310 error_setg_errno(errp, -ret, "Could not read qcow2 header");
585f8587 1311 goto fail;
6d85a57e 1312 }
3b698f52
PM
1313 header.magic = be32_to_cpu(header.magic);
1314 header.version = be32_to_cpu(header.version);
1315 header.backing_file_offset = be64_to_cpu(header.backing_file_offset);
1316 header.backing_file_size = be32_to_cpu(header.backing_file_size);
1317 header.size = be64_to_cpu(header.size);
1318 header.cluster_bits = be32_to_cpu(header.cluster_bits);
1319 header.crypt_method = be32_to_cpu(header.crypt_method);
1320 header.l1_table_offset = be64_to_cpu(header.l1_table_offset);
1321 header.l1_size = be32_to_cpu(header.l1_size);
1322 header.refcount_table_offset = be64_to_cpu(header.refcount_table_offset);
1323 header.refcount_table_clusters =
1324 be32_to_cpu(header.refcount_table_clusters);
1325 header.snapshots_offset = be64_to_cpu(header.snapshots_offset);
1326 header.nb_snapshots = be32_to_cpu(header.nb_snapshots);
3b46e624 1327
e8cdcec1 1328 if (header.magic != QCOW_MAGIC) {
3ef6c40a 1329 error_setg(errp, "Image is not in qcow2 format");
76abe407 1330 ret = -EINVAL;
585f8587 1331 goto fail;
6d85a57e 1332 }
6744cbab 1333 if (header.version < 2 || header.version > 3) {
a55448b3 1334 error_setg(errp, "Unsupported qcow2 version %" PRIu32, header.version);
6744cbab
KW
1335 ret = -ENOTSUP;
1336 goto fail;
1337 }
1338
1339 s->qcow_version = header.version;
1340
24342f2c
KW
1341 /* Initialise cluster size */
1342 if (header.cluster_bits < MIN_CLUSTER_BITS ||
1343 header.cluster_bits > MAX_CLUSTER_BITS) {
521b2b5d
HR
1344 error_setg(errp, "Unsupported cluster size: 2^%" PRIu32,
1345 header.cluster_bits);
24342f2c
KW
1346 ret = -EINVAL;
1347 goto fail;
1348 }
1349
1350 s->cluster_bits = header.cluster_bits;
1351 s->cluster_size = 1 << s->cluster_bits;
24342f2c 1352
6744cbab
KW
1353 /* Initialise version 3 header fields */
1354 if (header.version == 2) {
1355 header.incompatible_features = 0;
1356 header.compatible_features = 0;
1357 header.autoclear_features = 0;
1358 header.refcount_order = 4;
1359 header.header_length = 72;
1360 } else {
3b698f52
PM
1361 header.incompatible_features =
1362 be64_to_cpu(header.incompatible_features);
1363 header.compatible_features = be64_to_cpu(header.compatible_features);
1364 header.autoclear_features = be64_to_cpu(header.autoclear_features);
1365 header.refcount_order = be32_to_cpu(header.refcount_order);
1366 header.header_length = be32_to_cpu(header.header_length);
24342f2c
KW
1367
1368 if (header.header_length < 104) {
1369 error_setg(errp, "qcow2 header too short");
1370 ret = -EINVAL;
1371 goto fail;
1372 }
1373 }
1374
1375 if (header.header_length > s->cluster_size) {
1376 error_setg(errp, "qcow2 header exceeds cluster size");
1377 ret = -EINVAL;
1378 goto fail;
6744cbab
KW
1379 }
1380
1381 if (header.header_length > sizeof(header)) {
1382 s->unknown_header_fields_size = header.header_length - sizeof(header);
1383 s->unknown_header_fields = g_malloc(s->unknown_header_fields_size);
cf2ab8fc 1384 ret = bdrv_pread(bs->file, sizeof(header), s->unknown_header_fields,
6744cbab
KW
1385 s->unknown_header_fields_size);
1386 if (ret < 0) {
3ef6c40a
HR
1387 error_setg_errno(errp, -ret, "Could not read unknown qcow2 header "
1388 "fields");
6744cbab
KW
1389 goto fail;
1390 }
1391 }
1392
a1b3955c
KW
1393 if (header.backing_file_offset > s->cluster_size) {
1394 error_setg(errp, "Invalid backing file offset");
1395 ret = -EINVAL;
1396 goto fail;
1397 }
1398
cfcc4c62
KW
1399 if (header.backing_file_offset) {
1400 ext_end = header.backing_file_offset;
1401 } else {
1402 ext_end = 1 << header.cluster_bits;
1403 }
1404
6744cbab
KW
1405 /* Handle feature bits */
1406 s->incompatible_features = header.incompatible_features;
1407 s->compatible_features = header.compatible_features;
1408 s->autoclear_features = header.autoclear_features;
1409
572ad978
DP
1410 /*
1411 * Handle compression type
1412 * Older qcow2 images don't contain the compression type header.
1413 * Distinguish them by the header length and use
1414 * the only valid (default) compression type in that case
1415 */
1416 if (header.header_length > offsetof(QCowHeader, compression_type)) {
1417 s->compression_type = header.compression_type;
1418 } else {
1419 s->compression_type = QCOW2_COMPRESSION_TYPE_ZLIB;
1420 }
1421
1422 ret = validate_compression_type(s, errp);
1423 if (ret) {
1424 goto fail;
1425 }
1426
c61d0004 1427 if (s->incompatible_features & ~QCOW2_INCOMPAT_MASK) {
cfcc4c62
KW
1428 void *feature_table = NULL;
1429 qcow2_read_extensions(bs, header.header_length, ext_end,
88ddffae 1430 &feature_table, flags, NULL, NULL);
a55448b3 1431 report_unsupported_feature(errp, feature_table,
c61d0004
SH
1432 s->incompatible_features &
1433 ~QCOW2_INCOMPAT_MASK);
6744cbab 1434 ret = -ENOTSUP;
c5a33ee9 1435 g_free(feature_table);
6744cbab
KW
1436 goto fail;
1437 }
1438
69c98726
HR
1439 if (s->incompatible_features & QCOW2_INCOMPAT_CORRUPT) {
1440 /* Corrupt images may not be written to unless they are being repaired
1441 */
1442 if ((flags & BDRV_O_RDWR) && !(flags & BDRV_O_CHECK)) {
3ef6c40a
HR
1443 error_setg(errp, "qcow2: Image is corrupt; cannot be opened "
1444 "read/write");
69c98726
HR
1445 ret = -EACCES;
1446 goto fail;
1447 }
1448 }
1449
d0346b55
AG
1450 s->subclusters_per_cluster =
1451 has_subclusters(s) ? QCOW_EXTL2_SUBCLUSTERS_PER_CLUSTER : 1;
1452 s->subcluster_size = s->cluster_size / s->subclusters_per_cluster;
1453 s->subcluster_bits = ctz32(s->subcluster_size);
1454
7be20252
AG
1455 if (s->subcluster_size < (1 << MIN_CLUSTER_BITS)) {
1456 error_setg(errp, "Unsupported subcluster size: %d", s->subcluster_size);
1457 ret = -EINVAL;
1458 goto fail;
1459 }
1460
6744cbab 1461 /* Check support for various header values */
b72faf9f
HR
1462 if (header.refcount_order > 6) {
1463 error_setg(errp, "Reference count entry width too large; may not "
1464 "exceed 64 bits");
1465 ret = -EINVAL;
e8cdcec1
KW
1466 goto fail;
1467 }
b6481f37 1468 s->refcount_order = header.refcount_order;
346a53df
HR
1469 s->refcount_bits = 1 << s->refcount_order;
1470 s->refcount_max = UINT64_C(1) << (s->refcount_bits - 1);
1471 s->refcount_max += s->refcount_max - 1;
6744cbab 1472
585f8587 1473 s->crypt_method_header = header.crypt_method;
6d85a57e 1474 if (s->crypt_method_header) {
e6ff69bf
DB
1475 if (bdrv_uses_whitelist() &&
1476 s->crypt_method_header == QCOW_CRYPT_AES) {
8c0dcbc4
DB
1477 error_setg(errp,
1478 "Use of AES-CBC encrypted qcow2 images is no longer "
1479 "supported in system emulators");
1480 error_append_hint(errp,
1481 "You can use 'qemu-img convert' to convert your "
1482 "image to an alternative supported format, such "
1483 "as unencrypted qcow2, or raw with the LUKS "
1484 "format instead.\n");
1485 ret = -ENOSYS;
1486 goto fail;
e6ff69bf
DB
1487 }
1488
4652b8f3
DB
1489 if (s->crypt_method_header == QCOW_CRYPT_AES) {
1490 s->crypt_physical_offset = false;
1491 } else {
1492 /* Assuming LUKS and any future crypt methods we
1493 * add will all use physical offsets, due to the
1494 * fact that the alternative is insecure... */
1495 s->crypt_physical_offset = true;
1496 }
1497
54115412 1498 bs->encrypted = true;
6d85a57e 1499 }
24342f2c 1500
c8fd8554 1501 s->l2_bits = s->cluster_bits - ctz32(l2_entry_size(s));
585f8587 1502 s->l2_size = 1 << s->l2_bits;
1d13d654
HR
1503 /* 2^(s->refcount_order - 3) is the refcount width in bytes */
1504 s->refcount_block_bits = s->cluster_bits - (s->refcount_order - 3);
1505 s->refcount_block_size = 1 << s->refcount_block_bits;
bd016b91 1506 bs->total_sectors = header.size / BDRV_SECTOR_SIZE;
585f8587
FB
1507 s->csize_shift = (62 - (s->cluster_bits - 8));
1508 s->csize_mask = (1 << (s->cluster_bits - 8)) - 1;
1509 s->cluster_offset_mask = (1LL << s->csize_shift) - 1;
5dab2fad 1510
585f8587 1511 s->refcount_table_offset = header.refcount_table_offset;
5fafdf24 1512 s->refcount_table_size =
585f8587
FB
1513 header.refcount_table_clusters << (s->cluster_bits - 3);
1514
951053a9
AG
1515 if (header.refcount_table_clusters == 0 && !(flags & BDRV_O_CHECK)) {
1516 error_setg(errp, "Image does not contain a reference count table");
1517 ret = -EINVAL;
1518 goto fail;
1519 }
1520
0cf0e598
AG
1521 ret = qcow2_validate_table(bs, s->refcount_table_offset,
1522 header.refcount_table_clusters,
1523 s->cluster_size, QCOW_MAX_REFTABLE_SIZE,
1524 "Reference count table", errp);
8c7de283 1525 if (ret < 0) {
8c7de283
KW
1526 goto fail;
1527 }
1528
8bc584fe
HR
1529 if (!(flags & BDRV_O_CHECK)) {
1530 /*
1531 * The total size in bytes of the snapshot table is checked in
1532 * qcow2_read_snapshots() because the size of each snapshot is
1533 * variable and we don't know it yet.
1534 * Here we only check the offset and number of snapshots.
1535 */
1536 ret = qcow2_validate_table(bs, header.snapshots_offset,
1537 header.nb_snapshots,
1538 sizeof(QCowSnapshotHeader),
1539 sizeof(QCowSnapshotHeader) *
1540 QCOW_MAX_SNAPSHOTS,
1541 "Snapshot table", errp);
1542 if (ret < 0) {
1543 goto fail;
1544 }
ce48f2f4
KW
1545 }
1546
585f8587 1547 /* read the level 1 table */
0cf0e598 1548 ret = qcow2_validate_table(bs, header.l1_table_offset,
02b1ecfa 1549 header.l1_size, L1E_SIZE,
0cf0e598
AG
1550 QCOW_MAX_L1_SIZE, "Active L1 table", errp);
1551 if (ret < 0) {
2d51c32c
KW
1552 goto fail;
1553 }
585f8587 1554 s->l1_size = header.l1_size;
0cf0e598 1555 s->l1_table_offset = header.l1_table_offset;
2cf7cfa1
KW
1556
1557 l1_vm_state_index = size_to_l1(s, header.size);
1558 if (l1_vm_state_index > INT_MAX) {
3ef6c40a 1559 error_setg(errp, "Image is too big");
2cf7cfa1
KW
1560 ret = -EFBIG;
1561 goto fail;
1562 }
1563 s->l1_vm_state_index = l1_vm_state_index;
1564
585f8587
FB
1565 /* the L1 table must contain at least enough entries to put
1566 header.size bytes */
6d85a57e 1567 if (s->l1_size < s->l1_vm_state_index) {
3ef6c40a 1568 error_setg(errp, "L1 table is too small");
6d85a57e 1569 ret = -EINVAL;
585f8587 1570 goto fail;
6d85a57e 1571 }
2d51c32c 1572
d191d12d 1573 if (s->l1_size > 0) {
02b1ecfa 1574 s->l1_table = qemu_try_blockalign(bs->file->bs, s->l1_size * L1E_SIZE);
de82815d
KW
1575 if (s->l1_table == NULL) {
1576 error_setg(errp, "Could not allocate L1 table");
1577 ret = -ENOMEM;
1578 goto fail;
1579 }
cf2ab8fc 1580 ret = bdrv_pread(bs->file, s->l1_table_offset, s->l1_table,
02b1ecfa 1581 s->l1_size * L1E_SIZE);
6d85a57e 1582 if (ret < 0) {
3ef6c40a 1583 error_setg_errno(errp, -ret, "Could not read L1 table");
d191d12d 1584 goto fail;
6d85a57e 1585 }
d191d12d 1586 for(i = 0;i < s->l1_size; i++) {
3b698f52 1587 s->l1_table[i] = be64_to_cpu(s->l1_table[i]);
d191d12d 1588 }
585f8587 1589 }
29c1a730 1590
94edf3fb
KW
1591 /* Parse driver-specific options */
1592 ret = qcow2_update_options(bs, options, flags, errp);
90efa0ea
KW
1593 if (ret < 0) {
1594 goto fail;
1595 }
1596
06d9260f 1597 s->flags = flags;
3b46e624 1598
6d85a57e
JS
1599 ret = qcow2_refcount_init(bs);
1600 if (ret != 0) {
3ef6c40a 1601 error_setg_errno(errp, -ret, "Could not initialize refcount handling");
585f8587 1602 goto fail;
6d85a57e 1603 }
585f8587 1604
72cf2d4f 1605 QLIST_INIT(&s->cluster_allocs);
0b919fae 1606 QTAILQ_INIT(&s->discards);
f214978a 1607
9b80ddf3 1608 /* read qcow2 extensions */
3ef6c40a 1609 if (qcow2_read_extensions(bs, header.header_length, ext_end, NULL,
af175e85 1610 flags, &update_header, errp)) {
6d85a57e 1611 ret = -EINVAL;
9b80ddf3 1612 goto fail;
6d85a57e 1613 }
9b80ddf3 1614
0e8c08be 1615 /* Open external data file */
8b1869da
HR
1616 s->data_file = bdrv_open_child(NULL, options, "data-file", bs,
1617 &child_of_bds, BDRV_CHILD_DATA,
bc520249
VSO
1618 true, errp);
1619 if (*errp) {
0e8c08be
KW
1620 ret = -EINVAL;
1621 goto fail;
1622 }
1623
1624 if (s->incompatible_features & QCOW2_INCOMPAT_DATA_FILE) {
9b890bdc
KW
1625 if (!s->data_file && s->image_data_file) {
1626 s->data_file = bdrv_open_child(s->image_data_file, options,
8b1869da
HR
1627 "data-file", bs, &child_of_bds,
1628 BDRV_CHILD_DATA, false, errp);
9b890bdc
KW
1629 if (!s->data_file) {
1630 ret = -EINVAL;
1631 goto fail;
1632 }
1633 }
0e8c08be
KW
1634 if (!s->data_file) {
1635 error_setg(errp, "'data-file' is required for this image");
1636 ret = -EINVAL;
1637 goto fail;
1638 }
8b1869da
HR
1639
1640 /* No data here */
1641 bs->file->role &= ~BDRV_CHILD_DATA;
1642
1643 /* Must succeed because we have given up permissions if anything */
1644 bdrv_child_refresh_perms(bs, bs->file, &error_abort);
0e8c08be
KW
1645 } else {
1646 if (s->data_file) {
1647 error_setg(errp, "'data-file' can only be set for images with an "
1648 "external data file");
1649 ret = -EINVAL;
1650 goto fail;
6c3944dc
KW
1651 }
1652
1653 s->data_file = bs->file;
1654
1655 if (data_file_is_raw(bs)) {
1656 error_setg(errp, "data-file-raw requires a data file");
1657 ret = -EINVAL;
1658 goto fail;
0e8c08be
KW
1659 }
1660 }
93c24936 1661
4652b8f3
DB
1662 /* qcow2_read_extension may have set up the crypto context
1663 * if the crypt method needs a header region, some methods
1664 * don't need header extensions, so must check here
1665 */
1666 if (s->crypt_method_header && !s->crypto) {
1667 if (s->crypt_method_header == QCOW_CRYPT_AES) {
1668 unsigned int cflags = 0;
1669 if (flags & BDRV_O_NO_IO) {
1670 cflags |= QCRYPTO_BLOCK_OPEN_NO_IO;
1671 }
1cd9a787 1672 s->crypto = qcrypto_block_open(s->crypto_opts, "encrypt.",
8ac0f15f
VSO
1673 NULL, NULL, cflags,
1674 QCOW2_MAX_THREADS, errp);
4652b8f3
DB
1675 if (!s->crypto) {
1676 ret = -EINVAL;
1677 goto fail;
1678 }
1679 } else if (!(flags & BDRV_O_NO_IO)) {
1680 error_setg(errp, "Missing CRYPTO header for crypt method %d",
1681 s->crypt_method_header);
b25b387f
DB
1682 ret = -EINVAL;
1683 goto fail;
1684 }
1685 }
1686
585f8587
FB
1687 /* read the backing file name */
1688 if (header.backing_file_offset != 0) {
1689 len = header.backing_file_size;
9a29e18f 1690 if (len > MIN(1023, s->cluster_size - header.backing_file_offset) ||
e729fa6a 1691 len >= sizeof(bs->backing_file)) {
6d33e8e7
KW
1692 error_setg(errp, "Backing file name too long");
1693 ret = -EINVAL;
1694 goto fail;
6d85a57e 1695 }
cf2ab8fc 1696 ret = bdrv_pread(bs->file, header.backing_file_offset,
998c2019 1697 bs->auto_backing_file, len);
6d85a57e 1698 if (ret < 0) {
3ef6c40a 1699 error_setg_errno(errp, -ret, "Could not read backing file name");
585f8587 1700 goto fail;
6d85a57e 1701 }
998c2019
HR
1702 bs->auto_backing_file[len] = '\0';
1703 pstrcpy(bs->backing_file, sizeof(bs->backing_file),
1704 bs->auto_backing_file);
1705 s->image_backing_file = g_strdup(bs->auto_backing_file);
585f8587 1706 }
42deb29f 1707
8bc584fe
HR
1708 /*
1709 * Internal snapshots; skip reading them in check mode, because
1710 * we do not need them then, and we do not want to abort because
1711 * of a broken table.
1712 */
1713 if (!(flags & BDRV_O_CHECK)) {
1714 s->snapshots_offset = header.snapshots_offset;
1715 s->nb_snapshots = header.nb_snapshots;
11b128f4 1716
8bc584fe
HR
1717 ret = qcow2_read_snapshots(bs, errp);
1718 if (ret < 0) {
1719 goto fail;
1720 }
6d85a57e 1721 }
585f8587 1722
af7b708d 1723 /* Clear unknown autoclear feature bits */
88ddffae 1724 update_header |= s->autoclear_features & ~QCOW2_AUTOCLEAR_MASK;
d1258dd0
VSO
1725 update_header =
1726 update_header && !bs->read_only && !(flags & BDRV_O_INACTIVE);
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 */
04c01a5c 1813 if (!(flags & (BDRV_O_CHECK | BDRV_O_INACTIVE)) && !bs->read_only &&
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 }
3505
dcc98687
KW
3506 if (qcow2_opts->data_file) {
3507 if (version < 3) {
3508 error_setg(errp, "External data files are only supported with "
3509 "compatibility level 1.1 and above (use version=v3 or "
3510 "greater)");
3511 ret = -EINVAL;
3512 goto out;
3513 }
3514 data_bs = bdrv_open_blockdev_ref(qcow2_opts->data_file, errp);
a0cf8363 3515 if (data_bs == NULL) {
dcc98687
KW
3516 ret = -EIO;
3517 goto out;
3518 }
3519 }
29ca9e45 3520
572ad978
DP
3521 if (qcow2_opts->has_compression_type &&
3522 qcow2_opts->compression_type != QCOW2_COMPRESSION_TYPE_ZLIB) {
3523
3524 ret = -EINVAL;
3525
3526 if (version < 3) {
3527 error_setg(errp, "Non-zlib compression type is only supported with "
3528 "compatibility level 1.1 and above (use version=v3 or "
3529 "greater)");
3530 goto out;
3531 }
3532
3533 switch (qcow2_opts->compression_type) {
d298ac10
DP
3534#ifdef CONFIG_ZSTD
3535 case QCOW2_COMPRESSION_TYPE_ZSTD:
3536 break;
3537#endif
572ad978
DP
3538 default:
3539 error_setg(errp, "Unknown compression type");
3540 goto out;
3541 }
3542
3543 compression_type = qcow2_opts->compression_type;
3544 }
3545
29ca9e45 3546 /* Create BlockBackend to write to the image */
a3aeeab5
EB
3547 blk = blk_new_with_bs(bs, BLK_PERM_WRITE | BLK_PERM_RESIZE, BLK_PERM_ALL,
3548 errp);
3549 if (!blk) {
3550 ret = -EPERM;
cbf2b7c4 3551 goto out;
a9420734 3552 }
23588797
KW
3553 blk_set_allow_write_beyond_eof(blk, true);
3554
a9420734 3555 /* Write the header */
f8413b3c
KW
3556 QEMU_BUILD_BUG_ON((1 << MIN_CLUSTER_BITS) < sizeof(*header));
3557 header = g_malloc0(cluster_size);
3558 *header = (QCowHeader) {
3559 .magic = cpu_to_be32(QCOW_MAGIC),
3560 .version = cpu_to_be32(version),
0eb4a8c1 3561 .cluster_bits = cpu_to_be32(ctz32(cluster_size)),
f8413b3c
KW
3562 .size = cpu_to_be64(0),
3563 .l1_table_offset = cpu_to_be64(0),
3564 .l1_size = cpu_to_be32(0),
3565 .refcount_table_offset = cpu_to_be64(cluster_size),
3566 .refcount_table_clusters = cpu_to_be32(1),
bd4b167f 3567 .refcount_order = cpu_to_be32(refcount_order),
572ad978
DP
3568 /* don't deal with endianness since compression_type is 1 byte long */
3569 .compression_type = compression_type,
f8413b3c
KW
3570 .header_length = cpu_to_be32(sizeof(*header)),
3571 };
a9420734 3572
b25b387f
DB
3573 /* We'll update this to correct value later */
3574 header->crypt_method = cpu_to_be32(QCOW_CRYPT_NONE);
a9420734 3575
29ca9e45 3576 if (qcow2_opts->lazy_refcounts) {
f8413b3c 3577 header->compatible_features |=
bfe8043e
SH
3578 cpu_to_be64(QCOW2_COMPAT_LAZY_REFCOUNTS);
3579 }
dcc98687
KW
3580 if (data_bs) {
3581 header->incompatible_features |=
3582 cpu_to_be64(QCOW2_INCOMPAT_DATA_FILE);
3583 }
6c3944dc
KW
3584 if (qcow2_opts->data_file_raw) {
3585 header->autoclear_features |=
3586 cpu_to_be64(QCOW2_AUTOCLEAR_DATA_FILE_RAW);
3587 }
572ad978
DP
3588 if (compression_type != QCOW2_COMPRESSION_TYPE_ZLIB) {
3589 header->incompatible_features |=
3590 cpu_to_be64(QCOW2_INCOMPAT_COMPRESSION);
3591 }
bfe8043e 3592
7be20252
AG
3593 if (qcow2_opts->extended_l2) {
3594 header->incompatible_features |=
3595 cpu_to_be64(QCOW2_INCOMPAT_EXTL2);
3596 }
3597
8341f00d 3598 ret = blk_pwrite(blk, 0, header, cluster_size, 0);
f8413b3c 3599 g_free(header);
a9420734 3600 if (ret < 0) {
3ef6c40a 3601 error_setg_errno(errp, -ret, "Could not write qcow2 header");
a9420734
KW
3602 goto out;
3603 }
3604
b106ad91
KW
3605 /* Write a refcount table with one refcount block */
3606 refcount_table = g_malloc0(2 * cluster_size);
3607 refcount_table[0] = cpu_to_be64(2 * cluster_size);
8341f00d 3608 ret = blk_pwrite(blk, cluster_size, refcount_table, 2 * cluster_size, 0);
7267c094 3609 g_free(refcount_table);
a9420734
KW
3610
3611 if (ret < 0) {
3ef6c40a 3612 error_setg_errno(errp, -ret, "Could not write refcount table");
a9420734
KW
3613 goto out;
3614 }
3615
23588797
KW
3616 blk_unref(blk);
3617 blk = NULL;
a9420734
KW
3618
3619 /*
3620 * And now open the image and make it consistent first (i.e. increase the
3621 * refcount of the cluster that is occupied by the header and the refcount
3622 * table)
3623 */
e6641719 3624 options = qdict_new();
46f5ac20 3625 qdict_put_str(options, "driver", "qcow2");
cbf2b7c4 3626 qdict_put_str(options, "file", bs->node_name);
dcc98687
KW
3627 if (data_bs) {
3628 qdict_put_str(options, "data-file", data_bs->node_name);
3629 }
cbf2b7c4 3630 blk = blk_new_open(NULL, NULL, options,
55880601 3631 BDRV_O_RDWR | BDRV_O_RESIZE | BDRV_O_NO_FLUSH,
af175e85 3632 errp);
23588797 3633 if (blk == NULL) {
23588797 3634 ret = -EIO;
a9420734
KW
3635 goto out;
3636 }
3637
23588797 3638 ret = qcow2_alloc_clusters(blk_bs(blk), 3 * cluster_size);
a9420734 3639 if (ret < 0) {
3ef6c40a
HR
3640 error_setg_errno(errp, -ret, "Could not allocate clusters for qcow2 "
3641 "header and refcount table");
a9420734
KW
3642 goto out;
3643
3644 } else if (ret != 0) {
3645 error_report("Huh, first cluster in empty image is already in use?");
3646 abort();
3647 }
3648
9b890bdc
KW
3649 /* Set the external data file if necessary */
3650 if (data_bs) {
3651 BDRVQcow2State *s = blk_bs(blk)->opaque;
3652 s->image_data_file = g_strdup(data_bs->filename);
3653 }
3654
b527c9b3 3655 /* Create a full header (including things like feature table) */
23588797 3656 ret = qcow2_update_header(blk_bs(blk));
b527c9b3
KW
3657 if (ret < 0) {
3658 error_setg_errno(errp, -ret, "Could not update qcow2 header");
3659 goto out;
3660 }
3661
a9420734 3662 /* Okay, now that we have a valid image, let's give it the right size */
c80d8b06 3663 ret = blk_truncate(blk, qcow2_opts->size, false, qcow2_opts->preallocation,
8c6242b6 3664 0, errp);
a9420734 3665 if (ret < 0) {
ed3d2ec9 3666 error_prepend(errp, "Could not resize image: ");
a9420734
KW
3667 goto out;
3668 }
3669
a951a631 3670 /* Want a backing file? There you go. */
29ca9e45
KW
3671 if (qcow2_opts->has_backing_file) {
3672 const char *backing_format = NULL;
3673
3674 if (qcow2_opts->has_backing_fmt) {
3675 backing_format = BlockdevDriver_str(qcow2_opts->backing_fmt);
3676 }
3677
3678 ret = bdrv_change_backing_file(blk_bs(blk), qcow2_opts->backing_file,
e54ee1b3 3679 backing_format, false);
a9420734 3680 if (ret < 0) {
3ef6c40a 3681 error_setg_errno(errp, -ret, "Could not assign backing file '%s' "
29ca9e45
KW
3682 "with format '%s'", qcow2_opts->backing_file,
3683 backing_format);
a9420734
KW
3684 goto out;
3685 }
3686 }
3687
b25b387f 3688 /* Want encryption? There you go. */
60900b7b
KW
3689 if (qcow2_opts->has_encrypt) {
3690 ret = qcow2_set_up_encryption(blk_bs(blk), qcow2_opts->encrypt, errp);
b25b387f
DB
3691 if (ret < 0) {
3692 goto out;
3693 }
3694 }
3695
23588797
KW
3696 blk_unref(blk);
3697 blk = NULL;
ba2ab2f2 3698
b25b387f
DB
3699 /* Reopen the image without BDRV_O_NO_FLUSH to flush it before returning.
3700 * Using BDRV_O_NO_IO, since encryption is now setup we don't want to
3701 * have to setup decryption context. We're not doing any I/O on the top
3702 * level BlockDriverState, only lower layers, where BDRV_O_NO_IO does
3703 * not have effect.
3704 */
e6641719 3705 options = qdict_new();
46f5ac20 3706 qdict_put_str(options, "driver", "qcow2");
cbf2b7c4 3707 qdict_put_str(options, "file", bs->node_name);
dcc98687
KW
3708 if (data_bs) {
3709 qdict_put_str(options, "data-file", data_bs->node_name);
3710 }
cbf2b7c4 3711 blk = blk_new_open(NULL, NULL, options,
b25b387f 3712 BDRV_O_RDWR | BDRV_O_NO_BACKING | BDRV_O_NO_IO,
af175e85 3713 errp);
23588797 3714 if (blk == NULL) {
23588797 3715 ret = -EIO;
ba2ab2f2
HR
3716 goto out;
3717 }
3718
a9420734
KW
3719 ret = 0;
3720out:
e1d74bc6
KW
3721 blk_unref(blk);
3722 bdrv_unref(bs);
dcc98687 3723 bdrv_unref(data_bs);
a9420734
KW
3724 return ret;
3725}
de5f3f40 3726
b92902df
ML
3727static int coroutine_fn qcow2_co_create_opts(BlockDriver *drv,
3728 const char *filename,
3729 QemuOpts *opts,
efc75e2a 3730 Error **errp)
de5f3f40 3731{
b76b4f60 3732 BlockdevCreateOptions *create_options = NULL;
92adf9db 3733 QDict *qdict;
b76b4f60 3734 Visitor *v;
cbf2b7c4 3735 BlockDriverState *bs = NULL;
9b890bdc 3736 BlockDriverState *data_bs = NULL;
b76b4f60 3737 const char *val;
3ef6c40a 3738 int ret;
de5f3f40 3739
b76b4f60
KW
3740 /* Only the keyval visitor supports the dotted syntax needed for
3741 * encryption, so go through a QDict before getting a QAPI type. Ignore
3742 * options meant for the protocol layer so that the visitor doesn't
3743 * complain. */
3744 qdict = qemu_opts_to_qdict_filtered(opts, NULL, bdrv_qcow2.create_opts,
3745 true);
3746
3747 /* Handle encryption options */
3748 val = qdict_get_try_str(qdict, BLOCK_OPT_ENCRYPT);
3749 if (val && !strcmp(val, "on")) {
3750 qdict_put_str(qdict, BLOCK_OPT_ENCRYPT, "qcow");
3751 } else if (val && !strcmp(val, "off")) {
3752 qdict_del(qdict, BLOCK_OPT_ENCRYPT);
3753 }
3754
3755 val = qdict_get_try_str(qdict, BLOCK_OPT_ENCRYPT_FORMAT);
3756 if (val && !strcmp(val, "aes")) {
3757 qdict_put_str(qdict, BLOCK_OPT_ENCRYPT_FORMAT, "qcow");
3758 }
3759
3760 /* Convert compat=0.10/1.1 into compat=v2/v3, to be renamed into
3761 * version=v2/v3 below. */
3762 val = qdict_get_try_str(qdict, BLOCK_OPT_COMPAT_LEVEL);
3763 if (val && !strcmp(val, "0.10")) {
3764 qdict_put_str(qdict, BLOCK_OPT_COMPAT_LEVEL, "v2");
3765 } else if (val && !strcmp(val, "1.1")) {
3766 qdict_put_str(qdict, BLOCK_OPT_COMPAT_LEVEL, "v3");
3767 }
3768
3769 /* Change legacy command line options into QMP ones */
3770 static const QDictRenames opt_renames[] = {
3771 { BLOCK_OPT_BACKING_FILE, "backing-file" },
3772 { BLOCK_OPT_BACKING_FMT, "backing-fmt" },
3773 { BLOCK_OPT_CLUSTER_SIZE, "cluster-size" },
3774 { BLOCK_OPT_LAZY_REFCOUNTS, "lazy-refcounts" },
7be20252 3775 { BLOCK_OPT_EXTL2, "extended-l2" },
b76b4f60
KW
3776 { BLOCK_OPT_REFCOUNT_BITS, "refcount-bits" },
3777 { BLOCK_OPT_ENCRYPT, BLOCK_OPT_ENCRYPT_FORMAT },
3778 { BLOCK_OPT_COMPAT_LEVEL, "version" },
6c3944dc 3779 { BLOCK_OPT_DATA_FILE_RAW, "data-file-raw" },
572ad978 3780 { BLOCK_OPT_COMPRESSION_TYPE, "compression-type" },
b76b4f60
KW
3781 { NULL, NULL },
3782 };
3783
3784 if (!qdict_rename_keys(qdict, opt_renames, errp)) {
29ca9e45
KW
3785 ret = -EINVAL;
3786 goto finish;
3787 }
60900b7b 3788
b76b4f60
KW
3789 /* Create and open the file (protocol layer) */
3790 ret = bdrv_create_file(filename, opts, errp);
3791 if (ret < 0) {
0eb4a8c1
SH
3792 goto finish;
3793 }
b76b4f60
KW
3794
3795 bs = bdrv_open(filename, NULL, NULL,
3796 BDRV_O_RDWR | BDRV_O_RESIZE | BDRV_O_PROTOCOL, errp);
3797 if (bs == NULL) {
3798 ret = -EIO;
1bd0e2d1
CL
3799 goto finish;
3800 }
0eb4a8c1 3801
9b890bdc
KW
3802 /* Create and open an external data file (protocol layer) */
3803 val = qdict_get_try_str(qdict, BLOCK_OPT_DATA_FILE);
3804 if (val) {
3805 ret = bdrv_create_file(val, opts, errp);
3806 if (ret < 0) {
3807 goto finish;
3808 }
3809
3810 data_bs = bdrv_open(val, NULL, NULL,
3811 BDRV_O_RDWR | BDRV_O_RESIZE | BDRV_O_PROTOCOL,
3812 errp);
3813 if (data_bs == NULL) {
3814 ret = -EIO;
3815 goto finish;
3816 }
3817
3818 qdict_del(qdict, BLOCK_OPT_DATA_FILE);
3819 qdict_put_str(qdict, "data-file", data_bs->node_name);
3820 }
3821
b76b4f60
KW
3822 /* Set 'driver' and 'node' options */
3823 qdict_put_str(qdict, "driver", "qcow2");
3824 qdict_put_str(qdict, "file", bs->node_name);
3825
3826 /* Now get the QAPI type BlockdevCreateOptions */
af91062e
MA
3827 v = qobject_input_visitor_new_flat_confused(qdict, errp);
3828 if (!v) {
1bd0e2d1
CL
3829 ret = -EINVAL;
3830 goto finish;
3831 }
3832
b11a093c 3833 visit_type_BlockdevCreateOptions(v, NULL, &create_options, errp);
b76b4f60 3834 visit_free(v);
b11a093c 3835 if (!create_options) {
bd4b167f
HR
3836 ret = -EINVAL;
3837 goto finish;
3838 }
3839
b76b4f60
KW
3840 /* Silently round up size */
3841 create_options->u.qcow2.size = ROUND_UP(create_options->u.qcow2.size,
3842 BDRV_SECTOR_SIZE);
cbf2b7c4
KW
3843
3844 /* Create the qcow2 image (format layer) */
b76b4f60 3845 ret = qcow2_co_create(create_options, errp);
6094cbeb 3846finish:
cbf2b7c4 3847 if (ret < 0) {
6094cbeb
ML
3848 bdrv_co_delete_file_noerr(bs);
3849 bdrv_co_delete_file_noerr(data_bs);
3850 } else {
3851 ret = 0;
cbf2b7c4 3852 }
1bd0e2d1 3853
cb3e7f08 3854 qobject_unref(qdict);
cbf2b7c4 3855 bdrv_unref(bs);
9b890bdc 3856 bdrv_unref(data_bs);
b76b4f60 3857 qapi_free_BlockdevCreateOptions(create_options);
3ef6c40a 3858 return ret;
de5f3f40
KW
3859}
3860
2928abce 3861
f06f6b66 3862static bool is_zero(BlockDriverState *bs, int64_t offset, int64_t bytes)
2928abce 3863{
31826642
EB
3864 int64_t nr;
3865 int res;
f06f6b66
EB
3866
3867 /* Clamp to image length, before checking status of underlying sectors */
8cbf74b2
EB
3868 if (offset + bytes > bs->total_sectors * BDRV_SECTOR_SIZE) {
3869 bytes = bs->total_sectors * BDRV_SECTOR_SIZE - offset;
fbaa6bb3
EB
3870 }
3871
f06f6b66 3872 if (!bytes) {
ebb718a5
EB
3873 return true;
3874 }
67c095c8
VSO
3875
3876 /*
3877 * bdrv_block_status_above doesn't merge different types of zeros, for
3878 * example, zeros which come from the region which is unallocated in
3879 * the whole backing chain, and zeros which come because of a short
3880 * backing file. So, we need a loop.
3881 */
3882 do {
3883 res = bdrv_block_status_above(bs, NULL, offset, bytes, &nr, NULL, NULL);
3884 offset += nr;
3885 bytes -= nr;
3886 } while (res >= 0 && (res & BDRV_BLOCK_ZERO) && nr && bytes);
3887
3888 return res >= 0 && (res & BDRV_BLOCK_ZERO) && bytes == 0;
2928abce
DL
3889}
3890
5544b59f 3891static coroutine_fn int qcow2_co_pwrite_zeroes(BlockDriverState *bs,
f5a5ca79 3892 int64_t offset, int bytes, BdrvRequestFlags flags)
621f0589
KW
3893{
3894 int ret;
ff99129a 3895 BDRVQcow2State *s = bs->opaque;
621f0589 3896
a6841a2d
AG
3897 uint32_t head = offset_into_subcluster(s, offset);
3898 uint32_t tail = ROUND_UP(offset + bytes, s->subcluster_size) -
3899 (offset + bytes);
2928abce 3900
f5a5ca79
MP
3901 trace_qcow2_pwrite_zeroes_start_req(qemu_coroutine_self(), offset, bytes);
3902 if (offset + bytes == bs->total_sectors * BDRV_SECTOR_SIZE) {
fbaa6bb3
EB
3903 tail = 0;
3904 }
5a64e942 3905
ebb718a5 3906 if (head || tail) {
ebb718a5 3907 uint64_t off;
ecfe1863 3908 unsigned int nr;
10dabdc5 3909 QCow2SubclusterType type;
2928abce 3910
a6841a2d 3911 assert(head + bytes + tail <= s->subcluster_size);
2928abce 3912
ebb718a5 3913 /* check whether remainder of cluster already reads as zero */
f06f6b66 3914 if (!(is_zero(bs, offset - head, head) &&
a6841a2d 3915 is_zero(bs, offset + bytes, tail))) {
2928abce
DL
3916 return -ENOTSUP;
3917 }
3918
2928abce
DL
3919 qemu_co_mutex_lock(&s->lock);
3920 /* We can have new write after previous check */
a6841a2d
AG
3921 offset -= head;
3922 bytes = s->subcluster_size;
3923 nr = s->subcluster_size;
ca4a0bb8
AG
3924 ret = qcow2_get_host_offset(bs, offset, &nr, &off, &type);
3925 if (ret < 0 ||
10dabdc5 3926 (type != QCOW2_SUBCLUSTER_UNALLOCATED_PLAIN &&
97490a14 3927 type != QCOW2_SUBCLUSTER_UNALLOCATED_ALLOC &&
10dabdc5
AG
3928 type != QCOW2_SUBCLUSTER_ZERO_PLAIN &&
3929 type != QCOW2_SUBCLUSTER_ZERO_ALLOC)) {
2928abce 3930 qemu_co_mutex_unlock(&s->lock);
580384d6 3931 return ret < 0 ? ret : -ENOTSUP;
2928abce
DL
3932 }
3933 } else {
3934 qemu_co_mutex_lock(&s->lock);
621f0589
KW
3935 }
3936
f5a5ca79 3937 trace_qcow2_pwrite_zeroes(qemu_coroutine_self(), offset, bytes);
5a64e942 3938
a6841a2d
AG
3939 /* Whatever is left can use real zero subclusters */
3940 ret = qcow2_subcluster_zeroize(bs, offset, bytes, flags);
621f0589
KW
3941 qemu_co_mutex_unlock(&s->lock);
3942
3943 return ret;
3944}
3945
82e8a788 3946static coroutine_fn int qcow2_co_pdiscard(BlockDriverState *bs,
f5a5ca79 3947 int64_t offset, int bytes)
5ea929e3 3948{
6db39ae2 3949 int ret;
ff99129a 3950 BDRVQcow2State *s = bs->opaque;
6db39ae2 3951
80f5c011
AG
3952 /* If the image does not support QCOW_OFLAG_ZERO then discarding
3953 * clusters could expose stale data from the backing file. */
3954 if (s->qcow_version < 3 && bs->backing) {
3955 return -ENOTSUP;
3956 }
3957
f5a5ca79
MP
3958 if (!QEMU_IS_ALIGNED(offset | bytes, s->cluster_size)) {
3959 assert(bytes < s->cluster_size);
048c5fd1
EB
3960 /* Ignore partial clusters, except for the special case of the
3961 * complete partial cluster at the end of an unaligned file */
3962 if (!QEMU_IS_ALIGNED(offset, s->cluster_size) ||
f5a5ca79 3963 offset + bytes != bs->total_sectors * BDRV_SECTOR_SIZE) {
048c5fd1
EB
3964 return -ENOTSUP;
3965 }
49228d1e
EB
3966 }
3967
6db39ae2 3968 qemu_co_mutex_lock(&s->lock);
f5a5ca79 3969 ret = qcow2_cluster_discard(bs, offset, bytes, QCOW2_DISCARD_REQUEST,
d2cb36af 3970 false);
6db39ae2
PB
3971 qemu_co_mutex_unlock(&s->lock);
3972 return ret;
5ea929e3
KW
3973}
3974
fd9fcd37
FZ
3975static int coroutine_fn
3976qcow2_co_copy_range_from(BlockDriverState *bs,
3977 BdrvChild *src, uint64_t src_offset,
3978 BdrvChild *dst, uint64_t dst_offset,
67b51fb9
VSO
3979 uint64_t bytes, BdrvRequestFlags read_flags,
3980 BdrvRequestFlags write_flags)
fd9fcd37
FZ
3981{
3982 BDRVQcow2State *s = bs->opaque;
3983 int ret;
3984 unsigned int cur_bytes; /* number of bytes in current iteration */
3985 BdrvChild *child = NULL;
67b51fb9 3986 BdrvRequestFlags cur_write_flags;
fd9fcd37
FZ
3987
3988 assert(!bs->encrypted);
3989 qemu_co_mutex_lock(&s->lock);
3990
3991 while (bytes != 0) {
3992 uint64_t copy_offset = 0;
10dabdc5 3993 QCow2SubclusterType type;
fd9fcd37
FZ
3994 /* prepare next request */
3995 cur_bytes = MIN(bytes, INT_MAX);
67b51fb9 3996 cur_write_flags = write_flags;
fd9fcd37 3997
ca4a0bb8
AG
3998 ret = qcow2_get_host_offset(bs, src_offset, &cur_bytes,
3999 &copy_offset, &type);
fd9fcd37
FZ
4000 if (ret < 0) {
4001 goto out;
4002 }
4003
ca4a0bb8 4004 switch (type) {
10dabdc5 4005 case QCOW2_SUBCLUSTER_UNALLOCATED_PLAIN:
97490a14 4006 case QCOW2_SUBCLUSTER_UNALLOCATED_ALLOC:
fd9fcd37
FZ
4007 if (bs->backing && bs->backing->bs) {
4008 int64_t backing_length = bdrv_getlength(bs->backing->bs);
4009 if (src_offset >= backing_length) {
67b51fb9 4010 cur_write_flags |= BDRV_REQ_ZERO_WRITE;
fd9fcd37
FZ
4011 } else {
4012 child = bs->backing;
4013 cur_bytes = MIN(cur_bytes, backing_length - src_offset);
4014 copy_offset = src_offset;
4015 }
4016 } else {
67b51fb9 4017 cur_write_flags |= BDRV_REQ_ZERO_WRITE;
fd9fcd37
FZ
4018 }
4019 break;
4020
10dabdc5
AG
4021 case QCOW2_SUBCLUSTER_ZERO_PLAIN:
4022 case QCOW2_SUBCLUSTER_ZERO_ALLOC:
67b51fb9 4023 cur_write_flags |= BDRV_REQ_ZERO_WRITE;
fd9fcd37
FZ
4024 break;
4025
10dabdc5 4026 case QCOW2_SUBCLUSTER_COMPRESSED:
fd9fcd37
FZ
4027 ret = -ENOTSUP;
4028 goto out;
fd9fcd37 4029
10dabdc5 4030 case QCOW2_SUBCLUSTER_NORMAL:
966b000f 4031 child = s->data_file;
fd9fcd37
FZ
4032 break;
4033
4034 default:
4035 abort();
4036 }
4037 qemu_co_mutex_unlock(&s->lock);
4038 ret = bdrv_co_copy_range_from(child,
4039 copy_offset,
4040 dst, dst_offset,
67b51fb9 4041 cur_bytes, read_flags, cur_write_flags);
fd9fcd37
FZ
4042 qemu_co_mutex_lock(&s->lock);
4043 if (ret < 0) {
4044 goto out;
4045 }
4046
4047 bytes -= cur_bytes;
4048 src_offset += cur_bytes;
4049 dst_offset += cur_bytes;
4050 }
4051 ret = 0;
4052
4053out:
4054 qemu_co_mutex_unlock(&s->lock);
4055 return ret;
4056}
4057
4058static int coroutine_fn
4059qcow2_co_copy_range_to(BlockDriverState *bs,
4060 BdrvChild *src, uint64_t src_offset,
4061 BdrvChild *dst, uint64_t dst_offset,
67b51fb9
VSO
4062 uint64_t bytes, BdrvRequestFlags read_flags,
4063 BdrvRequestFlags write_flags)
fd9fcd37
FZ
4064{
4065 BDRVQcow2State *s = bs->opaque;
fd9fcd37
FZ
4066 int ret;
4067 unsigned int cur_bytes; /* number of sectors in current iteration */
bfd0989a 4068 uint64_t host_offset;
fd9fcd37
FZ
4069 QCowL2Meta *l2meta = NULL;
4070
4071 assert(!bs->encrypted);
fd9fcd37
FZ
4072
4073 qemu_co_mutex_lock(&s->lock);
4074
4075 while (bytes != 0) {
4076
4077 l2meta = NULL;
4078
fd9fcd37
FZ
4079 cur_bytes = MIN(bytes, INT_MAX);
4080
4081 /* TODO:
4082 * If src->bs == dst->bs, we could simply copy by incrementing
4083 * the refcnt, without copying user data.
4084 * Or if src->bs == dst->bs->backing->bs, we could copy by discarding. */
bfd0989a
AG
4085 ret = qcow2_alloc_host_offset(bs, dst_offset, &cur_bytes,
4086 &host_offset, &l2meta);
fd9fcd37
FZ
4087 if (ret < 0) {
4088 goto fail;
4089 }
4090
bfd0989a
AG
4091 ret = qcow2_pre_write_overlap_check(bs, 0, host_offset, cur_bytes,
4092 true);
fd9fcd37
FZ
4093 if (ret < 0) {
4094 goto fail;
4095 }
4096
4097 qemu_co_mutex_unlock(&s->lock);
bfd0989a 4098 ret = bdrv_co_copy_range_to(src, src_offset, s->data_file, host_offset,
67b51fb9 4099 cur_bytes, read_flags, write_flags);
fd9fcd37
FZ
4100 qemu_co_mutex_lock(&s->lock);
4101 if (ret < 0) {
4102 goto fail;
4103 }
4104
4105 ret = qcow2_handle_l2meta(bs, &l2meta, true);
4106 if (ret) {
4107 goto fail;
4108 }
4109
4110 bytes -= cur_bytes;
e06f4639 4111 src_offset += cur_bytes;
fd9fcd37
FZ
4112 dst_offset += cur_bytes;
4113 }
4114 ret = 0;
4115
4116fail:
4117 qcow2_handle_l2meta(bs, &l2meta, false);
4118
4119 qemu_co_mutex_unlock(&s->lock);
4120
fd9fcd37
FZ
4121 trace_qcow2_writev_done_req(qemu_coroutine_self(), ret);
4122
4123 return ret;
4124}
4125
061ca8a3 4126static int coroutine_fn qcow2_co_truncate(BlockDriverState *bs, int64_t offset,
c80d8b06 4127 bool exact, PreallocMode prealloc,
92b92799 4128 BdrvRequestFlags flags, Error **errp)
419b19d9 4129{
ff99129a 4130 BDRVQcow2State *s = bs->opaque;
95b98f34 4131 uint64_t old_length;
2cf7cfa1
KW
4132 int64_t new_l1_size;
4133 int ret;
45b4949c 4134 QDict *options;
419b19d9 4135
772d1f97
HR
4136 if (prealloc != PREALLOC_MODE_OFF && prealloc != PREALLOC_MODE_METADATA &&
4137 prealloc != PREALLOC_MODE_FALLOC && prealloc != PREALLOC_MODE_FULL)
4138 {
8243ccb7 4139 error_setg(errp, "Unsupported preallocation mode '%s'",
977c736f 4140 PreallocMode_str(prealloc));
8243ccb7
HR
4141 return -ENOTSUP;
4142 }
4143
3afea402
AG
4144 if (!QEMU_IS_ALIGNED(offset, BDRV_SECTOR_SIZE)) {
4145 error_setg(errp, "The new size must be a multiple of %u",
4146 (unsigned) BDRV_SECTOR_SIZE);
419b19d9
SH
4147 return -EINVAL;
4148 }
4149
061ca8a3
KW
4150 qemu_co_mutex_lock(&s->lock);
4151
7fa140ab
EB
4152 /*
4153 * Even though we store snapshot size for all images, it was not
4154 * required until v3, so it is not safe to proceed for v2.
4155 */
4156 if (s->nb_snapshots && s->qcow_version < 3) {
4157 error_setg(errp, "Can't resize a v2 image which has snapshots");
061ca8a3
KW
4158 ret = -ENOTSUP;
4159 goto fail;
419b19d9
SH
4160 }
4161
ee1244a2 4162 /* See qcow2-bitmap.c for which bitmap scenarios prevent a resize. */
d19c6b36 4163 if (qcow2_truncate_bitmaps_check(bs, errp)) {
061ca8a3
KW
4164 ret = -ENOTSUP;
4165 goto fail;
88ddffae
VSO
4166 }
4167
bd016b91 4168 old_length = bs->total_sectors * BDRV_SECTOR_SIZE;
46b732cd 4169 new_l1_size = size_to_l1(s, offset);
95b98f34 4170
95b98f34 4171 if (offset < old_length) {
163bc39d 4172 int64_t last_cluster, old_file_size;
46b732cd
PB
4173 if (prealloc != PREALLOC_MODE_OFF) {
4174 error_setg(errp,
4175 "Preallocation can't be used for shrinking an image");
061ca8a3
KW
4176 ret = -EINVAL;
4177 goto fail;
46b732cd 4178 }
419b19d9 4179
46b732cd
PB
4180 ret = qcow2_cluster_discard(bs, ROUND_UP(offset, s->cluster_size),
4181 old_length - ROUND_UP(offset,
4182 s->cluster_size),
4183 QCOW2_DISCARD_ALWAYS, true);
4184 if (ret < 0) {
4185 error_setg_errno(errp, -ret, "Failed to discard cropped clusters");
061ca8a3 4186 goto fail;
46b732cd
PB
4187 }
4188
4189 ret = qcow2_shrink_l1_table(bs, new_l1_size);
4190 if (ret < 0) {
4191 error_setg_errno(errp, -ret,
4192 "Failed to reduce the number of L2 tables");
061ca8a3 4193 goto fail;
46b732cd
PB
4194 }
4195
4196 ret = qcow2_shrink_reftable(bs);
4197 if (ret < 0) {
4198 error_setg_errno(errp, -ret,
4199 "Failed to discard unused refblocks");
061ca8a3 4200 goto fail;
46b732cd 4201 }
163bc39d
PB
4202
4203 old_file_size = bdrv_getlength(bs->file->bs);
4204 if (old_file_size < 0) {
4205 error_setg_errno(errp, -old_file_size,
4206 "Failed to inquire current file length");
061ca8a3
KW
4207 ret = old_file_size;
4208 goto fail;
163bc39d
PB
4209 }
4210 last_cluster = qcow2_get_last_cluster(bs, old_file_size);
4211 if (last_cluster < 0) {
4212 error_setg_errno(errp, -last_cluster,
4213 "Failed to find the last cluster");
061ca8a3
KW
4214 ret = last_cluster;
4215 goto fail;
163bc39d
PB
4216 }
4217 if ((last_cluster + 1) * s->cluster_size < old_file_size) {
233521b1
HR
4218 Error *local_err = NULL;
4219
e61a28a9
HR
4220 /*
4221 * Do not pass @exact here: It will not help the user if
4222 * we get an error here just because they wanted to shrink
4223 * their qcow2 image (on a block device) with qemu-img.
4224 * (And on the qcow2 layer, the @exact requirement is
4225 * always fulfilled, so there is no need to pass it on.)
4226 */
061ca8a3 4227 bdrv_co_truncate(bs->file, (last_cluster + 1) * s->cluster_size,
7b8e4857 4228 false, PREALLOC_MODE_OFF, 0, &local_err);
233521b1
HR
4229 if (local_err) {
4230 warn_reportf_err(local_err,
4231 "Failed to truncate the tail of the image: ");
163bc39d
PB
4232 }
4233 }
46b732cd
PB
4234 } else {
4235 ret = qcow2_grow_l1_table(bs, new_l1_size, true);
4236 if (ret < 0) {
4237 error_setg_errno(errp, -ret, "Failed to grow the L1 table");
061ca8a3 4238 goto fail;
46b732cd 4239 }
419b19d9
SH
4240 }
4241
95b98f34
HR
4242 switch (prealloc) {
4243 case PREALLOC_MODE_OFF:
718c0fce 4244 if (has_data_file(bs)) {
e61a28a9
HR
4245 /*
4246 * If the caller wants an exact resize, the external data
4247 * file should be resized to the exact target size, too,
4248 * so we pass @exact here.
4249 */
7b8e4857
KW
4250 ret = bdrv_co_truncate(s->data_file, offset, exact, prealloc, 0,
4251 errp);
718c0fce
KW
4252 if (ret < 0) {
4253 goto fail;
4254 }
4255 }
95b98f34
HR
4256 break;
4257
4258 case PREALLOC_MODE_METADATA:
718c0fce 4259 ret = preallocate_co(bs, old_length, offset, prealloc, errp);
95b98f34 4260 if (ret < 0) {
061ca8a3 4261 goto fail;
95b98f34
HR
4262 }
4263 break;
4264
772d1f97
HR
4265 case PREALLOC_MODE_FALLOC:
4266 case PREALLOC_MODE_FULL:
4267 {
4268 int64_t allocation_start, host_offset, guest_offset;
4269 int64_t clusters_allocated;
4b96fa38 4270 int64_t old_file_size, last_cluster, new_file_size;
772d1f97 4271 uint64_t nb_new_data_clusters, nb_new_l2_tables;
40dee943 4272 bool subclusters_need_allocation = false;
772d1f97 4273
966b000f
KW
4274 /* With a data file, preallocation means just allocating the metadata
4275 * and forwarding the truncate request to the data file */
4276 if (has_data_file(bs)) {
718c0fce 4277 ret = preallocate_co(bs, old_length, offset, prealloc, errp);
966b000f 4278 if (ret < 0) {
966b000f
KW
4279 goto fail;
4280 }
4281 break;
4282 }
4283
772d1f97
HR
4284 old_file_size = bdrv_getlength(bs->file->bs);
4285 if (old_file_size < 0) {
4286 error_setg_errno(errp, -old_file_size,
4287 "Failed to inquire current file length");
061ca8a3
KW
4288 ret = old_file_size;
4289 goto fail;
772d1f97 4290 }
4b96fa38
HR
4291
4292 last_cluster = qcow2_get_last_cluster(bs, old_file_size);
4293 if (last_cluster >= 0) {
4294 old_file_size = (last_cluster + 1) * s->cluster_size;
4295 } else {
4296 old_file_size = ROUND_UP(old_file_size, s->cluster_size);
4297 }
772d1f97 4298
a5675f39
AG
4299 nb_new_data_clusters = (ROUND_UP(offset, s->cluster_size) -
4300 start_of_cluster(s, old_length)) >> s->cluster_bits;
772d1f97
HR
4301
4302 /* This is an overestimation; we will not actually allocate space for
4303 * these in the file but just make sure the new refcount structures are
4304 * able to cover them so we will not have to allocate new refblocks
4305 * while entering the data blocks in the potentially new L2 tables.
4306 * (We do not actually care where the L2 tables are placed. Maybe they
4307 * are already allocated or they can be placed somewhere before
4308 * @old_file_size. It does not matter because they will be fully
4309 * allocated automatically, so they do not need to be covered by the
4310 * preallocation. All that matters is that we will not have to allocate
4311 * new refcount structures for them.) */
4312 nb_new_l2_tables = DIV_ROUND_UP(nb_new_data_clusters,
c8fd8554 4313 s->cluster_size / l2_entry_size(s));
772d1f97
HR
4314 /* The cluster range may not be aligned to L2 boundaries, so add one L2
4315 * table for a potential head/tail */
4316 nb_new_l2_tables++;
4317
4318 allocation_start = qcow2_refcount_area(bs, old_file_size,
4319 nb_new_data_clusters +
4320 nb_new_l2_tables,
4321 true, 0, 0);
4322 if (allocation_start < 0) {
4323 error_setg_errno(errp, -allocation_start,
4324 "Failed to resize refcount structures");
061ca8a3
KW
4325 ret = allocation_start;
4326 goto fail;
772d1f97
HR
4327 }
4328
4329 clusters_allocated = qcow2_alloc_clusters_at(bs, allocation_start,
4330 nb_new_data_clusters);
4331 if (clusters_allocated < 0) {
4332 error_setg_errno(errp, -clusters_allocated,
4333 "Failed to allocate data clusters");
061ca8a3
KW
4334 ret = clusters_allocated;
4335 goto fail;
772d1f97
HR
4336 }
4337
4338 assert(clusters_allocated == nb_new_data_clusters);
4339
4340 /* Allocate the data area */
4341 new_file_size = allocation_start +
4342 nb_new_data_clusters * s->cluster_size;
eb8a0cf3
KW
4343 /*
4344 * Image file grows, so @exact does not matter.
4345 *
4346 * If we need to zero out the new area, try first whether the protocol
4347 * driver can already take care of this.
4348 */
4349 if (flags & BDRV_REQ_ZERO_WRITE) {
4350 ret = bdrv_co_truncate(bs->file, new_file_size, false, prealloc,
4351 BDRV_REQ_ZERO_WRITE, NULL);
4352 if (ret >= 0) {
4353 flags &= ~BDRV_REQ_ZERO_WRITE;
40dee943
AG
4354 /* Ensure that we read zeroes and not backing file data */
4355 subclusters_need_allocation = true;
eb8a0cf3
KW
4356 }
4357 } else {
4358 ret = -1;
4359 }
4360 if (ret < 0) {
4361 ret = bdrv_co_truncate(bs->file, new_file_size, false, prealloc, 0,
4362 errp);
4363 }
772d1f97
HR
4364 if (ret < 0) {
4365 error_prepend(errp, "Failed to resize underlying file: ");
4366 qcow2_free_clusters(bs, allocation_start,
4367 nb_new_data_clusters * s->cluster_size,
4368 QCOW2_DISCARD_OTHER);
061ca8a3 4369 goto fail;
772d1f97
HR
4370 }
4371
4372 /* Create the necessary L2 entries */
4373 host_offset = allocation_start;
4374 guest_offset = old_length;
4375 while (nb_new_data_clusters) {
13bec229
AG
4376 int64_t nb_clusters = MIN(
4377 nb_new_data_clusters,
4378 s->l2_slice_size - offset_to_l2_slice_index(s, guest_offset));
a5675f39
AG
4379 unsigned cow_start_length = offset_into_cluster(s, guest_offset);
4380 QCowL2Meta allocation;
4381 guest_offset = start_of_cluster(s, guest_offset);
4382 allocation = (QCowL2Meta) {
772d1f97
HR
4383 .offset = guest_offset,
4384 .alloc_offset = host_offset,
4385 .nb_clusters = nb_clusters,
a5675f39
AG
4386 .cow_start = {
4387 .offset = 0,
4388 .nb_bytes = cow_start_length,
4389 },
4390 .cow_end = {
4391 .offset = nb_clusters << s->cluster_bits,
4392 .nb_bytes = 0,
4393 },
40dee943 4394 .prealloc = !subclusters_need_allocation,
772d1f97
HR
4395 };
4396 qemu_co_queue_init(&allocation.dependent_requests);
4397
4398 ret = qcow2_alloc_cluster_link_l2(bs, &allocation);
4399 if (ret < 0) {
4400 error_setg_errno(errp, -ret, "Failed to update L2 tables");
4401 qcow2_free_clusters(bs, host_offset,
4402 nb_new_data_clusters * s->cluster_size,
4403 QCOW2_DISCARD_OTHER);
061ca8a3 4404 goto fail;
772d1f97
HR
4405 }
4406
4407 guest_offset += nb_clusters * s->cluster_size;
4408 host_offset += nb_clusters * s->cluster_size;
4409 nb_new_data_clusters -= nb_clusters;
4410 }
4411 break;
4412 }
4413
95b98f34
HR
4414 default:
4415 g_assert_not_reached();
4416 }
4417
f01643fb 4418 if ((flags & BDRV_REQ_ZERO_WRITE) && offset > old_length) {
a6841a2d 4419 uint64_t zero_start = QEMU_ALIGN_UP(old_length, s->subcluster_size);
f01643fb
KW
4420
4421 /*
a6841a2d
AG
4422 * Use zero clusters as much as we can. qcow2_subcluster_zeroize()
4423 * requires a subcluster-aligned start. The end may be unaligned if
4424 * it is at the end of the image (which it is here).
f01643fb 4425 */
e4d7019e 4426 if (offset > zero_start) {
a6841a2d
AG
4427 ret = qcow2_subcluster_zeroize(bs, zero_start, offset - zero_start,
4428 0);
e4d7019e
AG
4429 if (ret < 0) {
4430 error_setg_errno(errp, -ret, "Failed to zero out new clusters");
4431 goto fail;
4432 }
f01643fb
KW
4433 }
4434
4435 /* Write explicit zeros for the unaligned head */
4436 if (zero_start > old_length) {
e4d7019e 4437 uint64_t len = MIN(zero_start, offset) - old_length;
f01643fb
KW
4438 uint8_t *buf = qemu_blockalign0(bs, len);
4439 QEMUIOVector qiov;
4440 qemu_iovec_init_buf(&qiov, buf, len);
4441
4442 qemu_co_mutex_unlock(&s->lock);
4443 ret = qcow2_co_pwritev_part(bs, old_length, len, &qiov, 0, 0);
4444 qemu_co_mutex_lock(&s->lock);
4445
4446 qemu_vfree(buf);
4447 if (ret < 0) {
4448 error_setg_errno(errp, -ret, "Failed to zero out the new area");
4449 goto fail;
4450 }
4451 }
4452 }
4453
95b98f34
HR
4454 if (prealloc != PREALLOC_MODE_OFF) {
4455 /* Flush metadata before actually changing the image size */
061ca8a3 4456 ret = qcow2_write_caches(bs);
95b98f34
HR
4457 if (ret < 0) {
4458 error_setg_errno(errp, -ret,
4459 "Failed to flush the preallocated area to disk");
061ca8a3 4460 goto fail;
95b98f34
HR
4461 }
4462 }
4463
45b4949c
LB
4464 bs->total_sectors = offset / BDRV_SECTOR_SIZE;
4465
419b19d9
SH
4466 /* write updated header.size */
4467 offset = cpu_to_be64(offset);
d9ca2ea2 4468 ret = bdrv_pwrite_sync(bs->file, offsetof(QCowHeader, size),
02b1ecfa 4469 &offset, sizeof(offset));
419b19d9 4470 if (ret < 0) {
f59adb32 4471 error_setg_errno(errp, -ret, "Failed to update the image size");
061ca8a3 4472 goto fail;
419b19d9
SH
4473 }
4474
4475 s->l1_vm_state_index = new_l1_size;
45b4949c
LB
4476
4477 /* Update cache sizes */
4478 options = qdict_clone_shallow(bs->options);
4479 ret = qcow2_update_options(bs, options, s->flags, errp);
4480 qobject_unref(options);
4481 if (ret < 0) {
4482 goto fail;
4483 }
061ca8a3
KW
4484 ret = 0;
4485fail:
4486 qemu_co_mutex_unlock(&s->lock);
4487 return ret;
419b19d9
SH
4488}
4489
fcccefc5 4490static coroutine_fn int
0d483dce 4491qcow2_co_pwritev_compressed_task(BlockDriverState *bs,
5396234b
VSO
4492 uint64_t offset, uint64_t bytes,
4493 QEMUIOVector *qiov, size_t qiov_offset)
20d97356 4494{
ff99129a 4495 BDRVQcow2State *s = bs->opaque;
2714f13d 4496 int ret;
e1f4a37a 4497 ssize_t out_len;
fcccefc5 4498 uint8_t *buf, *out_buf;
77e023ff 4499 uint64_t cluster_offset;
20d97356 4500
0d483dce
AS
4501 assert(bytes == s->cluster_size || (bytes < s->cluster_size &&
4502 (offset + bytes == bs->total_sectors << BDRV_SECTOR_BITS)));
3e3b838f 4503
a2c0ca6f 4504 buf = qemu_blockalign(bs, s->cluster_size);
0d483dce 4505 if (bytes < s->cluster_size) {
a2c0ca6f
PB
4506 /* Zero-pad last write if image size is not cluster aligned */
4507 memset(buf + bytes, 0, s->cluster_size - bytes);
f4d38bef 4508 }
5396234b 4509 qemu_iovec_to_buf(qiov, qiov_offset, buf, bytes);
20d97356 4510
ebf7bba0 4511 out_buf = g_malloc(s->cluster_size);
20d97356 4512
6994fd78
VSO
4513 out_len = qcow2_co_compress(bs, out_buf, s->cluster_size - 1,
4514 buf, s->cluster_size);
e1f4a37a 4515 if (out_len == -ENOMEM) {
20d97356 4516 /* could not compress: write normal cluster */
5396234b 4517 ret = qcow2_co_pwritev_part(bs, offset, bytes, qiov, qiov_offset, 0);
8f1efd00
KW
4518 if (ret < 0) {
4519 goto fail;
4520 }
fcccefc5 4521 goto success;
e1f4a37a
AG
4522 } else if (out_len < 0) {
4523 ret = -EINVAL;
4524 goto fail;
fcccefc5 4525 }
cf93980e 4526
fcccefc5 4527 qemu_co_mutex_lock(&s->lock);
77e023ff
KW
4528 ret = qcow2_alloc_compressed_cluster_offset(bs, offset, out_len,
4529 &cluster_offset);
4530 if (ret < 0) {
fcccefc5 4531 qemu_co_mutex_unlock(&s->lock);
fcccefc5
PB
4532 goto fail;
4533 }
cf93980e 4534
966b000f 4535 ret = qcow2_pre_write_overlap_check(bs, 0, cluster_offset, out_len, true);
fcccefc5
PB
4536 qemu_co_mutex_unlock(&s->lock);
4537 if (ret < 0) {
4538 goto fail;
20d97356
BS
4539 }
4540
966b000f 4541 BLKDBG_EVENT(s->data_file, BLKDBG_WRITE_COMPRESSED);
b00cb15b 4542 ret = bdrv_co_pwrite(s->data_file, cluster_offset, out_len, out_buf, 0);
fcccefc5
PB
4543 if (ret < 0) {
4544 goto fail;
4545 }
4546success:
8f1efd00
KW
4547 ret = 0;
4548fail:
fcccefc5 4549 qemu_vfree(buf);
7267c094 4550 g_free(out_buf);
8f1efd00 4551 return ret;
20d97356
BS
4552}
4553
0d483dce
AS
4554static coroutine_fn int qcow2_co_pwritev_compressed_task_entry(AioTask *task)
4555{
4556 Qcow2AioTask *t = container_of(task, Qcow2AioTask, task);
4557
10dabdc5 4558 assert(!t->subcluster_type && !t->l2meta);
0d483dce
AS
4559
4560 return qcow2_co_pwritev_compressed_task(t->bs, t->offset, t->bytes, t->qiov,
4561 t->qiov_offset);
4562}
4563
4564/*
4565 * XXX: put compressed sectors first, then all the cluster aligned
4566 * tables to avoid losing bytes in alignment
4567 */
4568static coroutine_fn int
4569qcow2_co_pwritev_compressed_part(BlockDriverState *bs,
4570 uint64_t offset, uint64_t bytes,
4571 QEMUIOVector *qiov, size_t qiov_offset)
4572{
4573 BDRVQcow2State *s = bs->opaque;
4574 AioTaskPool *aio = NULL;
4575 int ret = 0;
4576
4577 if (has_data_file(bs)) {
4578 return -ENOTSUP;
4579 }
4580
4581 if (bytes == 0) {
4582 /*
4583 * align end of file to a sector boundary to ease reading with
4584 * sector based I/Os
4585 */
4586 int64_t len = bdrv_getlength(bs->file->bs);
4587 if (len < 0) {
4588 return len;
4589 }
7b8e4857
KW
4590 return bdrv_co_truncate(bs->file, len, false, PREALLOC_MODE_OFF, 0,
4591 NULL);
0d483dce
AS
4592 }
4593
4594 if (offset_into_cluster(s, offset)) {
4595 return -EINVAL;
4596 }
4597
fb43d2d4
AG
4598 if (offset_into_cluster(s, bytes) &&
4599 (offset + bytes) != (bs->total_sectors << BDRV_SECTOR_BITS)) {
4600 return -EINVAL;
4601 }
4602
0d483dce
AS
4603 while (bytes && aio_task_pool_status(aio) == 0) {
4604 uint64_t chunk_size = MIN(bytes, s->cluster_size);
4605
4606 if (!aio && chunk_size != bytes) {
4607 aio = aio_task_pool_new(QCOW2_MAX_WORKERS);
4608 }
4609
4610 ret = qcow2_add_task(bs, aio, qcow2_co_pwritev_compressed_task_entry,
4611 0, 0, offset, chunk_size, qiov, qiov_offset, NULL);
4612 if (ret < 0) {
4613 break;
4614 }
4615 qiov_offset += chunk_size;
4616 offset += chunk_size;
4617 bytes -= chunk_size;
4618 }
4619
4620 if (aio) {
4621 aio_task_pool_wait_all(aio);
4622 if (ret == 0) {
4623 ret = aio_task_pool_status(aio);
4624 }
4625 g_free(aio);
4626 }
4627
4628 return ret;
4629}
4630
c3c10f72
VSO
4631static int coroutine_fn
4632qcow2_co_preadv_compressed(BlockDriverState *bs,
9c4269d5 4633 uint64_t cluster_descriptor,
c3c10f72
VSO
4634 uint64_t offset,
4635 uint64_t bytes,
df893d25
VSO
4636 QEMUIOVector *qiov,
4637 size_t qiov_offset)
f4b3e2a9
VSO
4638{
4639 BDRVQcow2State *s = bs->opaque;
c3c10f72 4640 int ret = 0, csize, nb_csectors;
f4b3e2a9 4641 uint64_t coffset;
c3c10f72 4642 uint8_t *buf, *out_buf;
c3c10f72 4643 int offset_in_cluster = offset_into_cluster(s, offset);
f4b3e2a9 4644
9c4269d5
AG
4645 coffset = cluster_descriptor & s->cluster_offset_mask;
4646 nb_csectors = ((cluster_descriptor >> s->csize_shift) & s->csize_mask) + 1;
b6c24694
AG
4647 csize = nb_csectors * QCOW2_COMPRESSED_SECTOR_SIZE -
4648 (coffset & ~QCOW2_COMPRESSED_SECTOR_MASK);
f4b3e2a9 4649
c3c10f72
VSO
4650 buf = g_try_malloc(csize);
4651 if (!buf) {
4652 return -ENOMEM;
4653 }
f4b3e2a9 4654
c3c10f72 4655 out_buf = qemu_blockalign(bs, s->cluster_size);
c068a1cd 4656
c3c10f72 4657 BLKDBG_EVENT(bs->file, BLKDBG_READ_COMPRESSED);
b00cb15b 4658 ret = bdrv_co_pread(bs->file, coffset, csize, buf, 0);
c3c10f72
VSO
4659 if (ret < 0) {
4660 goto fail;
f4b3e2a9 4661 }
c3c10f72 4662
e23c9d7a 4663 if (qcow2_co_decompress(bs, out_buf, s->cluster_size, buf, csize) < 0) {
c3c10f72
VSO
4664 ret = -EIO;
4665 goto fail;
4666 }
4667
df893d25 4668 qemu_iovec_from_buf(qiov, qiov_offset, out_buf + offset_in_cluster, bytes);
c3c10f72
VSO
4669
4670fail:
4671 qemu_vfree(out_buf);
4672 g_free(buf);
4673
4674 return ret;
f4b3e2a9
VSO
4675}
4676
94054183
HR
4677static int make_completely_empty(BlockDriverState *bs)
4678{
ff99129a 4679 BDRVQcow2State *s = bs->opaque;
ed3d2ec9 4680 Error *local_err = NULL;
94054183
HR
4681 int ret, l1_clusters;
4682 int64_t offset;
4683 uint64_t *new_reftable = NULL;
4684 uint64_t rt_entry, l1_size2;
4685 struct {
4686 uint64_t l1_offset;
4687 uint64_t reftable_offset;
4688 uint32_t reftable_clusters;
4689 } QEMU_PACKED l1_ofs_rt_ofs_cls;
4690
4691 ret = qcow2_cache_empty(bs, s->l2_table_cache);
4692 if (ret < 0) {
4693 goto fail;
4694 }
4695
4696 ret = qcow2_cache_empty(bs, s->refcount_block_cache);
4697 if (ret < 0) {
4698 goto fail;
4699 }
4700
4701 /* Refcounts will be broken utterly */
4702 ret = qcow2_mark_dirty(bs);
4703 if (ret < 0) {
4704 goto fail;
4705 }
4706
4707 BLKDBG_EVENT(bs->file, BLKDBG_L1_UPDATE);
4708
02b1ecfa
AG
4709 l1_clusters = DIV_ROUND_UP(s->l1_size, s->cluster_size / L1E_SIZE);
4710 l1_size2 = (uint64_t)s->l1_size * L1E_SIZE;
94054183
HR
4711
4712 /* After this call, neither the in-memory nor the on-disk refcount
4713 * information accurately describe the actual references */
4714
720ff280 4715 ret = bdrv_pwrite_zeroes(bs->file, s->l1_table_offset,
74021bc4 4716 l1_clusters * s->cluster_size, 0);
94054183
HR
4717 if (ret < 0) {
4718 goto fail_broken_refcounts;
4719 }
4720 memset(s->l1_table, 0, l1_size2);
4721
4722 BLKDBG_EVENT(bs->file, BLKDBG_EMPTY_IMAGE_PREPARE);
4723
4724 /* Overwrite enough clusters at the beginning of the sectors to place
4725 * the refcount table, a refcount block and the L1 table in; this may
4726 * overwrite parts of the existing refcount and L1 table, which is not
4727 * an issue because the dirty flag is set, complete data loss is in fact
4728 * desired and partial data loss is consequently fine as well */
720ff280 4729 ret = bdrv_pwrite_zeroes(bs->file, s->cluster_size,
74021bc4 4730 (2 + l1_clusters) * s->cluster_size, 0);
94054183
HR
4731 /* This call (even if it failed overall) may have overwritten on-disk
4732 * refcount structures; in that case, the in-memory refcount information
4733 * will probably differ from the on-disk information which makes the BDS
4734 * unusable */
4735 if (ret < 0) {
4736 goto fail_broken_refcounts;
4737 }
4738
4739 BLKDBG_EVENT(bs->file, BLKDBG_L1_UPDATE);
4740 BLKDBG_EVENT(bs->file, BLKDBG_REFTABLE_UPDATE);
4741
4742 /* "Create" an empty reftable (one cluster) directly after the image
4743 * header and an empty L1 table three clusters after the image header;
4744 * the cluster between those two will be used as the first refblock */
f1f7a1dd
PM
4745 l1_ofs_rt_ofs_cls.l1_offset = cpu_to_be64(3 * s->cluster_size);
4746 l1_ofs_rt_ofs_cls.reftable_offset = cpu_to_be64(s->cluster_size);
4747 l1_ofs_rt_ofs_cls.reftable_clusters = cpu_to_be32(1);
d9ca2ea2 4748 ret = bdrv_pwrite_sync(bs->file, offsetof(QCowHeader, l1_table_offset),
94054183
HR
4749 &l1_ofs_rt_ofs_cls, sizeof(l1_ofs_rt_ofs_cls));
4750 if (ret < 0) {
4751 goto fail_broken_refcounts;
4752 }
4753
4754 s->l1_table_offset = 3 * s->cluster_size;
4755
02b1ecfa 4756 new_reftable = g_try_new0(uint64_t, s->cluster_size / REFTABLE_ENTRY_SIZE);
94054183
HR
4757 if (!new_reftable) {
4758 ret = -ENOMEM;
4759 goto fail_broken_refcounts;
4760 }
4761
4762 s->refcount_table_offset = s->cluster_size;
02b1ecfa 4763 s->refcount_table_size = s->cluster_size / REFTABLE_ENTRY_SIZE;
7061a078 4764 s->max_refcount_table_index = 0;
94054183
HR
4765
4766 g_free(s->refcount_table);
4767 s->refcount_table = new_reftable;
4768 new_reftable = NULL;
4769
4770 /* Now the in-memory refcount information again corresponds to the on-disk
4771 * information (reftable is empty and no refblocks (the refblock cache is
4772 * empty)); however, this means some clusters (e.g. the image header) are
4773 * referenced, but not refcounted, but the normal qcow2 code assumes that
4774 * the in-memory information is always correct */
4775
4776 BLKDBG_EVENT(bs->file, BLKDBG_REFBLOCK_ALLOC);
4777
4778 /* Enter the first refblock into the reftable */
4779 rt_entry = cpu_to_be64(2 * s->cluster_size);
d9ca2ea2 4780 ret = bdrv_pwrite_sync(bs->file, s->cluster_size,
94054183
HR
4781 &rt_entry, sizeof(rt_entry));
4782 if (ret < 0) {
4783 goto fail_broken_refcounts;
4784 }
4785 s->refcount_table[0] = 2 * s->cluster_size;
4786
4787 s->free_cluster_index = 0;
4788 assert(3 + l1_clusters <= s->refcount_block_size);
4789 offset = qcow2_alloc_clusters(bs, 3 * s->cluster_size + l1_size2);
4790 if (offset < 0) {
4791 ret = offset;
4792 goto fail_broken_refcounts;
4793 } else if (offset > 0) {
4794 error_report("First cluster in emptied image is in use");
4795 abort();
4796 }
4797
4798 /* Now finally the in-memory information corresponds to the on-disk
4799 * structures and is correct */
4800 ret = qcow2_mark_clean(bs);
4801 if (ret < 0) {
4802 goto fail;
4803 }
4804
c80d8b06 4805 ret = bdrv_truncate(bs->file, (3 + l1_clusters) * s->cluster_size, false,
7b8e4857 4806 PREALLOC_MODE_OFF, 0, &local_err);
94054183 4807 if (ret < 0) {
ed3d2ec9 4808 error_report_err(local_err);
94054183
HR
4809 goto fail;
4810 }
4811
4812 return 0;
4813
4814fail_broken_refcounts:
4815 /* The BDS is unusable at this point. If we wanted to make it usable, we
4816 * would have to call qcow2_refcount_close(), qcow2_refcount_init(),
4817 * qcow2_check_refcounts(), qcow2_refcount_close() and qcow2_refcount_init()
4818 * again. However, because the functions which could have caused this error
4819 * path to be taken are used by those functions as well, it's very likely
4820 * that that sequence will fail as well. Therefore, just eject the BDS. */
4821 bs->drv = NULL;
4822
4823fail:
4824 g_free(new_reftable);
4825 return ret;
4826}
4827
491d27e2
HR
4828static int qcow2_make_empty(BlockDriverState *bs)
4829{
ff99129a 4830 BDRVQcow2State *s = bs->opaque;
d2cb36af
EB
4831 uint64_t offset, end_offset;
4832 int step = QEMU_ALIGN_DOWN(INT_MAX, s->cluster_size);
94054183
HR
4833 int l1_clusters, ret = 0;
4834
02b1ecfa 4835 l1_clusters = DIV_ROUND_UP(s->l1_size, s->cluster_size / L1E_SIZE);
94054183 4836
4096974e 4837 if (s->qcow_version >= 3 && !s->snapshots && !s->nb_bitmaps &&
f0603329 4838 3 + l1_clusters <= s->refcount_block_size &&
db04524f
KW
4839 s->crypt_method_header != QCOW_CRYPT_LUKS &&
4840 !has_data_file(bs)) {
4096974e
EB
4841 /* The following function only works for qcow2 v3 images (it
4842 * requires the dirty flag) and only as long as there are no
4843 * features that reserve extra clusters (such as snapshots,
4844 * LUKS header, or persistent bitmaps), because it completely
4845 * empties the image. Furthermore, the L1 table and three
4846 * additional clusters (image header, refcount table, one
db04524f
KW
4847 * refcount block) have to fit inside one refcount block. It
4848 * only resets the image file, i.e. does not work with an
4849 * external data file. */
94054183
HR
4850 return make_completely_empty(bs);
4851 }
491d27e2 4852
94054183
HR
4853 /* This fallback code simply discards every active cluster; this is slow,
4854 * but works in all cases */
d2cb36af
EB
4855 end_offset = bs->total_sectors * BDRV_SECTOR_SIZE;
4856 for (offset = 0; offset < end_offset; offset += step) {
491d27e2
HR
4857 /* As this function is generally used after committing an external
4858 * snapshot, QCOW2_DISCARD_SNAPSHOT seems appropriate. Also, the
4859 * default action for this kind of discard is to pass the discard,
4860 * which will ideally result in an actually smaller image file, as
4861 * is probably desired. */
d2cb36af
EB
4862 ret = qcow2_cluster_discard(bs, offset, MIN(step, end_offset - offset),
4863 QCOW2_DISCARD_SNAPSHOT, true);
491d27e2
HR
4864 if (ret < 0) {
4865 break;
4866 }
4867 }
4868
4869 return ret;
4870}
4871
a968168c 4872static coroutine_fn int qcow2_co_flush_to_os(BlockDriverState *bs)
20d97356 4873{
ff99129a 4874 BDRVQcow2State *s = bs->opaque;
29c1a730
KW
4875 int ret;
4876
8b94ff85 4877 qemu_co_mutex_lock(&s->lock);
8b220eb7 4878 ret = qcow2_write_caches(bs);
8b94ff85 4879 qemu_co_mutex_unlock(&s->lock);
29c1a730 4880
8b220eb7 4881 return ret;
eb489bb1
KW
4882}
4883
c501c352
SH
4884static BlockMeasureInfo *qcow2_measure(QemuOpts *opts, BlockDriverState *in_bs,
4885 Error **errp)
4886{
4887 Error *local_err = NULL;
4888 BlockMeasureInfo *info;
4889 uint64_t required = 0; /* bytes that contribute to required size */
4890 uint64_t virtual_size; /* disk size as seen by guest */
4891 uint64_t refcount_bits;
4892 uint64_t l2_tables;
61914f89 4893 uint64_t luks_payload_size = 0;
c501c352
SH
4894 size_t cluster_size;
4895 int version;
4896 char *optstr;
4897 PreallocMode prealloc;
4898 bool has_backing_file;
61914f89 4899 bool has_luks;
7be20252 4900 bool extended_l2;
0dd07b29 4901 size_t l2e_size;
c501c352
SH
4902
4903 /* Parse image creation options */
7be20252
AG
4904 extended_l2 = qemu_opt_get_bool_del(opts, BLOCK_OPT_EXTL2, false);
4905
4906 cluster_size = qcow2_opt_get_cluster_size_del(opts, extended_l2,
4907 &local_err);
c501c352
SH
4908 if (local_err) {
4909 goto err;
4910 }
4911
4912 version = qcow2_opt_get_version_del(opts, &local_err);
4913 if (local_err) {
4914 goto err;
4915 }
4916
4917 refcount_bits = qcow2_opt_get_refcount_bits_del(opts, version, &local_err);
4918 if (local_err) {
4919 goto err;
4920 }
4921
4922 optstr = qemu_opt_get_del(opts, BLOCK_OPT_PREALLOC);
f7abe0ec 4923 prealloc = qapi_enum_parse(&PreallocMode_lookup, optstr,
06c60b6c 4924 PREALLOC_MODE_OFF, &local_err);
c501c352
SH
4925 g_free(optstr);
4926 if (local_err) {
4927 goto err;
4928 }
4929
4930 optstr = qemu_opt_get_del(opts, BLOCK_OPT_BACKING_FILE);
4931 has_backing_file = !!optstr;
4932 g_free(optstr);
4933
61914f89
SH
4934 optstr = qemu_opt_get_del(opts, BLOCK_OPT_ENCRYPT_FORMAT);
4935 has_luks = optstr && strcmp(optstr, "luks") == 0;
4936 g_free(optstr);
4937
4938 if (has_luks) {
6d49d3a8 4939 g_autoptr(QCryptoBlockCreateOptions) create_opts = NULL;
90766d9d 4940 QDict *cryptoopts = qcow2_extract_crypto_opts(opts, "luks", errp);
61914f89
SH
4941 size_t headerlen;
4942
6d49d3a8
SH
4943 create_opts = block_crypto_create_opts_init(cryptoopts, errp);
4944 qobject_unref(cryptoopts);
4945 if (!create_opts) {
4946 goto err;
4947 }
4948
4949 if (!qcrypto_block_calculate_payload_offset(create_opts,
4950 "encrypt.",
4951 &headerlen,
4952 &local_err)) {
61914f89
SH
4953 goto err;
4954 }
4955
4956 luks_payload_size = ROUND_UP(headerlen, cluster_size);
4957 }
4958
9e029689
AG
4959 virtual_size = qemu_opt_get_size_del(opts, BLOCK_OPT_SIZE, 0);
4960 virtual_size = ROUND_UP(virtual_size, cluster_size);
c501c352
SH
4961
4962 /* Check that virtual disk size is valid */
0dd07b29 4963 l2e_size = extended_l2 ? L2E_SIZE_EXTENDED : L2E_SIZE_NORMAL;
c501c352 4964 l2_tables = DIV_ROUND_UP(virtual_size / cluster_size,
0dd07b29 4965 cluster_size / l2e_size);
02b1ecfa 4966 if (l2_tables * L1E_SIZE > QCOW_MAX_L1_SIZE) {
c501c352
SH
4967 error_setg(&local_err, "The image size is too large "
4968 "(try using a larger cluster size)");
4969 goto err;
4970 }
4971
4972 /* Account for input image */
4973 if (in_bs) {
4974 int64_t ssize = bdrv_getlength(in_bs);
4975 if (ssize < 0) {
4976 error_setg_errno(&local_err, -ssize,
4977 "Unable to get image virtual_size");
4978 goto err;
4979 }
4980
9e029689 4981 virtual_size = ROUND_UP(ssize, cluster_size);
c501c352
SH
4982
4983 if (has_backing_file) {
4984 /* We don't how much of the backing chain is shared by the input
4985 * image and the new image file. In the worst case the new image's
4986 * backing file has nothing in common with the input image. Be
4987 * conservative and assume all clusters need to be written.
4988 */
4989 required = virtual_size;
4990 } else {
b85ee453 4991 int64_t offset;
31826642 4992 int64_t pnum = 0;
c501c352 4993
31826642
EB
4994 for (offset = 0; offset < ssize; offset += pnum) {
4995 int ret;
c501c352 4996
31826642
EB
4997 ret = bdrv_block_status_above(in_bs, NULL, offset,
4998 ssize - offset, &pnum, NULL,
4999 NULL);
c501c352
SH
5000 if (ret < 0) {
5001 error_setg_errno(&local_err, -ret,
5002 "Unable to get block status");
5003 goto err;
5004 }
5005
5006 if (ret & BDRV_BLOCK_ZERO) {
5007 /* Skip zero regions (safe with no backing file) */
5008 } else if ((ret & (BDRV_BLOCK_DATA | BDRV_BLOCK_ALLOCATED)) ==
5009 (BDRV_BLOCK_DATA | BDRV_BLOCK_ALLOCATED)) {
5010 /* Extend pnum to end of cluster for next iteration */
31826642 5011 pnum = ROUND_UP(offset + pnum, cluster_size) - offset;
c501c352
SH
5012
5013 /* Count clusters we've seen */
31826642 5014 required += offset % cluster_size + pnum;
c501c352
SH
5015 }
5016 }
5017 }
5018 }
5019
5020 /* Take into account preallocation. Nothing special is needed for
5021 * PREALLOC_MODE_METADATA since metadata is always counted.
5022 */
5023 if (prealloc == PREALLOC_MODE_FULL || prealloc == PREALLOC_MODE_FALLOC) {
5024 required = virtual_size;
5025 }
5026
5d72c68b 5027 info = g_new0(BlockMeasureInfo, 1);
0dd07b29 5028 info->fully_allocated = luks_payload_size +
c501c352 5029 qcow2_calc_prealloc_size(virtual_size, cluster_size,
0dd07b29 5030 ctz32(refcount_bits), extended_l2);
c501c352 5031
5d72c68b
EB
5032 /*
5033 * Remove data clusters that are not required. This overestimates the
c501c352 5034 * required size because metadata needed for the fully allocated file is
5d72c68b
EB
5035 * still counted. Show bitmaps only if both source and destination
5036 * would support them.
c501c352
SH
5037 */
5038 info->required = info->fully_allocated - virtual_size + required;
5d72c68b
EB
5039 info->has_bitmaps = version >= 3 && in_bs &&
5040 bdrv_supports_persistent_dirty_bitmap(in_bs);
5041 if (info->has_bitmaps) {
5042 info->bitmaps = qcow2_get_persistent_dirty_bitmap_size(in_bs,
5043 cluster_size);
5044 }
c501c352
SH
5045 return info;
5046
5047err:
5048 error_propagate(errp, local_err);
5049 return NULL;
5050}
5051
7c80ab3f 5052static int qcow2_get_info(BlockDriverState *bs, BlockDriverInfo *bdi)
20d97356 5053{
ff99129a 5054 BDRVQcow2State *s = bs->opaque;
20d97356 5055 bdi->cluster_size = s->cluster_size;
7c80ab3f 5056 bdi->vm_state_offset = qcow2_vm_state_offset(s);
20d97356
BS
5057 return 0;
5058}
5059
1bf6e9ca
AS
5060static ImageInfoSpecific *qcow2_get_specific_info(BlockDriverState *bs,
5061 Error **errp)
37764dfb 5062{
ff99129a 5063 BDRVQcow2State *s = bs->opaque;
0a12f6f8
DB
5064 ImageInfoSpecific *spec_info;
5065 QCryptoBlockInfo *encrypt_info = NULL;
37764dfb 5066
0a12f6f8 5067 if (s->crypto != NULL) {
83bad8cb
VSO
5068 encrypt_info = qcrypto_block_get_info(s->crypto, errp);
5069 if (!encrypt_info) {
1bf6e9ca
AS
5070 return NULL;
5071 }
0a12f6f8
DB
5072 }
5073
5074 spec_info = g_new(ImageInfoSpecific, 1);
37764dfb 5075 *spec_info = (ImageInfoSpecific){
6a8f9661 5076 .type = IMAGE_INFO_SPECIFIC_KIND_QCOW2,
b8968c87 5077 .u.qcow2.data = g_new0(ImageInfoSpecificQCow2, 1),
37764dfb
HR
5078 };
5079 if (s->qcow_version == 2) {
32bafa8f 5080 *spec_info->u.qcow2.data = (ImageInfoSpecificQCow2){
0709c5a1
HR
5081 .compat = g_strdup("0.10"),
5082 .refcount_bits = s->refcount_bits,
37764dfb
HR
5083 };
5084 } else if (s->qcow_version == 3) {
b8968c87 5085 Qcow2BitmapInfoList *bitmaps;
83bad8cb 5086 if (!qcow2_get_bitmap_info_list(bs, &bitmaps, errp)) {
b8968c87 5087 qapi_free_ImageInfoSpecific(spec_info);
71eaec2e 5088 qapi_free_QCryptoBlockInfo(encrypt_info);
b8968c87
AS
5089 return NULL;
5090 }
32bafa8f 5091 *spec_info->u.qcow2.data = (ImageInfoSpecificQCow2){
37764dfb
HR
5092 .compat = g_strdup("1.1"),
5093 .lazy_refcounts = s->compatible_features &
5094 QCOW2_COMPAT_LAZY_REFCOUNTS,
5095 .has_lazy_refcounts = true,
9009b196
HR
5096 .corrupt = s->incompatible_features &
5097 QCOW2_INCOMPAT_CORRUPT,
5098 .has_corrupt = true,
7be20252
AG
5099 .has_extended_l2 = true,
5100 .extended_l2 = has_subclusters(s),
0709c5a1 5101 .refcount_bits = s->refcount_bits,
b8968c87
AS
5102 .has_bitmaps = !!bitmaps,
5103 .bitmaps = bitmaps,
9b890bdc
KW
5104 .has_data_file = !!s->image_data_file,
5105 .data_file = g_strdup(s->image_data_file),
6c3944dc
KW
5106 .has_data_file_raw = has_data_file(bs),
5107 .data_file_raw = data_file_is_raw(bs),
572ad978 5108 .compression_type = s->compression_type,
37764dfb 5109 };
b1fc8f93
DL
5110 } else {
5111 /* if this assertion fails, this probably means a new version was
5112 * added without having it covered here */
5113 assert(false);
37764dfb
HR
5114 }
5115
0a12f6f8
DB
5116 if (encrypt_info) {
5117 ImageInfoSpecificQCow2Encryption *qencrypt =
5118 g_new(ImageInfoSpecificQCow2Encryption, 1);
5119 switch (encrypt_info->format) {
5120 case Q_CRYPTO_BLOCK_FORMAT_QCOW:
5121 qencrypt->format = BLOCKDEV_QCOW2_ENCRYPTION_FORMAT_AES;
0a12f6f8
DB
5122 break;
5123 case Q_CRYPTO_BLOCK_FORMAT_LUKS:
5124 qencrypt->format = BLOCKDEV_QCOW2_ENCRYPTION_FORMAT_LUKS;
5125 qencrypt->u.luks = encrypt_info->u.luks;
5126 break;
5127 default:
5128 abort();
5129 }
5130 /* Since we did shallow copy above, erase any pointers
5131 * in the original info */
5132 memset(&encrypt_info->u, 0, sizeof(encrypt_info->u));
5133 qapi_free_QCryptoBlockInfo(encrypt_info);
5134
5135 spec_info->u.qcow2.data->has_encrypt = true;
5136 spec_info->u.qcow2.data->encrypt = qencrypt;
5137 }
5138
37764dfb
HR
5139 return spec_info;
5140}
5141
38841dcd
HR
5142static int qcow2_has_zero_init(BlockDriverState *bs)
5143{
5144 BDRVQcow2State *s = bs->opaque;
5145 bool preallocated;
5146
5147 if (qemu_in_coroutine()) {
5148 qemu_co_mutex_lock(&s->lock);
5149 }
5150 /*
5151 * Check preallocation status: Preallocated images have all L2
5152 * tables allocated, nonpreallocated images have none. It is
5153 * therefore enough to check the first one.
5154 */
5155 preallocated = s->l1_size > 0 && s->l1_table[0] != 0;
5156 if (qemu_in_coroutine()) {
5157 qemu_co_mutex_unlock(&s->lock);
5158 }
5159
5160 if (!preallocated) {
5161 return 1;
5162 } else if (bs->encrypted) {
5163 return 0;
5164 } else {
5165 return bdrv_has_zero_init(s->data_file->bs);
5166 }
5167}
5168
cf8074b3
KW
5169static int qcow2_save_vmstate(BlockDriverState *bs, QEMUIOVector *qiov,
5170 int64_t pos)
20d97356 5171{
ff99129a 5172 BDRVQcow2State *s = bs->opaque;
20d97356 5173
66f82cee 5174 BLKDBG_EVENT(bs->file, BLKDBG_VMSTATE_SAVE);
5396234b
VSO
5175 return bs->drv->bdrv_co_pwritev_part(bs, qcow2_vm_state_offset(s) + pos,
5176 qiov->size, qiov, 0, 0);
20d97356
BS
5177}
5178
5ddda0b8
KW
5179static int qcow2_load_vmstate(BlockDriverState *bs, QEMUIOVector *qiov,
5180 int64_t pos)
20d97356 5181{
ff99129a 5182 BDRVQcow2State *s = bs->opaque;
20d97356 5183
66f82cee 5184 BLKDBG_EVENT(bs->file, BLKDBG_VMSTATE_LOAD);
df893d25
VSO
5185 return bs->drv->bdrv_co_preadv_part(bs, qcow2_vm_state_offset(s) + pos,
5186 qiov->size, qiov, 0, 0);
20d97356
BS
5187}
5188
9296b3ed
HR
5189/*
5190 * Downgrades an image's version. To achieve this, any incompatible features
5191 * have to be removed.
5192 */
4057a2b2 5193static int qcow2_downgrade(BlockDriverState *bs, int target_version,
d1402b50
HR
5194 BlockDriverAmendStatusCB *status_cb, void *cb_opaque,
5195 Error **errp)
9296b3ed 5196{
ff99129a 5197 BDRVQcow2State *s = bs->opaque;
9296b3ed
HR
5198 int current_version = s->qcow_version;
5199 int ret;
7fa140ab 5200 int i;
9296b3ed 5201
d1402b50
HR
5202 /* This is qcow2_downgrade(), not qcow2_upgrade() */
5203 assert(target_version < current_version);
5204
5205 /* There are no other versions (now) that you can downgrade to */
5206 assert(target_version == 2);
9296b3ed
HR
5207
5208 if (s->refcount_order != 4) {
d1402b50 5209 error_setg(errp, "compat=0.10 requires refcount_bits=16");
9296b3ed
HR
5210 return -ENOTSUP;
5211 }
5212
966b000f
KW
5213 if (has_data_file(bs)) {
5214 error_setg(errp, "Cannot downgrade an image with a data file");
5215 return -ENOTSUP;
5216 }
5217
7fa140ab
EB
5218 /*
5219 * If any internal snapshot has a different size than the current
5220 * image size, or VM state size that exceeds 32 bits, downgrading
5221 * is unsafe. Even though we would still use v3-compliant output
5222 * to preserve that data, other v2 programs might not realize
5223 * those optional fields are important.
5224 */
5225 for (i = 0; i < s->nb_snapshots; i++) {
5226 if (s->snapshots[i].vm_state_size > UINT32_MAX ||
5227 s->snapshots[i].disk_size != bs->total_sectors * BDRV_SECTOR_SIZE) {
5228 error_setg(errp, "Internal snapshots prevent downgrade of image");
5229 return -ENOTSUP;
5230 }
5231 }
5232
9296b3ed
HR
5233 /* clear incompatible features */
5234 if (s->incompatible_features & QCOW2_INCOMPAT_DIRTY) {
5235 ret = qcow2_mark_clean(bs);
5236 if (ret < 0) {
d1402b50 5237 error_setg_errno(errp, -ret, "Failed to make the image clean");
9296b3ed
HR
5238 return ret;
5239 }
5240 }
5241
5242 /* with QCOW2_INCOMPAT_CORRUPT, it is pretty much impossible to get here in
5243 * the first place; if that happens nonetheless, returning -ENOTSUP is the
5244 * best thing to do anyway */
5245
5246 if (s->incompatible_features) {
d1402b50
HR
5247 error_setg(errp, "Cannot downgrade an image with incompatible features "
5248 "%#" PRIx64 " set", s->incompatible_features);
9296b3ed
HR
5249 return -ENOTSUP;
5250 }
5251
5252 /* since we can ignore compatible features, we can set them to 0 as well */
5253 s->compatible_features = 0;
5254 /* if lazy refcounts have been used, they have already been fixed through
5255 * clearing the dirty flag */
5256
5257 /* clearing autoclear features is trivial */
5258 s->autoclear_features = 0;
5259
8b13976d 5260 ret = qcow2_expand_zero_clusters(bs, status_cb, cb_opaque);
9296b3ed 5261 if (ret < 0) {
d1402b50 5262 error_setg_errno(errp, -ret, "Failed to turn zero into data clusters");
9296b3ed
HR
5263 return ret;
5264 }
5265
5266 s->qcow_version = target_version;
5267 ret = qcow2_update_header(bs);
5268 if (ret < 0) {
5269 s->qcow_version = current_version;
d1402b50 5270 error_setg_errno(errp, -ret, "Failed to update the image header");
9296b3ed
HR
5271 return ret;
5272 }
5273 return 0;
5274}
5275
722efb0c
HR
5276/*
5277 * Upgrades an image's version. While newer versions encompass all
5278 * features of older versions, some things may have to be presented
5279 * differently.
5280 */
5281static int qcow2_upgrade(BlockDriverState *bs, int target_version,
5282 BlockDriverAmendStatusCB *status_cb, void *cb_opaque,
5283 Error **errp)
5284{
5285 BDRVQcow2State *s = bs->opaque;
0a85af35 5286 bool need_snapshot_update;
722efb0c 5287 int current_version = s->qcow_version;
0a85af35 5288 int i;
722efb0c
HR
5289 int ret;
5290
5291 /* This is qcow2_upgrade(), not qcow2_downgrade() */
5292 assert(target_version > current_version);
5293
5294 /* There are no other versions (yet) that you can upgrade to */
5295 assert(target_version == 3);
5296
0a85af35
HR
5297 status_cb(bs, 0, 2, cb_opaque);
5298
5299 /*
5300 * In v2, snapshots do not need to have extra data. v3 requires
5301 * the 64-bit VM state size and the virtual disk size to be
5302 * present.
5303 * qcow2_write_snapshots() will always write the list in the
5304 * v3-compliant format.
5305 */
5306 need_snapshot_update = false;
5307 for (i = 0; i < s->nb_snapshots; i++) {
5308 if (s->snapshots[i].extra_data_size <
5309 sizeof_field(QCowSnapshotExtraData, vm_state_size_large) +
5310 sizeof_field(QCowSnapshotExtraData, disk_size))
5311 {
5312 need_snapshot_update = true;
5313 break;
5314 }
5315 }
5316 if (need_snapshot_update) {
5317 ret = qcow2_write_snapshots(bs);
5318 if (ret < 0) {
5319 error_setg_errno(errp, -ret, "Failed to update the snapshot table");
5320 return ret;
5321 }
5322 }
5323 status_cb(bs, 1, 2, cb_opaque);
722efb0c
HR
5324
5325 s->qcow_version = target_version;
5326 ret = qcow2_update_header(bs);
5327 if (ret < 0) {
5328 s->qcow_version = current_version;
5329 error_setg_errno(errp, -ret, "Failed to update the image header");
5330 return ret;
5331 }
0a85af35 5332 status_cb(bs, 2, 2, cb_opaque);
722efb0c
HR
5333
5334 return 0;
5335}
5336
c293a809
HR
5337typedef enum Qcow2AmendOperation {
5338 /* This is the value Qcow2AmendHelperCBInfo::last_operation will be
5339 * statically initialized to so that the helper CB can discern the first
5340 * invocation from an operation change */
5341 QCOW2_NO_OPERATION = 0,
5342
722efb0c 5343 QCOW2_UPGRADING,
90766d9d 5344 QCOW2_UPDATING_ENCRYPTION,
61ce55fc 5345 QCOW2_CHANGING_REFCOUNT_ORDER,
c293a809
HR
5346 QCOW2_DOWNGRADING,
5347} Qcow2AmendOperation;
5348
5349typedef struct Qcow2AmendHelperCBInfo {
5350 /* The code coordinating the amend operations should only modify
5351 * these four fields; the rest will be managed by the CB */
5352 BlockDriverAmendStatusCB *original_status_cb;
5353 void *original_cb_opaque;
5354
5355 Qcow2AmendOperation current_operation;
5356
5357 /* Total number of operations to perform (only set once) */
5358 int total_operations;
5359
5360 /* The following fields are managed by the CB */
5361
5362 /* Number of operations completed */
5363 int operations_completed;
5364
5365 /* Cumulative offset of all completed operations */
5366 int64_t offset_completed;
5367
5368 Qcow2AmendOperation last_operation;
5369 int64_t last_work_size;
5370} Qcow2AmendHelperCBInfo;
5371
5372static void qcow2_amend_helper_cb(BlockDriverState *bs,
5373 int64_t operation_offset,
5374 int64_t operation_work_size, void *opaque)
5375{
5376 Qcow2AmendHelperCBInfo *info = opaque;
5377 int64_t current_work_size;
5378 int64_t projected_work_size;
5379
5380 if (info->current_operation != info->last_operation) {
5381 if (info->last_operation != QCOW2_NO_OPERATION) {
5382 info->offset_completed += info->last_work_size;
5383 info->operations_completed++;
5384 }
5385
5386 info->last_operation = info->current_operation;
5387 }
5388
5389 assert(info->total_operations > 0);
5390 assert(info->operations_completed < info->total_operations);
5391
5392 info->last_work_size = operation_work_size;
5393
5394 current_work_size = info->offset_completed + operation_work_size;
5395
5396 /* current_work_size is the total work size for (operations_completed + 1)
5397 * operations (which includes this one), so multiply it by the number of
5398 * operations not covered and divide it by the number of operations
5399 * covered to get a projection for the operations not covered */
5400 projected_work_size = current_work_size * (info->total_operations -
5401 info->operations_completed - 1)
5402 / (info->operations_completed + 1);
5403
5404 info->original_status_cb(bs, info->offset_completed + operation_offset,
5405 current_work_size + projected_work_size,
5406 info->original_cb_opaque);
5407}
5408
77485434 5409static int qcow2_amend_options(BlockDriverState *bs, QemuOpts *opts,
8b13976d 5410 BlockDriverAmendStatusCB *status_cb,
d1402b50 5411 void *cb_opaque,
a3579bfa 5412 bool force,
d1402b50 5413 Error **errp)
9296b3ed 5414{
ff99129a 5415 BDRVQcow2State *s = bs->opaque;
9296b3ed
HR
5416 int old_version = s->qcow_version, new_version = old_version;
5417 uint64_t new_size = 0;
9b890bdc 5418 const char *backing_file = NULL, *backing_format = NULL, *data_file = NULL;
9296b3ed 5419 bool lazy_refcounts = s->use_lazy_refcounts;
6c3944dc 5420 bool data_file_raw = data_file_is_raw(bs);
1bd0e2d1 5421 const char *compat = NULL;
61ce55fc 5422 int refcount_bits = s->refcount_bits;
9296b3ed 5423 int ret;
1bd0e2d1 5424 QemuOptDesc *desc = opts->list->desc;
c293a809 5425 Qcow2AmendHelperCBInfo helper_cb_info;
90766d9d 5426 bool encryption_update = false;
9296b3ed 5427
1bd0e2d1
CL
5428 while (desc && desc->name) {
5429 if (!qemu_opt_find(opts, desc->name)) {
9296b3ed 5430 /* only change explicitly defined options */
1bd0e2d1 5431 desc++;
9296b3ed
HR
5432 continue;
5433 }
5434
8a17b83c
HR
5435 if (!strcmp(desc->name, BLOCK_OPT_COMPAT_LEVEL)) {
5436 compat = qemu_opt_get(opts, BLOCK_OPT_COMPAT_LEVEL);
1bd0e2d1 5437 if (!compat) {
9296b3ed 5438 /* preserve default */
f7077c98 5439 } else if (!strcmp(compat, "0.10") || !strcmp(compat, "v2")) {
9296b3ed 5440 new_version = 2;
f7077c98 5441 } else if (!strcmp(compat, "1.1") || !strcmp(compat, "v3")) {
9296b3ed
HR
5442 new_version = 3;
5443 } else {
d1402b50 5444 error_setg(errp, "Unknown compatibility level %s", compat);
9296b3ed
HR
5445 return -EINVAL;
5446 }
8a17b83c
HR
5447 } else if (!strcmp(desc->name, BLOCK_OPT_SIZE)) {
5448 new_size = qemu_opt_get_size(opts, BLOCK_OPT_SIZE, 0);
5449 } else if (!strcmp(desc->name, BLOCK_OPT_BACKING_FILE)) {
5450 backing_file = qemu_opt_get(opts, BLOCK_OPT_BACKING_FILE);
5451 } else if (!strcmp(desc->name, BLOCK_OPT_BACKING_FMT)) {
5452 backing_format = qemu_opt_get(opts, BLOCK_OPT_BACKING_FMT);
90766d9d
ML
5453 } else if (g_str_has_prefix(desc->name, "encrypt.")) {
5454 if (!s->crypto) {
5455 error_setg(errp,
5456 "Can't amend encryption options - encryption not present");
5457 return -EINVAL;
5458 }
5459 if (s->crypt_method_header != QCOW_CRYPT_LUKS) {
5460 error_setg(errp,
5461 "Only LUKS encryption options can be amended");
5462 return -ENOTSUP;
5463 }
5464 encryption_update = true;
8a17b83c
HR
5465 } else if (!strcmp(desc->name, BLOCK_OPT_LAZY_REFCOUNTS)) {
5466 lazy_refcounts = qemu_opt_get_bool(opts, BLOCK_OPT_LAZY_REFCOUNTS,
1bd0e2d1 5467 lazy_refcounts);
06d05fa7 5468 } else if (!strcmp(desc->name, BLOCK_OPT_REFCOUNT_BITS)) {
61ce55fc
HR
5469 refcount_bits = qemu_opt_get_number(opts, BLOCK_OPT_REFCOUNT_BITS,
5470 refcount_bits);
5471
5472 if (refcount_bits <= 0 || refcount_bits > 64 ||
5473 !is_power_of_2(refcount_bits))
5474 {
d1402b50
HR
5475 error_setg(errp, "Refcount width must be a power of two and "
5476 "may not exceed 64 bits");
61ce55fc
HR
5477 return -EINVAL;
5478 }
9b890bdc
KW
5479 } else if (!strcmp(desc->name, BLOCK_OPT_DATA_FILE)) {
5480 data_file = qemu_opt_get(opts, BLOCK_OPT_DATA_FILE);
5481 if (data_file && !has_data_file(bs)) {
5482 error_setg(errp, "data-file can only be set for images that "
5483 "use an external data file");
5484 return -EINVAL;
5485 }
6c3944dc
KW
5486 } else if (!strcmp(desc->name, BLOCK_OPT_DATA_FILE_RAW)) {
5487 data_file_raw = qemu_opt_get_bool(opts, BLOCK_OPT_DATA_FILE_RAW,
5488 data_file_raw);
5489 if (data_file_raw && !data_file_is_raw(bs)) {
5490 error_setg(errp, "data-file-raw cannot be set on existing "
5491 "images");
5492 return -EINVAL;
5493 }
9296b3ed 5494 } else {
164e0f89 5495 /* if this point is reached, this probably means a new option was
9296b3ed 5496 * added without having it covered here */
164e0f89 5497 abort();
9296b3ed 5498 }
1bd0e2d1
CL
5499
5500 desc++;
9296b3ed
HR
5501 }
5502
c293a809
HR
5503 helper_cb_info = (Qcow2AmendHelperCBInfo){
5504 .original_status_cb = status_cb,
5505 .original_cb_opaque = cb_opaque,
722efb0c 5506 .total_operations = (new_version != old_version)
90766d9d
ML
5507 + (s->refcount_bits != refcount_bits) +
5508 (encryption_update == true)
c293a809
HR
5509 };
5510
1038bbb8
HR
5511 /* Upgrade first (some features may require compat=1.1) */
5512 if (new_version > old_version) {
722efb0c
HR
5513 helper_cb_info.current_operation = QCOW2_UPGRADING;
5514 ret = qcow2_upgrade(bs, new_version, &qcow2_amend_helper_cb,
5515 &helper_cb_info, errp);
1038bbb8 5516 if (ret < 0) {
1038bbb8 5517 return ret;
9296b3ed
HR
5518 }
5519 }
5520
90766d9d
ML
5521 if (encryption_update) {
5522 QDict *amend_opts_dict;
5523 QCryptoBlockAmendOptions *amend_opts;
5524
5525 helper_cb_info.current_operation = QCOW2_UPDATING_ENCRYPTION;
5526 amend_opts_dict = qcow2_extract_crypto_opts(opts, "luks", errp);
5527 if (!amend_opts_dict) {
5528 return -EINVAL;
5529 }
5530 amend_opts = block_crypto_amend_opts_init(amend_opts_dict, errp);
5531 qobject_unref(amend_opts_dict);
5532 if (!amend_opts) {
5533 return -EINVAL;
5534 }
5535 ret = qcrypto_block_amend_options(s->crypto,
5536 qcow2_crypto_hdr_read_func,
5537 qcow2_crypto_hdr_write_func,
5538 bs,
5539 amend_opts,
5540 force,
5541 errp);
5542 qapi_free_QCryptoBlockAmendOptions(amend_opts);
5543 if (ret < 0) {
5544 return ret;
5545 }
5546 }
5547
61ce55fc
HR
5548 if (s->refcount_bits != refcount_bits) {
5549 int refcount_order = ctz32(refcount_bits);
61ce55fc
HR
5550
5551 if (new_version < 3 && refcount_bits != 16) {
d1402b50
HR
5552 error_setg(errp, "Refcount widths other than 16 bits require "
5553 "compatibility level 1.1 or above (use compat=1.1 or "
5554 "greater)");
61ce55fc
HR
5555 return -EINVAL;
5556 }
5557
5558 helper_cb_info.current_operation = QCOW2_CHANGING_REFCOUNT_ORDER;
5559 ret = qcow2_change_refcount_order(bs, refcount_order,
5560 &qcow2_amend_helper_cb,
d1402b50 5561 &helper_cb_info, errp);
61ce55fc 5562 if (ret < 0) {
61ce55fc
HR
5563 return ret;
5564 }
5565 }
5566
6c3944dc
KW
5567 /* data-file-raw blocks backing files, so clear it first if requested */
5568 if (data_file_raw) {
5569 s->autoclear_features |= QCOW2_AUTOCLEAR_DATA_FILE_RAW;
5570 } else {
5571 s->autoclear_features &= ~QCOW2_AUTOCLEAR_DATA_FILE_RAW;
5572 }
5573
9b890bdc
KW
5574 if (data_file) {
5575 g_free(s->image_data_file);
5576 s->image_data_file = *data_file ? g_strdup(data_file) : NULL;
5577 }
5578
5579 ret = qcow2_update_header(bs);
5580 if (ret < 0) {
5581 error_setg_errno(errp, -ret, "Failed to update the image header");
5582 return ret;
5583 }
5584
9296b3ed 5585 if (backing_file || backing_format) {
bc5ee6da
EB
5586 if (g_strcmp0(backing_file, s->image_backing_file) ||
5587 g_strcmp0(backing_format, s->image_backing_format)) {
5588 warn_report("Deprecated use of amend to alter the backing file; "
5589 "use qemu-img rebase instead");
5590 }
e4603fe1
KW
5591 ret = qcow2_change_backing_file(bs,
5592 backing_file ?: s->image_backing_file,
5593 backing_format ?: s->image_backing_format);
9296b3ed 5594 if (ret < 0) {
d1402b50 5595 error_setg_errno(errp, -ret, "Failed to change the backing file");
9296b3ed
HR
5596 return ret;
5597 }
5598 }
5599
5600 if (s->use_lazy_refcounts != lazy_refcounts) {
5601 if (lazy_refcounts) {
1038bbb8 5602 if (new_version < 3) {
d1402b50
HR
5603 error_setg(errp, "Lazy refcounts only supported with "
5604 "compatibility level 1.1 and above (use compat=1.1 "
5605 "or greater)");
9296b3ed
HR
5606 return -EINVAL;
5607 }
5608 s->compatible_features |= QCOW2_COMPAT_LAZY_REFCOUNTS;
5609 ret = qcow2_update_header(bs);
5610 if (ret < 0) {
5611 s->compatible_features &= ~QCOW2_COMPAT_LAZY_REFCOUNTS;
d1402b50 5612 error_setg_errno(errp, -ret, "Failed to update the image header");
9296b3ed
HR
5613 return ret;
5614 }
5615 s->use_lazy_refcounts = true;
5616 } else {
5617 /* make image clean first */
5618 ret = qcow2_mark_clean(bs);
5619 if (ret < 0) {
d1402b50 5620 error_setg_errno(errp, -ret, "Failed to make the image clean");
9296b3ed
HR
5621 return ret;
5622 }
5623 /* now disallow lazy refcounts */
5624 s->compatible_features &= ~QCOW2_COMPAT_LAZY_REFCOUNTS;
5625 ret = qcow2_update_header(bs);
5626 if (ret < 0) {
5627 s->compatible_features |= QCOW2_COMPAT_LAZY_REFCOUNTS;
d1402b50 5628 error_setg_errno(errp, -ret, "Failed to update the image header");
9296b3ed
HR
5629 return ret;
5630 }
5631 s->use_lazy_refcounts = false;
5632 }
5633 }
5634
5635 if (new_size) {
a3aeeab5
EB
5636 BlockBackend *blk = blk_new_with_bs(bs, BLK_PERM_RESIZE, BLK_PERM_ALL,
5637 errp);
5638 if (!blk) {
5639 return -EPERM;
d7086422
KW
5640 }
5641
e8d04f92
HR
5642 /*
5643 * Amending image options should ensure that the image has
5644 * exactly the given new values, so pass exact=true here.
5645 */
8c6242b6 5646 ret = blk_truncate(blk, new_size, true, PREALLOC_MODE_OFF, 0, errp);
70b27f36 5647 blk_unref(blk);
9296b3ed
HR
5648 if (ret < 0) {
5649 return ret;
5650 }
5651 }
5652
1038bbb8
HR
5653 /* Downgrade last (so unsupported features can be removed before) */
5654 if (new_version < old_version) {
c293a809
HR
5655 helper_cb_info.current_operation = QCOW2_DOWNGRADING;
5656 ret = qcow2_downgrade(bs, new_version, &qcow2_amend_helper_cb,
d1402b50 5657 &helper_cb_info, errp);
1038bbb8
HR
5658 if (ret < 0) {
5659 return ret;
5660 }
5661 }
5662
9296b3ed
HR
5663 return 0;
5664}
5665
8ea1613d
ML
5666static int coroutine_fn qcow2_co_amend(BlockDriverState *bs,
5667 BlockdevAmendOptions *opts,
5668 bool force,
5669 Error **errp)
5670{
5671 BlockdevAmendOptionsQcow2 *qopts = &opts->u.qcow2;
5672 BDRVQcow2State *s = bs->opaque;
5673 int ret = 0;
5674
5675 if (qopts->has_encrypt) {
5676 if (!s->crypto) {
5677 error_setg(errp, "image is not encrypted, can't amend");
5678 return -EOPNOTSUPP;
5679 }
5680
5681 if (qopts->encrypt->format != Q_CRYPTO_BLOCK_FORMAT_LUKS) {
5682 error_setg(errp,
5683 "Amend can't be used to change the qcow2 encryption format");
5684 return -EOPNOTSUPP;
5685 }
5686
5687 if (s->crypt_method_header != QCOW_CRYPT_LUKS) {
5688 error_setg(errp,
5689 "Only LUKS encryption options can be amended for qcow2 with blockdev-amend");
5690 return -EOPNOTSUPP;
5691 }
5692
5693 ret = qcrypto_block_amend_options(s->crypto,
5694 qcow2_crypto_hdr_read_func,
5695 qcow2_crypto_hdr_write_func,
5696 bs,
5697 qopts->encrypt,
5698 force,
5699 errp);
5700 }
5701 return ret;
5702}
5703
85186ebd
HR
5704/*
5705 * If offset or size are negative, respectively, they will not be included in
5706 * the BLOCK_IMAGE_CORRUPTED event emitted.
5707 * fatal will be ignored for read-only BDS; corruptions found there will always
5708 * be considered non-fatal.
5709 */
5710void qcow2_signal_corruption(BlockDriverState *bs, bool fatal, int64_t offset,
5711 int64_t size, const char *message_format, ...)
5712{
ff99129a 5713 BDRVQcow2State *s = bs->opaque;
dc881b44 5714 const char *node_name;
85186ebd
HR
5715 char *message;
5716 va_list ap;
5717
ddf3b47e 5718 fatal = fatal && bdrv_is_writable(bs);
85186ebd
HR
5719
5720 if (s->signaled_corruption &&
5721 (!fatal || (s->incompatible_features & QCOW2_INCOMPAT_CORRUPT)))
5722 {
5723 return;
5724 }
5725
5726 va_start(ap, message_format);
5727 message = g_strdup_vprintf(message_format, ap);
5728 va_end(ap);
5729
5730 if (fatal) {
5731 fprintf(stderr, "qcow2: Marking image as corrupt: %s; further "
5732 "corruption events will be suppressed\n", message);
5733 } else {
5734 fprintf(stderr, "qcow2: Image is corrupt: %s; further non-fatal "
5735 "corruption events will be suppressed\n", message);
5736 }
5737
dc881b44
AG
5738 node_name = bdrv_get_node_name(bs);
5739 qapi_event_send_block_image_corrupted(bdrv_get_device_name(bs),
5740 *node_name != '\0', node_name,
5741 message, offset >= 0, offset,
5742 size >= 0, size,
3ab72385 5743 fatal);
85186ebd
HR
5744 g_free(message);
5745
5746 if (fatal) {
5747 qcow2_mark_corrupt(bs);
5748 bs->drv = NULL; /* make BDS unusable */
5749 }
5750
5751 s->signaled_corruption = true;
5752}
5753
df373fb0
ML
5754#define QCOW_COMMON_OPTIONS \
5755 { \
5756 .name = BLOCK_OPT_SIZE, \
5757 .type = QEMU_OPT_SIZE, \
5758 .help = "Virtual disk size" \
5759 }, \
5760 { \
5761 .name = BLOCK_OPT_COMPAT_LEVEL, \
5762 .type = QEMU_OPT_STRING, \
5763 .help = "Compatibility level (v2 [0.10] or v3 [1.1])" \
5764 }, \
5765 { \
5766 .name = BLOCK_OPT_BACKING_FILE, \
5767 .type = QEMU_OPT_STRING, \
5768 .help = "File name of a base image" \
5769 }, \
5770 { \
5771 .name = BLOCK_OPT_BACKING_FMT, \
5772 .type = QEMU_OPT_STRING, \
5773 .help = "Image format of the base image" \
5774 }, \
5775 { \
5776 .name = BLOCK_OPT_DATA_FILE, \
5777 .type = QEMU_OPT_STRING, \
5778 .help = "File name of an external data file" \
5779 }, \
5780 { \
5781 .name = BLOCK_OPT_DATA_FILE_RAW, \
5782 .type = QEMU_OPT_BOOL, \
5783 .help = "The external data file must stay valid " \
5784 "as a raw image" \
5785 }, \
df373fb0
ML
5786 { \
5787 .name = BLOCK_OPT_LAZY_REFCOUNTS, \
5788 .type = QEMU_OPT_BOOL, \
5789 .help = "Postpone refcount updates", \
5790 .def_value_str = "off" \
5791 }, \
5792 { \
5793 .name = BLOCK_OPT_REFCOUNT_BITS, \
5794 .type = QEMU_OPT_NUMBER, \
5795 .help = "Width of a reference count entry in bits", \
5796 .def_value_str = "16" \
df373fb0
ML
5797 }
5798
1bd0e2d1
CL
5799static QemuOptsList qcow2_create_opts = {
5800 .name = "qcow2-create-opts",
5801 .head = QTAILQ_HEAD_INITIALIZER(qcow2_create_opts.head),
5802 .desc = {
0b6786a9
ML
5803 { \
5804 .name = BLOCK_OPT_ENCRYPT, \
5805 .type = QEMU_OPT_BOOL, \
5806 .help = "Encrypt the image with format 'aes'. (Deprecated " \
5807 "in favor of " BLOCK_OPT_ENCRYPT_FORMAT "=aes)", \
5808 }, \
5809 { \
5810 .name = BLOCK_OPT_ENCRYPT_FORMAT, \
5811 .type = QEMU_OPT_STRING, \
5812 .help = "Encrypt the image, format choices: 'aes', 'luks'", \
5813 }, \
5814 BLOCK_CRYPTO_OPT_DEF_KEY_SECRET("encrypt.", \
5815 "ID of secret providing qcow AES key or LUKS passphrase"), \
5816 BLOCK_CRYPTO_OPT_DEF_LUKS_CIPHER_ALG("encrypt."), \
5817 BLOCK_CRYPTO_OPT_DEF_LUKS_CIPHER_MODE("encrypt."), \
5818 BLOCK_CRYPTO_OPT_DEF_LUKS_IVGEN_ALG("encrypt."), \
5819 BLOCK_CRYPTO_OPT_DEF_LUKS_IVGEN_HASH_ALG("encrypt."), \
5820 BLOCK_CRYPTO_OPT_DEF_LUKS_HASH_ALG("encrypt."), \
5821 BLOCK_CRYPTO_OPT_DEF_LUKS_ITER_TIME("encrypt."), \
5822 { \
5823 .name = BLOCK_OPT_CLUSTER_SIZE, \
5824 .type = QEMU_OPT_SIZE, \
5825 .help = "qcow2 cluster size", \
5826 .def_value_str = stringify(DEFAULT_CLUSTER_SIZE) \
5827 }, \
7be20252
AG
5828 { \
5829 .name = BLOCK_OPT_EXTL2, \
5830 .type = QEMU_OPT_BOOL, \
5831 .help = "Extended L2 tables", \
5832 .def_value_str = "off" \
5833 }, \
0b6786a9
ML
5834 { \
5835 .name = BLOCK_OPT_PREALLOC, \
5836 .type = QEMU_OPT_STRING, \
5837 .help = "Preallocation mode (allowed values: off, " \
5838 "metadata, falloc, full)" \
5839 }, \
5840 { \
5841 .name = BLOCK_OPT_COMPRESSION_TYPE, \
5842 .type = QEMU_OPT_STRING, \
5843 .help = "Compression method used for image cluster " \
5844 "compression", \
5845 .def_value_str = "zlib" \
5846 },
df373fb0
ML
5847 QCOW_COMMON_OPTIONS,
5848 { /* end of list */ }
5849 }
5850};
5851
5852static QemuOptsList qcow2_amend_opts = {
5853 .name = "qcow2-amend-opts",
5854 .head = QTAILQ_HEAD_INITIALIZER(qcow2_amend_opts.head),
5855 .desc = {
90766d9d
ML
5856 BLOCK_CRYPTO_OPT_DEF_LUKS_STATE("encrypt."),
5857 BLOCK_CRYPTO_OPT_DEF_LUKS_KEYSLOT("encrypt."),
5858 BLOCK_CRYPTO_OPT_DEF_LUKS_OLD_SECRET("encrypt."),
5859 BLOCK_CRYPTO_OPT_DEF_LUKS_NEW_SECRET("encrypt."),
5860 BLOCK_CRYPTO_OPT_DEF_LUKS_ITER_TIME("encrypt."),
df373fb0 5861 QCOW_COMMON_OPTIONS,
1bd0e2d1
CL
5862 { /* end of list */ }
5863 }
20d97356
BS
5864};
5865
2654267c
HR
5866static const char *const qcow2_strong_runtime_opts[] = {
5867 "encrypt." BLOCK_CRYPTO_OPT_QCOW_KEY_SECRET,
5868
5869 NULL
5870};
5871
5f535a94 5872BlockDriver bdrv_qcow2 = {
7c80ab3f 5873 .format_name = "qcow2",
ff99129a 5874 .instance_size = sizeof(BDRVQcow2State),
7c80ab3f
JS
5875 .bdrv_probe = qcow2_probe,
5876 .bdrv_open = qcow2_open,
5877 .bdrv_close = qcow2_close,
21d82ac9 5878 .bdrv_reopen_prepare = qcow2_reopen_prepare,
5b0959a7 5879 .bdrv_reopen_commit = qcow2_reopen_commit,
65eb7c85 5880 .bdrv_reopen_commit_post = qcow2_reopen_commit_post,
5b0959a7 5881 .bdrv_reopen_abort = qcow2_reopen_abort,
5365f44d 5882 .bdrv_join_options = qcow2_join_options,
69dca43d 5883 .bdrv_child_perm = bdrv_default_perms,
efc75e2a 5884 .bdrv_co_create_opts = qcow2_co_create_opts,
b0292b85 5885 .bdrv_co_create = qcow2_co_create,
38841dcd 5886 .bdrv_has_zero_init = qcow2_has_zero_init,
a320fb04 5887 .bdrv_co_block_status = qcow2_co_block_status,
7c80ab3f 5888
df893d25 5889 .bdrv_co_preadv_part = qcow2_co_preadv_part,
5396234b 5890 .bdrv_co_pwritev_part = qcow2_co_pwritev_part,
eb489bb1 5891 .bdrv_co_flush_to_os = qcow2_co_flush_to_os,
419b19d9 5892
5544b59f 5893 .bdrv_co_pwrite_zeroes = qcow2_co_pwrite_zeroes,
82e8a788 5894 .bdrv_co_pdiscard = qcow2_co_pdiscard,
fd9fcd37
FZ
5895 .bdrv_co_copy_range_from = qcow2_co_copy_range_from,
5896 .bdrv_co_copy_range_to = qcow2_co_copy_range_to,
061ca8a3 5897 .bdrv_co_truncate = qcow2_co_truncate,
5396234b 5898 .bdrv_co_pwritev_compressed_part = qcow2_co_pwritev_compressed_part,
491d27e2 5899 .bdrv_make_empty = qcow2_make_empty,
20d97356
BS
5900
5901 .bdrv_snapshot_create = qcow2_snapshot_create,
5902 .bdrv_snapshot_goto = qcow2_snapshot_goto,
5903 .bdrv_snapshot_delete = qcow2_snapshot_delete,
5904 .bdrv_snapshot_list = qcow2_snapshot_list,
1bd0e2d1 5905 .bdrv_snapshot_load_tmp = qcow2_snapshot_load_tmp,
c501c352 5906 .bdrv_measure = qcow2_measure,
1bd0e2d1 5907 .bdrv_get_info = qcow2_get_info,
37764dfb 5908 .bdrv_get_specific_info = qcow2_get_specific_info,
20d97356 5909
7c80ab3f
JS
5910 .bdrv_save_vmstate = qcow2_save_vmstate,
5911 .bdrv_load_vmstate = qcow2_load_vmstate,
20d97356 5912
d67066d8 5913 .is_format = true,
8ee79e70 5914 .supports_backing = true,
20d97356
BS
5915 .bdrv_change_backing_file = qcow2_change_backing_file,
5916
d34682cd 5917 .bdrv_refresh_limits = qcow2_refresh_limits,
2b148f39 5918 .bdrv_co_invalidate_cache = qcow2_co_invalidate_cache,
ec6d8912 5919 .bdrv_inactivate = qcow2_inactivate,
06d9260f 5920
1bd0e2d1 5921 .create_opts = &qcow2_create_opts,
df373fb0 5922 .amend_opts = &qcow2_amend_opts,
2654267c 5923 .strong_runtime_opts = qcow2_strong_runtime_opts,
8a2ce0bc 5924 .mutable_opts = mutable_opts,
2fd61638 5925 .bdrv_co_check = qcow2_co_check,
c282e1fd 5926 .bdrv_amend_options = qcow2_amend_options,
8ea1613d 5927 .bdrv_co_amend = qcow2_co_amend,
279621c0
AG
5928
5929 .bdrv_detach_aio_context = qcow2_detach_aio_context,
5930 .bdrv_attach_aio_context = qcow2_attach_aio_context,
1b6b0562 5931
ef893b5c
EB
5932 .bdrv_supports_persistent_dirty_bitmap =
5933 qcow2_supports_persistent_dirty_bitmap,
d2c3080e
VSO
5934 .bdrv_co_can_store_new_dirty_bitmap = qcow2_co_can_store_new_dirty_bitmap,
5935 .bdrv_co_remove_persistent_dirty_bitmap =
5936 qcow2_co_remove_persistent_dirty_bitmap,
20d97356
BS
5937};
5938
5efa9d5a
AL
5939static void bdrv_qcow2_init(void)
5940{
5941 bdrv_register(&bdrv_qcow2);
5942}
5943
5944block_init(bdrv_qcow2_init);