1 /* 2 * QEMU System Emulator block driver 3 * 4 * Copyright (c) 2003 Fabrice Bellard 5 * Copyright (c) 2020 Virtuozzo International GmbH. 6 * 7 * Permission is hereby granted, free of charge, to any person obtaining a copy 8 * of this software and associated documentation files (the "Software"), to deal 9 * in the Software without restriction, including without limitation the rights 10 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 11 * copies of the Software, and to permit persons to whom the Software is 12 * furnished to do so, subject to the following conditions: 13 * 14 * The above copyright notice and this permission notice shall be included in 15 * all copies or substantial portions of the Software. 16 * 17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 20 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 23 * THE SOFTWARE. 24 */ 25 26 #include "qemu/osdep.h" 27 #include "block/trace.h" 28 #include "block/block_int.h" 29 #include "block/blockjob.h" 30 #include "block/dirty-bitmap.h" 31 #include "block/fuse.h" 32 #include "block/nbd.h" 33 #include "block/qdict.h" 34 #include "qemu/error-report.h" 35 #include "block/module_block.h" 36 #include "qemu/main-loop.h" 37 #include "qemu/module.h" 38 #include "qapi/error.h" 39 #include "qapi/qmp/qdict.h" 40 #include "qapi/qmp/qjson.h" 41 #include "qapi/qmp/qnull.h" 42 #include "qapi/qmp/qstring.h" 43 #include "qapi/qobject-output-visitor.h" 44 #include "qapi/qapi-visit-block-core.h" 45 #include "sysemu/block-backend.h" 46 #include "qemu/notify.h" 47 #include "qemu/option.h" 48 #include "qemu/coroutine.h" 49 #include "block/qapi.h" 50 #include "qemu/timer.h" 51 #include "qemu/cutils.h" 52 #include "qemu/id.h" 53 #include "qemu/range.h" 54 #include "qemu/rcu.h" 55 #include "block/coroutines.h" 56 57 #ifdef CONFIG_BSD 58 #include <sys/ioctl.h> 59 #include <sys/queue.h> 60 #if defined(HAVE_SYS_DISK_H) 61 #include <sys/disk.h> 62 #endif 63 #endif 64 65 #ifdef _WIN32 66 #include <windows.h> 67 #endif 68 69 #define NOT_DONE 0x7fffffff /* used while emulated sync operation in progress */ 70 71 /* Protected by BQL */ 72 static QTAILQ_HEAD(, BlockDriverState) graph_bdrv_states = 73 QTAILQ_HEAD_INITIALIZER(graph_bdrv_states); 74 75 /* Protected by BQL */ 76 static QTAILQ_HEAD(, BlockDriverState) all_bdrv_states = 77 QTAILQ_HEAD_INITIALIZER(all_bdrv_states); 78 79 /* Protected by BQL */ 80 static QLIST_HEAD(, BlockDriver) bdrv_drivers = 81 QLIST_HEAD_INITIALIZER(bdrv_drivers); 82 83 static BlockDriverState *bdrv_open_inherit(const char *filename, 84 const char *reference, 85 QDict *options, int flags, 86 BlockDriverState *parent, 87 const BdrvChildClass *child_class, 88 BdrvChildRole child_role, 89 Error **errp); 90 91 static bool bdrv_recurse_has_child(BlockDriverState *bs, 92 BlockDriverState *child); 93 94 static void bdrv_replace_child_noperm(BdrvChild *child, 95 BlockDriverState *new_bs); 96 static void bdrv_remove_child(BdrvChild *child, Transaction *tran); 97 98 static int bdrv_reopen_prepare(BDRVReopenState *reopen_state, 99 BlockReopenQueue *queue, 100 Transaction *change_child_tran, Error **errp); 101 static void bdrv_reopen_commit(BDRVReopenState *reopen_state); 102 static void bdrv_reopen_abort(BDRVReopenState *reopen_state); 103 104 static bool bdrv_backing_overridden(BlockDriverState *bs); 105 106 static bool bdrv_change_aio_context(BlockDriverState *bs, AioContext *ctx, 107 GHashTable *visited, Transaction *tran, 108 Error **errp); 109 110 /* If non-zero, use only whitelisted block drivers */ 111 static int use_bdrv_whitelist; 112 113 #ifdef _WIN32 114 static int is_windows_drive_prefix(const char *filename) 115 { 116 return (((filename[0] >= 'a' && filename[0] <= 'z') || 117 (filename[0] >= 'A' && filename[0] <= 'Z')) && 118 filename[1] == ':'); 119 } 120 121 int is_windows_drive(const char *filename) 122 { 123 if (is_windows_drive_prefix(filename) && 124 filename[2] == '\0') 125 return 1; 126 if (strstart(filename, "\\\\.\\", NULL) || 127 strstart(filename, "//./", NULL)) 128 return 1; 129 return 0; 130 } 131 #endif 132 133 size_t bdrv_opt_mem_align(BlockDriverState *bs) 134 { 135 if (!bs || !bs->drv) { 136 /* page size or 4k (hdd sector size) should be on the safe side */ 137 return MAX(4096, qemu_real_host_page_size()); 138 } 139 IO_CODE(); 140 141 return bs->bl.opt_mem_alignment; 142 } 143 144 size_t bdrv_min_mem_align(BlockDriverState *bs) 145 { 146 if (!bs || !bs->drv) { 147 /* page size or 4k (hdd sector size) should be on the safe side */ 148 return MAX(4096, qemu_real_host_page_size()); 149 } 150 IO_CODE(); 151 152 return bs->bl.min_mem_alignment; 153 } 154 155 /* check if the path starts with "<protocol>:" */ 156 int path_has_protocol(const char *path) 157 { 158 const char *p; 159 160 #ifdef _WIN32 161 if (is_windows_drive(path) || 162 is_windows_drive_prefix(path)) { 163 return 0; 164 } 165 p = path + strcspn(path, ":/\\"); 166 #else 167 p = path + strcspn(path, ":/"); 168 #endif 169 170 return *p == ':'; 171 } 172 173 int path_is_absolute(const char *path) 174 { 175 #ifdef _WIN32 176 /* specific case for names like: "\\.\d:" */ 177 if (is_windows_drive(path) || is_windows_drive_prefix(path)) { 178 return 1; 179 } 180 return (*path == '/' || *path == '\\'); 181 #else 182 return (*path == '/'); 183 #endif 184 } 185 186 /* if filename is absolute, just return its duplicate. Otherwise, build a 187 path to it by considering it is relative to base_path. URL are 188 supported. */ 189 char *path_combine(const char *base_path, const char *filename) 190 { 191 const char *protocol_stripped = NULL; 192 const char *p, *p1; 193 char *result; 194 int len; 195 196 if (path_is_absolute(filename)) { 197 return g_strdup(filename); 198 } 199 200 if (path_has_protocol(base_path)) { 201 protocol_stripped = strchr(base_path, ':'); 202 if (protocol_stripped) { 203 protocol_stripped++; 204 } 205 } 206 p = protocol_stripped ?: base_path; 207 208 p1 = strrchr(base_path, '/'); 209 #ifdef _WIN32 210 { 211 const char *p2; 212 p2 = strrchr(base_path, '\\'); 213 if (!p1 || p2 > p1) { 214 p1 = p2; 215 } 216 } 217 #endif 218 if (p1) { 219 p1++; 220 } else { 221 p1 = base_path; 222 } 223 if (p1 > p) { 224 p = p1; 225 } 226 len = p - base_path; 227 228 result = g_malloc(len + strlen(filename) + 1); 229 memcpy(result, base_path, len); 230 strcpy(result + len, filename); 231 232 return result; 233 } 234 235 /* 236 * Helper function for bdrv_parse_filename() implementations to remove optional 237 * protocol prefixes (especially "file:") from a filename and for putting the 238 * stripped filename into the options QDict if there is such a prefix. 239 */ 240 void bdrv_parse_filename_strip_prefix(const char *filename, const char *prefix, 241 QDict *options) 242 { 243 if (strstart(filename, prefix, &filename)) { 244 /* Stripping the explicit protocol prefix may result in a protocol 245 * prefix being (wrongly) detected (if the filename contains a colon) */ 246 if (path_has_protocol(filename)) { 247 GString *fat_filename; 248 249 /* This means there is some colon before the first slash; therefore, 250 * this cannot be an absolute path */ 251 assert(!path_is_absolute(filename)); 252 253 /* And we can thus fix the protocol detection issue by prefixing it 254 * by "./" */ 255 fat_filename = g_string_new("./"); 256 g_string_append(fat_filename, filename); 257 258 assert(!path_has_protocol(fat_filename->str)); 259 260 qdict_put(options, "filename", 261 qstring_from_gstring(fat_filename)); 262 } else { 263 /* If no protocol prefix was detected, we can use the shortened 264 * filename as-is */ 265 qdict_put_str(options, "filename", filename); 266 } 267 } 268 } 269 270 271 /* Returns whether the image file is opened as read-only. Note that this can 272 * return false and writing to the image file is still not possible because the 273 * image is inactivated. */ 274 bool bdrv_is_read_only(BlockDriverState *bs) 275 { 276 IO_CODE(); 277 return !(bs->open_flags & BDRV_O_RDWR); 278 } 279 280 static int bdrv_can_set_read_only(BlockDriverState *bs, bool read_only, 281 bool ignore_allow_rdw, Error **errp) 282 { 283 IO_CODE(); 284 285 /* Do not set read_only if copy_on_read is enabled */ 286 if (bs->copy_on_read && read_only) { 287 error_setg(errp, "Can't set node '%s' to r/o with copy-on-read enabled", 288 bdrv_get_device_or_node_name(bs)); 289 return -EINVAL; 290 } 291 292 /* Do not clear read_only if it is prohibited */ 293 if (!read_only && !(bs->open_flags & BDRV_O_ALLOW_RDWR) && 294 !ignore_allow_rdw) 295 { 296 error_setg(errp, "Node '%s' is read only", 297 bdrv_get_device_or_node_name(bs)); 298 return -EPERM; 299 } 300 301 return 0; 302 } 303 304 /* 305 * Called by a driver that can only provide a read-only image. 306 * 307 * Returns 0 if the node is already read-only or it could switch the node to 308 * read-only because BDRV_O_AUTO_RDONLY is set. 309 * 310 * Returns -EACCES if the node is read-write and BDRV_O_AUTO_RDONLY is not set 311 * or bdrv_can_set_read_only() forbids making the node read-only. If @errmsg 312 * is not NULL, it is used as the error message for the Error object. 313 */ 314 int bdrv_apply_auto_read_only(BlockDriverState *bs, const char *errmsg, 315 Error **errp) 316 { 317 int ret = 0; 318 IO_CODE(); 319 320 if (!(bs->open_flags & BDRV_O_RDWR)) { 321 return 0; 322 } 323 if (!(bs->open_flags & BDRV_O_AUTO_RDONLY)) { 324 goto fail; 325 } 326 327 ret = bdrv_can_set_read_only(bs, true, false, NULL); 328 if (ret < 0) { 329 goto fail; 330 } 331 332 bs->open_flags &= ~BDRV_O_RDWR; 333 334 return 0; 335 336 fail: 337 error_setg(errp, "%s", errmsg ?: "Image is read-only"); 338 return -EACCES; 339 } 340 341 /* 342 * If @backing is empty, this function returns NULL without setting 343 * @errp. In all other cases, NULL will only be returned with @errp 344 * set. 345 * 346 * Therefore, a return value of NULL without @errp set means that 347 * there is no backing file; if @errp is set, there is one but its 348 * absolute filename cannot be generated. 349 */ 350 char *bdrv_get_full_backing_filename_from_filename(const char *backed, 351 const char *backing, 352 Error **errp) 353 { 354 if (backing[0] == '\0') { 355 return NULL; 356 } else if (path_has_protocol(backing) || path_is_absolute(backing)) { 357 return g_strdup(backing); 358 } else if (backed[0] == '\0' || strstart(backed, "json:", NULL)) { 359 error_setg(errp, "Cannot use relative backing file names for '%s'", 360 backed); 361 return NULL; 362 } else { 363 return path_combine(backed, backing); 364 } 365 } 366 367 /* 368 * If @filename is empty or NULL, this function returns NULL without 369 * setting @errp. In all other cases, NULL will only be returned with 370 * @errp set. 371 */ 372 static char *bdrv_make_absolute_filename(BlockDriverState *relative_to, 373 const char *filename, Error **errp) 374 { 375 char *dir, *full_name; 376 377 if (!filename || filename[0] == '\0') { 378 return NULL; 379 } else if (path_has_protocol(filename) || path_is_absolute(filename)) { 380 return g_strdup(filename); 381 } 382 383 dir = bdrv_dirname(relative_to, errp); 384 if (!dir) { 385 return NULL; 386 } 387 388 full_name = g_strconcat(dir, filename, NULL); 389 g_free(dir); 390 return full_name; 391 } 392 393 char *bdrv_get_full_backing_filename(BlockDriverState *bs, Error **errp) 394 { 395 GLOBAL_STATE_CODE(); 396 return bdrv_make_absolute_filename(bs, bs->backing_file, errp); 397 } 398 399 void bdrv_register(BlockDriver *bdrv) 400 { 401 assert(bdrv->format_name); 402 GLOBAL_STATE_CODE(); 403 QLIST_INSERT_HEAD(&bdrv_drivers, bdrv, list); 404 } 405 406 BlockDriverState *bdrv_new(void) 407 { 408 BlockDriverState *bs; 409 int i; 410 411 GLOBAL_STATE_CODE(); 412 413 bs = g_new0(BlockDriverState, 1); 414 QLIST_INIT(&bs->dirty_bitmaps); 415 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) { 416 QLIST_INIT(&bs->op_blockers[i]); 417 } 418 qemu_co_mutex_init(&bs->reqs_lock); 419 qemu_mutex_init(&bs->dirty_bitmap_mutex); 420 bs->refcnt = 1; 421 bs->aio_context = qemu_get_aio_context(); 422 423 qemu_co_queue_init(&bs->flush_queue); 424 425 qemu_co_mutex_init(&bs->bsc_modify_lock); 426 bs->block_status_cache = g_new0(BdrvBlockStatusCache, 1); 427 428 for (i = 0; i < bdrv_drain_all_count; i++) { 429 bdrv_drained_begin(bs); 430 } 431 432 QTAILQ_INSERT_TAIL(&all_bdrv_states, bs, bs_list); 433 434 return bs; 435 } 436 437 static BlockDriver *bdrv_do_find_format(const char *format_name) 438 { 439 BlockDriver *drv1; 440 GLOBAL_STATE_CODE(); 441 442 QLIST_FOREACH(drv1, &bdrv_drivers, list) { 443 if (!strcmp(drv1->format_name, format_name)) { 444 return drv1; 445 } 446 } 447 448 return NULL; 449 } 450 451 BlockDriver *bdrv_find_format(const char *format_name) 452 { 453 BlockDriver *drv1; 454 int i; 455 456 GLOBAL_STATE_CODE(); 457 458 drv1 = bdrv_do_find_format(format_name); 459 if (drv1) { 460 return drv1; 461 } 462 463 /* The driver isn't registered, maybe we need to load a module */ 464 for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) { 465 if (!strcmp(block_driver_modules[i].format_name, format_name)) { 466 Error *local_err = NULL; 467 int rv = block_module_load(block_driver_modules[i].library_name, 468 &local_err); 469 if (rv > 0) { 470 return bdrv_do_find_format(format_name); 471 } else if (rv < 0) { 472 error_report_err(local_err); 473 } 474 break; 475 } 476 } 477 return NULL; 478 } 479 480 static int bdrv_format_is_whitelisted(const char *format_name, bool read_only) 481 { 482 static const char *whitelist_rw[] = { 483 CONFIG_BDRV_RW_WHITELIST 484 NULL 485 }; 486 static const char *whitelist_ro[] = { 487 CONFIG_BDRV_RO_WHITELIST 488 NULL 489 }; 490 const char **p; 491 492 if (!whitelist_rw[0] && !whitelist_ro[0]) { 493 return 1; /* no whitelist, anything goes */ 494 } 495 496 for (p = whitelist_rw; *p; p++) { 497 if (!strcmp(format_name, *p)) { 498 return 1; 499 } 500 } 501 if (read_only) { 502 for (p = whitelist_ro; *p; p++) { 503 if (!strcmp(format_name, *p)) { 504 return 1; 505 } 506 } 507 } 508 return 0; 509 } 510 511 int bdrv_is_whitelisted(BlockDriver *drv, bool read_only) 512 { 513 GLOBAL_STATE_CODE(); 514 return bdrv_format_is_whitelisted(drv->format_name, read_only); 515 } 516 517 bool bdrv_uses_whitelist(void) 518 { 519 return use_bdrv_whitelist; 520 } 521 522 typedef struct CreateCo { 523 BlockDriver *drv; 524 char *filename; 525 QemuOpts *opts; 526 int ret; 527 Error *err; 528 } CreateCo; 529 530 int coroutine_fn bdrv_co_create(BlockDriver *drv, const char *filename, 531 QemuOpts *opts, Error **errp) 532 { 533 int ret; 534 GLOBAL_STATE_CODE(); 535 ERRP_GUARD(); 536 assert_bdrv_graph_readable(); 537 538 if (!drv->bdrv_co_create_opts) { 539 error_setg(errp, "Driver '%s' does not support image creation", 540 drv->format_name); 541 return -ENOTSUP; 542 } 543 544 ret = drv->bdrv_co_create_opts(drv, filename, opts, errp); 545 if (ret < 0 && !*errp) { 546 error_setg_errno(errp, -ret, "Could not create image"); 547 } 548 549 return ret; 550 } 551 552 /** 553 * Helper function for bdrv_create_file_fallback(): Resize @blk to at 554 * least the given @minimum_size. 555 * 556 * On success, return @blk's actual length. 557 * Otherwise, return -errno. 558 */ 559 static int64_t create_file_fallback_truncate(BlockBackend *blk, 560 int64_t minimum_size, Error **errp) 561 { 562 Error *local_err = NULL; 563 int64_t size; 564 int ret; 565 566 GLOBAL_STATE_CODE(); 567 568 ret = blk_truncate(blk, minimum_size, false, PREALLOC_MODE_OFF, 0, 569 &local_err); 570 if (ret < 0 && ret != -ENOTSUP) { 571 error_propagate(errp, local_err); 572 return ret; 573 } 574 575 size = blk_getlength(blk); 576 if (size < 0) { 577 error_free(local_err); 578 error_setg_errno(errp, -size, 579 "Failed to inquire the new image file's length"); 580 return size; 581 } 582 583 if (size < minimum_size) { 584 /* Need to grow the image, but we failed to do that */ 585 error_propagate(errp, local_err); 586 return -ENOTSUP; 587 } 588 589 error_free(local_err); 590 local_err = NULL; 591 592 return size; 593 } 594 595 /** 596 * Helper function for bdrv_create_file_fallback(): Zero the first 597 * sector to remove any potentially pre-existing image header. 598 */ 599 static int coroutine_fn 600 create_file_fallback_zero_first_sector(BlockBackend *blk, 601 int64_t current_size, 602 Error **errp) 603 { 604 int64_t bytes_to_clear; 605 int ret; 606 607 GLOBAL_STATE_CODE(); 608 609 bytes_to_clear = MIN(current_size, BDRV_SECTOR_SIZE); 610 if (bytes_to_clear) { 611 ret = blk_co_pwrite_zeroes(blk, 0, bytes_to_clear, BDRV_REQ_MAY_UNMAP); 612 if (ret < 0) { 613 error_setg_errno(errp, -ret, 614 "Failed to clear the new image's first sector"); 615 return ret; 616 } 617 } 618 619 return 0; 620 } 621 622 /** 623 * Simple implementation of bdrv_co_create_opts for protocol drivers 624 * which only support creation via opening a file 625 * (usually existing raw storage device) 626 */ 627 int coroutine_fn bdrv_co_create_opts_simple(BlockDriver *drv, 628 const char *filename, 629 QemuOpts *opts, 630 Error **errp) 631 { 632 BlockBackend *blk; 633 QDict *options; 634 int64_t size = 0; 635 char *buf = NULL; 636 PreallocMode prealloc; 637 Error *local_err = NULL; 638 int ret; 639 640 GLOBAL_STATE_CODE(); 641 642 size = qemu_opt_get_size_del(opts, BLOCK_OPT_SIZE, 0); 643 buf = qemu_opt_get_del(opts, BLOCK_OPT_PREALLOC); 644 prealloc = qapi_enum_parse(&PreallocMode_lookup, buf, 645 PREALLOC_MODE_OFF, &local_err); 646 g_free(buf); 647 if (local_err) { 648 error_propagate(errp, local_err); 649 return -EINVAL; 650 } 651 652 if (prealloc != PREALLOC_MODE_OFF) { 653 error_setg(errp, "Unsupported preallocation mode '%s'", 654 PreallocMode_str(prealloc)); 655 return -ENOTSUP; 656 } 657 658 options = qdict_new(); 659 qdict_put_str(options, "driver", drv->format_name); 660 661 blk = blk_co_new_open(filename, NULL, options, 662 BDRV_O_RDWR | BDRV_O_RESIZE, errp); 663 if (!blk) { 664 error_prepend(errp, "Protocol driver '%s' does not support image " 665 "creation, and opening the image failed: ", 666 drv->format_name); 667 return -EINVAL; 668 } 669 670 size = create_file_fallback_truncate(blk, size, errp); 671 if (size < 0) { 672 ret = size; 673 goto out; 674 } 675 676 ret = create_file_fallback_zero_first_sector(blk, size, errp); 677 if (ret < 0) { 678 goto out; 679 } 680 681 ret = 0; 682 out: 683 blk_unref(blk); 684 return ret; 685 } 686 687 int coroutine_fn bdrv_co_create_file(const char *filename, QemuOpts *opts, 688 Error **errp) 689 { 690 QemuOpts *protocol_opts; 691 BlockDriver *drv; 692 QDict *qdict; 693 int ret; 694 695 GLOBAL_STATE_CODE(); 696 697 drv = bdrv_find_protocol(filename, true, errp); 698 if (drv == NULL) { 699 return -ENOENT; 700 } 701 702 if (!drv->create_opts) { 703 error_setg(errp, "Driver '%s' does not support image creation", 704 drv->format_name); 705 return -ENOTSUP; 706 } 707 708 /* 709 * 'opts' contains a QemuOptsList with a combination of format and protocol 710 * default values. 711 * 712 * The format properly removes its options, but the default values remain 713 * in 'opts->list'. So if the protocol has options with the same name 714 * (e.g. rbd has 'cluster_size' as qcow2), it will see the default values 715 * of the format, since for overlapping options, the format wins. 716 * 717 * To avoid this issue, lets convert QemuOpts to QDict, in this way we take 718 * only the set options, and then convert it back to QemuOpts, using the 719 * create_opts of the protocol. So the new QemuOpts, will contain only the 720 * protocol defaults. 721 */ 722 qdict = qemu_opts_to_qdict(opts, NULL); 723 protocol_opts = qemu_opts_from_qdict(drv->create_opts, qdict, errp); 724 if (protocol_opts == NULL) { 725 ret = -EINVAL; 726 goto out; 727 } 728 729 ret = bdrv_co_create(drv, filename, protocol_opts, errp); 730 out: 731 qemu_opts_del(protocol_opts); 732 qobject_unref(qdict); 733 return ret; 734 } 735 736 int coroutine_fn bdrv_co_delete_file(BlockDriverState *bs, Error **errp) 737 { 738 Error *local_err = NULL; 739 int ret; 740 741 IO_CODE(); 742 assert(bs != NULL); 743 744 if (!bs->drv) { 745 error_setg(errp, "Block node '%s' is not opened", bs->filename); 746 return -ENOMEDIUM; 747 } 748 749 if (!bs->drv->bdrv_co_delete_file) { 750 error_setg(errp, "Driver '%s' does not support image deletion", 751 bs->drv->format_name); 752 return -ENOTSUP; 753 } 754 755 ret = bs->drv->bdrv_co_delete_file(bs, &local_err); 756 if (ret < 0) { 757 error_propagate(errp, local_err); 758 } 759 760 return ret; 761 } 762 763 void coroutine_fn bdrv_co_delete_file_noerr(BlockDriverState *bs) 764 { 765 Error *local_err = NULL; 766 int ret; 767 IO_CODE(); 768 769 if (!bs) { 770 return; 771 } 772 773 ret = bdrv_co_delete_file(bs, &local_err); 774 /* 775 * ENOTSUP will happen if the block driver doesn't support 776 * the 'bdrv_co_delete_file' interface. This is a predictable 777 * scenario and shouldn't be reported back to the user. 778 */ 779 if (ret == -ENOTSUP) { 780 error_free(local_err); 781 } else if (ret < 0) { 782 error_report_err(local_err); 783 } 784 } 785 786 /** 787 * Try to get @bs's logical and physical block size. 788 * On success, store them in @bsz struct and return 0. 789 * On failure return -errno. 790 * @bs must not be empty. 791 */ 792 int bdrv_probe_blocksizes(BlockDriverState *bs, BlockSizes *bsz) 793 { 794 BlockDriver *drv = bs->drv; 795 BlockDriverState *filtered = bdrv_filter_bs(bs); 796 GLOBAL_STATE_CODE(); 797 798 if (drv && drv->bdrv_probe_blocksizes) { 799 return drv->bdrv_probe_blocksizes(bs, bsz); 800 } else if (filtered) { 801 return bdrv_probe_blocksizes(filtered, bsz); 802 } 803 804 return -ENOTSUP; 805 } 806 807 /** 808 * Try to get @bs's geometry (cyls, heads, sectors). 809 * On success, store them in @geo struct and return 0. 810 * On failure return -errno. 811 * @bs must not be empty. 812 */ 813 int bdrv_probe_geometry(BlockDriverState *bs, HDGeometry *geo) 814 { 815 BlockDriver *drv = bs->drv; 816 BlockDriverState *filtered = bdrv_filter_bs(bs); 817 GLOBAL_STATE_CODE(); 818 819 if (drv && drv->bdrv_probe_geometry) { 820 return drv->bdrv_probe_geometry(bs, geo); 821 } else if (filtered) { 822 return bdrv_probe_geometry(filtered, geo); 823 } 824 825 return -ENOTSUP; 826 } 827 828 /* 829 * Create a uniquely-named empty temporary file. 830 * Return the actual file name used upon success, otherwise NULL. 831 * This string should be freed with g_free() when not needed any longer. 832 * 833 * Note: creating a temporary file for the caller to (re)open is 834 * inherently racy. Use g_file_open_tmp() instead whenever practical. 835 */ 836 char *create_tmp_file(Error **errp) 837 { 838 int fd; 839 const char *tmpdir; 840 g_autofree char *filename = NULL; 841 842 tmpdir = g_get_tmp_dir(); 843 #ifndef _WIN32 844 /* 845 * See commit 69bef79 ("block: use /var/tmp instead of /tmp for -snapshot") 846 * 847 * This function is used to create temporary disk images (like -snapshot), 848 * so the files can become very large. /tmp is often a tmpfs where as 849 * /var/tmp is usually on a disk, so more appropriate for disk images. 850 */ 851 if (!g_strcmp0(tmpdir, "/tmp")) { 852 tmpdir = "/var/tmp"; 853 } 854 #endif 855 856 filename = g_strdup_printf("%s/vl.XXXXXX", tmpdir); 857 fd = g_mkstemp(filename); 858 if (fd < 0) { 859 error_setg_errno(errp, errno, "Could not open temporary file '%s'", 860 filename); 861 return NULL; 862 } 863 close(fd); 864 865 return g_steal_pointer(&filename); 866 } 867 868 /* 869 * Detect host devices. By convention, /dev/cdrom[N] is always 870 * recognized as a host CDROM. 871 */ 872 static BlockDriver *find_hdev_driver(const char *filename) 873 { 874 int score_max = 0, score; 875 BlockDriver *drv = NULL, *d; 876 GLOBAL_STATE_CODE(); 877 878 QLIST_FOREACH(d, &bdrv_drivers, list) { 879 if (d->bdrv_probe_device) { 880 score = d->bdrv_probe_device(filename); 881 if (score > score_max) { 882 score_max = score; 883 drv = d; 884 } 885 } 886 } 887 888 return drv; 889 } 890 891 static BlockDriver *bdrv_do_find_protocol(const char *protocol) 892 { 893 BlockDriver *drv1; 894 GLOBAL_STATE_CODE(); 895 896 QLIST_FOREACH(drv1, &bdrv_drivers, list) { 897 if (drv1->protocol_name && !strcmp(drv1->protocol_name, protocol)) { 898 return drv1; 899 } 900 } 901 902 return NULL; 903 } 904 905 BlockDriver *bdrv_find_protocol(const char *filename, 906 bool allow_protocol_prefix, 907 Error **errp) 908 { 909 BlockDriver *drv1; 910 char protocol[128]; 911 int len; 912 const char *p; 913 int i; 914 915 GLOBAL_STATE_CODE(); 916 /* TODO Drivers without bdrv_file_open must be specified explicitly */ 917 918 /* 919 * XXX(hch): we really should not let host device detection 920 * override an explicit protocol specification, but moving this 921 * later breaks access to device names with colons in them. 922 * Thanks to the brain-dead persistent naming schemes on udev- 923 * based Linux systems those actually are quite common. 924 */ 925 drv1 = find_hdev_driver(filename); 926 if (drv1) { 927 return drv1; 928 } 929 930 if (!path_has_protocol(filename) || !allow_protocol_prefix) { 931 return &bdrv_file; 932 } 933 934 p = strchr(filename, ':'); 935 assert(p != NULL); 936 len = p - filename; 937 if (len > sizeof(protocol) - 1) 938 len = sizeof(protocol) - 1; 939 memcpy(protocol, filename, len); 940 protocol[len] = '\0'; 941 942 drv1 = bdrv_do_find_protocol(protocol); 943 if (drv1) { 944 return drv1; 945 } 946 947 for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) { 948 if (block_driver_modules[i].protocol_name && 949 !strcmp(block_driver_modules[i].protocol_name, protocol)) { 950 int rv = block_module_load(block_driver_modules[i].library_name, errp); 951 if (rv > 0) { 952 drv1 = bdrv_do_find_protocol(protocol); 953 } else if (rv < 0) { 954 return NULL; 955 } 956 break; 957 } 958 } 959 960 if (!drv1) { 961 error_setg(errp, "Unknown protocol '%s'", protocol); 962 } 963 return drv1; 964 } 965 966 /* 967 * Guess image format by probing its contents. 968 * This is not a good idea when your image is raw (CVE-2008-2004), but 969 * we do it anyway for backward compatibility. 970 * 971 * @buf contains the image's first @buf_size bytes. 972 * @buf_size is the buffer size in bytes (generally BLOCK_PROBE_BUF_SIZE, 973 * but can be smaller if the image file is smaller) 974 * @filename is its filename. 975 * 976 * For all block drivers, call the bdrv_probe() method to get its 977 * probing score. 978 * Return the first block driver with the highest probing score. 979 */ 980 BlockDriver *bdrv_probe_all(const uint8_t *buf, int buf_size, 981 const char *filename) 982 { 983 int score_max = 0, score; 984 BlockDriver *drv = NULL, *d; 985 IO_CODE(); 986 987 QLIST_FOREACH(d, &bdrv_drivers, list) { 988 if (d->bdrv_probe) { 989 score = d->bdrv_probe(buf, buf_size, filename); 990 if (score > score_max) { 991 score_max = score; 992 drv = d; 993 } 994 } 995 } 996 997 return drv; 998 } 999 1000 static int find_image_format(BlockBackend *file, const char *filename, 1001 BlockDriver **pdrv, Error **errp) 1002 { 1003 BlockDriver *drv; 1004 uint8_t buf[BLOCK_PROBE_BUF_SIZE]; 1005 int ret = 0; 1006 1007 GLOBAL_STATE_CODE(); 1008 1009 /* Return the raw BlockDriver * to scsi-generic devices or empty drives */ 1010 if (blk_is_sg(file) || !blk_is_inserted(file) || blk_getlength(file) == 0) { 1011 *pdrv = &bdrv_raw; 1012 return ret; 1013 } 1014 1015 ret = blk_pread(file, 0, sizeof(buf), buf, 0); 1016 if (ret < 0) { 1017 error_setg_errno(errp, -ret, "Could not read image for determining its " 1018 "format"); 1019 *pdrv = NULL; 1020 return ret; 1021 } 1022 1023 drv = bdrv_probe_all(buf, sizeof(buf), filename); 1024 if (!drv) { 1025 error_setg(errp, "Could not determine image format: No compatible " 1026 "driver found"); 1027 *pdrv = NULL; 1028 return -ENOENT; 1029 } 1030 1031 *pdrv = drv; 1032 return 0; 1033 } 1034 1035 /** 1036 * Set the current 'total_sectors' value 1037 * Return 0 on success, -errno on error. 1038 */ 1039 int coroutine_fn bdrv_co_refresh_total_sectors(BlockDriverState *bs, 1040 int64_t hint) 1041 { 1042 BlockDriver *drv = bs->drv; 1043 IO_CODE(); 1044 1045 if (!drv) { 1046 return -ENOMEDIUM; 1047 } 1048 1049 /* Do not attempt drv->bdrv_co_getlength() on scsi-generic devices */ 1050 if (bdrv_is_sg(bs)) 1051 return 0; 1052 1053 /* query actual device if possible, otherwise just trust the hint */ 1054 if (drv->bdrv_co_getlength) { 1055 int64_t length = drv->bdrv_co_getlength(bs); 1056 if (length < 0) { 1057 return length; 1058 } 1059 hint = DIV_ROUND_UP(length, BDRV_SECTOR_SIZE); 1060 } 1061 1062 bs->total_sectors = hint; 1063 1064 if (bs->total_sectors * BDRV_SECTOR_SIZE > BDRV_MAX_LENGTH) { 1065 return -EFBIG; 1066 } 1067 1068 return 0; 1069 } 1070 1071 /** 1072 * Combines a QDict of new block driver @options with any missing options taken 1073 * from @old_options, so that leaving out an option defaults to its old value. 1074 */ 1075 static void bdrv_join_options(BlockDriverState *bs, QDict *options, 1076 QDict *old_options) 1077 { 1078 GLOBAL_STATE_CODE(); 1079 if (bs->drv && bs->drv->bdrv_join_options) { 1080 bs->drv->bdrv_join_options(options, old_options); 1081 } else { 1082 qdict_join(options, old_options, false); 1083 } 1084 } 1085 1086 static BlockdevDetectZeroesOptions bdrv_parse_detect_zeroes(QemuOpts *opts, 1087 int open_flags, 1088 Error **errp) 1089 { 1090 Error *local_err = NULL; 1091 char *value = qemu_opt_get_del(opts, "detect-zeroes"); 1092 BlockdevDetectZeroesOptions detect_zeroes = 1093 qapi_enum_parse(&BlockdevDetectZeroesOptions_lookup, value, 1094 BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF, &local_err); 1095 GLOBAL_STATE_CODE(); 1096 g_free(value); 1097 if (local_err) { 1098 error_propagate(errp, local_err); 1099 return detect_zeroes; 1100 } 1101 1102 if (detect_zeroes == BLOCKDEV_DETECT_ZEROES_OPTIONS_UNMAP && 1103 !(open_flags & BDRV_O_UNMAP)) 1104 { 1105 error_setg(errp, "setting detect-zeroes to unmap is not allowed " 1106 "without setting discard operation to unmap"); 1107 } 1108 1109 return detect_zeroes; 1110 } 1111 1112 /** 1113 * Set open flags for aio engine 1114 * 1115 * Return 0 on success, -1 if the engine specified is invalid 1116 */ 1117 int bdrv_parse_aio(const char *mode, int *flags) 1118 { 1119 if (!strcmp(mode, "threads")) { 1120 /* do nothing, default */ 1121 } else if (!strcmp(mode, "native")) { 1122 *flags |= BDRV_O_NATIVE_AIO; 1123 #ifdef CONFIG_LINUX_IO_URING 1124 } else if (!strcmp(mode, "io_uring")) { 1125 *flags |= BDRV_O_IO_URING; 1126 #endif 1127 } else { 1128 return -1; 1129 } 1130 1131 return 0; 1132 } 1133 1134 /** 1135 * Set open flags for a given discard mode 1136 * 1137 * Return 0 on success, -1 if the discard mode was invalid. 1138 */ 1139 int bdrv_parse_discard_flags(const char *mode, int *flags) 1140 { 1141 *flags &= ~BDRV_O_UNMAP; 1142 1143 if (!strcmp(mode, "off") || !strcmp(mode, "ignore")) { 1144 /* do nothing */ 1145 } else if (!strcmp(mode, "on") || !strcmp(mode, "unmap")) { 1146 *flags |= BDRV_O_UNMAP; 1147 } else { 1148 return -1; 1149 } 1150 1151 return 0; 1152 } 1153 1154 /** 1155 * Set open flags for a given cache mode 1156 * 1157 * Return 0 on success, -1 if the cache mode was invalid. 1158 */ 1159 int bdrv_parse_cache_mode(const char *mode, int *flags, bool *writethrough) 1160 { 1161 *flags &= ~BDRV_O_CACHE_MASK; 1162 1163 if (!strcmp(mode, "off") || !strcmp(mode, "none")) { 1164 *writethrough = false; 1165 *flags |= BDRV_O_NOCACHE; 1166 } else if (!strcmp(mode, "directsync")) { 1167 *writethrough = true; 1168 *flags |= BDRV_O_NOCACHE; 1169 } else if (!strcmp(mode, "writeback")) { 1170 *writethrough = false; 1171 } else if (!strcmp(mode, "unsafe")) { 1172 *writethrough = false; 1173 *flags |= BDRV_O_NO_FLUSH; 1174 } else if (!strcmp(mode, "writethrough")) { 1175 *writethrough = true; 1176 } else { 1177 return -1; 1178 } 1179 1180 return 0; 1181 } 1182 1183 static char *bdrv_child_get_parent_desc(BdrvChild *c) 1184 { 1185 BlockDriverState *parent = c->opaque; 1186 return g_strdup_printf("node '%s'", bdrv_get_node_name(parent)); 1187 } 1188 1189 static void bdrv_child_cb_drained_begin(BdrvChild *child) 1190 { 1191 BlockDriverState *bs = child->opaque; 1192 bdrv_do_drained_begin_quiesce(bs, NULL); 1193 } 1194 1195 static bool bdrv_child_cb_drained_poll(BdrvChild *child) 1196 { 1197 BlockDriverState *bs = child->opaque; 1198 return bdrv_drain_poll(bs, NULL, false); 1199 } 1200 1201 static void bdrv_child_cb_drained_end(BdrvChild *child) 1202 { 1203 BlockDriverState *bs = child->opaque; 1204 bdrv_drained_end(bs); 1205 } 1206 1207 static int bdrv_child_cb_inactivate(BdrvChild *child) 1208 { 1209 BlockDriverState *bs = child->opaque; 1210 GLOBAL_STATE_CODE(); 1211 assert(bs->open_flags & BDRV_O_INACTIVE); 1212 return 0; 1213 } 1214 1215 static bool bdrv_child_cb_change_aio_ctx(BdrvChild *child, AioContext *ctx, 1216 GHashTable *visited, Transaction *tran, 1217 Error **errp) 1218 { 1219 BlockDriverState *bs = child->opaque; 1220 return bdrv_change_aio_context(bs, ctx, visited, tran, errp); 1221 } 1222 1223 /* 1224 * Returns the options and flags that a temporary snapshot should get, based on 1225 * the originally requested flags (the originally requested image will have 1226 * flags like a backing file) 1227 */ 1228 static void bdrv_temp_snapshot_options(int *child_flags, QDict *child_options, 1229 int parent_flags, QDict *parent_options) 1230 { 1231 GLOBAL_STATE_CODE(); 1232 *child_flags = (parent_flags & ~BDRV_O_SNAPSHOT) | BDRV_O_TEMPORARY; 1233 1234 /* For temporary files, unconditional cache=unsafe is fine */ 1235 qdict_set_default_str(child_options, BDRV_OPT_CACHE_DIRECT, "off"); 1236 qdict_set_default_str(child_options, BDRV_OPT_CACHE_NO_FLUSH, "on"); 1237 1238 /* Copy the read-only and discard options from the parent */ 1239 qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY); 1240 qdict_copy_default(child_options, parent_options, BDRV_OPT_DISCARD); 1241 1242 /* aio=native doesn't work for cache.direct=off, so disable it for the 1243 * temporary snapshot */ 1244 *child_flags &= ~BDRV_O_NATIVE_AIO; 1245 } 1246 1247 static void bdrv_backing_attach(BdrvChild *c) 1248 { 1249 BlockDriverState *parent = c->opaque; 1250 BlockDriverState *backing_hd = c->bs; 1251 1252 GLOBAL_STATE_CODE(); 1253 assert(!parent->backing_blocker); 1254 error_setg(&parent->backing_blocker, 1255 "node is used as backing hd of '%s'", 1256 bdrv_get_device_or_node_name(parent)); 1257 1258 bdrv_refresh_filename(backing_hd); 1259 1260 parent->open_flags &= ~BDRV_O_NO_BACKING; 1261 1262 bdrv_op_block_all(backing_hd, parent->backing_blocker); 1263 /* Otherwise we won't be able to commit or stream */ 1264 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_COMMIT_TARGET, 1265 parent->backing_blocker); 1266 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_STREAM, 1267 parent->backing_blocker); 1268 /* 1269 * We do backup in 3 ways: 1270 * 1. drive backup 1271 * The target bs is new opened, and the source is top BDS 1272 * 2. blockdev backup 1273 * Both the source and the target are top BDSes. 1274 * 3. internal backup(used for block replication) 1275 * Both the source and the target are backing file 1276 * 1277 * In case 1 and 2, neither the source nor the target is the backing file. 1278 * In case 3, we will block the top BDS, so there is only one block job 1279 * for the top BDS and its backing chain. 1280 */ 1281 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_SOURCE, 1282 parent->backing_blocker); 1283 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_TARGET, 1284 parent->backing_blocker); 1285 } 1286 1287 static void bdrv_backing_detach(BdrvChild *c) 1288 { 1289 BlockDriverState *parent = c->opaque; 1290 1291 GLOBAL_STATE_CODE(); 1292 assert(parent->backing_blocker); 1293 bdrv_op_unblock_all(c->bs, parent->backing_blocker); 1294 error_free(parent->backing_blocker); 1295 parent->backing_blocker = NULL; 1296 } 1297 1298 static int bdrv_backing_update_filename(BdrvChild *c, BlockDriverState *base, 1299 const char *filename, Error **errp) 1300 { 1301 BlockDriverState *parent = c->opaque; 1302 bool read_only = bdrv_is_read_only(parent); 1303 int ret; 1304 GLOBAL_STATE_CODE(); 1305 1306 if (read_only) { 1307 ret = bdrv_reopen_set_read_only(parent, false, errp); 1308 if (ret < 0) { 1309 return ret; 1310 } 1311 } 1312 1313 ret = bdrv_change_backing_file(parent, filename, 1314 base->drv ? base->drv->format_name : "", 1315 false); 1316 if (ret < 0) { 1317 error_setg_errno(errp, -ret, "Could not update backing file link"); 1318 } 1319 1320 if (read_only) { 1321 bdrv_reopen_set_read_only(parent, true, NULL); 1322 } 1323 1324 return ret; 1325 } 1326 1327 /* 1328 * Returns the options and flags that a generic child of a BDS should 1329 * get, based on the given options and flags for the parent BDS. 1330 */ 1331 static void bdrv_inherited_options(BdrvChildRole role, bool parent_is_format, 1332 int *child_flags, QDict *child_options, 1333 int parent_flags, QDict *parent_options) 1334 { 1335 int flags = parent_flags; 1336 GLOBAL_STATE_CODE(); 1337 1338 /* 1339 * First, decide whether to set, clear, or leave BDRV_O_PROTOCOL. 1340 * Generally, the question to answer is: Should this child be 1341 * format-probed by default? 1342 */ 1343 1344 /* 1345 * Pure and non-filtered data children of non-format nodes should 1346 * be probed by default (even when the node itself has BDRV_O_PROTOCOL 1347 * set). This only affects a very limited set of drivers (namely 1348 * quorum and blkverify when this comment was written). 1349 * Force-clear BDRV_O_PROTOCOL then. 1350 */ 1351 if (!parent_is_format && 1352 (role & BDRV_CHILD_DATA) && 1353 !(role & (BDRV_CHILD_METADATA | BDRV_CHILD_FILTERED))) 1354 { 1355 flags &= ~BDRV_O_PROTOCOL; 1356 } 1357 1358 /* 1359 * All children of format nodes (except for COW children) and all 1360 * metadata children in general should never be format-probed. 1361 * Force-set BDRV_O_PROTOCOL then. 1362 */ 1363 if ((parent_is_format && !(role & BDRV_CHILD_COW)) || 1364 (role & BDRV_CHILD_METADATA)) 1365 { 1366 flags |= BDRV_O_PROTOCOL; 1367 } 1368 1369 /* 1370 * If the cache mode isn't explicitly set, inherit direct and no-flush from 1371 * the parent. 1372 */ 1373 qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_DIRECT); 1374 qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_NO_FLUSH); 1375 qdict_copy_default(child_options, parent_options, BDRV_OPT_FORCE_SHARE); 1376 1377 if (role & BDRV_CHILD_COW) { 1378 /* backing files are opened read-only by default */ 1379 qdict_set_default_str(child_options, BDRV_OPT_READ_ONLY, "on"); 1380 qdict_set_default_str(child_options, BDRV_OPT_AUTO_READ_ONLY, "off"); 1381 } else { 1382 /* Inherit the read-only option from the parent if it's not set */ 1383 qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY); 1384 qdict_copy_default(child_options, parent_options, 1385 BDRV_OPT_AUTO_READ_ONLY); 1386 } 1387 1388 /* 1389 * bdrv_co_pdiscard() respects unmap policy for the parent, so we 1390 * can default to enable it on lower layers regardless of the 1391 * parent option. 1392 */ 1393 qdict_set_default_str(child_options, BDRV_OPT_DISCARD, "unmap"); 1394 1395 /* Clear flags that only apply to the top layer */ 1396 flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_COPY_ON_READ); 1397 1398 if (role & BDRV_CHILD_METADATA) { 1399 flags &= ~BDRV_O_NO_IO; 1400 } 1401 if (role & BDRV_CHILD_COW) { 1402 flags &= ~BDRV_O_TEMPORARY; 1403 } 1404 1405 *child_flags = flags; 1406 } 1407 1408 static void GRAPH_WRLOCK bdrv_child_cb_attach(BdrvChild *child) 1409 { 1410 BlockDriverState *bs = child->opaque; 1411 1412 assert_bdrv_graph_writable(); 1413 QLIST_INSERT_HEAD(&bs->children, child, next); 1414 if (bs->drv->is_filter || (child->role & BDRV_CHILD_FILTERED)) { 1415 /* 1416 * Here we handle filters and block/raw-format.c when it behave like 1417 * filter. They generally have a single PRIMARY child, which is also the 1418 * FILTERED child, and that they may have multiple more children, which 1419 * are neither PRIMARY nor FILTERED. And never we have a COW child here. 1420 * So bs->file will be the PRIMARY child, unless the PRIMARY child goes 1421 * into bs->backing on exceptional cases; and bs->backing will be 1422 * nothing else. 1423 */ 1424 assert(!(child->role & BDRV_CHILD_COW)); 1425 if (child->role & BDRV_CHILD_PRIMARY) { 1426 assert(child->role & BDRV_CHILD_FILTERED); 1427 assert(!bs->backing); 1428 assert(!bs->file); 1429 1430 if (bs->drv->filtered_child_is_backing) { 1431 bs->backing = child; 1432 } else { 1433 bs->file = child; 1434 } 1435 } else { 1436 assert(!(child->role & BDRV_CHILD_FILTERED)); 1437 } 1438 } else if (child->role & BDRV_CHILD_COW) { 1439 assert(bs->drv->supports_backing); 1440 assert(!(child->role & BDRV_CHILD_PRIMARY)); 1441 assert(!bs->backing); 1442 bs->backing = child; 1443 bdrv_backing_attach(child); 1444 } else if (child->role & BDRV_CHILD_PRIMARY) { 1445 assert(!bs->file); 1446 bs->file = child; 1447 } 1448 } 1449 1450 static void GRAPH_WRLOCK bdrv_child_cb_detach(BdrvChild *child) 1451 { 1452 BlockDriverState *bs = child->opaque; 1453 1454 if (child->role & BDRV_CHILD_COW) { 1455 bdrv_backing_detach(child); 1456 } 1457 1458 assert_bdrv_graph_writable(); 1459 QLIST_REMOVE(child, next); 1460 if (child == bs->backing) { 1461 assert(child != bs->file); 1462 bs->backing = NULL; 1463 } else if (child == bs->file) { 1464 bs->file = NULL; 1465 } 1466 } 1467 1468 static int bdrv_child_cb_update_filename(BdrvChild *c, BlockDriverState *base, 1469 const char *filename, Error **errp) 1470 { 1471 if (c->role & BDRV_CHILD_COW) { 1472 return bdrv_backing_update_filename(c, base, filename, errp); 1473 } 1474 return 0; 1475 } 1476 1477 AioContext *child_of_bds_get_parent_aio_context(BdrvChild *c) 1478 { 1479 BlockDriverState *bs = c->opaque; 1480 IO_CODE(); 1481 1482 return bdrv_get_aio_context(bs); 1483 } 1484 1485 const BdrvChildClass child_of_bds = { 1486 .parent_is_bds = true, 1487 .get_parent_desc = bdrv_child_get_parent_desc, 1488 .inherit_options = bdrv_inherited_options, 1489 .drained_begin = bdrv_child_cb_drained_begin, 1490 .drained_poll = bdrv_child_cb_drained_poll, 1491 .drained_end = bdrv_child_cb_drained_end, 1492 .attach = bdrv_child_cb_attach, 1493 .detach = bdrv_child_cb_detach, 1494 .inactivate = bdrv_child_cb_inactivate, 1495 .change_aio_ctx = bdrv_child_cb_change_aio_ctx, 1496 .update_filename = bdrv_child_cb_update_filename, 1497 .get_parent_aio_context = child_of_bds_get_parent_aio_context, 1498 }; 1499 1500 AioContext *bdrv_child_get_parent_aio_context(BdrvChild *c) 1501 { 1502 IO_CODE(); 1503 return c->klass->get_parent_aio_context(c); 1504 } 1505 1506 static int bdrv_open_flags(BlockDriverState *bs, int flags) 1507 { 1508 int open_flags = flags; 1509 GLOBAL_STATE_CODE(); 1510 1511 /* 1512 * Clear flags that are internal to the block layer before opening the 1513 * image. 1514 */ 1515 open_flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_PROTOCOL); 1516 1517 return open_flags; 1518 } 1519 1520 static void update_flags_from_options(int *flags, QemuOpts *opts) 1521 { 1522 GLOBAL_STATE_CODE(); 1523 1524 *flags &= ~(BDRV_O_CACHE_MASK | BDRV_O_RDWR | BDRV_O_AUTO_RDONLY); 1525 1526 if (qemu_opt_get_bool_del(opts, BDRV_OPT_CACHE_NO_FLUSH, false)) { 1527 *flags |= BDRV_O_NO_FLUSH; 1528 } 1529 1530 if (qemu_opt_get_bool_del(opts, BDRV_OPT_CACHE_DIRECT, false)) { 1531 *flags |= BDRV_O_NOCACHE; 1532 } 1533 1534 if (!qemu_opt_get_bool_del(opts, BDRV_OPT_READ_ONLY, false)) { 1535 *flags |= BDRV_O_RDWR; 1536 } 1537 1538 if (qemu_opt_get_bool_del(opts, BDRV_OPT_AUTO_READ_ONLY, false)) { 1539 *flags |= BDRV_O_AUTO_RDONLY; 1540 } 1541 } 1542 1543 static void update_options_from_flags(QDict *options, int flags) 1544 { 1545 GLOBAL_STATE_CODE(); 1546 if (!qdict_haskey(options, BDRV_OPT_CACHE_DIRECT)) { 1547 qdict_put_bool(options, BDRV_OPT_CACHE_DIRECT, flags & BDRV_O_NOCACHE); 1548 } 1549 if (!qdict_haskey(options, BDRV_OPT_CACHE_NO_FLUSH)) { 1550 qdict_put_bool(options, BDRV_OPT_CACHE_NO_FLUSH, 1551 flags & BDRV_O_NO_FLUSH); 1552 } 1553 if (!qdict_haskey(options, BDRV_OPT_READ_ONLY)) { 1554 qdict_put_bool(options, BDRV_OPT_READ_ONLY, !(flags & BDRV_O_RDWR)); 1555 } 1556 if (!qdict_haskey(options, BDRV_OPT_AUTO_READ_ONLY)) { 1557 qdict_put_bool(options, BDRV_OPT_AUTO_READ_ONLY, 1558 flags & BDRV_O_AUTO_RDONLY); 1559 } 1560 } 1561 1562 static void bdrv_assign_node_name(BlockDriverState *bs, 1563 const char *node_name, 1564 Error **errp) 1565 { 1566 char *gen_node_name = NULL; 1567 GLOBAL_STATE_CODE(); 1568 1569 if (!node_name) { 1570 node_name = gen_node_name = id_generate(ID_BLOCK); 1571 } else if (!id_wellformed(node_name)) { 1572 /* 1573 * Check for empty string or invalid characters, but not if it is 1574 * generated (generated names use characters not available to the user) 1575 */ 1576 error_setg(errp, "Invalid node-name: '%s'", node_name); 1577 return; 1578 } 1579 1580 /* takes care of avoiding namespaces collisions */ 1581 if (blk_by_name(node_name)) { 1582 error_setg(errp, "node-name=%s is conflicting with a device id", 1583 node_name); 1584 goto out; 1585 } 1586 1587 /* takes care of avoiding duplicates node names */ 1588 if (bdrv_find_node(node_name)) { 1589 error_setg(errp, "Duplicate nodes with node-name='%s'", node_name); 1590 goto out; 1591 } 1592 1593 /* Make sure that the node name isn't truncated */ 1594 if (strlen(node_name) >= sizeof(bs->node_name)) { 1595 error_setg(errp, "Node name too long"); 1596 goto out; 1597 } 1598 1599 /* copy node name into the bs and insert it into the graph list */ 1600 pstrcpy(bs->node_name, sizeof(bs->node_name), node_name); 1601 QTAILQ_INSERT_TAIL(&graph_bdrv_states, bs, node_list); 1602 out: 1603 g_free(gen_node_name); 1604 } 1605 1606 /* 1607 * The caller must always hold @bs AioContext lock, because this function calls 1608 * bdrv_refresh_total_sectors() which polls when called from non-coroutine 1609 * context. 1610 */ 1611 static int bdrv_open_driver(BlockDriverState *bs, BlockDriver *drv, 1612 const char *node_name, QDict *options, 1613 int open_flags, Error **errp) 1614 { 1615 Error *local_err = NULL; 1616 int i, ret; 1617 GLOBAL_STATE_CODE(); 1618 1619 bdrv_assign_node_name(bs, node_name, &local_err); 1620 if (local_err) { 1621 error_propagate(errp, local_err); 1622 return -EINVAL; 1623 } 1624 1625 bs->drv = drv; 1626 bs->opaque = g_malloc0(drv->instance_size); 1627 1628 if (drv->bdrv_file_open) { 1629 assert(!drv->bdrv_needs_filename || bs->filename[0]); 1630 ret = drv->bdrv_file_open(bs, options, open_flags, &local_err); 1631 } else if (drv->bdrv_open) { 1632 ret = drv->bdrv_open(bs, options, open_flags, &local_err); 1633 } else { 1634 ret = 0; 1635 } 1636 1637 if (ret < 0) { 1638 if (local_err) { 1639 error_propagate(errp, local_err); 1640 } else if (bs->filename[0]) { 1641 error_setg_errno(errp, -ret, "Could not open '%s'", bs->filename); 1642 } else { 1643 error_setg_errno(errp, -ret, "Could not open image"); 1644 } 1645 goto open_failed; 1646 } 1647 1648 assert(!(bs->supported_read_flags & ~BDRV_REQ_MASK)); 1649 assert(!(bs->supported_write_flags & ~BDRV_REQ_MASK)); 1650 1651 /* 1652 * Always allow the BDRV_REQ_REGISTERED_BUF optimization hint. This saves 1653 * drivers that pass read/write requests through to a child the trouble of 1654 * declaring support explicitly. 1655 * 1656 * Drivers must not propagate this flag accidentally when they initiate I/O 1657 * to a bounce buffer. That case should be rare though. 1658 */ 1659 bs->supported_read_flags |= BDRV_REQ_REGISTERED_BUF; 1660 bs->supported_write_flags |= BDRV_REQ_REGISTERED_BUF; 1661 1662 ret = bdrv_refresh_total_sectors(bs, bs->total_sectors); 1663 if (ret < 0) { 1664 error_setg_errno(errp, -ret, "Could not refresh total sector count"); 1665 return ret; 1666 } 1667 1668 bdrv_refresh_limits(bs, NULL, &local_err); 1669 if (local_err) { 1670 error_propagate(errp, local_err); 1671 return -EINVAL; 1672 } 1673 1674 assert(bdrv_opt_mem_align(bs) != 0); 1675 assert(bdrv_min_mem_align(bs) != 0); 1676 assert(is_power_of_2(bs->bl.request_alignment)); 1677 1678 for (i = 0; i < bs->quiesce_counter; i++) { 1679 if (drv->bdrv_drain_begin) { 1680 drv->bdrv_drain_begin(bs); 1681 } 1682 } 1683 1684 return 0; 1685 open_failed: 1686 bs->drv = NULL; 1687 if (bs->file != NULL) { 1688 bdrv_unref_child(bs, bs->file); 1689 assert(!bs->file); 1690 } 1691 g_free(bs->opaque); 1692 bs->opaque = NULL; 1693 return ret; 1694 } 1695 1696 /* 1697 * Create and open a block node. 1698 * 1699 * @options is a QDict of options to pass to the block drivers, or NULL for an 1700 * empty set of options. The reference to the QDict belongs to the block layer 1701 * after the call (even on failure), so if the caller intends to reuse the 1702 * dictionary, it needs to use qobject_ref() before calling bdrv_open. 1703 */ 1704 BlockDriverState *bdrv_new_open_driver_opts(BlockDriver *drv, 1705 const char *node_name, 1706 QDict *options, int flags, 1707 Error **errp) 1708 { 1709 BlockDriverState *bs; 1710 int ret; 1711 1712 GLOBAL_STATE_CODE(); 1713 1714 bs = bdrv_new(); 1715 bs->open_flags = flags; 1716 bs->options = options ?: qdict_new(); 1717 bs->explicit_options = qdict_clone_shallow(bs->options); 1718 bs->opaque = NULL; 1719 1720 update_options_from_flags(bs->options, flags); 1721 1722 ret = bdrv_open_driver(bs, drv, node_name, bs->options, flags, errp); 1723 if (ret < 0) { 1724 qobject_unref(bs->explicit_options); 1725 bs->explicit_options = NULL; 1726 qobject_unref(bs->options); 1727 bs->options = NULL; 1728 bdrv_unref(bs); 1729 return NULL; 1730 } 1731 1732 return bs; 1733 } 1734 1735 /* Create and open a block node. */ 1736 BlockDriverState *bdrv_new_open_driver(BlockDriver *drv, const char *node_name, 1737 int flags, Error **errp) 1738 { 1739 GLOBAL_STATE_CODE(); 1740 return bdrv_new_open_driver_opts(drv, node_name, NULL, flags, errp); 1741 } 1742 1743 QemuOptsList bdrv_runtime_opts = { 1744 .name = "bdrv_common", 1745 .head = QTAILQ_HEAD_INITIALIZER(bdrv_runtime_opts.head), 1746 .desc = { 1747 { 1748 .name = "node-name", 1749 .type = QEMU_OPT_STRING, 1750 .help = "Node name of the block device node", 1751 }, 1752 { 1753 .name = "driver", 1754 .type = QEMU_OPT_STRING, 1755 .help = "Block driver to use for the node", 1756 }, 1757 { 1758 .name = BDRV_OPT_CACHE_DIRECT, 1759 .type = QEMU_OPT_BOOL, 1760 .help = "Bypass software writeback cache on the host", 1761 }, 1762 { 1763 .name = BDRV_OPT_CACHE_NO_FLUSH, 1764 .type = QEMU_OPT_BOOL, 1765 .help = "Ignore flush requests", 1766 }, 1767 { 1768 .name = BDRV_OPT_READ_ONLY, 1769 .type = QEMU_OPT_BOOL, 1770 .help = "Node is opened in read-only mode", 1771 }, 1772 { 1773 .name = BDRV_OPT_AUTO_READ_ONLY, 1774 .type = QEMU_OPT_BOOL, 1775 .help = "Node can become read-only if opening read-write fails", 1776 }, 1777 { 1778 .name = "detect-zeroes", 1779 .type = QEMU_OPT_STRING, 1780 .help = "try to optimize zero writes (off, on, unmap)", 1781 }, 1782 { 1783 .name = BDRV_OPT_DISCARD, 1784 .type = QEMU_OPT_STRING, 1785 .help = "discard operation (ignore/off, unmap/on)", 1786 }, 1787 { 1788 .name = BDRV_OPT_FORCE_SHARE, 1789 .type = QEMU_OPT_BOOL, 1790 .help = "always accept other writers (default: off)", 1791 }, 1792 { /* end of list */ } 1793 }, 1794 }; 1795 1796 QemuOptsList bdrv_create_opts_simple = { 1797 .name = "simple-create-opts", 1798 .head = QTAILQ_HEAD_INITIALIZER(bdrv_create_opts_simple.head), 1799 .desc = { 1800 { 1801 .name = BLOCK_OPT_SIZE, 1802 .type = QEMU_OPT_SIZE, 1803 .help = "Virtual disk size" 1804 }, 1805 { 1806 .name = BLOCK_OPT_PREALLOC, 1807 .type = QEMU_OPT_STRING, 1808 .help = "Preallocation mode (allowed values: off)" 1809 }, 1810 { /* end of list */ } 1811 } 1812 }; 1813 1814 /* 1815 * Common part for opening disk images and files 1816 * 1817 * Removes all processed options from *options. 1818 */ 1819 static int bdrv_open_common(BlockDriverState *bs, BlockBackend *file, 1820 QDict *options, Error **errp) 1821 { 1822 int ret, open_flags; 1823 const char *filename; 1824 const char *driver_name = NULL; 1825 const char *node_name = NULL; 1826 const char *discard; 1827 QemuOpts *opts; 1828 BlockDriver *drv; 1829 Error *local_err = NULL; 1830 bool ro; 1831 1832 assert(bs->file == NULL); 1833 assert(options != NULL && bs->options != options); 1834 GLOBAL_STATE_CODE(); 1835 1836 opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort); 1837 if (!qemu_opts_absorb_qdict(opts, options, errp)) { 1838 ret = -EINVAL; 1839 goto fail_opts; 1840 } 1841 1842 update_flags_from_options(&bs->open_flags, opts); 1843 1844 driver_name = qemu_opt_get(opts, "driver"); 1845 drv = bdrv_find_format(driver_name); 1846 assert(drv != NULL); 1847 1848 bs->force_share = qemu_opt_get_bool(opts, BDRV_OPT_FORCE_SHARE, false); 1849 1850 if (bs->force_share && (bs->open_flags & BDRV_O_RDWR)) { 1851 error_setg(errp, 1852 BDRV_OPT_FORCE_SHARE 1853 "=on can only be used with read-only images"); 1854 ret = -EINVAL; 1855 goto fail_opts; 1856 } 1857 1858 if (file != NULL) { 1859 bdrv_refresh_filename(blk_bs(file)); 1860 filename = blk_bs(file)->filename; 1861 } else { 1862 /* 1863 * Caution: while qdict_get_try_str() is fine, getting 1864 * non-string types would require more care. When @options 1865 * come from -blockdev or blockdev_add, its members are typed 1866 * according to the QAPI schema, but when they come from 1867 * -drive, they're all QString. 1868 */ 1869 filename = qdict_get_try_str(options, "filename"); 1870 } 1871 1872 if (drv->bdrv_needs_filename && (!filename || !filename[0])) { 1873 error_setg(errp, "The '%s' block driver requires a file name", 1874 drv->format_name); 1875 ret = -EINVAL; 1876 goto fail_opts; 1877 } 1878 1879 trace_bdrv_open_common(bs, filename ?: "", bs->open_flags, 1880 drv->format_name); 1881 1882 ro = bdrv_is_read_only(bs); 1883 1884 if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, ro)) { 1885 if (!ro && bdrv_is_whitelisted(drv, true)) { 1886 ret = bdrv_apply_auto_read_only(bs, NULL, NULL); 1887 } else { 1888 ret = -ENOTSUP; 1889 } 1890 if (ret < 0) { 1891 error_setg(errp, 1892 !ro && bdrv_is_whitelisted(drv, true) 1893 ? "Driver '%s' can only be used for read-only devices" 1894 : "Driver '%s' is not whitelisted", 1895 drv->format_name); 1896 goto fail_opts; 1897 } 1898 } 1899 1900 /* bdrv_new() and bdrv_close() make it so */ 1901 assert(qatomic_read(&bs->copy_on_read) == 0); 1902 1903 if (bs->open_flags & BDRV_O_COPY_ON_READ) { 1904 if (!ro) { 1905 bdrv_enable_copy_on_read(bs); 1906 } else { 1907 error_setg(errp, "Can't use copy-on-read on read-only device"); 1908 ret = -EINVAL; 1909 goto fail_opts; 1910 } 1911 } 1912 1913 discard = qemu_opt_get(opts, BDRV_OPT_DISCARD); 1914 if (discard != NULL) { 1915 if (bdrv_parse_discard_flags(discard, &bs->open_flags) != 0) { 1916 error_setg(errp, "Invalid discard option"); 1917 ret = -EINVAL; 1918 goto fail_opts; 1919 } 1920 } 1921 1922 bs->detect_zeroes = 1923 bdrv_parse_detect_zeroes(opts, bs->open_flags, &local_err); 1924 if (local_err) { 1925 error_propagate(errp, local_err); 1926 ret = -EINVAL; 1927 goto fail_opts; 1928 } 1929 1930 if (filename != NULL) { 1931 pstrcpy(bs->filename, sizeof(bs->filename), filename); 1932 } else { 1933 bs->filename[0] = '\0'; 1934 } 1935 pstrcpy(bs->exact_filename, sizeof(bs->exact_filename), bs->filename); 1936 1937 /* Open the image, either directly or using a protocol */ 1938 open_flags = bdrv_open_flags(bs, bs->open_flags); 1939 node_name = qemu_opt_get(opts, "node-name"); 1940 1941 assert(!drv->bdrv_file_open || file == NULL); 1942 ret = bdrv_open_driver(bs, drv, node_name, options, open_flags, errp); 1943 if (ret < 0) { 1944 goto fail_opts; 1945 } 1946 1947 qemu_opts_del(opts); 1948 return 0; 1949 1950 fail_opts: 1951 qemu_opts_del(opts); 1952 return ret; 1953 } 1954 1955 static QDict *parse_json_filename(const char *filename, Error **errp) 1956 { 1957 QObject *options_obj; 1958 QDict *options; 1959 int ret; 1960 GLOBAL_STATE_CODE(); 1961 1962 ret = strstart(filename, "json:", &filename); 1963 assert(ret); 1964 1965 options_obj = qobject_from_json(filename, errp); 1966 if (!options_obj) { 1967 error_prepend(errp, "Could not parse the JSON options: "); 1968 return NULL; 1969 } 1970 1971 options = qobject_to(QDict, options_obj); 1972 if (!options) { 1973 qobject_unref(options_obj); 1974 error_setg(errp, "Invalid JSON object given"); 1975 return NULL; 1976 } 1977 1978 qdict_flatten(options); 1979 1980 return options; 1981 } 1982 1983 static void parse_json_protocol(QDict *options, const char **pfilename, 1984 Error **errp) 1985 { 1986 QDict *json_options; 1987 Error *local_err = NULL; 1988 GLOBAL_STATE_CODE(); 1989 1990 /* Parse json: pseudo-protocol */ 1991 if (!*pfilename || !g_str_has_prefix(*pfilename, "json:")) { 1992 return; 1993 } 1994 1995 json_options = parse_json_filename(*pfilename, &local_err); 1996 if (local_err) { 1997 error_propagate(errp, local_err); 1998 return; 1999 } 2000 2001 /* Options given in the filename have lower priority than options 2002 * specified directly */ 2003 qdict_join(options, json_options, false); 2004 qobject_unref(json_options); 2005 *pfilename = NULL; 2006 } 2007 2008 /* 2009 * Fills in default options for opening images and converts the legacy 2010 * filename/flags pair to option QDict entries. 2011 * The BDRV_O_PROTOCOL flag in *flags will be set or cleared accordingly if a 2012 * block driver has been specified explicitly. 2013 */ 2014 static int bdrv_fill_options(QDict **options, const char *filename, 2015 int *flags, Error **errp) 2016 { 2017 const char *drvname; 2018 bool protocol = *flags & BDRV_O_PROTOCOL; 2019 bool parse_filename = false; 2020 BlockDriver *drv = NULL; 2021 Error *local_err = NULL; 2022 2023 GLOBAL_STATE_CODE(); 2024 2025 /* 2026 * Caution: while qdict_get_try_str() is fine, getting non-string 2027 * types would require more care. When @options come from 2028 * -blockdev or blockdev_add, its members are typed according to 2029 * the QAPI schema, but when they come from -drive, they're all 2030 * QString. 2031 */ 2032 drvname = qdict_get_try_str(*options, "driver"); 2033 if (drvname) { 2034 drv = bdrv_find_format(drvname); 2035 if (!drv) { 2036 error_setg(errp, "Unknown driver '%s'", drvname); 2037 return -ENOENT; 2038 } 2039 /* If the user has explicitly specified the driver, this choice should 2040 * override the BDRV_O_PROTOCOL flag */ 2041 protocol = drv->bdrv_file_open; 2042 } 2043 2044 if (protocol) { 2045 *flags |= BDRV_O_PROTOCOL; 2046 } else { 2047 *flags &= ~BDRV_O_PROTOCOL; 2048 } 2049 2050 /* Translate cache options from flags into options */ 2051 update_options_from_flags(*options, *flags); 2052 2053 /* Fetch the file name from the options QDict if necessary */ 2054 if (protocol && filename) { 2055 if (!qdict_haskey(*options, "filename")) { 2056 qdict_put_str(*options, "filename", filename); 2057 parse_filename = true; 2058 } else { 2059 error_setg(errp, "Can't specify 'file' and 'filename' options at " 2060 "the same time"); 2061 return -EINVAL; 2062 } 2063 } 2064 2065 /* Find the right block driver */ 2066 /* See cautionary note on accessing @options above */ 2067 filename = qdict_get_try_str(*options, "filename"); 2068 2069 if (!drvname && protocol) { 2070 if (filename) { 2071 drv = bdrv_find_protocol(filename, parse_filename, errp); 2072 if (!drv) { 2073 return -EINVAL; 2074 } 2075 2076 drvname = drv->format_name; 2077 qdict_put_str(*options, "driver", drvname); 2078 } else { 2079 error_setg(errp, "Must specify either driver or file"); 2080 return -EINVAL; 2081 } 2082 } 2083 2084 assert(drv || !protocol); 2085 2086 /* Driver-specific filename parsing */ 2087 if (drv && drv->bdrv_parse_filename && parse_filename) { 2088 drv->bdrv_parse_filename(filename, *options, &local_err); 2089 if (local_err) { 2090 error_propagate(errp, local_err); 2091 return -EINVAL; 2092 } 2093 2094 if (!drv->bdrv_needs_filename) { 2095 qdict_del(*options, "filename"); 2096 } 2097 } 2098 2099 return 0; 2100 } 2101 2102 typedef struct BlockReopenQueueEntry { 2103 bool prepared; 2104 bool perms_checked; 2105 BDRVReopenState state; 2106 QTAILQ_ENTRY(BlockReopenQueueEntry) entry; 2107 } BlockReopenQueueEntry; 2108 2109 /* 2110 * Return the flags that @bs will have after the reopens in @q have 2111 * successfully completed. If @q is NULL (or @bs is not contained in @q), 2112 * return the current flags. 2113 */ 2114 static int bdrv_reopen_get_flags(BlockReopenQueue *q, BlockDriverState *bs) 2115 { 2116 BlockReopenQueueEntry *entry; 2117 2118 if (q != NULL) { 2119 QTAILQ_FOREACH(entry, q, entry) { 2120 if (entry->state.bs == bs) { 2121 return entry->state.flags; 2122 } 2123 } 2124 } 2125 2126 return bs->open_flags; 2127 } 2128 2129 /* Returns whether the image file can be written to after the reopen queue @q 2130 * has been successfully applied, or right now if @q is NULL. */ 2131 static bool bdrv_is_writable_after_reopen(BlockDriverState *bs, 2132 BlockReopenQueue *q) 2133 { 2134 int flags = bdrv_reopen_get_flags(q, bs); 2135 2136 return (flags & (BDRV_O_RDWR | BDRV_O_INACTIVE)) == BDRV_O_RDWR; 2137 } 2138 2139 /* 2140 * Return whether the BDS can be written to. This is not necessarily 2141 * the same as !bdrv_is_read_only(bs), as inactivated images may not 2142 * be written to but do not count as read-only images. 2143 */ 2144 bool bdrv_is_writable(BlockDriverState *bs) 2145 { 2146 IO_CODE(); 2147 return bdrv_is_writable_after_reopen(bs, NULL); 2148 } 2149 2150 static char *bdrv_child_user_desc(BdrvChild *c) 2151 { 2152 GLOBAL_STATE_CODE(); 2153 return c->klass->get_parent_desc(c); 2154 } 2155 2156 /* 2157 * Check that @a allows everything that @b needs. @a and @b must reference same 2158 * child node. 2159 */ 2160 static bool bdrv_a_allow_b(BdrvChild *a, BdrvChild *b, Error **errp) 2161 { 2162 const char *child_bs_name; 2163 g_autofree char *a_user = NULL; 2164 g_autofree char *b_user = NULL; 2165 g_autofree char *perms = NULL; 2166 2167 assert(a->bs); 2168 assert(a->bs == b->bs); 2169 GLOBAL_STATE_CODE(); 2170 2171 if ((b->perm & a->shared_perm) == b->perm) { 2172 return true; 2173 } 2174 2175 child_bs_name = bdrv_get_node_name(b->bs); 2176 a_user = bdrv_child_user_desc(a); 2177 b_user = bdrv_child_user_desc(b); 2178 perms = bdrv_perm_names(b->perm & ~a->shared_perm); 2179 2180 error_setg(errp, "Permission conflict on node '%s': permissions '%s' are " 2181 "both required by %s (uses node '%s' as '%s' child) and " 2182 "unshared by %s (uses node '%s' as '%s' child).", 2183 child_bs_name, perms, 2184 b_user, child_bs_name, b->name, 2185 a_user, child_bs_name, a->name); 2186 2187 return false; 2188 } 2189 2190 static bool bdrv_parent_perms_conflict(BlockDriverState *bs, Error **errp) 2191 { 2192 BdrvChild *a, *b; 2193 GLOBAL_STATE_CODE(); 2194 2195 /* 2196 * During the loop we'll look at each pair twice. That's correct because 2197 * bdrv_a_allow_b() is asymmetric and we should check each pair in both 2198 * directions. 2199 */ 2200 QLIST_FOREACH(a, &bs->parents, next_parent) { 2201 QLIST_FOREACH(b, &bs->parents, next_parent) { 2202 if (a == b) { 2203 continue; 2204 } 2205 2206 if (!bdrv_a_allow_b(a, b, errp)) { 2207 return true; 2208 } 2209 } 2210 } 2211 2212 return false; 2213 } 2214 2215 static void bdrv_child_perm(BlockDriverState *bs, BlockDriverState *child_bs, 2216 BdrvChild *c, BdrvChildRole role, 2217 BlockReopenQueue *reopen_queue, 2218 uint64_t parent_perm, uint64_t parent_shared, 2219 uint64_t *nperm, uint64_t *nshared) 2220 { 2221 assert(bs->drv && bs->drv->bdrv_child_perm); 2222 GLOBAL_STATE_CODE(); 2223 bs->drv->bdrv_child_perm(bs, c, role, reopen_queue, 2224 parent_perm, parent_shared, 2225 nperm, nshared); 2226 /* TODO Take force_share from reopen_queue */ 2227 if (child_bs && child_bs->force_share) { 2228 *nshared = BLK_PERM_ALL; 2229 } 2230 } 2231 2232 /* 2233 * Adds the whole subtree of @bs (including @bs itself) to the @list (except for 2234 * nodes that are already in the @list, of course) so that final list is 2235 * topologically sorted. Return the result (GSList @list object is updated, so 2236 * don't use old reference after function call). 2237 * 2238 * On function start @list must be already topologically sorted and for any node 2239 * in the @list the whole subtree of the node must be in the @list as well. The 2240 * simplest way to satisfy this criteria: use only result of 2241 * bdrv_topological_dfs() or NULL as @list parameter. 2242 */ 2243 static GSList *bdrv_topological_dfs(GSList *list, GHashTable *found, 2244 BlockDriverState *bs) 2245 { 2246 BdrvChild *child; 2247 g_autoptr(GHashTable) local_found = NULL; 2248 2249 GLOBAL_STATE_CODE(); 2250 2251 if (!found) { 2252 assert(!list); 2253 found = local_found = g_hash_table_new(NULL, NULL); 2254 } 2255 2256 if (g_hash_table_contains(found, bs)) { 2257 return list; 2258 } 2259 g_hash_table_add(found, bs); 2260 2261 QLIST_FOREACH(child, &bs->children, next) { 2262 list = bdrv_topological_dfs(list, found, child->bs); 2263 } 2264 2265 return g_slist_prepend(list, bs); 2266 } 2267 2268 typedef struct BdrvChildSetPermState { 2269 BdrvChild *child; 2270 uint64_t old_perm; 2271 uint64_t old_shared_perm; 2272 } BdrvChildSetPermState; 2273 2274 static void bdrv_child_set_perm_abort(void *opaque) 2275 { 2276 BdrvChildSetPermState *s = opaque; 2277 2278 GLOBAL_STATE_CODE(); 2279 2280 s->child->perm = s->old_perm; 2281 s->child->shared_perm = s->old_shared_perm; 2282 } 2283 2284 static TransactionActionDrv bdrv_child_set_pem_drv = { 2285 .abort = bdrv_child_set_perm_abort, 2286 .clean = g_free, 2287 }; 2288 2289 static void bdrv_child_set_perm(BdrvChild *c, uint64_t perm, 2290 uint64_t shared, Transaction *tran) 2291 { 2292 BdrvChildSetPermState *s = g_new(BdrvChildSetPermState, 1); 2293 GLOBAL_STATE_CODE(); 2294 2295 *s = (BdrvChildSetPermState) { 2296 .child = c, 2297 .old_perm = c->perm, 2298 .old_shared_perm = c->shared_perm, 2299 }; 2300 2301 c->perm = perm; 2302 c->shared_perm = shared; 2303 2304 tran_add(tran, &bdrv_child_set_pem_drv, s); 2305 } 2306 2307 static void bdrv_drv_set_perm_commit(void *opaque) 2308 { 2309 BlockDriverState *bs = opaque; 2310 uint64_t cumulative_perms, cumulative_shared_perms; 2311 GLOBAL_STATE_CODE(); 2312 2313 if (bs->drv->bdrv_set_perm) { 2314 bdrv_get_cumulative_perm(bs, &cumulative_perms, 2315 &cumulative_shared_perms); 2316 bs->drv->bdrv_set_perm(bs, cumulative_perms, cumulative_shared_perms); 2317 } 2318 } 2319 2320 static void bdrv_drv_set_perm_abort(void *opaque) 2321 { 2322 BlockDriverState *bs = opaque; 2323 GLOBAL_STATE_CODE(); 2324 2325 if (bs->drv->bdrv_abort_perm_update) { 2326 bs->drv->bdrv_abort_perm_update(bs); 2327 } 2328 } 2329 2330 TransactionActionDrv bdrv_drv_set_perm_drv = { 2331 .abort = bdrv_drv_set_perm_abort, 2332 .commit = bdrv_drv_set_perm_commit, 2333 }; 2334 2335 static int bdrv_drv_set_perm(BlockDriverState *bs, uint64_t perm, 2336 uint64_t shared_perm, Transaction *tran, 2337 Error **errp) 2338 { 2339 GLOBAL_STATE_CODE(); 2340 if (!bs->drv) { 2341 return 0; 2342 } 2343 2344 if (bs->drv->bdrv_check_perm) { 2345 int ret = bs->drv->bdrv_check_perm(bs, perm, shared_perm, errp); 2346 if (ret < 0) { 2347 return ret; 2348 } 2349 } 2350 2351 if (tran) { 2352 tran_add(tran, &bdrv_drv_set_perm_drv, bs); 2353 } 2354 2355 return 0; 2356 } 2357 2358 typedef struct BdrvReplaceChildState { 2359 BdrvChild *child; 2360 BlockDriverState *old_bs; 2361 } BdrvReplaceChildState; 2362 2363 static void bdrv_replace_child_commit(void *opaque) 2364 { 2365 BdrvReplaceChildState *s = opaque; 2366 GLOBAL_STATE_CODE(); 2367 2368 bdrv_unref(s->old_bs); 2369 } 2370 2371 static void bdrv_replace_child_abort(void *opaque) 2372 { 2373 BdrvReplaceChildState *s = opaque; 2374 BlockDriverState *new_bs = s->child->bs; 2375 2376 GLOBAL_STATE_CODE(); 2377 /* old_bs reference is transparently moved from @s to @s->child */ 2378 if (!s->child->bs) { 2379 /* 2380 * The parents were undrained when removing old_bs from the child. New 2381 * requests can't have been made, though, because the child was empty. 2382 * 2383 * TODO Make bdrv_replace_child_noperm() transactionable to avoid 2384 * undraining the parent in the first place. Once this is done, having 2385 * new_bs drained when calling bdrv_replace_child_tran() is not a 2386 * requirement any more. 2387 */ 2388 bdrv_parent_drained_begin_single(s->child); 2389 assert(!bdrv_parent_drained_poll_single(s->child)); 2390 } 2391 assert(s->child->quiesced_parent); 2392 bdrv_replace_child_noperm(s->child, s->old_bs); 2393 bdrv_unref(new_bs); 2394 } 2395 2396 static TransactionActionDrv bdrv_replace_child_drv = { 2397 .commit = bdrv_replace_child_commit, 2398 .abort = bdrv_replace_child_abort, 2399 .clean = g_free, 2400 }; 2401 2402 /* 2403 * bdrv_replace_child_tran 2404 * 2405 * Note: real unref of old_bs is done only on commit. 2406 * 2407 * Both @child->bs and @new_bs (if non-NULL) must be drained. @new_bs must be 2408 * kept drained until the transaction is completed. 2409 * 2410 * The function doesn't update permissions, caller is responsible for this. 2411 */ 2412 static void bdrv_replace_child_tran(BdrvChild *child, BlockDriverState *new_bs, 2413 Transaction *tran) 2414 { 2415 BdrvReplaceChildState *s = g_new(BdrvReplaceChildState, 1); 2416 2417 assert(child->quiesced_parent); 2418 assert(!new_bs || new_bs->quiesce_counter); 2419 2420 *s = (BdrvReplaceChildState) { 2421 .child = child, 2422 .old_bs = child->bs, 2423 }; 2424 tran_add(tran, &bdrv_replace_child_drv, s); 2425 2426 if (new_bs) { 2427 bdrv_ref(new_bs); 2428 } 2429 bdrv_replace_child_noperm(child, new_bs); 2430 /* old_bs reference is transparently moved from @child to @s */ 2431 } 2432 2433 /* 2434 * Refresh permissions in @bs subtree. The function is intended to be called 2435 * after some graph modification that was done without permission update. 2436 */ 2437 static int bdrv_node_refresh_perm(BlockDriverState *bs, BlockReopenQueue *q, 2438 Transaction *tran, Error **errp) 2439 { 2440 BlockDriver *drv = bs->drv; 2441 BdrvChild *c; 2442 int ret; 2443 uint64_t cumulative_perms, cumulative_shared_perms; 2444 GLOBAL_STATE_CODE(); 2445 2446 bdrv_get_cumulative_perm(bs, &cumulative_perms, &cumulative_shared_perms); 2447 2448 /* Write permissions never work with read-only images */ 2449 if ((cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) && 2450 !bdrv_is_writable_after_reopen(bs, q)) 2451 { 2452 if (!bdrv_is_writable_after_reopen(bs, NULL)) { 2453 error_setg(errp, "Block node is read-only"); 2454 } else { 2455 error_setg(errp, "Read-only block node '%s' cannot support " 2456 "read-write users", bdrv_get_node_name(bs)); 2457 } 2458 2459 return -EPERM; 2460 } 2461 2462 /* 2463 * Unaligned requests will automatically be aligned to bl.request_alignment 2464 * and without RESIZE we can't extend requests to write to space beyond the 2465 * end of the image, so it's required that the image size is aligned. 2466 */ 2467 if ((cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) && 2468 !(cumulative_perms & BLK_PERM_RESIZE)) 2469 { 2470 if ((bs->total_sectors * BDRV_SECTOR_SIZE) % bs->bl.request_alignment) { 2471 error_setg(errp, "Cannot get 'write' permission without 'resize': " 2472 "Image size is not a multiple of request " 2473 "alignment"); 2474 return -EPERM; 2475 } 2476 } 2477 2478 /* Check this node */ 2479 if (!drv) { 2480 return 0; 2481 } 2482 2483 ret = bdrv_drv_set_perm(bs, cumulative_perms, cumulative_shared_perms, tran, 2484 errp); 2485 if (ret < 0) { 2486 return ret; 2487 } 2488 2489 /* Drivers that never have children can omit .bdrv_child_perm() */ 2490 if (!drv->bdrv_child_perm) { 2491 assert(QLIST_EMPTY(&bs->children)); 2492 return 0; 2493 } 2494 2495 /* Check all children */ 2496 QLIST_FOREACH(c, &bs->children, next) { 2497 uint64_t cur_perm, cur_shared; 2498 2499 bdrv_child_perm(bs, c->bs, c, c->role, q, 2500 cumulative_perms, cumulative_shared_perms, 2501 &cur_perm, &cur_shared); 2502 bdrv_child_set_perm(c, cur_perm, cur_shared, tran); 2503 } 2504 2505 return 0; 2506 } 2507 2508 /* 2509 * @list is a product of bdrv_topological_dfs() (may be called several times) - 2510 * a topologically sorted subgraph. 2511 */ 2512 static int bdrv_do_refresh_perms(GSList *list, BlockReopenQueue *q, 2513 Transaction *tran, Error **errp) 2514 { 2515 int ret; 2516 BlockDriverState *bs; 2517 GLOBAL_STATE_CODE(); 2518 2519 for ( ; list; list = list->next) { 2520 bs = list->data; 2521 2522 if (bdrv_parent_perms_conflict(bs, errp)) { 2523 return -EINVAL; 2524 } 2525 2526 ret = bdrv_node_refresh_perm(bs, q, tran, errp); 2527 if (ret < 0) { 2528 return ret; 2529 } 2530 } 2531 2532 return 0; 2533 } 2534 2535 /* 2536 * @list is any list of nodes. List is completed by all subtrees and 2537 * topologically sorted. It's not a problem if some node occurs in the @list 2538 * several times. 2539 */ 2540 static int bdrv_list_refresh_perms(GSList *list, BlockReopenQueue *q, 2541 Transaction *tran, Error **errp) 2542 { 2543 g_autoptr(GHashTable) found = g_hash_table_new(NULL, NULL); 2544 g_autoptr(GSList) refresh_list = NULL; 2545 2546 for ( ; list; list = list->next) { 2547 refresh_list = bdrv_topological_dfs(refresh_list, found, list->data); 2548 } 2549 2550 return bdrv_do_refresh_perms(refresh_list, q, tran, errp); 2551 } 2552 2553 void bdrv_get_cumulative_perm(BlockDriverState *bs, uint64_t *perm, 2554 uint64_t *shared_perm) 2555 { 2556 BdrvChild *c; 2557 uint64_t cumulative_perms = 0; 2558 uint64_t cumulative_shared_perms = BLK_PERM_ALL; 2559 2560 GLOBAL_STATE_CODE(); 2561 2562 QLIST_FOREACH(c, &bs->parents, next_parent) { 2563 cumulative_perms |= c->perm; 2564 cumulative_shared_perms &= c->shared_perm; 2565 } 2566 2567 *perm = cumulative_perms; 2568 *shared_perm = cumulative_shared_perms; 2569 } 2570 2571 char *bdrv_perm_names(uint64_t perm) 2572 { 2573 struct perm_name { 2574 uint64_t perm; 2575 const char *name; 2576 } permissions[] = { 2577 { BLK_PERM_CONSISTENT_READ, "consistent read" }, 2578 { BLK_PERM_WRITE, "write" }, 2579 { BLK_PERM_WRITE_UNCHANGED, "write unchanged" }, 2580 { BLK_PERM_RESIZE, "resize" }, 2581 { 0, NULL } 2582 }; 2583 2584 GString *result = g_string_sized_new(30); 2585 struct perm_name *p; 2586 2587 for (p = permissions; p->name; p++) { 2588 if (perm & p->perm) { 2589 if (result->len > 0) { 2590 g_string_append(result, ", "); 2591 } 2592 g_string_append(result, p->name); 2593 } 2594 } 2595 2596 return g_string_free(result, FALSE); 2597 } 2598 2599 2600 /* @tran is allowed to be NULL. In this case no rollback is possible */ 2601 static int bdrv_refresh_perms(BlockDriverState *bs, Transaction *tran, 2602 Error **errp) 2603 { 2604 int ret; 2605 Transaction *local_tran = NULL; 2606 g_autoptr(GSList) list = bdrv_topological_dfs(NULL, NULL, bs); 2607 GLOBAL_STATE_CODE(); 2608 2609 if (!tran) { 2610 tran = local_tran = tran_new(); 2611 } 2612 2613 ret = bdrv_do_refresh_perms(list, NULL, tran, errp); 2614 2615 if (local_tran) { 2616 tran_finalize(local_tran, ret); 2617 } 2618 2619 return ret; 2620 } 2621 2622 int bdrv_child_try_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared, 2623 Error **errp) 2624 { 2625 Error *local_err = NULL; 2626 Transaction *tran = tran_new(); 2627 int ret; 2628 2629 GLOBAL_STATE_CODE(); 2630 2631 bdrv_child_set_perm(c, perm, shared, tran); 2632 2633 ret = bdrv_refresh_perms(c->bs, tran, &local_err); 2634 2635 tran_finalize(tran, ret); 2636 2637 if (ret < 0) { 2638 if ((perm & ~c->perm) || (c->shared_perm & ~shared)) { 2639 /* tighten permissions */ 2640 error_propagate(errp, local_err); 2641 } else { 2642 /* 2643 * Our caller may intend to only loosen restrictions and 2644 * does not expect this function to fail. Errors are not 2645 * fatal in such a case, so we can just hide them from our 2646 * caller. 2647 */ 2648 error_free(local_err); 2649 ret = 0; 2650 } 2651 } 2652 2653 return ret; 2654 } 2655 2656 int bdrv_child_refresh_perms(BlockDriverState *bs, BdrvChild *c, Error **errp) 2657 { 2658 uint64_t parent_perms, parent_shared; 2659 uint64_t perms, shared; 2660 2661 GLOBAL_STATE_CODE(); 2662 2663 bdrv_get_cumulative_perm(bs, &parent_perms, &parent_shared); 2664 bdrv_child_perm(bs, c->bs, c, c->role, NULL, 2665 parent_perms, parent_shared, &perms, &shared); 2666 2667 return bdrv_child_try_set_perm(c, perms, shared, errp); 2668 } 2669 2670 /* 2671 * Default implementation for .bdrv_child_perm() for block filters: 2672 * Forward CONSISTENT_READ, WRITE, WRITE_UNCHANGED, and RESIZE to the 2673 * filtered child. 2674 */ 2675 static void bdrv_filter_default_perms(BlockDriverState *bs, BdrvChild *c, 2676 BdrvChildRole role, 2677 BlockReopenQueue *reopen_queue, 2678 uint64_t perm, uint64_t shared, 2679 uint64_t *nperm, uint64_t *nshared) 2680 { 2681 GLOBAL_STATE_CODE(); 2682 *nperm = perm & DEFAULT_PERM_PASSTHROUGH; 2683 *nshared = (shared & DEFAULT_PERM_PASSTHROUGH) | DEFAULT_PERM_UNCHANGED; 2684 } 2685 2686 static void bdrv_default_perms_for_cow(BlockDriverState *bs, BdrvChild *c, 2687 BdrvChildRole role, 2688 BlockReopenQueue *reopen_queue, 2689 uint64_t perm, uint64_t shared, 2690 uint64_t *nperm, uint64_t *nshared) 2691 { 2692 assert(role & BDRV_CHILD_COW); 2693 GLOBAL_STATE_CODE(); 2694 2695 /* 2696 * We want consistent read from backing files if the parent needs it. 2697 * No other operations are performed on backing files. 2698 */ 2699 perm &= BLK_PERM_CONSISTENT_READ; 2700 2701 /* 2702 * If the parent can deal with changing data, we're okay with a 2703 * writable and resizable backing file. 2704 * TODO Require !(perm & BLK_PERM_CONSISTENT_READ), too? 2705 */ 2706 if (shared & BLK_PERM_WRITE) { 2707 shared = BLK_PERM_WRITE | BLK_PERM_RESIZE; 2708 } else { 2709 shared = 0; 2710 } 2711 2712 shared |= BLK_PERM_CONSISTENT_READ | BLK_PERM_WRITE_UNCHANGED; 2713 2714 if (bs->open_flags & BDRV_O_INACTIVE) { 2715 shared |= BLK_PERM_WRITE | BLK_PERM_RESIZE; 2716 } 2717 2718 *nperm = perm; 2719 *nshared = shared; 2720 } 2721 2722 static void bdrv_default_perms_for_storage(BlockDriverState *bs, BdrvChild *c, 2723 BdrvChildRole role, 2724 BlockReopenQueue *reopen_queue, 2725 uint64_t perm, uint64_t shared, 2726 uint64_t *nperm, uint64_t *nshared) 2727 { 2728 int flags; 2729 2730 GLOBAL_STATE_CODE(); 2731 assert(role & (BDRV_CHILD_METADATA | BDRV_CHILD_DATA)); 2732 2733 flags = bdrv_reopen_get_flags(reopen_queue, bs); 2734 2735 /* 2736 * Apart from the modifications below, the same permissions are 2737 * forwarded and left alone as for filters 2738 */ 2739 bdrv_filter_default_perms(bs, c, role, reopen_queue, 2740 perm, shared, &perm, &shared); 2741 2742 if (role & BDRV_CHILD_METADATA) { 2743 /* Format drivers may touch metadata even if the guest doesn't write */ 2744 if (bdrv_is_writable_after_reopen(bs, reopen_queue)) { 2745 perm |= BLK_PERM_WRITE | BLK_PERM_RESIZE; 2746 } 2747 2748 /* 2749 * bs->file always needs to be consistent because of the 2750 * metadata. We can never allow other users to resize or write 2751 * to it. 2752 */ 2753 if (!(flags & BDRV_O_NO_IO)) { 2754 perm |= BLK_PERM_CONSISTENT_READ; 2755 } 2756 shared &= ~(BLK_PERM_WRITE | BLK_PERM_RESIZE); 2757 } 2758 2759 if (role & BDRV_CHILD_DATA) { 2760 /* 2761 * Technically, everything in this block is a subset of the 2762 * BDRV_CHILD_METADATA path taken above, and so this could 2763 * be an "else if" branch. However, that is not obvious, and 2764 * this function is not performance critical, therefore we let 2765 * this be an independent "if". 2766 */ 2767 2768 /* 2769 * We cannot allow other users to resize the file because the 2770 * format driver might have some assumptions about the size 2771 * (e.g. because it is stored in metadata, or because the file 2772 * is split into fixed-size data files). 2773 */ 2774 shared &= ~BLK_PERM_RESIZE; 2775 2776 /* 2777 * WRITE_UNCHANGED often cannot be performed as such on the 2778 * data file. For example, the qcow2 driver may still need to 2779 * write copied clusters on copy-on-read. 2780 */ 2781 if (perm & BLK_PERM_WRITE_UNCHANGED) { 2782 perm |= BLK_PERM_WRITE; 2783 } 2784 2785 /* 2786 * If the data file is written to, the format driver may 2787 * expect to be able to resize it by writing beyond the EOF. 2788 */ 2789 if (perm & BLK_PERM_WRITE) { 2790 perm |= BLK_PERM_RESIZE; 2791 } 2792 } 2793 2794 if (bs->open_flags & BDRV_O_INACTIVE) { 2795 shared |= BLK_PERM_WRITE | BLK_PERM_RESIZE; 2796 } 2797 2798 *nperm = perm; 2799 *nshared = shared; 2800 } 2801 2802 void bdrv_default_perms(BlockDriverState *bs, BdrvChild *c, 2803 BdrvChildRole role, BlockReopenQueue *reopen_queue, 2804 uint64_t perm, uint64_t shared, 2805 uint64_t *nperm, uint64_t *nshared) 2806 { 2807 GLOBAL_STATE_CODE(); 2808 if (role & BDRV_CHILD_FILTERED) { 2809 assert(!(role & (BDRV_CHILD_DATA | BDRV_CHILD_METADATA | 2810 BDRV_CHILD_COW))); 2811 bdrv_filter_default_perms(bs, c, role, reopen_queue, 2812 perm, shared, nperm, nshared); 2813 } else if (role & BDRV_CHILD_COW) { 2814 assert(!(role & (BDRV_CHILD_DATA | BDRV_CHILD_METADATA))); 2815 bdrv_default_perms_for_cow(bs, c, role, reopen_queue, 2816 perm, shared, nperm, nshared); 2817 } else if (role & (BDRV_CHILD_METADATA | BDRV_CHILD_DATA)) { 2818 bdrv_default_perms_for_storage(bs, c, role, reopen_queue, 2819 perm, shared, nperm, nshared); 2820 } else { 2821 g_assert_not_reached(); 2822 } 2823 } 2824 2825 uint64_t bdrv_qapi_perm_to_blk_perm(BlockPermission qapi_perm) 2826 { 2827 static const uint64_t permissions[] = { 2828 [BLOCK_PERMISSION_CONSISTENT_READ] = BLK_PERM_CONSISTENT_READ, 2829 [BLOCK_PERMISSION_WRITE] = BLK_PERM_WRITE, 2830 [BLOCK_PERMISSION_WRITE_UNCHANGED] = BLK_PERM_WRITE_UNCHANGED, 2831 [BLOCK_PERMISSION_RESIZE] = BLK_PERM_RESIZE, 2832 }; 2833 2834 QEMU_BUILD_BUG_ON(ARRAY_SIZE(permissions) != BLOCK_PERMISSION__MAX); 2835 QEMU_BUILD_BUG_ON(1UL << ARRAY_SIZE(permissions) != BLK_PERM_ALL + 1); 2836 2837 assert(qapi_perm < BLOCK_PERMISSION__MAX); 2838 2839 return permissions[qapi_perm]; 2840 } 2841 2842 /* 2843 * Replaces the node that a BdrvChild points to without updating permissions. 2844 * 2845 * If @new_bs is non-NULL, the parent of @child must already be drained through 2846 * @child. 2847 */ 2848 static void bdrv_replace_child_noperm(BdrvChild *child, 2849 BlockDriverState *new_bs) 2850 { 2851 BlockDriverState *old_bs = child->bs; 2852 int new_bs_quiesce_counter; 2853 2854 assert(!child->frozen); 2855 2856 /* 2857 * If we want to change the BdrvChild to point to a drained node as its new 2858 * child->bs, we need to make sure that its new parent is drained, too. In 2859 * other words, either child->quiesce_parent must already be true or we must 2860 * be able to set it and keep the parent's quiesce_counter consistent with 2861 * that, but without polling or starting new requests (this function 2862 * guarantees that it doesn't poll, and starting new requests would be 2863 * against the invariants of drain sections). 2864 * 2865 * To keep things simple, we pick the first option (child->quiesce_parent 2866 * must already be true). We also generalise the rule a bit to make it 2867 * easier to verify in callers and more likely to be covered in test cases: 2868 * The parent must be quiesced through this child even if new_bs isn't 2869 * currently drained. 2870 * 2871 * The only exception is for callers that always pass new_bs == NULL. In 2872 * this case, we obviously never need to consider the case of a drained 2873 * new_bs, so we can keep the callers simpler by allowing them not to drain 2874 * the parent. 2875 */ 2876 assert(!new_bs || child->quiesced_parent); 2877 assert(old_bs != new_bs); 2878 GLOBAL_STATE_CODE(); 2879 2880 if (old_bs && new_bs) { 2881 assert(bdrv_get_aio_context(old_bs) == bdrv_get_aio_context(new_bs)); 2882 } 2883 2884 /* TODO Pull this up into the callers to avoid polling here */ 2885 bdrv_graph_wrlock(); 2886 if (old_bs) { 2887 if (child->klass->detach) { 2888 child->klass->detach(child); 2889 } 2890 QLIST_REMOVE(child, next_parent); 2891 } 2892 2893 child->bs = new_bs; 2894 2895 if (new_bs) { 2896 QLIST_INSERT_HEAD(&new_bs->parents, child, next_parent); 2897 if (child->klass->attach) { 2898 child->klass->attach(child); 2899 } 2900 } 2901 bdrv_graph_wrunlock(); 2902 2903 /* 2904 * If the parent was drained through this BdrvChild previously, but new_bs 2905 * is not drained, allow requests to come in only after the new node has 2906 * been attached. 2907 */ 2908 new_bs_quiesce_counter = (new_bs ? new_bs->quiesce_counter : 0); 2909 if (!new_bs_quiesce_counter && child->quiesced_parent) { 2910 bdrv_parent_drained_end_single(child); 2911 } 2912 } 2913 2914 /** 2915 * Free the given @child. 2916 * 2917 * The child must be empty (i.e. `child->bs == NULL`) and it must be 2918 * unused (i.e. not in a children list). 2919 */ 2920 static void bdrv_child_free(BdrvChild *child) 2921 { 2922 assert(!child->bs); 2923 GLOBAL_STATE_CODE(); 2924 assert(!child->next.le_prev); /* not in children list */ 2925 2926 g_free(child->name); 2927 g_free(child); 2928 } 2929 2930 typedef struct BdrvAttachChildCommonState { 2931 BdrvChild *child; 2932 AioContext *old_parent_ctx; 2933 AioContext *old_child_ctx; 2934 } BdrvAttachChildCommonState; 2935 2936 static void bdrv_attach_child_common_abort(void *opaque) 2937 { 2938 BdrvAttachChildCommonState *s = opaque; 2939 BlockDriverState *bs = s->child->bs; 2940 2941 GLOBAL_STATE_CODE(); 2942 bdrv_replace_child_noperm(s->child, NULL); 2943 2944 if (bdrv_get_aio_context(bs) != s->old_child_ctx) { 2945 bdrv_try_change_aio_context(bs, s->old_child_ctx, NULL, &error_abort); 2946 } 2947 2948 if (bdrv_child_get_parent_aio_context(s->child) != s->old_parent_ctx) { 2949 Transaction *tran; 2950 GHashTable *visited; 2951 bool ret; 2952 2953 tran = tran_new(); 2954 2955 /* No need to visit `child`, because it has been detached already */ 2956 visited = g_hash_table_new(NULL, NULL); 2957 ret = s->child->klass->change_aio_ctx(s->child, s->old_parent_ctx, 2958 visited, tran, &error_abort); 2959 g_hash_table_destroy(visited); 2960 2961 /* transaction is supposed to always succeed */ 2962 assert(ret == true); 2963 tran_commit(tran); 2964 } 2965 2966 bdrv_unref(bs); 2967 bdrv_child_free(s->child); 2968 } 2969 2970 static TransactionActionDrv bdrv_attach_child_common_drv = { 2971 .abort = bdrv_attach_child_common_abort, 2972 .clean = g_free, 2973 }; 2974 2975 /* 2976 * Common part of attaching bdrv child to bs or to blk or to job 2977 * 2978 * Function doesn't update permissions, caller is responsible for this. 2979 * 2980 * Returns new created child. 2981 */ 2982 static BdrvChild *bdrv_attach_child_common(BlockDriverState *child_bs, 2983 const char *child_name, 2984 const BdrvChildClass *child_class, 2985 BdrvChildRole child_role, 2986 uint64_t perm, uint64_t shared_perm, 2987 void *opaque, 2988 Transaction *tran, Error **errp) 2989 { 2990 BdrvChild *new_child; 2991 AioContext *parent_ctx; 2992 AioContext *child_ctx = bdrv_get_aio_context(child_bs); 2993 2994 assert(child_class->get_parent_desc); 2995 GLOBAL_STATE_CODE(); 2996 2997 new_child = g_new(BdrvChild, 1); 2998 *new_child = (BdrvChild) { 2999 .bs = NULL, 3000 .name = g_strdup(child_name), 3001 .klass = child_class, 3002 .role = child_role, 3003 .perm = perm, 3004 .shared_perm = shared_perm, 3005 .opaque = opaque, 3006 }; 3007 3008 /* 3009 * If the AioContexts don't match, first try to move the subtree of 3010 * child_bs into the AioContext of the new parent. If this doesn't work, 3011 * try moving the parent into the AioContext of child_bs instead. 3012 */ 3013 parent_ctx = bdrv_child_get_parent_aio_context(new_child); 3014 if (child_ctx != parent_ctx) { 3015 Error *local_err = NULL; 3016 int ret = bdrv_try_change_aio_context(child_bs, parent_ctx, NULL, 3017 &local_err); 3018 3019 if (ret < 0 && child_class->change_aio_ctx) { 3020 Transaction *tran = tran_new(); 3021 GHashTable *visited = g_hash_table_new(NULL, NULL); 3022 bool ret_child; 3023 3024 g_hash_table_add(visited, new_child); 3025 ret_child = child_class->change_aio_ctx(new_child, child_ctx, 3026 visited, tran, NULL); 3027 if (ret_child == true) { 3028 error_free(local_err); 3029 ret = 0; 3030 } 3031 tran_finalize(tran, ret_child == true ? 0 : -1); 3032 g_hash_table_destroy(visited); 3033 } 3034 3035 if (ret < 0) { 3036 error_propagate(errp, local_err); 3037 bdrv_child_free(new_child); 3038 return NULL; 3039 } 3040 } 3041 3042 bdrv_ref(child_bs); 3043 /* 3044 * Let every new BdrvChild start with a drained parent. Inserting the child 3045 * in the graph with bdrv_replace_child_noperm() will undrain it if 3046 * @child_bs is not drained. 3047 * 3048 * The child was only just created and is not yet visible in global state 3049 * until bdrv_replace_child_noperm() inserts it into the graph, so nobody 3050 * could have sent requests and polling is not necessary. 3051 * 3052 * Note that this means that the parent isn't fully drained yet, we only 3053 * stop new requests from coming in. This is fine, we don't care about the 3054 * old requests here, they are not for this child. If another place enters a 3055 * drain section for the same parent, but wants it to be fully quiesced, it 3056 * will not run most of the the code in .drained_begin() again (which is not 3057 * a problem, we already did this), but it will still poll until the parent 3058 * is fully quiesced, so it will not be negatively affected either. 3059 */ 3060 bdrv_parent_drained_begin_single(new_child); 3061 bdrv_replace_child_noperm(new_child, child_bs); 3062 3063 BdrvAttachChildCommonState *s = g_new(BdrvAttachChildCommonState, 1); 3064 *s = (BdrvAttachChildCommonState) { 3065 .child = new_child, 3066 .old_parent_ctx = parent_ctx, 3067 .old_child_ctx = child_ctx, 3068 }; 3069 tran_add(tran, &bdrv_attach_child_common_drv, s); 3070 3071 return new_child; 3072 } 3073 3074 /* 3075 * Function doesn't update permissions, caller is responsible for this. 3076 */ 3077 static BdrvChild *bdrv_attach_child_noperm(BlockDriverState *parent_bs, 3078 BlockDriverState *child_bs, 3079 const char *child_name, 3080 const BdrvChildClass *child_class, 3081 BdrvChildRole child_role, 3082 Transaction *tran, 3083 Error **errp) 3084 { 3085 uint64_t perm, shared_perm; 3086 3087 assert(parent_bs->drv); 3088 GLOBAL_STATE_CODE(); 3089 3090 if (bdrv_recurse_has_child(child_bs, parent_bs)) { 3091 error_setg(errp, "Making '%s' a %s child of '%s' would create a cycle", 3092 child_bs->node_name, child_name, parent_bs->node_name); 3093 return NULL; 3094 } 3095 3096 bdrv_get_cumulative_perm(parent_bs, &perm, &shared_perm); 3097 bdrv_child_perm(parent_bs, child_bs, NULL, child_role, NULL, 3098 perm, shared_perm, &perm, &shared_perm); 3099 3100 return bdrv_attach_child_common(child_bs, child_name, child_class, 3101 child_role, perm, shared_perm, parent_bs, 3102 tran, errp); 3103 } 3104 3105 /* 3106 * This function steals the reference to child_bs from the caller. 3107 * That reference is later dropped by bdrv_root_unref_child(). 3108 * 3109 * On failure NULL is returned, errp is set and the reference to 3110 * child_bs is also dropped. 3111 * 3112 * The caller must hold the AioContext lock @child_bs, but not that of @ctx 3113 * (unless @child_bs is already in @ctx). 3114 */ 3115 BdrvChild *bdrv_root_attach_child(BlockDriverState *child_bs, 3116 const char *child_name, 3117 const BdrvChildClass *child_class, 3118 BdrvChildRole child_role, 3119 uint64_t perm, uint64_t shared_perm, 3120 void *opaque, Error **errp) 3121 { 3122 int ret; 3123 BdrvChild *child; 3124 Transaction *tran = tran_new(); 3125 3126 GLOBAL_STATE_CODE(); 3127 3128 child = bdrv_attach_child_common(child_bs, child_name, child_class, 3129 child_role, perm, shared_perm, opaque, 3130 tran, errp); 3131 if (!child) { 3132 ret = -EINVAL; 3133 goto out; 3134 } 3135 3136 ret = bdrv_refresh_perms(child_bs, tran, errp); 3137 3138 out: 3139 tran_finalize(tran, ret); 3140 3141 bdrv_unref(child_bs); 3142 3143 return ret < 0 ? NULL : child; 3144 } 3145 3146 /* 3147 * This function transfers the reference to child_bs from the caller 3148 * to parent_bs. That reference is later dropped by parent_bs on 3149 * bdrv_close() or if someone calls bdrv_unref_child(). 3150 * 3151 * On failure NULL is returned, errp is set and the reference to 3152 * child_bs is also dropped. 3153 * 3154 * If @parent_bs and @child_bs are in different AioContexts, the caller must 3155 * hold the AioContext lock for @child_bs, but not for @parent_bs. 3156 */ 3157 BdrvChild *bdrv_attach_child(BlockDriverState *parent_bs, 3158 BlockDriverState *child_bs, 3159 const char *child_name, 3160 const BdrvChildClass *child_class, 3161 BdrvChildRole child_role, 3162 Error **errp) 3163 { 3164 int ret; 3165 BdrvChild *child; 3166 Transaction *tran = tran_new(); 3167 3168 GLOBAL_STATE_CODE(); 3169 3170 child = bdrv_attach_child_noperm(parent_bs, child_bs, child_name, 3171 child_class, child_role, tran, errp); 3172 if (!child) { 3173 ret = -EINVAL; 3174 goto out; 3175 } 3176 3177 ret = bdrv_refresh_perms(parent_bs, tran, errp); 3178 if (ret < 0) { 3179 goto out; 3180 } 3181 3182 out: 3183 tran_finalize(tran, ret); 3184 3185 bdrv_unref(child_bs); 3186 3187 return ret < 0 ? NULL : child; 3188 } 3189 3190 /* Callers must ensure that child->frozen is false. */ 3191 void bdrv_root_unref_child(BdrvChild *child) 3192 { 3193 BlockDriverState *child_bs = child->bs; 3194 3195 GLOBAL_STATE_CODE(); 3196 bdrv_replace_child_noperm(child, NULL); 3197 bdrv_child_free(child); 3198 3199 if (child_bs) { 3200 /* 3201 * Update permissions for old node. We're just taking a parent away, so 3202 * we're loosening restrictions. Errors of permission update are not 3203 * fatal in this case, ignore them. 3204 */ 3205 bdrv_refresh_perms(child_bs, NULL, NULL); 3206 3207 /* 3208 * When the parent requiring a non-default AioContext is removed, the 3209 * node moves back to the main AioContext 3210 */ 3211 bdrv_try_change_aio_context(child_bs, qemu_get_aio_context(), NULL, 3212 NULL); 3213 } 3214 3215 bdrv_unref(child_bs); 3216 } 3217 3218 typedef struct BdrvSetInheritsFrom { 3219 BlockDriverState *bs; 3220 BlockDriverState *old_inherits_from; 3221 } BdrvSetInheritsFrom; 3222 3223 static void bdrv_set_inherits_from_abort(void *opaque) 3224 { 3225 BdrvSetInheritsFrom *s = opaque; 3226 3227 s->bs->inherits_from = s->old_inherits_from; 3228 } 3229 3230 static TransactionActionDrv bdrv_set_inherits_from_drv = { 3231 .abort = bdrv_set_inherits_from_abort, 3232 .clean = g_free, 3233 }; 3234 3235 /* @tran is allowed to be NULL. In this case no rollback is possible */ 3236 static void bdrv_set_inherits_from(BlockDriverState *bs, 3237 BlockDriverState *new_inherits_from, 3238 Transaction *tran) 3239 { 3240 if (tran) { 3241 BdrvSetInheritsFrom *s = g_new(BdrvSetInheritsFrom, 1); 3242 3243 *s = (BdrvSetInheritsFrom) { 3244 .bs = bs, 3245 .old_inherits_from = bs->inherits_from, 3246 }; 3247 3248 tran_add(tran, &bdrv_set_inherits_from_drv, s); 3249 } 3250 3251 bs->inherits_from = new_inherits_from; 3252 } 3253 3254 /** 3255 * Clear all inherits_from pointers from children and grandchildren of 3256 * @root that point to @root, where necessary. 3257 * @tran is allowed to be NULL. In this case no rollback is possible 3258 */ 3259 static void bdrv_unset_inherits_from(BlockDriverState *root, BdrvChild *child, 3260 Transaction *tran) 3261 { 3262 BdrvChild *c; 3263 3264 if (child->bs->inherits_from == root) { 3265 /* 3266 * Remove inherits_from only when the last reference between root and 3267 * child->bs goes away. 3268 */ 3269 QLIST_FOREACH(c, &root->children, next) { 3270 if (c != child && c->bs == child->bs) { 3271 break; 3272 } 3273 } 3274 if (c == NULL) { 3275 bdrv_set_inherits_from(child->bs, NULL, tran); 3276 } 3277 } 3278 3279 QLIST_FOREACH(c, &child->bs->children, next) { 3280 bdrv_unset_inherits_from(root, c, tran); 3281 } 3282 } 3283 3284 /* Callers must ensure that child->frozen is false. */ 3285 void bdrv_unref_child(BlockDriverState *parent, BdrvChild *child) 3286 { 3287 GLOBAL_STATE_CODE(); 3288 if (child == NULL) { 3289 return; 3290 } 3291 3292 bdrv_unset_inherits_from(parent, child, NULL); 3293 bdrv_root_unref_child(child); 3294 } 3295 3296 3297 static void bdrv_parent_cb_change_media(BlockDriverState *bs, bool load) 3298 { 3299 BdrvChild *c; 3300 GLOBAL_STATE_CODE(); 3301 QLIST_FOREACH(c, &bs->parents, next_parent) { 3302 if (c->klass->change_media) { 3303 c->klass->change_media(c, load); 3304 } 3305 } 3306 } 3307 3308 /* Return true if you can reach parent going through child->inherits_from 3309 * recursively. If parent or child are NULL, return false */ 3310 static bool bdrv_inherits_from_recursive(BlockDriverState *child, 3311 BlockDriverState *parent) 3312 { 3313 while (child && child != parent) { 3314 child = child->inherits_from; 3315 } 3316 3317 return child != NULL; 3318 } 3319 3320 /* 3321 * Return the BdrvChildRole for @bs's backing child. bs->backing is 3322 * mostly used for COW backing children (role = COW), but also for 3323 * filtered children (role = FILTERED | PRIMARY). 3324 */ 3325 static BdrvChildRole bdrv_backing_role(BlockDriverState *bs) 3326 { 3327 if (bs->drv && bs->drv->is_filter) { 3328 return BDRV_CHILD_FILTERED | BDRV_CHILD_PRIMARY; 3329 } else { 3330 return BDRV_CHILD_COW; 3331 } 3332 } 3333 3334 /* 3335 * Sets the bs->backing or bs->file link of a BDS. A new reference is created; 3336 * callers which don't need their own reference any more must call bdrv_unref(). 3337 * 3338 * Function doesn't update permissions, caller is responsible for this. 3339 */ 3340 static int bdrv_set_file_or_backing_noperm(BlockDriverState *parent_bs, 3341 BlockDriverState *child_bs, 3342 bool is_backing, 3343 Transaction *tran, Error **errp) 3344 { 3345 bool update_inherits_from = 3346 bdrv_inherits_from_recursive(child_bs, parent_bs); 3347 BdrvChild *child = is_backing ? parent_bs->backing : parent_bs->file; 3348 BdrvChildRole role; 3349 3350 GLOBAL_STATE_CODE(); 3351 3352 if (!parent_bs->drv) { 3353 /* 3354 * Node without drv is an object without a class :/. TODO: finally fix 3355 * qcow2 driver to never clear bs->drv and implement format corruption 3356 * handling in other way. 3357 */ 3358 error_setg(errp, "Node corrupted"); 3359 return -EINVAL; 3360 } 3361 3362 if (child && child->frozen) { 3363 error_setg(errp, "Cannot change frozen '%s' link from '%s' to '%s'", 3364 child->name, parent_bs->node_name, child->bs->node_name); 3365 return -EPERM; 3366 } 3367 3368 if (is_backing && !parent_bs->drv->is_filter && 3369 !parent_bs->drv->supports_backing) 3370 { 3371 error_setg(errp, "Driver '%s' of node '%s' does not support backing " 3372 "files", parent_bs->drv->format_name, parent_bs->node_name); 3373 return -EINVAL; 3374 } 3375 3376 if (parent_bs->drv->is_filter) { 3377 role = BDRV_CHILD_FILTERED | BDRV_CHILD_PRIMARY; 3378 } else if (is_backing) { 3379 role = BDRV_CHILD_COW; 3380 } else { 3381 /* 3382 * We only can use same role as it is in existing child. We don't have 3383 * infrastructure to determine role of file child in generic way 3384 */ 3385 if (!child) { 3386 error_setg(errp, "Cannot set file child to format node without " 3387 "file child"); 3388 return -EINVAL; 3389 } 3390 role = child->role; 3391 } 3392 3393 if (child) { 3394 bdrv_unset_inherits_from(parent_bs, child, tran); 3395 bdrv_remove_child(child, tran); 3396 } 3397 3398 if (!child_bs) { 3399 goto out; 3400 } 3401 3402 child = bdrv_attach_child_noperm(parent_bs, child_bs, 3403 is_backing ? "backing" : "file", 3404 &child_of_bds, role, 3405 tran, errp); 3406 if (!child) { 3407 return -EINVAL; 3408 } 3409 3410 3411 /* 3412 * If inherits_from pointed recursively to bs then let's update it to 3413 * point directly to bs (else it will become NULL). 3414 */ 3415 if (update_inherits_from) { 3416 bdrv_set_inherits_from(child_bs, parent_bs, tran); 3417 } 3418 3419 out: 3420 bdrv_refresh_limits(parent_bs, tran, NULL); 3421 3422 return 0; 3423 } 3424 3425 static int bdrv_set_backing_noperm(BlockDriverState *bs, 3426 BlockDriverState *backing_hd, 3427 Transaction *tran, Error **errp) 3428 { 3429 GLOBAL_STATE_CODE(); 3430 return bdrv_set_file_or_backing_noperm(bs, backing_hd, true, tran, errp); 3431 } 3432 3433 int bdrv_set_backing_hd_drained(BlockDriverState *bs, 3434 BlockDriverState *backing_hd, 3435 Error **errp) 3436 { 3437 int ret; 3438 Transaction *tran = tran_new(); 3439 3440 GLOBAL_STATE_CODE(); 3441 assert(bs->quiesce_counter > 0); 3442 3443 ret = bdrv_set_backing_noperm(bs, backing_hd, tran, errp); 3444 if (ret < 0) { 3445 goto out; 3446 } 3447 3448 ret = bdrv_refresh_perms(bs, tran, errp); 3449 out: 3450 tran_finalize(tran, ret); 3451 return ret; 3452 } 3453 3454 int bdrv_set_backing_hd(BlockDriverState *bs, BlockDriverState *backing_hd, 3455 Error **errp) 3456 { 3457 int ret; 3458 GLOBAL_STATE_CODE(); 3459 3460 bdrv_drained_begin(bs); 3461 ret = bdrv_set_backing_hd_drained(bs, backing_hd, errp); 3462 bdrv_drained_end(bs); 3463 3464 return ret; 3465 } 3466 3467 /* 3468 * Opens the backing file for a BlockDriverState if not yet open 3469 * 3470 * bdref_key specifies the key for the image's BlockdevRef in the options QDict. 3471 * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict 3472 * itself, all options starting with "${bdref_key}." are considered part of the 3473 * BlockdevRef. 3474 * 3475 * TODO Can this be unified with bdrv_open_image()? 3476 */ 3477 int bdrv_open_backing_file(BlockDriverState *bs, QDict *parent_options, 3478 const char *bdref_key, Error **errp) 3479 { 3480 char *backing_filename = NULL; 3481 char *bdref_key_dot; 3482 const char *reference = NULL; 3483 int ret = 0; 3484 bool implicit_backing = false; 3485 BlockDriverState *backing_hd; 3486 QDict *options; 3487 QDict *tmp_parent_options = NULL; 3488 Error *local_err = NULL; 3489 3490 GLOBAL_STATE_CODE(); 3491 3492 if (bs->backing != NULL) { 3493 goto free_exit; 3494 } 3495 3496 /* NULL means an empty set of options */ 3497 if (parent_options == NULL) { 3498 tmp_parent_options = qdict_new(); 3499 parent_options = tmp_parent_options; 3500 } 3501 3502 bs->open_flags &= ~BDRV_O_NO_BACKING; 3503 3504 bdref_key_dot = g_strdup_printf("%s.", bdref_key); 3505 qdict_extract_subqdict(parent_options, &options, bdref_key_dot); 3506 g_free(bdref_key_dot); 3507 3508 /* 3509 * Caution: while qdict_get_try_str() is fine, getting non-string 3510 * types would require more care. When @parent_options come from 3511 * -blockdev or blockdev_add, its members are typed according to 3512 * the QAPI schema, but when they come from -drive, they're all 3513 * QString. 3514 */ 3515 reference = qdict_get_try_str(parent_options, bdref_key); 3516 if (reference || qdict_haskey(options, "file.filename")) { 3517 /* keep backing_filename NULL */ 3518 } else if (bs->backing_file[0] == '\0' && qdict_size(options) == 0) { 3519 qobject_unref(options); 3520 goto free_exit; 3521 } else { 3522 if (qdict_size(options) == 0) { 3523 /* If the user specifies options that do not modify the 3524 * backing file's behavior, we might still consider it the 3525 * implicit backing file. But it's easier this way, and 3526 * just specifying some of the backing BDS's options is 3527 * only possible with -drive anyway (otherwise the QAPI 3528 * schema forces the user to specify everything). */ 3529 implicit_backing = !strcmp(bs->auto_backing_file, bs->backing_file); 3530 } 3531 3532 backing_filename = bdrv_get_full_backing_filename(bs, &local_err); 3533 if (local_err) { 3534 ret = -EINVAL; 3535 error_propagate(errp, local_err); 3536 qobject_unref(options); 3537 goto free_exit; 3538 } 3539 } 3540 3541 if (!bs->drv || !bs->drv->supports_backing) { 3542 ret = -EINVAL; 3543 error_setg(errp, "Driver doesn't support backing files"); 3544 qobject_unref(options); 3545 goto free_exit; 3546 } 3547 3548 if (!reference && 3549 bs->backing_format[0] != '\0' && !qdict_haskey(options, "driver")) { 3550 qdict_put_str(options, "driver", bs->backing_format); 3551 } 3552 3553 backing_hd = bdrv_open_inherit(backing_filename, reference, options, 0, bs, 3554 &child_of_bds, bdrv_backing_role(bs), errp); 3555 if (!backing_hd) { 3556 bs->open_flags |= BDRV_O_NO_BACKING; 3557 error_prepend(errp, "Could not open backing file: "); 3558 ret = -EINVAL; 3559 goto free_exit; 3560 } 3561 3562 if (implicit_backing) { 3563 bdrv_refresh_filename(backing_hd); 3564 pstrcpy(bs->auto_backing_file, sizeof(bs->auto_backing_file), 3565 backing_hd->filename); 3566 } 3567 3568 /* Hook up the backing file link; drop our reference, bs owns the 3569 * backing_hd reference now */ 3570 ret = bdrv_set_backing_hd(bs, backing_hd, errp); 3571 bdrv_unref(backing_hd); 3572 if (ret < 0) { 3573 goto free_exit; 3574 } 3575 3576 qdict_del(parent_options, bdref_key); 3577 3578 free_exit: 3579 g_free(backing_filename); 3580 qobject_unref(tmp_parent_options); 3581 return ret; 3582 } 3583 3584 static BlockDriverState * 3585 bdrv_open_child_bs(const char *filename, QDict *options, const char *bdref_key, 3586 BlockDriverState *parent, const BdrvChildClass *child_class, 3587 BdrvChildRole child_role, bool allow_none, Error **errp) 3588 { 3589 BlockDriverState *bs = NULL; 3590 QDict *image_options; 3591 char *bdref_key_dot; 3592 const char *reference; 3593 3594 assert(child_class != NULL); 3595 3596 bdref_key_dot = g_strdup_printf("%s.", bdref_key); 3597 qdict_extract_subqdict(options, &image_options, bdref_key_dot); 3598 g_free(bdref_key_dot); 3599 3600 /* 3601 * Caution: while qdict_get_try_str() is fine, getting non-string 3602 * types would require more care. When @options come from 3603 * -blockdev or blockdev_add, its members are typed according to 3604 * the QAPI schema, but when they come from -drive, they're all 3605 * QString. 3606 */ 3607 reference = qdict_get_try_str(options, bdref_key); 3608 if (!filename && !reference && !qdict_size(image_options)) { 3609 if (!allow_none) { 3610 error_setg(errp, "A block device must be specified for \"%s\"", 3611 bdref_key); 3612 } 3613 qobject_unref(image_options); 3614 goto done; 3615 } 3616 3617 bs = bdrv_open_inherit(filename, reference, image_options, 0, 3618 parent, child_class, child_role, errp); 3619 if (!bs) { 3620 goto done; 3621 } 3622 3623 done: 3624 qdict_del(options, bdref_key); 3625 return bs; 3626 } 3627 3628 /* 3629 * Opens a disk image whose options are given as BlockdevRef in another block 3630 * device's options. 3631 * 3632 * If allow_none is true, no image will be opened if filename is false and no 3633 * BlockdevRef is given. NULL will be returned, but errp remains unset. 3634 * 3635 * bdrev_key specifies the key for the image's BlockdevRef in the options QDict. 3636 * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict 3637 * itself, all options starting with "${bdref_key}." are considered part of the 3638 * BlockdevRef. 3639 * 3640 * The BlockdevRef will be removed from the options QDict. 3641 */ 3642 BdrvChild *bdrv_open_child(const char *filename, 3643 QDict *options, const char *bdref_key, 3644 BlockDriverState *parent, 3645 const BdrvChildClass *child_class, 3646 BdrvChildRole child_role, 3647 bool allow_none, Error **errp) 3648 { 3649 BlockDriverState *bs; 3650 3651 GLOBAL_STATE_CODE(); 3652 3653 bs = bdrv_open_child_bs(filename, options, bdref_key, parent, child_class, 3654 child_role, allow_none, errp); 3655 if (bs == NULL) { 3656 return NULL; 3657 } 3658 3659 return bdrv_attach_child(parent, bs, bdref_key, child_class, child_role, 3660 errp); 3661 } 3662 3663 /* 3664 * Wrapper on bdrv_open_child() for most popular case: open primary child of bs. 3665 */ 3666 int bdrv_open_file_child(const char *filename, 3667 QDict *options, const char *bdref_key, 3668 BlockDriverState *parent, Error **errp) 3669 { 3670 BdrvChildRole role; 3671 3672 /* commit_top and mirror_top don't use this function */ 3673 assert(!parent->drv->filtered_child_is_backing); 3674 role = parent->drv->is_filter ? 3675 (BDRV_CHILD_FILTERED | BDRV_CHILD_PRIMARY) : BDRV_CHILD_IMAGE; 3676 3677 if (!bdrv_open_child(filename, options, bdref_key, parent, 3678 &child_of_bds, role, false, errp)) 3679 { 3680 return -EINVAL; 3681 } 3682 3683 return 0; 3684 } 3685 3686 /* 3687 * TODO Future callers may need to specify parent/child_class in order for 3688 * option inheritance to work. Existing callers use it for the root node. 3689 */ 3690 BlockDriverState *bdrv_open_blockdev_ref(BlockdevRef *ref, Error **errp) 3691 { 3692 BlockDriverState *bs = NULL; 3693 QObject *obj = NULL; 3694 QDict *qdict = NULL; 3695 const char *reference = NULL; 3696 Visitor *v = NULL; 3697 3698 GLOBAL_STATE_CODE(); 3699 3700 if (ref->type == QTYPE_QSTRING) { 3701 reference = ref->u.reference; 3702 } else { 3703 BlockdevOptions *options = &ref->u.definition; 3704 assert(ref->type == QTYPE_QDICT); 3705 3706 v = qobject_output_visitor_new(&obj); 3707 visit_type_BlockdevOptions(v, NULL, &options, &error_abort); 3708 visit_complete(v, &obj); 3709 3710 qdict = qobject_to(QDict, obj); 3711 qdict_flatten(qdict); 3712 3713 /* bdrv_open_inherit() defaults to the values in bdrv_flags (for 3714 * compatibility with other callers) rather than what we want as the 3715 * real defaults. Apply the defaults here instead. */ 3716 qdict_set_default_str(qdict, BDRV_OPT_CACHE_DIRECT, "off"); 3717 qdict_set_default_str(qdict, BDRV_OPT_CACHE_NO_FLUSH, "off"); 3718 qdict_set_default_str(qdict, BDRV_OPT_READ_ONLY, "off"); 3719 qdict_set_default_str(qdict, BDRV_OPT_AUTO_READ_ONLY, "off"); 3720 3721 } 3722 3723 bs = bdrv_open_inherit(NULL, reference, qdict, 0, NULL, NULL, 0, errp); 3724 obj = NULL; 3725 qobject_unref(obj); 3726 visit_free(v); 3727 return bs; 3728 } 3729 3730 static BlockDriverState *bdrv_append_temp_snapshot(BlockDriverState *bs, 3731 int flags, 3732 QDict *snapshot_options, 3733 Error **errp) 3734 { 3735 g_autofree char *tmp_filename = NULL; 3736 int64_t total_size; 3737 QemuOpts *opts = NULL; 3738 BlockDriverState *bs_snapshot = NULL; 3739 int ret; 3740 3741 GLOBAL_STATE_CODE(); 3742 3743 /* if snapshot, we create a temporary backing file and open it 3744 instead of opening 'filename' directly */ 3745 3746 /* Get the required size from the image */ 3747 total_size = bdrv_getlength(bs); 3748 if (total_size < 0) { 3749 error_setg_errno(errp, -total_size, "Could not get image size"); 3750 goto out; 3751 } 3752 3753 /* Create the temporary image */ 3754 tmp_filename = create_tmp_file(errp); 3755 if (!tmp_filename) { 3756 goto out; 3757 } 3758 3759 opts = qemu_opts_create(bdrv_qcow2.create_opts, NULL, 0, 3760 &error_abort); 3761 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, total_size, &error_abort); 3762 ret = bdrv_create(&bdrv_qcow2, tmp_filename, opts, errp); 3763 qemu_opts_del(opts); 3764 if (ret < 0) { 3765 error_prepend(errp, "Could not create temporary overlay '%s': ", 3766 tmp_filename); 3767 goto out; 3768 } 3769 3770 /* Prepare options QDict for the temporary file */ 3771 qdict_put_str(snapshot_options, "file.driver", "file"); 3772 qdict_put_str(snapshot_options, "file.filename", tmp_filename); 3773 qdict_put_str(snapshot_options, "driver", "qcow2"); 3774 3775 bs_snapshot = bdrv_open(NULL, NULL, snapshot_options, flags, errp); 3776 snapshot_options = NULL; 3777 if (!bs_snapshot) { 3778 goto out; 3779 } 3780 3781 ret = bdrv_append(bs_snapshot, bs, errp); 3782 if (ret < 0) { 3783 bs_snapshot = NULL; 3784 goto out; 3785 } 3786 3787 out: 3788 qobject_unref(snapshot_options); 3789 return bs_snapshot; 3790 } 3791 3792 /* 3793 * Opens a disk image (raw, qcow2, vmdk, ...) 3794 * 3795 * options is a QDict of options to pass to the block drivers, or NULL for an 3796 * empty set of options. The reference to the QDict belongs to the block layer 3797 * after the call (even on failure), so if the caller intends to reuse the 3798 * dictionary, it needs to use qobject_ref() before calling bdrv_open. 3799 * 3800 * If *pbs is NULL, a new BDS will be created with a pointer to it stored there. 3801 * If it is not NULL, the referenced BDS will be reused. 3802 * 3803 * The reference parameter may be used to specify an existing block device which 3804 * should be opened. If specified, neither options nor a filename may be given, 3805 * nor can an existing BDS be reused (that is, *pbs has to be NULL). 3806 * 3807 * The caller must always hold @filename AioContext lock, because this 3808 * function eventually calls bdrv_refresh_total_sectors() which polls 3809 * when called from non-coroutine context. 3810 */ 3811 static BlockDriverState * no_coroutine_fn 3812 bdrv_open_inherit(const char *filename, const char *reference, QDict *options, 3813 int flags, BlockDriverState *parent, 3814 const BdrvChildClass *child_class, BdrvChildRole child_role, 3815 Error **errp) 3816 { 3817 int ret; 3818 BlockBackend *file = NULL; 3819 BlockDriverState *bs; 3820 BlockDriver *drv = NULL; 3821 BdrvChild *child; 3822 const char *drvname; 3823 const char *backing; 3824 Error *local_err = NULL; 3825 QDict *snapshot_options = NULL; 3826 int snapshot_flags = 0; 3827 3828 assert(!child_class || !flags); 3829 assert(!child_class == !parent); 3830 GLOBAL_STATE_CODE(); 3831 assert(!qemu_in_coroutine()); 3832 3833 if (reference) { 3834 bool options_non_empty = options ? qdict_size(options) : false; 3835 qobject_unref(options); 3836 3837 if (filename || options_non_empty) { 3838 error_setg(errp, "Cannot reference an existing block device with " 3839 "additional options or a new filename"); 3840 return NULL; 3841 } 3842 3843 bs = bdrv_lookup_bs(reference, reference, errp); 3844 if (!bs) { 3845 return NULL; 3846 } 3847 3848 bdrv_ref(bs); 3849 return bs; 3850 } 3851 3852 bs = bdrv_new(); 3853 3854 /* NULL means an empty set of options */ 3855 if (options == NULL) { 3856 options = qdict_new(); 3857 } 3858 3859 /* json: syntax counts as explicit options, as if in the QDict */ 3860 parse_json_protocol(options, &filename, &local_err); 3861 if (local_err) { 3862 goto fail; 3863 } 3864 3865 bs->explicit_options = qdict_clone_shallow(options); 3866 3867 if (child_class) { 3868 bool parent_is_format; 3869 3870 if (parent->drv) { 3871 parent_is_format = parent->drv->is_format; 3872 } else { 3873 /* 3874 * parent->drv is not set yet because this node is opened for 3875 * (potential) format probing. That means that @parent is going 3876 * to be a format node. 3877 */ 3878 parent_is_format = true; 3879 } 3880 3881 bs->inherits_from = parent; 3882 child_class->inherit_options(child_role, parent_is_format, 3883 &flags, options, 3884 parent->open_flags, parent->options); 3885 } 3886 3887 ret = bdrv_fill_options(&options, filename, &flags, &local_err); 3888 if (ret < 0) { 3889 goto fail; 3890 } 3891 3892 /* 3893 * Set the BDRV_O_RDWR and BDRV_O_ALLOW_RDWR flags. 3894 * Caution: getting a boolean member of @options requires care. 3895 * When @options come from -blockdev or blockdev_add, members are 3896 * typed according to the QAPI schema, but when they come from 3897 * -drive, they're all QString. 3898 */ 3899 if (g_strcmp0(qdict_get_try_str(options, BDRV_OPT_READ_ONLY), "on") && 3900 !qdict_get_try_bool(options, BDRV_OPT_READ_ONLY, false)) { 3901 flags |= (BDRV_O_RDWR | BDRV_O_ALLOW_RDWR); 3902 } else { 3903 flags &= ~BDRV_O_RDWR; 3904 } 3905 3906 if (flags & BDRV_O_SNAPSHOT) { 3907 snapshot_options = qdict_new(); 3908 bdrv_temp_snapshot_options(&snapshot_flags, snapshot_options, 3909 flags, options); 3910 /* Let bdrv_backing_options() override "read-only" */ 3911 qdict_del(options, BDRV_OPT_READ_ONLY); 3912 bdrv_inherited_options(BDRV_CHILD_COW, true, 3913 &flags, options, flags, options); 3914 } 3915 3916 bs->open_flags = flags; 3917 bs->options = options; 3918 options = qdict_clone_shallow(options); 3919 3920 /* Find the right image format driver */ 3921 /* See cautionary note on accessing @options above */ 3922 drvname = qdict_get_try_str(options, "driver"); 3923 if (drvname) { 3924 drv = bdrv_find_format(drvname); 3925 if (!drv) { 3926 error_setg(errp, "Unknown driver: '%s'", drvname); 3927 goto fail; 3928 } 3929 } 3930 3931 assert(drvname || !(flags & BDRV_O_PROTOCOL)); 3932 3933 /* See cautionary note on accessing @options above */ 3934 backing = qdict_get_try_str(options, "backing"); 3935 if (qobject_to(QNull, qdict_get(options, "backing")) != NULL || 3936 (backing && *backing == '\0')) 3937 { 3938 if (backing) { 3939 warn_report("Use of \"backing\": \"\" is deprecated; " 3940 "use \"backing\": null instead"); 3941 } 3942 flags |= BDRV_O_NO_BACKING; 3943 qdict_del(bs->explicit_options, "backing"); 3944 qdict_del(bs->options, "backing"); 3945 qdict_del(options, "backing"); 3946 } 3947 3948 /* Open image file without format layer. This BlockBackend is only used for 3949 * probing, the block drivers will do their own bdrv_open_child() for the 3950 * same BDS, which is why we put the node name back into options. */ 3951 if ((flags & BDRV_O_PROTOCOL) == 0) { 3952 BlockDriverState *file_bs; 3953 3954 file_bs = bdrv_open_child_bs(filename, options, "file", bs, 3955 &child_of_bds, BDRV_CHILD_IMAGE, 3956 true, &local_err); 3957 if (local_err) { 3958 goto fail; 3959 } 3960 if (file_bs != NULL) { 3961 /* Not requesting BLK_PERM_CONSISTENT_READ because we're only 3962 * looking at the header to guess the image format. This works even 3963 * in cases where a guest would not see a consistent state. */ 3964 file = blk_new(bdrv_get_aio_context(file_bs), 0, BLK_PERM_ALL); 3965 blk_insert_bs(file, file_bs, &local_err); 3966 bdrv_unref(file_bs); 3967 if (local_err) { 3968 goto fail; 3969 } 3970 3971 qdict_put_str(options, "file", bdrv_get_node_name(file_bs)); 3972 } 3973 } 3974 3975 /* Image format probing */ 3976 bs->probed = !drv; 3977 if (!drv && file) { 3978 ret = find_image_format(file, filename, &drv, &local_err); 3979 if (ret < 0) { 3980 goto fail; 3981 } 3982 /* 3983 * This option update would logically belong in bdrv_fill_options(), 3984 * but we first need to open bs->file for the probing to work, while 3985 * opening bs->file already requires the (mostly) final set of options 3986 * so that cache mode etc. can be inherited. 3987 * 3988 * Adding the driver later is somewhat ugly, but it's not an option 3989 * that would ever be inherited, so it's correct. We just need to make 3990 * sure to update both bs->options (which has the full effective 3991 * options for bs) and options (which has file.* already removed). 3992 */ 3993 qdict_put_str(bs->options, "driver", drv->format_name); 3994 qdict_put_str(options, "driver", drv->format_name); 3995 } else if (!drv) { 3996 error_setg(errp, "Must specify either driver or file"); 3997 goto fail; 3998 } 3999 4000 /* BDRV_O_PROTOCOL must be set iff a protocol BDS is about to be created */ 4001 assert(!!(flags & BDRV_O_PROTOCOL) == !!drv->bdrv_file_open); 4002 /* file must be NULL if a protocol BDS is about to be created 4003 * (the inverse results in an error message from bdrv_open_common()) */ 4004 assert(!(flags & BDRV_O_PROTOCOL) || !file); 4005 4006 /* Open the image */ 4007 ret = bdrv_open_common(bs, file, options, &local_err); 4008 if (ret < 0) { 4009 goto fail; 4010 } 4011 4012 if (file) { 4013 blk_unref(file); 4014 file = NULL; 4015 } 4016 4017 /* If there is a backing file, use it */ 4018 if ((flags & BDRV_O_NO_BACKING) == 0) { 4019 ret = bdrv_open_backing_file(bs, options, "backing", &local_err); 4020 if (ret < 0) { 4021 goto close_and_fail; 4022 } 4023 } 4024 4025 /* Remove all children options and references 4026 * from bs->options and bs->explicit_options */ 4027 QLIST_FOREACH(child, &bs->children, next) { 4028 char *child_key_dot; 4029 child_key_dot = g_strdup_printf("%s.", child->name); 4030 qdict_extract_subqdict(bs->explicit_options, NULL, child_key_dot); 4031 qdict_extract_subqdict(bs->options, NULL, child_key_dot); 4032 qdict_del(bs->explicit_options, child->name); 4033 qdict_del(bs->options, child->name); 4034 g_free(child_key_dot); 4035 } 4036 4037 /* Check if any unknown options were used */ 4038 if (qdict_size(options) != 0) { 4039 const QDictEntry *entry = qdict_first(options); 4040 if (flags & BDRV_O_PROTOCOL) { 4041 error_setg(errp, "Block protocol '%s' doesn't support the option " 4042 "'%s'", drv->format_name, entry->key); 4043 } else { 4044 error_setg(errp, 4045 "Block format '%s' does not support the option '%s'", 4046 drv->format_name, entry->key); 4047 } 4048 4049 goto close_and_fail; 4050 } 4051 4052 bdrv_parent_cb_change_media(bs, true); 4053 4054 qobject_unref(options); 4055 options = NULL; 4056 4057 /* For snapshot=on, create a temporary qcow2 overlay. bs points to the 4058 * temporary snapshot afterwards. */ 4059 if (snapshot_flags) { 4060 BlockDriverState *snapshot_bs; 4061 snapshot_bs = bdrv_append_temp_snapshot(bs, snapshot_flags, 4062 snapshot_options, &local_err); 4063 snapshot_options = NULL; 4064 if (local_err) { 4065 goto close_and_fail; 4066 } 4067 /* We are not going to return bs but the overlay on top of it 4068 * (snapshot_bs); thus, we have to drop the strong reference to bs 4069 * (which we obtained by calling bdrv_new()). bs will not be deleted, 4070 * though, because the overlay still has a reference to it. */ 4071 bdrv_unref(bs); 4072 bs = snapshot_bs; 4073 } 4074 4075 return bs; 4076 4077 fail: 4078 blk_unref(file); 4079 qobject_unref(snapshot_options); 4080 qobject_unref(bs->explicit_options); 4081 qobject_unref(bs->options); 4082 qobject_unref(options); 4083 bs->options = NULL; 4084 bs->explicit_options = NULL; 4085 bdrv_unref(bs); 4086 error_propagate(errp, local_err); 4087 return NULL; 4088 4089 close_and_fail: 4090 bdrv_unref(bs); 4091 qobject_unref(snapshot_options); 4092 qobject_unref(options); 4093 error_propagate(errp, local_err); 4094 return NULL; 4095 } 4096 4097 /* 4098 * The caller must always hold @filename AioContext lock, because this 4099 * function eventually calls bdrv_refresh_total_sectors() which polls 4100 * when called from non-coroutine context. 4101 */ 4102 BlockDriverState *bdrv_open(const char *filename, const char *reference, 4103 QDict *options, int flags, Error **errp) 4104 { 4105 GLOBAL_STATE_CODE(); 4106 4107 return bdrv_open_inherit(filename, reference, options, flags, NULL, 4108 NULL, 0, errp); 4109 } 4110 4111 /* Return true if the NULL-terminated @list contains @str */ 4112 static bool is_str_in_list(const char *str, const char *const *list) 4113 { 4114 if (str && list) { 4115 int i; 4116 for (i = 0; list[i] != NULL; i++) { 4117 if (!strcmp(str, list[i])) { 4118 return true; 4119 } 4120 } 4121 } 4122 return false; 4123 } 4124 4125 /* 4126 * Check that every option set in @bs->options is also set in 4127 * @new_opts. 4128 * 4129 * Options listed in the common_options list and in 4130 * @bs->drv->mutable_opts are skipped. 4131 * 4132 * Return 0 on success, otherwise return -EINVAL and set @errp. 4133 */ 4134 static int bdrv_reset_options_allowed(BlockDriverState *bs, 4135 const QDict *new_opts, Error **errp) 4136 { 4137 const QDictEntry *e; 4138 /* These options are common to all block drivers and are handled 4139 * in bdrv_reopen_prepare() so they can be left out of @new_opts */ 4140 const char *const common_options[] = { 4141 "node-name", "discard", "cache.direct", "cache.no-flush", 4142 "read-only", "auto-read-only", "detect-zeroes", NULL 4143 }; 4144 4145 for (e = qdict_first(bs->options); e; e = qdict_next(bs->options, e)) { 4146 if (!qdict_haskey(new_opts, e->key) && 4147 !is_str_in_list(e->key, common_options) && 4148 !is_str_in_list(e->key, bs->drv->mutable_opts)) { 4149 error_setg(errp, "Option '%s' cannot be reset " 4150 "to its default value", e->key); 4151 return -EINVAL; 4152 } 4153 } 4154 4155 return 0; 4156 } 4157 4158 /* 4159 * Returns true if @child can be reached recursively from @bs 4160 */ 4161 static bool bdrv_recurse_has_child(BlockDriverState *bs, 4162 BlockDriverState *child) 4163 { 4164 BdrvChild *c; 4165 4166 if (bs == child) { 4167 return true; 4168 } 4169 4170 QLIST_FOREACH(c, &bs->children, next) { 4171 if (bdrv_recurse_has_child(c->bs, child)) { 4172 return true; 4173 } 4174 } 4175 4176 return false; 4177 } 4178 4179 /* 4180 * Adds a BlockDriverState to a simple queue for an atomic, transactional 4181 * reopen of multiple devices. 4182 * 4183 * bs_queue can either be an existing BlockReopenQueue that has had QTAILQ_INIT 4184 * already performed, or alternatively may be NULL a new BlockReopenQueue will 4185 * be created and initialized. This newly created BlockReopenQueue should be 4186 * passed back in for subsequent calls that are intended to be of the same 4187 * atomic 'set'. 4188 * 4189 * bs is the BlockDriverState to add to the reopen queue. 4190 * 4191 * options contains the changed options for the associated bs 4192 * (the BlockReopenQueue takes ownership) 4193 * 4194 * flags contains the open flags for the associated bs 4195 * 4196 * returns a pointer to bs_queue, which is either the newly allocated 4197 * bs_queue, or the existing bs_queue being used. 4198 * 4199 * bs is drained here and undrained by bdrv_reopen_queue_free(). 4200 * 4201 * To be called with bs->aio_context locked. 4202 */ 4203 static BlockReopenQueue *bdrv_reopen_queue_child(BlockReopenQueue *bs_queue, 4204 BlockDriverState *bs, 4205 QDict *options, 4206 const BdrvChildClass *klass, 4207 BdrvChildRole role, 4208 bool parent_is_format, 4209 QDict *parent_options, 4210 int parent_flags, 4211 bool keep_old_opts) 4212 { 4213 assert(bs != NULL); 4214 4215 BlockReopenQueueEntry *bs_entry; 4216 BdrvChild *child; 4217 QDict *old_options, *explicit_options, *options_copy; 4218 int flags; 4219 QemuOpts *opts; 4220 4221 GLOBAL_STATE_CODE(); 4222 4223 bdrv_drained_begin(bs); 4224 4225 if (bs_queue == NULL) { 4226 bs_queue = g_new0(BlockReopenQueue, 1); 4227 QTAILQ_INIT(bs_queue); 4228 } 4229 4230 if (!options) { 4231 options = qdict_new(); 4232 } 4233 4234 /* Check if this BlockDriverState is already in the queue */ 4235 QTAILQ_FOREACH(bs_entry, bs_queue, entry) { 4236 if (bs == bs_entry->state.bs) { 4237 break; 4238 } 4239 } 4240 4241 /* 4242 * Precedence of options: 4243 * 1. Explicitly passed in options (highest) 4244 * 2. Retained from explicitly set options of bs 4245 * 3. Inherited from parent node 4246 * 4. Retained from effective options of bs 4247 */ 4248 4249 /* Old explicitly set values (don't overwrite by inherited value) */ 4250 if (bs_entry || keep_old_opts) { 4251 old_options = qdict_clone_shallow(bs_entry ? 4252 bs_entry->state.explicit_options : 4253 bs->explicit_options); 4254 bdrv_join_options(bs, options, old_options); 4255 qobject_unref(old_options); 4256 } 4257 4258 explicit_options = qdict_clone_shallow(options); 4259 4260 /* Inherit from parent node */ 4261 if (parent_options) { 4262 flags = 0; 4263 klass->inherit_options(role, parent_is_format, &flags, options, 4264 parent_flags, parent_options); 4265 } else { 4266 flags = bdrv_get_flags(bs); 4267 } 4268 4269 if (keep_old_opts) { 4270 /* Old values are used for options that aren't set yet */ 4271 old_options = qdict_clone_shallow(bs->options); 4272 bdrv_join_options(bs, options, old_options); 4273 qobject_unref(old_options); 4274 } 4275 4276 /* We have the final set of options so let's update the flags */ 4277 options_copy = qdict_clone_shallow(options); 4278 opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort); 4279 qemu_opts_absorb_qdict(opts, options_copy, NULL); 4280 update_flags_from_options(&flags, opts); 4281 qemu_opts_del(opts); 4282 qobject_unref(options_copy); 4283 4284 /* bdrv_open_inherit() sets and clears some additional flags internally */ 4285 flags &= ~BDRV_O_PROTOCOL; 4286 if (flags & BDRV_O_RDWR) { 4287 flags |= BDRV_O_ALLOW_RDWR; 4288 } 4289 4290 if (!bs_entry) { 4291 bs_entry = g_new0(BlockReopenQueueEntry, 1); 4292 QTAILQ_INSERT_TAIL(bs_queue, bs_entry, entry); 4293 } else { 4294 qobject_unref(bs_entry->state.options); 4295 qobject_unref(bs_entry->state.explicit_options); 4296 } 4297 4298 bs_entry->state.bs = bs; 4299 bs_entry->state.options = options; 4300 bs_entry->state.explicit_options = explicit_options; 4301 bs_entry->state.flags = flags; 4302 4303 /* 4304 * If keep_old_opts is false then it means that unspecified 4305 * options must be reset to their original value. We don't allow 4306 * resetting 'backing' but we need to know if the option is 4307 * missing in order to decide if we have to return an error. 4308 */ 4309 if (!keep_old_opts) { 4310 bs_entry->state.backing_missing = 4311 !qdict_haskey(options, "backing") && 4312 !qdict_haskey(options, "backing.driver"); 4313 } 4314 4315 QLIST_FOREACH(child, &bs->children, next) { 4316 QDict *new_child_options = NULL; 4317 bool child_keep_old = keep_old_opts; 4318 4319 /* reopen can only change the options of block devices that were 4320 * implicitly created and inherited options. For other (referenced) 4321 * block devices, a syntax like "backing.foo" results in an error. */ 4322 if (child->bs->inherits_from != bs) { 4323 continue; 4324 } 4325 4326 /* Check if the options contain a child reference */ 4327 if (qdict_haskey(options, child->name)) { 4328 const char *childref = qdict_get_try_str(options, child->name); 4329 /* 4330 * The current child must not be reopened if the child 4331 * reference is null or points to a different node. 4332 */ 4333 if (g_strcmp0(childref, child->bs->node_name)) { 4334 continue; 4335 } 4336 /* 4337 * If the child reference points to the current child then 4338 * reopen it with its existing set of options (note that 4339 * it can still inherit new options from the parent). 4340 */ 4341 child_keep_old = true; 4342 } else { 4343 /* Extract child options ("child-name.*") */ 4344 char *child_key_dot = g_strdup_printf("%s.", child->name); 4345 qdict_extract_subqdict(explicit_options, NULL, child_key_dot); 4346 qdict_extract_subqdict(options, &new_child_options, child_key_dot); 4347 g_free(child_key_dot); 4348 } 4349 4350 bdrv_reopen_queue_child(bs_queue, child->bs, new_child_options, 4351 child->klass, child->role, bs->drv->is_format, 4352 options, flags, child_keep_old); 4353 } 4354 4355 return bs_queue; 4356 } 4357 4358 /* To be called with bs->aio_context locked */ 4359 BlockReopenQueue *bdrv_reopen_queue(BlockReopenQueue *bs_queue, 4360 BlockDriverState *bs, 4361 QDict *options, bool keep_old_opts) 4362 { 4363 GLOBAL_STATE_CODE(); 4364 4365 return bdrv_reopen_queue_child(bs_queue, bs, options, NULL, 0, false, 4366 NULL, 0, keep_old_opts); 4367 } 4368 4369 void bdrv_reopen_queue_free(BlockReopenQueue *bs_queue) 4370 { 4371 GLOBAL_STATE_CODE(); 4372 if (bs_queue) { 4373 BlockReopenQueueEntry *bs_entry, *next; 4374 QTAILQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) { 4375 AioContext *ctx = bdrv_get_aio_context(bs_entry->state.bs); 4376 4377 aio_context_acquire(ctx); 4378 bdrv_drained_end(bs_entry->state.bs); 4379 aio_context_release(ctx); 4380 4381 qobject_unref(bs_entry->state.explicit_options); 4382 qobject_unref(bs_entry->state.options); 4383 g_free(bs_entry); 4384 } 4385 g_free(bs_queue); 4386 } 4387 } 4388 4389 /* 4390 * Reopen multiple BlockDriverStates atomically & transactionally. 4391 * 4392 * The queue passed in (bs_queue) must have been built up previous 4393 * via bdrv_reopen_queue(). 4394 * 4395 * Reopens all BDS specified in the queue, with the appropriate 4396 * flags. All devices are prepared for reopen, and failure of any 4397 * device will cause all device changes to be abandoned, and intermediate 4398 * data cleaned up. 4399 * 4400 * If all devices prepare successfully, then the changes are committed 4401 * to all devices. 4402 * 4403 * All affected nodes must be drained between bdrv_reopen_queue() and 4404 * bdrv_reopen_multiple(). 4405 * 4406 * To be called from the main thread, with all other AioContexts unlocked. 4407 */ 4408 int bdrv_reopen_multiple(BlockReopenQueue *bs_queue, Error **errp) 4409 { 4410 int ret = -1; 4411 BlockReopenQueueEntry *bs_entry, *next; 4412 AioContext *ctx; 4413 Transaction *tran = tran_new(); 4414 g_autoptr(GSList) refresh_list = NULL; 4415 4416 assert(qemu_get_current_aio_context() == qemu_get_aio_context()); 4417 assert(bs_queue != NULL); 4418 GLOBAL_STATE_CODE(); 4419 4420 QTAILQ_FOREACH(bs_entry, bs_queue, entry) { 4421 ctx = bdrv_get_aio_context(bs_entry->state.bs); 4422 aio_context_acquire(ctx); 4423 ret = bdrv_flush(bs_entry->state.bs); 4424 aio_context_release(ctx); 4425 if (ret < 0) { 4426 error_setg_errno(errp, -ret, "Error flushing drive"); 4427 goto abort; 4428 } 4429 } 4430 4431 QTAILQ_FOREACH(bs_entry, bs_queue, entry) { 4432 assert(bs_entry->state.bs->quiesce_counter > 0); 4433 ctx = bdrv_get_aio_context(bs_entry->state.bs); 4434 aio_context_acquire(ctx); 4435 ret = bdrv_reopen_prepare(&bs_entry->state, bs_queue, tran, errp); 4436 aio_context_release(ctx); 4437 if (ret < 0) { 4438 goto abort; 4439 } 4440 bs_entry->prepared = true; 4441 } 4442 4443 QTAILQ_FOREACH(bs_entry, bs_queue, entry) { 4444 BDRVReopenState *state = &bs_entry->state; 4445 4446 refresh_list = g_slist_prepend(refresh_list, state->bs); 4447 if (state->old_backing_bs) { 4448 refresh_list = g_slist_prepend(refresh_list, state->old_backing_bs); 4449 } 4450 if (state->old_file_bs) { 4451 refresh_list = g_slist_prepend(refresh_list, state->old_file_bs); 4452 } 4453 } 4454 4455 /* 4456 * Note that file-posix driver rely on permission update done during reopen 4457 * (even if no permission changed), because it wants "new" permissions for 4458 * reconfiguring the fd and that's why it does it in raw_check_perm(), not 4459 * in raw_reopen_prepare() which is called with "old" permissions. 4460 */ 4461 ret = bdrv_list_refresh_perms(refresh_list, bs_queue, tran, errp); 4462 if (ret < 0) { 4463 goto abort; 4464 } 4465 4466 /* 4467 * If we reach this point, we have success and just need to apply the 4468 * changes. 4469 * 4470 * Reverse order is used to comfort qcow2 driver: on commit it need to write 4471 * IN_USE flag to the image, to mark bitmaps in the image as invalid. But 4472 * children are usually goes after parents in reopen-queue, so go from last 4473 * to first element. 4474 */ 4475 QTAILQ_FOREACH_REVERSE(bs_entry, bs_queue, entry) { 4476 ctx = bdrv_get_aio_context(bs_entry->state.bs); 4477 aio_context_acquire(ctx); 4478 bdrv_reopen_commit(&bs_entry->state); 4479 aio_context_release(ctx); 4480 } 4481 4482 tran_commit(tran); 4483 4484 QTAILQ_FOREACH_REVERSE(bs_entry, bs_queue, entry) { 4485 BlockDriverState *bs = bs_entry->state.bs; 4486 4487 if (bs->drv->bdrv_reopen_commit_post) { 4488 ctx = bdrv_get_aio_context(bs); 4489 aio_context_acquire(ctx); 4490 bs->drv->bdrv_reopen_commit_post(&bs_entry->state); 4491 aio_context_release(ctx); 4492 } 4493 } 4494 4495 ret = 0; 4496 goto cleanup; 4497 4498 abort: 4499 tran_abort(tran); 4500 QTAILQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) { 4501 if (bs_entry->prepared) { 4502 ctx = bdrv_get_aio_context(bs_entry->state.bs); 4503 aio_context_acquire(ctx); 4504 bdrv_reopen_abort(&bs_entry->state); 4505 aio_context_release(ctx); 4506 } 4507 } 4508 4509 cleanup: 4510 bdrv_reopen_queue_free(bs_queue); 4511 4512 return ret; 4513 } 4514 4515 int bdrv_reopen(BlockDriverState *bs, QDict *opts, bool keep_old_opts, 4516 Error **errp) 4517 { 4518 AioContext *ctx = bdrv_get_aio_context(bs); 4519 BlockReopenQueue *queue; 4520 int ret; 4521 4522 GLOBAL_STATE_CODE(); 4523 4524 queue = bdrv_reopen_queue(NULL, bs, opts, keep_old_opts); 4525 4526 if (ctx != qemu_get_aio_context()) { 4527 aio_context_release(ctx); 4528 } 4529 ret = bdrv_reopen_multiple(queue, errp); 4530 4531 if (ctx != qemu_get_aio_context()) { 4532 aio_context_acquire(ctx); 4533 } 4534 4535 return ret; 4536 } 4537 4538 int bdrv_reopen_set_read_only(BlockDriverState *bs, bool read_only, 4539 Error **errp) 4540 { 4541 QDict *opts = qdict_new(); 4542 4543 GLOBAL_STATE_CODE(); 4544 4545 qdict_put_bool(opts, BDRV_OPT_READ_ONLY, read_only); 4546 4547 return bdrv_reopen(bs, opts, true, errp); 4548 } 4549 4550 /* 4551 * Take a BDRVReopenState and check if the value of 'backing' in the 4552 * reopen_state->options QDict is valid or not. 4553 * 4554 * If 'backing' is missing from the QDict then return 0. 4555 * 4556 * If 'backing' contains the node name of the backing file of 4557 * reopen_state->bs then return 0. 4558 * 4559 * If 'backing' contains a different node name (or is null) then check 4560 * whether the current backing file can be replaced with the new one. 4561 * If that's the case then reopen_state->replace_backing_bs is set to 4562 * true and reopen_state->new_backing_bs contains a pointer to the new 4563 * backing BlockDriverState (or NULL). 4564 * 4565 * Return 0 on success, otherwise return < 0 and set @errp. 4566 */ 4567 static int bdrv_reopen_parse_file_or_backing(BDRVReopenState *reopen_state, 4568 bool is_backing, Transaction *tran, 4569 Error **errp) 4570 { 4571 BlockDriverState *bs = reopen_state->bs; 4572 BlockDriverState *new_child_bs; 4573 BlockDriverState *old_child_bs = is_backing ? child_bs(bs->backing) : 4574 child_bs(bs->file); 4575 const char *child_name = is_backing ? "backing" : "file"; 4576 QObject *value; 4577 const char *str; 4578 4579 GLOBAL_STATE_CODE(); 4580 4581 value = qdict_get(reopen_state->options, child_name); 4582 if (value == NULL) { 4583 return 0; 4584 } 4585 4586 switch (qobject_type(value)) { 4587 case QTYPE_QNULL: 4588 assert(is_backing); /* The 'file' option does not allow a null value */ 4589 new_child_bs = NULL; 4590 break; 4591 case QTYPE_QSTRING: 4592 str = qstring_get_str(qobject_to(QString, value)); 4593 new_child_bs = bdrv_lookup_bs(NULL, str, errp); 4594 if (new_child_bs == NULL) { 4595 return -EINVAL; 4596 } else if (bdrv_recurse_has_child(new_child_bs, bs)) { 4597 error_setg(errp, "Making '%s' a %s child of '%s' would create a " 4598 "cycle", str, child_name, bs->node_name); 4599 return -EINVAL; 4600 } 4601 break; 4602 default: 4603 /* 4604 * The options QDict has been flattened, so 'backing' and 'file' 4605 * do not allow any other data type here. 4606 */ 4607 g_assert_not_reached(); 4608 } 4609 4610 if (old_child_bs == new_child_bs) { 4611 return 0; 4612 } 4613 4614 if (old_child_bs) { 4615 if (bdrv_skip_implicit_filters(old_child_bs) == new_child_bs) { 4616 return 0; 4617 } 4618 4619 if (old_child_bs->implicit) { 4620 error_setg(errp, "Cannot replace implicit %s child of %s", 4621 child_name, bs->node_name); 4622 return -EPERM; 4623 } 4624 } 4625 4626 if (bs->drv->is_filter && !old_child_bs) { 4627 /* 4628 * Filters always have a file or a backing child, so we are trying to 4629 * change wrong child 4630 */ 4631 error_setg(errp, "'%s' is a %s filter node that does not support a " 4632 "%s child", bs->node_name, bs->drv->format_name, child_name); 4633 return -EINVAL; 4634 } 4635 4636 if (is_backing) { 4637 reopen_state->old_backing_bs = old_child_bs; 4638 } else { 4639 reopen_state->old_file_bs = old_child_bs; 4640 } 4641 4642 return bdrv_set_file_or_backing_noperm(bs, new_child_bs, is_backing, 4643 tran, errp); 4644 } 4645 4646 /* 4647 * Prepares a BlockDriverState for reopen. All changes are staged in the 4648 * 'opaque' field of the BDRVReopenState, which is used and allocated by 4649 * the block driver layer .bdrv_reopen_prepare() 4650 * 4651 * bs is the BlockDriverState to reopen 4652 * flags are the new open flags 4653 * queue is the reopen queue 4654 * 4655 * Returns 0 on success, non-zero on error. On error errp will be set 4656 * as well. 4657 * 4658 * On failure, bdrv_reopen_abort() will be called to clean up any data. 4659 * It is the responsibility of the caller to then call the abort() or 4660 * commit() for any other BDS that have been left in a prepare() state 4661 * 4662 */ 4663 static int bdrv_reopen_prepare(BDRVReopenState *reopen_state, 4664 BlockReopenQueue *queue, 4665 Transaction *change_child_tran, Error **errp) 4666 { 4667 int ret = -1; 4668 int old_flags; 4669 Error *local_err = NULL; 4670 BlockDriver *drv; 4671 QemuOpts *opts; 4672 QDict *orig_reopen_opts; 4673 char *discard = NULL; 4674 bool read_only; 4675 bool drv_prepared = false; 4676 4677 assert(reopen_state != NULL); 4678 assert(reopen_state->bs->drv != NULL); 4679 GLOBAL_STATE_CODE(); 4680 drv = reopen_state->bs->drv; 4681 4682 /* This function and each driver's bdrv_reopen_prepare() remove 4683 * entries from reopen_state->options as they are processed, so 4684 * we need to make a copy of the original QDict. */ 4685 orig_reopen_opts = qdict_clone_shallow(reopen_state->options); 4686 4687 /* Process generic block layer options */ 4688 opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort); 4689 if (!qemu_opts_absorb_qdict(opts, reopen_state->options, errp)) { 4690 ret = -EINVAL; 4691 goto error; 4692 } 4693 4694 /* This was already called in bdrv_reopen_queue_child() so the flags 4695 * are up-to-date. This time we simply want to remove the options from 4696 * QemuOpts in order to indicate that they have been processed. */ 4697 old_flags = reopen_state->flags; 4698 update_flags_from_options(&reopen_state->flags, opts); 4699 assert(old_flags == reopen_state->flags); 4700 4701 discard = qemu_opt_get_del(opts, BDRV_OPT_DISCARD); 4702 if (discard != NULL) { 4703 if (bdrv_parse_discard_flags(discard, &reopen_state->flags) != 0) { 4704 error_setg(errp, "Invalid discard option"); 4705 ret = -EINVAL; 4706 goto error; 4707 } 4708 } 4709 4710 reopen_state->detect_zeroes = 4711 bdrv_parse_detect_zeroes(opts, reopen_state->flags, &local_err); 4712 if (local_err) { 4713 error_propagate(errp, local_err); 4714 ret = -EINVAL; 4715 goto error; 4716 } 4717 4718 /* All other options (including node-name and driver) must be unchanged. 4719 * Put them back into the QDict, so that they are checked at the end 4720 * of this function. */ 4721 qemu_opts_to_qdict(opts, reopen_state->options); 4722 4723 /* If we are to stay read-only, do not allow permission change 4724 * to r/w. Attempting to set to r/w may fail if either BDRV_O_ALLOW_RDWR is 4725 * not set, or if the BDS still has copy_on_read enabled */ 4726 read_only = !(reopen_state->flags & BDRV_O_RDWR); 4727 ret = bdrv_can_set_read_only(reopen_state->bs, read_only, true, &local_err); 4728 if (local_err) { 4729 error_propagate(errp, local_err); 4730 goto error; 4731 } 4732 4733 if (drv->bdrv_reopen_prepare) { 4734 /* 4735 * If a driver-specific option is missing, it means that we 4736 * should reset it to its default value. 4737 * But not all options allow that, so we need to check it first. 4738 */ 4739 ret = bdrv_reset_options_allowed(reopen_state->bs, 4740 reopen_state->options, errp); 4741 if (ret) { 4742 goto error; 4743 } 4744 4745 ret = drv->bdrv_reopen_prepare(reopen_state, queue, &local_err); 4746 if (ret) { 4747 if (local_err != NULL) { 4748 error_propagate(errp, local_err); 4749 } else { 4750 bdrv_refresh_filename(reopen_state->bs); 4751 error_setg(errp, "failed while preparing to reopen image '%s'", 4752 reopen_state->bs->filename); 4753 } 4754 goto error; 4755 } 4756 } else { 4757 /* It is currently mandatory to have a bdrv_reopen_prepare() 4758 * handler for each supported drv. */ 4759 error_setg(errp, "Block format '%s' used by node '%s' " 4760 "does not support reopening files", drv->format_name, 4761 bdrv_get_device_or_node_name(reopen_state->bs)); 4762 ret = -1; 4763 goto error; 4764 } 4765 4766 drv_prepared = true; 4767 4768 /* 4769 * We must provide the 'backing' option if the BDS has a backing 4770 * file or if the image file has a backing file name as part of 4771 * its metadata. Otherwise the 'backing' option can be omitted. 4772 */ 4773 if (drv->supports_backing && reopen_state->backing_missing && 4774 (reopen_state->bs->backing || reopen_state->bs->backing_file[0])) { 4775 error_setg(errp, "backing is missing for '%s'", 4776 reopen_state->bs->node_name); 4777 ret = -EINVAL; 4778 goto error; 4779 } 4780 4781 /* 4782 * Allow changing the 'backing' option. The new value can be 4783 * either a reference to an existing node (using its node name) 4784 * or NULL to simply detach the current backing file. 4785 */ 4786 ret = bdrv_reopen_parse_file_or_backing(reopen_state, true, 4787 change_child_tran, errp); 4788 if (ret < 0) { 4789 goto error; 4790 } 4791 qdict_del(reopen_state->options, "backing"); 4792 4793 /* Allow changing the 'file' option. In this case NULL is not allowed */ 4794 ret = bdrv_reopen_parse_file_or_backing(reopen_state, false, 4795 change_child_tran, errp); 4796 if (ret < 0) { 4797 goto error; 4798 } 4799 qdict_del(reopen_state->options, "file"); 4800 4801 /* Options that are not handled are only okay if they are unchanged 4802 * compared to the old state. It is expected that some options are only 4803 * used for the initial open, but not reopen (e.g. filename) */ 4804 if (qdict_size(reopen_state->options)) { 4805 const QDictEntry *entry = qdict_first(reopen_state->options); 4806 4807 do { 4808 QObject *new = entry->value; 4809 QObject *old = qdict_get(reopen_state->bs->options, entry->key); 4810 4811 /* Allow child references (child_name=node_name) as long as they 4812 * point to the current child (i.e. everything stays the same). */ 4813 if (qobject_type(new) == QTYPE_QSTRING) { 4814 BdrvChild *child; 4815 QLIST_FOREACH(child, &reopen_state->bs->children, next) { 4816 if (!strcmp(child->name, entry->key)) { 4817 break; 4818 } 4819 } 4820 4821 if (child) { 4822 if (!strcmp(child->bs->node_name, 4823 qstring_get_str(qobject_to(QString, new)))) { 4824 continue; /* Found child with this name, skip option */ 4825 } 4826 } 4827 } 4828 4829 /* 4830 * TODO: When using -drive to specify blockdev options, all values 4831 * will be strings; however, when using -blockdev, blockdev-add or 4832 * filenames using the json:{} pseudo-protocol, they will be 4833 * correctly typed. 4834 * In contrast, reopening options are (currently) always strings 4835 * (because you can only specify them through qemu-io; all other 4836 * callers do not specify any options). 4837 * Therefore, when using anything other than -drive to create a BDS, 4838 * this cannot detect non-string options as unchanged, because 4839 * qobject_is_equal() always returns false for objects of different 4840 * type. In the future, this should be remedied by correctly typing 4841 * all options. For now, this is not too big of an issue because 4842 * the user can simply omit options which cannot be changed anyway, 4843 * so they will stay unchanged. 4844 */ 4845 if (!qobject_is_equal(new, old)) { 4846 error_setg(errp, "Cannot change the option '%s'", entry->key); 4847 ret = -EINVAL; 4848 goto error; 4849 } 4850 } while ((entry = qdict_next(reopen_state->options, entry))); 4851 } 4852 4853 ret = 0; 4854 4855 /* Restore the original reopen_state->options QDict */ 4856 qobject_unref(reopen_state->options); 4857 reopen_state->options = qobject_ref(orig_reopen_opts); 4858 4859 error: 4860 if (ret < 0 && drv_prepared) { 4861 /* drv->bdrv_reopen_prepare() has succeeded, so we need to 4862 * call drv->bdrv_reopen_abort() before signaling an error 4863 * (bdrv_reopen_multiple() will not call bdrv_reopen_abort() 4864 * when the respective bdrv_reopen_prepare() has failed) */ 4865 if (drv->bdrv_reopen_abort) { 4866 drv->bdrv_reopen_abort(reopen_state); 4867 } 4868 } 4869 qemu_opts_del(opts); 4870 qobject_unref(orig_reopen_opts); 4871 g_free(discard); 4872 return ret; 4873 } 4874 4875 /* 4876 * Takes the staged changes for the reopen from bdrv_reopen_prepare(), and 4877 * makes them final by swapping the staging BlockDriverState contents into 4878 * the active BlockDriverState contents. 4879 */ 4880 static void bdrv_reopen_commit(BDRVReopenState *reopen_state) 4881 { 4882 BlockDriver *drv; 4883 BlockDriverState *bs; 4884 BdrvChild *child; 4885 4886 assert(reopen_state != NULL); 4887 bs = reopen_state->bs; 4888 drv = bs->drv; 4889 assert(drv != NULL); 4890 GLOBAL_STATE_CODE(); 4891 4892 /* If there are any driver level actions to take */ 4893 if (drv->bdrv_reopen_commit) { 4894 drv->bdrv_reopen_commit(reopen_state); 4895 } 4896 4897 /* set BDS specific flags now */ 4898 qobject_unref(bs->explicit_options); 4899 qobject_unref(bs->options); 4900 qobject_ref(reopen_state->explicit_options); 4901 qobject_ref(reopen_state->options); 4902 4903 bs->explicit_options = reopen_state->explicit_options; 4904 bs->options = reopen_state->options; 4905 bs->open_flags = reopen_state->flags; 4906 bs->detect_zeroes = reopen_state->detect_zeroes; 4907 4908 /* Remove child references from bs->options and bs->explicit_options. 4909 * Child options were already removed in bdrv_reopen_queue_child() */ 4910 QLIST_FOREACH(child, &bs->children, next) { 4911 qdict_del(bs->explicit_options, child->name); 4912 qdict_del(bs->options, child->name); 4913 } 4914 /* backing is probably removed, so it's not handled by previous loop */ 4915 qdict_del(bs->explicit_options, "backing"); 4916 qdict_del(bs->options, "backing"); 4917 4918 bdrv_refresh_limits(bs, NULL, NULL); 4919 } 4920 4921 /* 4922 * Abort the reopen, and delete and free the staged changes in 4923 * reopen_state 4924 */ 4925 static void bdrv_reopen_abort(BDRVReopenState *reopen_state) 4926 { 4927 BlockDriver *drv; 4928 4929 assert(reopen_state != NULL); 4930 drv = reopen_state->bs->drv; 4931 assert(drv != NULL); 4932 GLOBAL_STATE_CODE(); 4933 4934 if (drv->bdrv_reopen_abort) { 4935 drv->bdrv_reopen_abort(reopen_state); 4936 } 4937 } 4938 4939 4940 static void bdrv_close(BlockDriverState *bs) 4941 { 4942 BdrvAioNotifier *ban, *ban_next; 4943 BdrvChild *child, *next; 4944 4945 GLOBAL_STATE_CODE(); 4946 assert(!bs->refcnt); 4947 4948 bdrv_drained_begin(bs); /* complete I/O */ 4949 bdrv_flush(bs); 4950 bdrv_drain(bs); /* in case flush left pending I/O */ 4951 4952 if (bs->drv) { 4953 if (bs->drv->bdrv_close) { 4954 /* Must unfreeze all children, so bdrv_unref_child() works */ 4955 bs->drv->bdrv_close(bs); 4956 } 4957 bs->drv = NULL; 4958 } 4959 4960 QLIST_FOREACH_SAFE(child, &bs->children, next, next) { 4961 bdrv_unref_child(bs, child); 4962 } 4963 4964 assert(!bs->backing); 4965 assert(!bs->file); 4966 g_free(bs->opaque); 4967 bs->opaque = NULL; 4968 qatomic_set(&bs->copy_on_read, 0); 4969 bs->backing_file[0] = '\0'; 4970 bs->backing_format[0] = '\0'; 4971 bs->total_sectors = 0; 4972 bs->encrypted = false; 4973 bs->sg = false; 4974 qobject_unref(bs->options); 4975 qobject_unref(bs->explicit_options); 4976 bs->options = NULL; 4977 bs->explicit_options = NULL; 4978 qobject_unref(bs->full_open_options); 4979 bs->full_open_options = NULL; 4980 g_free(bs->block_status_cache); 4981 bs->block_status_cache = NULL; 4982 4983 bdrv_release_named_dirty_bitmaps(bs); 4984 assert(QLIST_EMPTY(&bs->dirty_bitmaps)); 4985 4986 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) { 4987 g_free(ban); 4988 } 4989 QLIST_INIT(&bs->aio_notifiers); 4990 bdrv_drained_end(bs); 4991 4992 /* 4993 * If we're still inside some bdrv_drain_all_begin()/end() sections, end 4994 * them now since this BDS won't exist anymore when bdrv_drain_all_end() 4995 * gets called. 4996 */ 4997 if (bs->quiesce_counter) { 4998 bdrv_drain_all_end_quiesce(bs); 4999 } 5000 } 5001 5002 void bdrv_close_all(void) 5003 { 5004 GLOBAL_STATE_CODE(); 5005 assert(job_next(NULL) == NULL); 5006 5007 /* Drop references from requests still in flight, such as canceled block 5008 * jobs whose AIO context has not been polled yet */ 5009 bdrv_drain_all(); 5010 5011 blk_remove_all_bs(); 5012 blockdev_close_all_bdrv_states(); 5013 5014 assert(QTAILQ_EMPTY(&all_bdrv_states)); 5015 } 5016 5017 static bool should_update_child(BdrvChild *c, BlockDriverState *to) 5018 { 5019 GQueue *queue; 5020 GHashTable *found; 5021 bool ret; 5022 5023 if (c->klass->stay_at_node) { 5024 return false; 5025 } 5026 5027 /* If the child @c belongs to the BDS @to, replacing the current 5028 * c->bs by @to would mean to create a loop. 5029 * 5030 * Such a case occurs when appending a BDS to a backing chain. 5031 * For instance, imagine the following chain: 5032 * 5033 * guest device -> node A -> further backing chain... 5034 * 5035 * Now we create a new BDS B which we want to put on top of this 5036 * chain, so we first attach A as its backing node: 5037 * 5038 * node B 5039 * | 5040 * v 5041 * guest device -> node A -> further backing chain... 5042 * 5043 * Finally we want to replace A by B. When doing that, we want to 5044 * replace all pointers to A by pointers to B -- except for the 5045 * pointer from B because (1) that would create a loop, and (2) 5046 * that pointer should simply stay intact: 5047 * 5048 * guest device -> node B 5049 * | 5050 * v 5051 * node A -> further backing chain... 5052 * 5053 * In general, when replacing a node A (c->bs) by a node B (@to), 5054 * if A is a child of B, that means we cannot replace A by B there 5055 * because that would create a loop. Silently detaching A from B 5056 * is also not really an option. So overall just leaving A in 5057 * place there is the most sensible choice. 5058 * 5059 * We would also create a loop in any cases where @c is only 5060 * indirectly referenced by @to. Prevent this by returning false 5061 * if @c is found (by breadth-first search) anywhere in the whole 5062 * subtree of @to. 5063 */ 5064 5065 ret = true; 5066 found = g_hash_table_new(NULL, NULL); 5067 g_hash_table_add(found, to); 5068 queue = g_queue_new(); 5069 g_queue_push_tail(queue, to); 5070 5071 while (!g_queue_is_empty(queue)) { 5072 BlockDriverState *v = g_queue_pop_head(queue); 5073 BdrvChild *c2; 5074 5075 QLIST_FOREACH(c2, &v->children, next) { 5076 if (c2 == c) { 5077 ret = false; 5078 break; 5079 } 5080 5081 if (g_hash_table_contains(found, c2->bs)) { 5082 continue; 5083 } 5084 5085 g_queue_push_tail(queue, c2->bs); 5086 g_hash_table_add(found, c2->bs); 5087 } 5088 } 5089 5090 g_queue_free(queue); 5091 g_hash_table_destroy(found); 5092 5093 return ret; 5094 } 5095 5096 static void bdrv_remove_child_commit(void *opaque) 5097 { 5098 GLOBAL_STATE_CODE(); 5099 bdrv_child_free(opaque); 5100 } 5101 5102 static TransactionActionDrv bdrv_remove_child_drv = { 5103 .commit = bdrv_remove_child_commit, 5104 }; 5105 5106 /* Function doesn't update permissions, caller is responsible for this. */ 5107 static void bdrv_remove_child(BdrvChild *child, Transaction *tran) 5108 { 5109 if (!child) { 5110 return; 5111 } 5112 5113 if (child->bs) { 5114 BlockDriverState *bs = child->bs; 5115 bdrv_drained_begin(bs); 5116 bdrv_replace_child_tran(child, NULL, tran); 5117 bdrv_drained_end(bs); 5118 } 5119 5120 tran_add(tran, &bdrv_remove_child_drv, child); 5121 } 5122 5123 static void undrain_on_clean_cb(void *opaque) 5124 { 5125 bdrv_drained_end(opaque); 5126 } 5127 5128 static TransactionActionDrv undrain_on_clean = { 5129 .clean = undrain_on_clean_cb, 5130 }; 5131 5132 static int bdrv_replace_node_noperm(BlockDriverState *from, 5133 BlockDriverState *to, 5134 bool auto_skip, Transaction *tran, 5135 Error **errp) 5136 { 5137 BdrvChild *c, *next; 5138 5139 GLOBAL_STATE_CODE(); 5140 5141 bdrv_drained_begin(from); 5142 bdrv_drained_begin(to); 5143 tran_add(tran, &undrain_on_clean, from); 5144 tran_add(tran, &undrain_on_clean, to); 5145 5146 QLIST_FOREACH_SAFE(c, &from->parents, next_parent, next) { 5147 assert(c->bs == from); 5148 if (!should_update_child(c, to)) { 5149 if (auto_skip) { 5150 continue; 5151 } 5152 error_setg(errp, "Should not change '%s' link to '%s'", 5153 c->name, from->node_name); 5154 return -EINVAL; 5155 } 5156 if (c->frozen) { 5157 error_setg(errp, "Cannot change '%s' link to '%s'", 5158 c->name, from->node_name); 5159 return -EPERM; 5160 } 5161 bdrv_replace_child_tran(c, to, tran); 5162 } 5163 5164 return 0; 5165 } 5166 5167 /* 5168 * With auto_skip=true bdrv_replace_node_common skips updating from parents 5169 * if it creates a parent-child relation loop or if parent is block-job. 5170 * 5171 * With auto_skip=false the error is returned if from has a parent which should 5172 * not be updated. 5173 * 5174 * With @detach_subchain=true @to must be in a backing chain of @from. In this 5175 * case backing link of the cow-parent of @to is removed. 5176 */ 5177 static int bdrv_replace_node_common(BlockDriverState *from, 5178 BlockDriverState *to, 5179 bool auto_skip, bool detach_subchain, 5180 Error **errp) 5181 { 5182 Transaction *tran = tran_new(); 5183 g_autoptr(GSList) refresh_list = NULL; 5184 BlockDriverState *to_cow_parent = NULL; 5185 int ret; 5186 5187 GLOBAL_STATE_CODE(); 5188 5189 if (detach_subchain) { 5190 assert(bdrv_chain_contains(from, to)); 5191 assert(from != to); 5192 for (to_cow_parent = from; 5193 bdrv_filter_or_cow_bs(to_cow_parent) != to; 5194 to_cow_parent = bdrv_filter_or_cow_bs(to_cow_parent)) 5195 { 5196 ; 5197 } 5198 } 5199 5200 /* Make sure that @from doesn't go away until we have successfully attached 5201 * all of its parents to @to. */ 5202 bdrv_ref(from); 5203 5204 assert(qemu_get_current_aio_context() == qemu_get_aio_context()); 5205 assert(bdrv_get_aio_context(from) == bdrv_get_aio_context(to)); 5206 bdrv_drained_begin(from); 5207 5208 /* 5209 * Do the replacement without permission update. 5210 * Replacement may influence the permissions, we should calculate new 5211 * permissions based on new graph. If we fail, we'll roll-back the 5212 * replacement. 5213 */ 5214 ret = bdrv_replace_node_noperm(from, to, auto_skip, tran, errp); 5215 if (ret < 0) { 5216 goto out; 5217 } 5218 5219 if (detach_subchain) { 5220 bdrv_remove_child(bdrv_filter_or_cow_child(to_cow_parent), tran); 5221 } 5222 5223 refresh_list = g_slist_prepend(refresh_list, to); 5224 refresh_list = g_slist_prepend(refresh_list, from); 5225 5226 ret = bdrv_list_refresh_perms(refresh_list, NULL, tran, errp); 5227 if (ret < 0) { 5228 goto out; 5229 } 5230 5231 ret = 0; 5232 5233 out: 5234 tran_finalize(tran, ret); 5235 5236 bdrv_drained_end(from); 5237 bdrv_unref(from); 5238 5239 return ret; 5240 } 5241 5242 int bdrv_replace_node(BlockDriverState *from, BlockDriverState *to, 5243 Error **errp) 5244 { 5245 GLOBAL_STATE_CODE(); 5246 5247 return bdrv_replace_node_common(from, to, true, false, errp); 5248 } 5249 5250 int bdrv_drop_filter(BlockDriverState *bs, Error **errp) 5251 { 5252 GLOBAL_STATE_CODE(); 5253 5254 return bdrv_replace_node_common(bs, bdrv_filter_or_cow_bs(bs), true, true, 5255 errp); 5256 } 5257 5258 /* 5259 * Add new bs contents at the top of an image chain while the chain is 5260 * live, while keeping required fields on the top layer. 5261 * 5262 * This will modify the BlockDriverState fields, and swap contents 5263 * between bs_new and bs_top. Both bs_new and bs_top are modified. 5264 * 5265 * bs_new must not be attached to a BlockBackend and must not have backing 5266 * child. 5267 * 5268 * This function does not create any image files. 5269 * 5270 * The caller must hold the AioContext lock for @bs_top. 5271 */ 5272 int bdrv_append(BlockDriverState *bs_new, BlockDriverState *bs_top, 5273 Error **errp) 5274 { 5275 int ret; 5276 BdrvChild *child; 5277 Transaction *tran = tran_new(); 5278 AioContext *old_context, *new_context = NULL; 5279 5280 GLOBAL_STATE_CODE(); 5281 5282 assert(!bs_new->backing); 5283 5284 old_context = bdrv_get_aio_context(bs_top); 5285 5286 child = bdrv_attach_child_noperm(bs_new, bs_top, "backing", 5287 &child_of_bds, bdrv_backing_role(bs_new), 5288 tran, errp); 5289 if (!child) { 5290 ret = -EINVAL; 5291 goto out; 5292 } 5293 5294 /* 5295 * bdrv_attach_child_noperm could change the AioContext of bs_top. 5296 * bdrv_replace_node_noperm calls bdrv_drained_begin, so let's temporarily 5297 * hold the new AioContext, since bdrv_drained_begin calls BDRV_POLL_WHILE 5298 * that assumes the new lock is taken. 5299 */ 5300 new_context = bdrv_get_aio_context(bs_top); 5301 5302 if (old_context != new_context) { 5303 aio_context_release(old_context); 5304 aio_context_acquire(new_context); 5305 } 5306 5307 ret = bdrv_replace_node_noperm(bs_top, bs_new, true, tran, errp); 5308 if (ret < 0) { 5309 goto out; 5310 } 5311 5312 ret = bdrv_refresh_perms(bs_new, tran, errp); 5313 out: 5314 tran_finalize(tran, ret); 5315 5316 bdrv_refresh_limits(bs_top, NULL, NULL); 5317 5318 if (new_context && old_context != new_context) { 5319 aio_context_release(new_context); 5320 aio_context_acquire(old_context); 5321 } 5322 5323 return ret; 5324 } 5325 5326 /* Not for empty child */ 5327 int bdrv_replace_child_bs(BdrvChild *child, BlockDriverState *new_bs, 5328 Error **errp) 5329 { 5330 int ret; 5331 Transaction *tran = tran_new(); 5332 g_autoptr(GSList) refresh_list = NULL; 5333 BlockDriverState *old_bs = child->bs; 5334 5335 GLOBAL_STATE_CODE(); 5336 5337 bdrv_ref(old_bs); 5338 bdrv_drained_begin(old_bs); 5339 bdrv_drained_begin(new_bs); 5340 5341 bdrv_replace_child_tran(child, new_bs, tran); 5342 5343 refresh_list = g_slist_prepend(refresh_list, old_bs); 5344 refresh_list = g_slist_prepend(refresh_list, new_bs); 5345 5346 ret = bdrv_list_refresh_perms(refresh_list, NULL, tran, errp); 5347 5348 tran_finalize(tran, ret); 5349 5350 bdrv_drained_end(old_bs); 5351 bdrv_drained_end(new_bs); 5352 bdrv_unref(old_bs); 5353 5354 return ret; 5355 } 5356 5357 static void bdrv_delete(BlockDriverState *bs) 5358 { 5359 assert(bdrv_op_blocker_is_empty(bs)); 5360 assert(!bs->refcnt); 5361 GLOBAL_STATE_CODE(); 5362 5363 /* remove from list, if necessary */ 5364 if (bs->node_name[0] != '\0') { 5365 QTAILQ_REMOVE(&graph_bdrv_states, bs, node_list); 5366 } 5367 QTAILQ_REMOVE(&all_bdrv_states, bs, bs_list); 5368 5369 bdrv_close(bs); 5370 5371 g_free(bs); 5372 } 5373 5374 5375 /* 5376 * Replace @bs by newly created block node. 5377 * 5378 * @options is a QDict of options to pass to the block drivers, or NULL for an 5379 * empty set of options. The reference to the QDict belongs to the block layer 5380 * after the call (even on failure), so if the caller intends to reuse the 5381 * dictionary, it needs to use qobject_ref() before calling bdrv_open. 5382 */ 5383 BlockDriverState *bdrv_insert_node(BlockDriverState *bs, QDict *options, 5384 int flags, Error **errp) 5385 { 5386 ERRP_GUARD(); 5387 int ret; 5388 BlockDriverState *new_node_bs = NULL; 5389 const char *drvname, *node_name; 5390 BlockDriver *drv; 5391 5392 drvname = qdict_get_try_str(options, "driver"); 5393 if (!drvname) { 5394 error_setg(errp, "driver is not specified"); 5395 goto fail; 5396 } 5397 5398 drv = bdrv_find_format(drvname); 5399 if (!drv) { 5400 error_setg(errp, "Unknown driver: '%s'", drvname); 5401 goto fail; 5402 } 5403 5404 node_name = qdict_get_try_str(options, "node-name"); 5405 5406 GLOBAL_STATE_CODE(); 5407 5408 new_node_bs = bdrv_new_open_driver_opts(drv, node_name, options, flags, 5409 errp); 5410 options = NULL; /* bdrv_new_open_driver() eats options */ 5411 if (!new_node_bs) { 5412 error_prepend(errp, "Could not create node: "); 5413 goto fail; 5414 } 5415 5416 bdrv_drained_begin(bs); 5417 ret = bdrv_replace_node(bs, new_node_bs, errp); 5418 bdrv_drained_end(bs); 5419 5420 if (ret < 0) { 5421 error_prepend(errp, "Could not replace node: "); 5422 goto fail; 5423 } 5424 5425 return new_node_bs; 5426 5427 fail: 5428 qobject_unref(options); 5429 bdrv_unref(new_node_bs); 5430 return NULL; 5431 } 5432 5433 /* 5434 * Run consistency checks on an image 5435 * 5436 * Returns 0 if the check could be completed (it doesn't mean that the image is 5437 * free of errors) or -errno when an internal error occurred. The results of the 5438 * check are stored in res. 5439 */ 5440 int coroutine_fn bdrv_co_check(BlockDriverState *bs, 5441 BdrvCheckResult *res, BdrvCheckMode fix) 5442 { 5443 IO_CODE(); 5444 assert_bdrv_graph_readable(); 5445 if (bs->drv == NULL) { 5446 return -ENOMEDIUM; 5447 } 5448 if (bs->drv->bdrv_co_check == NULL) { 5449 return -ENOTSUP; 5450 } 5451 5452 memset(res, 0, sizeof(*res)); 5453 return bs->drv->bdrv_co_check(bs, res, fix); 5454 } 5455 5456 /* 5457 * Return values: 5458 * 0 - success 5459 * -EINVAL - backing format specified, but no file 5460 * -ENOSPC - can't update the backing file because no space is left in the 5461 * image file header 5462 * -ENOTSUP - format driver doesn't support changing the backing file 5463 */ 5464 int bdrv_change_backing_file(BlockDriverState *bs, const char *backing_file, 5465 const char *backing_fmt, bool require) 5466 { 5467 BlockDriver *drv = bs->drv; 5468 int ret; 5469 5470 GLOBAL_STATE_CODE(); 5471 5472 if (!drv) { 5473 return -ENOMEDIUM; 5474 } 5475 5476 /* Backing file format doesn't make sense without a backing file */ 5477 if (backing_fmt && !backing_file) { 5478 return -EINVAL; 5479 } 5480 5481 if (require && backing_file && !backing_fmt) { 5482 return -EINVAL; 5483 } 5484 5485 if (drv->bdrv_change_backing_file != NULL) { 5486 ret = drv->bdrv_change_backing_file(bs, backing_file, backing_fmt); 5487 } else { 5488 ret = -ENOTSUP; 5489 } 5490 5491 if (ret == 0) { 5492 pstrcpy(bs->backing_file, sizeof(bs->backing_file), backing_file ?: ""); 5493 pstrcpy(bs->backing_format, sizeof(bs->backing_format), backing_fmt ?: ""); 5494 pstrcpy(bs->auto_backing_file, sizeof(bs->auto_backing_file), 5495 backing_file ?: ""); 5496 } 5497 return ret; 5498 } 5499 5500 /* 5501 * Finds the first non-filter node above bs in the chain between 5502 * active and bs. The returned node is either an immediate parent of 5503 * bs, or there are only filter nodes between the two. 5504 * 5505 * Returns NULL if bs is not found in active's image chain, 5506 * or if active == bs. 5507 * 5508 * Returns the bottommost base image if bs == NULL. 5509 */ 5510 BlockDriverState *bdrv_find_overlay(BlockDriverState *active, 5511 BlockDriverState *bs) 5512 { 5513 5514 GLOBAL_STATE_CODE(); 5515 5516 bs = bdrv_skip_filters(bs); 5517 active = bdrv_skip_filters(active); 5518 5519 while (active) { 5520 BlockDriverState *next = bdrv_backing_chain_next(active); 5521 if (bs == next) { 5522 return active; 5523 } 5524 active = next; 5525 } 5526 5527 return NULL; 5528 } 5529 5530 /* Given a BDS, searches for the base layer. */ 5531 BlockDriverState *bdrv_find_base(BlockDriverState *bs) 5532 { 5533 GLOBAL_STATE_CODE(); 5534 5535 return bdrv_find_overlay(bs, NULL); 5536 } 5537 5538 /* 5539 * Return true if at least one of the COW (backing) and filter links 5540 * between @bs and @base is frozen. @errp is set if that's the case. 5541 * @base must be reachable from @bs, or NULL. 5542 */ 5543 bool bdrv_is_backing_chain_frozen(BlockDriverState *bs, BlockDriverState *base, 5544 Error **errp) 5545 { 5546 BlockDriverState *i; 5547 BdrvChild *child; 5548 5549 GLOBAL_STATE_CODE(); 5550 5551 for (i = bs; i != base; i = child_bs(child)) { 5552 child = bdrv_filter_or_cow_child(i); 5553 5554 if (child && child->frozen) { 5555 error_setg(errp, "Cannot change '%s' link from '%s' to '%s'", 5556 child->name, i->node_name, child->bs->node_name); 5557 return true; 5558 } 5559 } 5560 5561 return false; 5562 } 5563 5564 /* 5565 * Freeze all COW (backing) and filter links between @bs and @base. 5566 * If any of the links is already frozen the operation is aborted and 5567 * none of the links are modified. 5568 * @base must be reachable from @bs, or NULL. 5569 * Returns 0 on success. On failure returns < 0 and sets @errp. 5570 */ 5571 int bdrv_freeze_backing_chain(BlockDriverState *bs, BlockDriverState *base, 5572 Error **errp) 5573 { 5574 BlockDriverState *i; 5575 BdrvChild *child; 5576 5577 GLOBAL_STATE_CODE(); 5578 5579 if (bdrv_is_backing_chain_frozen(bs, base, errp)) { 5580 return -EPERM; 5581 } 5582 5583 for (i = bs; i != base; i = child_bs(child)) { 5584 child = bdrv_filter_or_cow_child(i); 5585 if (child && child->bs->never_freeze) { 5586 error_setg(errp, "Cannot freeze '%s' link to '%s'", 5587 child->name, child->bs->node_name); 5588 return -EPERM; 5589 } 5590 } 5591 5592 for (i = bs; i != base; i = child_bs(child)) { 5593 child = bdrv_filter_or_cow_child(i); 5594 if (child) { 5595 child->frozen = true; 5596 } 5597 } 5598 5599 return 0; 5600 } 5601 5602 /* 5603 * Unfreeze all COW (backing) and filter links between @bs and @base. 5604 * The caller must ensure that all links are frozen before using this 5605 * function. 5606 * @base must be reachable from @bs, or NULL. 5607 */ 5608 void bdrv_unfreeze_backing_chain(BlockDriverState *bs, BlockDriverState *base) 5609 { 5610 BlockDriverState *i; 5611 BdrvChild *child; 5612 5613 GLOBAL_STATE_CODE(); 5614 5615 for (i = bs; i != base; i = child_bs(child)) { 5616 child = bdrv_filter_or_cow_child(i); 5617 if (child) { 5618 assert(child->frozen); 5619 child->frozen = false; 5620 } 5621 } 5622 } 5623 5624 /* 5625 * Drops images above 'base' up to and including 'top', and sets the image 5626 * above 'top' to have base as its backing file. 5627 * 5628 * Requires that the overlay to 'top' is opened r/w, so that the backing file 5629 * information in 'bs' can be properly updated. 5630 * 5631 * E.g., this will convert the following chain: 5632 * bottom <- base <- intermediate <- top <- active 5633 * 5634 * to 5635 * 5636 * bottom <- base <- active 5637 * 5638 * It is allowed for bottom==base, in which case it converts: 5639 * 5640 * base <- intermediate <- top <- active 5641 * 5642 * to 5643 * 5644 * base <- active 5645 * 5646 * If backing_file_str is non-NULL, it will be used when modifying top's 5647 * overlay image metadata. 5648 * 5649 * Error conditions: 5650 * if active == top, that is considered an error 5651 * 5652 */ 5653 int bdrv_drop_intermediate(BlockDriverState *top, BlockDriverState *base, 5654 const char *backing_file_str) 5655 { 5656 BlockDriverState *explicit_top = top; 5657 bool update_inherits_from; 5658 BdrvChild *c; 5659 Error *local_err = NULL; 5660 int ret = -EIO; 5661 g_autoptr(GSList) updated_children = NULL; 5662 GSList *p; 5663 5664 GLOBAL_STATE_CODE(); 5665 5666 bdrv_ref(top); 5667 bdrv_drained_begin(base); 5668 5669 if (!top->drv || !base->drv) { 5670 goto exit; 5671 } 5672 5673 /* Make sure that base is in the backing chain of top */ 5674 if (!bdrv_chain_contains(top, base)) { 5675 goto exit; 5676 } 5677 5678 /* If 'base' recursively inherits from 'top' then we should set 5679 * base->inherits_from to top->inherits_from after 'top' and all 5680 * other intermediate nodes have been dropped. 5681 * If 'top' is an implicit node (e.g. "commit_top") we should skip 5682 * it because no one inherits from it. We use explicit_top for that. */ 5683 explicit_top = bdrv_skip_implicit_filters(explicit_top); 5684 update_inherits_from = bdrv_inherits_from_recursive(base, explicit_top); 5685 5686 /* success - we can delete the intermediate states, and link top->base */ 5687 if (!backing_file_str) { 5688 bdrv_refresh_filename(base); 5689 backing_file_str = base->filename; 5690 } 5691 5692 QLIST_FOREACH(c, &top->parents, next_parent) { 5693 updated_children = g_slist_prepend(updated_children, c); 5694 } 5695 5696 /* 5697 * It seems correct to pass detach_subchain=true here, but it triggers 5698 * one more yet not fixed bug, when due to nested aio_poll loop we switch to 5699 * another drained section, which modify the graph (for example, removing 5700 * the child, which we keep in updated_children list). So, it's a TODO. 5701 * 5702 * Note, bug triggered if pass detach_subchain=true here and run 5703 * test-bdrv-drain. test_drop_intermediate_poll() test-case will crash. 5704 * That's a FIXME. 5705 */ 5706 bdrv_replace_node_common(top, base, false, false, &local_err); 5707 if (local_err) { 5708 error_report_err(local_err); 5709 goto exit; 5710 } 5711 5712 for (p = updated_children; p; p = p->next) { 5713 c = p->data; 5714 5715 if (c->klass->update_filename) { 5716 ret = c->klass->update_filename(c, base, backing_file_str, 5717 &local_err); 5718 if (ret < 0) { 5719 /* 5720 * TODO: Actually, we want to rollback all previous iterations 5721 * of this loop, and (which is almost impossible) previous 5722 * bdrv_replace_node()... 5723 * 5724 * Note, that c->klass->update_filename may lead to permission 5725 * update, so it's a bad idea to call it inside permission 5726 * update transaction of bdrv_replace_node. 5727 */ 5728 error_report_err(local_err); 5729 goto exit; 5730 } 5731 } 5732 } 5733 5734 if (update_inherits_from) { 5735 base->inherits_from = explicit_top->inherits_from; 5736 } 5737 5738 ret = 0; 5739 exit: 5740 bdrv_drained_end(base); 5741 bdrv_unref(top); 5742 return ret; 5743 } 5744 5745 /** 5746 * Implementation of BlockDriver.bdrv_co_get_allocated_file_size() that 5747 * sums the size of all data-bearing children. (This excludes backing 5748 * children.) 5749 */ 5750 static int64_t bdrv_sum_allocated_file_size(BlockDriverState *bs) 5751 { 5752 BdrvChild *child; 5753 int64_t child_size, sum = 0; 5754 5755 QLIST_FOREACH(child, &bs->children, next) { 5756 if (child->role & (BDRV_CHILD_DATA | BDRV_CHILD_METADATA | 5757 BDRV_CHILD_FILTERED)) 5758 { 5759 child_size = bdrv_co_get_allocated_file_size(child->bs); 5760 if (child_size < 0) { 5761 return child_size; 5762 } 5763 sum += child_size; 5764 } 5765 } 5766 5767 return sum; 5768 } 5769 5770 /** 5771 * Length of a allocated file in bytes. Sparse files are counted by actual 5772 * allocated space. Return < 0 if error or unknown. 5773 */ 5774 int64_t coroutine_fn bdrv_co_get_allocated_file_size(BlockDriverState *bs) 5775 { 5776 BlockDriver *drv = bs->drv; 5777 IO_CODE(); 5778 5779 if (!drv) { 5780 return -ENOMEDIUM; 5781 } 5782 if (drv->bdrv_co_get_allocated_file_size) { 5783 return drv->bdrv_co_get_allocated_file_size(bs); 5784 } 5785 5786 if (drv->bdrv_file_open) { 5787 /* 5788 * Protocol drivers default to -ENOTSUP (most of their data is 5789 * not stored in any of their children (if they even have any), 5790 * so there is no generic way to figure it out). 5791 */ 5792 return -ENOTSUP; 5793 } else if (drv->is_filter) { 5794 /* Filter drivers default to the size of their filtered child */ 5795 return bdrv_co_get_allocated_file_size(bdrv_filter_bs(bs)); 5796 } else { 5797 /* Other drivers default to summing their children's sizes */ 5798 return bdrv_sum_allocated_file_size(bs); 5799 } 5800 } 5801 5802 /* 5803 * bdrv_measure: 5804 * @drv: Format driver 5805 * @opts: Creation options for new image 5806 * @in_bs: Existing image containing data for new image (may be NULL) 5807 * @errp: Error object 5808 * Returns: A #BlockMeasureInfo (free using qapi_free_BlockMeasureInfo()) 5809 * or NULL on error 5810 * 5811 * Calculate file size required to create a new image. 5812 * 5813 * If @in_bs is given then space for allocated clusters and zero clusters 5814 * from that image are included in the calculation. If @opts contains a 5815 * backing file that is shared by @in_bs then backing clusters may be omitted 5816 * from the calculation. 5817 * 5818 * If @in_bs is NULL then the calculation includes no allocated clusters 5819 * unless a preallocation option is given in @opts. 5820 * 5821 * Note that @in_bs may use a different BlockDriver from @drv. 5822 * 5823 * If an error occurs the @errp pointer is set. 5824 */ 5825 BlockMeasureInfo *bdrv_measure(BlockDriver *drv, QemuOpts *opts, 5826 BlockDriverState *in_bs, Error **errp) 5827 { 5828 IO_CODE(); 5829 if (!drv->bdrv_measure) { 5830 error_setg(errp, "Block driver '%s' does not support size measurement", 5831 drv->format_name); 5832 return NULL; 5833 } 5834 5835 return drv->bdrv_measure(opts, in_bs, errp); 5836 } 5837 5838 /** 5839 * Return number of sectors on success, -errno on error. 5840 */ 5841 int64_t coroutine_fn bdrv_co_nb_sectors(BlockDriverState *bs) 5842 { 5843 BlockDriver *drv = bs->drv; 5844 IO_CODE(); 5845 5846 if (!drv) 5847 return -ENOMEDIUM; 5848 5849 if (drv->has_variable_length) { 5850 int ret = bdrv_co_refresh_total_sectors(bs, bs->total_sectors); 5851 if (ret < 0) { 5852 return ret; 5853 } 5854 } 5855 return bs->total_sectors; 5856 } 5857 5858 /** 5859 * Return length in bytes on success, -errno on error. 5860 * The length is always a multiple of BDRV_SECTOR_SIZE. 5861 */ 5862 int64_t coroutine_fn bdrv_co_getlength(BlockDriverState *bs) 5863 { 5864 int64_t ret; 5865 IO_CODE(); 5866 5867 ret = bdrv_co_nb_sectors(bs); 5868 if (ret < 0) { 5869 return ret; 5870 } 5871 if (ret > INT64_MAX / BDRV_SECTOR_SIZE) { 5872 return -EFBIG; 5873 } 5874 return ret * BDRV_SECTOR_SIZE; 5875 } 5876 5877 /* return 0 as number of sectors if no device present or error */ 5878 void bdrv_get_geometry(BlockDriverState *bs, uint64_t *nb_sectors_ptr) 5879 { 5880 int64_t nb_sectors = bdrv_nb_sectors(bs); 5881 IO_CODE(); 5882 5883 *nb_sectors_ptr = nb_sectors < 0 ? 0 : nb_sectors; 5884 } 5885 5886 bool bdrv_is_sg(BlockDriverState *bs) 5887 { 5888 IO_CODE(); 5889 return bs->sg; 5890 } 5891 5892 /** 5893 * Return whether the given node supports compressed writes. 5894 */ 5895 bool bdrv_supports_compressed_writes(BlockDriverState *bs) 5896 { 5897 BlockDriverState *filtered; 5898 IO_CODE(); 5899 5900 if (!bs->drv || !block_driver_can_compress(bs->drv)) { 5901 return false; 5902 } 5903 5904 filtered = bdrv_filter_bs(bs); 5905 if (filtered) { 5906 /* 5907 * Filters can only forward compressed writes, so we have to 5908 * check the child. 5909 */ 5910 return bdrv_supports_compressed_writes(filtered); 5911 } 5912 5913 return true; 5914 } 5915 5916 const char *bdrv_get_format_name(BlockDriverState *bs) 5917 { 5918 IO_CODE(); 5919 return bs->drv ? bs->drv->format_name : NULL; 5920 } 5921 5922 static int qsort_strcmp(const void *a, const void *b) 5923 { 5924 return strcmp(*(char *const *)a, *(char *const *)b); 5925 } 5926 5927 void bdrv_iterate_format(void (*it)(void *opaque, const char *name), 5928 void *opaque, bool read_only) 5929 { 5930 BlockDriver *drv; 5931 int count = 0; 5932 int i; 5933 const char **formats = NULL; 5934 5935 GLOBAL_STATE_CODE(); 5936 5937 QLIST_FOREACH(drv, &bdrv_drivers, list) { 5938 if (drv->format_name) { 5939 bool found = false; 5940 int i = count; 5941 5942 if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, read_only)) { 5943 continue; 5944 } 5945 5946 while (formats && i && !found) { 5947 found = !strcmp(formats[--i], drv->format_name); 5948 } 5949 5950 if (!found) { 5951 formats = g_renew(const char *, formats, count + 1); 5952 formats[count++] = drv->format_name; 5953 } 5954 } 5955 } 5956 5957 for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); i++) { 5958 const char *format_name = block_driver_modules[i].format_name; 5959 5960 if (format_name) { 5961 bool found = false; 5962 int j = count; 5963 5964 if (use_bdrv_whitelist && 5965 !bdrv_format_is_whitelisted(format_name, read_only)) { 5966 continue; 5967 } 5968 5969 while (formats && j && !found) { 5970 found = !strcmp(formats[--j], format_name); 5971 } 5972 5973 if (!found) { 5974 formats = g_renew(const char *, formats, count + 1); 5975 formats[count++] = format_name; 5976 } 5977 } 5978 } 5979 5980 qsort(formats, count, sizeof(formats[0]), qsort_strcmp); 5981 5982 for (i = 0; i < count; i++) { 5983 it(opaque, formats[i]); 5984 } 5985 5986 g_free(formats); 5987 } 5988 5989 /* This function is to find a node in the bs graph */ 5990 BlockDriverState *bdrv_find_node(const char *node_name) 5991 { 5992 BlockDriverState *bs; 5993 5994 assert(node_name); 5995 GLOBAL_STATE_CODE(); 5996 5997 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) { 5998 if (!strcmp(node_name, bs->node_name)) { 5999 return bs; 6000 } 6001 } 6002 return NULL; 6003 } 6004 6005 /* Put this QMP function here so it can access the static graph_bdrv_states. */ 6006 BlockDeviceInfoList *bdrv_named_nodes_list(bool flat, 6007 Error **errp) 6008 { 6009 BlockDeviceInfoList *list; 6010 BlockDriverState *bs; 6011 6012 GLOBAL_STATE_CODE(); 6013 6014 list = NULL; 6015 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) { 6016 BlockDeviceInfo *info = bdrv_block_device_info(NULL, bs, flat, errp); 6017 if (!info) { 6018 qapi_free_BlockDeviceInfoList(list); 6019 return NULL; 6020 } 6021 QAPI_LIST_PREPEND(list, info); 6022 } 6023 6024 return list; 6025 } 6026 6027 typedef struct XDbgBlockGraphConstructor { 6028 XDbgBlockGraph *graph; 6029 GHashTable *graph_nodes; 6030 } XDbgBlockGraphConstructor; 6031 6032 static XDbgBlockGraphConstructor *xdbg_graph_new(void) 6033 { 6034 XDbgBlockGraphConstructor *gr = g_new(XDbgBlockGraphConstructor, 1); 6035 6036 gr->graph = g_new0(XDbgBlockGraph, 1); 6037 gr->graph_nodes = g_hash_table_new(NULL, NULL); 6038 6039 return gr; 6040 } 6041 6042 static XDbgBlockGraph *xdbg_graph_finalize(XDbgBlockGraphConstructor *gr) 6043 { 6044 XDbgBlockGraph *graph = gr->graph; 6045 6046 g_hash_table_destroy(gr->graph_nodes); 6047 g_free(gr); 6048 6049 return graph; 6050 } 6051 6052 static uintptr_t xdbg_graph_node_num(XDbgBlockGraphConstructor *gr, void *node) 6053 { 6054 uintptr_t ret = (uintptr_t)g_hash_table_lookup(gr->graph_nodes, node); 6055 6056 if (ret != 0) { 6057 return ret; 6058 } 6059 6060 /* 6061 * Start counting from 1, not 0, because 0 interferes with not-found (NULL) 6062 * answer of g_hash_table_lookup. 6063 */ 6064 ret = g_hash_table_size(gr->graph_nodes) + 1; 6065 g_hash_table_insert(gr->graph_nodes, node, (void *)ret); 6066 6067 return ret; 6068 } 6069 6070 static void xdbg_graph_add_node(XDbgBlockGraphConstructor *gr, void *node, 6071 XDbgBlockGraphNodeType type, const char *name) 6072 { 6073 XDbgBlockGraphNode *n; 6074 6075 n = g_new0(XDbgBlockGraphNode, 1); 6076 6077 n->id = xdbg_graph_node_num(gr, node); 6078 n->type = type; 6079 n->name = g_strdup(name); 6080 6081 QAPI_LIST_PREPEND(gr->graph->nodes, n); 6082 } 6083 6084 static void xdbg_graph_add_edge(XDbgBlockGraphConstructor *gr, void *parent, 6085 const BdrvChild *child) 6086 { 6087 BlockPermission qapi_perm; 6088 XDbgBlockGraphEdge *edge; 6089 GLOBAL_STATE_CODE(); 6090 6091 edge = g_new0(XDbgBlockGraphEdge, 1); 6092 6093 edge->parent = xdbg_graph_node_num(gr, parent); 6094 edge->child = xdbg_graph_node_num(gr, child->bs); 6095 edge->name = g_strdup(child->name); 6096 6097 for (qapi_perm = 0; qapi_perm < BLOCK_PERMISSION__MAX; qapi_perm++) { 6098 uint64_t flag = bdrv_qapi_perm_to_blk_perm(qapi_perm); 6099 6100 if (flag & child->perm) { 6101 QAPI_LIST_PREPEND(edge->perm, qapi_perm); 6102 } 6103 if (flag & child->shared_perm) { 6104 QAPI_LIST_PREPEND(edge->shared_perm, qapi_perm); 6105 } 6106 } 6107 6108 QAPI_LIST_PREPEND(gr->graph->edges, edge); 6109 } 6110 6111 6112 XDbgBlockGraph *bdrv_get_xdbg_block_graph(Error **errp) 6113 { 6114 BlockBackend *blk; 6115 BlockJob *job; 6116 BlockDriverState *bs; 6117 BdrvChild *child; 6118 XDbgBlockGraphConstructor *gr = xdbg_graph_new(); 6119 6120 GLOBAL_STATE_CODE(); 6121 6122 for (blk = blk_all_next(NULL); blk; blk = blk_all_next(blk)) { 6123 char *allocated_name = NULL; 6124 const char *name = blk_name(blk); 6125 6126 if (!*name) { 6127 name = allocated_name = blk_get_attached_dev_id(blk); 6128 } 6129 xdbg_graph_add_node(gr, blk, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_BACKEND, 6130 name); 6131 g_free(allocated_name); 6132 if (blk_root(blk)) { 6133 xdbg_graph_add_edge(gr, blk, blk_root(blk)); 6134 } 6135 } 6136 6137 WITH_JOB_LOCK_GUARD() { 6138 for (job = block_job_next_locked(NULL); job; 6139 job = block_job_next_locked(job)) { 6140 GSList *el; 6141 6142 xdbg_graph_add_node(gr, job, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_JOB, 6143 job->job.id); 6144 for (el = job->nodes; el; el = el->next) { 6145 xdbg_graph_add_edge(gr, job, (BdrvChild *)el->data); 6146 } 6147 } 6148 } 6149 6150 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) { 6151 xdbg_graph_add_node(gr, bs, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_DRIVER, 6152 bs->node_name); 6153 QLIST_FOREACH(child, &bs->children, next) { 6154 xdbg_graph_add_edge(gr, bs, child); 6155 } 6156 } 6157 6158 return xdbg_graph_finalize(gr); 6159 } 6160 6161 BlockDriverState *bdrv_lookup_bs(const char *device, 6162 const char *node_name, 6163 Error **errp) 6164 { 6165 BlockBackend *blk; 6166 BlockDriverState *bs; 6167 6168 GLOBAL_STATE_CODE(); 6169 6170 if (device) { 6171 blk = blk_by_name(device); 6172 6173 if (blk) { 6174 bs = blk_bs(blk); 6175 if (!bs) { 6176 error_setg(errp, "Device '%s' has no medium", device); 6177 } 6178 6179 return bs; 6180 } 6181 } 6182 6183 if (node_name) { 6184 bs = bdrv_find_node(node_name); 6185 6186 if (bs) { 6187 return bs; 6188 } 6189 } 6190 6191 error_setg(errp, "Cannot find device=\'%s\' nor node-name=\'%s\'", 6192 device ? device : "", 6193 node_name ? node_name : ""); 6194 return NULL; 6195 } 6196 6197 /* If 'base' is in the same chain as 'top', return true. Otherwise, 6198 * return false. If either argument is NULL, return false. */ 6199 bool bdrv_chain_contains(BlockDriverState *top, BlockDriverState *base) 6200 { 6201 6202 GLOBAL_STATE_CODE(); 6203 6204 while (top && top != base) { 6205 top = bdrv_filter_or_cow_bs(top); 6206 } 6207 6208 return top != NULL; 6209 } 6210 6211 BlockDriverState *bdrv_next_node(BlockDriverState *bs) 6212 { 6213 GLOBAL_STATE_CODE(); 6214 if (!bs) { 6215 return QTAILQ_FIRST(&graph_bdrv_states); 6216 } 6217 return QTAILQ_NEXT(bs, node_list); 6218 } 6219 6220 BlockDriverState *bdrv_next_all_states(BlockDriverState *bs) 6221 { 6222 GLOBAL_STATE_CODE(); 6223 if (!bs) { 6224 return QTAILQ_FIRST(&all_bdrv_states); 6225 } 6226 return QTAILQ_NEXT(bs, bs_list); 6227 } 6228 6229 const char *bdrv_get_node_name(const BlockDriverState *bs) 6230 { 6231 IO_CODE(); 6232 return bs->node_name; 6233 } 6234 6235 const char *bdrv_get_parent_name(const BlockDriverState *bs) 6236 { 6237 BdrvChild *c; 6238 const char *name; 6239 IO_CODE(); 6240 6241 /* If multiple parents have a name, just pick the first one. */ 6242 QLIST_FOREACH(c, &bs->parents, next_parent) { 6243 if (c->klass->get_name) { 6244 name = c->klass->get_name(c); 6245 if (name && *name) { 6246 return name; 6247 } 6248 } 6249 } 6250 6251 return NULL; 6252 } 6253 6254 /* TODO check what callers really want: bs->node_name or blk_name() */ 6255 const char *bdrv_get_device_name(const BlockDriverState *bs) 6256 { 6257 IO_CODE(); 6258 return bdrv_get_parent_name(bs) ?: ""; 6259 } 6260 6261 /* This can be used to identify nodes that might not have a device 6262 * name associated. Since node and device names live in the same 6263 * namespace, the result is unambiguous. The exception is if both are 6264 * absent, then this returns an empty (non-null) string. */ 6265 const char *bdrv_get_device_or_node_name(const BlockDriverState *bs) 6266 { 6267 IO_CODE(); 6268 return bdrv_get_parent_name(bs) ?: bs->node_name; 6269 } 6270 6271 int bdrv_get_flags(BlockDriverState *bs) 6272 { 6273 IO_CODE(); 6274 return bs->open_flags; 6275 } 6276 6277 int bdrv_has_zero_init_1(BlockDriverState *bs) 6278 { 6279 GLOBAL_STATE_CODE(); 6280 return 1; 6281 } 6282 6283 int bdrv_has_zero_init(BlockDriverState *bs) 6284 { 6285 BlockDriverState *filtered; 6286 GLOBAL_STATE_CODE(); 6287 6288 if (!bs->drv) { 6289 return 0; 6290 } 6291 6292 /* If BS is a copy on write image, it is initialized to 6293 the contents of the base image, which may not be zeroes. */ 6294 if (bdrv_cow_child(bs)) { 6295 return 0; 6296 } 6297 if (bs->drv->bdrv_has_zero_init) { 6298 return bs->drv->bdrv_has_zero_init(bs); 6299 } 6300 6301 filtered = bdrv_filter_bs(bs); 6302 if (filtered) { 6303 return bdrv_has_zero_init(filtered); 6304 } 6305 6306 /* safe default */ 6307 return 0; 6308 } 6309 6310 bool bdrv_can_write_zeroes_with_unmap(BlockDriverState *bs) 6311 { 6312 IO_CODE(); 6313 if (!(bs->open_flags & BDRV_O_UNMAP)) { 6314 return false; 6315 } 6316 6317 return bs->supported_zero_flags & BDRV_REQ_MAY_UNMAP; 6318 } 6319 6320 void bdrv_get_backing_filename(BlockDriverState *bs, 6321 char *filename, int filename_size) 6322 { 6323 IO_CODE(); 6324 pstrcpy(filename, filename_size, bs->backing_file); 6325 } 6326 6327 int coroutine_fn bdrv_co_get_info(BlockDriverState *bs, BlockDriverInfo *bdi) 6328 { 6329 int ret; 6330 BlockDriver *drv = bs->drv; 6331 IO_CODE(); 6332 /* if bs->drv == NULL, bs is closed, so there's nothing to do here */ 6333 if (!drv) { 6334 return -ENOMEDIUM; 6335 } 6336 if (!drv->bdrv_co_get_info) { 6337 BlockDriverState *filtered = bdrv_filter_bs(bs); 6338 if (filtered) { 6339 return bdrv_co_get_info(filtered, bdi); 6340 } 6341 return -ENOTSUP; 6342 } 6343 memset(bdi, 0, sizeof(*bdi)); 6344 ret = drv->bdrv_co_get_info(bs, bdi); 6345 if (ret < 0) { 6346 return ret; 6347 } 6348 6349 if (bdi->cluster_size > BDRV_MAX_ALIGNMENT) { 6350 return -EINVAL; 6351 } 6352 6353 return 0; 6354 } 6355 6356 ImageInfoSpecific *bdrv_get_specific_info(BlockDriverState *bs, 6357 Error **errp) 6358 { 6359 BlockDriver *drv = bs->drv; 6360 IO_CODE(); 6361 if (drv && drv->bdrv_get_specific_info) { 6362 return drv->bdrv_get_specific_info(bs, errp); 6363 } 6364 return NULL; 6365 } 6366 6367 BlockStatsSpecific *bdrv_get_specific_stats(BlockDriverState *bs) 6368 { 6369 BlockDriver *drv = bs->drv; 6370 IO_CODE(); 6371 if (!drv || !drv->bdrv_get_specific_stats) { 6372 return NULL; 6373 } 6374 return drv->bdrv_get_specific_stats(bs); 6375 } 6376 6377 void coroutine_fn bdrv_co_debug_event(BlockDriverState *bs, BlkdebugEvent event) 6378 { 6379 IO_CODE(); 6380 if (!bs || !bs->drv || !bs->drv->bdrv_co_debug_event) { 6381 return; 6382 } 6383 6384 bs->drv->bdrv_co_debug_event(bs, event); 6385 } 6386 6387 static BlockDriverState *bdrv_find_debug_node(BlockDriverState *bs) 6388 { 6389 GLOBAL_STATE_CODE(); 6390 while (bs && bs->drv && !bs->drv->bdrv_debug_breakpoint) { 6391 bs = bdrv_primary_bs(bs); 6392 } 6393 6394 if (bs && bs->drv && bs->drv->bdrv_debug_breakpoint) { 6395 assert(bs->drv->bdrv_debug_remove_breakpoint); 6396 return bs; 6397 } 6398 6399 return NULL; 6400 } 6401 6402 int bdrv_debug_breakpoint(BlockDriverState *bs, const char *event, 6403 const char *tag) 6404 { 6405 GLOBAL_STATE_CODE(); 6406 bs = bdrv_find_debug_node(bs); 6407 if (bs) { 6408 return bs->drv->bdrv_debug_breakpoint(bs, event, tag); 6409 } 6410 6411 return -ENOTSUP; 6412 } 6413 6414 int bdrv_debug_remove_breakpoint(BlockDriverState *bs, const char *tag) 6415 { 6416 GLOBAL_STATE_CODE(); 6417 bs = bdrv_find_debug_node(bs); 6418 if (bs) { 6419 return bs->drv->bdrv_debug_remove_breakpoint(bs, tag); 6420 } 6421 6422 return -ENOTSUP; 6423 } 6424 6425 int bdrv_debug_resume(BlockDriverState *bs, const char *tag) 6426 { 6427 GLOBAL_STATE_CODE(); 6428 while (bs && (!bs->drv || !bs->drv->bdrv_debug_resume)) { 6429 bs = bdrv_primary_bs(bs); 6430 } 6431 6432 if (bs && bs->drv && bs->drv->bdrv_debug_resume) { 6433 return bs->drv->bdrv_debug_resume(bs, tag); 6434 } 6435 6436 return -ENOTSUP; 6437 } 6438 6439 bool bdrv_debug_is_suspended(BlockDriverState *bs, const char *tag) 6440 { 6441 GLOBAL_STATE_CODE(); 6442 while (bs && bs->drv && !bs->drv->bdrv_debug_is_suspended) { 6443 bs = bdrv_primary_bs(bs); 6444 } 6445 6446 if (bs && bs->drv && bs->drv->bdrv_debug_is_suspended) { 6447 return bs->drv->bdrv_debug_is_suspended(bs, tag); 6448 } 6449 6450 return false; 6451 } 6452 6453 /* backing_file can either be relative, or absolute, or a protocol. If it is 6454 * relative, it must be relative to the chain. So, passing in bs->filename 6455 * from a BDS as backing_file should not be done, as that may be relative to 6456 * the CWD rather than the chain. */ 6457 BlockDriverState *bdrv_find_backing_image(BlockDriverState *bs, 6458 const char *backing_file) 6459 { 6460 char *filename_full = NULL; 6461 char *backing_file_full = NULL; 6462 char *filename_tmp = NULL; 6463 int is_protocol = 0; 6464 bool filenames_refreshed = false; 6465 BlockDriverState *curr_bs = NULL; 6466 BlockDriverState *retval = NULL; 6467 BlockDriverState *bs_below; 6468 6469 GLOBAL_STATE_CODE(); 6470 6471 if (!bs || !bs->drv || !backing_file) { 6472 return NULL; 6473 } 6474 6475 filename_full = g_malloc(PATH_MAX); 6476 backing_file_full = g_malloc(PATH_MAX); 6477 6478 is_protocol = path_has_protocol(backing_file); 6479 6480 /* 6481 * Being largely a legacy function, skip any filters here 6482 * (because filters do not have normal filenames, so they cannot 6483 * match anyway; and allowing json:{} filenames is a bit out of 6484 * scope). 6485 */ 6486 for (curr_bs = bdrv_skip_filters(bs); 6487 bdrv_cow_child(curr_bs) != NULL; 6488 curr_bs = bs_below) 6489 { 6490 bs_below = bdrv_backing_chain_next(curr_bs); 6491 6492 if (bdrv_backing_overridden(curr_bs)) { 6493 /* 6494 * If the backing file was overridden, we can only compare 6495 * directly against the backing node's filename. 6496 */ 6497 6498 if (!filenames_refreshed) { 6499 /* 6500 * This will automatically refresh all of the 6501 * filenames in the rest of the backing chain, so we 6502 * only need to do this once. 6503 */ 6504 bdrv_refresh_filename(bs_below); 6505 filenames_refreshed = true; 6506 } 6507 6508 if (strcmp(backing_file, bs_below->filename) == 0) { 6509 retval = bs_below; 6510 break; 6511 } 6512 } else if (is_protocol || path_has_protocol(curr_bs->backing_file)) { 6513 /* 6514 * If either of the filename paths is actually a protocol, then 6515 * compare unmodified paths; otherwise make paths relative. 6516 */ 6517 char *backing_file_full_ret; 6518 6519 if (strcmp(backing_file, curr_bs->backing_file) == 0) { 6520 retval = bs_below; 6521 break; 6522 } 6523 /* Also check against the full backing filename for the image */ 6524 backing_file_full_ret = bdrv_get_full_backing_filename(curr_bs, 6525 NULL); 6526 if (backing_file_full_ret) { 6527 bool equal = strcmp(backing_file, backing_file_full_ret) == 0; 6528 g_free(backing_file_full_ret); 6529 if (equal) { 6530 retval = bs_below; 6531 break; 6532 } 6533 } 6534 } else { 6535 /* If not an absolute filename path, make it relative to the current 6536 * image's filename path */ 6537 filename_tmp = bdrv_make_absolute_filename(curr_bs, backing_file, 6538 NULL); 6539 /* We are going to compare canonicalized absolute pathnames */ 6540 if (!filename_tmp || !realpath(filename_tmp, filename_full)) { 6541 g_free(filename_tmp); 6542 continue; 6543 } 6544 g_free(filename_tmp); 6545 6546 /* We need to make sure the backing filename we are comparing against 6547 * is relative to the current image filename (or absolute) */ 6548 filename_tmp = bdrv_get_full_backing_filename(curr_bs, NULL); 6549 if (!filename_tmp || !realpath(filename_tmp, backing_file_full)) { 6550 g_free(filename_tmp); 6551 continue; 6552 } 6553 g_free(filename_tmp); 6554 6555 if (strcmp(backing_file_full, filename_full) == 0) { 6556 retval = bs_below; 6557 break; 6558 } 6559 } 6560 } 6561 6562 g_free(filename_full); 6563 g_free(backing_file_full); 6564 return retval; 6565 } 6566 6567 void bdrv_init(void) 6568 { 6569 #ifdef CONFIG_BDRV_WHITELIST_TOOLS 6570 use_bdrv_whitelist = 1; 6571 #endif 6572 module_call_init(MODULE_INIT_BLOCK); 6573 } 6574 6575 void bdrv_init_with_whitelist(void) 6576 { 6577 use_bdrv_whitelist = 1; 6578 bdrv_init(); 6579 } 6580 6581 int bdrv_activate(BlockDriverState *bs, Error **errp) 6582 { 6583 BdrvChild *child, *parent; 6584 Error *local_err = NULL; 6585 int ret; 6586 BdrvDirtyBitmap *bm; 6587 6588 GLOBAL_STATE_CODE(); 6589 6590 if (!bs->drv) { 6591 return -ENOMEDIUM; 6592 } 6593 6594 QLIST_FOREACH(child, &bs->children, next) { 6595 bdrv_activate(child->bs, &local_err); 6596 if (local_err) { 6597 error_propagate(errp, local_err); 6598 return -EINVAL; 6599 } 6600 } 6601 6602 /* 6603 * Update permissions, they may differ for inactive nodes. 6604 * 6605 * Note that the required permissions of inactive images are always a 6606 * subset of the permissions required after activating the image. This 6607 * allows us to just get the permissions upfront without restricting 6608 * bdrv_co_invalidate_cache(). 6609 * 6610 * It also means that in error cases, we don't have to try and revert to 6611 * the old permissions (which is an operation that could fail, too). We can 6612 * just keep the extended permissions for the next time that an activation 6613 * of the image is tried. 6614 */ 6615 if (bs->open_flags & BDRV_O_INACTIVE) { 6616 bs->open_flags &= ~BDRV_O_INACTIVE; 6617 ret = bdrv_refresh_perms(bs, NULL, errp); 6618 if (ret < 0) { 6619 bs->open_flags |= BDRV_O_INACTIVE; 6620 return ret; 6621 } 6622 6623 ret = bdrv_invalidate_cache(bs, errp); 6624 if (ret < 0) { 6625 bs->open_flags |= BDRV_O_INACTIVE; 6626 return ret; 6627 } 6628 6629 FOR_EACH_DIRTY_BITMAP(bs, bm) { 6630 bdrv_dirty_bitmap_skip_store(bm, false); 6631 } 6632 6633 ret = bdrv_refresh_total_sectors(bs, bs->total_sectors); 6634 if (ret < 0) { 6635 bs->open_flags |= BDRV_O_INACTIVE; 6636 error_setg_errno(errp, -ret, "Could not refresh total sector count"); 6637 return ret; 6638 } 6639 } 6640 6641 QLIST_FOREACH(parent, &bs->parents, next_parent) { 6642 if (parent->klass->activate) { 6643 parent->klass->activate(parent, &local_err); 6644 if (local_err) { 6645 bs->open_flags |= BDRV_O_INACTIVE; 6646 error_propagate(errp, local_err); 6647 return -EINVAL; 6648 } 6649 } 6650 } 6651 6652 return 0; 6653 } 6654 6655 int coroutine_fn bdrv_co_invalidate_cache(BlockDriverState *bs, Error **errp) 6656 { 6657 Error *local_err = NULL; 6658 IO_CODE(); 6659 6660 assert(!(bs->open_flags & BDRV_O_INACTIVE)); 6661 assert_bdrv_graph_readable(); 6662 6663 if (bs->drv->bdrv_co_invalidate_cache) { 6664 bs->drv->bdrv_co_invalidate_cache(bs, &local_err); 6665 if (local_err) { 6666 error_propagate(errp, local_err); 6667 return -EINVAL; 6668 } 6669 } 6670 6671 return 0; 6672 } 6673 6674 void bdrv_activate_all(Error **errp) 6675 { 6676 BlockDriverState *bs; 6677 BdrvNextIterator it; 6678 6679 GLOBAL_STATE_CODE(); 6680 6681 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) { 6682 AioContext *aio_context = bdrv_get_aio_context(bs); 6683 int ret; 6684 6685 aio_context_acquire(aio_context); 6686 ret = bdrv_activate(bs, errp); 6687 aio_context_release(aio_context); 6688 if (ret < 0) { 6689 bdrv_next_cleanup(&it); 6690 return; 6691 } 6692 } 6693 } 6694 6695 static bool bdrv_has_bds_parent(BlockDriverState *bs, bool only_active) 6696 { 6697 BdrvChild *parent; 6698 GLOBAL_STATE_CODE(); 6699 6700 QLIST_FOREACH(parent, &bs->parents, next_parent) { 6701 if (parent->klass->parent_is_bds) { 6702 BlockDriverState *parent_bs = parent->opaque; 6703 if (!only_active || !(parent_bs->open_flags & BDRV_O_INACTIVE)) { 6704 return true; 6705 } 6706 } 6707 } 6708 6709 return false; 6710 } 6711 6712 static int bdrv_inactivate_recurse(BlockDriverState *bs) 6713 { 6714 BdrvChild *child, *parent; 6715 int ret; 6716 uint64_t cumulative_perms, cumulative_shared_perms; 6717 6718 GLOBAL_STATE_CODE(); 6719 6720 if (!bs->drv) { 6721 return -ENOMEDIUM; 6722 } 6723 6724 /* Make sure that we don't inactivate a child before its parent. 6725 * It will be covered by recursion from the yet active parent. */ 6726 if (bdrv_has_bds_parent(bs, true)) { 6727 return 0; 6728 } 6729 6730 assert(!(bs->open_flags & BDRV_O_INACTIVE)); 6731 6732 /* Inactivate this node */ 6733 if (bs->drv->bdrv_inactivate) { 6734 ret = bs->drv->bdrv_inactivate(bs); 6735 if (ret < 0) { 6736 return ret; 6737 } 6738 } 6739 6740 QLIST_FOREACH(parent, &bs->parents, next_parent) { 6741 if (parent->klass->inactivate) { 6742 ret = parent->klass->inactivate(parent); 6743 if (ret < 0) { 6744 return ret; 6745 } 6746 } 6747 } 6748 6749 bdrv_get_cumulative_perm(bs, &cumulative_perms, 6750 &cumulative_shared_perms); 6751 if (cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) { 6752 /* Our inactive parents still need write access. Inactivation failed. */ 6753 return -EPERM; 6754 } 6755 6756 bs->open_flags |= BDRV_O_INACTIVE; 6757 6758 /* 6759 * Update permissions, they may differ for inactive nodes. 6760 * We only tried to loosen restrictions, so errors are not fatal, ignore 6761 * them. 6762 */ 6763 bdrv_refresh_perms(bs, NULL, NULL); 6764 6765 /* Recursively inactivate children */ 6766 QLIST_FOREACH(child, &bs->children, next) { 6767 ret = bdrv_inactivate_recurse(child->bs); 6768 if (ret < 0) { 6769 return ret; 6770 } 6771 } 6772 6773 return 0; 6774 } 6775 6776 int bdrv_inactivate_all(void) 6777 { 6778 BlockDriverState *bs = NULL; 6779 BdrvNextIterator it; 6780 int ret = 0; 6781 GSList *aio_ctxs = NULL, *ctx; 6782 6783 GLOBAL_STATE_CODE(); 6784 6785 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) { 6786 AioContext *aio_context = bdrv_get_aio_context(bs); 6787 6788 if (!g_slist_find(aio_ctxs, aio_context)) { 6789 aio_ctxs = g_slist_prepend(aio_ctxs, aio_context); 6790 aio_context_acquire(aio_context); 6791 } 6792 } 6793 6794 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) { 6795 /* Nodes with BDS parents are covered by recursion from the last 6796 * parent that gets inactivated. Don't inactivate them a second 6797 * time if that has already happened. */ 6798 if (bdrv_has_bds_parent(bs, false)) { 6799 continue; 6800 } 6801 ret = bdrv_inactivate_recurse(bs); 6802 if (ret < 0) { 6803 bdrv_next_cleanup(&it); 6804 goto out; 6805 } 6806 } 6807 6808 out: 6809 for (ctx = aio_ctxs; ctx != NULL; ctx = ctx->next) { 6810 AioContext *aio_context = ctx->data; 6811 aio_context_release(aio_context); 6812 } 6813 g_slist_free(aio_ctxs); 6814 6815 return ret; 6816 } 6817 6818 /**************************************************************/ 6819 /* removable device support */ 6820 6821 /** 6822 * Return TRUE if the media is present 6823 */ 6824 bool coroutine_fn bdrv_co_is_inserted(BlockDriverState *bs) 6825 { 6826 BlockDriver *drv = bs->drv; 6827 BdrvChild *child; 6828 IO_CODE(); 6829 assert_bdrv_graph_readable(); 6830 6831 if (!drv) { 6832 return false; 6833 } 6834 if (drv->bdrv_co_is_inserted) { 6835 return drv->bdrv_co_is_inserted(bs); 6836 } 6837 QLIST_FOREACH(child, &bs->children, next) { 6838 if (!bdrv_co_is_inserted(child->bs)) { 6839 return false; 6840 } 6841 } 6842 return true; 6843 } 6844 6845 /** 6846 * If eject_flag is TRUE, eject the media. Otherwise, close the tray 6847 */ 6848 void coroutine_fn bdrv_co_eject(BlockDriverState *bs, bool eject_flag) 6849 { 6850 BlockDriver *drv = bs->drv; 6851 IO_CODE(); 6852 assert_bdrv_graph_readable(); 6853 6854 if (drv && drv->bdrv_co_eject) { 6855 drv->bdrv_co_eject(bs, eject_flag); 6856 } 6857 } 6858 6859 /** 6860 * Lock or unlock the media (if it is locked, the user won't be able 6861 * to eject it manually). 6862 */ 6863 void coroutine_fn bdrv_co_lock_medium(BlockDriverState *bs, bool locked) 6864 { 6865 BlockDriver *drv = bs->drv; 6866 IO_CODE(); 6867 assert_bdrv_graph_readable(); 6868 trace_bdrv_lock_medium(bs, locked); 6869 6870 if (drv && drv->bdrv_co_lock_medium) { 6871 drv->bdrv_co_lock_medium(bs, locked); 6872 } 6873 } 6874 6875 /* Get a reference to bs */ 6876 void bdrv_ref(BlockDriverState *bs) 6877 { 6878 GLOBAL_STATE_CODE(); 6879 bs->refcnt++; 6880 } 6881 6882 /* Release a previously grabbed reference to bs. 6883 * If after releasing, reference count is zero, the BlockDriverState is 6884 * deleted. */ 6885 void bdrv_unref(BlockDriverState *bs) 6886 { 6887 GLOBAL_STATE_CODE(); 6888 if (!bs) { 6889 return; 6890 } 6891 assert(bs->refcnt > 0); 6892 if (--bs->refcnt == 0) { 6893 bdrv_delete(bs); 6894 } 6895 } 6896 6897 struct BdrvOpBlocker { 6898 Error *reason; 6899 QLIST_ENTRY(BdrvOpBlocker) list; 6900 }; 6901 6902 bool bdrv_op_is_blocked(BlockDriverState *bs, BlockOpType op, Error **errp) 6903 { 6904 BdrvOpBlocker *blocker; 6905 GLOBAL_STATE_CODE(); 6906 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX); 6907 if (!QLIST_EMPTY(&bs->op_blockers[op])) { 6908 blocker = QLIST_FIRST(&bs->op_blockers[op]); 6909 error_propagate_prepend(errp, error_copy(blocker->reason), 6910 "Node '%s' is busy: ", 6911 bdrv_get_device_or_node_name(bs)); 6912 return true; 6913 } 6914 return false; 6915 } 6916 6917 void bdrv_op_block(BlockDriverState *bs, BlockOpType op, Error *reason) 6918 { 6919 BdrvOpBlocker *blocker; 6920 GLOBAL_STATE_CODE(); 6921 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX); 6922 6923 blocker = g_new0(BdrvOpBlocker, 1); 6924 blocker->reason = reason; 6925 QLIST_INSERT_HEAD(&bs->op_blockers[op], blocker, list); 6926 } 6927 6928 void bdrv_op_unblock(BlockDriverState *bs, BlockOpType op, Error *reason) 6929 { 6930 BdrvOpBlocker *blocker, *next; 6931 GLOBAL_STATE_CODE(); 6932 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX); 6933 QLIST_FOREACH_SAFE(blocker, &bs->op_blockers[op], list, next) { 6934 if (blocker->reason == reason) { 6935 QLIST_REMOVE(blocker, list); 6936 g_free(blocker); 6937 } 6938 } 6939 } 6940 6941 void bdrv_op_block_all(BlockDriverState *bs, Error *reason) 6942 { 6943 int i; 6944 GLOBAL_STATE_CODE(); 6945 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) { 6946 bdrv_op_block(bs, i, reason); 6947 } 6948 } 6949 6950 void bdrv_op_unblock_all(BlockDriverState *bs, Error *reason) 6951 { 6952 int i; 6953 GLOBAL_STATE_CODE(); 6954 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) { 6955 bdrv_op_unblock(bs, i, reason); 6956 } 6957 } 6958 6959 bool bdrv_op_blocker_is_empty(BlockDriverState *bs) 6960 { 6961 int i; 6962 GLOBAL_STATE_CODE(); 6963 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) { 6964 if (!QLIST_EMPTY(&bs->op_blockers[i])) { 6965 return false; 6966 } 6967 } 6968 return true; 6969 } 6970 6971 /* 6972 * Must not be called while holding the lock of an AioContext other than the 6973 * current one. 6974 */ 6975 void bdrv_img_create(const char *filename, const char *fmt, 6976 const char *base_filename, const char *base_fmt, 6977 char *options, uint64_t img_size, int flags, bool quiet, 6978 Error **errp) 6979 { 6980 QemuOptsList *create_opts = NULL; 6981 QemuOpts *opts = NULL; 6982 const char *backing_fmt, *backing_file; 6983 int64_t size; 6984 BlockDriver *drv, *proto_drv; 6985 Error *local_err = NULL; 6986 int ret = 0; 6987 6988 GLOBAL_STATE_CODE(); 6989 6990 /* Find driver and parse its options */ 6991 drv = bdrv_find_format(fmt); 6992 if (!drv) { 6993 error_setg(errp, "Unknown file format '%s'", fmt); 6994 return; 6995 } 6996 6997 proto_drv = bdrv_find_protocol(filename, true, errp); 6998 if (!proto_drv) { 6999 return; 7000 } 7001 7002 if (!drv->create_opts) { 7003 error_setg(errp, "Format driver '%s' does not support image creation", 7004 drv->format_name); 7005 return; 7006 } 7007 7008 if (!proto_drv->create_opts) { 7009 error_setg(errp, "Protocol driver '%s' does not support image creation", 7010 proto_drv->format_name); 7011 return; 7012 } 7013 7014 /* Create parameter list */ 7015 create_opts = qemu_opts_append(create_opts, drv->create_opts); 7016 create_opts = qemu_opts_append(create_opts, proto_drv->create_opts); 7017 7018 opts = qemu_opts_create(create_opts, NULL, 0, &error_abort); 7019 7020 /* Parse -o options */ 7021 if (options) { 7022 if (!qemu_opts_do_parse(opts, options, NULL, errp)) { 7023 goto out; 7024 } 7025 } 7026 7027 if (!qemu_opt_get(opts, BLOCK_OPT_SIZE)) { 7028 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, img_size, &error_abort); 7029 } else if (img_size != UINT64_C(-1)) { 7030 error_setg(errp, "The image size must be specified only once"); 7031 goto out; 7032 } 7033 7034 if (base_filename) { 7035 if (!qemu_opt_set(opts, BLOCK_OPT_BACKING_FILE, base_filename, 7036 NULL)) { 7037 error_setg(errp, "Backing file not supported for file format '%s'", 7038 fmt); 7039 goto out; 7040 } 7041 } 7042 7043 if (base_fmt) { 7044 if (!qemu_opt_set(opts, BLOCK_OPT_BACKING_FMT, base_fmt, NULL)) { 7045 error_setg(errp, "Backing file format not supported for file " 7046 "format '%s'", fmt); 7047 goto out; 7048 } 7049 } 7050 7051 backing_file = qemu_opt_get(opts, BLOCK_OPT_BACKING_FILE); 7052 if (backing_file) { 7053 if (!strcmp(filename, backing_file)) { 7054 error_setg(errp, "Error: Trying to create an image with the " 7055 "same filename as the backing file"); 7056 goto out; 7057 } 7058 if (backing_file[0] == '\0') { 7059 error_setg(errp, "Expected backing file name, got empty string"); 7060 goto out; 7061 } 7062 } 7063 7064 backing_fmt = qemu_opt_get(opts, BLOCK_OPT_BACKING_FMT); 7065 7066 /* The size for the image must always be specified, unless we have a backing 7067 * file and we have not been forbidden from opening it. */ 7068 size = qemu_opt_get_size(opts, BLOCK_OPT_SIZE, img_size); 7069 if (backing_file && !(flags & BDRV_O_NO_BACKING)) { 7070 BlockDriverState *bs; 7071 char *full_backing; 7072 int back_flags; 7073 QDict *backing_options = NULL; 7074 7075 full_backing = 7076 bdrv_get_full_backing_filename_from_filename(filename, backing_file, 7077 &local_err); 7078 if (local_err) { 7079 goto out; 7080 } 7081 assert(full_backing); 7082 7083 /* 7084 * No need to do I/O here, which allows us to open encrypted 7085 * backing images without needing the secret 7086 */ 7087 back_flags = flags; 7088 back_flags &= ~(BDRV_O_RDWR | BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING); 7089 back_flags |= BDRV_O_NO_IO; 7090 7091 backing_options = qdict_new(); 7092 if (backing_fmt) { 7093 qdict_put_str(backing_options, "driver", backing_fmt); 7094 } 7095 qdict_put_bool(backing_options, BDRV_OPT_FORCE_SHARE, true); 7096 7097 bs = bdrv_open(full_backing, NULL, backing_options, back_flags, 7098 &local_err); 7099 g_free(full_backing); 7100 if (!bs) { 7101 error_append_hint(&local_err, "Could not open backing image.\n"); 7102 goto out; 7103 } else { 7104 if (!backing_fmt) { 7105 error_setg(&local_err, 7106 "Backing file specified without backing format"); 7107 error_append_hint(&local_err, "Detected format of %s.", 7108 bs->drv->format_name); 7109 goto out; 7110 } 7111 if (size == -1) { 7112 /* Opened BS, have no size */ 7113 size = bdrv_getlength(bs); 7114 if (size < 0) { 7115 error_setg_errno(errp, -size, "Could not get size of '%s'", 7116 backing_file); 7117 bdrv_unref(bs); 7118 goto out; 7119 } 7120 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, size, &error_abort); 7121 } 7122 bdrv_unref(bs); 7123 } 7124 /* (backing_file && !(flags & BDRV_O_NO_BACKING)) */ 7125 } else if (backing_file && !backing_fmt) { 7126 error_setg(&local_err, 7127 "Backing file specified without backing format"); 7128 goto out; 7129 } 7130 7131 if (size == -1) { 7132 error_setg(errp, "Image creation needs a size parameter"); 7133 goto out; 7134 } 7135 7136 if (!quiet) { 7137 printf("Formatting '%s', fmt=%s ", filename, fmt); 7138 qemu_opts_print(opts, " "); 7139 puts(""); 7140 fflush(stdout); 7141 } 7142 7143 ret = bdrv_create(drv, filename, opts, &local_err); 7144 7145 if (ret == -EFBIG) { 7146 /* This is generally a better message than whatever the driver would 7147 * deliver (especially because of the cluster_size_hint), since that 7148 * is most probably not much different from "image too large". */ 7149 const char *cluster_size_hint = ""; 7150 if (qemu_opt_get_size(opts, BLOCK_OPT_CLUSTER_SIZE, 0)) { 7151 cluster_size_hint = " (try using a larger cluster size)"; 7152 } 7153 error_setg(errp, "The image size is too large for file format '%s'" 7154 "%s", fmt, cluster_size_hint); 7155 error_free(local_err); 7156 local_err = NULL; 7157 } 7158 7159 out: 7160 qemu_opts_del(opts); 7161 qemu_opts_free(create_opts); 7162 error_propagate(errp, local_err); 7163 } 7164 7165 AioContext *bdrv_get_aio_context(BlockDriverState *bs) 7166 { 7167 IO_CODE(); 7168 return bs ? bs->aio_context : qemu_get_aio_context(); 7169 } 7170 7171 AioContext *coroutine_fn bdrv_co_enter(BlockDriverState *bs) 7172 { 7173 Coroutine *self = qemu_coroutine_self(); 7174 AioContext *old_ctx = qemu_coroutine_get_aio_context(self); 7175 AioContext *new_ctx; 7176 IO_CODE(); 7177 7178 /* 7179 * Increase bs->in_flight to ensure that this operation is completed before 7180 * moving the node to a different AioContext. Read new_ctx only afterwards. 7181 */ 7182 bdrv_inc_in_flight(bs); 7183 7184 new_ctx = bdrv_get_aio_context(bs); 7185 aio_co_reschedule_self(new_ctx); 7186 return old_ctx; 7187 } 7188 7189 void coroutine_fn bdrv_co_leave(BlockDriverState *bs, AioContext *old_ctx) 7190 { 7191 IO_CODE(); 7192 aio_co_reschedule_self(old_ctx); 7193 bdrv_dec_in_flight(bs); 7194 } 7195 7196 void coroutine_fn bdrv_co_lock(BlockDriverState *bs) 7197 { 7198 AioContext *ctx = bdrv_get_aio_context(bs); 7199 7200 /* In the main thread, bs->aio_context won't change concurrently */ 7201 assert(qemu_get_current_aio_context() == qemu_get_aio_context()); 7202 7203 /* 7204 * We're in coroutine context, so we already hold the lock of the main 7205 * loop AioContext. Don't lock it twice to avoid deadlocks. 7206 */ 7207 assert(qemu_in_coroutine()); 7208 if (ctx != qemu_get_aio_context()) { 7209 aio_context_acquire(ctx); 7210 } 7211 } 7212 7213 void coroutine_fn bdrv_co_unlock(BlockDriverState *bs) 7214 { 7215 AioContext *ctx = bdrv_get_aio_context(bs); 7216 7217 assert(qemu_in_coroutine()); 7218 if (ctx != qemu_get_aio_context()) { 7219 aio_context_release(ctx); 7220 } 7221 } 7222 7223 static void bdrv_do_remove_aio_context_notifier(BdrvAioNotifier *ban) 7224 { 7225 GLOBAL_STATE_CODE(); 7226 QLIST_REMOVE(ban, list); 7227 g_free(ban); 7228 } 7229 7230 static void bdrv_detach_aio_context(BlockDriverState *bs) 7231 { 7232 BdrvAioNotifier *baf, *baf_tmp; 7233 7234 assert(!bs->walking_aio_notifiers); 7235 GLOBAL_STATE_CODE(); 7236 bs->walking_aio_notifiers = true; 7237 QLIST_FOREACH_SAFE(baf, &bs->aio_notifiers, list, baf_tmp) { 7238 if (baf->deleted) { 7239 bdrv_do_remove_aio_context_notifier(baf); 7240 } else { 7241 baf->detach_aio_context(baf->opaque); 7242 } 7243 } 7244 /* Never mind iterating again to check for ->deleted. bdrv_close() will 7245 * remove remaining aio notifiers if we aren't called again. 7246 */ 7247 bs->walking_aio_notifiers = false; 7248 7249 if (bs->drv && bs->drv->bdrv_detach_aio_context) { 7250 bs->drv->bdrv_detach_aio_context(bs); 7251 } 7252 7253 if (bs->quiesce_counter) { 7254 aio_enable_external(bs->aio_context); 7255 } 7256 bs->aio_context = NULL; 7257 } 7258 7259 static void bdrv_attach_aio_context(BlockDriverState *bs, 7260 AioContext *new_context) 7261 { 7262 BdrvAioNotifier *ban, *ban_tmp; 7263 GLOBAL_STATE_CODE(); 7264 7265 if (bs->quiesce_counter) { 7266 aio_disable_external(new_context); 7267 } 7268 7269 bs->aio_context = new_context; 7270 7271 if (bs->drv && bs->drv->bdrv_attach_aio_context) { 7272 bs->drv->bdrv_attach_aio_context(bs, new_context); 7273 } 7274 7275 assert(!bs->walking_aio_notifiers); 7276 bs->walking_aio_notifiers = true; 7277 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_tmp) { 7278 if (ban->deleted) { 7279 bdrv_do_remove_aio_context_notifier(ban); 7280 } else { 7281 ban->attached_aio_context(new_context, ban->opaque); 7282 } 7283 } 7284 bs->walking_aio_notifiers = false; 7285 } 7286 7287 typedef struct BdrvStateSetAioContext { 7288 AioContext *new_ctx; 7289 BlockDriverState *bs; 7290 } BdrvStateSetAioContext; 7291 7292 static bool bdrv_parent_change_aio_context(BdrvChild *c, AioContext *ctx, 7293 GHashTable *visited, 7294 Transaction *tran, 7295 Error **errp) 7296 { 7297 GLOBAL_STATE_CODE(); 7298 if (g_hash_table_contains(visited, c)) { 7299 return true; 7300 } 7301 g_hash_table_add(visited, c); 7302 7303 /* 7304 * A BdrvChildClass that doesn't handle AioContext changes cannot 7305 * tolerate any AioContext changes 7306 */ 7307 if (!c->klass->change_aio_ctx) { 7308 char *user = bdrv_child_user_desc(c); 7309 error_setg(errp, "Changing iothreads is not supported by %s", user); 7310 g_free(user); 7311 return false; 7312 } 7313 if (!c->klass->change_aio_ctx(c, ctx, visited, tran, errp)) { 7314 assert(!errp || *errp); 7315 return false; 7316 } 7317 return true; 7318 } 7319 7320 bool bdrv_child_change_aio_context(BdrvChild *c, AioContext *ctx, 7321 GHashTable *visited, Transaction *tran, 7322 Error **errp) 7323 { 7324 GLOBAL_STATE_CODE(); 7325 if (g_hash_table_contains(visited, c)) { 7326 return true; 7327 } 7328 g_hash_table_add(visited, c); 7329 return bdrv_change_aio_context(c->bs, ctx, visited, tran, errp); 7330 } 7331 7332 static void bdrv_set_aio_context_clean(void *opaque) 7333 { 7334 BdrvStateSetAioContext *state = (BdrvStateSetAioContext *) opaque; 7335 BlockDriverState *bs = (BlockDriverState *) state->bs; 7336 7337 /* Paired with bdrv_drained_begin in bdrv_change_aio_context() */ 7338 bdrv_drained_end(bs); 7339 7340 g_free(state); 7341 } 7342 7343 static void bdrv_set_aio_context_commit(void *opaque) 7344 { 7345 BdrvStateSetAioContext *state = (BdrvStateSetAioContext *) opaque; 7346 BlockDriverState *bs = (BlockDriverState *) state->bs; 7347 AioContext *new_context = state->new_ctx; 7348 AioContext *old_context = bdrv_get_aio_context(bs); 7349 7350 /* 7351 * Take the old AioContex when detaching it from bs. 7352 * At this point, new_context lock is already acquired, and we are now 7353 * also taking old_context. This is safe as long as bdrv_detach_aio_context 7354 * does not call AIO_POLL_WHILE(). 7355 */ 7356 if (old_context != qemu_get_aio_context()) { 7357 aio_context_acquire(old_context); 7358 } 7359 bdrv_detach_aio_context(bs); 7360 if (old_context != qemu_get_aio_context()) { 7361 aio_context_release(old_context); 7362 } 7363 bdrv_attach_aio_context(bs, new_context); 7364 } 7365 7366 static TransactionActionDrv set_aio_context = { 7367 .commit = bdrv_set_aio_context_commit, 7368 .clean = bdrv_set_aio_context_clean, 7369 }; 7370 7371 /* 7372 * Changes the AioContext used for fd handlers, timers, and BHs by this 7373 * BlockDriverState and all its children and parents. 7374 * 7375 * Must be called from the main AioContext. 7376 * 7377 * The caller must own the AioContext lock for the old AioContext of bs, but it 7378 * must not own the AioContext lock for new_context (unless new_context is the 7379 * same as the current context of bs). 7380 * 7381 * @visited will accumulate all visited BdrvChild objects. The caller is 7382 * responsible for freeing the list afterwards. 7383 */ 7384 static bool bdrv_change_aio_context(BlockDriverState *bs, AioContext *ctx, 7385 GHashTable *visited, Transaction *tran, 7386 Error **errp) 7387 { 7388 BdrvChild *c; 7389 BdrvStateSetAioContext *state; 7390 7391 GLOBAL_STATE_CODE(); 7392 7393 if (bdrv_get_aio_context(bs) == ctx) { 7394 return true; 7395 } 7396 7397 QLIST_FOREACH(c, &bs->parents, next_parent) { 7398 if (!bdrv_parent_change_aio_context(c, ctx, visited, tran, errp)) { 7399 return false; 7400 } 7401 } 7402 7403 QLIST_FOREACH(c, &bs->children, next) { 7404 if (!bdrv_child_change_aio_context(c, ctx, visited, tran, errp)) { 7405 return false; 7406 } 7407 } 7408 7409 state = g_new(BdrvStateSetAioContext, 1); 7410 *state = (BdrvStateSetAioContext) { 7411 .new_ctx = ctx, 7412 .bs = bs, 7413 }; 7414 7415 /* Paired with bdrv_drained_end in bdrv_set_aio_context_clean() */ 7416 bdrv_drained_begin(bs); 7417 7418 tran_add(tran, &set_aio_context, state); 7419 7420 return true; 7421 } 7422 7423 /* 7424 * Change bs's and recursively all of its parents' and children's AioContext 7425 * to the given new context, returning an error if that isn't possible. 7426 * 7427 * If ignore_child is not NULL, that child (and its subgraph) will not 7428 * be touched. 7429 * 7430 * This function still requires the caller to take the bs current 7431 * AioContext lock, otherwise draining will fail since AIO_WAIT_WHILE 7432 * assumes the lock is always held if bs is in another AioContext. 7433 * For the same reason, it temporarily also holds the new AioContext, since 7434 * bdrv_drained_end calls BDRV_POLL_WHILE that assumes the lock is taken too. 7435 * Therefore the new AioContext lock must not be taken by the caller. 7436 */ 7437 int bdrv_try_change_aio_context(BlockDriverState *bs, AioContext *ctx, 7438 BdrvChild *ignore_child, Error **errp) 7439 { 7440 Transaction *tran; 7441 GHashTable *visited; 7442 int ret; 7443 AioContext *old_context = bdrv_get_aio_context(bs); 7444 GLOBAL_STATE_CODE(); 7445 7446 /* 7447 * Recursion phase: go through all nodes of the graph. 7448 * Take care of checking that all nodes support changing AioContext 7449 * and drain them, builing a linear list of callbacks to run if everything 7450 * is successful (the transaction itself). 7451 */ 7452 tran = tran_new(); 7453 visited = g_hash_table_new(NULL, NULL); 7454 if (ignore_child) { 7455 g_hash_table_add(visited, ignore_child); 7456 } 7457 ret = bdrv_change_aio_context(bs, ctx, visited, tran, errp); 7458 g_hash_table_destroy(visited); 7459 7460 /* 7461 * Linear phase: go through all callbacks collected in the transaction. 7462 * Run all callbacks collected in the recursion to switch all nodes 7463 * AioContext lock (transaction commit), or undo all changes done in the 7464 * recursion (transaction abort). 7465 */ 7466 7467 if (!ret) { 7468 /* Just run clean() callbacks. No AioContext changed. */ 7469 tran_abort(tran); 7470 return -EPERM; 7471 } 7472 7473 /* 7474 * Release old AioContext, it won't be needed anymore, as all 7475 * bdrv_drained_begin() have been called already. 7476 */ 7477 if (qemu_get_aio_context() != old_context) { 7478 aio_context_release(old_context); 7479 } 7480 7481 /* 7482 * Acquire new AioContext since bdrv_drained_end() is going to be called 7483 * after we switched all nodes in the new AioContext, and the function 7484 * assumes that the lock of the bs is always taken. 7485 */ 7486 if (qemu_get_aio_context() != ctx) { 7487 aio_context_acquire(ctx); 7488 } 7489 7490 tran_commit(tran); 7491 7492 if (qemu_get_aio_context() != ctx) { 7493 aio_context_release(ctx); 7494 } 7495 7496 /* Re-acquire the old AioContext, since the caller takes and releases it. */ 7497 if (qemu_get_aio_context() != old_context) { 7498 aio_context_acquire(old_context); 7499 } 7500 7501 return 0; 7502 } 7503 7504 void bdrv_add_aio_context_notifier(BlockDriverState *bs, 7505 void (*attached_aio_context)(AioContext *new_context, void *opaque), 7506 void (*detach_aio_context)(void *opaque), void *opaque) 7507 { 7508 BdrvAioNotifier *ban = g_new(BdrvAioNotifier, 1); 7509 *ban = (BdrvAioNotifier){ 7510 .attached_aio_context = attached_aio_context, 7511 .detach_aio_context = detach_aio_context, 7512 .opaque = opaque 7513 }; 7514 GLOBAL_STATE_CODE(); 7515 7516 QLIST_INSERT_HEAD(&bs->aio_notifiers, ban, list); 7517 } 7518 7519 void bdrv_remove_aio_context_notifier(BlockDriverState *bs, 7520 void (*attached_aio_context)(AioContext *, 7521 void *), 7522 void (*detach_aio_context)(void *), 7523 void *opaque) 7524 { 7525 BdrvAioNotifier *ban, *ban_next; 7526 GLOBAL_STATE_CODE(); 7527 7528 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) { 7529 if (ban->attached_aio_context == attached_aio_context && 7530 ban->detach_aio_context == detach_aio_context && 7531 ban->opaque == opaque && 7532 ban->deleted == false) 7533 { 7534 if (bs->walking_aio_notifiers) { 7535 ban->deleted = true; 7536 } else { 7537 bdrv_do_remove_aio_context_notifier(ban); 7538 } 7539 return; 7540 } 7541 } 7542 7543 abort(); 7544 } 7545 7546 int bdrv_amend_options(BlockDriverState *bs, QemuOpts *opts, 7547 BlockDriverAmendStatusCB *status_cb, void *cb_opaque, 7548 bool force, 7549 Error **errp) 7550 { 7551 GLOBAL_STATE_CODE(); 7552 if (!bs->drv) { 7553 error_setg(errp, "Node is ejected"); 7554 return -ENOMEDIUM; 7555 } 7556 if (!bs->drv->bdrv_amend_options) { 7557 error_setg(errp, "Block driver '%s' does not support option amendment", 7558 bs->drv->format_name); 7559 return -ENOTSUP; 7560 } 7561 return bs->drv->bdrv_amend_options(bs, opts, status_cb, 7562 cb_opaque, force, errp); 7563 } 7564 7565 /* 7566 * This function checks whether the given @to_replace is allowed to be 7567 * replaced by a node that always shows the same data as @bs. This is 7568 * used for example to verify whether the mirror job can replace 7569 * @to_replace by the target mirrored from @bs. 7570 * To be replaceable, @bs and @to_replace may either be guaranteed to 7571 * always show the same data (because they are only connected through 7572 * filters), or some driver may allow replacing one of its children 7573 * because it can guarantee that this child's data is not visible at 7574 * all (for example, for dissenting quorum children that have no other 7575 * parents). 7576 */ 7577 bool bdrv_recurse_can_replace(BlockDriverState *bs, 7578 BlockDriverState *to_replace) 7579 { 7580 BlockDriverState *filtered; 7581 7582 GLOBAL_STATE_CODE(); 7583 7584 if (!bs || !bs->drv) { 7585 return false; 7586 } 7587 7588 if (bs == to_replace) { 7589 return true; 7590 } 7591 7592 /* See what the driver can do */ 7593 if (bs->drv->bdrv_recurse_can_replace) { 7594 return bs->drv->bdrv_recurse_can_replace(bs, to_replace); 7595 } 7596 7597 /* For filters without an own implementation, we can recurse on our own */ 7598 filtered = bdrv_filter_bs(bs); 7599 if (filtered) { 7600 return bdrv_recurse_can_replace(filtered, to_replace); 7601 } 7602 7603 /* Safe default */ 7604 return false; 7605 } 7606 7607 /* 7608 * Check whether the given @node_name can be replaced by a node that 7609 * has the same data as @parent_bs. If so, return @node_name's BDS; 7610 * NULL otherwise. 7611 * 7612 * @node_name must be a (recursive) *child of @parent_bs (or this 7613 * function will return NULL). 7614 * 7615 * The result (whether the node can be replaced or not) is only valid 7616 * for as long as no graph or permission changes occur. 7617 */ 7618 BlockDriverState *check_to_replace_node(BlockDriverState *parent_bs, 7619 const char *node_name, Error **errp) 7620 { 7621 BlockDriverState *to_replace_bs = bdrv_find_node(node_name); 7622 AioContext *aio_context; 7623 7624 GLOBAL_STATE_CODE(); 7625 7626 if (!to_replace_bs) { 7627 error_setg(errp, "Failed to find node with node-name='%s'", node_name); 7628 return NULL; 7629 } 7630 7631 aio_context = bdrv_get_aio_context(to_replace_bs); 7632 aio_context_acquire(aio_context); 7633 7634 if (bdrv_op_is_blocked(to_replace_bs, BLOCK_OP_TYPE_REPLACE, errp)) { 7635 to_replace_bs = NULL; 7636 goto out; 7637 } 7638 7639 /* We don't want arbitrary node of the BDS chain to be replaced only the top 7640 * most non filter in order to prevent data corruption. 7641 * Another benefit is that this tests exclude backing files which are 7642 * blocked by the backing blockers. 7643 */ 7644 if (!bdrv_recurse_can_replace(parent_bs, to_replace_bs)) { 7645 error_setg(errp, "Cannot replace '%s' by a node mirrored from '%s', " 7646 "because it cannot be guaranteed that doing so would not " 7647 "lead to an abrupt change of visible data", 7648 node_name, parent_bs->node_name); 7649 to_replace_bs = NULL; 7650 goto out; 7651 } 7652 7653 out: 7654 aio_context_release(aio_context); 7655 return to_replace_bs; 7656 } 7657 7658 /** 7659 * Iterates through the list of runtime option keys that are said to 7660 * be "strong" for a BDS. An option is called "strong" if it changes 7661 * a BDS's data. For example, the null block driver's "size" and 7662 * "read-zeroes" options are strong, but its "latency-ns" option is 7663 * not. 7664 * 7665 * If a key returned by this function ends with a dot, all options 7666 * starting with that prefix are strong. 7667 */ 7668 static const char *const *strong_options(BlockDriverState *bs, 7669 const char *const *curopt) 7670 { 7671 static const char *const global_options[] = { 7672 "driver", "filename", NULL 7673 }; 7674 7675 if (!curopt) { 7676 return &global_options[0]; 7677 } 7678 7679 curopt++; 7680 if (curopt == &global_options[ARRAY_SIZE(global_options) - 1] && bs->drv) { 7681 curopt = bs->drv->strong_runtime_opts; 7682 } 7683 7684 return (curopt && *curopt) ? curopt : NULL; 7685 } 7686 7687 /** 7688 * Copies all strong runtime options from bs->options to the given 7689 * QDict. The set of strong option keys is determined by invoking 7690 * strong_options(). 7691 * 7692 * Returns true iff any strong option was present in bs->options (and 7693 * thus copied to the target QDict) with the exception of "filename" 7694 * and "driver". The caller is expected to use this value to decide 7695 * whether the existence of strong options prevents the generation of 7696 * a plain filename. 7697 */ 7698 static bool append_strong_runtime_options(QDict *d, BlockDriverState *bs) 7699 { 7700 bool found_any = false; 7701 const char *const *option_name = NULL; 7702 7703 if (!bs->drv) { 7704 return false; 7705 } 7706 7707 while ((option_name = strong_options(bs, option_name))) { 7708 bool option_given = false; 7709 7710 assert(strlen(*option_name) > 0); 7711 if ((*option_name)[strlen(*option_name) - 1] != '.') { 7712 QObject *entry = qdict_get(bs->options, *option_name); 7713 if (!entry) { 7714 continue; 7715 } 7716 7717 qdict_put_obj(d, *option_name, qobject_ref(entry)); 7718 option_given = true; 7719 } else { 7720 const QDictEntry *entry; 7721 for (entry = qdict_first(bs->options); entry; 7722 entry = qdict_next(bs->options, entry)) 7723 { 7724 if (strstart(qdict_entry_key(entry), *option_name, NULL)) { 7725 qdict_put_obj(d, qdict_entry_key(entry), 7726 qobject_ref(qdict_entry_value(entry))); 7727 option_given = true; 7728 } 7729 } 7730 } 7731 7732 /* While "driver" and "filename" need to be included in a JSON filename, 7733 * their existence does not prohibit generation of a plain filename. */ 7734 if (!found_any && option_given && 7735 strcmp(*option_name, "driver") && strcmp(*option_name, "filename")) 7736 { 7737 found_any = true; 7738 } 7739 } 7740 7741 if (!qdict_haskey(d, "driver")) { 7742 /* Drivers created with bdrv_new_open_driver() may not have a 7743 * @driver option. Add it here. */ 7744 qdict_put_str(d, "driver", bs->drv->format_name); 7745 } 7746 7747 return found_any; 7748 } 7749 7750 /* Note: This function may return false positives; it may return true 7751 * even if opening the backing file specified by bs's image header 7752 * would result in exactly bs->backing. */ 7753 static bool bdrv_backing_overridden(BlockDriverState *bs) 7754 { 7755 GLOBAL_STATE_CODE(); 7756 if (bs->backing) { 7757 return strcmp(bs->auto_backing_file, 7758 bs->backing->bs->filename); 7759 } else { 7760 /* No backing BDS, so if the image header reports any backing 7761 * file, it must have been suppressed */ 7762 return bs->auto_backing_file[0] != '\0'; 7763 } 7764 } 7765 7766 /* Updates the following BDS fields: 7767 * - exact_filename: A filename which may be used for opening a block device 7768 * which (mostly) equals the given BDS (even without any 7769 * other options; so reading and writing must return the same 7770 * results, but caching etc. may be different) 7771 * - full_open_options: Options which, when given when opening a block device 7772 * (without a filename), result in a BDS (mostly) 7773 * equalling the given one 7774 * - filename: If exact_filename is set, it is copied here. Otherwise, 7775 * full_open_options is converted to a JSON object, prefixed with 7776 * "json:" (for use through the JSON pseudo protocol) and put here. 7777 */ 7778 void bdrv_refresh_filename(BlockDriverState *bs) 7779 { 7780 BlockDriver *drv = bs->drv; 7781 BdrvChild *child; 7782 BlockDriverState *primary_child_bs; 7783 QDict *opts; 7784 bool backing_overridden; 7785 bool generate_json_filename; /* Whether our default implementation should 7786 fill exact_filename (false) or not (true) */ 7787 7788 GLOBAL_STATE_CODE(); 7789 7790 if (!drv) { 7791 return; 7792 } 7793 7794 /* This BDS's file name may depend on any of its children's file names, so 7795 * refresh those first */ 7796 QLIST_FOREACH(child, &bs->children, next) { 7797 bdrv_refresh_filename(child->bs); 7798 } 7799 7800 if (bs->implicit) { 7801 /* For implicit nodes, just copy everything from the single child */ 7802 child = QLIST_FIRST(&bs->children); 7803 assert(QLIST_NEXT(child, next) == NULL); 7804 7805 pstrcpy(bs->exact_filename, sizeof(bs->exact_filename), 7806 child->bs->exact_filename); 7807 pstrcpy(bs->filename, sizeof(bs->filename), child->bs->filename); 7808 7809 qobject_unref(bs->full_open_options); 7810 bs->full_open_options = qobject_ref(child->bs->full_open_options); 7811 7812 return; 7813 } 7814 7815 backing_overridden = bdrv_backing_overridden(bs); 7816 7817 if (bs->open_flags & BDRV_O_NO_IO) { 7818 /* Without I/O, the backing file does not change anything. 7819 * Therefore, in such a case (primarily qemu-img), we can 7820 * pretend the backing file has not been overridden even if 7821 * it technically has been. */ 7822 backing_overridden = false; 7823 } 7824 7825 /* Gather the options QDict */ 7826 opts = qdict_new(); 7827 generate_json_filename = append_strong_runtime_options(opts, bs); 7828 generate_json_filename |= backing_overridden; 7829 7830 if (drv->bdrv_gather_child_options) { 7831 /* Some block drivers may not want to present all of their children's 7832 * options, or name them differently from BdrvChild.name */ 7833 drv->bdrv_gather_child_options(bs, opts, backing_overridden); 7834 } else { 7835 QLIST_FOREACH(child, &bs->children, next) { 7836 if (child == bs->backing && !backing_overridden) { 7837 /* We can skip the backing BDS if it has not been overridden */ 7838 continue; 7839 } 7840 7841 qdict_put(opts, child->name, 7842 qobject_ref(child->bs->full_open_options)); 7843 } 7844 7845 if (backing_overridden && !bs->backing) { 7846 /* Force no backing file */ 7847 qdict_put_null(opts, "backing"); 7848 } 7849 } 7850 7851 qobject_unref(bs->full_open_options); 7852 bs->full_open_options = opts; 7853 7854 primary_child_bs = bdrv_primary_bs(bs); 7855 7856 if (drv->bdrv_refresh_filename) { 7857 /* Obsolete information is of no use here, so drop the old file name 7858 * information before refreshing it */ 7859 bs->exact_filename[0] = '\0'; 7860 7861 drv->bdrv_refresh_filename(bs); 7862 } else if (primary_child_bs) { 7863 /* 7864 * Try to reconstruct valid information from the underlying 7865 * file -- this only works for format nodes (filter nodes 7866 * cannot be probed and as such must be selected by the user 7867 * either through an options dict, or through a special 7868 * filename which the filter driver must construct in its 7869 * .bdrv_refresh_filename() implementation). 7870 */ 7871 7872 bs->exact_filename[0] = '\0'; 7873 7874 /* 7875 * We can use the underlying file's filename if: 7876 * - it has a filename, 7877 * - the current BDS is not a filter, 7878 * - the file is a protocol BDS, and 7879 * - opening that file (as this BDS's format) will automatically create 7880 * the BDS tree we have right now, that is: 7881 * - the user did not significantly change this BDS's behavior with 7882 * some explicit (strong) options 7883 * - no non-file child of this BDS has been overridden by the user 7884 * Both of these conditions are represented by generate_json_filename. 7885 */ 7886 if (primary_child_bs->exact_filename[0] && 7887 primary_child_bs->drv->bdrv_file_open && 7888 !drv->is_filter && !generate_json_filename) 7889 { 7890 strcpy(bs->exact_filename, primary_child_bs->exact_filename); 7891 } 7892 } 7893 7894 if (bs->exact_filename[0]) { 7895 pstrcpy(bs->filename, sizeof(bs->filename), bs->exact_filename); 7896 } else { 7897 GString *json = qobject_to_json(QOBJECT(bs->full_open_options)); 7898 if (snprintf(bs->filename, sizeof(bs->filename), "json:%s", 7899 json->str) >= sizeof(bs->filename)) { 7900 /* Give user a hint if we truncated things. */ 7901 strcpy(bs->filename + sizeof(bs->filename) - 4, "..."); 7902 } 7903 g_string_free(json, true); 7904 } 7905 } 7906 7907 char *bdrv_dirname(BlockDriverState *bs, Error **errp) 7908 { 7909 BlockDriver *drv = bs->drv; 7910 BlockDriverState *child_bs; 7911 7912 GLOBAL_STATE_CODE(); 7913 7914 if (!drv) { 7915 error_setg(errp, "Node '%s' is ejected", bs->node_name); 7916 return NULL; 7917 } 7918 7919 if (drv->bdrv_dirname) { 7920 return drv->bdrv_dirname(bs, errp); 7921 } 7922 7923 child_bs = bdrv_primary_bs(bs); 7924 if (child_bs) { 7925 return bdrv_dirname(child_bs, errp); 7926 } 7927 7928 bdrv_refresh_filename(bs); 7929 if (bs->exact_filename[0] != '\0') { 7930 return path_combine(bs->exact_filename, ""); 7931 } 7932 7933 error_setg(errp, "Cannot generate a base directory for %s nodes", 7934 drv->format_name); 7935 return NULL; 7936 } 7937 7938 /* 7939 * Hot add/remove a BDS's child. So the user can take a child offline when 7940 * it is broken and take a new child online 7941 */ 7942 void bdrv_add_child(BlockDriverState *parent_bs, BlockDriverState *child_bs, 7943 Error **errp) 7944 { 7945 GLOBAL_STATE_CODE(); 7946 if (!parent_bs->drv || !parent_bs->drv->bdrv_add_child) { 7947 error_setg(errp, "The node %s does not support adding a child", 7948 bdrv_get_device_or_node_name(parent_bs)); 7949 return; 7950 } 7951 7952 if (!QLIST_EMPTY(&child_bs->parents)) { 7953 error_setg(errp, "The node %s already has a parent", 7954 child_bs->node_name); 7955 return; 7956 } 7957 7958 parent_bs->drv->bdrv_add_child(parent_bs, child_bs, errp); 7959 } 7960 7961 void bdrv_del_child(BlockDriverState *parent_bs, BdrvChild *child, Error **errp) 7962 { 7963 BdrvChild *tmp; 7964 7965 GLOBAL_STATE_CODE(); 7966 if (!parent_bs->drv || !parent_bs->drv->bdrv_del_child) { 7967 error_setg(errp, "The node %s does not support removing a child", 7968 bdrv_get_device_or_node_name(parent_bs)); 7969 return; 7970 } 7971 7972 QLIST_FOREACH(tmp, &parent_bs->children, next) { 7973 if (tmp == child) { 7974 break; 7975 } 7976 } 7977 7978 if (!tmp) { 7979 error_setg(errp, "The node %s does not have a child named %s", 7980 bdrv_get_device_or_node_name(parent_bs), 7981 bdrv_get_device_or_node_name(child->bs)); 7982 return; 7983 } 7984 7985 parent_bs->drv->bdrv_del_child(parent_bs, child, errp); 7986 } 7987 7988 int bdrv_make_empty(BdrvChild *c, Error **errp) 7989 { 7990 BlockDriver *drv = c->bs->drv; 7991 int ret; 7992 7993 GLOBAL_STATE_CODE(); 7994 assert(c->perm & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)); 7995 7996 if (!drv->bdrv_make_empty) { 7997 error_setg(errp, "%s does not support emptying nodes", 7998 drv->format_name); 7999 return -ENOTSUP; 8000 } 8001 8002 ret = drv->bdrv_make_empty(c->bs); 8003 if (ret < 0) { 8004 error_setg_errno(errp, -ret, "Failed to empty %s", 8005 c->bs->filename); 8006 return ret; 8007 } 8008 8009 return 0; 8010 } 8011 8012 /* 8013 * Return the child that @bs acts as an overlay for, and from which data may be 8014 * copied in COW or COR operations. Usually this is the backing file. 8015 */ 8016 BdrvChild *bdrv_cow_child(BlockDriverState *bs) 8017 { 8018 IO_CODE(); 8019 8020 if (!bs || !bs->drv) { 8021 return NULL; 8022 } 8023 8024 if (bs->drv->is_filter) { 8025 return NULL; 8026 } 8027 8028 if (!bs->backing) { 8029 return NULL; 8030 } 8031 8032 assert(bs->backing->role & BDRV_CHILD_COW); 8033 return bs->backing; 8034 } 8035 8036 /* 8037 * If @bs acts as a filter for exactly one of its children, return 8038 * that child. 8039 */ 8040 BdrvChild *bdrv_filter_child(BlockDriverState *bs) 8041 { 8042 BdrvChild *c; 8043 IO_CODE(); 8044 8045 if (!bs || !bs->drv) { 8046 return NULL; 8047 } 8048 8049 if (!bs->drv->is_filter) { 8050 return NULL; 8051 } 8052 8053 /* Only one of @backing or @file may be used */ 8054 assert(!(bs->backing && bs->file)); 8055 8056 c = bs->backing ?: bs->file; 8057 if (!c) { 8058 return NULL; 8059 } 8060 8061 assert(c->role & BDRV_CHILD_FILTERED); 8062 return c; 8063 } 8064 8065 /* 8066 * Return either the result of bdrv_cow_child() or bdrv_filter_child(), 8067 * whichever is non-NULL. 8068 * 8069 * Return NULL if both are NULL. 8070 */ 8071 BdrvChild *bdrv_filter_or_cow_child(BlockDriverState *bs) 8072 { 8073 BdrvChild *cow_child = bdrv_cow_child(bs); 8074 BdrvChild *filter_child = bdrv_filter_child(bs); 8075 IO_CODE(); 8076 8077 /* Filter nodes cannot have COW backing files */ 8078 assert(!(cow_child && filter_child)); 8079 8080 return cow_child ?: filter_child; 8081 } 8082 8083 /* 8084 * Return the primary child of this node: For filters, that is the 8085 * filtered child. For other nodes, that is usually the child storing 8086 * metadata. 8087 * (A generally more helpful description is that this is (usually) the 8088 * child that has the same filename as @bs.) 8089 * 8090 * Drivers do not necessarily have a primary child; for example quorum 8091 * does not. 8092 */ 8093 BdrvChild *bdrv_primary_child(BlockDriverState *bs) 8094 { 8095 BdrvChild *c, *found = NULL; 8096 IO_CODE(); 8097 8098 QLIST_FOREACH(c, &bs->children, next) { 8099 if (c->role & BDRV_CHILD_PRIMARY) { 8100 assert(!found); 8101 found = c; 8102 } 8103 } 8104 8105 return found; 8106 } 8107 8108 static BlockDriverState *bdrv_do_skip_filters(BlockDriverState *bs, 8109 bool stop_on_explicit_filter) 8110 { 8111 BdrvChild *c; 8112 8113 if (!bs) { 8114 return NULL; 8115 } 8116 8117 while (!(stop_on_explicit_filter && !bs->implicit)) { 8118 c = bdrv_filter_child(bs); 8119 if (!c) { 8120 /* 8121 * A filter that is embedded in a working block graph must 8122 * have a child. Assert this here so this function does 8123 * not return a filter node that is not expected by the 8124 * caller. 8125 */ 8126 assert(!bs->drv || !bs->drv->is_filter); 8127 break; 8128 } 8129 bs = c->bs; 8130 } 8131 /* 8132 * Note that this treats nodes with bs->drv == NULL as not being 8133 * filters (bs->drv == NULL should be replaced by something else 8134 * anyway). 8135 * The advantage of this behavior is that this function will thus 8136 * always return a non-NULL value (given a non-NULL @bs). 8137 */ 8138 8139 return bs; 8140 } 8141 8142 /* 8143 * Return the first BDS that has not been added implicitly or that 8144 * does not have a filtered child down the chain starting from @bs 8145 * (including @bs itself). 8146 */ 8147 BlockDriverState *bdrv_skip_implicit_filters(BlockDriverState *bs) 8148 { 8149 GLOBAL_STATE_CODE(); 8150 return bdrv_do_skip_filters(bs, true); 8151 } 8152 8153 /* 8154 * Return the first BDS that does not have a filtered child down the 8155 * chain starting from @bs (including @bs itself). 8156 */ 8157 BlockDriverState *bdrv_skip_filters(BlockDriverState *bs) 8158 { 8159 IO_CODE(); 8160 return bdrv_do_skip_filters(bs, false); 8161 } 8162 8163 /* 8164 * For a backing chain, return the first non-filter backing image of 8165 * the first non-filter image. 8166 */ 8167 BlockDriverState *bdrv_backing_chain_next(BlockDriverState *bs) 8168 { 8169 IO_CODE(); 8170 return bdrv_skip_filters(bdrv_cow_bs(bdrv_skip_filters(bs))); 8171 } 8172 8173 /** 8174 * Check whether [offset, offset + bytes) overlaps with the cached 8175 * block-status data region. 8176 * 8177 * If so, and @pnum is not NULL, set *pnum to `bsc.data_end - offset`, 8178 * which is what bdrv_bsc_is_data()'s interface needs. 8179 * Otherwise, *pnum is not touched. 8180 */ 8181 static bool bdrv_bsc_range_overlaps_locked(BlockDriverState *bs, 8182 int64_t offset, int64_t bytes, 8183 int64_t *pnum) 8184 { 8185 BdrvBlockStatusCache *bsc = qatomic_rcu_read(&bs->block_status_cache); 8186 bool overlaps; 8187 8188 overlaps = 8189 qatomic_read(&bsc->valid) && 8190 ranges_overlap(offset, bytes, bsc->data_start, 8191 bsc->data_end - bsc->data_start); 8192 8193 if (overlaps && pnum) { 8194 *pnum = bsc->data_end - offset; 8195 } 8196 8197 return overlaps; 8198 } 8199 8200 /** 8201 * See block_int.h for this function's documentation. 8202 */ 8203 bool bdrv_bsc_is_data(BlockDriverState *bs, int64_t offset, int64_t *pnum) 8204 { 8205 IO_CODE(); 8206 RCU_READ_LOCK_GUARD(); 8207 return bdrv_bsc_range_overlaps_locked(bs, offset, 1, pnum); 8208 } 8209 8210 /** 8211 * See block_int.h for this function's documentation. 8212 */ 8213 void bdrv_bsc_invalidate_range(BlockDriverState *bs, 8214 int64_t offset, int64_t bytes) 8215 { 8216 IO_CODE(); 8217 RCU_READ_LOCK_GUARD(); 8218 8219 if (bdrv_bsc_range_overlaps_locked(bs, offset, bytes, NULL)) { 8220 qatomic_set(&bs->block_status_cache->valid, false); 8221 } 8222 } 8223 8224 /** 8225 * See block_int.h for this function's documentation. 8226 */ 8227 void bdrv_bsc_fill(BlockDriverState *bs, int64_t offset, int64_t bytes) 8228 { 8229 BdrvBlockStatusCache *new_bsc = g_new(BdrvBlockStatusCache, 1); 8230 BdrvBlockStatusCache *old_bsc; 8231 IO_CODE(); 8232 8233 *new_bsc = (BdrvBlockStatusCache) { 8234 .valid = true, 8235 .data_start = offset, 8236 .data_end = offset + bytes, 8237 }; 8238 8239 QEMU_LOCK_GUARD(&bs->bsc_modify_lock); 8240 8241 old_bsc = qatomic_rcu_read(&bs->block_status_cache); 8242 qatomic_rcu_set(&bs->block_status_cache, new_bsc); 8243 if (old_bsc) { 8244 g_free_rcu(old_bsc, rcu); 8245 } 8246 } 8247