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