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