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