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