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