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