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