blob: 6d6e4d50834cd00b9d3da1db583ffae10079c15c [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/*
3 * linux/fs/block_dev.c
4 *
5 * Copyright (C) 1991, 1992 Linus Torvalds
6 * Copyright (C) 2001 Andrea Arcangeli <andrea@suse.de> SuSE
7 */
8
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/init.h>
10#include <linux/mm.h>
11#include <linux/fcntl.h>
12#include <linux/slab.h>
13#include <linux/kmod.h>
14#include <linux/major.h>
Pavel Emelyanov7db9cfd2008-06-05 22:46:27 -070015#include <linux/device_cgroup.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/highmem.h>
17#include <linux/blkdev.h>
Tejun Heo66114ca2015-05-22 17:13:32 -040018#include <linux/backing-dev.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/module.h>
20#include <linux/blkpg.h>
Muthu Kumarb502bd12012-03-23 15:01:50 -070021#include <linux/magic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/buffer_head.h>
Al Viroff01bb42011-09-16 02:31:11 -040023#include <linux/swap.h>
Nick Piggin585d3bc2009-02-25 10:44:19 +010024#include <linux/pagevec.h>
David Howells811d7362006-08-29 19:06:09 +010025#include <linux/writeback.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/mpage.h>
27#include <linux/mount.h>
David Howells9030d162019-03-25 16:38:23 +000028#include <linux/pseudo_fs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/uio.h>
30#include <linux/namei.h>
Vignesh Babu BM1368c4f2007-05-08 00:24:32 -070031#include <linux/log2.h>
Al Viroff01bb42011-09-16 02:31:11 -040032#include <linux/cleancache.h>
Christoph Hellwig189ce2b2016-10-31 11:59:25 -060033#include <linux/task_io_accounting_ops.h>
Darrick J. Wong25f4c412016-10-11 13:51:11 -070034#include <linux/falloc.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080035#include <linux/uaccess.h>
Domenico Andreoli56939e02020-03-23 08:22:15 -070036#include <linux/suspend.h>
David Howells07f3f052006-09-30 20:52:18 +020037#include "internal.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
39struct bdev_inode {
40 struct block_device bdev;
41 struct inode vfs_inode;
42};
43
Adrian Bunk4c54ac62008-02-18 13:48:31 +010044static const struct address_space_operations def_blk_aops;
45
Linus Torvalds1da177e2005-04-16 15:20:36 -070046static inline struct bdev_inode *BDEV_I(struct inode *inode)
47{
48 return container_of(inode, struct bdev_inode, vfs_inode);
49}
50
Geert Uytterhoevenff5053f2015-06-26 13:58:32 +020051struct block_device *I_BDEV(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -070052{
53 return &BDEV_I(inode)->bdev;
54}
Linus Torvalds1da177e2005-04-16 15:20:36 -070055EXPORT_SYMBOL(I_BDEV);
56
Vivek Goyaldbd3ca52015-11-09 09:23:40 -070057static void bdev_write_inode(struct block_device *bdev)
Christoph Hellwig564f00f2015-01-14 10:42:33 +010058{
Vivek Goyaldbd3ca52015-11-09 09:23:40 -070059 struct inode *inode = bdev->bd_inode;
60 int ret;
61
Christoph Hellwig564f00f2015-01-14 10:42:33 +010062 spin_lock(&inode->i_lock);
63 while (inode->i_state & I_DIRTY) {
64 spin_unlock(&inode->i_lock);
Vivek Goyaldbd3ca52015-11-09 09:23:40 -070065 ret = write_inode_now(inode, true);
66 if (ret) {
67 char name[BDEVNAME_SIZE];
68 pr_warn_ratelimited("VFS: Dirty inode writeback failed "
69 "for block device %s (err=%d).\n",
70 bdevname(bdev, name), ret);
71 }
Christoph Hellwig564f00f2015-01-14 10:42:33 +010072 spin_lock(&inode->i_lock);
73 }
74 spin_unlock(&inode->i_lock);
75}
76
Peter Zijlstraf9a14392007-05-06 14:49:55 -070077/* Kill _all_ buffers and pagecache , dirty or not.. */
Zheng Bin3373a342020-06-18 12:21:38 +080078static void kill_bdev(struct block_device *bdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070079{
Al Viroff01bb42011-09-16 02:31:11 -040080 struct address_space *mapping = bdev->bd_inode->i_mapping;
81
Ross Zwislerf9fe48b2016-01-22 15:10:40 -080082 if (mapping->nrpages == 0 && mapping->nrexceptional == 0)
Peter Zijlstraf9a14392007-05-06 14:49:55 -070083 return;
Al Viroff01bb42011-09-16 02:31:11 -040084
Peter Zijlstraf9a14392007-05-06 14:49:55 -070085 invalidate_bh_lrus();
Al Viroff01bb42011-09-16 02:31:11 -040086 truncate_inode_pages(mapping, 0);
Zheng Bin3373a342020-06-18 12:21:38 +080087}
Al Viroff01bb42011-09-16 02:31:11 -040088
89/* Invalidate clean unused buffers and pagecache. */
90void invalidate_bdev(struct block_device *bdev)
91{
92 struct address_space *mapping = bdev->bd_inode->i_mapping;
93
Andrey Ryabinina5f6a6a2017-05-03 14:56:02 -070094 if (mapping->nrpages) {
95 invalidate_bh_lrus();
96 lru_add_drain_all(); /* make sure all lru add caches are flushed */
97 invalidate_mapping_pages(mapping, 0, -1);
98 }
Al Viroff01bb42011-09-16 02:31:11 -040099 /* 99% of the time, we don't need to flush the cleancache on the bdev.
100 * But, for the strange corners, lets be cautious
101 */
Dan Magenheimer31677602011-09-21 11:56:28 -0400102 cleancache_invalidate_inode(mapping);
Al Viroff01bb42011-09-16 02:31:11 -0400103}
104EXPORT_SYMBOL(invalidate_bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
Jan Kara384d87e2020-09-04 10:58:52 +0200106/*
107 * Drop all buffers & page cache for given bdev range. This function bails
108 * with error if bdev has other exclusive owner (such as filesystem).
109 */
110int truncate_bdev_range(struct block_device *bdev, fmode_t mode,
111 loff_t lstart, loff_t lend)
112{
113 struct block_device *claimed_bdev = NULL;
114 int err;
115
116 /*
117 * If we don't hold exclusive handle for the device, upgrade to it
118 * while we discard the buffer cache to avoid discarding buffers
119 * under live filesystem.
120 */
121 if (!(mode & FMODE_EXCL)) {
122 claimed_bdev = bdev->bd_contains;
123 err = bd_prepare_to_claim(bdev, claimed_bdev,
124 truncate_bdev_range);
125 if (err)
126 return err;
127 }
128 truncate_inode_pages_range(bdev->bd_inode->i_mapping, lstart, lend);
129 if (claimed_bdev)
130 bd_abort_claiming(bdev, claimed_bdev, truncate_bdev_range);
131 return 0;
132}
133EXPORT_SYMBOL(truncate_bdev_range);
134
Jan Kara04906b22019-01-14 09:48:10 +0100135static void set_init_blocksize(struct block_device *bdev)
136{
Christoph Hellwig6b7b1812020-06-26 10:01:55 +0200137 bdev->bd_inode->i_blkbits = blksize_bits(bdev_logical_block_size(bdev));
Jan Kara04906b22019-01-14 09:48:10 +0100138}
139
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140int set_blocksize(struct block_device *bdev, int size)
141{
142 /* Size must be a power of two, and between 512 and PAGE_SIZE */
Vignesh Babu BM1368c4f2007-05-08 00:24:32 -0700143 if (size > PAGE_SIZE || size < 512 || !is_power_of_2(size))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 return -EINVAL;
145
146 /* Size cannot be smaller than the size supported by the device */
Martin K. Petersene1defc42009-05-22 17:17:49 -0400147 if (size < bdev_logical_block_size(bdev))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 return -EINVAL;
149
150 /* Don't change the size if it is same as current */
Christoph Hellwig6b7b1812020-06-26 10:01:55 +0200151 if (bdev->bd_inode->i_blkbits != blksize_bits(size)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 sync_blockdev(bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 bdev->bd_inode->i_blkbits = blksize_bits(size);
154 kill_bdev(bdev);
155 }
156 return 0;
157}
158
159EXPORT_SYMBOL(set_blocksize);
160
161int sb_set_blocksize(struct super_block *sb, int size)
162{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 if (set_blocksize(sb->s_bdev, size))
164 return 0;
165 /* If we get here, we know size is power of two
166 * and it's value is between 512 and PAGE_SIZE */
167 sb->s_blocksize = size;
Coywolf Qi Hunt38885bd2006-03-24 03:18:05 -0800168 sb->s_blocksize_bits = blksize_bits(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 return sb->s_blocksize;
170}
171
172EXPORT_SYMBOL(sb_set_blocksize);
173
174int sb_min_blocksize(struct super_block *sb, int size)
175{
Martin K. Petersene1defc42009-05-22 17:17:49 -0400176 int minsize = bdev_logical_block_size(sb->s_bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 if (size < minsize)
178 size = minsize;
179 return sb_set_blocksize(sb, size);
180}
181
182EXPORT_SYMBOL(sb_min_blocksize);
183
184static int
185blkdev_get_block(struct inode *inode, sector_t iblock,
186 struct buffer_head *bh, int create)
187{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 bh->b_bdev = I_BDEV(inode);
189 bh->b_blocknr = iblock;
190 set_buffer_mapped(bh);
191 return 0;
192}
193
Dan Williams4ebb16c2015-10-28 07:48:19 +0900194static struct inode *bdev_file_inode(struct file *file)
195{
196 return file->f_mapping->host;
197}
198
Jens Axboe78250c02016-11-17 17:50:47 +0100199static unsigned int dio_bio_write_op(struct kiocb *iocb)
200{
201 unsigned int op = REQ_OP_WRITE | REQ_SYNC | REQ_IDLE;
202
203 /* avoid the need for a I/O completion work item */
204 if (iocb->ki_flags & IOCB_DSYNC)
205 op |= REQ_FUA;
206 return op;
207}
208
Christoph Hellwig189ce2b2016-10-31 11:59:25 -0600209#define DIO_INLINE_BIO_VECS 4
210
211static void blkdev_bio_end_io_simple(struct bio *bio)
212{
213 struct task_struct *waiter = bio->bi_private;
214
215 WRITE_ONCE(bio->bi_private, NULL);
Jens Axboe06193172018-11-13 21:16:54 -0700216 blk_wake_io_task(waiter);
Christoph Hellwig189ce2b2016-10-31 11:59:25 -0600217}
218
219static ssize_t
220__blkdev_direct_IO_simple(struct kiocb *iocb, struct iov_iter *iter,
221 int nr_pages)
222{
223 struct file *file = iocb->ki_filp;
224 struct block_device *bdev = I_BDEV(bdev_file_inode(file));
Christoph Hellwig9fec4a22019-06-26 15:49:26 +0200225 struct bio_vec inline_vecs[DIO_INLINE_BIO_VECS], *vecs;
Christoph Hellwig189ce2b2016-10-31 11:59:25 -0600226 loff_t pos = iocb->ki_pos;
227 bool should_dirty = false;
228 struct bio bio;
229 ssize_t ret;
230 blk_qc_t qc;
Christoph Hellwig189ce2b2016-10-31 11:59:25 -0600231
Jens Axboe9a794fb2016-11-22 08:12:39 -0700232 if ((pos | iov_iter_alignment(iter)) &
233 (bdev_logical_block_size(bdev) - 1))
Christoph Hellwig189ce2b2016-10-31 11:59:25 -0600234 return -EINVAL;
235
Jens Axboe72ecad22016-11-16 23:11:42 -0700236 if (nr_pages <= DIO_INLINE_BIO_VECS)
237 vecs = inline_vecs;
238 else {
Kees Cook6da2ec52018-06-12 13:55:00 -0700239 vecs = kmalloc_array(nr_pages, sizeof(struct bio_vec),
240 GFP_KERNEL);
Jens Axboe72ecad22016-11-16 23:11:42 -0700241 if (!vecs)
242 return -ENOMEM;
243 }
244
Ming Lei3a83f462016-11-22 08:57:21 -0700245 bio_init(&bio, vecs, nr_pages);
Christoph Hellwig74d46992017-08-23 19:10:32 +0200246 bio_set_dev(&bio, bdev);
Damien Le Moal4d1a4762016-11-22 15:38:49 +0900247 bio.bi_iter.bi_sector = pos >> 9;
Jens Axboe45d06cf2017-06-27 11:01:22 -0600248 bio.bi_write_hint = iocb->ki_hint;
Christoph Hellwig189ce2b2016-10-31 11:59:25 -0600249 bio.bi_private = current;
250 bio.bi_end_io = blkdev_bio_end_io_simple;
Adam Manzanares074111c2018-05-22 10:52:20 -0700251 bio.bi_ioprio = iocb->ki_ioprio;
Christoph Hellwig189ce2b2016-10-31 11:59:25 -0600252
253 ret = bio_iov_iter_get_pages(&bio, iter);
254 if (unlikely(ret))
Martin Wilck9362dd12018-07-25 23:15:08 +0200255 goto out;
Christoph Hellwig189ce2b2016-10-31 11:59:25 -0600256 ret = bio.bi_iter.bi_size;
257
258 if (iov_iter_rw(iter) == READ) {
Jens Axboe78250c02016-11-17 17:50:47 +0100259 bio.bi_opf = REQ_OP_READ;
Christoph Hellwig189ce2b2016-10-31 11:59:25 -0600260 if (iter_is_iovec(iter))
261 should_dirty = true;
262 } else {
Jens Axboe78250c02016-11-17 17:50:47 +0100263 bio.bi_opf = dio_bio_write_op(iocb);
Christoph Hellwig189ce2b2016-10-31 11:59:25 -0600264 task_io_account_write(ret);
265 }
Jens Axboed1e36282018-08-29 10:36:56 -0600266 if (iocb->ki_flags & IOCB_HIPRI)
Jens Axboe0bbb2802018-12-21 09:10:46 -0700267 bio_set_polled(&bio, iocb);
Christoph Hellwig189ce2b2016-10-31 11:59:25 -0600268
269 qc = submit_bio(&bio);
270 for (;;) {
Linus Torvalds1ac5cd42019-01-02 10:46:03 -0800271 set_current_state(TASK_UNINTERRUPTIBLE);
Christoph Hellwig189ce2b2016-10-31 11:59:25 -0600272 if (!READ_ONCE(bio.bi_private))
273 break;
274 if (!(iocb->ki_flags & IOCB_HIPRI) ||
Jens Axboe0a1b8b82018-11-26 08:24:43 -0700275 !blk_poll(bdev_get_queue(bdev), qc, true))
Ming Leie6249cd2020-05-03 09:54:22 +0800276 blk_io_schedule();
Christoph Hellwig189ce2b2016-10-31 11:59:25 -0600277 }
278 __set_current_state(TASK_RUNNING);
279
Christoph Hellwig9fec4a22019-06-26 15:49:26 +0200280 bio_release_pages(&bio, should_dirty);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200281 if (unlikely(bio.bi_status))
Linus Torvaldsc6b1e362017-07-03 10:34:51 -0700282 ret = blk_status_to_errno(bio.bi_status);
Jens Axboe9ae3b3f52017-06-28 15:30:13 -0600283
Martin Wilck9362dd12018-07-25 23:15:08 +0200284out:
285 if (vecs != inline_vecs)
286 kfree(vecs);
287
Jens Axboe9ae3b3f52017-06-28 15:30:13 -0600288 bio_uninit(&bio);
289
Christoph Hellwig189ce2b2016-10-31 11:59:25 -0600290 return ret;
291}
292
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700293struct blkdev_dio {
294 union {
295 struct kiocb *iocb;
296 struct task_struct *waiter;
297 };
298 size_t size;
299 atomic_t ref;
300 bool multi_bio : 1;
301 bool should_dirty : 1;
302 bool is_sync : 1;
303 struct bio bio;
304};
305
Kent Overstreet52190f82018-05-20 18:25:55 -0400306static struct bio_set blkdev_dio_pool;
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700307
Christoph Hellwigeae83ce2018-11-30 08:31:52 -0700308static int blkdev_iopoll(struct kiocb *kiocb, bool wait)
309{
310 struct block_device *bdev = I_BDEV(kiocb->ki_filp->f_mapping->host);
311 struct request_queue *q = bdev_get_queue(bdev);
312
313 return blk_poll(q, READ_ONCE(kiocb->ki_cookie), wait);
314}
315
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700316static void blkdev_bio_end_io(struct bio *bio)
317{
318 struct blkdev_dio *dio = bio->bi_private;
319 bool should_dirty = dio->should_dirty;
320
Jason Yana89afe52019-04-12 10:09:16 +0800321 if (bio->bi_status && !dio->bio.bi_status)
322 dio->bio.bi_status = bio->bi_status;
323
324 if (!dio->multi_bio || atomic_dec_and_test(&dio->ref)) {
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700325 if (!dio->is_sync) {
326 struct kiocb *iocb = dio->iocb;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200327 ssize_t ret;
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700328
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200329 if (likely(!dio->bio.bi_status)) {
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700330 ret = dio->size;
331 iocb->ki_pos += ret;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200332 } else {
333 ret = blk_status_to_errno(dio->bio.bi_status);
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700334 }
335
336 dio->iocb->ki_complete(iocb, ret, 0);
Christoph Hellwig531724a2018-11-30 09:23:48 +0100337 if (dio->multi_bio)
338 bio_put(&dio->bio);
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700339 } else {
340 struct task_struct *waiter = dio->waiter;
341
342 WRITE_ONCE(dio->waiter, NULL);
Jens Axboe06193172018-11-13 21:16:54 -0700343 blk_wake_io_task(waiter);
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700344 }
345 }
346
347 if (should_dirty) {
348 bio_check_pages_dirty(bio);
349 } else {
Christoph Hellwig57dfe3c2019-06-26 15:49:25 +0200350 bio_release_pages(bio, false);
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700351 bio_put(bio);
352 }
353}
354
Andrew Mortonb2e895d2007-02-03 01:14:01 -0800355static ssize_t
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700356__blkdev_direct_IO(struct kiocb *iocb, struct iov_iter *iter, int nr_pages)
Andrew Mortonb2e895d2007-02-03 01:14:01 -0800357{
358 struct file *file = iocb->ki_filp;
Dan Williams4ebb16c2015-10-28 07:48:19 +0900359 struct inode *inode = bdev_file_inode(file);
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700360 struct block_device *bdev = I_BDEV(inode);
Christoph Hellwig64d656a2016-12-22 19:20:45 +0100361 struct blk_plug plug;
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700362 struct blkdev_dio *dio;
363 struct bio *bio;
Jens Axboecb700eb2018-11-15 19:56:53 -0700364 bool is_poll = (iocb->ki_flags & IOCB_HIPRI) != 0;
Christoph Hellwig690e5322017-01-24 14:50:19 +0100365 bool is_read = (iov_iter_rw(iter) == READ), is_sync;
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700366 loff_t pos = iocb->ki_pos;
367 blk_qc_t qc = BLK_QC_T_NONE;
Jens Axboe7b6620d2019-08-15 11:09:16 -0600368 int ret = 0;
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700369
Jens Axboe9a794fb2016-11-22 08:12:39 -0700370 if ((pos | iov_iter_alignment(iter)) &
371 (bdev_logical_block_size(bdev) - 1))
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700372 return -EINVAL;
373
Jens Axboe7b6620d2019-08-15 11:09:16 -0600374 bio = bio_alloc_bioset(GFP_KERNEL, nr_pages, &blkdev_dio_pool);
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700375
376 dio = container_of(bio, struct blkdev_dio, bio);
Christoph Hellwig690e5322017-01-24 14:50:19 +0100377 dio->is_sync = is_sync = is_sync_kiocb(iocb);
Christoph Hellwig531724a2018-11-30 09:23:48 +0100378 if (dio->is_sync) {
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700379 dio->waiter = current;
Christoph Hellwig531724a2018-11-30 09:23:48 +0100380 bio_get(bio);
381 } else {
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700382 dio->iocb = iocb;
Christoph Hellwig531724a2018-11-30 09:23:48 +0100383 }
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700384
385 dio->size = 0;
386 dio->multi_bio = false;
David Howells00e23702018-10-22 13:07:28 +0100387 dio->should_dirty = is_read && iter_is_iovec(iter);
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700388
Jens Axboecb700eb2018-11-15 19:56:53 -0700389 /*
390 * Don't plug for HIPRI/polled IO, as those should go straight
391 * to issue
392 */
393 if (!is_poll)
394 blk_start_plug(&plug);
395
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700396 for (;;) {
Christoph Hellwig74d46992017-08-23 19:10:32 +0200397 bio_set_dev(bio, bdev);
Damien Le Moal4d1a4762016-11-22 15:38:49 +0900398 bio->bi_iter.bi_sector = pos >> 9;
Jens Axboe45d06cf2017-06-27 11:01:22 -0600399 bio->bi_write_hint = iocb->ki_hint;
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700400 bio->bi_private = dio;
401 bio->bi_end_io = blkdev_bio_end_io;
Adam Manzanares074111c2018-05-22 10:52:20 -0700402 bio->bi_ioprio = iocb->ki_ioprio;
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700403
Jens Axboee15c2ff2019-08-06 13:34:31 -0600404 ret = bio_iov_iter_get_pages(bio, iter);
405 if (unlikely(ret)) {
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200406 bio->bi_status = BLK_STS_IOERR;
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700407 bio_endio(bio);
408 break;
409 }
410
411 if (is_read) {
412 bio->bi_opf = REQ_OP_READ;
413 if (dio->should_dirty)
414 bio_set_pages_dirty(bio);
415 } else {
416 bio->bi_opf = dio_bio_write_op(iocb);
417 task_io_account_write(bio->bi_iter.bi_size);
418 }
419
Jens Axboe7b6620d2019-08-15 11:09:16 -0600420 dio->size += bio->bi_iter.bi_size;
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700421 pos += bio->bi_iter.bi_size;
422
423 nr_pages = iov_iter_npages(iter, BIO_MAX_PAGES);
424 if (!nr_pages) {
Christoph Hellwigeae83ce2018-11-30 08:31:52 -0700425 bool polled = false;
426
427 if (iocb->ki_flags & IOCB_HIPRI) {
Jens Axboe0bbb2802018-12-21 09:10:46 -0700428 bio_set_polled(bio, iocb);
Christoph Hellwigeae83ce2018-11-30 08:31:52 -0700429 polled = true;
430 }
Jens Axboed34513d2018-11-06 14:29:11 -0700431
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700432 qc = submit_bio(bio);
Christoph Hellwigeae83ce2018-11-30 08:31:52 -0700433
434 if (polled)
435 WRITE_ONCE(iocb->ki_cookie, qc);
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700436 break;
437 }
438
439 if (!dio->multi_bio) {
Christoph Hellwig531724a2018-11-30 09:23:48 +0100440 /*
441 * AIO needs an extra reference to ensure the dio
442 * structure which is embedded into the first bio
443 * stays around.
444 */
445 if (!is_sync)
446 bio_get(bio);
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700447 dio->multi_bio = true;
448 atomic_set(&dio->ref, 2);
449 } else {
450 atomic_inc(&dio->ref);
451 }
452
Jens Axboe7b6620d2019-08-15 11:09:16 -0600453 submit_bio(bio);
454 bio = bio_alloc(GFP_KERNEL, nr_pages);
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700455 }
Jens Axboecb700eb2018-11-15 19:56:53 -0700456
457 if (!is_poll)
458 blk_finish_plug(&plug);
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700459
Christoph Hellwig690e5322017-01-24 14:50:19 +0100460 if (!is_sync)
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700461 return -EIOCBQUEUED;
462
463 for (;;) {
Linus Torvalds1ac5cd42019-01-02 10:46:03 -0800464 set_current_state(TASK_UNINTERRUPTIBLE);
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700465 if (!READ_ONCE(dio->waiter))
466 break;
467
468 if (!(iocb->ki_flags & IOCB_HIPRI) ||
Jens Axboe0a1b8b82018-11-26 08:24:43 -0700469 !blk_poll(bdev_get_queue(bdev), qc, true))
Ming Leie6249cd2020-05-03 09:54:22 +0800470 blk_io_schedule();
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700471 }
472 __set_current_state(TASK_RUNNING);
473
Christoph Hellwig36ffc6c2017-06-03 09:38:00 +0200474 if (!ret)
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200475 ret = blk_status_to_errno(dio->bio.bi_status);
Jens Axboee15c2ff2019-08-06 13:34:31 -0600476 if (likely(!ret))
477 ret = dio->size;
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700478
479 bio_put(&dio->bio);
480 return ret;
481}
482
483static ssize_t
484blkdev_direct_IO(struct kiocb *iocb, struct iov_iter *iter)
485{
Christoph Hellwig189ce2b2016-10-31 11:59:25 -0600486 int nr_pages;
Andrew Mortonb2e895d2007-02-03 01:14:01 -0800487
Jens Axboe72ecad22016-11-16 23:11:42 -0700488 nr_pages = iov_iter_npages(iter, BIO_MAX_PAGES + 1);
Christoph Hellwig189ce2b2016-10-31 11:59:25 -0600489 if (!nr_pages)
490 return 0;
Jens Axboe72ecad22016-11-16 23:11:42 -0700491 if (is_sync_kiocb(iocb) && nr_pages <= BIO_MAX_PAGES)
Christoph Hellwig189ce2b2016-10-31 11:59:25 -0600492 return __blkdev_direct_IO_simple(iocb, iter, nr_pages);
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700493
494 return __blkdev_direct_IO(iocb, iter, min(nr_pages, BIO_MAX_PAGES));
Andrew Mortonb2e895d2007-02-03 01:14:01 -0800495}
496
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700497static __init int blkdev_init(void)
498{
Kent Overstreet52190f82018-05-20 18:25:55 -0400499 return bioset_init(&blkdev_dio_pool, 4, offsetof(struct blkdev_dio, bio), BIOSET_NEED_BVECS);
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700500}
501module_init(blkdev_init);
502
Jan Kara5cee5812009-04-27 16:43:51 +0200503int __sync_blockdev(struct block_device *bdev, int wait)
504{
505 if (!bdev)
506 return 0;
507 if (!wait)
508 return filemap_flush(bdev->bd_inode->i_mapping);
509 return filemap_write_and_wait(bdev->bd_inode->i_mapping);
510}
511
Nick Piggin585d3bc2009-02-25 10:44:19 +0100512/*
513 * Write out and wait upon all the dirty data associated with a block
514 * device via its mapping. Does not take the superblock lock.
515 */
516int sync_blockdev(struct block_device *bdev)
517{
Jan Kara5cee5812009-04-27 16:43:51 +0200518 return __sync_blockdev(bdev, 1);
Nick Piggin585d3bc2009-02-25 10:44:19 +0100519}
520EXPORT_SYMBOL(sync_blockdev);
521
522/*
523 * Write out and wait upon all dirty data associated with this
524 * device. Filesystem data as well as the underlying block
525 * device. Takes the superblock lock.
526 */
527int fsync_bdev(struct block_device *bdev)
528{
529 struct super_block *sb = get_super(bdev);
530 if (sb) {
Jan Kara60b06802009-04-27 16:43:53 +0200531 int res = sync_filesystem(sb);
Nick Piggin585d3bc2009-02-25 10:44:19 +0100532 drop_super(sb);
533 return res;
534 }
535 return sync_blockdev(bdev);
536}
Al Viro47e44912009-04-01 07:07:16 -0400537EXPORT_SYMBOL(fsync_bdev);
Nick Piggin585d3bc2009-02-25 10:44:19 +0100538
539/**
540 * freeze_bdev -- lock a filesystem and force it into a consistent state
541 * @bdev: blockdevice to lock
542 *
Nick Piggin585d3bc2009-02-25 10:44:19 +0100543 * If a superblock is found on this device, we take the s_umount semaphore
544 * on it to make sure nobody unmounts until the snapshot creation is done.
545 * The reference counter (bd_fsfreeze_count) guarantees that only the last
546 * unfreeze process can unfreeze the frozen filesystem actually when multiple
547 * freeze requests arrive simultaneously. It counts up in freeze_bdev() and
548 * count down in thaw_bdev(). When it becomes 0, thaw_bdev() will unfreeze
549 * actually.
550 */
Christoph Hellwig040f04b2020-11-24 11:54:06 +0100551int freeze_bdev(struct block_device *bdev)
Nick Piggin585d3bc2009-02-25 10:44:19 +0100552{
553 struct super_block *sb;
554 int error = 0;
555
556 mutex_lock(&bdev->bd_fsfreeze_mutex);
Christoph Hellwig040f04b2020-11-24 11:54:06 +0100557 if (++bdev->bd_fsfreeze_count > 1)
558 goto done;
Nick Piggin585d3bc2009-02-25 10:44:19 +0100559
Christoph Hellwig45042302009-08-03 23:28:35 +0200560 sb = get_active_super(bdev);
561 if (!sb)
Christoph Hellwig040f04b2020-11-24 11:54:06 +0100562 goto sync;
Benjamin Marzinski48b6bca2014-11-13 20:42:03 -0600563 if (sb->s_op->freeze_super)
564 error = sb->s_op->freeze_super(sb);
565 else
566 error = freeze_super(sb);
Josef Bacik18e9e512010-03-23 10:34:56 -0400567 deactivate_super(sb);
Christoph Hellwig040f04b2020-11-24 11:54:06 +0100568
569 if (error) {
570 bdev->bd_fsfreeze_count--;
571 goto done;
572 }
573 bdev->bd_fsfreeze_sb = sb;
574
575sync:
Nick Piggin585d3bc2009-02-25 10:44:19 +0100576 sync_blockdev(bdev);
Christoph Hellwig040f04b2020-11-24 11:54:06 +0100577done:
Nick Piggin585d3bc2009-02-25 10:44:19 +0100578 mutex_unlock(&bdev->bd_fsfreeze_mutex);
Christoph Hellwig040f04b2020-11-24 11:54:06 +0100579 return error;
Nick Piggin585d3bc2009-02-25 10:44:19 +0100580}
581EXPORT_SYMBOL(freeze_bdev);
582
583/**
584 * thaw_bdev -- unlock filesystem
585 * @bdev: blockdevice to unlock
Nick Piggin585d3bc2009-02-25 10:44:19 +0100586 *
587 * Unlocks the filesystem and marks it writeable again after freeze_bdev().
588 */
Christoph Hellwig040f04b2020-11-24 11:54:06 +0100589int thaw_bdev(struct block_device *bdev)
Nick Piggin585d3bc2009-02-25 10:44:19 +0100590{
Christoph Hellwig040f04b2020-11-24 11:54:06 +0100591 struct super_block *sb;
Christoph Hellwig45042302009-08-03 23:28:35 +0200592 int error = -EINVAL;
Nick Piggin585d3bc2009-02-25 10:44:19 +0100593
594 mutex_lock(&bdev->bd_fsfreeze_mutex);
Christoph Hellwig45042302009-08-03 23:28:35 +0200595 if (!bdev->bd_fsfreeze_count)
Josef Bacik18e9e512010-03-23 10:34:56 -0400596 goto out;
Nick Piggin585d3bc2009-02-25 10:44:19 +0100597
Christoph Hellwig45042302009-08-03 23:28:35 +0200598 error = 0;
599 if (--bdev->bd_fsfreeze_count > 0)
Josef Bacik18e9e512010-03-23 10:34:56 -0400600 goto out;
Nick Piggin585d3bc2009-02-25 10:44:19 +0100601
Christoph Hellwig040f04b2020-11-24 11:54:06 +0100602 sb = bdev->bd_fsfreeze_sb;
Christoph Hellwig45042302009-08-03 23:28:35 +0200603 if (!sb)
Josef Bacik18e9e512010-03-23 10:34:56 -0400604 goto out;
Christoph Hellwig45042302009-08-03 23:28:35 +0200605
Benjamin Marzinski48b6bca2014-11-13 20:42:03 -0600606 if (sb->s_op->thaw_super)
607 error = sb->s_op->thaw_super(sb);
608 else
609 error = thaw_super(sb);
Pierre Morel997198b2016-10-04 10:53:40 +0200610 if (error)
Josef Bacik18e9e512010-03-23 10:34:56 -0400611 bdev->bd_fsfreeze_count++;
Josef Bacik18e9e512010-03-23 10:34:56 -0400612out:
Nick Piggin585d3bc2009-02-25 10:44:19 +0100613 mutex_unlock(&bdev->bd_fsfreeze_mutex);
Pierre Morel997198b2016-10-04 10:53:40 +0200614 return error;
Nick Piggin585d3bc2009-02-25 10:44:19 +0100615}
616EXPORT_SYMBOL(thaw_bdev);
617
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618static int blkdev_writepage(struct page *page, struct writeback_control *wbc)
619{
620 return block_write_full_page(page, blkdev_get_block, wbc);
621}
622
623static int blkdev_readpage(struct file * file, struct page * page)
624{
625 return block_read_full_page(page, blkdev_get_block);
626}
627
Matthew Wilcox (Oracle)d4388342020-06-01 21:47:02 -0700628static void blkdev_readahead(struct readahead_control *rac)
Akinobu Mita447f05b2014-10-09 15:26:58 -0700629{
Matthew Wilcox (Oracle)d4388342020-06-01 21:47:02 -0700630 mpage_readahead(rac, blkdev_get_block);
Akinobu Mita447f05b2014-10-09 15:26:58 -0700631}
632
Nick Piggin6272b5a2007-10-16 01:25:04 -0700633static int blkdev_write_begin(struct file *file, struct address_space *mapping,
634 loff_t pos, unsigned len, unsigned flags,
635 struct page **pagep, void **fsdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636{
Christoph Hellwig155130a2010-06-04 11:29:58 +0200637 return block_write_begin(mapping, pos, len, flags, pagep,
638 blkdev_get_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639}
640
Nick Piggin6272b5a2007-10-16 01:25:04 -0700641static int blkdev_write_end(struct file *file, struct address_space *mapping,
642 loff_t pos, unsigned len, unsigned copied,
643 struct page *page, void *fsdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644{
Nick Piggin6272b5a2007-10-16 01:25:04 -0700645 int ret;
646 ret = block_write_end(file, mapping, pos, len, copied, page, fsdata);
647
648 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300649 put_page(page);
Nick Piggin6272b5a2007-10-16 01:25:04 -0700650
651 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652}
653
654/*
655 * private llseek:
Al Viro496ad9a2013-01-23 17:07:38 -0500656 * for a block special file file_inode(file)->i_size is zero
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 * so we compute the size by hand (just as in block_read/write above)
658 */
Andrew Morton965c8e52012-12-17 15:59:39 -0800659static loff_t block_llseek(struct file *file, loff_t offset, int whence)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660{
Dan Williams4ebb16c2015-10-28 07:48:19 +0900661 struct inode *bd_inode = bdev_file_inode(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 loff_t retval;
663
Al Viro59551022016-01-22 15:40:57 -0500664 inode_lock(bd_inode);
Al Viro5d48f3a2013-06-23 21:34:45 +0400665 retval = fixed_size_llseek(file, offset, whence, i_size_read(bd_inode));
Al Viro59551022016-01-22 15:40:57 -0500666 inode_unlock(bd_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 return retval;
668}
669
Josef Bacik02c24a82011-07-16 20:44:56 -0400670int blkdev_fsync(struct file *filp, loff_t start, loff_t end, int datasync)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671{
Dan Williams4ebb16c2015-10-28 07:48:19 +0900672 struct inode *bd_inode = bdev_file_inode(filp);
Anton Blanchardb8af67e2010-04-23 13:18:06 -0400673 struct block_device *bdev = I_BDEV(bd_inode);
Christoph Hellwigab0a9732009-10-29 14:14:04 +0100674 int error;
Rafael J. Wysockida5aa862011-08-02 02:17:48 +0200675
Jeff Layton372cf242017-07-06 07:02:28 -0400676 error = file_write_and_wait_range(filp, start, end);
Rafael J. Wysockida5aa862011-08-02 02:17:48 +0200677 if (error)
678 return error;
Christoph Hellwigab0a9732009-10-29 14:14:04 +0100679
Anton Blanchardb8af67e2010-04-23 13:18:06 -0400680 /*
681 * There is no need to serialise calls to blkdev_issue_flush with
682 * i_mutex and doing so causes performance issues with concurrent
683 * O_SYNC writers to a block device.
684 */
Christoph Hellwig93985542020-05-13 14:36:00 +0200685 error = blkdev_issue_flush(bdev, GFP_KERNEL);
Christoph Hellwigab0a9732009-10-29 14:14:04 +0100686 if (error == -EOPNOTSUPP)
687 error = 0;
Anton Blanchardb8af67e2010-04-23 13:18:06 -0400688
Christoph Hellwigab0a9732009-10-29 14:14:04 +0100689 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690}
Andrew Mortonb1dd3b22010-04-06 14:35:00 -0700691EXPORT_SYMBOL(blkdev_fsync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692
Matthew Wilcox47a191f2014-06-04 16:07:46 -0700693/**
694 * bdev_read_page() - Start reading a page from a block device
695 * @bdev: The device to read the page from
696 * @sector: The offset on the device to read the page to (need not be aligned)
697 * @page: The page to read
698 *
699 * On entry, the page should be locked. It will be unlocked when the page
700 * has been read. If the block driver implements rw_page synchronously,
701 * that will be true on exit from this function, but it need not be.
702 *
703 * Errors returned by this function are usually "soft", eg out of memory, or
704 * queue full; callers should try a different route to read this page rather
705 * than propagate an error back up the stack.
706 *
707 * Return: negative errno if an error occurs, 0 if submission was successful.
708 */
709int bdev_read_page(struct block_device *bdev, sector_t sector,
710 struct page *page)
711{
712 const struct block_device_operations *ops = bdev->bd_disk->fops;
Dan Williams2e6edc952015-11-19 13:29:28 -0800713 int result = -EOPNOTSUPP;
714
Vishal Vermaf68eb1e2015-05-12 13:48:53 -0400715 if (!ops->rw_page || bdev_get_integrity(bdev))
Dan Williams2e6edc952015-11-19 13:29:28 -0800716 return result;
717
Christoph Hellwige556f6b2020-06-26 10:01:56 +0200718 result = blk_queue_enter(bdev->bd_disk->queue, 0);
Dan Williams2e6edc952015-11-19 13:29:28 -0800719 if (result)
720 return result;
Tejun Heo3f289dc2018-07-18 04:47:36 -0700721 result = ops->rw_page(bdev, sector + get_start_sect(bdev), page,
722 REQ_OP_READ);
Christoph Hellwige556f6b2020-06-26 10:01:56 +0200723 blk_queue_exit(bdev->bd_disk->queue);
Dan Williams2e6edc952015-11-19 13:29:28 -0800724 return result;
Matthew Wilcox47a191f2014-06-04 16:07:46 -0700725}
Matthew Wilcox47a191f2014-06-04 16:07:46 -0700726
727/**
728 * bdev_write_page() - Start writing a page to a block device
729 * @bdev: The device to write the page to
730 * @sector: The offset on the device to write the page to (need not be aligned)
731 * @page: The page to write
732 * @wbc: The writeback_control for the write
733 *
734 * On entry, the page should be locked and not currently under writeback.
735 * On exit, if the write started successfully, the page will be unlocked and
736 * under writeback. If the write failed already (eg the driver failed to
737 * queue the page to the device), the page will still be locked. If the
738 * caller is a ->writepage implementation, it will need to unlock the page.
739 *
740 * Errors returned by this function are usually "soft", eg out of memory, or
741 * queue full; callers should try a different route to write this page rather
742 * than propagate an error back up the stack.
743 *
744 * Return: negative errno if an error occurs, 0 if submission was successful.
745 */
746int bdev_write_page(struct block_device *bdev, sector_t sector,
747 struct page *page, struct writeback_control *wbc)
748{
749 int result;
Matthew Wilcox47a191f2014-06-04 16:07:46 -0700750 const struct block_device_operations *ops = bdev->bd_disk->fops;
Dan Williams2e6edc952015-11-19 13:29:28 -0800751
Vishal Vermaf68eb1e2015-05-12 13:48:53 -0400752 if (!ops->rw_page || bdev_get_integrity(bdev))
Matthew Wilcox47a191f2014-06-04 16:07:46 -0700753 return -EOPNOTSUPP;
Christoph Hellwige556f6b2020-06-26 10:01:56 +0200754 result = blk_queue_enter(bdev->bd_disk->queue, 0);
Dan Williams2e6edc952015-11-19 13:29:28 -0800755 if (result)
756 return result;
757
Matthew Wilcox47a191f2014-06-04 16:07:46 -0700758 set_page_writeback(page);
Tejun Heo3f289dc2018-07-18 04:47:36 -0700759 result = ops->rw_page(bdev, sector + get_start_sect(bdev), page,
760 REQ_OP_WRITE);
Matthew Wilcoxf8927602017-10-13 15:58:15 -0700761 if (result) {
Matthew Wilcox47a191f2014-06-04 16:07:46 -0700762 end_page_writeback(page);
Matthew Wilcoxf8927602017-10-13 15:58:15 -0700763 } else {
764 clean_page_buffers(page);
Matthew Wilcox47a191f2014-06-04 16:07:46 -0700765 unlock_page(page);
Matthew Wilcoxf8927602017-10-13 15:58:15 -0700766 }
Christoph Hellwige556f6b2020-06-26 10:01:56 +0200767 blk_queue_exit(bdev->bd_disk->queue);
Matthew Wilcox47a191f2014-06-04 16:07:46 -0700768 return result;
769}
Matthew Wilcox47a191f2014-06-04 16:07:46 -0700770
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771/*
772 * pseudo-fs
773 */
774
775static __cacheline_aligned_in_smp DEFINE_SPINLOCK(bdev_lock);
Christoph Lametere18b8902006-12-06 20:33:20 -0800776static struct kmem_cache * bdev_cachep __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777
778static struct inode *bdev_alloc_inode(struct super_block *sb)
779{
Christoph Lametere94b1762006-12-06 20:33:17 -0800780 struct bdev_inode *ei = kmem_cache_alloc(bdev_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 if (!ei)
782 return NULL;
783 return &ei->vfs_inode;
784}
785
Al Viro41149cb2019-04-10 15:12:38 -0400786static void bdev_free_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787{
Al Viro41149cb2019-04-10 15:12:38 -0400788 kmem_cache_free(bdev_cachep, BDEV_I(inode));
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100789}
790
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700791static void init_once(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792{
793 struct bdev_inode *ei = (struct bdev_inode *) foo;
794 struct block_device *bdev = &ei->bdev;
795
Christoph Lametera35afb82007-05-16 22:10:57 -0700796 memset(bdev, 0, sizeof(*bdev));
797 mutex_init(&bdev->bd_mutex);
Tejun Heo49731ba2011-01-14 18:43:57 +0100798#ifdef CONFIG_SYSFS
799 INIT_LIST_HEAD(&bdev->bd_holder_disks);
800#endif
Jan Karaa5a79d02017-03-02 16:50:13 +0100801 bdev->bd_bdi = &noop_backing_dev_info;
Christoph Lametera35afb82007-05-16 22:10:57 -0700802 inode_init_once(&ei->vfs_inode);
Takashi Satofcccf502009-01-09 16:40:59 -0800803 /* Initialize mutex for freeze. */
804 mutex_init(&bdev->bd_fsfreeze_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805}
806
Al Virob57922d2010-06-07 14:34:48 -0400807static void bdev_evict_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808{
809 struct block_device *bdev = &BDEV_I(inode)->bdev;
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700810 truncate_inode_pages_final(&inode->i_data);
Al Virob57922d2010-06-07 14:34:48 -0400811 invalidate_inode_buffers(inode); /* is it needed here? */
Jan Karadbd57682012-05-03 14:48:02 +0200812 clear_inode(inode);
Jan Karaf7597412017-03-23 01:37:00 +0100813 /* Detach inode from wb early as bdi_put() may free bdi->wb */
814 inode_detach_wb(inode);
Jan Karaa5a79d02017-03-02 16:50:13 +0100815 if (bdev->bd_bdi != &noop_backing_dev_info) {
Jan Karab1d2dc562017-02-02 15:56:52 +0100816 bdi_put(bdev->bd_bdi);
Jan Karaa5a79d02017-03-02 16:50:13 +0100817 bdev->bd_bdi = &noop_backing_dev_info;
818 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819}
820
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800821static const struct super_operations bdev_sops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 .statfs = simple_statfs,
823 .alloc_inode = bdev_alloc_inode,
Al Viro41149cb2019-04-10 15:12:38 -0400824 .free_inode = bdev_free_inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 .drop_inode = generic_delete_inode,
Al Virob57922d2010-06-07 14:34:48 -0400826 .evict_inode = bdev_evict_inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827};
828
David Howells9030d162019-03-25 16:38:23 +0000829static int bd_init_fs_context(struct fs_context *fc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830{
David Howells9030d162019-03-25 16:38:23 +0000831 struct pseudo_fs_context *ctx = init_pseudo(fc, BDEVFS_MAGIC);
832 if (!ctx)
833 return -ENOMEM;
834 fc->s_iflags |= SB_I_CGROUPWB;
835 ctx->ops = &bdev_sops;
836 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837}
838
839static struct file_system_type bd_type = {
840 .name = "bdev",
David Howells9030d162019-03-25 16:38:23 +0000841 .init_fs_context = bd_init_fs_context,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 .kill_sb = kill_anon_super,
843};
844
Tejun Heoa212b102015-05-22 17:13:33 -0400845struct super_block *blockdev_superblock __read_mostly;
846EXPORT_SYMBOL_GPL(blockdev_superblock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847
848void __init bdev_cache_init(void)
849{
850 int err;
Sergey Senozhatskyace85772012-01-10 02:43:59 +0300851 static struct vfsmount *bd_mnt;
Denis ChengRqc2acf7b2008-12-01 14:34:56 -0800852
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 bdev_cachep = kmem_cache_create("bdev_cache", sizeof(struct bdev_inode),
Paul Jacksonfffb60f2006-03-24 03:16:06 -0800854 0, (SLAB_HWCACHE_ALIGN|SLAB_RECLAIM_ACCOUNT|
Vladimir Davydov5d097052016-01-14 15:18:21 -0800855 SLAB_MEM_SPREAD|SLAB_ACCOUNT|SLAB_PANIC),
Paul Mundt20c2df82007-07-20 10:11:58 +0900856 init_once);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 err = register_filesystem(&bd_type);
858 if (err)
859 panic("Cannot register bdev pseudo-fs");
860 bd_mnt = kern_mount(&bd_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 if (IS_ERR(bd_mnt))
862 panic("Cannot create bdev pseudo-fs");
Sergey Senozhatskyace85772012-01-10 02:43:59 +0300863 blockdev_superblock = bd_mnt->mnt_sb; /* For writeback */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864}
865
Christoph Hellwig10ed1662020-09-25 18:06:18 +0200866static struct block_device *bdget(dev_t dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867{
868 struct block_device *bdev;
869 struct inode *inode;
870
Christoph Hellwig612c6aa2020-11-09 17:52:02 +0100871 inode = iget_locked(blockdev_superblock, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 if (!inode)
873 return NULL;
874
875 bdev = &BDEV_I(inode)->bdev;
876
877 if (inode->i_state & I_NEW) {
Christoph Hellwigc2b4bb82020-08-23 11:10:42 +0200878 spin_lock_init(&bdev->bd_size_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 bdev->bd_contains = NULL;
Lachlan McIlroy782b94c2011-06-30 11:01:45 +1000880 bdev->bd_super = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 bdev->bd_inode = inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 bdev->bd_part_count = 0;
Christoph Hellwig612c6aa2020-11-09 17:52:02 +0100883 bdev->bd_dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 inode->i_mode = S_IFBLK;
885 inode->i_rdev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 inode->i_data.a_ops = &def_blk_aops;
887 mapping_set_gfp_mask(&inode->i_data, GFP_USER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 unlock_new_inode(inode);
889 }
890 return bdev;
891}
892
Alan Jenkinsdddac6a2009-07-29 21:07:55 +0200893/**
894 * bdgrab -- Grab a reference to an already referenced block device
895 * @bdev: Block device to grab a reference to.
Christoph Hellwig3a4174e2020-11-27 16:45:27 +0100896 *
897 * Returns the block_device with an additional reference when successful,
898 * or NULL if the inode is already beeing freed.
Alan Jenkinsdddac6a2009-07-29 21:07:55 +0200899 */
900struct block_device *bdgrab(struct block_device *bdev)
901{
Christoph Hellwig3a4174e2020-11-27 16:45:27 +0100902 if (!igrab(bdev->bd_inode))
903 return NULL;
Alan Jenkinsdddac6a2009-07-29 21:07:55 +0200904 return bdev;
905}
Anatol Pomozovc1681bf2013-04-01 09:47:56 -0700906EXPORT_SYMBOL(bdgrab);
Alan Jenkinsdddac6a2009-07-29 21:07:55 +0200907
Christoph Hellwig10ed1662020-09-25 18:06:18 +0200908struct block_device *bdget_part(struct hd_struct *part)
909{
910 return bdget(part_devt(part));
911}
912
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913long nr_blockdev_pages(void)
914{
Christoph Hellwig1008fe62020-06-26 10:01:58 +0200915 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 long ret = 0;
Christoph Hellwig1008fe62020-06-26 10:01:58 +0200917
918 spin_lock(&blockdev_superblock->s_inode_list_lock);
919 list_for_each_entry(inode, &blockdev_superblock->s_inodes, i_sb_list)
920 ret += inode->i_mapping->nrpages;
921 spin_unlock(&blockdev_superblock->s_inode_list_lock);
922
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 return ret;
924}
925
926void bdput(struct block_device *bdev)
927{
928 iput(bdev->bd_inode);
929}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930EXPORT_SYMBOL(bdput);
931
Tejun Heo1a3cbbc2010-04-07 18:52:29 +0900932/**
933 * bd_may_claim - test whether a block device can be claimed
934 * @bdev: block device of interest
935 * @whole: whole block device containing @bdev, may equal @bdev
936 * @holder: holder trying to claim @bdev
937 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300938 * Test whether @bdev can be claimed by @holder.
Tejun Heo1a3cbbc2010-04-07 18:52:29 +0900939 *
940 * CONTEXT:
941 * spin_lock(&bdev_lock).
942 *
943 * RETURNS:
944 * %true if @bdev can be claimed, %false otherwise.
945 */
946static bool bd_may_claim(struct block_device *bdev, struct block_device *whole,
947 void *holder)
948{
949 if (bdev->bd_holder == holder)
950 return true; /* already a holder */
951 else if (bdev->bd_holder != NULL)
952 return false; /* held by someone else */
NeilBrownbcc7f5b2016-12-12 08:21:51 -0700953 else if (whole == bdev)
Tejun Heo1a3cbbc2010-04-07 18:52:29 +0900954 return true; /* is a whole device which isn't held */
955
Tejun Heoe525fd82010-11-13 11:55:17 +0100956 else if (whole->bd_holder == bd_may_claim)
Tejun Heo1a3cbbc2010-04-07 18:52:29 +0900957 return true; /* is a partition of a device that is being partitioned */
958 else if (whole->bd_holder != NULL)
959 return false; /* is a partition of a held device */
960 else
961 return true; /* is a partition of an un-held device */
962}
963
964/**
Christoph Hellwig58e46ed2020-07-16 16:33:08 +0200965 * bd_prepare_to_claim - claim a block device
Tejun Heo6b4517a2010-04-07 18:53:59 +0900966 * @bdev: block device of interest
967 * @whole: the whole device containing @bdev, may equal @bdev
968 * @holder: holder trying to claim @bdev
969 *
Christoph Hellwig58e46ed2020-07-16 16:33:08 +0200970 * Claim @bdev. This function fails if @bdev is already claimed by another
971 * holder and waits if another claiming is in progress. return, the caller
972 * has ownership of bd_claiming and bd_holder[s].
Tejun Heo6b4517a2010-04-07 18:53:59 +0900973 *
974 * RETURNS:
975 * 0 if @bdev can be claimed, -EBUSY otherwise.
976 */
Christoph Hellwigecbe6bc2020-07-16 16:33:09 +0200977int bd_prepare_to_claim(struct block_device *bdev, struct block_device *whole,
978 void *holder)
Tejun Heo6b4517a2010-04-07 18:53:59 +0900979{
980retry:
Christoph Hellwig58e46ed2020-07-16 16:33:08 +0200981 spin_lock(&bdev_lock);
Tejun Heo6b4517a2010-04-07 18:53:59 +0900982 /* if someone else claimed, fail */
Christoph Hellwig58e46ed2020-07-16 16:33:08 +0200983 if (!bd_may_claim(bdev, whole, holder)) {
984 spin_unlock(&bdev_lock);
Tejun Heo6b4517a2010-04-07 18:53:59 +0900985 return -EBUSY;
Christoph Hellwig58e46ed2020-07-16 16:33:08 +0200986 }
Tejun Heo6b4517a2010-04-07 18:53:59 +0900987
Tejun Heoe75aa852010-08-04 17:59:39 +0200988 /* if claiming is already in progress, wait for it to finish */
989 if (whole->bd_claiming) {
Tejun Heo6b4517a2010-04-07 18:53:59 +0900990 wait_queue_head_t *wq = bit_waitqueue(&whole->bd_claiming, 0);
991 DEFINE_WAIT(wait);
992
993 prepare_to_wait(wq, &wait, TASK_UNINTERRUPTIBLE);
994 spin_unlock(&bdev_lock);
995 schedule();
996 finish_wait(wq, &wait);
Tejun Heo6b4517a2010-04-07 18:53:59 +0900997 goto retry;
998 }
999
1000 /* yay, all mine */
Christoph Hellwig58e46ed2020-07-16 16:33:08 +02001001 whole->bd_claiming = holder;
1002 spin_unlock(&bdev_lock);
Tejun Heo6b4517a2010-04-07 18:53:59 +09001003 return 0;
1004}
Christoph Hellwigecbe6bc2020-07-16 16:33:09 +02001005EXPORT_SYMBOL_GPL(bd_prepare_to_claim); /* only for the loop driver */
Tejun Heo6b4517a2010-04-07 18:53:59 +09001006
Jan Kara560e7cb2018-02-26 13:01:42 +01001007static struct gendisk *bdev_get_gendisk(struct block_device *bdev, int *partno)
1008{
1009 struct gendisk *disk = get_gendisk(bdev->bd_dev, partno);
1010
1011 if (!disk)
1012 return NULL;
1013 /*
1014 * Now that we hold gendisk reference we make sure bdev we looked up is
1015 * not stale. If it is, it means device got removed and created before
1016 * we looked up gendisk and we fail open in such case. Associating
1017 * unhashed bdev with newly created gendisk could lead to two bdevs
1018 * (and thus two independent caches) being associated with one device
1019 * which is bad.
1020 */
1021 if (inode_unhashed(bdev->bd_inode)) {
1022 put_disk_and_module(disk);
1023 return NULL;
1024 }
1025 return disk;
1026}
1027
Jan Kara89e524c02019-07-30 13:10:14 +02001028static void bd_clear_claiming(struct block_device *whole, void *holder)
1029{
1030 lockdep_assert_held(&bdev_lock);
1031 /* tell others that we're done */
1032 BUG_ON(whole->bd_claiming != holder);
1033 whole->bd_claiming = NULL;
1034 wake_up_bit(&whole->bd_claiming, 0);
1035}
1036
1037/**
1038 * bd_finish_claiming - finish claiming of a block device
1039 * @bdev: block device of interest
Christoph Hellwig5b642d8b2020-07-16 16:33:10 +02001040 * @whole: whole block device
Jan Kara89e524c02019-07-30 13:10:14 +02001041 * @holder: holder that has claimed @bdev
1042 *
1043 * Finish exclusive open of a block device. Mark the device as exlusively
1044 * open by the holder and wake up all waiters for exclusive open to finish.
1045 */
Christoph Hellwig764b23b2020-06-20 09:16:36 +02001046static void bd_finish_claiming(struct block_device *bdev,
1047 struct block_device *whole, void *holder)
Jan Kara89e524c02019-07-30 13:10:14 +02001048{
1049 spin_lock(&bdev_lock);
1050 BUG_ON(!bd_may_claim(bdev, whole, holder));
1051 /*
1052 * Note that for a whole device bd_holders will be incremented twice,
1053 * and bd_holder will be set to bd_may_claim before being set to holder
1054 */
1055 whole->bd_holders++;
1056 whole->bd_holder = bd_may_claim;
1057 bdev->bd_holders++;
1058 bdev->bd_holder = holder;
1059 bd_clear_claiming(whole, holder);
1060 spin_unlock(&bdev_lock);
1061}
Jan Kara89e524c02019-07-30 13:10:14 +02001062
1063/**
1064 * bd_abort_claiming - abort claiming of a block device
1065 * @bdev: block device of interest
Christoph Hellwig5b642d8b2020-07-16 16:33:10 +02001066 * @whole: whole block device
Jan Kara89e524c02019-07-30 13:10:14 +02001067 * @holder: holder that has claimed @bdev
1068 *
1069 * Abort claiming of a block device when the exclusive open failed. This can be
1070 * also used when exclusive open is not actually desired and we just needed
1071 * to block other exclusive openers for a while.
1072 */
1073void bd_abort_claiming(struct block_device *bdev, struct block_device *whole,
1074 void *holder)
1075{
1076 spin_lock(&bdev_lock);
1077 bd_clear_claiming(whole, holder);
1078 spin_unlock(&bdev_lock);
1079}
1080EXPORT_SYMBOL(bd_abort_claiming);
Tejun Heo6b4517a2010-04-07 18:53:59 +09001081
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001082#ifdef CONFIG_SYSFS
Tejun Heo49731ba2011-01-14 18:43:57 +01001083struct bd_holder_disk {
1084 struct list_head list;
1085 struct gendisk *disk;
1086 int refcnt;
1087};
1088
1089static struct bd_holder_disk *bd_find_holder_disk(struct block_device *bdev,
1090 struct gendisk *disk)
1091{
1092 struct bd_holder_disk *holder;
1093
1094 list_for_each_entry(holder, &bdev->bd_holder_disks, list)
1095 if (holder->disk == disk)
1096 return holder;
1097 return NULL;
1098}
1099
Andrew Morton4d7dd8fd2006-09-29 01:58:56 -07001100static int add_symlink(struct kobject *from, struct kobject *to)
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001101{
Andrew Morton4d7dd8fd2006-09-29 01:58:56 -07001102 return sysfs_create_link(from, to, kobject_name(to));
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001103}
1104
1105static void del_symlink(struct kobject *from, struct kobject *to)
1106{
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001107 sysfs_remove_link(from, kobject_name(to));
1108}
1109
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001110/**
Tejun Heoe09b4572010-11-13 11:55:17 +01001111 * bd_link_disk_holder - create symlinks between holding disk and slave bdev
1112 * @bdev: the claimed slave bdev
1113 * @disk: the holding disk
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -05001114 *
Tejun Heo49731ba2011-01-14 18:43:57 +01001115 * DON'T USE THIS UNLESS YOU'RE ALREADY USING IT.
1116 *
Tejun Heoe09b4572010-11-13 11:55:17 +01001117 * This functions creates the following sysfs symlinks.
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -05001118 *
Tejun Heoe09b4572010-11-13 11:55:17 +01001119 * - from "slaves" directory of the holder @disk to the claimed @bdev
1120 * - from "holders" directory of the @bdev to the holder @disk
1121 *
1122 * For example, if /dev/dm-0 maps to /dev/sda and disk for dm-0 is
1123 * passed to bd_link_disk_holder(), then:
1124 *
1125 * /sys/block/dm-0/slaves/sda --> /sys/block/sda
1126 * /sys/block/sda/holders/dm-0 --> /sys/block/dm-0
1127 *
1128 * The caller must have claimed @bdev before calling this function and
1129 * ensure that both @bdev and @disk are valid during the creation and
1130 * lifetime of these symlinks.
1131 *
1132 * CONTEXT:
1133 * Might sleep.
1134 *
1135 * RETURNS:
1136 * 0 on success, -errno on failure.
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -05001137 */
Tejun Heoe09b4572010-11-13 11:55:17 +01001138int bd_link_disk_holder(struct block_device *bdev, struct gendisk *disk)
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -05001139{
Tejun Heo49731ba2011-01-14 18:43:57 +01001140 struct bd_holder_disk *holder;
Tejun Heoe09b4572010-11-13 11:55:17 +01001141 int ret = 0;
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001142
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001143 mutex_lock(&bdev->bd_mutex);
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -05001144
Tejun Heo49731ba2011-01-14 18:43:57 +01001145 WARN_ON_ONCE(!bdev->bd_holder);
Johannes Weiner4e916722007-07-15 23:41:25 -07001146
Tejun Heoe09b4572010-11-13 11:55:17 +01001147 /* FIXME: remove the following once add_disk() handles errors */
1148 if (WARN_ON(!disk->slave_dir || !bdev->bd_part->holder_dir))
1149 goto out_unlock;
Johannes Weiner4e916722007-07-15 23:41:25 -07001150
Tejun Heo49731ba2011-01-14 18:43:57 +01001151 holder = bd_find_holder_disk(bdev, disk);
1152 if (holder) {
1153 holder->refcnt++;
Tejun Heoe09b4572010-11-13 11:55:17 +01001154 goto out_unlock;
1155 }
1156
Tejun Heo49731ba2011-01-14 18:43:57 +01001157 holder = kzalloc(sizeof(*holder), GFP_KERNEL);
1158 if (!holder) {
1159 ret = -ENOMEM;
1160 goto out_unlock;
1161 }
1162
1163 INIT_LIST_HEAD(&holder->list);
1164 holder->disk = disk;
1165 holder->refcnt = 1;
1166
Christoph Hellwig8d652692020-11-17 08:18:55 +01001167 ret = add_symlink(disk->slave_dir, bdev_kobj(bdev));
Tejun Heo49731ba2011-01-14 18:43:57 +01001168 if (ret)
1169 goto out_free;
1170
1171 ret = add_symlink(bdev->bd_part->holder_dir, &disk_to_dev(disk)->kobj);
1172 if (ret)
1173 goto out_del;
Tejun Heoe7407d12011-02-24 09:56:32 +01001174 /*
1175 * bdev could be deleted beneath us which would implicitly destroy
1176 * the holder directory. Hold on to it.
1177 */
1178 kobject_get(bdev->bd_part->holder_dir);
Tejun Heo49731ba2011-01-14 18:43:57 +01001179
1180 list_add(&holder->list, &bdev->bd_holder_disks);
1181 goto out_unlock;
1182
1183out_del:
Christoph Hellwig8d652692020-11-17 08:18:55 +01001184 del_symlink(disk->slave_dir, bdev_kobj(bdev));
Tejun Heo49731ba2011-01-14 18:43:57 +01001185out_free:
1186 kfree(holder);
Tejun Heoe09b4572010-11-13 11:55:17 +01001187out_unlock:
Jun'ichi Nomurab4cf1b72006-03-27 01:18:00 -08001188 mutex_unlock(&bdev->bd_mutex);
Tejun Heoe09b4572010-11-13 11:55:17 +01001189 return ret;
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001190}
Tejun Heoe09b4572010-11-13 11:55:17 +01001191EXPORT_SYMBOL_GPL(bd_link_disk_holder);
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001192
Tejun Heo49731ba2011-01-14 18:43:57 +01001193/**
1194 * bd_unlink_disk_holder - destroy symlinks created by bd_link_disk_holder()
1195 * @bdev: the calimed slave bdev
1196 * @disk: the holding disk
1197 *
1198 * DON'T USE THIS UNLESS YOU'RE ALREADY USING IT.
1199 *
1200 * CONTEXT:
1201 * Might sleep.
1202 */
1203void bd_unlink_disk_holder(struct block_device *bdev, struct gendisk *disk)
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001204{
Tejun Heo49731ba2011-01-14 18:43:57 +01001205 struct bd_holder_disk *holder;
Tejun Heoe09b4572010-11-13 11:55:17 +01001206
Tejun Heo49731ba2011-01-14 18:43:57 +01001207 mutex_lock(&bdev->bd_mutex);
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001208
Tejun Heo49731ba2011-01-14 18:43:57 +01001209 holder = bd_find_holder_disk(bdev, disk);
1210
1211 if (!WARN_ON_ONCE(holder == NULL) && !--holder->refcnt) {
Christoph Hellwig8d652692020-11-17 08:18:55 +01001212 del_symlink(disk->slave_dir, bdev_kobj(bdev));
Tejun Heo49731ba2011-01-14 18:43:57 +01001213 del_symlink(bdev->bd_part->holder_dir,
1214 &disk_to_dev(disk)->kobj);
Tejun Heoe7407d12011-02-24 09:56:32 +01001215 kobject_put(bdev->bd_part->holder_dir);
Tejun Heo49731ba2011-01-14 18:43:57 +01001216 list_del_init(&holder->list);
1217 kfree(holder);
1218 }
1219
1220 mutex_unlock(&bdev->bd_mutex);
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001221}
Tejun Heo49731ba2011-01-14 18:43:57 +01001222EXPORT_SYMBOL_GPL(bd_unlink_disk_holder);
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001223#endif
1224
Andrew Patterson0c002c22008-09-04 14:27:20 -06001225/**
Randy Dunlap57d1b532008-10-09 10:42:38 +02001226 * check_disk_size_change - checks for disk size change and adjusts bdev size.
Andrew Pattersonc3279d12008-09-04 14:27:25 -06001227 * @disk: struct gendisk to check
1228 * @bdev: struct bdev to adjust.
Christoph Hellwig5afb7832018-05-29 16:42:59 +02001229 * @verbose: if %true log a message about a size change if there is any
Andrew Pattersonc3279d12008-09-04 14:27:25 -06001230 *
1231 * This routine checks to see if the bdev size does not match the disk size
shunki-fujita849cf552018-04-05 16:20:07 -07001232 * and adjusts it if it differs. When shrinking the bdev size, its all caches
1233 * are freed.
Andrew Pattersonc3279d12008-09-04 14:27:25 -06001234 */
Christoph Hellwiga1548b62019-11-14 15:34:34 +01001235static void check_disk_size_change(struct gendisk *disk,
1236 struct block_device *bdev, bool verbose)
Andrew Pattersonc3279d12008-09-04 14:27:25 -06001237{
1238 loff_t disk_size, bdev_size;
1239
Christoph Hellwigc2b4bb82020-08-23 11:10:42 +02001240 spin_lock(&bdev->bd_size_lock);
Andrew Pattersonc3279d12008-09-04 14:27:25 -06001241 disk_size = (loff_t)get_capacity(disk) << 9;
1242 bdev_size = i_size_read(bdev->bd_inode);
1243 if (disk_size != bdev_size) {
Christoph Hellwig5afb7832018-05-29 16:42:59 +02001244 if (verbose) {
1245 printk(KERN_INFO
1246 "%s: detected capacity change from %lld to %lld\n",
1247 disk->disk_name, bdev_size, disk_size);
1248 }
Andrew Pattersonc3279d12008-09-04 14:27:25 -06001249 i_size_write(bdev->bd_inode, disk_size);
Christoph Hellwigc2b4bb82020-08-23 11:10:42 +02001250 }
Christoph Hellwigc2b4bb82020-08-23 11:10:42 +02001251 spin_unlock(&bdev->bd_size_lock);
Andrew Pattersonc3279d12008-09-04 14:27:25 -06001252}
Andrew Pattersonc3279d12008-09-04 14:27:25 -06001253
1254/**
Christoph Hellwig659e56b2020-09-01 17:57:43 +02001255 * revalidate_disk_size - checks for disk size change and adjusts bdev size.
1256 * @disk: struct gendisk to check
1257 * @verbose: if %true log a message about a size change if there is any
1258 *
1259 * This routine checks to see if the bdev size does not match the disk size
1260 * and adjusts it if it differs. When shrinking the bdev size, its all caches
1261 * are freed.
1262 */
1263void revalidate_disk_size(struct gendisk *disk, bool verbose)
1264{
1265 struct block_device *bdev;
1266
1267 /*
1268 * Hidden disks don't have associated bdev so there's no point in
1269 * revalidating them.
1270 */
1271 if (disk->flags & GENHD_FL_HIDDEN)
1272 return;
1273
1274 bdev = bdget_disk(disk, 0);
1275 if (bdev) {
1276 check_disk_size_change(disk, bdev, verbose);
1277 bdput(bdev);
1278 }
1279}
Christoph Hellwig659e56b2020-09-01 17:57:43 +02001280
Christoph Hellwig611bee52020-08-23 11:10:41 +02001281void bd_set_nr_sectors(struct block_device *bdev, sector_t sectors)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282{
Christoph Hellwigc2b4bb82020-08-23 11:10:42 +02001283 spin_lock(&bdev->bd_size_lock);
Christoph Hellwig611bee52020-08-23 11:10:41 +02001284 i_size_write(bdev->bd_inode, (loff_t)sectors << SECTOR_SHIFT);
Christoph Hellwigc2b4bb82020-08-23 11:10:42 +02001285 spin_unlock(&bdev->bd_size_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286}
Christoph Hellwig611bee52020-08-23 11:10:41 +02001287EXPORT_SYMBOL(bd_set_nr_sectors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288
Al Viro4385bab2013-05-05 22:11:03 -04001289static void __blkdev_put(struct block_device *bdev, fmode_t mode, int for_part);
NeilBrown37be4122006-12-08 02:36:16 -08001290
Christoph Hellwig142fe8f2019-11-14 15:34:35 +01001291int bdev_disk_changed(struct block_device *bdev, bool invalidate)
Christoph Hellwiga1548b62019-11-14 15:34:34 +01001292{
Christoph Hellwig142fe8f2019-11-14 15:34:35 +01001293 struct gendisk *disk = bdev->bd_disk;
Christoph Hellwiga1548b62019-11-14 15:34:34 +01001294 int ret;
1295
Christoph Hellwigf0b870d2019-11-14 15:34:36 +01001296 lockdep_assert_held(&bdev->bd_mutex);
1297
Christoph Hellwig38430f02020-09-21 09:19:45 +02001298 clear_bit(GD_NEED_PART_SCAN, &bdev->bd_disk->state);
Christoph Hellwig6540fbf2020-09-01 17:57:41 +02001299
Christoph Hellwiga1548b62019-11-14 15:34:34 +01001300rescan:
Christoph Hellwigd46430b2020-04-14 09:28:57 +02001301 ret = blk_drop_partitions(bdev);
Christoph Hellwiga1548b62019-11-14 15:34:34 +01001302 if (ret)
1303 return ret;
1304
Christoph Hellwigd981cb52020-03-18 09:12:06 +01001305 /*
1306 * Historically we only set the capacity to zero for devices that
1307 * support partitions (independ of actually having partitions created).
1308 * Doing that is rather inconsistent, but changing it broke legacy
1309 * udisks polling for legacy ide-cdrom devices. Use the crude check
1310 * below to get the sane behavior for most device while not breaking
1311 * userspace for this particular setup.
1312 */
1313 if (invalidate) {
1314 if (disk_part_scan_enabled(disk) ||
1315 !(disk->flags & GENHD_FL_REMOVABLE))
1316 set_capacity(disk, 0);
1317 } else {
1318 if (disk->fops->revalidate_disk)
1319 disk->fops->revalidate_disk(disk);
1320 }
Christoph Hellwiga1548b62019-11-14 15:34:34 +01001321
1322 check_disk_size_change(disk, bdev, !invalidate);
Christoph Hellwiga1548b62019-11-14 15:34:34 +01001323
Christoph Hellwig142fe8f2019-11-14 15:34:35 +01001324 if (get_capacity(disk)) {
1325 ret = blk_add_partitions(disk, bdev);
1326 if (ret == -EAGAIN)
1327 goto rescan;
Eric Biggers490547c2019-12-02 10:21:34 -08001328 } else if (invalidate) {
Christoph Hellwiga1548b62019-11-14 15:34:34 +01001329 /*
1330 * Tell userspace that the media / partition table may have
1331 * changed.
1332 */
1333 kobject_uevent(&disk_to_dev(disk)->kobj, KOBJ_CHANGE);
Christoph Hellwiga1548b62019-11-14 15:34:34 +01001334 }
1335
Christoph Hellwiga1548b62019-11-14 15:34:34 +01001336 return ret;
1337}
Christoph Hellwigf0b870d2019-11-14 15:34:36 +01001338/*
1339 * Only exported for for loop and dasd for historic reasons. Don't use in new
1340 * code!
1341 */
1342EXPORT_SYMBOL_GPL(bdev_disk_changed);
Christoph Hellwiga1548b62019-11-14 15:34:34 +01001343
Peter Zijlstra6d740cd2007-02-20 13:58:18 -08001344/*
1345 * bd_mutex locking:
1346 *
1347 * mutex_lock(part->bd_mutex)
1348 * mutex_lock_nested(whole->bd_mutex, 1)
1349 */
Christoph Hellwig5b56b6ed2020-11-23 10:19:22 +01001350static int __blkdev_get(struct block_device *bdev, struct gendisk *disk,
1351 int partno, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352{
Pavel Emelyanov7db9cfd2008-06-05 22:46:27 -07001353 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 if (!bdev->bd_openers) {
1356 bdev->bd_disk = disk;
1357 bdev->bd_contains = bdev;
Christoph Hellwigc2ee0702017-08-23 19:10:31 +02001358 bdev->bd_partno = partno;
Dan Williams03cdadb2016-02-26 15:19:43 -08001359
Tejun Heocf771cb2008-09-03 09:01:09 +02001360 if (!partno) {
Tejun Heo89f97492008-11-05 10:21:06 +01001361 ret = -ENXIO;
1362 bdev->bd_part = disk_get_part(disk, partno);
1363 if (!bdev->bd_part)
1364 goto out_clear;
1365
Tejun Heo1196f8b2011-04-21 20:54:45 +02001366 ret = 0;
Christoph Hellwig5b56b6ed2020-11-23 10:19:22 +01001367 if (disk->fops->open)
Al Viro572c4892007-10-08 13:24:05 -04001368 ret = disk->fops->open(bdev, mode);
Tejun Heo7e697232011-05-23 13:26:07 +02001369
Jan Kara04906b22019-01-14 09:48:10 +01001370 if (!ret) {
Christoph Hellwig611bee52020-08-23 11:10:41 +02001371 bd_set_nr_sectors(bdev, get_capacity(disk));
Jan Kara04906b22019-01-14 09:48:10 +01001372 set_init_blocksize(bdev);
1373 }
Tejun Heo7e697232011-05-23 13:26:07 +02001374
Tejun Heo1196f8b2011-04-21 20:54:45 +02001375 /*
1376 * If the device is invalidated, rescan partition
1377 * if open succeeded or failed with -ENOMEDIUM.
1378 * The latter is necessary to prevent ghost
1379 * partitions on a removed medium.
1380 */
Christoph Hellwig38430f02020-09-21 09:19:45 +02001381 if (test_bit(GD_NEED_PART_SCAN, &disk->state) &&
Jan Kara731dc482019-10-21 10:37:59 +02001382 (!ret || ret == -ENOMEDIUM))
1383 bdev_disk_changed(bdev, ret == -ENOMEDIUM);
Dan Williams5a023cd2015-11-30 10:20:29 -08001384
Tejun Heo1196f8b2011-04-21 20:54:45 +02001385 if (ret)
1386 goto out_clear;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 } else {
Christoph Hellwig5b56b6ed2020-11-23 10:19:22 +01001388 struct block_device *whole = bdget_disk(disk, 0);
1389
1390 mutex_lock_nested(&whole->bd_mutex, 1);
1391 ret = __blkdev_get(whole, disk, 0, mode);
1392 if (ret) {
1393 mutex_unlock(&whole->bd_mutex);
1394 bdput(whole);
Tejun Heo0762b8b2008-08-25 19:56:12 +09001395 goto out_clear;
Christoph Hellwig5b56b6ed2020-11-23 10:19:22 +01001396 }
1397 whole->bd_part_count++;
1398 mutex_unlock(&whole->bd_mutex);
1399
1400 bdev->bd_contains = whole;
Tejun Heo89f97492008-11-05 10:21:06 +01001401 bdev->bd_part = disk_get_part(disk, partno);
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001402 if (!(disk->flags & GENHD_FL_UP) ||
Tejun Heo89f97492008-11-05 10:21:06 +01001403 !bdev->bd_part || !bdev->bd_part->nr_sects) {
Christoph Hellwig5b56b6ed2020-11-23 10:19:22 +01001404 __blkdev_put(whole, mode, 1);
Christoph Hellwig63d99322020-11-26 09:22:18 +01001405 bdput(whole);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 ret = -ENXIO;
Tejun Heo0762b8b2008-08-25 19:56:12 +09001407 goto out_clear;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 }
Christoph Hellwig611bee52020-08-23 11:10:41 +02001409 bd_set_nr_sectors(bdev, bdev->bd_part->nr_sects);
Jan Kara04906b22019-01-14 09:48:10 +01001410 set_init_blocksize(bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 }
Jan Kara03e26272017-03-23 01:36:53 +01001412
1413 if (bdev->bd_bdi == &noop_backing_dev_info)
1414 bdev->bd_bdi = bdi_get(disk->queue->backing_dev_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 if (bdev->bd_contains == bdev) {
Tejun Heo1196f8b2011-04-21 20:54:45 +02001417 ret = 0;
1418 if (bdev->bd_disk->fops->open)
Al Viro572c4892007-10-08 13:24:05 -04001419 ret = bdev->bd_disk->fops->open(bdev, mode);
Tejun Heo1196f8b2011-04-21 20:54:45 +02001420 /* the same as first opener case, read comment there */
Christoph Hellwig38430f02020-09-21 09:19:45 +02001421 if (test_bit(GD_NEED_PART_SCAN, &disk->state) &&
Jan Kara731dc482019-10-21 10:37:59 +02001422 (!ret || ret == -ENOMEDIUM))
1423 bdev_disk_changed(bdev, ret == -ENOMEDIUM);
Tejun Heo1196f8b2011-04-21 20:54:45 +02001424 if (ret)
Christoph Hellwig5b56b6ed2020-11-23 10:19:22 +01001425 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 }
1427 }
1428 bdev->bd_openers++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 return 0;
1430
Tejun Heo0762b8b2008-08-25 19:56:12 +09001431 out_clear:
Tejun Heo89f97492008-11-05 10:21:06 +01001432 disk_put_part(bdev->bd_part);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 bdev->bd_disk = NULL;
Tejun Heo0762b8b2008-08-25 19:56:12 +09001434 bdev->bd_part = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 bdev->bd_contains = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 return ret;
1437}
1438
Tejun Heod4d77622010-11-13 11:55:18 +01001439/**
Christoph Hellwig4e7b5672020-11-23 13:38:40 +01001440 * blkdev_get_by_dev - open a block device by device number
1441 * @dev: device number of block device to open
Tejun Heod4d77622010-11-13 11:55:18 +01001442 * @mode: FMODE_* mask
1443 * @holder: exclusive holder identifier
1444 *
Christoph Hellwig4e7b5672020-11-23 13:38:40 +01001445 * Open the block device described by device number @dev. If @mode includes
1446 * %FMODE_EXCL, the block device is opened with exclusive access. Specifying
1447 * %FMODE_EXCL with a %NULL @holder is invalid. Exclusive opens may nest for
1448 * the same @holder.
Tejun Heod4d77622010-11-13 11:55:18 +01001449 *
Christoph Hellwig4e7b5672020-11-23 13:38:40 +01001450 * Use this interface ONLY if you really do not have anything better - i.e. when
1451 * you are behind a truly sucky interface and all you are given is a device
1452 * number. Everything else should use blkdev_get_by_path().
Tejun Heod4d77622010-11-13 11:55:18 +01001453 *
1454 * CONTEXT:
1455 * Might sleep.
1456 *
1457 * RETURNS:
Christoph Hellwig4e7b5672020-11-23 13:38:40 +01001458 * Reference to the block_device on success, ERR_PTR(-errno) on failure.
Tejun Heod4d77622010-11-13 11:55:18 +01001459 */
Christoph Hellwig4e7b5672020-11-23 13:38:40 +01001460struct block_device *blkdev_get_by_dev(dev_t dev, fmode_t mode, void *holder)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461{
Christoph Hellwig5b56b6ed2020-11-23 10:19:22 +01001462 struct block_device *claiming;
1463 bool unblock_events = true;
Christoph Hellwig4e7b5672020-11-23 13:38:40 +01001464 struct block_device *bdev;
Christoph Hellwig5b56b6ed2020-11-23 10:19:22 +01001465 struct gendisk *disk;
Christoph Hellwig5b56b6ed2020-11-23 10:19:22 +01001466 int partno;
1467 int ret;
Tejun Heoe525fd82010-11-13 11:55:17 +01001468
Christoph Hellwig7918f0f2020-11-23 13:44:44 +01001469 ret = devcgroup_check_permission(DEVCG_DEV_BLOCK,
Christoph Hellwig4e7b5672020-11-23 13:38:40 +01001470 MAJOR(dev), MINOR(dev),
Christoph Hellwig7918f0f2020-11-23 13:44:44 +01001471 ((mode & FMODE_READ) ? DEVCG_ACC_READ : 0) |
1472 ((mode & FMODE_WRITE) ? DEVCG_ACC_WRITE : 0));
Christoph Hellwige5c7fb42020-08-31 20:02:36 +02001473 if (ret)
Christoph Hellwig4e7b5672020-11-23 13:38:40 +01001474 return ERR_PTR(ret);
1475
1476 bdev = bdget(dev);
1477 if (!bdev)
1478 return ERR_PTR(-ENOMEM);
Christoph Hellwige5c7fb42020-08-31 20:02:36 +02001479
Christoph Hellwig5b56b6ed2020-11-23 10:19:22 +01001480 /*
1481 * If we lost a race with 'disk' being deleted, try again. See md.c.
1482 */
1483retry:
1484 ret = -ENXIO;
1485 disk = bdev_get_gendisk(bdev, &partno);
1486 if (!disk)
Christoph Hellwige5c7fb42020-08-31 20:02:36 +02001487 goto bdput;
Christoph Hellwige5c7fb42020-08-31 20:02:36 +02001488
Christoph Hellwig5b56b6ed2020-11-23 10:19:22 +01001489 if (mode & FMODE_EXCL) {
1490 WARN_ON_ONCE(!holder);
1491
1492 ret = -ENOMEM;
1493 claiming = bdget_disk(disk, 0);
1494 if (!claiming)
1495 goto put_disk;
1496 ret = bd_prepare_to_claim(bdev, claiming, holder);
1497 if (ret)
1498 goto put_claiming;
1499 }
1500
1501 disk_block_events(disk);
1502
1503 mutex_lock(&bdev->bd_mutex);
1504 ret =__blkdev_get(bdev, disk, partno, mode);
1505 if (!(mode & FMODE_EXCL)) {
1506 ; /* nothing to do here */
1507 } else if (ret) {
1508 bd_abort_claiming(bdev, claiming, holder);
1509 } else {
1510 bd_finish_claiming(bdev, claiming, holder);
1511
1512 /*
1513 * Block event polling for write claims if requested. Any write
1514 * holder makes the write_holder state stick until all are
1515 * released. This is good enough and tracking individual
1516 * writeable reference is too fragile given the way @mode is
1517 * used in blkdev_get/put().
1518 */
1519 if ((mode & FMODE_WRITE) && !bdev->bd_write_holder &&
1520 (disk->flags & GENHD_FL_BLOCK_EVENTS_ON_EXCL_WRITE)) {
1521 bdev->bd_write_holder = true;
1522 unblock_events = false;
1523 }
1524 }
1525 mutex_unlock(&bdev->bd_mutex);
1526
1527 if (unblock_events)
1528 disk_unblock_events(disk);
1529
1530put_claiming:
1531 if (mode & FMODE_EXCL)
1532 bdput(claiming);
1533put_disk:
1534 if (ret)
1535 put_disk_and_module(disk);
1536 if (ret == -ERESTARTSYS)
1537 goto retry;
Christoph Hellwige5c7fb42020-08-31 20:02:36 +02001538bdput:
Christoph Hellwig4e7b5672020-11-23 13:38:40 +01001539 if (ret) {
Christoph Hellwig5b56b6ed2020-11-23 10:19:22 +01001540 bdput(bdev);
Christoph Hellwig4e7b5672020-11-23 13:38:40 +01001541 return ERR_PTR(ret);
1542 }
1543 return bdev;
NeilBrown37be4122006-12-08 02:36:16 -08001544}
Christoph Hellwig4e7b5672020-11-23 13:38:40 +01001545EXPORT_SYMBOL(blkdev_get_by_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546
Tejun Heod4d77622010-11-13 11:55:18 +01001547/**
1548 * blkdev_get_by_path - open a block device by name
1549 * @path: path to the block device to open
1550 * @mode: FMODE_* mask
1551 * @holder: exclusive holder identifier
1552 *
Christoph Hellwig4e7b5672020-11-23 13:38:40 +01001553 * Open the block device described by the device file at @path. If @mode
1554 * includes %FMODE_EXCL, the block device is opened with exclusive access.
1555 * Specifying %FMODE_EXCL with a %NULL @holder is invalid. Exclusive opens may
1556 * nest for the same @holder.
Tejun Heod4d77622010-11-13 11:55:18 +01001557 *
1558 * CONTEXT:
1559 * Might sleep.
1560 *
1561 * RETURNS:
Christoph Hellwig4e7b5672020-11-23 13:38:40 +01001562 * Reference to the block_device on success, ERR_PTR(-errno) on failure.
Tejun Heod4d77622010-11-13 11:55:18 +01001563 */
1564struct block_device *blkdev_get_by_path(const char *path, fmode_t mode,
1565 void *holder)
1566{
1567 struct block_device *bdev;
Christoph Hellwig4e7b5672020-11-23 13:38:40 +01001568 dev_t dev;
1569 int error;
Tejun Heod4d77622010-11-13 11:55:18 +01001570
Christoph Hellwig4e7b5672020-11-23 13:38:40 +01001571 error = lookup_bdev(path, &dev);
1572 if (error)
1573 return ERR_PTR(error);
Tejun Heod4d77622010-11-13 11:55:18 +01001574
Christoph Hellwig4e7b5672020-11-23 13:38:40 +01001575 bdev = blkdev_get_by_dev(dev, mode, holder);
1576 if (!IS_ERR(bdev) && (mode & FMODE_WRITE) && bdev_read_only(bdev)) {
Chuck Ebberte51900f2011-02-16 18:11:53 -05001577 blkdev_put(bdev, mode);
1578 return ERR_PTR(-EACCES);
1579 }
1580
Tejun Heod4d77622010-11-13 11:55:18 +01001581 return bdev;
1582}
1583EXPORT_SYMBOL(blkdev_get_by_path);
1584
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585static int blkdev_open(struct inode * inode, struct file * filp)
1586{
1587 struct block_device *bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588
1589 /*
1590 * Preserve backwards compatibility and allow large file access
1591 * even if userspace doesn't ask for it explicitly. Some mkfs
1592 * binary needs it. We might want to drop this workaround
1593 * during an unstable branch.
1594 */
1595 filp->f_flags |= O_LARGEFILE;
1596
Jens Axboea304f072020-05-22 09:14:08 -06001597 filp->f_mode |= FMODE_NOWAIT | FMODE_BUF_RASYNC;
Christoph Hellwigc35fc7a2017-08-29 16:13:21 +02001598
Al Viro572c4892007-10-08 13:24:05 -04001599 if (filp->f_flags & O_NDELAY)
1600 filp->f_mode |= FMODE_NDELAY;
1601 if (filp->f_flags & O_EXCL)
1602 filp->f_mode |= FMODE_EXCL;
1603 if ((filp->f_flags & O_ACCMODE) == 3)
1604 filp->f_mode |= FMODE_WRITE_IOCTL;
1605
Christoph Hellwig4e7b5672020-11-23 13:38:40 +01001606 bdev = blkdev_get_by_dev(inode->i_rdev, filp->f_mode, filp);
1607 if (IS_ERR(bdev))
1608 return PTR_ERR(bdev);
Al Viro572c4892007-10-08 13:24:05 -04001609 filp->f_mapping = bdev->bd_inode->i_mapping;
Jeff Layton5660e132017-07-06 07:02:25 -04001610 filp->f_wb_err = filemap_sample_wb_err(filp->f_mapping);
Christoph Hellwig4e7b5672020-11-23 13:38:40 +01001611 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612}
1613
Al Viro4385bab2013-05-05 22:11:03 -04001614static void __blkdev_put(struct block_device *bdev, fmode_t mode, int for_part)
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001615{
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001616 struct gendisk *disk = bdev->bd_disk;
NeilBrown37be4122006-12-08 02:36:16 -08001617 struct block_device *victim = NULL;
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001618
Douglas Andersonb849dd82020-03-24 14:48:27 -07001619 /*
1620 * Sync early if it looks like we're the last one. If someone else
1621 * opens the block device between now and the decrement of bd_openers
1622 * then we did a sync that we didn't need to, but that's not the end
1623 * of the world and we want to avoid long (could be several minute)
1624 * syncs while holding the mutex.
1625 */
1626 if (bdev->bd_openers == 1)
1627 sync_blockdev(bdev);
1628
NeilBrown6796bf52006-12-08 02:36:16 -08001629 mutex_lock_nested(&bdev->bd_mutex, for_part);
NeilBrown37be4122006-12-08 02:36:16 -08001630 if (for_part)
1631 bdev->bd_part_count--;
1632
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001633 if (!--bdev->bd_openers) {
Tejun Heo6a027ef2010-11-13 11:55:17 +01001634 WARN_ON_ONCE(bdev->bd_holders);
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001635 sync_blockdev(bdev);
1636 kill_bdev(bdev);
Vivek Goyaldbd3ca52015-11-09 09:23:40 -07001637 bdev_write_inode(bdev);
Christoph Hellwigec5d4512020-11-17 12:01:26 +01001638
1639 if (!bdev_is_partition(bdev) && disk->fops->release)
Al Virodb2a1442013-05-05 21:52:57 -04001640 disk->fops->release(disk, mode);
Christoph Hellwigec5d4512020-11-17 12:01:26 +01001641
Tejun Heo0762b8b2008-08-25 19:56:12 +09001642 disk_put_part(bdev->bd_part);
1643 bdev->bd_part = NULL;
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001644 bdev->bd_disk = NULL;
Christoph Hellwigec5d4512020-11-17 12:01:26 +01001645 if (bdev_is_partition(bdev))
NeilBrown37be4122006-12-08 02:36:16 -08001646 victim = bdev->bd_contains;
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001647 bdev->bd_contains = NULL;
Christoph Hellwigec5d4512020-11-17 12:01:26 +01001648 } else {
1649 if (!bdev_is_partition(bdev) && disk->fops->release)
1650 disk->fops->release(disk, mode);
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001651 }
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001652 mutex_unlock(&bdev->bd_mutex);
Christoph Hellwig63d99322020-11-26 09:22:18 +01001653 if (victim) {
Al Viro9a1c3542008-02-22 20:40:24 -05001654 __blkdev_put(victim, mode, 1);
Christoph Hellwig63d99322020-11-26 09:22:18 +01001655 bdput(victim);
1656 }
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001657}
1658
Al Viro4385bab2013-05-05 22:11:03 -04001659void blkdev_put(struct block_device *bdev, fmode_t mode)
NeilBrown37be4122006-12-08 02:36:16 -08001660{
Christoph Hellwig5b56b6ed2020-11-23 10:19:22 +01001661 struct gendisk *disk = bdev->bd_disk;
1662
Tejun Heo85ef06d2011-07-01 16:17:47 +02001663 mutex_lock(&bdev->bd_mutex);
1664
Tejun Heoe525fd82010-11-13 11:55:17 +01001665 if (mode & FMODE_EXCL) {
Tejun Heo6a027ef2010-11-13 11:55:17 +01001666 bool bdev_free;
1667
1668 /*
1669 * Release a claim on the device. The holder fields
1670 * are protected with bdev_lock. bd_mutex is to
1671 * synchronize disk_holder unlinking.
1672 */
Tejun Heo6a027ef2010-11-13 11:55:17 +01001673 spin_lock(&bdev_lock);
1674
1675 WARN_ON_ONCE(--bdev->bd_holders < 0);
1676 WARN_ON_ONCE(--bdev->bd_contains->bd_holders < 0);
1677
1678 /* bd_contains might point to self, check in a separate step */
1679 if ((bdev_free = !bdev->bd_holders))
1680 bdev->bd_holder = NULL;
1681 if (!bdev->bd_contains->bd_holders)
1682 bdev->bd_contains->bd_holder = NULL;
1683
1684 spin_unlock(&bdev_lock);
1685
Tejun Heo77ea8872010-12-08 20:57:37 +01001686 /*
1687 * If this was the last claim, remove holder link and
1688 * unblock evpoll if it was a write holder.
1689 */
Tejun Heo85ef06d2011-07-01 16:17:47 +02001690 if (bdev_free && bdev->bd_write_holder) {
Christoph Hellwig5b56b6ed2020-11-23 10:19:22 +01001691 disk_unblock_events(disk);
Tejun Heo85ef06d2011-07-01 16:17:47 +02001692 bdev->bd_write_holder = false;
Tejun Heo77ea8872010-12-08 20:57:37 +01001693 }
Tejun Heo69362172011-03-09 19:54:27 +01001694 }
Tejun Heo77ea8872010-12-08 20:57:37 +01001695
Tejun Heo85ef06d2011-07-01 16:17:47 +02001696 /*
1697 * Trigger event checking and tell drivers to flush MEDIA_CHANGE
1698 * event. This is to ensure detection of media removal commanded
1699 * from userland - e.g. eject(1).
1700 */
Christoph Hellwig5b56b6ed2020-11-23 10:19:22 +01001701 disk_flush_events(disk, DISK_EVENT_MEDIA_CHANGE);
Tejun Heo85ef06d2011-07-01 16:17:47 +02001702
1703 mutex_unlock(&bdev->bd_mutex);
1704
Al Viro4385bab2013-05-05 22:11:03 -04001705 __blkdev_put(bdev, mode, 0);
Christoph Hellwig63d99322020-11-26 09:22:18 +01001706 bdput(bdev);
Christoph Hellwig5b56b6ed2020-11-23 10:19:22 +01001707 put_disk_and_module(disk);
NeilBrown37be4122006-12-08 02:36:16 -08001708}
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001709EXPORT_SYMBOL(blkdev_put);
1710
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711static int blkdev_close(struct inode * inode, struct file * filp)
1712{
Dan Williams4ebb16c2015-10-28 07:48:19 +09001713 struct block_device *bdev = I_BDEV(bdev_file_inode(filp));
Al Viro4385bab2013-05-05 22:11:03 -04001714 blkdev_put(bdev, filp->f_mode);
1715 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716}
1717
Arnd Bergmannbb93e3a2005-06-23 00:10:15 -07001718static long block_ioctl(struct file *file, unsigned cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719{
Dan Williams4ebb16c2015-10-28 07:48:19 +09001720 struct block_device *bdev = I_BDEV(bdev_file_inode(file));
Al Viro56b26ad2008-09-19 03:17:36 -04001721 fmode_t mode = file->f_mode;
Christoph Hellwigfd4ce1a2008-11-05 14:58:42 +01001722
1723 /*
1724 * O_NDELAY can be altered using fcntl(.., F_SETFL, ..), so we have
1725 * to updated it before every ioctl.
1726 */
Al Viro56b26ad2008-09-19 03:17:36 -04001727 if (file->f_flags & O_NDELAY)
Christoph Hellwigfd4ce1a2008-11-05 14:58:42 +01001728 mode |= FMODE_NDELAY;
1729 else
1730 mode &= ~FMODE_NDELAY;
1731
Al Viro56b26ad2008-09-19 03:17:36 -04001732 return blkdev_ioctl(bdev, mode, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733}
1734
Theodore Ts'o87d8fe12009-01-03 09:47:09 -05001735/*
Christoph Hellwigeef99382009-08-20 17:43:41 +02001736 * Write data to the block device. Only intended for the block device itself
1737 * and the raw driver which basically is a fake block device.
1738 *
1739 * Does not take i_mutex for the write and thus is not for general purpose
1740 * use.
1741 */
Al Viro1456c0a2014-04-03 03:21:50 -04001742ssize_t blkdev_write_iter(struct kiocb *iocb, struct iov_iter *from)
Christoph Hellwigeef99382009-08-20 17:43:41 +02001743{
1744 struct file *file = iocb->ki_filp;
Dan Williams4ebb16c2015-10-28 07:48:19 +09001745 struct inode *bd_inode = bdev_file_inode(file);
Al Viro7ec7b942015-04-07 11:35:14 -04001746 loff_t size = i_size_read(bd_inode);
Jianpeng Ma53362a02012-08-02 09:50:39 +02001747 struct blk_plug plug;
Christoph Hellwigeef99382009-08-20 17:43:41 +02001748 ssize_t ret;
Al Viro5f380c72015-04-07 11:28:12 -04001749
Al Viro7ec7b942015-04-07 11:35:14 -04001750 if (bdev_read_only(I_BDEV(bd_inode)))
1751 return -EPERM;
Al Viro5f380c72015-04-07 11:28:12 -04001752
Christoph Hellwigbb3247a392020-09-21 09:19:55 +02001753 if (IS_SWAPFILE(bd_inode) && !is_hibernate_resume_dev(bd_inode->i_rdev))
Darrick J. Wongdc617f22019-08-20 07:55:16 -07001754 return -ETXTBSY;
1755
Al Viro7ec7b942015-04-07 11:35:14 -04001756 if (!iov_iter_count(from))
Al Viro5f380c72015-04-07 11:28:12 -04001757 return 0;
1758
Al Viro7ec7b942015-04-07 11:35:14 -04001759 if (iocb->ki_pos >= size)
1760 return -ENOSPC;
1761
Christoph Hellwigc35fc7a2017-08-29 16:13:21 +02001762 if ((iocb->ki_flags & (IOCB_NOWAIT | IOCB_DIRECT)) == IOCB_NOWAIT)
1763 return -EOPNOTSUPP;
1764
Al Viro7ec7b942015-04-07 11:35:14 -04001765 iov_iter_truncate(from, size - iocb->ki_pos);
Christoph Hellwigeef99382009-08-20 17:43:41 +02001766
Jianpeng Ma53362a02012-08-02 09:50:39 +02001767 blk_start_plug(&plug);
Al Viro1456c0a2014-04-03 03:21:50 -04001768 ret = __generic_file_write_iter(iocb, from);
Christoph Hellwige2592212016-04-07 08:52:01 -07001769 if (ret > 0)
1770 ret = generic_write_sync(iocb, ret);
Jianpeng Ma53362a02012-08-02 09:50:39 +02001771 blk_finish_plug(&plug);
Christoph Hellwigeef99382009-08-20 17:43:41 +02001772 return ret;
1773}
Al Viro1456c0a2014-04-03 03:21:50 -04001774EXPORT_SYMBOL_GPL(blkdev_write_iter);
Christoph Hellwigeef99382009-08-20 17:43:41 +02001775
David Jefferyb2de5252014-09-29 10:21:10 -04001776ssize_t blkdev_read_iter(struct kiocb *iocb, struct iov_iter *to)
Linus Torvalds684c9aa2012-12-07 16:48:39 -08001777{
1778 struct file *file = iocb->ki_filp;
Dan Williams4ebb16c2015-10-28 07:48:19 +09001779 struct inode *bd_inode = bdev_file_inode(file);
Linus Torvalds684c9aa2012-12-07 16:48:39 -08001780 loff_t size = i_size_read(bd_inode);
Al Viroa8860382014-04-02 20:02:21 -04001781 loff_t pos = iocb->ki_pos;
Linus Torvalds684c9aa2012-12-07 16:48:39 -08001782
1783 if (pos >= size)
1784 return 0;
1785
1786 size -= pos;
Al Viroa8860382014-04-02 20:02:21 -04001787 iov_iter_truncate(to, size);
1788 return generic_file_read_iter(iocb, to);
Linus Torvalds684c9aa2012-12-07 16:48:39 -08001789}
David Jefferyb2de5252014-09-29 10:21:10 -04001790EXPORT_SYMBOL_GPL(blkdev_read_iter);
Linus Torvalds684c9aa2012-12-07 16:48:39 -08001791
Christoph Hellwigeef99382009-08-20 17:43:41 +02001792/*
Theodore Ts'o87d8fe12009-01-03 09:47:09 -05001793 * Try to release a page associated with block device when the system
1794 * is under memory pressure.
1795 */
1796static int blkdev_releasepage(struct page *page, gfp_t wait)
1797{
1798 struct super_block *super = BDEV_I(page->mapping->host)->bdev.bd_super;
1799
1800 if (super && super->s_op->bdev_try_to_free_page)
1801 return super->s_op->bdev_try_to_free_page(super, page, wait);
1802
1803 return try_to_free_buffers(page);
1804}
1805
Ross Zwisler7f6d5b52016-02-26 15:19:55 -08001806static int blkdev_writepages(struct address_space *mapping,
1807 struct writeback_control *wbc)
1808{
Ross Zwisler7f6d5b52016-02-26 15:19:55 -08001809 return generic_writepages(mapping, wbc);
1810}
1811
Adrian Bunk4c54ac62008-02-18 13:48:31 +01001812static const struct address_space_operations def_blk_aops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 .readpage = blkdev_readpage,
Matthew Wilcox (Oracle)d4388342020-06-01 21:47:02 -07001814 .readahead = blkdev_readahead,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 .writepage = blkdev_writepage,
Nick Piggin6272b5a2007-10-16 01:25:04 -07001816 .write_begin = blkdev_write_begin,
1817 .write_end = blkdev_write_end,
Ross Zwisler7f6d5b52016-02-26 15:19:55 -08001818 .writepages = blkdev_writepages,
Theodore Ts'o87d8fe12009-01-03 09:47:09 -05001819 .releasepage = blkdev_releasepage,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820 .direct_IO = blkdev_direct_IO,
Jan Kara88dbcbb2018-12-28 00:39:16 -08001821 .migratepage = buffer_migrate_page_norefs,
Mel Gormanb4597222013-07-03 15:02:05 -07001822 .is_dirty_writeback = buffer_check_dirty_writeback,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823};
1824
Darrick J. Wong25f4c412016-10-11 13:51:11 -07001825#define BLKDEV_FALLOC_FL_SUPPORTED \
1826 (FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE | \
1827 FALLOC_FL_ZERO_RANGE | FALLOC_FL_NO_HIDE_STALE)
1828
1829static long blkdev_fallocate(struct file *file, int mode, loff_t start,
1830 loff_t len)
1831{
1832 struct block_device *bdev = I_BDEV(bdev_file_inode(file));
Darrick J. Wong25f4c412016-10-11 13:51:11 -07001833 loff_t end = start + len - 1;
1834 loff_t isize;
1835 int error;
1836
1837 /* Fail if we don't recognize the flags. */
1838 if (mode & ~BLKDEV_FALLOC_FL_SUPPORTED)
1839 return -EOPNOTSUPP;
1840
1841 /* Don't go off the end of the device. */
1842 isize = i_size_read(bdev->bd_inode);
1843 if (start >= isize)
1844 return -EINVAL;
1845 if (end >= isize) {
1846 if (mode & FALLOC_FL_KEEP_SIZE) {
1847 len = isize - start;
1848 end = start + len - 1;
1849 } else
1850 return -EINVAL;
1851 }
1852
1853 /*
1854 * Don't allow IO that isn't aligned to logical block size.
1855 */
1856 if ((start | len) & (bdev_logical_block_size(bdev) - 1))
1857 return -EINVAL;
1858
1859 /* Invalidate the page cache, including dirty pages. */
Jan Kara384d87e2020-09-04 10:58:52 +02001860 error = truncate_bdev_range(bdev, file->f_mode, start, end);
1861 if (error)
1862 return error;
Darrick J. Wong25f4c412016-10-11 13:51:11 -07001863
1864 switch (mode) {
1865 case FALLOC_FL_ZERO_RANGE:
1866 case FALLOC_FL_ZERO_RANGE | FALLOC_FL_KEEP_SIZE:
1867 error = blkdev_issue_zeroout(bdev, start >> 9, len >> 9,
Christoph Hellwigee472d82017-04-05 19:21:08 +02001868 GFP_KERNEL, BLKDEV_ZERO_NOUNMAP);
Darrick J. Wong25f4c412016-10-11 13:51:11 -07001869 break;
1870 case FALLOC_FL_PUNCH_HOLE | FALLOC_FL_KEEP_SIZE:
Christoph Hellwig34045122017-04-05 19:21:11 +02001871 error = blkdev_issue_zeroout(bdev, start >> 9, len >> 9,
1872 GFP_KERNEL, BLKDEV_ZERO_NOFALLBACK);
Darrick J. Wong25f4c412016-10-11 13:51:11 -07001873 break;
1874 case FALLOC_FL_PUNCH_HOLE | FALLOC_FL_KEEP_SIZE | FALLOC_FL_NO_HIDE_STALE:
Darrick J. Wong25f4c412016-10-11 13:51:11 -07001875 error = blkdev_issue_discard(bdev, start >> 9, len >> 9,
1876 GFP_KERNEL, 0);
1877 break;
1878 default:
1879 return -EOPNOTSUPP;
1880 }
1881 if (error)
1882 return error;
1883
1884 /*
1885 * Invalidate again; if someone wandered in and dirtied a page,
1886 * the caller will be given -EBUSY. The third argument is
1887 * inclusive, so the rounding here is safe.
1888 */
Jan Kara384d87e2020-09-04 10:58:52 +02001889 return invalidate_inode_pages2_range(bdev->bd_inode->i_mapping,
Darrick J. Wong25f4c412016-10-11 13:51:11 -07001890 start >> PAGE_SHIFT,
1891 end >> PAGE_SHIFT);
1892}
1893
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08001894const struct file_operations def_blk_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 .open = blkdev_open,
1896 .release = blkdev_close,
1897 .llseek = block_llseek,
Al Viroa8860382014-04-02 20:02:21 -04001898 .read_iter = blkdev_read_iter,
Al Viro1456c0a2014-04-03 03:21:50 -04001899 .write_iter = blkdev_write_iter,
Christoph Hellwigeae83ce2018-11-30 08:31:52 -07001900 .iopoll = blkdev_iopoll,
Dan Williamsacc93d32016-05-07 11:40:28 -07001901 .mmap = generic_file_mmap,
Andrew Mortonb1dd3b22010-04-06 14:35:00 -07001902 .fsync = blkdev_fsync,
Arnd Bergmannbb93e3a2005-06-23 00:10:15 -07001903 .unlocked_ioctl = block_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904#ifdef CONFIG_COMPAT
1905 .compat_ioctl = compat_blkdev_ioctl,
1906#endif
Linus Torvalds1e8b3332012-11-29 10:49:50 -08001907 .splice_read = generic_file_splice_read,
Al Viro8d020762014-04-05 04:27:08 -04001908 .splice_write = iter_file_splice_write,
Darrick J. Wong25f4c412016-10-11 13:51:11 -07001909 .fallocate = blkdev_fallocate,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910};
1911
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912/**
1913 * lookup_bdev - lookup a struct block_device by name
Randy Dunlap94e29592009-01-06 14:41:15 -08001914 * @pathname: special file representing the block device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 *
Randy Dunlap57d1b532008-10-09 10:42:38 +02001916 * Get a reference to the blockdevice at @pathname in the current
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917 * namespace if possible and return it. Return ERR_PTR(error)
1918 * otherwise.
1919 */
Christoph Hellwig4e7b5672020-11-23 13:38:40 +01001920int lookup_bdev(const char *pathname, dev_t *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 struct inode *inode;
Al Viro421748e2008-08-02 01:04:36 -04001923 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924 int error;
1925
Al Viro421748e2008-08-02 01:04:36 -04001926 if (!pathname || !*pathname)
Christoph Hellwig4e7b5672020-11-23 13:38:40 +01001927 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928
Al Viro421748e2008-08-02 01:04:36 -04001929 error = kern_path(pathname, LOOKUP_FOLLOW, &path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930 if (error)
Christoph Hellwig4e7b5672020-11-23 13:38:40 +01001931 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932
David Howellsbb6687342015-03-17 22:26:21 +00001933 inode = d_backing_inode(path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 error = -ENOTBLK;
1935 if (!S_ISBLK(inode->i_mode))
Christoph Hellwig4e7b5672020-11-23 13:38:40 +01001936 goto out_path_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 error = -EACCES;
Eric W. Biedermana2982cc2016-06-09 15:34:02 -05001938 if (!may_open_dev(&path))
Christoph Hellwig4e7b5672020-11-23 13:38:40 +01001939 goto out_path_put;
1940
1941 *dev = inode->i_rdev;
1942 error = 0;
1943out_path_put:
Al Viro421748e2008-08-02 01:04:36 -04001944 path_put(&path);
Christoph Hellwig4e7b5672020-11-23 13:38:40 +01001945 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946}
Al Virod5686b42008-08-01 05:00:11 -04001947EXPORT_SYMBOL(lookup_bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948
NeilBrown93b270f2011-02-24 17:25:47 +11001949int __invalidate_device(struct block_device *bdev, bool kill_dirty)
David Howellsb71e8a42006-08-29 19:06:11 +01001950{
1951 struct super_block *sb = get_super(bdev);
1952 int res = 0;
1953
1954 if (sb) {
1955 /*
1956 * no need to lock the super, get_super holds the
1957 * read mutex so the filesystem cannot go away
1958 * under us (->put_super runs with the write lock
1959 * hold).
1960 */
1961 shrink_dcache_sb(sb);
NeilBrown93b270f2011-02-24 17:25:47 +11001962 res = invalidate_inodes(sb, kill_dirty);
David Howellsb71e8a42006-08-29 19:06:11 +01001963 drop_super(sb);
1964 }
Peter Zijlstraf98393a2007-05-06 14:49:54 -07001965 invalidate_bdev(bdev);
David Howellsb71e8a42006-08-29 19:06:11 +01001966 return res;
1967}
1968EXPORT_SYMBOL(__invalidate_device);
Jan Kara5c0d6b62012-07-03 16:45:31 +02001969
1970void iterate_bdevs(void (*func)(struct block_device *, void *), void *arg)
1971{
1972 struct inode *inode, *old_inode = NULL;
1973
Dave Chinner74278da2015-03-04 12:37:22 -05001974 spin_lock(&blockdev_superblock->s_inode_list_lock);
Jan Kara5c0d6b62012-07-03 16:45:31 +02001975 list_for_each_entry(inode, &blockdev_superblock->s_inodes, i_sb_list) {
1976 struct address_space *mapping = inode->i_mapping;
Rabin Vincentaf309222016-12-01 09:18:28 +01001977 struct block_device *bdev;
Jan Kara5c0d6b62012-07-03 16:45:31 +02001978
1979 spin_lock(&inode->i_lock);
1980 if (inode->i_state & (I_FREEING|I_WILL_FREE|I_NEW) ||
1981 mapping->nrpages == 0) {
1982 spin_unlock(&inode->i_lock);
1983 continue;
1984 }
1985 __iget(inode);
1986 spin_unlock(&inode->i_lock);
Dave Chinner74278da2015-03-04 12:37:22 -05001987 spin_unlock(&blockdev_superblock->s_inode_list_lock);
Jan Kara5c0d6b62012-07-03 16:45:31 +02001988 /*
1989 * We hold a reference to 'inode' so it couldn't have been
1990 * removed from s_inodes list while we dropped the
Dave Chinner74278da2015-03-04 12:37:22 -05001991 * s_inode_list_lock We cannot iput the inode now as we can
Jan Kara5c0d6b62012-07-03 16:45:31 +02001992 * be holding the last reference and we cannot iput it under
Dave Chinner74278da2015-03-04 12:37:22 -05001993 * s_inode_list_lock. So we keep the reference and iput it
Jan Kara5c0d6b62012-07-03 16:45:31 +02001994 * later.
1995 */
1996 iput(old_inode);
1997 old_inode = inode;
Rabin Vincentaf309222016-12-01 09:18:28 +01001998 bdev = I_BDEV(inode);
Jan Kara5c0d6b62012-07-03 16:45:31 +02001999
Rabin Vincentaf309222016-12-01 09:18:28 +01002000 mutex_lock(&bdev->bd_mutex);
2001 if (bdev->bd_openers)
2002 func(bdev, arg);
2003 mutex_unlock(&bdev->bd_mutex);
Jan Kara5c0d6b62012-07-03 16:45:31 +02002004
Dave Chinner74278da2015-03-04 12:37:22 -05002005 spin_lock(&blockdev_superblock->s_inode_list_lock);
Jan Kara5c0d6b62012-07-03 16:45:31 +02002006 }
Dave Chinner74278da2015-03-04 12:37:22 -05002007 spin_unlock(&blockdev_superblock->s_inode_list_lock);
Jan Kara5c0d6b62012-07-03 16:45:31 +02002008 iput(old_inode);
2009}