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