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