1 /* 2 * QEMU Block backends 3 * 4 * Copyright (C) 2014-2016 Red Hat, Inc. 5 * 6 * Authors: 7 * Markus Armbruster <armbru@redhat.com>, 8 * 9 * This work is licensed under the terms of the GNU LGPL, version 2.1 10 * or later. See the COPYING.LIB file in the top-level directory. 11 */ 12 13 #include "qemu/osdep.h" 14 #include "sysemu/block-backend.h" 15 #include "block/block_int.h" 16 #include "block/blockjob.h" 17 #include "block/throttle-groups.h" 18 #include "hw/qdev-core.h" 19 #include "sysemu/blockdev.h" 20 #include "sysemu/sysemu.h" 21 #include "qapi/error.h" 22 #include "qapi/qapi-events-block.h" 23 #include "qemu/id.h" 24 #include "qemu/option.h" 25 #include "trace.h" 26 #include "migration/misc.h" 27 28 /* Number of coroutines to reserve per attached device model */ 29 #define COROUTINE_POOL_RESERVATION 64 30 31 #define NOT_DONE 0x7fffffff /* used while emulated sync operation in progress */ 32 33 static AioContext *blk_aiocb_get_aio_context(BlockAIOCB *acb); 34 35 typedef struct BlockBackendAioNotifier { 36 void (*attached_aio_context)(AioContext *new_context, void *opaque); 37 void (*detach_aio_context)(void *opaque); 38 void *opaque; 39 QLIST_ENTRY(BlockBackendAioNotifier) list; 40 } BlockBackendAioNotifier; 41 42 struct BlockBackend { 43 char *name; 44 int refcnt; 45 BdrvChild *root; 46 AioContext *ctx; 47 DriveInfo *legacy_dinfo; /* null unless created by drive_new() */ 48 QTAILQ_ENTRY(BlockBackend) link; /* for block_backends */ 49 QTAILQ_ENTRY(BlockBackend) monitor_link; /* for monitor_block_backends */ 50 BlockBackendPublic public; 51 52 DeviceState *dev; /* attached device model, if any */ 53 const BlockDevOps *dev_ops; 54 void *dev_opaque; 55 56 /* the block size for which the guest device expects atomicity */ 57 int guest_block_size; 58 59 /* If the BDS tree is removed, some of its options are stored here (which 60 * can be used to restore those options in the new BDS on insert) */ 61 BlockBackendRootState root_state; 62 63 bool enable_write_cache; 64 65 /* I/O stats (display with "info blockstats"). */ 66 BlockAcctStats stats; 67 68 BlockdevOnError on_read_error, on_write_error; 69 bool iostatus_enabled; 70 BlockDeviceIoStatus iostatus; 71 72 uint64_t perm; 73 uint64_t shared_perm; 74 bool disable_perm; 75 76 bool allow_aio_context_change; 77 bool allow_write_beyond_eof; 78 79 NotifierList remove_bs_notifiers, insert_bs_notifiers; 80 QLIST_HEAD(, BlockBackendAioNotifier) aio_notifiers; 81 82 int quiesce_counter; 83 VMChangeStateEntry *vmsh; 84 bool force_allow_inactivate; 85 86 /* Number of in-flight aio requests. BlockDriverState also counts 87 * in-flight requests but aio requests can exist even when blk->root is 88 * NULL, so we cannot rely on its counter for that case. 89 * Accessed with atomic ops. 90 */ 91 unsigned int in_flight; 92 }; 93 94 typedef struct BlockBackendAIOCB { 95 BlockAIOCB common; 96 BlockBackend *blk; 97 int ret; 98 } BlockBackendAIOCB; 99 100 static const AIOCBInfo block_backend_aiocb_info = { 101 .get_aio_context = blk_aiocb_get_aio_context, 102 .aiocb_size = sizeof(BlockBackendAIOCB), 103 }; 104 105 static void drive_info_del(DriveInfo *dinfo); 106 static BlockBackend *bdrv_first_blk(BlockDriverState *bs); 107 108 /* All BlockBackends */ 109 static QTAILQ_HEAD(, BlockBackend) block_backends = 110 QTAILQ_HEAD_INITIALIZER(block_backends); 111 112 /* All BlockBackends referenced by the monitor and which are iterated through by 113 * blk_next() */ 114 static QTAILQ_HEAD(, BlockBackend) monitor_block_backends = 115 QTAILQ_HEAD_INITIALIZER(monitor_block_backends); 116 117 static void blk_root_inherit_options(int *child_flags, QDict *child_options, 118 int parent_flags, QDict *parent_options) 119 { 120 /* We're not supposed to call this function for root nodes */ 121 abort(); 122 } 123 static void blk_root_drained_begin(BdrvChild *child); 124 static bool blk_root_drained_poll(BdrvChild *child); 125 static void blk_root_drained_end(BdrvChild *child, int *drained_end_counter); 126 127 static void blk_root_change_media(BdrvChild *child, bool load); 128 static void blk_root_resize(BdrvChild *child); 129 130 static bool blk_root_can_set_aio_ctx(BdrvChild *child, AioContext *ctx, 131 GSList **ignore, Error **errp); 132 static void blk_root_set_aio_ctx(BdrvChild *child, AioContext *ctx, 133 GSList **ignore); 134 135 static char *blk_root_get_parent_desc(BdrvChild *child) 136 { 137 BlockBackend *blk = child->opaque; 138 char *dev_id; 139 140 if (blk->name) { 141 return g_strdup(blk->name); 142 } 143 144 dev_id = blk_get_attached_dev_id(blk); 145 if (*dev_id) { 146 return dev_id; 147 } else { 148 /* TODO Callback into the BB owner for something more detailed */ 149 g_free(dev_id); 150 return g_strdup("a block device"); 151 } 152 } 153 154 static const char *blk_root_get_name(BdrvChild *child) 155 { 156 return blk_name(child->opaque); 157 } 158 159 static void blk_vm_state_changed(void *opaque, int running, RunState state) 160 { 161 Error *local_err = NULL; 162 BlockBackend *blk = opaque; 163 164 if (state == RUN_STATE_INMIGRATE) { 165 return; 166 } 167 168 qemu_del_vm_change_state_handler(blk->vmsh); 169 blk->vmsh = NULL; 170 blk_set_perm(blk, blk->perm, blk->shared_perm, &local_err); 171 if (local_err) { 172 error_report_err(local_err); 173 } 174 } 175 176 /* 177 * Notifies the user of the BlockBackend that migration has completed. qdev 178 * devices can tighten their permissions in response (specifically revoke 179 * shared write permissions that we needed for storage migration). 180 * 181 * If an error is returned, the VM cannot be allowed to be resumed. 182 */ 183 static void blk_root_activate(BdrvChild *child, Error **errp) 184 { 185 BlockBackend *blk = child->opaque; 186 Error *local_err = NULL; 187 188 if (!blk->disable_perm) { 189 return; 190 } 191 192 blk->disable_perm = false; 193 194 blk_set_perm(blk, blk->perm, BLK_PERM_ALL, &local_err); 195 if (local_err) { 196 error_propagate(errp, local_err); 197 blk->disable_perm = true; 198 return; 199 } 200 201 if (runstate_check(RUN_STATE_INMIGRATE)) { 202 /* Activation can happen when migration process is still active, for 203 * example when nbd_server_add is called during non-shared storage 204 * migration. Defer the shared_perm update to migration completion. */ 205 if (!blk->vmsh) { 206 blk->vmsh = qemu_add_vm_change_state_handler(blk_vm_state_changed, 207 blk); 208 } 209 return; 210 } 211 212 blk_set_perm(blk, blk->perm, blk->shared_perm, &local_err); 213 if (local_err) { 214 error_propagate(errp, local_err); 215 blk->disable_perm = true; 216 return; 217 } 218 } 219 220 void blk_set_force_allow_inactivate(BlockBackend *blk) 221 { 222 blk->force_allow_inactivate = true; 223 } 224 225 static bool blk_can_inactivate(BlockBackend *blk) 226 { 227 /* If it is a guest device, inactivate is ok. */ 228 if (blk->dev || blk_name(blk)[0]) { 229 return true; 230 } 231 232 /* Inactivating means no more writes to the image can be done, 233 * even if those writes would be changes invisible to the 234 * guest. For block job BBs that satisfy this, we can just allow 235 * it. This is the case for mirror job source, which is required 236 * by libvirt non-shared block migration. */ 237 if (!(blk->perm & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED))) { 238 return true; 239 } 240 241 return blk->force_allow_inactivate; 242 } 243 244 static int blk_root_inactivate(BdrvChild *child) 245 { 246 BlockBackend *blk = child->opaque; 247 248 if (blk->disable_perm) { 249 return 0; 250 } 251 252 if (!blk_can_inactivate(blk)) { 253 return -EPERM; 254 } 255 256 blk->disable_perm = true; 257 if (blk->root) { 258 bdrv_child_try_set_perm(blk->root, 0, BLK_PERM_ALL, &error_abort); 259 } 260 261 return 0; 262 } 263 264 static void blk_root_attach(BdrvChild *child) 265 { 266 BlockBackend *blk = child->opaque; 267 BlockBackendAioNotifier *notifier; 268 269 trace_blk_root_attach(child, blk, child->bs); 270 271 QLIST_FOREACH(notifier, &blk->aio_notifiers, list) { 272 bdrv_add_aio_context_notifier(child->bs, 273 notifier->attached_aio_context, 274 notifier->detach_aio_context, 275 notifier->opaque); 276 } 277 } 278 279 static void blk_root_detach(BdrvChild *child) 280 { 281 BlockBackend *blk = child->opaque; 282 BlockBackendAioNotifier *notifier; 283 284 trace_blk_root_detach(child, blk, child->bs); 285 286 QLIST_FOREACH(notifier, &blk->aio_notifiers, list) { 287 bdrv_remove_aio_context_notifier(child->bs, 288 notifier->attached_aio_context, 289 notifier->detach_aio_context, 290 notifier->opaque); 291 } 292 } 293 294 static const BdrvChildRole child_root = { 295 .inherit_options = blk_root_inherit_options, 296 297 .change_media = blk_root_change_media, 298 .resize = blk_root_resize, 299 .get_name = blk_root_get_name, 300 .get_parent_desc = blk_root_get_parent_desc, 301 302 .drained_begin = blk_root_drained_begin, 303 .drained_poll = blk_root_drained_poll, 304 .drained_end = blk_root_drained_end, 305 306 .activate = blk_root_activate, 307 .inactivate = blk_root_inactivate, 308 309 .attach = blk_root_attach, 310 .detach = blk_root_detach, 311 312 .can_set_aio_ctx = blk_root_can_set_aio_ctx, 313 .set_aio_ctx = blk_root_set_aio_ctx, 314 }; 315 316 /* 317 * Create a new BlockBackend with a reference count of one. 318 * 319 * @perm is a bitmasks of BLK_PERM_* constants which describes the permissions 320 * to request for a block driver node that is attached to this BlockBackend. 321 * @shared_perm is a bitmask which describes which permissions may be granted 322 * to other users of the attached node. 323 * Both sets of permissions can be changed later using blk_set_perm(). 324 * 325 * Return the new BlockBackend on success, null on failure. 326 */ 327 BlockBackend *blk_new(AioContext *ctx, uint64_t perm, uint64_t shared_perm) 328 { 329 BlockBackend *blk; 330 331 blk = g_new0(BlockBackend, 1); 332 blk->refcnt = 1; 333 blk->ctx = ctx; 334 blk->perm = perm; 335 blk->shared_perm = shared_perm; 336 blk_set_enable_write_cache(blk, true); 337 338 blk->on_read_error = BLOCKDEV_ON_ERROR_REPORT; 339 blk->on_write_error = BLOCKDEV_ON_ERROR_ENOSPC; 340 341 block_acct_init(&blk->stats); 342 343 notifier_list_init(&blk->remove_bs_notifiers); 344 notifier_list_init(&blk->insert_bs_notifiers); 345 QLIST_INIT(&blk->aio_notifiers); 346 347 QTAILQ_INSERT_TAIL(&block_backends, blk, link); 348 return blk; 349 } 350 351 /* 352 * Creates a new BlockBackend, opens a new BlockDriverState, and connects both. 353 * The new BlockBackend is in the main AioContext. 354 * 355 * Just as with bdrv_open(), after having called this function the reference to 356 * @options belongs to the block layer (even on failure). 357 * 358 * TODO: Remove @filename and @flags; it should be possible to specify a whole 359 * BDS tree just by specifying the @options QDict (or @reference, 360 * alternatively). At the time of adding this function, this is not possible, 361 * though, so callers of this function have to be able to specify @filename and 362 * @flags. 363 */ 364 BlockBackend *blk_new_open(const char *filename, const char *reference, 365 QDict *options, int flags, Error **errp) 366 { 367 BlockBackend *blk; 368 BlockDriverState *bs; 369 uint64_t perm = 0; 370 371 /* blk_new_open() is mainly used in .bdrv_create implementations and the 372 * tools where sharing isn't a concern because the BDS stays private, so we 373 * just request permission according to the flags. 374 * 375 * The exceptions are xen_disk and blockdev_init(); in these cases, the 376 * caller of blk_new_open() doesn't make use of the permissions, but they 377 * shouldn't hurt either. We can still share everything here because the 378 * guest devices will add their own blockers if they can't share. */ 379 if ((flags & BDRV_O_NO_IO) == 0) { 380 perm |= BLK_PERM_CONSISTENT_READ; 381 if (flags & BDRV_O_RDWR) { 382 perm |= BLK_PERM_WRITE; 383 } 384 } 385 if (flags & BDRV_O_RESIZE) { 386 perm |= BLK_PERM_RESIZE; 387 } 388 389 blk = blk_new(qemu_get_aio_context(), perm, BLK_PERM_ALL); 390 bs = bdrv_open(filename, reference, options, flags, errp); 391 if (!bs) { 392 blk_unref(blk); 393 return NULL; 394 } 395 396 blk->root = bdrv_root_attach_child(bs, "root", &child_root, blk->ctx, 397 perm, BLK_PERM_ALL, blk, errp); 398 if (!blk->root) { 399 blk_unref(blk); 400 return NULL; 401 } 402 403 return blk; 404 } 405 406 static void blk_delete(BlockBackend *blk) 407 { 408 assert(!blk->refcnt); 409 assert(!blk->name); 410 assert(!blk->dev); 411 if (blk->public.throttle_group_member.throttle_state) { 412 blk_io_limits_disable(blk); 413 } 414 if (blk->root) { 415 blk_remove_bs(blk); 416 } 417 if (blk->vmsh) { 418 qemu_del_vm_change_state_handler(blk->vmsh); 419 blk->vmsh = NULL; 420 } 421 assert(QLIST_EMPTY(&blk->remove_bs_notifiers.notifiers)); 422 assert(QLIST_EMPTY(&blk->insert_bs_notifiers.notifiers)); 423 assert(QLIST_EMPTY(&blk->aio_notifiers)); 424 QTAILQ_REMOVE(&block_backends, blk, link); 425 drive_info_del(blk->legacy_dinfo); 426 block_acct_cleanup(&blk->stats); 427 g_free(blk); 428 } 429 430 static void drive_info_del(DriveInfo *dinfo) 431 { 432 if (!dinfo) { 433 return; 434 } 435 qemu_opts_del(dinfo->opts); 436 g_free(dinfo); 437 } 438 439 int blk_get_refcnt(BlockBackend *blk) 440 { 441 return blk ? blk->refcnt : 0; 442 } 443 444 /* 445 * Increment @blk's reference count. 446 * @blk must not be null. 447 */ 448 void blk_ref(BlockBackend *blk) 449 { 450 assert(blk->refcnt > 0); 451 blk->refcnt++; 452 } 453 454 /* 455 * Decrement @blk's reference count. 456 * If this drops it to zero, destroy @blk. 457 * For convenience, do nothing if @blk is null. 458 */ 459 void blk_unref(BlockBackend *blk) 460 { 461 if (blk) { 462 assert(blk->refcnt > 0); 463 if (blk->refcnt > 1) { 464 blk->refcnt--; 465 } else { 466 blk_drain(blk); 467 /* blk_drain() cannot resurrect blk, nobody held a reference */ 468 assert(blk->refcnt == 1); 469 blk->refcnt = 0; 470 blk_delete(blk); 471 } 472 } 473 } 474 475 /* 476 * Behaves similarly to blk_next() but iterates over all BlockBackends, even the 477 * ones which are hidden (i.e. are not referenced by the monitor). 478 */ 479 BlockBackend *blk_all_next(BlockBackend *blk) 480 { 481 return blk ? QTAILQ_NEXT(blk, link) 482 : QTAILQ_FIRST(&block_backends); 483 } 484 485 void blk_remove_all_bs(void) 486 { 487 BlockBackend *blk = NULL; 488 489 while ((blk = blk_all_next(blk)) != NULL) { 490 AioContext *ctx = blk_get_aio_context(blk); 491 492 aio_context_acquire(ctx); 493 if (blk->root) { 494 blk_remove_bs(blk); 495 } 496 aio_context_release(ctx); 497 } 498 } 499 500 /* 501 * Return the monitor-owned BlockBackend after @blk. 502 * If @blk is null, return the first one. 503 * Else, return @blk's next sibling, which may be null. 504 * 505 * To iterate over all BlockBackends, do 506 * for (blk = blk_next(NULL); blk; blk = blk_next(blk)) { 507 * ... 508 * } 509 */ 510 BlockBackend *blk_next(BlockBackend *blk) 511 { 512 return blk ? QTAILQ_NEXT(blk, monitor_link) 513 : QTAILQ_FIRST(&monitor_block_backends); 514 } 515 516 /* Iterates over all top-level BlockDriverStates, i.e. BDSs that are owned by 517 * the monitor or attached to a BlockBackend */ 518 BlockDriverState *bdrv_next(BdrvNextIterator *it) 519 { 520 BlockDriverState *bs, *old_bs; 521 522 /* Must be called from the main loop */ 523 assert(qemu_get_current_aio_context() == qemu_get_aio_context()); 524 525 /* First, return all root nodes of BlockBackends. In order to avoid 526 * returning a BDS twice when multiple BBs refer to it, we only return it 527 * if the BB is the first one in the parent list of the BDS. */ 528 if (it->phase == BDRV_NEXT_BACKEND_ROOTS) { 529 BlockBackend *old_blk = it->blk; 530 531 old_bs = old_blk ? blk_bs(old_blk) : NULL; 532 533 do { 534 it->blk = blk_all_next(it->blk); 535 bs = it->blk ? blk_bs(it->blk) : NULL; 536 } while (it->blk && (bs == NULL || bdrv_first_blk(bs) != it->blk)); 537 538 if (it->blk) { 539 blk_ref(it->blk); 540 } 541 blk_unref(old_blk); 542 543 if (bs) { 544 bdrv_ref(bs); 545 bdrv_unref(old_bs); 546 return bs; 547 } 548 it->phase = BDRV_NEXT_MONITOR_OWNED; 549 } else { 550 old_bs = it->bs; 551 } 552 553 /* Then return the monitor-owned BDSes without a BB attached. Ignore all 554 * BDSes that are attached to a BlockBackend here; they have been handled 555 * by the above block already */ 556 do { 557 it->bs = bdrv_next_monitor_owned(it->bs); 558 bs = it->bs; 559 } while (bs && bdrv_has_blk(bs)); 560 561 if (bs) { 562 bdrv_ref(bs); 563 } 564 bdrv_unref(old_bs); 565 566 return bs; 567 } 568 569 static void bdrv_next_reset(BdrvNextIterator *it) 570 { 571 *it = (BdrvNextIterator) { 572 .phase = BDRV_NEXT_BACKEND_ROOTS, 573 }; 574 } 575 576 BlockDriverState *bdrv_first(BdrvNextIterator *it) 577 { 578 bdrv_next_reset(it); 579 return bdrv_next(it); 580 } 581 582 /* Must be called when aborting a bdrv_next() iteration before 583 * bdrv_next() returns NULL */ 584 void bdrv_next_cleanup(BdrvNextIterator *it) 585 { 586 /* Must be called from the main loop */ 587 assert(qemu_get_current_aio_context() == qemu_get_aio_context()); 588 589 if (it->phase == BDRV_NEXT_BACKEND_ROOTS) { 590 if (it->blk) { 591 bdrv_unref(blk_bs(it->blk)); 592 blk_unref(it->blk); 593 } 594 } else { 595 bdrv_unref(it->bs); 596 } 597 598 bdrv_next_reset(it); 599 } 600 601 /* 602 * Add a BlockBackend into the list of backends referenced by the monitor, with 603 * the given @name acting as the handle for the monitor. 604 * Strictly for use by blockdev.c. 605 * 606 * @name must not be null or empty. 607 * 608 * Returns true on success and false on failure. In the latter case, an Error 609 * object is returned through @errp. 610 */ 611 bool monitor_add_blk(BlockBackend *blk, const char *name, Error **errp) 612 { 613 assert(!blk->name); 614 assert(name && name[0]); 615 616 if (!id_wellformed(name)) { 617 error_setg(errp, "Invalid device name"); 618 return false; 619 } 620 if (blk_by_name(name)) { 621 error_setg(errp, "Device with id '%s' already exists", name); 622 return false; 623 } 624 if (bdrv_find_node(name)) { 625 error_setg(errp, 626 "Device name '%s' conflicts with an existing node name", 627 name); 628 return false; 629 } 630 631 blk->name = g_strdup(name); 632 QTAILQ_INSERT_TAIL(&monitor_block_backends, blk, monitor_link); 633 return true; 634 } 635 636 /* 637 * Remove a BlockBackend from the list of backends referenced by the monitor. 638 * Strictly for use by blockdev.c. 639 */ 640 void monitor_remove_blk(BlockBackend *blk) 641 { 642 if (!blk->name) { 643 return; 644 } 645 646 QTAILQ_REMOVE(&monitor_block_backends, blk, monitor_link); 647 g_free(blk->name); 648 blk->name = NULL; 649 } 650 651 /* 652 * Return @blk's name, a non-null string. 653 * Returns an empty string iff @blk is not referenced by the monitor. 654 */ 655 const char *blk_name(const BlockBackend *blk) 656 { 657 return blk->name ?: ""; 658 } 659 660 /* 661 * Return the BlockBackend with name @name if it exists, else null. 662 * @name must not be null. 663 */ 664 BlockBackend *blk_by_name(const char *name) 665 { 666 BlockBackend *blk = NULL; 667 668 assert(name); 669 while ((blk = blk_next(blk)) != NULL) { 670 if (!strcmp(name, blk->name)) { 671 return blk; 672 } 673 } 674 return NULL; 675 } 676 677 /* 678 * Return the BlockDriverState attached to @blk if any, else null. 679 */ 680 BlockDriverState *blk_bs(BlockBackend *blk) 681 { 682 return blk->root ? blk->root->bs : NULL; 683 } 684 685 static BlockBackend *bdrv_first_blk(BlockDriverState *bs) 686 { 687 BdrvChild *child; 688 QLIST_FOREACH(child, &bs->parents, next_parent) { 689 if (child->role == &child_root) { 690 return child->opaque; 691 } 692 } 693 694 return NULL; 695 } 696 697 /* 698 * Returns true if @bs has an associated BlockBackend. 699 */ 700 bool bdrv_has_blk(BlockDriverState *bs) 701 { 702 return bdrv_first_blk(bs) != NULL; 703 } 704 705 /* 706 * Returns true if @bs has only BlockBackends as parents. 707 */ 708 bool bdrv_is_root_node(BlockDriverState *bs) 709 { 710 BdrvChild *c; 711 712 QLIST_FOREACH(c, &bs->parents, next_parent) { 713 if (c->role != &child_root) { 714 return false; 715 } 716 } 717 718 return true; 719 } 720 721 /* 722 * Return @blk's DriveInfo if any, else null. 723 */ 724 DriveInfo *blk_legacy_dinfo(BlockBackend *blk) 725 { 726 return blk->legacy_dinfo; 727 } 728 729 /* 730 * Set @blk's DriveInfo to @dinfo, and return it. 731 * @blk must not have a DriveInfo set already. 732 * No other BlockBackend may have the same DriveInfo set. 733 */ 734 DriveInfo *blk_set_legacy_dinfo(BlockBackend *blk, DriveInfo *dinfo) 735 { 736 assert(!blk->legacy_dinfo); 737 return blk->legacy_dinfo = dinfo; 738 } 739 740 /* 741 * Return the BlockBackend with DriveInfo @dinfo. 742 * It must exist. 743 */ 744 BlockBackend *blk_by_legacy_dinfo(DriveInfo *dinfo) 745 { 746 BlockBackend *blk = NULL; 747 748 while ((blk = blk_next(blk)) != NULL) { 749 if (blk->legacy_dinfo == dinfo) { 750 return blk; 751 } 752 } 753 abort(); 754 } 755 756 /* 757 * Returns a pointer to the publicly accessible fields of @blk. 758 */ 759 BlockBackendPublic *blk_get_public(BlockBackend *blk) 760 { 761 return &blk->public; 762 } 763 764 /* 765 * Returns a BlockBackend given the associated @public fields. 766 */ 767 BlockBackend *blk_by_public(BlockBackendPublic *public) 768 { 769 return container_of(public, BlockBackend, public); 770 } 771 772 /* 773 * Disassociates the currently associated BlockDriverState from @blk. 774 */ 775 void blk_remove_bs(BlockBackend *blk) 776 { 777 ThrottleGroupMember *tgm = &blk->public.throttle_group_member; 778 BlockDriverState *bs; 779 780 notifier_list_notify(&blk->remove_bs_notifiers, blk); 781 if (tgm->throttle_state) { 782 bs = blk_bs(blk); 783 bdrv_drained_begin(bs); 784 throttle_group_detach_aio_context(tgm); 785 throttle_group_attach_aio_context(tgm, qemu_get_aio_context()); 786 bdrv_drained_end(bs); 787 } 788 789 blk_update_root_state(blk); 790 791 /* bdrv_root_unref_child() will cause blk->root to become stale and may 792 * switch to a completion coroutine later on. Let's drain all I/O here 793 * to avoid that and a potential QEMU crash. 794 */ 795 blk_drain(blk); 796 bdrv_root_unref_child(blk->root); 797 blk->root = NULL; 798 } 799 800 /* 801 * Associates a new BlockDriverState with @blk. 802 */ 803 int blk_insert_bs(BlockBackend *blk, BlockDriverState *bs, Error **errp) 804 { 805 ThrottleGroupMember *tgm = &blk->public.throttle_group_member; 806 bdrv_ref(bs); 807 blk->root = bdrv_root_attach_child(bs, "root", &child_root, blk->ctx, 808 blk->perm, blk->shared_perm, blk, errp); 809 if (blk->root == NULL) { 810 return -EPERM; 811 } 812 813 notifier_list_notify(&blk->insert_bs_notifiers, blk); 814 if (tgm->throttle_state) { 815 throttle_group_detach_aio_context(tgm); 816 throttle_group_attach_aio_context(tgm, bdrv_get_aio_context(bs)); 817 } 818 819 return 0; 820 } 821 822 /* 823 * Sets the permission bitmasks that the user of the BlockBackend needs. 824 */ 825 int blk_set_perm(BlockBackend *blk, uint64_t perm, uint64_t shared_perm, 826 Error **errp) 827 { 828 int ret; 829 830 if (blk->root && !blk->disable_perm) { 831 ret = bdrv_child_try_set_perm(blk->root, perm, shared_perm, errp); 832 if (ret < 0) { 833 return ret; 834 } 835 } 836 837 blk->perm = perm; 838 blk->shared_perm = shared_perm; 839 840 return 0; 841 } 842 843 void blk_get_perm(BlockBackend *blk, uint64_t *perm, uint64_t *shared_perm) 844 { 845 *perm = blk->perm; 846 *shared_perm = blk->shared_perm; 847 } 848 849 /* 850 * Attach device model @dev to @blk. 851 * Return 0 on success, -EBUSY when a device model is attached already. 852 */ 853 int blk_attach_dev(BlockBackend *blk, DeviceState *dev) 854 { 855 if (blk->dev) { 856 return -EBUSY; 857 } 858 859 /* While migration is still incoming, we don't need to apply the 860 * permissions of guest device BlockBackends. We might still have a block 861 * job or NBD server writing to the image for storage migration. */ 862 if (runstate_check(RUN_STATE_INMIGRATE)) { 863 blk->disable_perm = true; 864 } 865 866 blk_ref(blk); 867 blk->dev = dev; 868 blk_iostatus_reset(blk); 869 870 return 0; 871 } 872 873 /* 874 * Detach device model @dev from @blk. 875 * @dev must be currently attached to @blk. 876 */ 877 void blk_detach_dev(BlockBackend *blk, DeviceState *dev) 878 { 879 assert(blk->dev == dev); 880 blk->dev = NULL; 881 blk->dev_ops = NULL; 882 blk->dev_opaque = NULL; 883 blk->guest_block_size = 512; 884 blk_set_perm(blk, 0, BLK_PERM_ALL, &error_abort); 885 blk_unref(blk); 886 } 887 888 /* 889 * Return the device model attached to @blk if any, else null. 890 */ 891 DeviceState *blk_get_attached_dev(BlockBackend *blk) 892 { 893 return blk->dev; 894 } 895 896 /* Return the qdev ID, or if no ID is assigned the QOM path, of the block 897 * device attached to the BlockBackend. */ 898 char *blk_get_attached_dev_id(BlockBackend *blk) 899 { 900 DeviceState *dev = blk->dev; 901 902 if (!dev) { 903 return g_strdup(""); 904 } else if (dev->id) { 905 return g_strdup(dev->id); 906 } 907 908 return object_get_canonical_path(OBJECT(dev)) ?: g_strdup(""); 909 } 910 911 /* 912 * Return the BlockBackend which has the device model @dev attached if it 913 * exists, else null. 914 * 915 * @dev must not be null. 916 */ 917 BlockBackend *blk_by_dev(void *dev) 918 { 919 BlockBackend *blk = NULL; 920 921 assert(dev != NULL); 922 while ((blk = blk_all_next(blk)) != NULL) { 923 if (blk->dev == dev) { 924 return blk; 925 } 926 } 927 return NULL; 928 } 929 930 /* 931 * Set @blk's device model callbacks to @ops. 932 * @opaque is the opaque argument to pass to the callbacks. 933 * This is for use by device models. 934 */ 935 void blk_set_dev_ops(BlockBackend *blk, const BlockDevOps *ops, 936 void *opaque) 937 { 938 blk->dev_ops = ops; 939 blk->dev_opaque = opaque; 940 941 /* Are we currently quiesced? Should we enforce this right now? */ 942 if (blk->quiesce_counter && ops->drained_begin) { 943 ops->drained_begin(opaque); 944 } 945 } 946 947 /* 948 * Notify @blk's attached device model of media change. 949 * 950 * If @load is true, notify of media load. This action can fail, meaning that 951 * the medium cannot be loaded. @errp is set then. 952 * 953 * If @load is false, notify of media eject. This can never fail. 954 * 955 * Also send DEVICE_TRAY_MOVED events as appropriate. 956 */ 957 void blk_dev_change_media_cb(BlockBackend *blk, bool load, Error **errp) 958 { 959 if (blk->dev_ops && blk->dev_ops->change_media_cb) { 960 bool tray_was_open, tray_is_open; 961 Error *local_err = NULL; 962 963 tray_was_open = blk_dev_is_tray_open(blk); 964 blk->dev_ops->change_media_cb(blk->dev_opaque, load, &local_err); 965 if (local_err) { 966 assert(load == true); 967 error_propagate(errp, local_err); 968 return; 969 } 970 tray_is_open = blk_dev_is_tray_open(blk); 971 972 if (tray_was_open != tray_is_open) { 973 char *id = blk_get_attached_dev_id(blk); 974 qapi_event_send_device_tray_moved(blk_name(blk), id, tray_is_open); 975 g_free(id); 976 } 977 } 978 } 979 980 static void blk_root_change_media(BdrvChild *child, bool load) 981 { 982 blk_dev_change_media_cb(child->opaque, load, NULL); 983 } 984 985 /* 986 * Does @blk's attached device model have removable media? 987 * %true if no device model is attached. 988 */ 989 bool blk_dev_has_removable_media(BlockBackend *blk) 990 { 991 return !blk->dev || (blk->dev_ops && blk->dev_ops->change_media_cb); 992 } 993 994 /* 995 * Does @blk's attached device model have a tray? 996 */ 997 bool blk_dev_has_tray(BlockBackend *blk) 998 { 999 return blk->dev_ops && blk->dev_ops->is_tray_open; 1000 } 1001 1002 /* 1003 * Notify @blk's attached device model of a media eject request. 1004 * If @force is true, the medium is about to be yanked out forcefully. 1005 */ 1006 void blk_dev_eject_request(BlockBackend *blk, bool force) 1007 { 1008 if (blk->dev_ops && blk->dev_ops->eject_request_cb) { 1009 blk->dev_ops->eject_request_cb(blk->dev_opaque, force); 1010 } 1011 } 1012 1013 /* 1014 * Does @blk's attached device model have a tray, and is it open? 1015 */ 1016 bool blk_dev_is_tray_open(BlockBackend *blk) 1017 { 1018 if (blk_dev_has_tray(blk)) { 1019 return blk->dev_ops->is_tray_open(blk->dev_opaque); 1020 } 1021 return false; 1022 } 1023 1024 /* 1025 * Does @blk's attached device model have the medium locked? 1026 * %false if the device model has no such lock. 1027 */ 1028 bool blk_dev_is_medium_locked(BlockBackend *blk) 1029 { 1030 if (blk->dev_ops && blk->dev_ops->is_medium_locked) { 1031 return blk->dev_ops->is_medium_locked(blk->dev_opaque); 1032 } 1033 return false; 1034 } 1035 1036 /* 1037 * Notify @blk's attached device model of a backend size change. 1038 */ 1039 static void blk_root_resize(BdrvChild *child) 1040 { 1041 BlockBackend *blk = child->opaque; 1042 1043 if (blk->dev_ops && blk->dev_ops->resize_cb) { 1044 blk->dev_ops->resize_cb(blk->dev_opaque); 1045 } 1046 } 1047 1048 void blk_iostatus_enable(BlockBackend *blk) 1049 { 1050 blk->iostatus_enabled = true; 1051 blk->iostatus = BLOCK_DEVICE_IO_STATUS_OK; 1052 } 1053 1054 /* The I/O status is only enabled if the drive explicitly 1055 * enables it _and_ the VM is configured to stop on errors */ 1056 bool blk_iostatus_is_enabled(const BlockBackend *blk) 1057 { 1058 return (blk->iostatus_enabled && 1059 (blk->on_write_error == BLOCKDEV_ON_ERROR_ENOSPC || 1060 blk->on_write_error == BLOCKDEV_ON_ERROR_STOP || 1061 blk->on_read_error == BLOCKDEV_ON_ERROR_STOP)); 1062 } 1063 1064 BlockDeviceIoStatus blk_iostatus(const BlockBackend *blk) 1065 { 1066 return blk->iostatus; 1067 } 1068 1069 void blk_iostatus_disable(BlockBackend *blk) 1070 { 1071 blk->iostatus_enabled = false; 1072 } 1073 1074 void blk_iostatus_reset(BlockBackend *blk) 1075 { 1076 if (blk_iostatus_is_enabled(blk)) { 1077 blk->iostatus = BLOCK_DEVICE_IO_STATUS_OK; 1078 } 1079 } 1080 1081 void blk_iostatus_set_err(BlockBackend *blk, int error) 1082 { 1083 assert(blk_iostatus_is_enabled(blk)); 1084 if (blk->iostatus == BLOCK_DEVICE_IO_STATUS_OK) { 1085 blk->iostatus = error == ENOSPC ? BLOCK_DEVICE_IO_STATUS_NOSPACE : 1086 BLOCK_DEVICE_IO_STATUS_FAILED; 1087 } 1088 } 1089 1090 void blk_set_allow_write_beyond_eof(BlockBackend *blk, bool allow) 1091 { 1092 blk->allow_write_beyond_eof = allow; 1093 } 1094 1095 void blk_set_allow_aio_context_change(BlockBackend *blk, bool allow) 1096 { 1097 blk->allow_aio_context_change = allow; 1098 } 1099 1100 static int blk_check_byte_request(BlockBackend *blk, int64_t offset, 1101 size_t size) 1102 { 1103 int64_t len; 1104 1105 if (size > INT_MAX) { 1106 return -EIO; 1107 } 1108 1109 if (!blk_is_available(blk)) { 1110 return -ENOMEDIUM; 1111 } 1112 1113 if (offset < 0) { 1114 return -EIO; 1115 } 1116 1117 if (!blk->allow_write_beyond_eof) { 1118 len = blk_getlength(blk); 1119 if (len < 0) { 1120 return len; 1121 } 1122 1123 if (offset > len || len - offset < size) { 1124 return -EIO; 1125 } 1126 } 1127 1128 return 0; 1129 } 1130 1131 int coroutine_fn blk_co_preadv(BlockBackend *blk, int64_t offset, 1132 unsigned int bytes, QEMUIOVector *qiov, 1133 BdrvRequestFlags flags) 1134 { 1135 int ret; 1136 BlockDriverState *bs = blk_bs(blk); 1137 1138 trace_blk_co_preadv(blk, bs, offset, bytes, flags); 1139 1140 ret = blk_check_byte_request(blk, offset, bytes); 1141 if (ret < 0) { 1142 return ret; 1143 } 1144 1145 bdrv_inc_in_flight(bs); 1146 1147 /* throttling disk I/O */ 1148 if (blk->public.throttle_group_member.throttle_state) { 1149 throttle_group_co_io_limits_intercept(&blk->public.throttle_group_member, 1150 bytes, false); 1151 } 1152 1153 ret = bdrv_co_preadv(blk->root, offset, bytes, qiov, flags); 1154 bdrv_dec_in_flight(bs); 1155 return ret; 1156 } 1157 1158 int coroutine_fn blk_co_pwritev(BlockBackend *blk, int64_t offset, 1159 unsigned int bytes, QEMUIOVector *qiov, 1160 BdrvRequestFlags flags) 1161 { 1162 int ret; 1163 BlockDriverState *bs = blk_bs(blk); 1164 1165 trace_blk_co_pwritev(blk, bs, offset, bytes, flags); 1166 1167 ret = blk_check_byte_request(blk, offset, bytes); 1168 if (ret < 0) { 1169 return ret; 1170 } 1171 1172 bdrv_inc_in_flight(bs); 1173 /* throttling disk I/O */ 1174 if (blk->public.throttle_group_member.throttle_state) { 1175 throttle_group_co_io_limits_intercept(&blk->public.throttle_group_member, 1176 bytes, true); 1177 } 1178 1179 if (!blk->enable_write_cache) { 1180 flags |= BDRV_REQ_FUA; 1181 } 1182 1183 ret = bdrv_co_pwritev(blk->root, offset, bytes, qiov, flags); 1184 bdrv_dec_in_flight(bs); 1185 return ret; 1186 } 1187 1188 typedef struct BlkRwCo { 1189 BlockBackend *blk; 1190 int64_t offset; 1191 void *iobuf; 1192 int ret; 1193 BdrvRequestFlags flags; 1194 } BlkRwCo; 1195 1196 static void blk_read_entry(void *opaque) 1197 { 1198 BlkRwCo *rwco = opaque; 1199 QEMUIOVector *qiov = rwco->iobuf; 1200 1201 rwco->ret = blk_co_preadv(rwco->blk, rwco->offset, qiov->size, 1202 qiov, rwco->flags); 1203 aio_wait_kick(); 1204 } 1205 1206 static void blk_write_entry(void *opaque) 1207 { 1208 BlkRwCo *rwco = opaque; 1209 QEMUIOVector *qiov = rwco->iobuf; 1210 1211 rwco->ret = blk_co_pwritev(rwco->blk, rwco->offset, qiov->size, 1212 qiov, rwco->flags); 1213 aio_wait_kick(); 1214 } 1215 1216 static int blk_prw(BlockBackend *blk, int64_t offset, uint8_t *buf, 1217 int64_t bytes, CoroutineEntry co_entry, 1218 BdrvRequestFlags flags) 1219 { 1220 QEMUIOVector qiov = QEMU_IOVEC_INIT_BUF(qiov, buf, bytes); 1221 BlkRwCo rwco = { 1222 .blk = blk, 1223 .offset = offset, 1224 .iobuf = &qiov, 1225 .flags = flags, 1226 .ret = NOT_DONE, 1227 }; 1228 1229 if (qemu_in_coroutine()) { 1230 /* Fast-path if already in coroutine context */ 1231 co_entry(&rwco); 1232 } else { 1233 Coroutine *co = qemu_coroutine_create(co_entry, &rwco); 1234 bdrv_coroutine_enter(blk_bs(blk), co); 1235 BDRV_POLL_WHILE(blk_bs(blk), rwco.ret == NOT_DONE); 1236 } 1237 1238 return rwco.ret; 1239 } 1240 1241 int blk_pread_unthrottled(BlockBackend *blk, int64_t offset, uint8_t *buf, 1242 int count) 1243 { 1244 int ret; 1245 1246 ret = blk_check_byte_request(blk, offset, count); 1247 if (ret < 0) { 1248 return ret; 1249 } 1250 1251 blk_root_drained_begin(blk->root); 1252 ret = blk_pread(blk, offset, buf, count); 1253 blk_root_drained_end(blk->root, NULL); 1254 return ret; 1255 } 1256 1257 int blk_pwrite_zeroes(BlockBackend *blk, int64_t offset, 1258 int bytes, BdrvRequestFlags flags) 1259 { 1260 return blk_prw(blk, offset, NULL, bytes, blk_write_entry, 1261 flags | BDRV_REQ_ZERO_WRITE); 1262 } 1263 1264 int blk_make_zero(BlockBackend *blk, BdrvRequestFlags flags) 1265 { 1266 return bdrv_make_zero(blk->root, flags); 1267 } 1268 1269 void blk_inc_in_flight(BlockBackend *blk) 1270 { 1271 atomic_inc(&blk->in_flight); 1272 } 1273 1274 void blk_dec_in_flight(BlockBackend *blk) 1275 { 1276 atomic_dec(&blk->in_flight); 1277 aio_wait_kick(); 1278 } 1279 1280 static void error_callback_bh(void *opaque) 1281 { 1282 struct BlockBackendAIOCB *acb = opaque; 1283 1284 blk_dec_in_flight(acb->blk); 1285 acb->common.cb(acb->common.opaque, acb->ret); 1286 qemu_aio_unref(acb); 1287 } 1288 1289 BlockAIOCB *blk_abort_aio_request(BlockBackend *blk, 1290 BlockCompletionFunc *cb, 1291 void *opaque, int ret) 1292 { 1293 struct BlockBackendAIOCB *acb; 1294 1295 blk_inc_in_flight(blk); 1296 acb = blk_aio_get(&block_backend_aiocb_info, blk, cb, opaque); 1297 acb->blk = blk; 1298 acb->ret = ret; 1299 1300 aio_bh_schedule_oneshot(blk_get_aio_context(blk), error_callback_bh, acb); 1301 return &acb->common; 1302 } 1303 1304 typedef struct BlkAioEmAIOCB { 1305 BlockAIOCB common; 1306 BlkRwCo rwco; 1307 int bytes; 1308 bool has_returned; 1309 } BlkAioEmAIOCB; 1310 1311 static const AIOCBInfo blk_aio_em_aiocb_info = { 1312 .aiocb_size = sizeof(BlkAioEmAIOCB), 1313 }; 1314 1315 static void blk_aio_complete(BlkAioEmAIOCB *acb) 1316 { 1317 if (acb->has_returned) { 1318 acb->common.cb(acb->common.opaque, acb->rwco.ret); 1319 blk_dec_in_flight(acb->rwco.blk); 1320 qemu_aio_unref(acb); 1321 } 1322 } 1323 1324 static void blk_aio_complete_bh(void *opaque) 1325 { 1326 BlkAioEmAIOCB *acb = opaque; 1327 assert(acb->has_returned); 1328 blk_aio_complete(acb); 1329 } 1330 1331 static BlockAIOCB *blk_aio_prwv(BlockBackend *blk, int64_t offset, int bytes, 1332 void *iobuf, CoroutineEntry co_entry, 1333 BdrvRequestFlags flags, 1334 BlockCompletionFunc *cb, void *opaque) 1335 { 1336 BlkAioEmAIOCB *acb; 1337 Coroutine *co; 1338 1339 blk_inc_in_flight(blk); 1340 acb = blk_aio_get(&blk_aio_em_aiocb_info, blk, cb, opaque); 1341 acb->rwco = (BlkRwCo) { 1342 .blk = blk, 1343 .offset = offset, 1344 .iobuf = iobuf, 1345 .flags = flags, 1346 .ret = NOT_DONE, 1347 }; 1348 acb->bytes = bytes; 1349 acb->has_returned = false; 1350 1351 co = qemu_coroutine_create(co_entry, acb); 1352 bdrv_coroutine_enter(blk_bs(blk), co); 1353 1354 acb->has_returned = true; 1355 if (acb->rwco.ret != NOT_DONE) { 1356 aio_bh_schedule_oneshot(blk_get_aio_context(blk), 1357 blk_aio_complete_bh, acb); 1358 } 1359 1360 return &acb->common; 1361 } 1362 1363 static void blk_aio_read_entry(void *opaque) 1364 { 1365 BlkAioEmAIOCB *acb = opaque; 1366 BlkRwCo *rwco = &acb->rwco; 1367 QEMUIOVector *qiov = rwco->iobuf; 1368 1369 assert(qiov->size == acb->bytes); 1370 rwco->ret = blk_co_preadv(rwco->blk, rwco->offset, acb->bytes, 1371 qiov, rwco->flags); 1372 blk_aio_complete(acb); 1373 } 1374 1375 static void blk_aio_write_entry(void *opaque) 1376 { 1377 BlkAioEmAIOCB *acb = opaque; 1378 BlkRwCo *rwco = &acb->rwco; 1379 QEMUIOVector *qiov = rwco->iobuf; 1380 1381 assert(!qiov || qiov->size == acb->bytes); 1382 rwco->ret = blk_co_pwritev(rwco->blk, rwco->offset, acb->bytes, 1383 qiov, rwco->flags); 1384 blk_aio_complete(acb); 1385 } 1386 1387 BlockAIOCB *blk_aio_pwrite_zeroes(BlockBackend *blk, int64_t offset, 1388 int count, BdrvRequestFlags flags, 1389 BlockCompletionFunc *cb, void *opaque) 1390 { 1391 return blk_aio_prwv(blk, offset, count, NULL, blk_aio_write_entry, 1392 flags | BDRV_REQ_ZERO_WRITE, cb, opaque); 1393 } 1394 1395 int blk_pread(BlockBackend *blk, int64_t offset, void *buf, int count) 1396 { 1397 int ret = blk_prw(blk, offset, buf, count, blk_read_entry, 0); 1398 if (ret < 0) { 1399 return ret; 1400 } 1401 return count; 1402 } 1403 1404 int blk_pwrite(BlockBackend *blk, int64_t offset, const void *buf, int count, 1405 BdrvRequestFlags flags) 1406 { 1407 int ret = blk_prw(blk, offset, (void *) buf, count, blk_write_entry, 1408 flags); 1409 if (ret < 0) { 1410 return ret; 1411 } 1412 return count; 1413 } 1414 1415 int64_t blk_getlength(BlockBackend *blk) 1416 { 1417 if (!blk_is_available(blk)) { 1418 return -ENOMEDIUM; 1419 } 1420 1421 return bdrv_getlength(blk_bs(blk)); 1422 } 1423 1424 void blk_get_geometry(BlockBackend *blk, uint64_t *nb_sectors_ptr) 1425 { 1426 if (!blk_bs(blk)) { 1427 *nb_sectors_ptr = 0; 1428 } else { 1429 bdrv_get_geometry(blk_bs(blk), nb_sectors_ptr); 1430 } 1431 } 1432 1433 int64_t blk_nb_sectors(BlockBackend *blk) 1434 { 1435 if (!blk_is_available(blk)) { 1436 return -ENOMEDIUM; 1437 } 1438 1439 return bdrv_nb_sectors(blk_bs(blk)); 1440 } 1441 1442 BlockAIOCB *blk_aio_preadv(BlockBackend *blk, int64_t offset, 1443 QEMUIOVector *qiov, BdrvRequestFlags flags, 1444 BlockCompletionFunc *cb, void *opaque) 1445 { 1446 return blk_aio_prwv(blk, offset, qiov->size, qiov, 1447 blk_aio_read_entry, flags, cb, opaque); 1448 } 1449 1450 BlockAIOCB *blk_aio_pwritev(BlockBackend *blk, int64_t offset, 1451 QEMUIOVector *qiov, BdrvRequestFlags flags, 1452 BlockCompletionFunc *cb, void *opaque) 1453 { 1454 return blk_aio_prwv(blk, offset, qiov->size, qiov, 1455 blk_aio_write_entry, flags, cb, opaque); 1456 } 1457 1458 static void blk_aio_flush_entry(void *opaque) 1459 { 1460 BlkAioEmAIOCB *acb = opaque; 1461 BlkRwCo *rwco = &acb->rwco; 1462 1463 rwco->ret = blk_co_flush(rwco->blk); 1464 blk_aio_complete(acb); 1465 } 1466 1467 BlockAIOCB *blk_aio_flush(BlockBackend *blk, 1468 BlockCompletionFunc *cb, void *opaque) 1469 { 1470 return blk_aio_prwv(blk, 0, 0, NULL, blk_aio_flush_entry, 0, cb, opaque); 1471 } 1472 1473 static void blk_aio_pdiscard_entry(void *opaque) 1474 { 1475 BlkAioEmAIOCB *acb = opaque; 1476 BlkRwCo *rwco = &acb->rwco; 1477 1478 rwco->ret = blk_co_pdiscard(rwco->blk, rwco->offset, acb->bytes); 1479 blk_aio_complete(acb); 1480 } 1481 1482 BlockAIOCB *blk_aio_pdiscard(BlockBackend *blk, 1483 int64_t offset, int bytes, 1484 BlockCompletionFunc *cb, void *opaque) 1485 { 1486 return blk_aio_prwv(blk, offset, bytes, NULL, blk_aio_pdiscard_entry, 0, 1487 cb, opaque); 1488 } 1489 1490 void blk_aio_cancel(BlockAIOCB *acb) 1491 { 1492 bdrv_aio_cancel(acb); 1493 } 1494 1495 void blk_aio_cancel_async(BlockAIOCB *acb) 1496 { 1497 bdrv_aio_cancel_async(acb); 1498 } 1499 1500 int blk_co_ioctl(BlockBackend *blk, unsigned long int req, void *buf) 1501 { 1502 if (!blk_is_available(blk)) { 1503 return -ENOMEDIUM; 1504 } 1505 1506 return bdrv_co_ioctl(blk_bs(blk), req, buf); 1507 } 1508 1509 static void blk_ioctl_entry(void *opaque) 1510 { 1511 BlkRwCo *rwco = opaque; 1512 QEMUIOVector *qiov = rwco->iobuf; 1513 1514 rwco->ret = blk_co_ioctl(rwco->blk, rwco->offset, 1515 qiov->iov[0].iov_base); 1516 aio_wait_kick(); 1517 } 1518 1519 int blk_ioctl(BlockBackend *blk, unsigned long int req, void *buf) 1520 { 1521 return blk_prw(blk, req, buf, 0, blk_ioctl_entry, 0); 1522 } 1523 1524 static void blk_aio_ioctl_entry(void *opaque) 1525 { 1526 BlkAioEmAIOCB *acb = opaque; 1527 BlkRwCo *rwco = &acb->rwco; 1528 1529 rwco->ret = blk_co_ioctl(rwco->blk, rwco->offset, rwco->iobuf); 1530 1531 blk_aio_complete(acb); 1532 } 1533 1534 BlockAIOCB *blk_aio_ioctl(BlockBackend *blk, unsigned long int req, void *buf, 1535 BlockCompletionFunc *cb, void *opaque) 1536 { 1537 return blk_aio_prwv(blk, req, 0, buf, blk_aio_ioctl_entry, 0, cb, opaque); 1538 } 1539 1540 int blk_co_pdiscard(BlockBackend *blk, int64_t offset, int bytes) 1541 { 1542 int ret = blk_check_byte_request(blk, offset, bytes); 1543 if (ret < 0) { 1544 return ret; 1545 } 1546 1547 return bdrv_co_pdiscard(blk->root, offset, bytes); 1548 } 1549 1550 int blk_co_flush(BlockBackend *blk) 1551 { 1552 if (!blk_is_available(blk)) { 1553 return -ENOMEDIUM; 1554 } 1555 1556 return bdrv_co_flush(blk_bs(blk)); 1557 } 1558 1559 static void blk_flush_entry(void *opaque) 1560 { 1561 BlkRwCo *rwco = opaque; 1562 rwco->ret = blk_co_flush(rwco->blk); 1563 aio_wait_kick(); 1564 } 1565 1566 int blk_flush(BlockBackend *blk) 1567 { 1568 return blk_prw(blk, 0, NULL, 0, blk_flush_entry, 0); 1569 } 1570 1571 void blk_drain(BlockBackend *blk) 1572 { 1573 BlockDriverState *bs = blk_bs(blk); 1574 1575 if (bs) { 1576 bdrv_drained_begin(bs); 1577 } 1578 1579 /* We may have -ENOMEDIUM completions in flight */ 1580 AIO_WAIT_WHILE(blk_get_aio_context(blk), 1581 atomic_mb_read(&blk->in_flight) > 0); 1582 1583 if (bs) { 1584 bdrv_drained_end(bs); 1585 } 1586 } 1587 1588 void blk_drain_all(void) 1589 { 1590 BlockBackend *blk = NULL; 1591 1592 bdrv_drain_all_begin(); 1593 1594 while ((blk = blk_all_next(blk)) != NULL) { 1595 AioContext *ctx = blk_get_aio_context(blk); 1596 1597 aio_context_acquire(ctx); 1598 1599 /* We may have -ENOMEDIUM completions in flight */ 1600 AIO_WAIT_WHILE(ctx, atomic_mb_read(&blk->in_flight) > 0); 1601 1602 aio_context_release(ctx); 1603 } 1604 1605 bdrv_drain_all_end(); 1606 } 1607 1608 void blk_set_on_error(BlockBackend *blk, BlockdevOnError on_read_error, 1609 BlockdevOnError on_write_error) 1610 { 1611 blk->on_read_error = on_read_error; 1612 blk->on_write_error = on_write_error; 1613 } 1614 1615 BlockdevOnError blk_get_on_error(BlockBackend *blk, bool is_read) 1616 { 1617 return is_read ? blk->on_read_error : blk->on_write_error; 1618 } 1619 1620 BlockErrorAction blk_get_error_action(BlockBackend *blk, bool is_read, 1621 int error) 1622 { 1623 BlockdevOnError on_err = blk_get_on_error(blk, is_read); 1624 1625 switch (on_err) { 1626 case BLOCKDEV_ON_ERROR_ENOSPC: 1627 return (error == ENOSPC) ? 1628 BLOCK_ERROR_ACTION_STOP : BLOCK_ERROR_ACTION_REPORT; 1629 case BLOCKDEV_ON_ERROR_STOP: 1630 return BLOCK_ERROR_ACTION_STOP; 1631 case BLOCKDEV_ON_ERROR_REPORT: 1632 return BLOCK_ERROR_ACTION_REPORT; 1633 case BLOCKDEV_ON_ERROR_IGNORE: 1634 return BLOCK_ERROR_ACTION_IGNORE; 1635 case BLOCKDEV_ON_ERROR_AUTO: 1636 default: 1637 abort(); 1638 } 1639 } 1640 1641 static void send_qmp_error_event(BlockBackend *blk, 1642 BlockErrorAction action, 1643 bool is_read, int error) 1644 { 1645 IoOperationType optype; 1646 BlockDriverState *bs = blk_bs(blk); 1647 1648 optype = is_read ? IO_OPERATION_TYPE_READ : IO_OPERATION_TYPE_WRITE; 1649 qapi_event_send_block_io_error(blk_name(blk), !!bs, 1650 bs ? bdrv_get_node_name(bs) : NULL, optype, 1651 action, blk_iostatus_is_enabled(blk), 1652 error == ENOSPC, strerror(error)); 1653 } 1654 1655 /* This is done by device models because, while the block layer knows 1656 * about the error, it does not know whether an operation comes from 1657 * the device or the block layer (from a job, for example). 1658 */ 1659 void blk_error_action(BlockBackend *blk, BlockErrorAction action, 1660 bool is_read, int error) 1661 { 1662 assert(error >= 0); 1663 1664 if (action == BLOCK_ERROR_ACTION_STOP) { 1665 /* First set the iostatus, so that "info block" returns an iostatus 1666 * that matches the events raised so far (an additional error iostatus 1667 * is fine, but not a lost one). 1668 */ 1669 blk_iostatus_set_err(blk, error); 1670 1671 /* Then raise the request to stop the VM and the event. 1672 * qemu_system_vmstop_request_prepare has two effects. First, 1673 * it ensures that the STOP event always comes after the 1674 * BLOCK_IO_ERROR event. Second, it ensures that even if management 1675 * can observe the STOP event and do a "cont" before the STOP 1676 * event is issued, the VM will not stop. In this case, vm_start() 1677 * also ensures that the STOP/RESUME pair of events is emitted. 1678 */ 1679 qemu_system_vmstop_request_prepare(); 1680 send_qmp_error_event(blk, action, is_read, error); 1681 qemu_system_vmstop_request(RUN_STATE_IO_ERROR); 1682 } else { 1683 send_qmp_error_event(blk, action, is_read, error); 1684 } 1685 } 1686 1687 bool blk_is_read_only(BlockBackend *blk) 1688 { 1689 BlockDriverState *bs = blk_bs(blk); 1690 1691 if (bs) { 1692 return bdrv_is_read_only(bs); 1693 } else { 1694 return blk->root_state.read_only; 1695 } 1696 } 1697 1698 bool blk_is_sg(BlockBackend *blk) 1699 { 1700 BlockDriverState *bs = blk_bs(blk); 1701 1702 if (!bs) { 1703 return false; 1704 } 1705 1706 return bdrv_is_sg(bs); 1707 } 1708 1709 bool blk_enable_write_cache(BlockBackend *blk) 1710 { 1711 return blk->enable_write_cache; 1712 } 1713 1714 void blk_set_enable_write_cache(BlockBackend *blk, bool wce) 1715 { 1716 blk->enable_write_cache = wce; 1717 } 1718 1719 void blk_invalidate_cache(BlockBackend *blk, Error **errp) 1720 { 1721 BlockDriverState *bs = blk_bs(blk); 1722 1723 if (!bs) { 1724 error_setg(errp, "Device '%s' has no medium", blk->name); 1725 return; 1726 } 1727 1728 bdrv_invalidate_cache(bs, errp); 1729 } 1730 1731 bool blk_is_inserted(BlockBackend *blk) 1732 { 1733 BlockDriverState *bs = blk_bs(blk); 1734 1735 return bs && bdrv_is_inserted(bs); 1736 } 1737 1738 bool blk_is_available(BlockBackend *blk) 1739 { 1740 return blk_is_inserted(blk) && !blk_dev_is_tray_open(blk); 1741 } 1742 1743 void blk_lock_medium(BlockBackend *blk, bool locked) 1744 { 1745 BlockDriverState *bs = blk_bs(blk); 1746 1747 if (bs) { 1748 bdrv_lock_medium(bs, locked); 1749 } 1750 } 1751 1752 void blk_eject(BlockBackend *blk, bool eject_flag) 1753 { 1754 BlockDriverState *bs = blk_bs(blk); 1755 char *id; 1756 1757 if (bs) { 1758 bdrv_eject(bs, eject_flag); 1759 } 1760 1761 /* Whether or not we ejected on the backend, 1762 * the frontend experienced a tray event. */ 1763 id = blk_get_attached_dev_id(blk); 1764 qapi_event_send_device_tray_moved(blk_name(blk), id, 1765 eject_flag); 1766 g_free(id); 1767 } 1768 1769 int blk_get_flags(BlockBackend *blk) 1770 { 1771 BlockDriverState *bs = blk_bs(blk); 1772 1773 if (bs) { 1774 return bdrv_get_flags(bs); 1775 } else { 1776 return blk->root_state.open_flags; 1777 } 1778 } 1779 1780 /* Returns the minimum request alignment, in bytes; guaranteed nonzero */ 1781 uint32_t blk_get_request_alignment(BlockBackend *blk) 1782 { 1783 BlockDriverState *bs = blk_bs(blk); 1784 return bs ? bs->bl.request_alignment : BDRV_SECTOR_SIZE; 1785 } 1786 1787 /* Returns the maximum transfer length, in bytes; guaranteed nonzero */ 1788 uint32_t blk_get_max_transfer(BlockBackend *blk) 1789 { 1790 BlockDriverState *bs = blk_bs(blk); 1791 uint32_t max = 0; 1792 1793 if (bs) { 1794 max = bs->bl.max_transfer; 1795 } 1796 return MIN_NON_ZERO(max, INT_MAX); 1797 } 1798 1799 int blk_get_max_iov(BlockBackend *blk) 1800 { 1801 return blk->root->bs->bl.max_iov; 1802 } 1803 1804 void blk_set_guest_block_size(BlockBackend *blk, int align) 1805 { 1806 blk->guest_block_size = align; 1807 } 1808 1809 void *blk_try_blockalign(BlockBackend *blk, size_t size) 1810 { 1811 return qemu_try_blockalign(blk ? blk_bs(blk) : NULL, size); 1812 } 1813 1814 void *blk_blockalign(BlockBackend *blk, size_t size) 1815 { 1816 return qemu_blockalign(blk ? blk_bs(blk) : NULL, size); 1817 } 1818 1819 bool blk_op_is_blocked(BlockBackend *blk, BlockOpType op, Error **errp) 1820 { 1821 BlockDriverState *bs = blk_bs(blk); 1822 1823 if (!bs) { 1824 return false; 1825 } 1826 1827 return bdrv_op_is_blocked(bs, op, errp); 1828 } 1829 1830 void blk_op_unblock(BlockBackend *blk, BlockOpType op, Error *reason) 1831 { 1832 BlockDriverState *bs = blk_bs(blk); 1833 1834 if (bs) { 1835 bdrv_op_unblock(bs, op, reason); 1836 } 1837 } 1838 1839 void blk_op_block_all(BlockBackend *blk, Error *reason) 1840 { 1841 BlockDriverState *bs = blk_bs(blk); 1842 1843 if (bs) { 1844 bdrv_op_block_all(bs, reason); 1845 } 1846 } 1847 1848 void blk_op_unblock_all(BlockBackend *blk, Error *reason) 1849 { 1850 BlockDriverState *bs = blk_bs(blk); 1851 1852 if (bs) { 1853 bdrv_op_unblock_all(bs, reason); 1854 } 1855 } 1856 1857 AioContext *blk_get_aio_context(BlockBackend *blk) 1858 { 1859 BlockDriverState *bs = blk_bs(blk); 1860 1861 if (bs) { 1862 AioContext *ctx = bdrv_get_aio_context(blk_bs(blk)); 1863 assert(ctx == blk->ctx); 1864 } 1865 1866 return blk->ctx; 1867 } 1868 1869 static AioContext *blk_aiocb_get_aio_context(BlockAIOCB *acb) 1870 { 1871 BlockBackendAIOCB *blk_acb = DO_UPCAST(BlockBackendAIOCB, common, acb); 1872 return blk_get_aio_context(blk_acb->blk); 1873 } 1874 1875 static int blk_do_set_aio_context(BlockBackend *blk, AioContext *new_context, 1876 bool update_root_node, Error **errp) 1877 { 1878 BlockDriverState *bs = blk_bs(blk); 1879 ThrottleGroupMember *tgm = &blk->public.throttle_group_member; 1880 int ret; 1881 1882 if (bs) { 1883 if (update_root_node) { 1884 ret = bdrv_child_try_set_aio_context(bs, new_context, blk->root, 1885 errp); 1886 if (ret < 0) { 1887 return ret; 1888 } 1889 } 1890 if (tgm->throttle_state) { 1891 bdrv_drained_begin(bs); 1892 throttle_group_detach_aio_context(tgm); 1893 throttle_group_attach_aio_context(tgm, new_context); 1894 bdrv_drained_end(bs); 1895 } 1896 } 1897 1898 blk->ctx = new_context; 1899 return 0; 1900 } 1901 1902 int blk_set_aio_context(BlockBackend *blk, AioContext *new_context, 1903 Error **errp) 1904 { 1905 return blk_do_set_aio_context(blk, new_context, true, errp); 1906 } 1907 1908 static bool blk_root_can_set_aio_ctx(BdrvChild *child, AioContext *ctx, 1909 GSList **ignore, Error **errp) 1910 { 1911 BlockBackend *blk = child->opaque; 1912 1913 if (blk->allow_aio_context_change) { 1914 return true; 1915 } 1916 1917 /* Only manually created BlockBackends that are not attached to anything 1918 * can change their AioContext without updating their user. */ 1919 if (!blk->name || blk->dev) { 1920 /* TODO Add BB name/QOM path */ 1921 error_setg(errp, "Cannot change iothread of active block backend"); 1922 return false; 1923 } 1924 1925 return true; 1926 } 1927 1928 static void blk_root_set_aio_ctx(BdrvChild *child, AioContext *ctx, 1929 GSList **ignore) 1930 { 1931 BlockBackend *blk = child->opaque; 1932 blk_do_set_aio_context(blk, ctx, false, &error_abort); 1933 } 1934 1935 void blk_add_aio_context_notifier(BlockBackend *blk, 1936 void (*attached_aio_context)(AioContext *new_context, void *opaque), 1937 void (*detach_aio_context)(void *opaque), void *opaque) 1938 { 1939 BlockBackendAioNotifier *notifier; 1940 BlockDriverState *bs = blk_bs(blk); 1941 1942 notifier = g_new(BlockBackendAioNotifier, 1); 1943 notifier->attached_aio_context = attached_aio_context; 1944 notifier->detach_aio_context = detach_aio_context; 1945 notifier->opaque = opaque; 1946 QLIST_INSERT_HEAD(&blk->aio_notifiers, notifier, list); 1947 1948 if (bs) { 1949 bdrv_add_aio_context_notifier(bs, attached_aio_context, 1950 detach_aio_context, opaque); 1951 } 1952 } 1953 1954 void blk_remove_aio_context_notifier(BlockBackend *blk, 1955 void (*attached_aio_context)(AioContext *, 1956 void *), 1957 void (*detach_aio_context)(void *), 1958 void *opaque) 1959 { 1960 BlockBackendAioNotifier *notifier; 1961 BlockDriverState *bs = blk_bs(blk); 1962 1963 if (bs) { 1964 bdrv_remove_aio_context_notifier(bs, attached_aio_context, 1965 detach_aio_context, opaque); 1966 } 1967 1968 QLIST_FOREACH(notifier, &blk->aio_notifiers, list) { 1969 if (notifier->attached_aio_context == attached_aio_context && 1970 notifier->detach_aio_context == detach_aio_context && 1971 notifier->opaque == opaque) { 1972 QLIST_REMOVE(notifier, list); 1973 g_free(notifier); 1974 return; 1975 } 1976 } 1977 1978 abort(); 1979 } 1980 1981 void blk_add_remove_bs_notifier(BlockBackend *blk, Notifier *notify) 1982 { 1983 notifier_list_add(&blk->remove_bs_notifiers, notify); 1984 } 1985 1986 void blk_add_insert_bs_notifier(BlockBackend *blk, Notifier *notify) 1987 { 1988 notifier_list_add(&blk->insert_bs_notifiers, notify); 1989 } 1990 1991 void blk_io_plug(BlockBackend *blk) 1992 { 1993 BlockDriverState *bs = blk_bs(blk); 1994 1995 if (bs) { 1996 bdrv_io_plug(bs); 1997 } 1998 } 1999 2000 void blk_io_unplug(BlockBackend *blk) 2001 { 2002 BlockDriverState *bs = blk_bs(blk); 2003 2004 if (bs) { 2005 bdrv_io_unplug(bs); 2006 } 2007 } 2008 2009 BlockAcctStats *blk_get_stats(BlockBackend *blk) 2010 { 2011 return &blk->stats; 2012 } 2013 2014 void *blk_aio_get(const AIOCBInfo *aiocb_info, BlockBackend *blk, 2015 BlockCompletionFunc *cb, void *opaque) 2016 { 2017 return qemu_aio_get(aiocb_info, blk_bs(blk), cb, opaque); 2018 } 2019 2020 int coroutine_fn blk_co_pwrite_zeroes(BlockBackend *blk, int64_t offset, 2021 int bytes, BdrvRequestFlags flags) 2022 { 2023 return blk_co_pwritev(blk, offset, bytes, NULL, 2024 flags | BDRV_REQ_ZERO_WRITE); 2025 } 2026 2027 int blk_pwrite_compressed(BlockBackend *blk, int64_t offset, const void *buf, 2028 int count) 2029 { 2030 return blk_prw(blk, offset, (void *) buf, count, blk_write_entry, 2031 BDRV_REQ_WRITE_COMPRESSED); 2032 } 2033 2034 int blk_truncate(BlockBackend *blk, int64_t offset, PreallocMode prealloc, 2035 Error **errp) 2036 { 2037 if (!blk_is_available(blk)) { 2038 error_setg(errp, "No medium inserted"); 2039 return -ENOMEDIUM; 2040 } 2041 2042 return bdrv_truncate(blk->root, offset, prealloc, errp); 2043 } 2044 2045 static void blk_pdiscard_entry(void *opaque) 2046 { 2047 BlkRwCo *rwco = opaque; 2048 QEMUIOVector *qiov = rwco->iobuf; 2049 2050 rwco->ret = blk_co_pdiscard(rwco->blk, rwco->offset, qiov->size); 2051 aio_wait_kick(); 2052 } 2053 2054 int blk_pdiscard(BlockBackend *blk, int64_t offset, int bytes) 2055 { 2056 return blk_prw(blk, offset, NULL, bytes, blk_pdiscard_entry, 0); 2057 } 2058 2059 int blk_save_vmstate(BlockBackend *blk, const uint8_t *buf, 2060 int64_t pos, int size) 2061 { 2062 int ret; 2063 2064 if (!blk_is_available(blk)) { 2065 return -ENOMEDIUM; 2066 } 2067 2068 ret = bdrv_save_vmstate(blk_bs(blk), buf, pos, size); 2069 if (ret < 0) { 2070 return ret; 2071 } 2072 2073 if (ret == size && !blk->enable_write_cache) { 2074 ret = bdrv_flush(blk_bs(blk)); 2075 } 2076 2077 return ret < 0 ? ret : size; 2078 } 2079 2080 int blk_load_vmstate(BlockBackend *blk, uint8_t *buf, int64_t pos, int size) 2081 { 2082 if (!blk_is_available(blk)) { 2083 return -ENOMEDIUM; 2084 } 2085 2086 return bdrv_load_vmstate(blk_bs(blk), buf, pos, size); 2087 } 2088 2089 int blk_probe_blocksizes(BlockBackend *blk, BlockSizes *bsz) 2090 { 2091 if (!blk_is_available(blk)) { 2092 return -ENOMEDIUM; 2093 } 2094 2095 return bdrv_probe_blocksizes(blk_bs(blk), bsz); 2096 } 2097 2098 int blk_probe_geometry(BlockBackend *blk, HDGeometry *geo) 2099 { 2100 if (!blk_is_available(blk)) { 2101 return -ENOMEDIUM; 2102 } 2103 2104 return bdrv_probe_geometry(blk_bs(blk), geo); 2105 } 2106 2107 /* 2108 * Updates the BlockBackendRootState object with data from the currently 2109 * attached BlockDriverState. 2110 */ 2111 void blk_update_root_state(BlockBackend *blk) 2112 { 2113 assert(blk->root); 2114 2115 blk->root_state.open_flags = blk->root->bs->open_flags; 2116 blk->root_state.read_only = blk->root->bs->read_only; 2117 blk->root_state.detect_zeroes = blk->root->bs->detect_zeroes; 2118 } 2119 2120 /* 2121 * Returns the detect-zeroes setting to be used for bdrv_open() of a 2122 * BlockDriverState which is supposed to inherit the root state. 2123 */ 2124 bool blk_get_detect_zeroes_from_root_state(BlockBackend *blk) 2125 { 2126 return blk->root_state.detect_zeroes; 2127 } 2128 2129 /* 2130 * Returns the flags to be used for bdrv_open() of a BlockDriverState which is 2131 * supposed to inherit the root state. 2132 */ 2133 int blk_get_open_flags_from_root_state(BlockBackend *blk) 2134 { 2135 int bs_flags; 2136 2137 bs_flags = blk->root_state.read_only ? 0 : BDRV_O_RDWR; 2138 bs_flags |= blk->root_state.open_flags & ~BDRV_O_RDWR; 2139 2140 return bs_flags; 2141 } 2142 2143 BlockBackendRootState *blk_get_root_state(BlockBackend *blk) 2144 { 2145 return &blk->root_state; 2146 } 2147 2148 int blk_commit_all(void) 2149 { 2150 BlockBackend *blk = NULL; 2151 2152 while ((blk = blk_all_next(blk)) != NULL) { 2153 AioContext *aio_context = blk_get_aio_context(blk); 2154 2155 aio_context_acquire(aio_context); 2156 if (blk_is_inserted(blk) && blk->root->bs->backing) { 2157 int ret = bdrv_commit(blk->root->bs); 2158 if (ret < 0) { 2159 aio_context_release(aio_context); 2160 return ret; 2161 } 2162 } 2163 aio_context_release(aio_context); 2164 } 2165 return 0; 2166 } 2167 2168 2169 /* throttling disk I/O limits */ 2170 void blk_set_io_limits(BlockBackend *blk, ThrottleConfig *cfg) 2171 { 2172 throttle_group_config(&blk->public.throttle_group_member, cfg); 2173 } 2174 2175 void blk_io_limits_disable(BlockBackend *blk) 2176 { 2177 BlockDriverState *bs = blk_bs(blk); 2178 ThrottleGroupMember *tgm = &blk->public.throttle_group_member; 2179 assert(tgm->throttle_state); 2180 if (bs) { 2181 bdrv_drained_begin(bs); 2182 } 2183 throttle_group_unregister_tgm(tgm); 2184 if (bs) { 2185 bdrv_drained_end(bs); 2186 } 2187 } 2188 2189 /* should be called before blk_set_io_limits if a limit is set */ 2190 void blk_io_limits_enable(BlockBackend *blk, const char *group) 2191 { 2192 assert(!blk->public.throttle_group_member.throttle_state); 2193 throttle_group_register_tgm(&blk->public.throttle_group_member, 2194 group, blk_get_aio_context(blk)); 2195 } 2196 2197 void blk_io_limits_update_group(BlockBackend *blk, const char *group) 2198 { 2199 /* this BB is not part of any group */ 2200 if (!blk->public.throttle_group_member.throttle_state) { 2201 return; 2202 } 2203 2204 /* this BB is a part of the same group than the one we want */ 2205 if (!g_strcmp0(throttle_group_get_name(&blk->public.throttle_group_member), 2206 group)) { 2207 return; 2208 } 2209 2210 /* need to change the group this bs belong to */ 2211 blk_io_limits_disable(blk); 2212 blk_io_limits_enable(blk, group); 2213 } 2214 2215 static void blk_root_drained_begin(BdrvChild *child) 2216 { 2217 BlockBackend *blk = child->opaque; 2218 2219 if (++blk->quiesce_counter == 1) { 2220 if (blk->dev_ops && blk->dev_ops->drained_begin) { 2221 blk->dev_ops->drained_begin(blk->dev_opaque); 2222 } 2223 } 2224 2225 /* Note that blk->root may not be accessible here yet if we are just 2226 * attaching to a BlockDriverState that is drained. Use child instead. */ 2227 2228 if (atomic_fetch_inc(&blk->public.throttle_group_member.io_limits_disabled) == 0) { 2229 throttle_group_restart_tgm(&blk->public.throttle_group_member); 2230 } 2231 } 2232 2233 static bool blk_root_drained_poll(BdrvChild *child) 2234 { 2235 BlockBackend *blk = child->opaque; 2236 assert(blk->quiesce_counter); 2237 return !!blk->in_flight; 2238 } 2239 2240 static void blk_root_drained_end(BdrvChild *child, int *drained_end_counter) 2241 { 2242 BlockBackend *blk = child->opaque; 2243 assert(blk->quiesce_counter); 2244 2245 assert(blk->public.throttle_group_member.io_limits_disabled); 2246 atomic_dec(&blk->public.throttle_group_member.io_limits_disabled); 2247 2248 if (--blk->quiesce_counter == 0) { 2249 if (blk->dev_ops && blk->dev_ops->drained_end) { 2250 blk->dev_ops->drained_end(blk->dev_opaque); 2251 } 2252 } 2253 } 2254 2255 void blk_register_buf(BlockBackend *blk, void *host, size_t size) 2256 { 2257 bdrv_register_buf(blk_bs(blk), host, size); 2258 } 2259 2260 void blk_unregister_buf(BlockBackend *blk, void *host) 2261 { 2262 bdrv_unregister_buf(blk_bs(blk), host); 2263 } 2264 2265 int coroutine_fn blk_co_copy_range(BlockBackend *blk_in, int64_t off_in, 2266 BlockBackend *blk_out, int64_t off_out, 2267 int bytes, BdrvRequestFlags read_flags, 2268 BdrvRequestFlags write_flags) 2269 { 2270 int r; 2271 r = blk_check_byte_request(blk_in, off_in, bytes); 2272 if (r) { 2273 return r; 2274 } 2275 r = blk_check_byte_request(blk_out, off_out, bytes); 2276 if (r) { 2277 return r; 2278 } 2279 return bdrv_co_copy_range(blk_in->root, off_in, 2280 blk_out->root, off_out, 2281 bytes, read_flags, write_flags); 2282 } 2283 2284 const BdrvChild *blk_root(BlockBackend *blk) 2285 { 2286 return blk->root; 2287 } 2288