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