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