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