blob: 102837a370517c78d9d17d7793cfdf6d2ce6adc6 [file] [log] [blame]
Thomas Gleixner457c8992019-05-19 13:08:55 +01001// SPDX-License-Identifier: GPL-2.0-only
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * Copyright (C) 1991, 1992 Linus Torvalds
4 * Copyright (C) 2001 Andrea Arcangeli <andrea@suse.de> SuSE
Christoph Hellwig7b51e702020-12-10 08:55:44 +01005 * Copyright (C) 2016 - 2020 Christoph Hellwig
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 */
7
Linus Torvalds1da177e2005-04-16 15:20:36 -07008#include <linux/init.h>
9#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <linux/slab.h>
11#include <linux/kmod.h>
12#include <linux/major.h>
Pavel Emelyanov7db9cfd2008-06-05 22:46:27 -070013#include <linux/device_cgroup.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/blkdev.h>
Christoph Hellwigfe45e632021-09-20 14:33:27 +020015#include <linux/blk-integrity.h>
Tejun Heo66114ca2015-05-22 17:13:32 -040016#include <linux/backing-dev.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/module.h>
18#include <linux/blkpg.h>
Muthu Kumarb502bd12012-03-23 15:01:50 -070019#include <linux/magic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/buffer_head.h>
Al Viroff01bb42011-09-16 02:31:11 -040021#include <linux/swap.h>
David Howells811d7362006-08-29 19:06:09 +010022#include <linux/writeback.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/mount.h>
David Howells9030d162019-03-25 16:38:23 +000024#include <linux/pseudo_fs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/uio.h>
26#include <linux/namei.h>
Christoph Hellwig15e3d2c2020-11-24 09:34:00 +010027#include <linux/part_stat.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080028#include <linux/uaccess.h>
Christoph Hellwig0dca4462021-09-07 16:13:03 +020029#include "../fs/internal.h"
30#include "blk.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
32struct bdev_inode {
33 struct block_device bdev;
34 struct inode vfs_inode;
35};
36
37static inline struct bdev_inode *BDEV_I(struct inode *inode)
38{
39 return container_of(inode, struct bdev_inode, vfs_inode);
40}
41
Geert Uytterhoevenff5053f2015-06-26 13:58:32 +020042struct block_device *I_BDEV(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -070043{
44 return &BDEV_I(inode)->bdev;
45}
Linus Torvalds1da177e2005-04-16 15:20:36 -070046EXPORT_SYMBOL(I_BDEV);
47
Vivek Goyaldbd3ca52015-11-09 09:23:40 -070048static void bdev_write_inode(struct block_device *bdev)
Christoph Hellwig564f00f2015-01-14 10:42:33 +010049{
Vivek Goyaldbd3ca52015-11-09 09:23:40 -070050 struct inode *inode = bdev->bd_inode;
51 int ret;
52
Christoph Hellwig564f00f2015-01-14 10:42:33 +010053 spin_lock(&inode->i_lock);
54 while (inode->i_state & I_DIRTY) {
55 spin_unlock(&inode->i_lock);
Vivek Goyaldbd3ca52015-11-09 09:23:40 -070056 ret = write_inode_now(inode, true);
57 if (ret) {
58 char name[BDEVNAME_SIZE];
59 pr_warn_ratelimited("VFS: Dirty inode writeback failed "
60 "for block device %s (err=%d).\n",
61 bdevname(bdev, name), ret);
62 }
Christoph Hellwig564f00f2015-01-14 10:42:33 +010063 spin_lock(&inode->i_lock);
64 }
65 spin_unlock(&inode->i_lock);
66}
67
Peter Zijlstraf9a14392007-05-06 14:49:55 -070068/* Kill _all_ buffers and pagecache , dirty or not.. */
Zheng Bin3373a342020-06-18 12:21:38 +080069static void kill_bdev(struct block_device *bdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070070{
Al Viroff01bb42011-09-16 02:31:11 -040071 struct address_space *mapping = bdev->bd_inode->i_mapping;
72
Matthew Wilcox (Oracle)77165062021-05-04 18:32:45 -070073 if (mapping_empty(mapping))
Peter Zijlstraf9a14392007-05-06 14:49:55 -070074 return;
Al Viroff01bb42011-09-16 02:31:11 -040075
Peter Zijlstraf9a14392007-05-06 14:49:55 -070076 invalidate_bh_lrus();
Al Viroff01bb42011-09-16 02:31:11 -040077 truncate_inode_pages(mapping, 0);
Zheng Bin3373a342020-06-18 12:21:38 +080078}
Al Viroff01bb42011-09-16 02:31:11 -040079
80/* Invalidate clean unused buffers and pagecache. */
81void invalidate_bdev(struct block_device *bdev)
82{
83 struct address_space *mapping = bdev->bd_inode->i_mapping;
84
Andrey Ryabinina5f6a6a2017-05-03 14:56:02 -070085 if (mapping->nrpages) {
86 invalidate_bh_lrus();
87 lru_add_drain_all(); /* make sure all lru add caches are flushed */
88 invalidate_mapping_pages(mapping, 0, -1);
89 }
Al Viroff01bb42011-09-16 02:31:11 -040090}
91EXPORT_SYMBOL(invalidate_bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
Jan Kara384d87e2020-09-04 10:58:52 +020093/*
94 * Drop all buffers & page cache for given bdev range. This function bails
95 * with error if bdev has other exclusive owner (such as filesystem).
96 */
97int truncate_bdev_range(struct block_device *bdev, fmode_t mode,
98 loff_t lstart, loff_t lend)
99{
Jan Kara384d87e2020-09-04 10:58:52 +0200100 /*
101 * If we don't hold exclusive handle for the device, upgrade to it
102 * while we discard the buffer cache to avoid discarding buffers
103 * under live filesystem.
104 */
105 if (!(mode & FMODE_EXCL)) {
Christoph Hellwig37c3fc92020-11-25 21:20:08 +0100106 int err = bd_prepare_to_claim(bdev, truncate_bdev_range);
Jan Kara384d87e2020-09-04 10:58:52 +0200107 if (err)
Jan Kara56887cf2021-02-22 10:48:09 +0100108 goto invalidate;
Jan Kara384d87e2020-09-04 10:58:52 +0200109 }
Christoph Hellwig37c3fc92020-11-25 21:20:08 +0100110
Jan Kara384d87e2020-09-04 10:58:52 +0200111 truncate_inode_pages_range(bdev->bd_inode->i_mapping, lstart, lend);
Christoph Hellwig37c3fc92020-11-25 21:20:08 +0100112 if (!(mode & FMODE_EXCL))
113 bd_abort_claiming(bdev, truncate_bdev_range);
Jan Kara384d87e2020-09-04 10:58:52 +0200114 return 0;
Jan Kara56887cf2021-02-22 10:48:09 +0100115
116invalidate:
117 /*
118 * Someone else has handle exclusively open. Try invalidating instead.
119 * The 'end' argument is inclusive so the rounding is safe.
120 */
121 return invalidate_inode_pages2_range(bdev->bd_inode->i_mapping,
122 lstart >> PAGE_SHIFT,
123 lend >> PAGE_SHIFT);
Jan Kara384d87e2020-09-04 10:58:52 +0200124}
Jan Kara384d87e2020-09-04 10:58:52 +0200125
Jan Kara04906b22019-01-14 09:48:10 +0100126static void set_init_blocksize(struct block_device *bdev)
127{
Maxim Mikityanskiy8dc932d2021-01-26 21:59:07 +0200128 unsigned int bsize = bdev_logical_block_size(bdev);
129 loff_t size = i_size_read(bdev->bd_inode);
130
131 while (bsize < PAGE_SIZE) {
132 if (size & bsize)
133 break;
134 bsize <<= 1;
135 }
136 bdev->bd_inode->i_blkbits = blksize_bits(bsize);
Jan Kara04906b22019-01-14 09:48:10 +0100137}
138
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139int set_blocksize(struct block_device *bdev, int size)
140{
141 /* Size must be a power of two, and between 512 and PAGE_SIZE */
Vignesh Babu BM1368c4f2007-05-08 00:24:32 -0700142 if (size > PAGE_SIZE || size < 512 || !is_power_of_2(size))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 return -EINVAL;
144
145 /* Size cannot be smaller than the size supported by the device */
Martin K. Petersene1defc42009-05-22 17:17:49 -0400146 if (size < bdev_logical_block_size(bdev))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 return -EINVAL;
148
149 /* Don't change the size if it is same as current */
Christoph Hellwig6b7b1812020-06-26 10:01:55 +0200150 if (bdev->bd_inode->i_blkbits != blksize_bits(size)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 sync_blockdev(bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 bdev->bd_inode->i_blkbits = blksize_bits(size);
153 kill_bdev(bdev);
154 }
155 return 0;
156}
157
158EXPORT_SYMBOL(set_blocksize);
159
160int sb_set_blocksize(struct super_block *sb, int size)
161{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 if (set_blocksize(sb->s_bdev, size))
163 return 0;
164 /* If we get here, we know size is power of two
165 * and it's value is between 512 and PAGE_SIZE */
166 sb->s_blocksize = size;
Coywolf Qi Hunt38885bd2006-03-24 03:18:05 -0800167 sb->s_blocksize_bits = blksize_bits(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 return sb->s_blocksize;
169}
170
171EXPORT_SYMBOL(sb_set_blocksize);
172
173int sb_min_blocksize(struct super_block *sb, int size)
174{
Martin K. Petersene1defc42009-05-22 17:17:49 -0400175 int minsize = bdev_logical_block_size(sb->s_bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 if (size < minsize)
177 size = minsize;
178 return sb_set_blocksize(sb, size);
179}
180
181EXPORT_SYMBOL(sb_min_blocksize);
182
Christoph Hellwig70164eb2021-10-19 08:25:25 +0200183int sync_blockdev_nowait(struct block_device *bdev)
Jan Kara5cee5812009-04-27 16:43:51 +0200184{
185 if (!bdev)
186 return 0;
Christoph Hellwig70164eb2021-10-19 08:25:25 +0200187 return filemap_flush(bdev->bd_inode->i_mapping);
Jan Kara5cee5812009-04-27 16:43:51 +0200188}
Christoph Hellwig70164eb2021-10-19 08:25:25 +0200189EXPORT_SYMBOL_GPL(sync_blockdev_nowait);
Jan Kara5cee5812009-04-27 16:43:51 +0200190
Nick Piggin585d3bc2009-02-25 10:44:19 +0100191/*
192 * Write out and wait upon all the dirty data associated with a block
193 * device via its mapping. Does not take the superblock lock.
194 */
195int sync_blockdev(struct block_device *bdev)
196{
Christoph Hellwig70164eb2021-10-19 08:25:25 +0200197 if (!bdev)
198 return 0;
199 return filemap_write_and_wait(bdev->bd_inode->i_mapping);
Nick Piggin585d3bc2009-02-25 10:44:19 +0100200}
201EXPORT_SYMBOL(sync_blockdev);
202
203/*
204 * Write out and wait upon all dirty data associated with this
205 * device. Filesystem data as well as the underlying block
206 * device. Takes the superblock lock.
207 */
208int fsync_bdev(struct block_device *bdev)
209{
210 struct super_block *sb = get_super(bdev);
211 if (sb) {
Jan Kara60b06802009-04-27 16:43:53 +0200212 int res = sync_filesystem(sb);
Nick Piggin585d3bc2009-02-25 10:44:19 +0100213 drop_super(sb);
214 return res;
215 }
216 return sync_blockdev(bdev);
217}
Al Viro47e44912009-04-01 07:07:16 -0400218EXPORT_SYMBOL(fsync_bdev);
Nick Piggin585d3bc2009-02-25 10:44:19 +0100219
220/**
221 * freeze_bdev -- lock a filesystem and force it into a consistent state
222 * @bdev: blockdevice to lock
223 *
Nick Piggin585d3bc2009-02-25 10:44:19 +0100224 * If a superblock is found on this device, we take the s_umount semaphore
225 * on it to make sure nobody unmounts until the snapshot creation is done.
226 * The reference counter (bd_fsfreeze_count) guarantees that only the last
227 * unfreeze process can unfreeze the frozen filesystem actually when multiple
228 * freeze requests arrive simultaneously. It counts up in freeze_bdev() and
229 * count down in thaw_bdev(). When it becomes 0, thaw_bdev() will unfreeze
230 * actually.
231 */
Christoph Hellwig040f04b2020-11-24 11:54:06 +0100232int freeze_bdev(struct block_device *bdev)
Nick Piggin585d3bc2009-02-25 10:44:19 +0100233{
234 struct super_block *sb;
235 int error = 0;
236
237 mutex_lock(&bdev->bd_fsfreeze_mutex);
Christoph Hellwig040f04b2020-11-24 11:54:06 +0100238 if (++bdev->bd_fsfreeze_count > 1)
239 goto done;
Nick Piggin585d3bc2009-02-25 10:44:19 +0100240
Christoph Hellwig45042302009-08-03 23:28:35 +0200241 sb = get_active_super(bdev);
242 if (!sb)
Christoph Hellwig040f04b2020-11-24 11:54:06 +0100243 goto sync;
Benjamin Marzinski48b6bca2014-11-13 20:42:03 -0600244 if (sb->s_op->freeze_super)
245 error = sb->s_op->freeze_super(sb);
246 else
247 error = freeze_super(sb);
Josef Bacik18e9e512010-03-23 10:34:56 -0400248 deactivate_super(sb);
Christoph Hellwig040f04b2020-11-24 11:54:06 +0100249
250 if (error) {
251 bdev->bd_fsfreeze_count--;
252 goto done;
253 }
254 bdev->bd_fsfreeze_sb = sb;
255
256sync:
Nick Piggin585d3bc2009-02-25 10:44:19 +0100257 sync_blockdev(bdev);
Christoph Hellwig040f04b2020-11-24 11:54:06 +0100258done:
Nick Piggin585d3bc2009-02-25 10:44:19 +0100259 mutex_unlock(&bdev->bd_fsfreeze_mutex);
Christoph Hellwig040f04b2020-11-24 11:54:06 +0100260 return error;
Nick Piggin585d3bc2009-02-25 10:44:19 +0100261}
262EXPORT_SYMBOL(freeze_bdev);
263
264/**
265 * thaw_bdev -- unlock filesystem
266 * @bdev: blockdevice to unlock
Nick Piggin585d3bc2009-02-25 10:44:19 +0100267 *
268 * Unlocks the filesystem and marks it writeable again after freeze_bdev().
269 */
Christoph Hellwig040f04b2020-11-24 11:54:06 +0100270int thaw_bdev(struct block_device *bdev)
Nick Piggin585d3bc2009-02-25 10:44:19 +0100271{
Christoph Hellwig040f04b2020-11-24 11:54:06 +0100272 struct super_block *sb;
Christoph Hellwig45042302009-08-03 23:28:35 +0200273 int error = -EINVAL;
Nick Piggin585d3bc2009-02-25 10:44:19 +0100274
275 mutex_lock(&bdev->bd_fsfreeze_mutex);
Christoph Hellwig45042302009-08-03 23:28:35 +0200276 if (!bdev->bd_fsfreeze_count)
Josef Bacik18e9e512010-03-23 10:34:56 -0400277 goto out;
Nick Piggin585d3bc2009-02-25 10:44:19 +0100278
Christoph Hellwig45042302009-08-03 23:28:35 +0200279 error = 0;
280 if (--bdev->bd_fsfreeze_count > 0)
Josef Bacik18e9e512010-03-23 10:34:56 -0400281 goto out;
Nick Piggin585d3bc2009-02-25 10:44:19 +0100282
Christoph Hellwig040f04b2020-11-24 11:54:06 +0100283 sb = bdev->bd_fsfreeze_sb;
Christoph Hellwig45042302009-08-03 23:28:35 +0200284 if (!sb)
Josef Bacik18e9e512010-03-23 10:34:56 -0400285 goto out;
Christoph Hellwig45042302009-08-03 23:28:35 +0200286
Benjamin Marzinski48b6bca2014-11-13 20:42:03 -0600287 if (sb->s_op->thaw_super)
288 error = sb->s_op->thaw_super(sb);
289 else
290 error = thaw_super(sb);
Pierre Morel997198b2016-10-04 10:53:40 +0200291 if (error)
Josef Bacik18e9e512010-03-23 10:34:56 -0400292 bdev->bd_fsfreeze_count++;
Satya Tangirala04a6a532020-12-24 04:49:54 +0000293 else
294 bdev->bd_fsfreeze_sb = NULL;
Josef Bacik18e9e512010-03-23 10:34:56 -0400295out:
Nick Piggin585d3bc2009-02-25 10:44:19 +0100296 mutex_unlock(&bdev->bd_fsfreeze_mutex);
Pierre Morel997198b2016-10-04 10:53:40 +0200297 return error;
Nick Piggin585d3bc2009-02-25 10:44:19 +0100298}
299EXPORT_SYMBOL(thaw_bdev);
300
Matthew Wilcox47a191f2014-06-04 16:07:46 -0700301/**
302 * bdev_read_page() - Start reading a page from a block device
303 * @bdev: The device to read the page from
304 * @sector: The offset on the device to read the page to (need not be aligned)
305 * @page: The page to read
306 *
307 * On entry, the page should be locked. It will be unlocked when the page
308 * has been read. If the block driver implements rw_page synchronously,
309 * that will be true on exit from this function, but it need not be.
310 *
311 * Errors returned by this function are usually "soft", eg out of memory, or
312 * queue full; callers should try a different route to read this page rather
313 * than propagate an error back up the stack.
314 *
315 * Return: negative errno if an error occurs, 0 if submission was successful.
316 */
317int bdev_read_page(struct block_device *bdev, sector_t sector,
318 struct page *page)
319{
320 const struct block_device_operations *ops = bdev->bd_disk->fops;
Dan Williams2e6edc952015-11-19 13:29:28 -0800321 int result = -EOPNOTSUPP;
322
Vishal Vermaf68eb1e2015-05-12 13:48:53 -0400323 if (!ops->rw_page || bdev_get_integrity(bdev))
Dan Williams2e6edc952015-11-19 13:29:28 -0800324 return result;
325
Pavel Begunkov025a3862021-10-14 15:03:27 +0100326 result = blk_queue_enter(bdev_get_queue(bdev), 0);
Dan Williams2e6edc952015-11-19 13:29:28 -0800327 if (result)
328 return result;
Tejun Heo3f289dc2018-07-18 04:47:36 -0700329 result = ops->rw_page(bdev, sector + get_start_sect(bdev), page,
330 REQ_OP_READ);
Pavel Begunkov025a3862021-10-14 15:03:27 +0100331 blk_queue_exit(bdev_get_queue(bdev));
Dan Williams2e6edc952015-11-19 13:29:28 -0800332 return result;
Matthew Wilcox47a191f2014-06-04 16:07:46 -0700333}
Matthew Wilcox47a191f2014-06-04 16:07:46 -0700334
335/**
336 * bdev_write_page() - Start writing a page to a block device
337 * @bdev: The device to write the page to
338 * @sector: The offset on the device to write the page to (need not be aligned)
339 * @page: The page to write
340 * @wbc: The writeback_control for the write
341 *
342 * On entry, the page should be locked and not currently under writeback.
343 * On exit, if the write started successfully, the page will be unlocked and
344 * under writeback. If the write failed already (eg the driver failed to
345 * queue the page to the device), the page will still be locked. If the
346 * caller is a ->writepage implementation, it will need to unlock the page.
347 *
348 * Errors returned by this function are usually "soft", eg out of memory, or
349 * queue full; callers should try a different route to write this page rather
350 * than propagate an error back up the stack.
351 *
352 * Return: negative errno if an error occurs, 0 if submission was successful.
353 */
354int bdev_write_page(struct block_device *bdev, sector_t sector,
355 struct page *page, struct writeback_control *wbc)
356{
357 int result;
Matthew Wilcox47a191f2014-06-04 16:07:46 -0700358 const struct block_device_operations *ops = bdev->bd_disk->fops;
Dan Williams2e6edc952015-11-19 13:29:28 -0800359
Vishal Vermaf68eb1e2015-05-12 13:48:53 -0400360 if (!ops->rw_page || bdev_get_integrity(bdev))
Matthew Wilcox47a191f2014-06-04 16:07:46 -0700361 return -EOPNOTSUPP;
Pavel Begunkov025a3862021-10-14 15:03:27 +0100362 result = blk_queue_enter(bdev_get_queue(bdev), 0);
Dan Williams2e6edc952015-11-19 13:29:28 -0800363 if (result)
364 return result;
365
Matthew Wilcox47a191f2014-06-04 16:07:46 -0700366 set_page_writeback(page);
Tejun Heo3f289dc2018-07-18 04:47:36 -0700367 result = ops->rw_page(bdev, sector + get_start_sect(bdev), page,
368 REQ_OP_WRITE);
Matthew Wilcoxf8927602017-10-13 15:58:15 -0700369 if (result) {
Matthew Wilcox47a191f2014-06-04 16:07:46 -0700370 end_page_writeback(page);
Matthew Wilcoxf8927602017-10-13 15:58:15 -0700371 } else {
372 clean_page_buffers(page);
Matthew Wilcox47a191f2014-06-04 16:07:46 -0700373 unlock_page(page);
Matthew Wilcoxf8927602017-10-13 15:58:15 -0700374 }
Pavel Begunkov025a3862021-10-14 15:03:27 +0100375 blk_queue_exit(bdev_get_queue(bdev));
Matthew Wilcox47a191f2014-06-04 16:07:46 -0700376 return result;
377}
Matthew Wilcox47a191f2014-06-04 16:07:46 -0700378
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379/*
380 * pseudo-fs
381 */
382
383static __cacheline_aligned_in_smp DEFINE_SPINLOCK(bdev_lock);
Christoph Lametere18b8902006-12-06 20:33:20 -0800384static struct kmem_cache * bdev_cachep __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
386static struct inode *bdev_alloc_inode(struct super_block *sb)
387{
Christoph Lametere94b1762006-12-06 20:33:17 -0800388 struct bdev_inode *ei = kmem_cache_alloc(bdev_cachep, GFP_KERNEL);
Christoph Hellwig2d2f6f12021-01-07 19:36:40 +0100389
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 if (!ei)
391 return NULL;
Christoph Hellwig2d2f6f12021-01-07 19:36:40 +0100392 memset(&ei->bdev, 0, sizeof(ei->bdev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 return &ei->vfs_inode;
394}
395
Al Viro41149cb2019-04-10 15:12:38 -0400396static void bdev_free_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397{
Christoph Hellwig15e3d2c2020-11-24 09:34:00 +0100398 struct block_device *bdev = I_BDEV(inode);
399
400 free_percpu(bdev->bd_stats);
Christoph Hellwig231926d2020-11-24 12:01:45 +0100401 kfree(bdev->bd_meta_info);
Christoph Hellwig15e3d2c2020-11-24 09:34:00 +0100402
Christoph Hellwig889c05c2021-08-16 14:26:14 +0200403 if (!bdev_is_partition(bdev)) {
404 if (bdev->bd_disk && bdev->bd_disk->bdi)
405 bdi_put(bdev->bd_disk->bdi);
Christoph Hellwig340e8452021-07-22 09:53:54 +0200406 kfree(bdev->bd_disk);
Christoph Hellwig889c05c2021-08-16 14:26:14 +0200407 }
Christoph Hellwig9451aa02021-08-16 14:26:13 +0200408
409 if (MAJOR(bdev->bd_dev) == BLOCK_EXT_MAJOR)
410 blk_free_ext_minor(MINOR(bdev->bd_dev));
411
Al Viro41149cb2019-04-10 15:12:38 -0400412 kmem_cache_free(bdev_cachep, BDEV_I(inode));
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100413}
414
Christoph Hellwige6cb5382020-11-23 15:41:40 +0100415static void init_once(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416{
Christoph Hellwige6cb5382020-11-23 15:41:40 +0100417 struct bdev_inode *ei = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
Christoph Lametera35afb82007-05-16 22:10:57 -0700419 inode_init_once(&ei->vfs_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420}
421
Al Virob57922d2010-06-07 14:34:48 -0400422static void bdev_evict_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423{
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700424 truncate_inode_pages_final(&inode->i_data);
Al Virob57922d2010-06-07 14:34:48 -0400425 invalidate_inode_buffers(inode); /* is it needed here? */
Jan Karadbd57682012-05-03 14:48:02 +0200426 clear_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427}
428
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800429static const struct super_operations bdev_sops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 .statfs = simple_statfs,
431 .alloc_inode = bdev_alloc_inode,
Al Viro41149cb2019-04-10 15:12:38 -0400432 .free_inode = bdev_free_inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 .drop_inode = generic_delete_inode,
Al Virob57922d2010-06-07 14:34:48 -0400434 .evict_inode = bdev_evict_inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435};
436
David Howells9030d162019-03-25 16:38:23 +0000437static int bd_init_fs_context(struct fs_context *fc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438{
David Howells9030d162019-03-25 16:38:23 +0000439 struct pseudo_fs_context *ctx = init_pseudo(fc, BDEVFS_MAGIC);
440 if (!ctx)
441 return -ENOMEM;
442 fc->s_iflags |= SB_I_CGROUPWB;
443 ctx->ops = &bdev_sops;
444 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445}
446
447static struct file_system_type bd_type = {
448 .name = "bdev",
David Howells9030d162019-03-25 16:38:23 +0000449 .init_fs_context = bd_init_fs_context,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 .kill_sb = kill_anon_super,
451};
452
Tejun Heoa212b102015-05-22 17:13:33 -0400453struct super_block *blockdev_superblock __read_mostly;
454EXPORT_SYMBOL_GPL(blockdev_superblock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
456void __init bdev_cache_init(void)
457{
458 int err;
Sergey Senozhatskyace85772012-01-10 02:43:59 +0300459 static struct vfsmount *bd_mnt;
Denis ChengRqc2acf7b2008-12-01 14:34:56 -0800460
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 bdev_cachep = kmem_cache_create("bdev_cache", sizeof(struct bdev_inode),
Paul Jacksonfffb60f2006-03-24 03:16:06 -0800462 0, (SLAB_HWCACHE_ALIGN|SLAB_RECLAIM_ACCOUNT|
Vladimir Davydov5d097052016-01-14 15:18:21 -0800463 SLAB_MEM_SPREAD|SLAB_ACCOUNT|SLAB_PANIC),
Paul Mundt20c2df82007-07-20 10:11:58 +0900464 init_once);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 err = register_filesystem(&bd_type);
466 if (err)
467 panic("Cannot register bdev pseudo-fs");
468 bd_mnt = kern_mount(&bd_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 if (IS_ERR(bd_mnt))
470 panic("Cannot create bdev pseudo-fs");
Sergey Senozhatskyace85772012-01-10 02:43:59 +0300471 blockdev_superblock = bd_mnt->mnt_sb; /* For writeback */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472}
473
Christoph Hellwig22ae8ce2020-11-26 09:23:26 +0100474struct block_device *bdev_alloc(struct gendisk *disk, u8 partno)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475{
476 struct block_device *bdev;
477 struct inode *inode;
478
Christoph Hellwig22ae8ce2020-11-26 09:23:26 +0100479 inode = new_inode(blockdev_superblock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 if (!inode)
481 return NULL;
Christoph Hellwig22ae8ce2020-11-26 09:23:26 +0100482 inode->i_mode = S_IFBLK;
483 inode->i_rdev = 0;
484 inode->i_data.a_ops = &def_blk_aops;
485 mapping_set_gfp_mask(&inode->i_data, GFP_USER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
Christoph Hellwig22ae8ce2020-11-26 09:23:26 +0100487 bdev = I_BDEV(inode);
Christoph Hellwige6cb5382020-11-23 15:41:40 +0100488 mutex_init(&bdev->bd_fsfreeze_mutex);
Christoph Hellwig22ae8ce2020-11-26 09:23:26 +0100489 spin_lock_init(&bdev->bd_size_lock);
Christoph Hellwig22ae8ce2020-11-26 09:23:26 +0100490 bdev->bd_partno = partno;
Christoph Hellwig22ae8ce2020-11-26 09:23:26 +0100491 bdev->bd_inode = inode;
Pavel Begunkov17220ca2021-10-14 15:03:26 +0100492 bdev->bd_queue = disk->queue;
Christoph Hellwig15e3d2c2020-11-24 09:34:00 +0100493 bdev->bd_stats = alloc_percpu(struct disk_stats);
494 if (!bdev->bd_stats) {
495 iput(inode);
496 return NULL;
497 }
Tetsuo Handa06cc9782021-10-02 18:23:02 +0900498 bdev->bd_disk = disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 return bdev;
500}
501
Christoph Hellwig22ae8ce2020-11-26 09:23:26 +0100502void bdev_add(struct block_device *bdev, dev_t dev)
503{
504 bdev->bd_dev = dev;
505 bdev->bd_inode->i_rdev = dev;
506 bdev->bd_inode->i_ino = dev;
507 insert_inode_hash(bdev->bd_inode);
508}
509
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510long nr_blockdev_pages(void)
511{
Christoph Hellwig1008fe62020-06-26 10:01:58 +0200512 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 long ret = 0;
Christoph Hellwig1008fe62020-06-26 10:01:58 +0200514
515 spin_lock(&blockdev_superblock->s_inode_list_lock);
516 list_for_each_entry(inode, &blockdev_superblock->s_inodes, i_sb_list)
517 ret += inode->i_mapping->nrpages;
518 spin_unlock(&blockdev_superblock->s_inode_list_lock);
519
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 return ret;
521}
522
Tejun Heo1a3cbbc2010-04-07 18:52:29 +0900523/**
524 * bd_may_claim - test whether a block device can be claimed
525 * @bdev: block device of interest
526 * @whole: whole block device containing @bdev, may equal @bdev
527 * @holder: holder trying to claim @bdev
528 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300529 * Test whether @bdev can be claimed by @holder.
Tejun Heo1a3cbbc2010-04-07 18:52:29 +0900530 *
531 * CONTEXT:
532 * spin_lock(&bdev_lock).
533 *
534 * RETURNS:
535 * %true if @bdev can be claimed, %false otherwise.
536 */
537static bool bd_may_claim(struct block_device *bdev, struct block_device *whole,
538 void *holder)
539{
540 if (bdev->bd_holder == holder)
541 return true; /* already a holder */
542 else if (bdev->bd_holder != NULL)
543 return false; /* held by someone else */
NeilBrownbcc7f5b2016-12-12 08:21:51 -0700544 else if (whole == bdev)
Tejun Heo1a3cbbc2010-04-07 18:52:29 +0900545 return true; /* is a whole device which isn't held */
546
Tejun Heoe525fd82010-11-13 11:55:17 +0100547 else if (whole->bd_holder == bd_may_claim)
Tejun Heo1a3cbbc2010-04-07 18:52:29 +0900548 return true; /* is a partition of a device that is being partitioned */
549 else if (whole->bd_holder != NULL)
550 return false; /* is a partition of a held device */
551 else
552 return true; /* is a partition of an un-held device */
553}
554
555/**
Christoph Hellwig58e46ed2020-07-16 16:33:08 +0200556 * bd_prepare_to_claim - claim a block device
Tejun Heo6b4517a2010-04-07 18:53:59 +0900557 * @bdev: block device of interest
Tejun Heo6b4517a2010-04-07 18:53:59 +0900558 * @holder: holder trying to claim @bdev
559 *
Christoph Hellwig58e46ed2020-07-16 16:33:08 +0200560 * Claim @bdev. This function fails if @bdev is already claimed by another
561 * holder and waits if another claiming is in progress. return, the caller
562 * has ownership of bd_claiming and bd_holder[s].
Tejun Heo6b4517a2010-04-07 18:53:59 +0900563 *
564 * RETURNS:
565 * 0 if @bdev can be claimed, -EBUSY otherwise.
566 */
Christoph Hellwig37c3fc92020-11-25 21:20:08 +0100567int bd_prepare_to_claim(struct block_device *bdev, void *holder)
Tejun Heo6b4517a2010-04-07 18:53:59 +0900568{
Christoph Hellwig37c3fc92020-11-25 21:20:08 +0100569 struct block_device *whole = bdev_whole(bdev);
570
571 if (WARN_ON_ONCE(!holder))
572 return -EINVAL;
Tejun Heo6b4517a2010-04-07 18:53:59 +0900573retry:
Christoph Hellwig58e46ed2020-07-16 16:33:08 +0200574 spin_lock(&bdev_lock);
Tejun Heo6b4517a2010-04-07 18:53:59 +0900575 /* if someone else claimed, fail */
Christoph Hellwig58e46ed2020-07-16 16:33:08 +0200576 if (!bd_may_claim(bdev, whole, holder)) {
577 spin_unlock(&bdev_lock);
Tejun Heo6b4517a2010-04-07 18:53:59 +0900578 return -EBUSY;
Christoph Hellwig58e46ed2020-07-16 16:33:08 +0200579 }
Tejun Heo6b4517a2010-04-07 18:53:59 +0900580
Tejun Heoe75aa852010-08-04 17:59:39 +0200581 /* if claiming is already in progress, wait for it to finish */
582 if (whole->bd_claiming) {
Tejun Heo6b4517a2010-04-07 18:53:59 +0900583 wait_queue_head_t *wq = bit_waitqueue(&whole->bd_claiming, 0);
584 DEFINE_WAIT(wait);
585
586 prepare_to_wait(wq, &wait, TASK_UNINTERRUPTIBLE);
587 spin_unlock(&bdev_lock);
588 schedule();
589 finish_wait(wq, &wait);
Tejun Heo6b4517a2010-04-07 18:53:59 +0900590 goto retry;
591 }
592
593 /* yay, all mine */
Christoph Hellwig58e46ed2020-07-16 16:33:08 +0200594 whole->bd_claiming = holder;
595 spin_unlock(&bdev_lock);
Tejun Heo6b4517a2010-04-07 18:53:59 +0900596 return 0;
597}
Christoph Hellwigecbe6bc2020-07-16 16:33:09 +0200598EXPORT_SYMBOL_GPL(bd_prepare_to_claim); /* only for the loop driver */
Tejun Heo6b4517a2010-04-07 18:53:59 +0900599
Jan Kara89e524c02019-07-30 13:10:14 +0200600static void bd_clear_claiming(struct block_device *whole, void *holder)
601{
602 lockdep_assert_held(&bdev_lock);
603 /* tell others that we're done */
604 BUG_ON(whole->bd_claiming != holder);
605 whole->bd_claiming = NULL;
606 wake_up_bit(&whole->bd_claiming, 0);
607}
608
609/**
610 * bd_finish_claiming - finish claiming of a block device
611 * @bdev: block device of interest
Jan Kara89e524c02019-07-30 13:10:14 +0200612 * @holder: holder that has claimed @bdev
613 *
614 * Finish exclusive open of a block device. Mark the device as exlusively
615 * open by the holder and wake up all waiters for exclusive open to finish.
616 */
Christoph Hellwig37c3fc92020-11-25 21:20:08 +0100617static void bd_finish_claiming(struct block_device *bdev, void *holder)
Jan Kara89e524c02019-07-30 13:10:14 +0200618{
Christoph Hellwig37c3fc92020-11-25 21:20:08 +0100619 struct block_device *whole = bdev_whole(bdev);
620
Jan Kara89e524c02019-07-30 13:10:14 +0200621 spin_lock(&bdev_lock);
622 BUG_ON(!bd_may_claim(bdev, whole, holder));
623 /*
624 * Note that for a whole device bd_holders will be incremented twice,
625 * and bd_holder will be set to bd_may_claim before being set to holder
626 */
627 whole->bd_holders++;
628 whole->bd_holder = bd_may_claim;
629 bdev->bd_holders++;
630 bdev->bd_holder = holder;
631 bd_clear_claiming(whole, holder);
632 spin_unlock(&bdev_lock);
633}
Jan Kara89e524c02019-07-30 13:10:14 +0200634
635/**
636 * bd_abort_claiming - abort claiming of a block device
637 * @bdev: block device of interest
Jan Kara89e524c02019-07-30 13:10:14 +0200638 * @holder: holder that has claimed @bdev
639 *
640 * Abort claiming of a block device when the exclusive open failed. This can be
641 * also used when exclusive open is not actually desired and we just needed
642 * to block other exclusive openers for a while.
643 */
Christoph Hellwig37c3fc92020-11-25 21:20:08 +0100644void bd_abort_claiming(struct block_device *bdev, void *holder)
Jan Kara89e524c02019-07-30 13:10:14 +0200645{
646 spin_lock(&bdev_lock);
Christoph Hellwig37c3fc92020-11-25 21:20:08 +0100647 bd_clear_claiming(bdev_whole(bdev), holder);
Jan Kara89e524c02019-07-30 13:10:14 +0200648 spin_unlock(&bdev_lock);
649}
650EXPORT_SYMBOL(bd_abort_claiming);
Tejun Heo6b4517a2010-04-07 18:53:59 +0900651
Christoph Hellwigc8276b92021-05-25 08:12:58 +0200652static void blkdev_flush_mapping(struct block_device *bdev)
Christoph Hellwiga1548b62019-11-14 15:34:34 +0100653{
Christoph Hellwigc8276b92021-05-25 08:12:58 +0200654 WARN_ON_ONCE(bdev->bd_holders);
Christoph Hellwigd3c4a432021-04-06 08:22:55 +0200655 sync_blockdev(bdev);
Christoph Hellwigc8276b92021-05-25 08:12:58 +0200656 kill_bdev(bdev);
657 bdev_write_inode(bdev);
Christoph Hellwiga1548b62019-11-14 15:34:34 +0100658}
659
Christoph Hellwig362529d2021-05-25 08:12:54 +0200660static int blkdev_get_whole(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661{
Christoph Hellwig22ae8ce2020-11-26 09:23:26 +0100662 struct gendisk *disk = bdev->bd_disk;
Colin Ian Kingaf22fef2021-11-26 23:06:52 +0000663 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664
Christoph Hellwig362529d2021-05-25 08:12:54 +0200665 if (disk->fops->open) {
666 ret = disk->fops->open(bdev, mode);
667 if (ret) {
668 /* avoid ghost partitions on a removed medium */
669 if (ret == -ENOMEDIUM &&
670 test_bit(GD_NEED_PART_SCAN, &disk->state))
Christoph Hellwig03842642021-06-24 14:32:40 +0200671 bdev_disk_changed(disk, true);
Christoph Hellwig362529d2021-05-25 08:12:54 +0200672 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 }
674 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
Christoph Hellwiga11d7fc2021-08-09 16:17:44 +0200676 if (!bdev->bd_openers)
Christoph Hellwig362529d2021-05-25 08:12:54 +0200677 set_init_blocksize(bdev);
Christoph Hellwig362529d2021-05-25 08:12:54 +0200678 if (test_bit(GD_NEED_PART_SCAN, &disk->state))
Christoph Hellwig03842642021-06-24 14:32:40 +0200679 bdev_disk_changed(disk, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 bdev->bd_openers++;
Christoph Hellwig362529d2021-05-25 08:12:54 +0200681 return 0;;
682}
683
Christoph Hellwigc8276b92021-05-25 08:12:58 +0200684static void blkdev_put_whole(struct block_device *bdev, fmode_t mode)
685{
686 if (!--bdev->bd_openers)
687 blkdev_flush_mapping(bdev);
688 if (bdev->bd_disk->fops->release)
689 bdev->bd_disk->fops->release(bdev->bd_disk, mode);
690}
691
Christoph Hellwig362529d2021-05-25 08:12:54 +0200692static int blkdev_get_part(struct block_device *part, fmode_t mode)
693{
694 struct gendisk *disk = part->bd_disk;
Christoph Hellwig362529d2021-05-25 08:12:54 +0200695 int ret;
696
697 if (part->bd_openers)
698 goto done;
699
Christoph Hellwig9d3b8812021-07-22 09:53:58 +0200700 ret = blkdev_get_whole(bdev_whole(part), mode);
Christoph Hellwiga8698702021-05-25 08:12:56 +0200701 if (ret)
Christoph Hellwig9d3b8812021-07-22 09:53:58 +0200702 return ret;
Christoph Hellwig362529d2021-05-25 08:12:54 +0200703
704 ret = -ENXIO;
705 if (!bdev_nr_sectors(part))
706 goto out_blkdev_put;
707
Christoph Hellwigab4b5702021-05-25 08:12:59 +0200708 disk->open_partitions++;
Christoph Hellwig362529d2021-05-25 08:12:54 +0200709 set_init_blocksize(part);
Christoph Hellwig362529d2021-05-25 08:12:54 +0200710done:
711 part->bd_openers++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 return 0;
Christoph Hellwig362529d2021-05-25 08:12:54 +0200713
714out_blkdev_put:
Christoph Hellwig9d3b8812021-07-22 09:53:58 +0200715 blkdev_put_whole(bdev_whole(part), mode);
Christoph Hellwig362529d2021-05-25 08:12:54 +0200716 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717}
718
Christoph Hellwigc8276b92021-05-25 08:12:58 +0200719static void blkdev_put_part(struct block_device *part, fmode_t mode)
720{
721 struct block_device *whole = bdev_whole(part);
722
723 if (--part->bd_openers)
724 return;
725 blkdev_flush_mapping(part);
Christoph Hellwigab4b5702021-05-25 08:12:59 +0200726 whole->bd_disk->open_partitions--;
Christoph Hellwigc8276b92021-05-25 08:12:58 +0200727 blkdev_put_whole(whole, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728}
729
Christoph Hellwig22ae8ce2020-11-26 09:23:26 +0100730struct block_device *blkdev_get_no_open(dev_t dev)
731{
732 struct block_device *bdev;
Christoph Hellwig9d3b8812021-07-22 09:53:58 +0200733 struct inode *inode;
Christoph Hellwig22ae8ce2020-11-26 09:23:26 +0100734
Christoph Hellwig9d3b8812021-07-22 09:53:58 +0200735 inode = ilookup(blockdev_superblock, dev);
736 if (!inode) {
Christoph Hellwig22ae8ce2020-11-26 09:23:26 +0100737 blk_request_module(dev);
Christoph Hellwig9d3b8812021-07-22 09:53:58 +0200738 inode = ilookup(blockdev_superblock, dev);
739 if (!inode)
Christoph Hellwig6c60ff02021-05-14 15:18:41 +0200740 return NULL;
Christoph Hellwig22ae8ce2020-11-26 09:23:26 +0100741 }
742
Christoph Hellwig9d3b8812021-07-22 09:53:58 +0200743 /* switch from the inode reference to a device mode one: */
744 bdev = &BDEV_I(inode)->bdev;
745 if (!kobject_get_unless_zero(&bdev->bd_device.kobj))
746 bdev = NULL;
747 iput(inode);
Christoph Hellwig22ae8ce2020-11-26 09:23:26 +0100748 return bdev;
Christoph Hellwig22ae8ce2020-11-26 09:23:26 +0100749}
750
751void blkdev_put_no_open(struct block_device *bdev)
752{
Christoph Hellwig9d3b8812021-07-22 09:53:58 +0200753 put_device(&bdev->bd_device);
Christoph Hellwig22ae8ce2020-11-26 09:23:26 +0100754}
755
Tejun Heod4d77622010-11-13 11:55:18 +0100756/**
Christoph Hellwig4e7b5672020-11-23 13:38:40 +0100757 * blkdev_get_by_dev - open a block device by device number
758 * @dev: device number of block device to open
Tejun Heod4d77622010-11-13 11:55:18 +0100759 * @mode: FMODE_* mask
760 * @holder: exclusive holder identifier
761 *
Christoph Hellwig4e7b5672020-11-23 13:38:40 +0100762 * Open the block device described by device number @dev. If @mode includes
763 * %FMODE_EXCL, the block device is opened with exclusive access. Specifying
764 * %FMODE_EXCL with a %NULL @holder is invalid. Exclusive opens may nest for
765 * the same @holder.
Tejun Heod4d77622010-11-13 11:55:18 +0100766 *
Christoph Hellwig4e7b5672020-11-23 13:38:40 +0100767 * Use this interface ONLY if you really do not have anything better - i.e. when
768 * you are behind a truly sucky interface and all you are given is a device
769 * number. Everything else should use blkdev_get_by_path().
Tejun Heod4d77622010-11-13 11:55:18 +0100770 *
771 * CONTEXT:
772 * Might sleep.
773 *
774 * RETURNS:
Christoph Hellwig4e7b5672020-11-23 13:38:40 +0100775 * Reference to the block_device on success, ERR_PTR(-errno) on failure.
Tejun Heod4d77622010-11-13 11:55:18 +0100776 */
Christoph Hellwig4e7b5672020-11-23 13:38:40 +0100777struct block_device *blkdev_get_by_dev(dev_t dev, fmode_t mode, void *holder)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778{
Christoph Hellwig5b56b6ed2020-11-23 10:19:22 +0100779 bool unblock_events = true;
Christoph Hellwig4e7b5672020-11-23 13:38:40 +0100780 struct block_device *bdev;
Christoph Hellwig5b56b6ed2020-11-23 10:19:22 +0100781 struct gendisk *disk;
Christoph Hellwig5b56b6ed2020-11-23 10:19:22 +0100782 int ret;
Tejun Heoe525fd82010-11-13 11:55:17 +0100783
Christoph Hellwig7918f0f2020-11-23 13:44:44 +0100784 ret = devcgroup_check_permission(DEVCG_DEV_BLOCK,
Christoph Hellwig4e7b5672020-11-23 13:38:40 +0100785 MAJOR(dev), MINOR(dev),
Christoph Hellwig7918f0f2020-11-23 13:44:44 +0100786 ((mode & FMODE_READ) ? DEVCG_ACC_READ : 0) |
787 ((mode & FMODE_WRITE) ? DEVCG_ACC_WRITE : 0));
Christoph Hellwige5c7fb42020-08-31 20:02:36 +0200788 if (ret)
Christoph Hellwig4e7b5672020-11-23 13:38:40 +0100789 return ERR_PTR(ret);
790
Christoph Hellwig22ae8ce2020-11-26 09:23:26 +0100791 bdev = blkdev_get_no_open(dev);
792 if (!bdev)
793 return ERR_PTR(-ENXIO);
794 disk = bdev->bd_disk;
Christoph Hellwige5c7fb42020-08-31 20:02:36 +0200795
Christoph Hellwig5b56b6ed2020-11-23 10:19:22 +0100796 if (mode & FMODE_EXCL) {
Christoph Hellwig37c3fc92020-11-25 21:20:08 +0100797 ret = bd_prepare_to_claim(bdev, holder);
Christoph Hellwig5b56b6ed2020-11-23 10:19:22 +0100798 if (ret)
Christoph Hellwig37c3fc92020-11-25 21:20:08 +0100799 goto put_blkdev;
Christoph Hellwig5b56b6ed2020-11-23 10:19:22 +0100800 }
801
802 disk_block_events(disk);
803
Christoph Hellwiga8698702021-05-25 08:12:56 +0200804 mutex_lock(&disk->open_mutex);
Christoph Hellwig362529d2021-05-25 08:12:54 +0200805 ret = -ENXIO;
Christoph Hellwig50b4aec2021-08-09 08:40:28 +0200806 if (!disk_live(disk))
Christoph Hellwig362529d2021-05-25 08:12:54 +0200807 goto abort_claiming;
Ming Leiefcf5932021-11-11 10:03:43 +0800808 if (!try_module_get(disk->fops->owner))
809 goto abort_claiming;
Christoph Hellwig362529d2021-05-25 08:12:54 +0200810 if (bdev_is_partition(bdev))
811 ret = blkdev_get_part(bdev, mode);
812 else
813 ret = blkdev_get_whole(bdev, mode);
Christoph Hellwig22ae8ce2020-11-26 09:23:26 +0100814 if (ret)
Ming Leiefcf5932021-11-11 10:03:43 +0800815 goto put_module;
Christoph Hellwig22ae8ce2020-11-26 09:23:26 +0100816 if (mode & FMODE_EXCL) {
Christoph Hellwig37c3fc92020-11-25 21:20:08 +0100817 bd_finish_claiming(bdev, holder);
Christoph Hellwig5b56b6ed2020-11-23 10:19:22 +0100818
819 /*
820 * Block event polling for write claims if requested. Any write
821 * holder makes the write_holder state stick until all are
822 * released. This is good enough and tracking individual
823 * writeable reference is too fragile given the way @mode is
824 * used in blkdev_get/put().
825 */
826 if ((mode & FMODE_WRITE) && !bdev->bd_write_holder &&
Christoph Hellwig1545e0b2021-11-22 14:06:13 +0100827 (disk->event_flags & DISK_EVENT_FLAG_BLOCK_ON_EXCL_WRITE)) {
Christoph Hellwig5b56b6ed2020-11-23 10:19:22 +0100828 bdev->bd_write_holder = true;
829 unblock_events = false;
830 }
831 }
Christoph Hellwiga8698702021-05-25 08:12:56 +0200832 mutex_unlock(&disk->open_mutex);
Christoph Hellwig5b56b6ed2020-11-23 10:19:22 +0100833
834 if (unblock_events)
835 disk_unblock_events(disk);
Christoph Hellwig22ae8ce2020-11-26 09:23:26 +0100836 return bdev;
Ming Leiefcf5932021-11-11 10:03:43 +0800837put_module:
838 module_put(disk->fops->owner);
Christoph Hellwig22ae8ce2020-11-26 09:23:26 +0100839abort_claiming:
840 if (mode & FMODE_EXCL)
Christoph Hellwig37c3fc92020-11-25 21:20:08 +0100841 bd_abort_claiming(bdev, holder);
Christoph Hellwiga8698702021-05-25 08:12:56 +0200842 mutex_unlock(&disk->open_mutex);
Christoph Hellwig22ae8ce2020-11-26 09:23:26 +0100843 disk_unblock_events(disk);
Christoph Hellwig22ae8ce2020-11-26 09:23:26 +0100844put_blkdev:
845 blkdev_put_no_open(bdev);
Christoph Hellwig22ae8ce2020-11-26 09:23:26 +0100846 return ERR_PTR(ret);
NeilBrown37be4122006-12-08 02:36:16 -0800847}
Christoph Hellwig4e7b5672020-11-23 13:38:40 +0100848EXPORT_SYMBOL(blkdev_get_by_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849
Tejun Heod4d77622010-11-13 11:55:18 +0100850/**
851 * blkdev_get_by_path - open a block device by name
852 * @path: path to the block device to open
853 * @mode: FMODE_* mask
854 * @holder: exclusive holder identifier
855 *
Christoph Hellwig4e7b5672020-11-23 13:38:40 +0100856 * Open the block device described by the device file at @path. If @mode
857 * includes %FMODE_EXCL, the block device is opened with exclusive access.
858 * Specifying %FMODE_EXCL with a %NULL @holder is invalid. Exclusive opens may
859 * nest for the same @holder.
Tejun Heod4d77622010-11-13 11:55:18 +0100860 *
861 * CONTEXT:
862 * Might sleep.
863 *
864 * RETURNS:
Christoph Hellwig4e7b5672020-11-23 13:38:40 +0100865 * Reference to the block_device on success, ERR_PTR(-errno) on failure.
Tejun Heod4d77622010-11-13 11:55:18 +0100866 */
867struct block_device *blkdev_get_by_path(const char *path, fmode_t mode,
868 void *holder)
869{
870 struct block_device *bdev;
Christoph Hellwig4e7b5672020-11-23 13:38:40 +0100871 dev_t dev;
872 int error;
Tejun Heod4d77622010-11-13 11:55:18 +0100873
Christoph Hellwig4e7b5672020-11-23 13:38:40 +0100874 error = lookup_bdev(path, &dev);
875 if (error)
876 return ERR_PTR(error);
Tejun Heod4d77622010-11-13 11:55:18 +0100877
Christoph Hellwig4e7b5672020-11-23 13:38:40 +0100878 bdev = blkdev_get_by_dev(dev, mode, holder);
879 if (!IS_ERR(bdev) && (mode & FMODE_WRITE) && bdev_read_only(bdev)) {
Chuck Ebberte51900f2011-02-16 18:11:53 -0500880 blkdev_put(bdev, mode);
881 return ERR_PTR(-EACCES);
882 }
883
Tejun Heod4d77622010-11-13 11:55:18 +0100884 return bdev;
885}
886EXPORT_SYMBOL(blkdev_get_by_path);
887
Al Viro4385bab2013-05-05 22:11:03 -0400888void blkdev_put(struct block_device *bdev, fmode_t mode)
Al Viro572c4892007-10-08 13:24:05 -0400889{
890 struct gendisk *disk = bdev->bd_disk;
Al Viro572c4892007-10-08 13:24:05 -0400891
892 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 * Sync early if it looks like we're the last one. If someone else
Pavel Emelianov6a2aae02006-10-28 10:38:33 -0700894 * opens the block device between now and the decrement of bd_openers
895 * then we did a sync that we didn't need to, but that's not the end
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 * of the world and we want to avoid long (could be several minute)
Al Viro572c4892007-10-08 13:24:05 -0400897 * syncs while holding the mutex.
898 */
Tejun Heoe525fd82010-11-13 11:55:17 +0100899 if (bdev->bd_openers == 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 sync_blockdev(bdev);
901
Christoph Hellwiga8698702021-05-25 08:12:56 +0200902 mutex_lock(&disk->open_mutex);
Tejun Heoe525fd82010-11-13 11:55:17 +0100903 if (mode & FMODE_EXCL) {
Christoph Hellwiga954ea82020-11-23 13:29:55 +0100904 struct block_device *whole = bdev_whole(bdev);
Tejun Heo6a027ef2010-11-13 11:55:17 +0100905 bool bdev_free;
906
907 /*
908 * Release a claim on the device. The holder fields
Christoph Hellwiga8698702021-05-25 08:12:56 +0200909 * are protected with bdev_lock. open_mutex is to
Tejun Heo6a027ef2010-11-13 11:55:17 +0100910 * synchronize disk_holder unlinking.
911 */
Tejun Heo6a027ef2010-11-13 11:55:17 +0100912 spin_lock(&bdev_lock);
913
914 WARN_ON_ONCE(--bdev->bd_holders < 0);
Christoph Hellwiga954ea82020-11-23 13:29:55 +0100915 WARN_ON_ONCE(--whole->bd_holders < 0);
Tejun Heo6a027ef2010-11-13 11:55:17 +0100916
Tejun Heo6a027ef2010-11-13 11:55:17 +0100917 if ((bdev_free = !bdev->bd_holders))
918 bdev->bd_holder = NULL;
Christoph Hellwiga954ea82020-11-23 13:29:55 +0100919 if (!whole->bd_holders)
920 whole->bd_holder = NULL;
Tejun Heo6a027ef2010-11-13 11:55:17 +0100921
922 spin_unlock(&bdev_lock);
923
Tejun Heo77ea8872010-12-08 20:57:37 +0100924 /*
925 * If this was the last claim, remove holder link and
926 * unblock evpoll if it was a write holder.
927 */
Tejun Heo85ef06d2011-07-01 16:17:47 +0200928 if (bdev_free && bdev->bd_write_holder) {
Christoph Hellwig5b56b6ed2020-11-23 10:19:22 +0100929 disk_unblock_events(disk);
Tejun Heo85ef06d2011-07-01 16:17:47 +0200930 bdev->bd_write_holder = false;
Tejun Heo77ea8872010-12-08 20:57:37 +0100931 }
Tejun Heo69362172011-03-09 19:54:27 +0100932 }
Tejun Heo77ea8872010-12-08 20:57:37 +0100933
Tejun Heo85ef06d2011-07-01 16:17:47 +0200934 /*
935 * Trigger event checking and tell drivers to flush MEDIA_CHANGE
936 * event. This is to ensure detection of media removal commanded
937 * from userland - e.g. eject(1).
938 */
Christoph Hellwig5b56b6ed2020-11-23 10:19:22 +0100939 disk_flush_events(disk, DISK_EVENT_MEDIA_CHANGE);
Tejun Heo85ef06d2011-07-01 16:17:47 +0200940
Christoph Hellwigc8276b92021-05-25 08:12:58 +0200941 if (bdev_is_partition(bdev))
942 blkdev_put_part(bdev, mode);
943 else
944 blkdev_put_whole(bdev, mode);
Christoph Hellwiga8698702021-05-25 08:12:56 +0200945 mutex_unlock(&disk->open_mutex);
946
Ming Leiefcf5932021-11-11 10:03:43 +0800947 module_put(disk->fops->owner);
Christoph Hellwig22ae8ce2020-11-26 09:23:26 +0100948 blkdev_put_no_open(bdev);
NeilBrown37be4122006-12-08 02:36:16 -0800949}
Peter Zijlstra2e7b6512006-12-08 02:36:13 -0800950EXPORT_SYMBOL(blkdev_put);
951
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952/**
Matthew Wilcox (Oracle)0ba45662021-12-13 17:11:13 +0000953 * lookup_bdev() - Look up a struct block_device by name.
954 * @pathname: Name of the block device in the filesystem.
955 * @dev: Pointer to the block device's dev_t, if found.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 *
Jackie Liu057178c2021-10-21 15:13:43 +0800957 * Lookup the block device's dev_t at @pathname in the current
Matthew Wilcox (Oracle)0ba45662021-12-13 17:11:13 +0000958 * namespace if possible and return it in @dev.
Jackie Liu057178c2021-10-21 15:13:43 +0800959 *
Matthew Wilcox (Oracle)0ba45662021-12-13 17:11:13 +0000960 * Context: May sleep.
961 * Return: 0 if succeeded, negative errno otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 */
Christoph Hellwig4e7b5672020-11-23 13:38:40 +0100963int lookup_bdev(const char *pathname, dev_t *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 struct inode *inode;
Al Viro421748e2008-08-02 01:04:36 -0400966 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 int error;
968
Al Viro421748e2008-08-02 01:04:36 -0400969 if (!pathname || !*pathname)
Christoph Hellwig4e7b5672020-11-23 13:38:40 +0100970 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971
Al Viro421748e2008-08-02 01:04:36 -0400972 error = kern_path(pathname, LOOKUP_FOLLOW, &path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 if (error)
Christoph Hellwig4e7b5672020-11-23 13:38:40 +0100974 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975
David Howellsbb6687342015-03-17 22:26:21 +0000976 inode = d_backing_inode(path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 error = -ENOTBLK;
978 if (!S_ISBLK(inode->i_mode))
Christoph Hellwig4e7b5672020-11-23 13:38:40 +0100979 goto out_path_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 error = -EACCES;
Eric W. Biedermana2982cc2016-06-09 15:34:02 -0500981 if (!may_open_dev(&path))
Christoph Hellwig4e7b5672020-11-23 13:38:40 +0100982 goto out_path_put;
983
984 *dev = inode->i_rdev;
985 error = 0;
986out_path_put:
Al Viro421748e2008-08-02 01:04:36 -0400987 path_put(&path);
Christoph Hellwig4e7b5672020-11-23 13:38:40 +0100988 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989}
Al Virod5686b42008-08-01 05:00:11 -0400990EXPORT_SYMBOL(lookup_bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991
NeilBrown93b270f2011-02-24 17:25:47 +1100992int __invalidate_device(struct block_device *bdev, bool kill_dirty)
David Howellsb71e8a42006-08-29 19:06:11 +0100993{
994 struct super_block *sb = get_super(bdev);
995 int res = 0;
996
997 if (sb) {
998 /*
999 * no need to lock the super, get_super holds the
1000 * read mutex so the filesystem cannot go away
1001 * under us (->put_super runs with the write lock
1002 * hold).
1003 */
1004 shrink_dcache_sb(sb);
NeilBrown93b270f2011-02-24 17:25:47 +11001005 res = invalidate_inodes(sb, kill_dirty);
David Howellsb71e8a42006-08-29 19:06:11 +01001006 drop_super(sb);
1007 }
Peter Zijlstraf98393a2007-05-06 14:49:54 -07001008 invalidate_bdev(bdev);
David Howellsb71e8a42006-08-29 19:06:11 +01001009 return res;
1010}
1011EXPORT_SYMBOL(__invalidate_device);
Jan Kara5c0d6b62012-07-03 16:45:31 +02001012
Christoph Hellwig1e03a362021-10-19 08:25:30 +02001013void sync_bdevs(bool wait)
Jan Kara5c0d6b62012-07-03 16:45:31 +02001014{
1015 struct inode *inode, *old_inode = NULL;
1016
Dave Chinner74278da2015-03-04 12:37:22 -05001017 spin_lock(&blockdev_superblock->s_inode_list_lock);
Jan Kara5c0d6b62012-07-03 16:45:31 +02001018 list_for_each_entry(inode, &blockdev_superblock->s_inodes, i_sb_list) {
1019 struct address_space *mapping = inode->i_mapping;
Rabin Vincentaf309222016-12-01 09:18:28 +01001020 struct block_device *bdev;
Jan Kara5c0d6b62012-07-03 16:45:31 +02001021
1022 spin_lock(&inode->i_lock);
1023 if (inode->i_state & (I_FREEING|I_WILL_FREE|I_NEW) ||
1024 mapping->nrpages == 0) {
1025 spin_unlock(&inode->i_lock);
1026 continue;
1027 }
1028 __iget(inode);
1029 spin_unlock(&inode->i_lock);
Dave Chinner74278da2015-03-04 12:37:22 -05001030 spin_unlock(&blockdev_superblock->s_inode_list_lock);
Jan Kara5c0d6b62012-07-03 16:45:31 +02001031 /*
1032 * We hold a reference to 'inode' so it couldn't have been
1033 * removed from s_inodes list while we dropped the
Dave Chinner74278da2015-03-04 12:37:22 -05001034 * s_inode_list_lock We cannot iput the inode now as we can
Jan Kara5c0d6b62012-07-03 16:45:31 +02001035 * be holding the last reference and we cannot iput it under
Dave Chinner74278da2015-03-04 12:37:22 -05001036 * s_inode_list_lock. So we keep the reference and iput it
Jan Kara5c0d6b62012-07-03 16:45:31 +02001037 * later.
1038 */
1039 iput(old_inode);
1040 old_inode = inode;
Rabin Vincentaf309222016-12-01 09:18:28 +01001041 bdev = I_BDEV(inode);
Jan Kara5c0d6b62012-07-03 16:45:31 +02001042
Christoph Hellwiga8698702021-05-25 08:12:56 +02001043 mutex_lock(&bdev->bd_disk->open_mutex);
Christoph Hellwig1e03a362021-10-19 08:25:30 +02001044 if (!bdev->bd_openers) {
1045 ; /* skip */
1046 } else if (wait) {
1047 /*
1048 * We keep the error status of individual mapping so
1049 * that applications can catch the writeback error using
1050 * fsync(2). See filemap_fdatawait_keep_errors() for
1051 * details.
1052 */
1053 filemap_fdatawait_keep_errors(inode->i_mapping);
1054 } else {
1055 filemap_fdatawrite(inode->i_mapping);
1056 }
Christoph Hellwiga8698702021-05-25 08:12:56 +02001057 mutex_unlock(&bdev->bd_disk->open_mutex);
Jan Kara5c0d6b62012-07-03 16:45:31 +02001058
Dave Chinner74278da2015-03-04 12:37:22 -05001059 spin_lock(&blockdev_superblock->s_inode_list_lock);
Jan Kara5c0d6b62012-07-03 16:45:31 +02001060 }
Dave Chinner74278da2015-03-04 12:37:22 -05001061 spin_unlock(&blockdev_superblock->s_inode_list_lock);
Jan Kara5c0d6b62012-07-03 16:45:31 +02001062 iput(old_inode);
1063}