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