1 // SPDX-License-Identifier: GPL-2.0-only 2 /* 3 * Copyright (C) 1991, 1992 Linus Torvalds 4 * Copyright (C) 2001 Andrea Arcangeli <andrea@suse.de> SuSE 5 * Copyright (C) 2016 - 2020 Christoph Hellwig 6 */ 7 8 #include <linux/init.h> 9 #include <linux/mm.h> 10 #include <linux/slab.h> 11 #include <linux/kmod.h> 12 #include <linux/major.h> 13 #include <linux/device_cgroup.h> 14 #include <linux/blkdev.h> 15 #include <linux/blk-integrity.h> 16 #include <linux/backing-dev.h> 17 #include <linux/module.h> 18 #include <linux/blkpg.h> 19 #include <linux/magic.h> 20 #include <linux/buffer_head.h> 21 #include <linux/swap.h> 22 #include <linux/writeback.h> 23 #include <linux/mount.h> 24 #include <linux/pseudo_fs.h> 25 #include <linux/uio.h> 26 #include <linux/namei.h> 27 #include <linux/part_stat.h> 28 #include <linux/uaccess.h> 29 #include <linux/stat.h> 30 #include "../fs/internal.h" 31 #include "blk.h" 32 33 struct bdev_inode { 34 struct block_device bdev; 35 struct inode vfs_inode; 36 }; 37 38 static inline struct bdev_inode *BDEV_I(struct inode *inode) 39 { 40 return container_of(inode, struct bdev_inode, vfs_inode); 41 } 42 43 struct block_device *I_BDEV(struct inode *inode) 44 { 45 return &BDEV_I(inode)->bdev; 46 } 47 EXPORT_SYMBOL(I_BDEV); 48 49 static void bdev_write_inode(struct block_device *bdev) 50 { 51 struct inode *inode = bdev->bd_inode; 52 int ret; 53 54 spin_lock(&inode->i_lock); 55 while (inode->i_state & I_DIRTY) { 56 spin_unlock(&inode->i_lock); 57 ret = write_inode_now(inode, true); 58 if (ret) 59 pr_warn_ratelimited( 60 "VFS: Dirty inode writeback failed for block device %pg (err=%d).\n", 61 bdev, ret); 62 spin_lock(&inode->i_lock); 63 } 64 spin_unlock(&inode->i_lock); 65 } 66 67 /* Kill _all_ buffers and pagecache , dirty or not.. */ 68 static void kill_bdev(struct block_device *bdev) 69 { 70 struct address_space *mapping = bdev->bd_inode->i_mapping; 71 72 if (mapping_empty(mapping)) 73 return; 74 75 invalidate_bh_lrus(); 76 truncate_inode_pages(mapping, 0); 77 } 78 79 /* Invalidate clean unused buffers and pagecache. */ 80 void invalidate_bdev(struct block_device *bdev) 81 { 82 struct address_space *mapping = bdev->bd_inode->i_mapping; 83 84 if (mapping->nrpages) { 85 invalidate_bh_lrus(); 86 lru_add_drain_all(); /* make sure all lru add caches are flushed */ 87 invalidate_mapping_pages(mapping, 0, -1); 88 } 89 } 90 EXPORT_SYMBOL(invalidate_bdev); 91 92 /* 93 * Drop all buffers & page cache for given bdev range. This function bails 94 * with error if bdev has other exclusive owner (such as filesystem). 95 */ 96 int truncate_bdev_range(struct block_device *bdev, blk_mode_t mode, 97 loff_t lstart, loff_t lend) 98 { 99 /* 100 * If we don't hold exclusive handle for the device, upgrade to it 101 * while we discard the buffer cache to avoid discarding buffers 102 * under live filesystem. 103 */ 104 if (!(mode & BLK_OPEN_EXCL)) { 105 int err = bd_prepare_to_claim(bdev, truncate_bdev_range, NULL); 106 if (err) 107 goto invalidate; 108 } 109 110 truncate_inode_pages_range(bdev->bd_inode->i_mapping, lstart, lend); 111 if (!(mode & BLK_OPEN_EXCL)) 112 bd_abort_claiming(bdev, truncate_bdev_range); 113 return 0; 114 115 invalidate: 116 /* 117 * Someone else has handle exclusively open. Try invalidating instead. 118 * The 'end' argument is inclusive so the rounding is safe. 119 */ 120 return invalidate_inode_pages2_range(bdev->bd_inode->i_mapping, 121 lstart >> PAGE_SHIFT, 122 lend >> PAGE_SHIFT); 123 } 124 125 static void set_init_blocksize(struct block_device *bdev) 126 { 127 unsigned int bsize = bdev_logical_block_size(bdev); 128 loff_t size = i_size_read(bdev->bd_inode); 129 130 while (bsize < PAGE_SIZE) { 131 if (size & bsize) 132 break; 133 bsize <<= 1; 134 } 135 bdev->bd_inode->i_blkbits = blksize_bits(bsize); 136 } 137 138 int set_blocksize(struct block_device *bdev, int size) 139 { 140 /* Size must be a power of two, and between 512 and PAGE_SIZE */ 141 if (size > PAGE_SIZE || size < 512 || !is_power_of_2(size)) 142 return -EINVAL; 143 144 /* Size cannot be smaller than the size supported by the device */ 145 if (size < bdev_logical_block_size(bdev)) 146 return -EINVAL; 147 148 /* Don't change the size if it is same as current */ 149 if (bdev->bd_inode->i_blkbits != blksize_bits(size)) { 150 sync_blockdev(bdev); 151 bdev->bd_inode->i_blkbits = blksize_bits(size); 152 kill_bdev(bdev); 153 } 154 return 0; 155 } 156 157 EXPORT_SYMBOL(set_blocksize); 158 159 int sb_set_blocksize(struct super_block *sb, int size) 160 { 161 if (set_blocksize(sb->s_bdev, size)) 162 return 0; 163 /* If we get here, we know size is power of two 164 * and it's value is between 512 and PAGE_SIZE */ 165 sb->s_blocksize = size; 166 sb->s_blocksize_bits = blksize_bits(size); 167 return sb->s_blocksize; 168 } 169 170 EXPORT_SYMBOL(sb_set_blocksize); 171 172 int sb_min_blocksize(struct super_block *sb, int size) 173 { 174 int minsize = bdev_logical_block_size(sb->s_bdev); 175 if (size < minsize) 176 size = minsize; 177 return sb_set_blocksize(sb, size); 178 } 179 180 EXPORT_SYMBOL(sb_min_blocksize); 181 182 int sync_blockdev_nowait(struct block_device *bdev) 183 { 184 if (!bdev) 185 return 0; 186 return filemap_flush(bdev->bd_inode->i_mapping); 187 } 188 EXPORT_SYMBOL_GPL(sync_blockdev_nowait); 189 190 /* 191 * Write out and wait upon all the dirty data associated with a block 192 * device via its mapping. Does not take the superblock lock. 193 */ 194 int sync_blockdev(struct block_device *bdev) 195 { 196 if (!bdev) 197 return 0; 198 return filemap_write_and_wait(bdev->bd_inode->i_mapping); 199 } 200 EXPORT_SYMBOL(sync_blockdev); 201 202 int sync_blockdev_range(struct block_device *bdev, loff_t lstart, loff_t lend) 203 { 204 return filemap_write_and_wait_range(bdev->bd_inode->i_mapping, 205 lstart, lend); 206 } 207 EXPORT_SYMBOL(sync_blockdev_range); 208 209 /* 210 * Write out and wait upon all dirty data associated with this 211 * device. Filesystem data as well as the underlying block 212 * device. Takes the superblock lock. 213 */ 214 int fsync_bdev(struct block_device *bdev) 215 { 216 struct super_block *sb = get_super(bdev); 217 if (sb) { 218 int res = sync_filesystem(sb); 219 drop_super(sb); 220 return res; 221 } 222 return sync_blockdev(bdev); 223 } 224 225 /** 226 * freeze_bdev - lock a filesystem and force it into a consistent state 227 * @bdev: blockdevice to lock 228 * 229 * If a superblock is found on this device, we take the s_umount semaphore 230 * on it to make sure nobody unmounts until the snapshot creation is done. 231 * The reference counter (bd_fsfreeze_count) guarantees that only the last 232 * unfreeze process can unfreeze the frozen filesystem actually when multiple 233 * freeze requests arrive simultaneously. It counts up in freeze_bdev() and 234 * count down in thaw_bdev(). When it becomes 0, thaw_bdev() will unfreeze 235 * actually. 236 */ 237 int freeze_bdev(struct block_device *bdev) 238 { 239 struct super_block *sb; 240 int error = 0; 241 242 mutex_lock(&bdev->bd_fsfreeze_mutex); 243 if (++bdev->bd_fsfreeze_count > 1) 244 goto done; 245 246 sb = get_active_super(bdev); 247 if (!sb) 248 goto sync; 249 if (sb->s_op->freeze_super) 250 error = sb->s_op->freeze_super(sb); 251 else 252 error = freeze_super(sb); 253 deactivate_super(sb); 254 255 if (error) { 256 bdev->bd_fsfreeze_count--; 257 goto done; 258 } 259 bdev->bd_fsfreeze_sb = sb; 260 261 sync: 262 sync_blockdev(bdev); 263 done: 264 mutex_unlock(&bdev->bd_fsfreeze_mutex); 265 return error; 266 } 267 EXPORT_SYMBOL(freeze_bdev); 268 269 /** 270 * thaw_bdev - unlock filesystem 271 * @bdev: blockdevice to unlock 272 * 273 * Unlocks the filesystem and marks it writeable again after freeze_bdev(). 274 */ 275 int thaw_bdev(struct block_device *bdev) 276 { 277 struct super_block *sb; 278 int error = -EINVAL; 279 280 mutex_lock(&bdev->bd_fsfreeze_mutex); 281 if (!bdev->bd_fsfreeze_count) 282 goto out; 283 284 error = 0; 285 if (--bdev->bd_fsfreeze_count > 0) 286 goto out; 287 288 sb = bdev->bd_fsfreeze_sb; 289 if (!sb) 290 goto out; 291 292 if (sb->s_op->thaw_super) 293 error = sb->s_op->thaw_super(sb); 294 else 295 error = thaw_super(sb); 296 if (error) 297 bdev->bd_fsfreeze_count++; 298 else 299 bdev->bd_fsfreeze_sb = NULL; 300 out: 301 mutex_unlock(&bdev->bd_fsfreeze_mutex); 302 return error; 303 } 304 EXPORT_SYMBOL(thaw_bdev); 305 306 /* 307 * pseudo-fs 308 */ 309 310 static __cacheline_aligned_in_smp DEFINE_MUTEX(bdev_lock); 311 static struct kmem_cache * bdev_cachep __read_mostly; 312 313 static struct inode *bdev_alloc_inode(struct super_block *sb) 314 { 315 struct bdev_inode *ei = alloc_inode_sb(sb, bdev_cachep, GFP_KERNEL); 316 317 if (!ei) 318 return NULL; 319 memset(&ei->bdev, 0, sizeof(ei->bdev)); 320 return &ei->vfs_inode; 321 } 322 323 static void bdev_free_inode(struct inode *inode) 324 { 325 struct block_device *bdev = I_BDEV(inode); 326 327 free_percpu(bdev->bd_stats); 328 kfree(bdev->bd_meta_info); 329 330 if (!bdev_is_partition(bdev)) { 331 if (bdev->bd_disk && bdev->bd_disk->bdi) 332 bdi_put(bdev->bd_disk->bdi); 333 kfree(bdev->bd_disk); 334 } 335 336 if (MAJOR(bdev->bd_dev) == BLOCK_EXT_MAJOR) 337 blk_free_ext_minor(MINOR(bdev->bd_dev)); 338 339 kmem_cache_free(bdev_cachep, BDEV_I(inode)); 340 } 341 342 static void init_once(void *data) 343 { 344 struct bdev_inode *ei = data; 345 346 inode_init_once(&ei->vfs_inode); 347 } 348 349 static void bdev_evict_inode(struct inode *inode) 350 { 351 truncate_inode_pages_final(&inode->i_data); 352 invalidate_inode_buffers(inode); /* is it needed here? */ 353 clear_inode(inode); 354 } 355 356 static const struct super_operations bdev_sops = { 357 .statfs = simple_statfs, 358 .alloc_inode = bdev_alloc_inode, 359 .free_inode = bdev_free_inode, 360 .drop_inode = generic_delete_inode, 361 .evict_inode = bdev_evict_inode, 362 }; 363 364 static int bd_init_fs_context(struct fs_context *fc) 365 { 366 struct pseudo_fs_context *ctx = init_pseudo(fc, BDEVFS_MAGIC); 367 if (!ctx) 368 return -ENOMEM; 369 fc->s_iflags |= SB_I_CGROUPWB; 370 ctx->ops = &bdev_sops; 371 return 0; 372 } 373 374 static struct file_system_type bd_type = { 375 .name = "bdev", 376 .init_fs_context = bd_init_fs_context, 377 .kill_sb = kill_anon_super, 378 }; 379 380 struct super_block *blockdev_superblock __read_mostly; 381 EXPORT_SYMBOL_GPL(blockdev_superblock); 382 383 void __init bdev_cache_init(void) 384 { 385 int err; 386 static struct vfsmount *bd_mnt; 387 388 bdev_cachep = kmem_cache_create("bdev_cache", sizeof(struct bdev_inode), 389 0, (SLAB_HWCACHE_ALIGN|SLAB_RECLAIM_ACCOUNT| 390 SLAB_MEM_SPREAD|SLAB_ACCOUNT|SLAB_PANIC), 391 init_once); 392 err = register_filesystem(&bd_type); 393 if (err) 394 panic("Cannot register bdev pseudo-fs"); 395 bd_mnt = kern_mount(&bd_type); 396 if (IS_ERR(bd_mnt)) 397 panic("Cannot create bdev pseudo-fs"); 398 blockdev_superblock = bd_mnt->mnt_sb; /* For writeback */ 399 } 400 401 struct block_device *bdev_alloc(struct gendisk *disk, u8 partno) 402 { 403 struct block_device *bdev; 404 struct inode *inode; 405 406 inode = new_inode(blockdev_superblock); 407 if (!inode) 408 return NULL; 409 inode->i_mode = S_IFBLK; 410 inode->i_rdev = 0; 411 inode->i_data.a_ops = &def_blk_aops; 412 mapping_set_gfp_mask(&inode->i_data, GFP_USER); 413 414 bdev = I_BDEV(inode); 415 mutex_init(&bdev->bd_fsfreeze_mutex); 416 spin_lock_init(&bdev->bd_size_lock); 417 mutex_init(&bdev->bd_holder_lock); 418 bdev->bd_partno = partno; 419 bdev->bd_inode = inode; 420 bdev->bd_queue = disk->queue; 421 if (partno) 422 bdev->bd_has_submit_bio = disk->part0->bd_has_submit_bio; 423 else 424 bdev->bd_has_submit_bio = false; 425 bdev->bd_stats = alloc_percpu(struct disk_stats); 426 if (!bdev->bd_stats) { 427 iput(inode); 428 return NULL; 429 } 430 bdev->bd_disk = disk; 431 return bdev; 432 } 433 434 void bdev_set_nr_sectors(struct block_device *bdev, sector_t sectors) 435 { 436 spin_lock(&bdev->bd_size_lock); 437 i_size_write(bdev->bd_inode, (loff_t)sectors << SECTOR_SHIFT); 438 bdev->bd_nr_sectors = sectors; 439 spin_unlock(&bdev->bd_size_lock); 440 } 441 442 void bdev_add(struct block_device *bdev, dev_t dev) 443 { 444 bdev->bd_dev = dev; 445 bdev->bd_inode->i_rdev = dev; 446 bdev->bd_inode->i_ino = dev; 447 insert_inode_hash(bdev->bd_inode); 448 } 449 450 long nr_blockdev_pages(void) 451 { 452 struct inode *inode; 453 long ret = 0; 454 455 spin_lock(&blockdev_superblock->s_inode_list_lock); 456 list_for_each_entry(inode, &blockdev_superblock->s_inodes, i_sb_list) 457 ret += inode->i_mapping->nrpages; 458 spin_unlock(&blockdev_superblock->s_inode_list_lock); 459 460 return ret; 461 } 462 463 /** 464 * bd_may_claim - test whether a block device can be claimed 465 * @bdev: block device of interest 466 * @holder: holder trying to claim @bdev 467 * @hops: holder ops 468 * 469 * Test whether @bdev can be claimed by @holder. 470 * 471 * RETURNS: 472 * %true if @bdev can be claimed, %false otherwise. 473 */ 474 static bool bd_may_claim(struct block_device *bdev, void *holder, 475 const struct blk_holder_ops *hops) 476 { 477 struct block_device *whole = bdev_whole(bdev); 478 479 lockdep_assert_held(&bdev_lock); 480 481 if (bdev->bd_holder) { 482 /* 483 * The same holder can always re-claim. 484 */ 485 if (bdev->bd_holder == holder) { 486 if (WARN_ON_ONCE(bdev->bd_holder_ops != hops)) 487 return false; 488 return true; 489 } 490 return false; 491 } 492 493 /* 494 * If the whole devices holder is set to bd_may_claim, a partition on 495 * the device is claimed, but not the whole device. 496 */ 497 if (whole != bdev && 498 whole->bd_holder && whole->bd_holder != bd_may_claim) 499 return false; 500 return true; 501 } 502 503 /** 504 * bd_prepare_to_claim - claim a block device 505 * @bdev: block device of interest 506 * @holder: holder trying to claim @bdev 507 * @hops: holder ops. 508 * 509 * Claim @bdev. This function fails if @bdev is already claimed by another 510 * holder and waits if another claiming is in progress. return, the caller 511 * has ownership of bd_claiming and bd_holder[s]. 512 * 513 * RETURNS: 514 * 0 if @bdev can be claimed, -EBUSY otherwise. 515 */ 516 int bd_prepare_to_claim(struct block_device *bdev, void *holder, 517 const struct blk_holder_ops *hops) 518 { 519 struct block_device *whole = bdev_whole(bdev); 520 521 if (WARN_ON_ONCE(!holder)) 522 return -EINVAL; 523 retry: 524 mutex_lock(&bdev_lock); 525 /* if someone else claimed, fail */ 526 if (!bd_may_claim(bdev, holder, hops)) { 527 mutex_unlock(&bdev_lock); 528 return -EBUSY; 529 } 530 531 /* if claiming is already in progress, wait for it to finish */ 532 if (whole->bd_claiming) { 533 wait_queue_head_t *wq = bit_waitqueue(&whole->bd_claiming, 0); 534 DEFINE_WAIT(wait); 535 536 prepare_to_wait(wq, &wait, TASK_UNINTERRUPTIBLE); 537 mutex_unlock(&bdev_lock); 538 schedule(); 539 finish_wait(wq, &wait); 540 goto retry; 541 } 542 543 /* yay, all mine */ 544 whole->bd_claiming = holder; 545 mutex_unlock(&bdev_lock); 546 return 0; 547 } 548 EXPORT_SYMBOL_GPL(bd_prepare_to_claim); /* only for the loop driver */ 549 550 static void bd_clear_claiming(struct block_device *whole, void *holder) 551 { 552 lockdep_assert_held(&bdev_lock); 553 /* tell others that we're done */ 554 BUG_ON(whole->bd_claiming != holder); 555 whole->bd_claiming = NULL; 556 wake_up_bit(&whole->bd_claiming, 0); 557 } 558 559 /** 560 * bd_finish_claiming - finish claiming of a block device 561 * @bdev: block device of interest 562 * @holder: holder that has claimed @bdev 563 * @hops: block device holder operations 564 * 565 * Finish exclusive open of a block device. Mark the device as exlusively 566 * open by the holder and wake up all waiters for exclusive open to finish. 567 */ 568 static void bd_finish_claiming(struct block_device *bdev, void *holder, 569 const struct blk_holder_ops *hops) 570 { 571 struct block_device *whole = bdev_whole(bdev); 572 573 mutex_lock(&bdev_lock); 574 BUG_ON(!bd_may_claim(bdev, holder, hops)); 575 /* 576 * Note that for a whole device bd_holders will be incremented twice, 577 * and bd_holder will be set to bd_may_claim before being set to holder 578 */ 579 whole->bd_holders++; 580 whole->bd_holder = bd_may_claim; 581 bdev->bd_holders++; 582 mutex_lock(&bdev->bd_holder_lock); 583 bdev->bd_holder = holder; 584 bdev->bd_holder_ops = hops; 585 mutex_unlock(&bdev->bd_holder_lock); 586 bd_clear_claiming(whole, holder); 587 mutex_unlock(&bdev_lock); 588 } 589 590 /** 591 * bd_abort_claiming - abort claiming of a block device 592 * @bdev: block device of interest 593 * @holder: holder that has claimed @bdev 594 * 595 * Abort claiming of a block device when the exclusive open failed. This can be 596 * also used when exclusive open is not actually desired and we just needed 597 * to block other exclusive openers for a while. 598 */ 599 void bd_abort_claiming(struct block_device *bdev, void *holder) 600 { 601 mutex_lock(&bdev_lock); 602 bd_clear_claiming(bdev_whole(bdev), holder); 603 mutex_unlock(&bdev_lock); 604 } 605 EXPORT_SYMBOL(bd_abort_claiming); 606 607 static void bd_end_claim(struct block_device *bdev, void *holder) 608 { 609 struct block_device *whole = bdev_whole(bdev); 610 bool unblock = false; 611 612 /* 613 * Release a claim on the device. The holder fields are protected with 614 * bdev_lock. open_mutex is used to synchronize disk_holder unlinking. 615 */ 616 mutex_lock(&bdev_lock); 617 WARN_ON_ONCE(bdev->bd_holder != holder); 618 WARN_ON_ONCE(--bdev->bd_holders < 0); 619 WARN_ON_ONCE(--whole->bd_holders < 0); 620 if (!bdev->bd_holders) { 621 mutex_lock(&bdev->bd_holder_lock); 622 bdev->bd_holder = NULL; 623 bdev->bd_holder_ops = NULL; 624 mutex_unlock(&bdev->bd_holder_lock); 625 if (bdev->bd_write_holder) 626 unblock = true; 627 } 628 if (!whole->bd_holders) 629 whole->bd_holder = NULL; 630 mutex_unlock(&bdev_lock); 631 632 /* 633 * If this was the last claim, remove holder link and unblock evpoll if 634 * it was a write holder. 635 */ 636 if (unblock) { 637 disk_unblock_events(bdev->bd_disk); 638 bdev->bd_write_holder = false; 639 } 640 } 641 642 static void blkdev_flush_mapping(struct block_device *bdev) 643 { 644 WARN_ON_ONCE(bdev->bd_holders); 645 sync_blockdev(bdev); 646 kill_bdev(bdev); 647 bdev_write_inode(bdev); 648 } 649 650 static int blkdev_get_whole(struct block_device *bdev, blk_mode_t mode) 651 { 652 struct gendisk *disk = bdev->bd_disk; 653 int ret; 654 655 if (disk->fops->open) { 656 ret = disk->fops->open(disk, mode); 657 if (ret) { 658 /* avoid ghost partitions on a removed medium */ 659 if (ret == -ENOMEDIUM && 660 test_bit(GD_NEED_PART_SCAN, &disk->state)) 661 bdev_disk_changed(disk, true); 662 return ret; 663 } 664 } 665 666 if (!atomic_read(&bdev->bd_openers)) 667 set_init_blocksize(bdev); 668 if (test_bit(GD_NEED_PART_SCAN, &disk->state)) 669 bdev_disk_changed(disk, false); 670 atomic_inc(&bdev->bd_openers); 671 return 0; 672 } 673 674 static void blkdev_put_whole(struct block_device *bdev) 675 { 676 if (atomic_dec_and_test(&bdev->bd_openers)) 677 blkdev_flush_mapping(bdev); 678 if (bdev->bd_disk->fops->release) 679 bdev->bd_disk->fops->release(bdev->bd_disk); 680 } 681 682 static int blkdev_get_part(struct block_device *part, blk_mode_t mode) 683 { 684 struct gendisk *disk = part->bd_disk; 685 int ret; 686 687 ret = blkdev_get_whole(bdev_whole(part), mode); 688 if (ret) 689 return ret; 690 691 ret = -ENXIO; 692 if (!bdev_nr_sectors(part)) 693 goto out_blkdev_put; 694 695 if (!atomic_read(&part->bd_openers)) { 696 disk->open_partitions++; 697 set_init_blocksize(part); 698 } 699 atomic_inc(&part->bd_openers); 700 return 0; 701 702 out_blkdev_put: 703 blkdev_put_whole(bdev_whole(part)); 704 return ret; 705 } 706 707 static void blkdev_put_part(struct block_device *part) 708 { 709 struct block_device *whole = bdev_whole(part); 710 711 if (atomic_dec_and_test(&part->bd_openers)) { 712 blkdev_flush_mapping(part); 713 whole->bd_disk->open_partitions--; 714 } 715 blkdev_put_whole(whole); 716 } 717 718 struct block_device *blkdev_get_no_open(dev_t dev) 719 { 720 struct block_device *bdev; 721 struct inode *inode; 722 723 inode = ilookup(blockdev_superblock, dev); 724 if (!inode && IS_ENABLED(CONFIG_BLOCK_LEGACY_AUTOLOAD)) { 725 blk_request_module(dev); 726 inode = ilookup(blockdev_superblock, dev); 727 if (inode) 728 pr_warn_ratelimited( 729 "block device autoloading is deprecated and will be removed.\n"); 730 } 731 if (!inode) 732 return NULL; 733 734 /* switch from the inode reference to a device mode one: */ 735 bdev = &BDEV_I(inode)->bdev; 736 if (!kobject_get_unless_zero(&bdev->bd_device.kobj)) 737 bdev = NULL; 738 iput(inode); 739 return bdev; 740 } 741 742 void blkdev_put_no_open(struct block_device *bdev) 743 { 744 put_device(&bdev->bd_device); 745 } 746 747 /** 748 * blkdev_get_by_dev - open a block device by device number 749 * @dev: device number of block device to open 750 * @mode: open mode (BLK_OPEN_*) 751 * @holder: exclusive holder identifier 752 * @hops: holder operations 753 * 754 * Open the block device described by device number @dev. If @holder is not 755 * %NULL, the block device is opened with exclusive access. Exclusive opens may 756 * nest for the same @holder. 757 * 758 * Use this interface ONLY if you really do not have anything better - i.e. when 759 * you are behind a truly sucky interface and all you are given is a device 760 * number. Everything else should use blkdev_get_by_path(). 761 * 762 * CONTEXT: 763 * Might sleep. 764 * 765 * RETURNS: 766 * Reference to the block_device on success, ERR_PTR(-errno) on failure. 767 */ 768 struct block_device *blkdev_get_by_dev(dev_t dev, blk_mode_t mode, void *holder, 769 const struct blk_holder_ops *hops) 770 { 771 bool unblock_events = true; 772 struct block_device *bdev; 773 struct gendisk *disk; 774 int ret; 775 776 ret = devcgroup_check_permission(DEVCG_DEV_BLOCK, 777 MAJOR(dev), MINOR(dev), 778 ((mode & BLK_OPEN_READ) ? DEVCG_ACC_READ : 0) | 779 ((mode & BLK_OPEN_WRITE) ? DEVCG_ACC_WRITE : 0)); 780 if (ret) 781 return ERR_PTR(ret); 782 783 bdev = blkdev_get_no_open(dev); 784 if (!bdev) 785 return ERR_PTR(-ENXIO); 786 disk = bdev->bd_disk; 787 788 if (holder) { 789 mode |= BLK_OPEN_EXCL; 790 ret = bd_prepare_to_claim(bdev, holder, hops); 791 if (ret) 792 goto put_blkdev; 793 } else { 794 if (WARN_ON_ONCE(mode & BLK_OPEN_EXCL)) { 795 ret = -EIO; 796 goto put_blkdev; 797 } 798 } 799 800 disk_block_events(disk); 801 802 mutex_lock(&disk->open_mutex); 803 ret = -ENXIO; 804 if (!disk_live(disk)) 805 goto abort_claiming; 806 if (!try_module_get(disk->fops->owner)) 807 goto abort_claiming; 808 if (bdev_is_partition(bdev)) 809 ret = blkdev_get_part(bdev, mode); 810 else 811 ret = blkdev_get_whole(bdev, mode); 812 if (ret) 813 goto put_module; 814 if (holder) { 815 bd_finish_claiming(bdev, holder, hops); 816 817 /* 818 * Block event polling for write claims if requested. Any write 819 * holder makes the write_holder state stick until all are 820 * released. This is good enough and tracking individual 821 * writeable reference is too fragile given the way @mode is 822 * used in blkdev_get/put(). 823 */ 824 if ((mode & BLK_OPEN_WRITE) && !bdev->bd_write_holder && 825 (disk->event_flags & DISK_EVENT_FLAG_BLOCK_ON_EXCL_WRITE)) { 826 bdev->bd_write_holder = true; 827 unblock_events = false; 828 } 829 } 830 mutex_unlock(&disk->open_mutex); 831 832 if (unblock_events) 833 disk_unblock_events(disk); 834 return bdev; 835 put_module: 836 module_put(disk->fops->owner); 837 abort_claiming: 838 if (holder) 839 bd_abort_claiming(bdev, holder); 840 mutex_unlock(&disk->open_mutex); 841 disk_unblock_events(disk); 842 put_blkdev: 843 blkdev_put_no_open(bdev); 844 return ERR_PTR(ret); 845 } 846 EXPORT_SYMBOL(blkdev_get_by_dev); 847 848 /** 849 * blkdev_get_by_path - open a block device by name 850 * @path: path to the block device to open 851 * @mode: open mode (BLK_OPEN_*) 852 * @holder: exclusive holder identifier 853 * @hops: holder operations 854 * 855 * Open the block device described by the device file at @path. If @holder is 856 * not %NULL, the block device is opened with exclusive access. Exclusive opens 857 * may nest for the same @holder. 858 * 859 * CONTEXT: 860 * Might sleep. 861 * 862 * RETURNS: 863 * Reference to the block_device on success, ERR_PTR(-errno) on failure. 864 */ 865 struct block_device *blkdev_get_by_path(const char *path, blk_mode_t mode, 866 void *holder, const struct blk_holder_ops *hops) 867 { 868 struct block_device *bdev; 869 dev_t dev; 870 int error; 871 872 error = lookup_bdev(path, &dev); 873 if (error) 874 return ERR_PTR(error); 875 876 bdev = blkdev_get_by_dev(dev, mode, holder, hops); 877 if (!IS_ERR(bdev) && (mode & BLK_OPEN_WRITE) && bdev_read_only(bdev)) { 878 blkdev_put(bdev, holder); 879 return ERR_PTR(-EACCES); 880 } 881 882 return bdev; 883 } 884 EXPORT_SYMBOL(blkdev_get_by_path); 885 886 void blkdev_put(struct block_device *bdev, void *holder) 887 { 888 struct gendisk *disk = bdev->bd_disk; 889 890 /* 891 * Sync early if it looks like we're the last one. If someone else 892 * opens the block device between now and the decrement of bd_openers 893 * then we did a sync that we didn't need to, but that's not the end 894 * of the world and we want to avoid long (could be several minute) 895 * syncs while holding the mutex. 896 */ 897 if (atomic_read(&bdev->bd_openers) == 1) 898 sync_blockdev(bdev); 899 900 mutex_lock(&disk->open_mutex); 901 if (holder) 902 bd_end_claim(bdev, holder); 903 904 /* 905 * Trigger event checking and tell drivers to flush MEDIA_CHANGE 906 * event. This is to ensure detection of media removal commanded 907 * from userland - e.g. eject(1). 908 */ 909 disk_flush_events(disk, DISK_EVENT_MEDIA_CHANGE); 910 911 if (bdev_is_partition(bdev)) 912 blkdev_put_part(bdev); 913 else 914 blkdev_put_whole(bdev); 915 mutex_unlock(&disk->open_mutex); 916 917 module_put(disk->fops->owner); 918 blkdev_put_no_open(bdev); 919 } 920 EXPORT_SYMBOL(blkdev_put); 921 922 /** 923 * lookup_bdev() - Look up a struct block_device by name. 924 * @pathname: Name of the block device in the filesystem. 925 * @dev: Pointer to the block device's dev_t, if found. 926 * 927 * Lookup the block device's dev_t at @pathname in the current 928 * namespace if possible and return it in @dev. 929 * 930 * Context: May sleep. 931 * Return: 0 if succeeded, negative errno otherwise. 932 */ 933 int lookup_bdev(const char *pathname, dev_t *dev) 934 { 935 struct inode *inode; 936 struct path path; 937 int error; 938 939 if (!pathname || !*pathname) 940 return -EINVAL; 941 942 error = kern_path(pathname, LOOKUP_FOLLOW, &path); 943 if (error) 944 return error; 945 946 inode = d_backing_inode(path.dentry); 947 error = -ENOTBLK; 948 if (!S_ISBLK(inode->i_mode)) 949 goto out_path_put; 950 error = -EACCES; 951 if (!may_open_dev(&path)) 952 goto out_path_put; 953 954 *dev = inode->i_rdev; 955 error = 0; 956 out_path_put: 957 path_put(&path); 958 return error; 959 } 960 EXPORT_SYMBOL(lookup_bdev); 961 962 /** 963 * bdev_mark_dead - mark a block device as dead 964 * @bdev: block device to operate on 965 * @surprise: indicate a surprise removal 966 * 967 * Tell the file system that this devices or media is dead. If @surprise is set 968 * to %true the device or media is already gone, if not we are preparing for an 969 * orderly removal. 970 * 971 * This calls into the file system, which then typicall syncs out all dirty data 972 * and writes back inodes and then invalidates any cached data in the inodes on 973 * the file system. In addition we also invalidate the block device mapping. 974 */ 975 void bdev_mark_dead(struct block_device *bdev, bool surprise) 976 { 977 mutex_lock(&bdev->bd_holder_lock); 978 if (bdev->bd_holder_ops && bdev->bd_holder_ops->mark_dead) 979 bdev->bd_holder_ops->mark_dead(bdev, surprise); 980 else 981 sync_blockdev(bdev); 982 mutex_unlock(&bdev->bd_holder_lock); 983 984 invalidate_bdev(bdev); 985 } 986 #ifdef CONFIG_DASD_MODULE 987 /* 988 * Drivers should not use this directly, but the DASD driver has historically 989 * had a shutdown to offline mode that doesn't actually remove the gendisk 990 * that otherwise looks a lot like a safe device removal. 991 */ 992 EXPORT_SYMBOL_GPL(bdev_mark_dead); 993 #endif 994 995 void sync_bdevs(bool wait) 996 { 997 struct inode *inode, *old_inode = NULL; 998 999 spin_lock(&blockdev_superblock->s_inode_list_lock); 1000 list_for_each_entry(inode, &blockdev_superblock->s_inodes, i_sb_list) { 1001 struct address_space *mapping = inode->i_mapping; 1002 struct block_device *bdev; 1003 1004 spin_lock(&inode->i_lock); 1005 if (inode->i_state & (I_FREEING|I_WILL_FREE|I_NEW) || 1006 mapping->nrpages == 0) { 1007 spin_unlock(&inode->i_lock); 1008 continue; 1009 } 1010 __iget(inode); 1011 spin_unlock(&inode->i_lock); 1012 spin_unlock(&blockdev_superblock->s_inode_list_lock); 1013 /* 1014 * We hold a reference to 'inode' so it couldn't have been 1015 * removed from s_inodes list while we dropped the 1016 * s_inode_list_lock We cannot iput the inode now as we can 1017 * be holding the last reference and we cannot iput it under 1018 * s_inode_list_lock. So we keep the reference and iput it 1019 * later. 1020 */ 1021 iput(old_inode); 1022 old_inode = inode; 1023 bdev = I_BDEV(inode); 1024 1025 mutex_lock(&bdev->bd_disk->open_mutex); 1026 if (!atomic_read(&bdev->bd_openers)) { 1027 ; /* skip */ 1028 } else if (wait) { 1029 /* 1030 * We keep the error status of individual mapping so 1031 * that applications can catch the writeback error using 1032 * fsync(2). See filemap_fdatawait_keep_errors() for 1033 * details. 1034 */ 1035 filemap_fdatawait_keep_errors(inode->i_mapping); 1036 } else { 1037 filemap_fdatawrite(inode->i_mapping); 1038 } 1039 mutex_unlock(&bdev->bd_disk->open_mutex); 1040 1041 spin_lock(&blockdev_superblock->s_inode_list_lock); 1042 } 1043 spin_unlock(&blockdev_superblock->s_inode_list_lock); 1044 iput(old_inode); 1045 } 1046 1047 /* 1048 * Handle STATX_DIOALIGN for block devices. 1049 * 1050 * Note that the inode passed to this is the inode of a block device node file, 1051 * not the block device's internal inode. Therefore it is *not* valid to use 1052 * I_BDEV() here; the block device has to be looked up by i_rdev instead. 1053 */ 1054 void bdev_statx_dioalign(struct inode *inode, struct kstat *stat) 1055 { 1056 struct block_device *bdev; 1057 1058 bdev = blkdev_get_no_open(inode->i_rdev); 1059 if (!bdev) 1060 return; 1061 1062 stat->dio_mem_align = bdev_dma_alignment(bdev) + 1; 1063 stat->dio_offset_align = bdev_logical_block_size(bdev); 1064 stat->result_mask |= STATX_DIOALIGN; 1065 1066 blkdev_put_no_open(bdev); 1067 } 1068