blob: 7758adee6efecb3dfc27997e020ab00b67a59850 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/block_dev.c
3 *
4 * Copyright (C) 1991, 1992 Linus Torvalds
5 * Copyright (C) 2001 Andrea Arcangeli <andrea@suse.de> SuSE
6 */
7
Linus Torvalds1da177e2005-04-16 15:20:36 -07008#include <linux/init.h>
9#include <linux/mm.h>
10#include <linux/fcntl.h>
11#include <linux/slab.h>
12#include <linux/kmod.h>
13#include <linux/major.h>
Pavel Emelyanov7db9cfd2008-06-05 22:46:27 -070014#include <linux/device_cgroup.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/highmem.h>
16#include <linux/blkdev.h>
Tejun Heo66114ca2015-05-22 17:13:32 -040017#include <linux/backing-dev.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/module.h>
19#include <linux/blkpg.h>
Muthu Kumarb502bd12012-03-23 15:01:50 -070020#include <linux/magic.h>
Dan Williamsb0686262017-01-26 20:37:35 -080021#include <linux/dax.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>
28#include <linux/uio.h>
29#include <linux/namei.h>
Vignesh Babu BM1368c4f2007-05-08 00:24:32 -070030#include <linux/log2.h>
Al Viroff01bb42011-09-16 02:31:11 -040031#include <linux/cleancache.h>
Matthew Wilcoxc94c2ac2015-09-08 14:58:40 -070032#include <linux/dax.h>
Dan Williamsacc93d32016-05-07 11:40:28 -070033#include <linux/badblocks.h>
Christoph Hellwig189ce2b2016-10-31 11:59:25 -060034#include <linux/task_io_accounting_ops.h>
Darrick J. Wong25f4c412016-10-11 13:51:11 -070035#include <linux/falloc.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080036#include <linux/uaccess.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.. */
Al Viroff01bb42011-09-16 02:31:11 -040078void 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087}
Al Viroff01bb42011-09-16 02:31:11 -040088EXPORT_SYMBOL(kill_bdev);
89
90/* Invalidate clean unused buffers and pagecache. */
91void invalidate_bdev(struct block_device *bdev)
92{
93 struct address_space *mapping = bdev->bd_inode->i_mapping;
94
Andrey Ryabinina5f6a6a2017-05-03 14:56:02 -070095 if (mapping->nrpages) {
96 invalidate_bh_lrus();
97 lru_add_drain_all(); /* make sure all lru add caches are flushed */
98 invalidate_mapping_pages(mapping, 0, -1);
99 }
Al Viroff01bb42011-09-16 02:31:11 -0400100 /* 99% of the time, we don't need to flush the cleancache on the bdev.
101 * But, for the strange corners, lets be cautious
102 */
Dan Magenheimer31677602011-09-21 11:56:28 -0400103 cleancache_invalidate_inode(mapping);
Al Viroff01bb42011-09-16 02:31:11 -0400104}
105EXPORT_SYMBOL(invalidate_bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
Jan Kara04906b22019-01-14 09:48:10 +0100107static void set_init_blocksize(struct block_device *bdev)
108{
109 unsigned bsize = bdev_logical_block_size(bdev);
110 loff_t size = i_size_read(bdev->bd_inode);
111
112 while (bsize < PAGE_SIZE) {
113 if (size & bsize)
114 break;
115 bsize <<= 1;
116 }
117 bdev->bd_block_size = bsize;
118 bdev->bd_inode->i_blkbits = blksize_bits(bsize);
119}
120
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121int set_blocksize(struct block_device *bdev, int size)
122{
123 /* Size must be a power of two, and between 512 and PAGE_SIZE */
Vignesh Babu BM1368c4f2007-05-08 00:24:32 -0700124 if (size > PAGE_SIZE || size < 512 || !is_power_of_2(size))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 return -EINVAL;
126
127 /* Size cannot be smaller than the size supported by the device */
Martin K. Petersene1defc42009-05-22 17:17:49 -0400128 if (size < bdev_logical_block_size(bdev))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 return -EINVAL;
130
131 /* Don't change the size if it is same as current */
132 if (bdev->bd_block_size != size) {
133 sync_blockdev(bdev);
134 bdev->bd_block_size = size;
135 bdev->bd_inode->i_blkbits = blksize_bits(size);
136 kill_bdev(bdev);
137 }
138 return 0;
139}
140
141EXPORT_SYMBOL(set_blocksize);
142
143int sb_set_blocksize(struct super_block *sb, int size)
144{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 if (set_blocksize(sb->s_bdev, size))
146 return 0;
147 /* If we get here, we know size is power of two
148 * and it's value is between 512 and PAGE_SIZE */
149 sb->s_blocksize = size;
Coywolf Qi Hunt38885bd2006-03-24 03:18:05 -0800150 sb->s_blocksize_bits = blksize_bits(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 return sb->s_blocksize;
152}
153
154EXPORT_SYMBOL(sb_set_blocksize);
155
156int sb_min_blocksize(struct super_block *sb, int size)
157{
Martin K. Petersene1defc42009-05-22 17:17:49 -0400158 int minsize = bdev_logical_block_size(sb->s_bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 if (size < minsize)
160 size = minsize;
161 return sb_set_blocksize(sb, size);
162}
163
164EXPORT_SYMBOL(sb_min_blocksize);
165
166static int
167blkdev_get_block(struct inode *inode, sector_t iblock,
168 struct buffer_head *bh, int create)
169{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 bh->b_bdev = I_BDEV(inode);
171 bh->b_blocknr = iblock;
172 set_buffer_mapped(bh);
173 return 0;
174}
175
Dan Williams4ebb16c2015-10-28 07:48:19 +0900176static struct inode *bdev_file_inode(struct file *file)
177{
178 return file->f_mapping->host;
179}
180
Jens Axboe78250c02016-11-17 17:50:47 +0100181static unsigned int dio_bio_write_op(struct kiocb *iocb)
182{
183 unsigned int op = REQ_OP_WRITE | REQ_SYNC | REQ_IDLE;
184
185 /* avoid the need for a I/O completion work item */
186 if (iocb->ki_flags & IOCB_DSYNC)
187 op |= REQ_FUA;
188 return op;
189}
190
Christoph Hellwig189ce2b2016-10-31 11:59:25 -0600191#define DIO_INLINE_BIO_VECS 4
192
193static void blkdev_bio_end_io_simple(struct bio *bio)
194{
195 struct task_struct *waiter = bio->bi_private;
196
197 WRITE_ONCE(bio->bi_private, NULL);
Jens Axboe06193172018-11-13 21:16:54 -0700198 blk_wake_io_task(waiter);
Christoph Hellwig189ce2b2016-10-31 11:59:25 -0600199}
200
201static ssize_t
202__blkdev_direct_IO_simple(struct kiocb *iocb, struct iov_iter *iter,
203 int nr_pages)
204{
205 struct file *file = iocb->ki_filp;
206 struct block_device *bdev = I_BDEV(bdev_file_inode(file));
Jens Axboe72ecad22016-11-16 23:11:42 -0700207 struct bio_vec inline_vecs[DIO_INLINE_BIO_VECS], *vecs, *bvec;
Christoph Hellwig189ce2b2016-10-31 11:59:25 -0600208 loff_t pos = iocb->ki_pos;
209 bool should_dirty = false;
210 struct bio bio;
211 ssize_t ret;
212 blk_qc_t qc;
213 int i;
Ming Lei6dc4f102019-02-15 19:13:19 +0800214 struct bvec_iter_all iter_all;
Christoph Hellwig189ce2b2016-10-31 11:59:25 -0600215
Jens Axboe9a794fb2016-11-22 08:12:39 -0700216 if ((pos | iov_iter_alignment(iter)) &
217 (bdev_logical_block_size(bdev) - 1))
Christoph Hellwig189ce2b2016-10-31 11:59:25 -0600218 return -EINVAL;
219
Jens Axboe72ecad22016-11-16 23:11:42 -0700220 if (nr_pages <= DIO_INLINE_BIO_VECS)
221 vecs = inline_vecs;
222 else {
Kees Cook6da2ec52018-06-12 13:55:00 -0700223 vecs = kmalloc_array(nr_pages, sizeof(struct bio_vec),
224 GFP_KERNEL);
Jens Axboe72ecad22016-11-16 23:11:42 -0700225 if (!vecs)
226 return -ENOMEM;
227 }
228
Ming Lei3a83f462016-11-22 08:57:21 -0700229 bio_init(&bio, vecs, nr_pages);
Christoph Hellwig74d46992017-08-23 19:10:32 +0200230 bio_set_dev(&bio, bdev);
Damien Le Moal4d1a4762016-11-22 15:38:49 +0900231 bio.bi_iter.bi_sector = pos >> 9;
Jens Axboe45d06cf2017-06-27 11:01:22 -0600232 bio.bi_write_hint = iocb->ki_hint;
Christoph Hellwig189ce2b2016-10-31 11:59:25 -0600233 bio.bi_private = current;
234 bio.bi_end_io = blkdev_bio_end_io_simple;
Adam Manzanares074111c2018-05-22 10:52:20 -0700235 bio.bi_ioprio = iocb->ki_ioprio;
Christoph Hellwig189ce2b2016-10-31 11:59:25 -0600236
237 ret = bio_iov_iter_get_pages(&bio, iter);
238 if (unlikely(ret))
Martin Wilck9362dd12018-07-25 23:15:08 +0200239 goto out;
Christoph Hellwig189ce2b2016-10-31 11:59:25 -0600240 ret = bio.bi_iter.bi_size;
241
242 if (iov_iter_rw(iter) == READ) {
Jens Axboe78250c02016-11-17 17:50:47 +0100243 bio.bi_opf = REQ_OP_READ;
Christoph Hellwig189ce2b2016-10-31 11:59:25 -0600244 if (iter_is_iovec(iter))
245 should_dirty = true;
246 } else {
Jens Axboe78250c02016-11-17 17:50:47 +0100247 bio.bi_opf = dio_bio_write_op(iocb);
Christoph Hellwig189ce2b2016-10-31 11:59:25 -0600248 task_io_account_write(ret);
249 }
Jens Axboed1e36282018-08-29 10:36:56 -0600250 if (iocb->ki_flags & IOCB_HIPRI)
251 bio.bi_opf |= REQ_HIPRI;
Christoph Hellwig189ce2b2016-10-31 11:59:25 -0600252
253 qc = submit_bio(&bio);
254 for (;;) {
Linus Torvalds1ac5cd42019-01-02 10:46:03 -0800255 set_current_state(TASK_UNINTERRUPTIBLE);
Christoph Hellwig189ce2b2016-10-31 11:59:25 -0600256 if (!READ_ONCE(bio.bi_private))
257 break;
258 if (!(iocb->ki_flags & IOCB_HIPRI) ||
Jens Axboe0a1b8b82018-11-26 08:24:43 -0700259 !blk_poll(bdev_get_queue(bdev), qc, true))
Christoph Hellwig189ce2b2016-10-31 11:59:25 -0600260 io_schedule();
261 }
262 __set_current_state(TASK_RUNNING);
263
Ming Lei6dc4f102019-02-15 19:13:19 +0800264 bio_for_each_segment_all(bvec, &bio, i, iter_all) {
Christoph Hellwig189ce2b2016-10-31 11:59:25 -0600265 if (should_dirty && !PageCompound(bvec->bv_page))
266 set_page_dirty_lock(bvec->bv_page);
267 put_page(bvec->bv_page);
268 }
269
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200270 if (unlikely(bio.bi_status))
Linus Torvaldsc6b1e362017-07-03 10:34:51 -0700271 ret = blk_status_to_errno(bio.bi_status);
Jens Axboe9ae3b3f52017-06-28 15:30:13 -0600272
Martin Wilck9362dd12018-07-25 23:15:08 +0200273out:
274 if (vecs != inline_vecs)
275 kfree(vecs);
276
Jens Axboe9ae3b3f52017-06-28 15:30:13 -0600277 bio_uninit(&bio);
278
Christoph Hellwig189ce2b2016-10-31 11:59:25 -0600279 return ret;
280}
281
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700282struct blkdev_dio {
283 union {
284 struct kiocb *iocb;
285 struct task_struct *waiter;
286 };
287 size_t size;
288 atomic_t ref;
289 bool multi_bio : 1;
290 bool should_dirty : 1;
291 bool is_sync : 1;
292 struct bio bio;
293};
294
Kent Overstreet52190f82018-05-20 18:25:55 -0400295static struct bio_set blkdev_dio_pool;
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700296
297static void blkdev_bio_end_io(struct bio *bio)
298{
299 struct blkdev_dio *dio = bio->bi_private;
300 bool should_dirty = dio->should_dirty;
301
302 if (dio->multi_bio && !atomic_dec_and_test(&dio->ref)) {
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200303 if (bio->bi_status && !dio->bio.bi_status)
304 dio->bio.bi_status = bio->bi_status;
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700305 } else {
306 if (!dio->is_sync) {
307 struct kiocb *iocb = dio->iocb;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200308 ssize_t ret;
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700309
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200310 if (likely(!dio->bio.bi_status)) {
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700311 ret = dio->size;
312 iocb->ki_pos += ret;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200313 } else {
314 ret = blk_status_to_errno(dio->bio.bi_status);
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700315 }
316
317 dio->iocb->ki_complete(iocb, ret, 0);
Christoph Hellwig531724a2018-11-30 09:23:48 +0100318 if (dio->multi_bio)
319 bio_put(&dio->bio);
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700320 } else {
321 struct task_struct *waiter = dio->waiter;
322
323 WRITE_ONCE(dio->waiter, NULL);
Jens Axboe06193172018-11-13 21:16:54 -0700324 blk_wake_io_task(waiter);
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700325 }
326 }
327
328 if (should_dirty) {
329 bio_check_pages_dirty(bio);
330 } else {
331 struct bio_vec *bvec;
332 int i;
Ming Lei6dc4f102019-02-15 19:13:19 +0800333 struct bvec_iter_all iter_all;
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700334
Ming Lei6dc4f102019-02-15 19:13:19 +0800335 bio_for_each_segment_all(bvec, bio, i, iter_all)
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700336 put_page(bvec->bv_page);
337 bio_put(bio);
338 }
339}
340
Andrew Mortonb2e895d2007-02-03 01:14:01 -0800341static ssize_t
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700342__blkdev_direct_IO(struct kiocb *iocb, struct iov_iter *iter, int nr_pages)
Andrew Mortonb2e895d2007-02-03 01:14:01 -0800343{
344 struct file *file = iocb->ki_filp;
Dan Williams4ebb16c2015-10-28 07:48:19 +0900345 struct inode *inode = bdev_file_inode(file);
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700346 struct block_device *bdev = I_BDEV(inode);
Christoph Hellwig64d656a2016-12-22 19:20:45 +0100347 struct blk_plug plug;
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700348 struct blkdev_dio *dio;
349 struct bio *bio;
Jens Axboecb700eb2018-11-15 19:56:53 -0700350 bool is_poll = (iocb->ki_flags & IOCB_HIPRI) != 0;
Christoph Hellwig690e5322017-01-24 14:50:19 +0100351 bool is_read = (iov_iter_rw(iter) == READ), is_sync;
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700352 loff_t pos = iocb->ki_pos;
353 blk_qc_t qc = BLK_QC_T_NONE;
Christoph Hellwig36ffc6c2017-06-03 09:38:00 +0200354 int ret = 0;
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700355
Jens Axboe9a794fb2016-11-22 08:12:39 -0700356 if ((pos | iov_iter_alignment(iter)) &
357 (bdev_logical_block_size(bdev) - 1))
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700358 return -EINVAL;
359
Kent Overstreet52190f82018-05-20 18:25:55 -0400360 bio = bio_alloc_bioset(GFP_KERNEL, nr_pages, &blkdev_dio_pool);
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700361
362 dio = container_of(bio, struct blkdev_dio, bio);
Christoph Hellwig690e5322017-01-24 14:50:19 +0100363 dio->is_sync = is_sync = is_sync_kiocb(iocb);
Christoph Hellwig531724a2018-11-30 09:23:48 +0100364 if (dio->is_sync) {
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700365 dio->waiter = current;
Christoph Hellwig531724a2018-11-30 09:23:48 +0100366 bio_get(bio);
367 } else {
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700368 dio->iocb = iocb;
Christoph Hellwig531724a2018-11-30 09:23:48 +0100369 }
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700370
371 dio->size = 0;
372 dio->multi_bio = false;
David Howells00e23702018-10-22 13:07:28 +0100373 dio->should_dirty = is_read && iter_is_iovec(iter);
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700374
Jens Axboecb700eb2018-11-15 19:56:53 -0700375 /*
376 * Don't plug for HIPRI/polled IO, as those should go straight
377 * to issue
378 */
379 if (!is_poll)
380 blk_start_plug(&plug);
381
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700382 for (;;) {
Christoph Hellwig74d46992017-08-23 19:10:32 +0200383 bio_set_dev(bio, bdev);
Damien Le Moal4d1a4762016-11-22 15:38:49 +0900384 bio->bi_iter.bi_sector = pos >> 9;
Jens Axboe45d06cf2017-06-27 11:01:22 -0600385 bio->bi_write_hint = iocb->ki_hint;
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700386 bio->bi_private = dio;
387 bio->bi_end_io = blkdev_bio_end_io;
Adam Manzanares074111c2018-05-22 10:52:20 -0700388 bio->bi_ioprio = iocb->ki_ioprio;
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700389
390 ret = bio_iov_iter_get_pages(bio, iter);
391 if (unlikely(ret)) {
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200392 bio->bi_status = BLK_STS_IOERR;
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700393 bio_endio(bio);
394 break;
395 }
396
397 if (is_read) {
398 bio->bi_opf = REQ_OP_READ;
399 if (dio->should_dirty)
400 bio_set_pages_dirty(bio);
401 } else {
402 bio->bi_opf = dio_bio_write_op(iocb);
403 task_io_account_write(bio->bi_iter.bi_size);
404 }
405
406 dio->size += bio->bi_iter.bi_size;
407 pos += bio->bi_iter.bi_size;
408
409 nr_pages = iov_iter_npages(iter, BIO_MAX_PAGES);
410 if (!nr_pages) {
Jens Axboed34513d2018-11-06 14:29:11 -0700411 if (iocb->ki_flags & IOCB_HIPRI)
412 bio->bi_opf |= REQ_HIPRI;
413
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700414 qc = submit_bio(bio);
415 break;
416 }
417
418 if (!dio->multi_bio) {
Christoph Hellwig531724a2018-11-30 09:23:48 +0100419 /*
420 * AIO needs an extra reference to ensure the dio
421 * structure which is embedded into the first bio
422 * stays around.
423 */
424 if (!is_sync)
425 bio_get(bio);
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700426 dio->multi_bio = true;
427 atomic_set(&dio->ref, 2);
428 } else {
429 atomic_inc(&dio->ref);
430 }
431
432 submit_bio(bio);
433 bio = bio_alloc(GFP_KERNEL, nr_pages);
434 }
Jens Axboecb700eb2018-11-15 19:56:53 -0700435
436 if (!is_poll)
437 blk_finish_plug(&plug);
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700438
Christoph Hellwig690e5322017-01-24 14:50:19 +0100439 if (!is_sync)
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700440 return -EIOCBQUEUED;
441
442 for (;;) {
Linus Torvalds1ac5cd42019-01-02 10:46:03 -0800443 set_current_state(TASK_UNINTERRUPTIBLE);
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700444 if (!READ_ONCE(dio->waiter))
445 break;
446
447 if (!(iocb->ki_flags & IOCB_HIPRI) ||
Jens Axboe0a1b8b82018-11-26 08:24:43 -0700448 !blk_poll(bdev_get_queue(bdev), qc, true))
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700449 io_schedule();
450 }
451 __set_current_state(TASK_RUNNING);
452
Christoph Hellwig36ffc6c2017-06-03 09:38:00 +0200453 if (!ret)
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200454 ret = blk_status_to_errno(dio->bio.bi_status);
Shaohua Li7a62a522016-12-13 19:07:55 -0800455 if (likely(!ret))
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700456 ret = dio->size;
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700457
458 bio_put(&dio->bio);
459 return ret;
460}
461
462static ssize_t
463blkdev_direct_IO(struct kiocb *iocb, struct iov_iter *iter)
464{
Christoph Hellwig189ce2b2016-10-31 11:59:25 -0600465 int nr_pages;
Andrew Mortonb2e895d2007-02-03 01:14:01 -0800466
Jens Axboe72ecad22016-11-16 23:11:42 -0700467 nr_pages = iov_iter_npages(iter, BIO_MAX_PAGES + 1);
Christoph Hellwig189ce2b2016-10-31 11:59:25 -0600468 if (!nr_pages)
469 return 0;
Jens Axboe72ecad22016-11-16 23:11:42 -0700470 if (is_sync_kiocb(iocb) && nr_pages <= BIO_MAX_PAGES)
Christoph Hellwig189ce2b2016-10-31 11:59:25 -0600471 return __blkdev_direct_IO_simple(iocb, iter, nr_pages);
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700472
473 return __blkdev_direct_IO(iocb, iter, min(nr_pages, BIO_MAX_PAGES));
Andrew Mortonb2e895d2007-02-03 01:14:01 -0800474}
475
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700476static __init int blkdev_init(void)
477{
Kent Overstreet52190f82018-05-20 18:25:55 -0400478 return bioset_init(&blkdev_dio_pool, 4, offsetof(struct blkdev_dio, bio), BIOSET_NEED_BVECS);
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700479}
480module_init(blkdev_init);
481
Jan Kara5cee5812009-04-27 16:43:51 +0200482int __sync_blockdev(struct block_device *bdev, int wait)
483{
484 if (!bdev)
485 return 0;
486 if (!wait)
487 return filemap_flush(bdev->bd_inode->i_mapping);
488 return filemap_write_and_wait(bdev->bd_inode->i_mapping);
489}
490
Nick Piggin585d3bc2009-02-25 10:44:19 +0100491/*
492 * Write out and wait upon all the dirty data associated with a block
493 * device via its mapping. Does not take the superblock lock.
494 */
495int sync_blockdev(struct block_device *bdev)
496{
Jan Kara5cee5812009-04-27 16:43:51 +0200497 return __sync_blockdev(bdev, 1);
Nick Piggin585d3bc2009-02-25 10:44:19 +0100498}
499EXPORT_SYMBOL(sync_blockdev);
500
501/*
502 * Write out and wait upon all dirty data associated with this
503 * device. Filesystem data as well as the underlying block
504 * device. Takes the superblock lock.
505 */
506int fsync_bdev(struct block_device *bdev)
507{
508 struct super_block *sb = get_super(bdev);
509 if (sb) {
Jan Kara60b06802009-04-27 16:43:53 +0200510 int res = sync_filesystem(sb);
Nick Piggin585d3bc2009-02-25 10:44:19 +0100511 drop_super(sb);
512 return res;
513 }
514 return sync_blockdev(bdev);
515}
Al Viro47e44912009-04-01 07:07:16 -0400516EXPORT_SYMBOL(fsync_bdev);
Nick Piggin585d3bc2009-02-25 10:44:19 +0100517
518/**
519 * freeze_bdev -- lock a filesystem and force it into a consistent state
520 * @bdev: blockdevice to lock
521 *
Nick Piggin585d3bc2009-02-25 10:44:19 +0100522 * If a superblock is found on this device, we take the s_umount semaphore
523 * on it to make sure nobody unmounts until the snapshot creation is done.
524 * The reference counter (bd_fsfreeze_count) guarantees that only the last
525 * unfreeze process can unfreeze the frozen filesystem actually when multiple
526 * freeze requests arrive simultaneously. It counts up in freeze_bdev() and
527 * count down in thaw_bdev(). When it becomes 0, thaw_bdev() will unfreeze
528 * actually.
529 */
530struct super_block *freeze_bdev(struct block_device *bdev)
531{
532 struct super_block *sb;
533 int error = 0;
534
535 mutex_lock(&bdev->bd_fsfreeze_mutex);
Christoph Hellwig45042302009-08-03 23:28:35 +0200536 if (++bdev->bd_fsfreeze_count > 1) {
537 /*
538 * We don't even need to grab a reference - the first call
539 * to freeze_bdev grab an active reference and only the last
540 * thaw_bdev drops it.
541 */
Nick Piggin585d3bc2009-02-25 10:44:19 +0100542 sb = get_super(bdev);
Andrey Ryabinin5bb53c02016-08-23 18:55:31 +0300543 if (sb)
544 drop_super(sb);
Nick Piggin585d3bc2009-02-25 10:44:19 +0100545 mutex_unlock(&bdev->bd_fsfreeze_mutex);
546 return sb;
547 }
Nick Piggin585d3bc2009-02-25 10:44:19 +0100548
Christoph Hellwig45042302009-08-03 23:28:35 +0200549 sb = get_active_super(bdev);
550 if (!sb)
551 goto out;
Benjamin Marzinski48b6bca2014-11-13 20:42:03 -0600552 if (sb->s_op->freeze_super)
553 error = sb->s_op->freeze_super(sb);
554 else
555 error = freeze_super(sb);
Josef Bacik18e9e512010-03-23 10:34:56 -0400556 if (error) {
557 deactivate_super(sb);
558 bdev->bd_fsfreeze_count--;
Christoph Hellwig45042302009-08-03 23:28:35 +0200559 mutex_unlock(&bdev->bd_fsfreeze_mutex);
Josef Bacik18e9e512010-03-23 10:34:56 -0400560 return ERR_PTR(error);
Nick Piggin585d3bc2009-02-25 10:44:19 +0100561 }
Josef Bacik18e9e512010-03-23 10:34:56 -0400562 deactivate_super(sb);
Christoph Hellwig45042302009-08-03 23:28:35 +0200563 out:
Nick Piggin585d3bc2009-02-25 10:44:19 +0100564 sync_blockdev(bdev);
565 mutex_unlock(&bdev->bd_fsfreeze_mutex);
Christoph Hellwig4fadd7b2009-08-03 23:28:06 +0200566 return sb; /* thaw_bdev releases s->s_umount */
Nick Piggin585d3bc2009-02-25 10:44:19 +0100567}
568EXPORT_SYMBOL(freeze_bdev);
569
570/**
571 * thaw_bdev -- unlock filesystem
572 * @bdev: blockdevice to unlock
573 * @sb: associated superblock
574 *
575 * Unlocks the filesystem and marks it writeable again after freeze_bdev().
576 */
577int thaw_bdev(struct block_device *bdev, struct super_block *sb)
578{
Christoph Hellwig45042302009-08-03 23:28:35 +0200579 int error = -EINVAL;
Nick Piggin585d3bc2009-02-25 10:44:19 +0100580
581 mutex_lock(&bdev->bd_fsfreeze_mutex);
Christoph Hellwig45042302009-08-03 23:28:35 +0200582 if (!bdev->bd_fsfreeze_count)
Josef Bacik18e9e512010-03-23 10:34:56 -0400583 goto out;
Nick Piggin585d3bc2009-02-25 10:44:19 +0100584
Christoph Hellwig45042302009-08-03 23:28:35 +0200585 error = 0;
586 if (--bdev->bd_fsfreeze_count > 0)
Josef Bacik18e9e512010-03-23 10:34:56 -0400587 goto out;
Nick Piggin585d3bc2009-02-25 10:44:19 +0100588
Christoph Hellwig45042302009-08-03 23:28:35 +0200589 if (!sb)
Josef Bacik18e9e512010-03-23 10:34:56 -0400590 goto out;
Christoph Hellwig45042302009-08-03 23:28:35 +0200591
Benjamin Marzinski48b6bca2014-11-13 20:42:03 -0600592 if (sb->s_op->thaw_super)
593 error = sb->s_op->thaw_super(sb);
594 else
595 error = thaw_super(sb);
Pierre Morel997198b2016-10-04 10:53:40 +0200596 if (error)
Josef Bacik18e9e512010-03-23 10:34:56 -0400597 bdev->bd_fsfreeze_count++;
Josef Bacik18e9e512010-03-23 10:34:56 -0400598out:
Nick Piggin585d3bc2009-02-25 10:44:19 +0100599 mutex_unlock(&bdev->bd_fsfreeze_mutex);
Pierre Morel997198b2016-10-04 10:53:40 +0200600 return error;
Nick Piggin585d3bc2009-02-25 10:44:19 +0100601}
602EXPORT_SYMBOL(thaw_bdev);
603
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604static int blkdev_writepage(struct page *page, struct writeback_control *wbc)
605{
606 return block_write_full_page(page, blkdev_get_block, wbc);
607}
608
609static int blkdev_readpage(struct file * file, struct page * page)
610{
611 return block_read_full_page(page, blkdev_get_block);
612}
613
Akinobu Mita447f05b2014-10-09 15:26:58 -0700614static int blkdev_readpages(struct file *file, struct address_space *mapping,
615 struct list_head *pages, unsigned nr_pages)
616{
617 return mpage_readpages(mapping, pages, nr_pages, blkdev_get_block);
618}
619
Nick Piggin6272b5a2007-10-16 01:25:04 -0700620static int blkdev_write_begin(struct file *file, struct address_space *mapping,
621 loff_t pos, unsigned len, unsigned flags,
622 struct page **pagep, void **fsdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623{
Christoph Hellwig155130a2010-06-04 11:29:58 +0200624 return block_write_begin(mapping, pos, len, flags, pagep,
625 blkdev_get_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626}
627
Nick Piggin6272b5a2007-10-16 01:25:04 -0700628static int blkdev_write_end(struct file *file, struct address_space *mapping,
629 loff_t pos, unsigned len, unsigned copied,
630 struct page *page, void *fsdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631{
Nick Piggin6272b5a2007-10-16 01:25:04 -0700632 int ret;
633 ret = block_write_end(file, mapping, pos, len, copied, page, fsdata);
634
635 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300636 put_page(page);
Nick Piggin6272b5a2007-10-16 01:25:04 -0700637
638 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639}
640
641/*
642 * private llseek:
Al Viro496ad9a2013-01-23 17:07:38 -0500643 * for a block special file file_inode(file)->i_size is zero
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 * so we compute the size by hand (just as in block_read/write above)
645 */
Andrew Morton965c8e52012-12-17 15:59:39 -0800646static loff_t block_llseek(struct file *file, loff_t offset, int whence)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647{
Dan Williams4ebb16c2015-10-28 07:48:19 +0900648 struct inode *bd_inode = bdev_file_inode(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 loff_t retval;
650
Al Viro59551022016-01-22 15:40:57 -0500651 inode_lock(bd_inode);
Al Viro5d48f3a2013-06-23 21:34:45 +0400652 retval = fixed_size_llseek(file, offset, whence, i_size_read(bd_inode));
Al Viro59551022016-01-22 15:40:57 -0500653 inode_unlock(bd_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 return retval;
655}
656
Josef Bacik02c24a82011-07-16 20:44:56 -0400657int blkdev_fsync(struct file *filp, loff_t start, loff_t end, int datasync)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658{
Dan Williams4ebb16c2015-10-28 07:48:19 +0900659 struct inode *bd_inode = bdev_file_inode(filp);
Anton Blanchardb8af67e2010-04-23 13:18:06 -0400660 struct block_device *bdev = I_BDEV(bd_inode);
Christoph Hellwigab0a9732009-10-29 14:14:04 +0100661 int error;
Rafael J. Wysockida5aa862011-08-02 02:17:48 +0200662
Jeff Layton372cf242017-07-06 07:02:28 -0400663 error = file_write_and_wait_range(filp, start, end);
Rafael J. Wysockida5aa862011-08-02 02:17:48 +0200664 if (error)
665 return error;
Christoph Hellwigab0a9732009-10-29 14:14:04 +0100666
Anton Blanchardb8af67e2010-04-23 13:18:06 -0400667 /*
668 * There is no need to serialise calls to blkdev_issue_flush with
669 * i_mutex and doing so causes performance issues with concurrent
670 * O_SYNC writers to a block device.
671 */
Christoph Hellwigdd3932e2010-09-16 20:51:46 +0200672 error = blkdev_issue_flush(bdev, GFP_KERNEL, NULL);
Christoph Hellwigab0a9732009-10-29 14:14:04 +0100673 if (error == -EOPNOTSUPP)
674 error = 0;
Anton Blanchardb8af67e2010-04-23 13:18:06 -0400675
Christoph Hellwigab0a9732009-10-29 14:14:04 +0100676 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677}
Andrew Mortonb1dd3b22010-04-06 14:35:00 -0700678EXPORT_SYMBOL(blkdev_fsync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679
Matthew Wilcox47a191f2014-06-04 16:07:46 -0700680/**
681 * bdev_read_page() - Start reading a page from a block device
682 * @bdev: The device to read the page from
683 * @sector: The offset on the device to read the page to (need not be aligned)
684 * @page: The page to read
685 *
686 * On entry, the page should be locked. It will be unlocked when the page
687 * has been read. If the block driver implements rw_page synchronously,
688 * that will be true on exit from this function, but it need not be.
689 *
690 * Errors returned by this function are usually "soft", eg out of memory, or
691 * queue full; callers should try a different route to read this page rather
692 * than propagate an error back up the stack.
693 *
694 * Return: negative errno if an error occurs, 0 if submission was successful.
695 */
696int bdev_read_page(struct block_device *bdev, sector_t sector,
697 struct page *page)
698{
699 const struct block_device_operations *ops = bdev->bd_disk->fops;
Dan Williams2e6edc952015-11-19 13:29:28 -0800700 int result = -EOPNOTSUPP;
701
Vishal Vermaf68eb1e2015-05-12 13:48:53 -0400702 if (!ops->rw_page || bdev_get_integrity(bdev))
Dan Williams2e6edc952015-11-19 13:29:28 -0800703 return result;
704
Bart Van Assche3a0a5292017-11-09 10:49:58 -0800705 result = blk_queue_enter(bdev->bd_queue, 0);
Dan Williams2e6edc952015-11-19 13:29:28 -0800706 if (result)
707 return result;
Tejun Heo3f289dc2018-07-18 04:47:36 -0700708 result = ops->rw_page(bdev, sector + get_start_sect(bdev), page,
709 REQ_OP_READ);
Dan Williams2e6edc952015-11-19 13:29:28 -0800710 blk_queue_exit(bdev->bd_queue);
711 return result;
Matthew Wilcox47a191f2014-06-04 16:07:46 -0700712}
713EXPORT_SYMBOL_GPL(bdev_read_page);
714
715/**
716 * bdev_write_page() - Start writing a page to a block device
717 * @bdev: The device to write the page to
718 * @sector: The offset on the device to write the page to (need not be aligned)
719 * @page: The page to write
720 * @wbc: The writeback_control for the write
721 *
722 * On entry, the page should be locked and not currently under writeback.
723 * On exit, if the write started successfully, the page will be unlocked and
724 * under writeback. If the write failed already (eg the driver failed to
725 * queue the page to the device), the page will still be locked. If the
726 * caller is a ->writepage implementation, it will need to unlock the page.
727 *
728 * Errors returned by this function are usually "soft", eg out of memory, or
729 * queue full; callers should try a different route to write this page rather
730 * than propagate an error back up the stack.
731 *
732 * Return: negative errno if an error occurs, 0 if submission was successful.
733 */
734int bdev_write_page(struct block_device *bdev, sector_t sector,
735 struct page *page, struct writeback_control *wbc)
736{
737 int result;
Matthew Wilcox47a191f2014-06-04 16:07:46 -0700738 const struct block_device_operations *ops = bdev->bd_disk->fops;
Dan Williams2e6edc952015-11-19 13:29:28 -0800739
Vishal Vermaf68eb1e2015-05-12 13:48:53 -0400740 if (!ops->rw_page || bdev_get_integrity(bdev))
Matthew Wilcox47a191f2014-06-04 16:07:46 -0700741 return -EOPNOTSUPP;
Bart Van Assche3a0a5292017-11-09 10:49:58 -0800742 result = blk_queue_enter(bdev->bd_queue, 0);
Dan Williams2e6edc952015-11-19 13:29:28 -0800743 if (result)
744 return result;
745
Matthew Wilcox47a191f2014-06-04 16:07:46 -0700746 set_page_writeback(page);
Tejun Heo3f289dc2018-07-18 04:47:36 -0700747 result = ops->rw_page(bdev, sector + get_start_sect(bdev), page,
748 REQ_OP_WRITE);
Matthew Wilcoxf8927602017-10-13 15:58:15 -0700749 if (result) {
Matthew Wilcox47a191f2014-06-04 16:07:46 -0700750 end_page_writeback(page);
Matthew Wilcoxf8927602017-10-13 15:58:15 -0700751 } else {
752 clean_page_buffers(page);
Matthew Wilcox47a191f2014-06-04 16:07:46 -0700753 unlock_page(page);
Matthew Wilcoxf8927602017-10-13 15:58:15 -0700754 }
Dan Williams2e6edc952015-11-19 13:29:28 -0800755 blk_queue_exit(bdev->bd_queue);
Matthew Wilcox47a191f2014-06-04 16:07:46 -0700756 return result;
757}
758EXPORT_SYMBOL_GPL(bdev_write_page);
759
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760/*
761 * pseudo-fs
762 */
763
764static __cacheline_aligned_in_smp DEFINE_SPINLOCK(bdev_lock);
Christoph Lametere18b8902006-12-06 20:33:20 -0800765static struct kmem_cache * bdev_cachep __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766
767static struct inode *bdev_alloc_inode(struct super_block *sb)
768{
Christoph Lametere94b1762006-12-06 20:33:17 -0800769 struct bdev_inode *ei = kmem_cache_alloc(bdev_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 if (!ei)
771 return NULL;
772 return &ei->vfs_inode;
773}
774
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100775static void bdev_i_callback(struct rcu_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776{
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100777 struct inode *inode = container_of(head, struct inode, i_rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 struct bdev_inode *bdi = BDEV_I(inode);
779
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 kmem_cache_free(bdev_cachep, bdi);
781}
782
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100783static void bdev_destroy_inode(struct inode *inode)
784{
785 call_rcu(&inode->i_rcu, bdev_i_callback);
786}
787
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700788static void init_once(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789{
790 struct bdev_inode *ei = (struct bdev_inode *) foo;
791 struct block_device *bdev = &ei->bdev;
792
Christoph Lametera35afb82007-05-16 22:10:57 -0700793 memset(bdev, 0, sizeof(*bdev));
794 mutex_init(&bdev->bd_mutex);
Christoph Lametera35afb82007-05-16 22:10:57 -0700795 INIT_LIST_HEAD(&bdev->bd_list);
Tejun Heo49731ba2011-01-14 18:43:57 +0100796#ifdef CONFIG_SYSFS
797 INIT_LIST_HEAD(&bdev->bd_holder_disks);
798#endif
Jan Karaa5a79d02017-03-02 16:50:13 +0100799 bdev->bd_bdi = &noop_backing_dev_info;
Christoph Lametera35afb82007-05-16 22:10:57 -0700800 inode_init_once(&ei->vfs_inode);
Takashi Satofcccf502009-01-09 16:40:59 -0800801 /* Initialize mutex for freeze. */
802 mutex_init(&bdev->bd_fsfreeze_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803}
804
Al Virob57922d2010-06-07 14:34:48 -0400805static void bdev_evict_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806{
807 struct block_device *bdev = &BDEV_I(inode)->bdev;
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700808 truncate_inode_pages_final(&inode->i_data);
Al Virob57922d2010-06-07 14:34:48 -0400809 invalidate_inode_buffers(inode); /* is it needed here? */
Jan Karadbd57682012-05-03 14:48:02 +0200810 clear_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 spin_lock(&bdev_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 list_del_init(&bdev->bd_list);
813 spin_unlock(&bdev_lock);
Jan Karaf7597412017-03-23 01:37:00 +0100814 /* Detach inode from wb early as bdi_put() may free bdi->wb */
815 inode_detach_wb(inode);
Jan Karaa5a79d02017-03-02 16:50:13 +0100816 if (bdev->bd_bdi != &noop_backing_dev_info) {
Jan Karab1d2dc562017-02-02 15:56:52 +0100817 bdi_put(bdev->bd_bdi);
Jan Karaa5a79d02017-03-02 16:50:13 +0100818 bdev->bd_bdi = &noop_backing_dev_info;
819 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820}
821
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800822static const struct super_operations bdev_sops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 .statfs = simple_statfs,
824 .alloc_inode = bdev_alloc_inode,
825 .destroy_inode = bdev_destroy_inode,
826 .drop_inode = generic_delete_inode,
Al Virob57922d2010-06-07 14:34:48 -0400827 .evict_inode = bdev_evict_inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828};
829
Al Viro51139ad2010-07-25 23:47:46 +0400830static struct dentry *bd_mount(struct file_system_type *fs_type,
831 int flags, const char *dev_name, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832{
Shaohua Li3684aa72016-02-22 15:27:40 -0700833 struct dentry *dent;
834 dent = mount_pseudo(fs_type, "bdev:", &bdev_sops, NULL, BDEVFS_MAGIC);
Vegard Nossume9e5e3f2016-08-22 12:47:43 +0200835 if (!IS_ERR(dent))
Shaohua Li3684aa72016-02-22 15:27:40 -0700836 dent->d_sb->s_iflags |= SB_I_CGROUPWB;
837 return dent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838}
839
840static struct file_system_type bd_type = {
841 .name = "bdev",
Al Viro51139ad2010-07-25 23:47:46 +0400842 .mount = bd_mount,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 .kill_sb = kill_anon_super,
844};
845
Tejun Heoa212b102015-05-22 17:13:33 -0400846struct super_block *blockdev_superblock __read_mostly;
847EXPORT_SYMBOL_GPL(blockdev_superblock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848
849void __init bdev_cache_init(void)
850{
851 int err;
Sergey Senozhatskyace85772012-01-10 02:43:59 +0300852 static struct vfsmount *bd_mnt;
Denis ChengRqc2acf7b2008-12-01 14:34:56 -0800853
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 bdev_cachep = kmem_cache_create("bdev_cache", sizeof(struct bdev_inode),
Paul Jacksonfffb60f2006-03-24 03:16:06 -0800855 0, (SLAB_HWCACHE_ALIGN|SLAB_RECLAIM_ACCOUNT|
Vladimir Davydov5d097052016-01-14 15:18:21 -0800856 SLAB_MEM_SPREAD|SLAB_ACCOUNT|SLAB_PANIC),
Paul Mundt20c2df82007-07-20 10:11:58 +0900857 init_once);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 err = register_filesystem(&bd_type);
859 if (err)
860 panic("Cannot register bdev pseudo-fs");
861 bd_mnt = kern_mount(&bd_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 if (IS_ERR(bd_mnt))
863 panic("Cannot create bdev pseudo-fs");
Sergey Senozhatskyace85772012-01-10 02:43:59 +0300864 blockdev_superblock = bd_mnt->mnt_sb; /* For writeback */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865}
866
867/*
868 * Most likely _very_ bad one - but then it's hardly critical for small
869 * /dev and can be fixed when somebody will need really large one.
870 * Keep in mind that it will be fed through icache hash function too.
871 */
872static inline unsigned long hash(dev_t dev)
873{
874 return MAJOR(dev)+MINOR(dev);
875}
876
877static int bdev_test(struct inode *inode, void *data)
878{
879 return BDEV_I(inode)->bdev.bd_dev == *(dev_t *)data;
880}
881
882static int bdev_set(struct inode *inode, void *data)
883{
884 BDEV_I(inode)->bdev.bd_dev = *(dev_t *)data;
885 return 0;
886}
887
888static LIST_HEAD(all_bdevs);
889
Jan Karaf44f1ab2017-02-02 15:56:49 +0100890/*
891 * If there is a bdev inode for this device, unhash it so that it gets evicted
892 * as soon as last inode reference is dropped.
893 */
894void bdev_unhash_inode(dev_t dev)
895{
896 struct inode *inode;
897
898 inode = ilookup5(blockdev_superblock, hash(dev), bdev_test, &dev);
899 if (inode) {
900 remove_inode_hash(inode);
901 iput(inode);
902 }
903}
904
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905struct block_device *bdget(dev_t dev)
906{
907 struct block_device *bdev;
908 struct inode *inode;
909
Denis ChengRqc2acf7b2008-12-01 14:34:56 -0800910 inode = iget5_locked(blockdev_superblock, hash(dev),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 bdev_test, bdev_set, &dev);
912
913 if (!inode)
914 return NULL;
915
916 bdev = &BDEV_I(inode)->bdev;
917
918 if (inode->i_state & I_NEW) {
919 bdev->bd_contains = NULL;
Lachlan McIlroy782b94c2011-06-30 11:01:45 +1000920 bdev->bd_super = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 bdev->bd_inode = inode;
Fabian Frederick93407472017-02-27 14:28:32 -0800922 bdev->bd_block_size = i_blocksize(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 bdev->bd_part_count = 0;
924 bdev->bd_invalidated = 0;
925 inode->i_mode = S_IFBLK;
926 inode->i_rdev = dev;
927 inode->i_bdev = bdev;
928 inode->i_data.a_ops = &def_blk_aops;
929 mapping_set_gfp_mask(&inode->i_data, GFP_USER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 spin_lock(&bdev_lock);
931 list_add(&bdev->bd_list, &all_bdevs);
932 spin_unlock(&bdev_lock);
933 unlock_new_inode(inode);
934 }
935 return bdev;
936}
937
938EXPORT_SYMBOL(bdget);
939
Alan Jenkinsdddac6a2009-07-29 21:07:55 +0200940/**
941 * bdgrab -- Grab a reference to an already referenced block device
942 * @bdev: Block device to grab a reference to.
943 */
944struct block_device *bdgrab(struct block_device *bdev)
945{
Al Viro7de9c6ee2010-10-23 11:11:40 -0400946 ihold(bdev->bd_inode);
Alan Jenkinsdddac6a2009-07-29 21:07:55 +0200947 return bdev;
948}
Anatol Pomozovc1681bf2013-04-01 09:47:56 -0700949EXPORT_SYMBOL(bdgrab);
Alan Jenkinsdddac6a2009-07-29 21:07:55 +0200950
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951long nr_blockdev_pages(void)
952{
Matthias Kaehlcke203a2932007-07-15 23:40:23 -0700953 struct block_device *bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 long ret = 0;
955 spin_lock(&bdev_lock);
Matthias Kaehlcke203a2932007-07-15 23:40:23 -0700956 list_for_each_entry(bdev, &all_bdevs, bd_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 ret += bdev->bd_inode->i_mapping->nrpages;
958 }
959 spin_unlock(&bdev_lock);
960 return ret;
961}
962
963void bdput(struct block_device *bdev)
964{
965 iput(bdev->bd_inode);
966}
967
968EXPORT_SYMBOL(bdput);
969
970static struct block_device *bd_acquire(struct inode *inode)
971{
972 struct block_device *bdev;
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700973
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 spin_lock(&bdev_lock);
975 bdev = inode->i_bdev;
Jan Karacccd9fb2017-02-21 18:09:48 +0100976 if (bdev && !inode_unhashed(bdev->bd_inode)) {
Ilya Dryomoved8a9d2c2015-11-20 22:18:43 +0100977 bdgrab(bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 spin_unlock(&bdev_lock);
979 return bdev;
980 }
981 spin_unlock(&bdev_lock);
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700982
Jan Karacccd9fb2017-02-21 18:09:48 +0100983 /*
984 * i_bdev references block device inode that was already shut down
985 * (corresponding device got removed). Remove the reference and look
986 * up block device inode again just in case new device got
987 * reestablished under the same device number.
988 */
989 if (bdev)
990 bd_forget(inode);
991
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 bdev = bdget(inode->i_rdev);
993 if (bdev) {
994 spin_lock(&bdev_lock);
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700995 if (!inode->i_bdev) {
996 /*
Al Viro7de9c6ee2010-10-23 11:11:40 -0400997 * We take an additional reference to bd_inode,
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700998 * and it's released in clear_inode() of inode.
999 * So, we can access it via ->i_mapping always
1000 * without igrab().
1001 */
Ilya Dryomoved8a9d2c2015-11-20 22:18:43 +01001002 bdgrab(bdev);
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -07001003 inode->i_bdev = bdev;
1004 inode->i_mapping = bdev->bd_inode->i_mapping;
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -07001005 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 spin_unlock(&bdev_lock);
1007 }
1008 return bdev;
1009}
1010
1011/* Call when you free inode */
1012
1013void bd_forget(struct inode *inode)
1014{
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -07001015 struct block_device *bdev = NULL;
1016
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 spin_lock(&bdev_lock);
Yan Hongb4ea2ea2013-04-30 15:26:47 -07001018 if (!sb_is_blkdev_sb(inode->i_sb))
1019 bdev = inode->i_bdev;
Al Viroa4a4f942016-07-19 13:16:52 -04001020 inode->i_bdev = NULL;
1021 inode->i_mapping = &inode->i_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 spin_unlock(&bdev_lock);
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -07001023
1024 if (bdev)
Ilya Dryomoved8a9d2c2015-11-20 22:18:43 +01001025 bdput(bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026}
1027
Tejun Heo1a3cbbc2010-04-07 18:52:29 +09001028/**
1029 * bd_may_claim - test whether a block device can be claimed
1030 * @bdev: block device of interest
1031 * @whole: whole block device containing @bdev, may equal @bdev
1032 * @holder: holder trying to claim @bdev
1033 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001034 * Test whether @bdev can be claimed by @holder.
Tejun Heo1a3cbbc2010-04-07 18:52:29 +09001035 *
1036 * CONTEXT:
1037 * spin_lock(&bdev_lock).
1038 *
1039 * RETURNS:
1040 * %true if @bdev can be claimed, %false otherwise.
1041 */
1042static bool bd_may_claim(struct block_device *bdev, struct block_device *whole,
1043 void *holder)
1044{
1045 if (bdev->bd_holder == holder)
1046 return true; /* already a holder */
1047 else if (bdev->bd_holder != NULL)
1048 return false; /* held by someone else */
NeilBrownbcc7f5b2016-12-12 08:21:51 -07001049 else if (whole == bdev)
Tejun Heo1a3cbbc2010-04-07 18:52:29 +09001050 return true; /* is a whole device which isn't held */
1051
Tejun Heoe525fd82010-11-13 11:55:17 +01001052 else if (whole->bd_holder == bd_may_claim)
Tejun Heo1a3cbbc2010-04-07 18:52:29 +09001053 return true; /* is a partition of a device that is being partitioned */
1054 else if (whole->bd_holder != NULL)
1055 return false; /* is a partition of a held device */
1056 else
1057 return true; /* is a partition of an un-held device */
1058}
1059
1060/**
Tejun Heo6b4517a2010-04-07 18:53:59 +09001061 * bd_prepare_to_claim - prepare to claim a block device
1062 * @bdev: block device of interest
1063 * @whole: the whole device containing @bdev, may equal @bdev
1064 * @holder: holder trying to claim @bdev
1065 *
1066 * Prepare to claim @bdev. This function fails if @bdev is already
1067 * claimed by another holder and waits if another claiming is in
1068 * progress. This function doesn't actually claim. On successful
1069 * return, the caller has ownership of bd_claiming and bd_holder[s].
1070 *
1071 * CONTEXT:
1072 * spin_lock(&bdev_lock). Might release bdev_lock, sleep and regrab
1073 * it multiple times.
1074 *
1075 * RETURNS:
1076 * 0 if @bdev can be claimed, -EBUSY otherwise.
1077 */
1078static int bd_prepare_to_claim(struct block_device *bdev,
1079 struct block_device *whole, void *holder)
1080{
1081retry:
1082 /* if someone else claimed, fail */
1083 if (!bd_may_claim(bdev, whole, holder))
1084 return -EBUSY;
1085
Tejun Heoe75aa852010-08-04 17:59:39 +02001086 /* if claiming is already in progress, wait for it to finish */
1087 if (whole->bd_claiming) {
Tejun Heo6b4517a2010-04-07 18:53:59 +09001088 wait_queue_head_t *wq = bit_waitqueue(&whole->bd_claiming, 0);
1089 DEFINE_WAIT(wait);
1090
1091 prepare_to_wait(wq, &wait, TASK_UNINTERRUPTIBLE);
1092 spin_unlock(&bdev_lock);
1093 schedule();
1094 finish_wait(wq, &wait);
1095 spin_lock(&bdev_lock);
1096 goto retry;
1097 }
1098
1099 /* yay, all mine */
1100 return 0;
1101}
1102
Jan Kara560e7cb2018-02-26 13:01:42 +01001103static struct gendisk *bdev_get_gendisk(struct block_device *bdev, int *partno)
1104{
1105 struct gendisk *disk = get_gendisk(bdev->bd_dev, partno);
1106
1107 if (!disk)
1108 return NULL;
1109 /*
1110 * Now that we hold gendisk reference we make sure bdev we looked up is
1111 * not stale. If it is, it means device got removed and created before
1112 * we looked up gendisk and we fail open in such case. Associating
1113 * unhashed bdev with newly created gendisk could lead to two bdevs
1114 * (and thus two independent caches) being associated with one device
1115 * which is bad.
1116 */
1117 if (inode_unhashed(bdev->bd_inode)) {
1118 put_disk_and_module(disk);
1119 return NULL;
1120 }
1121 return disk;
1122}
1123
Tejun Heo6b4517a2010-04-07 18:53:59 +09001124/**
1125 * bd_start_claiming - start claiming a block device
1126 * @bdev: block device of interest
1127 * @holder: holder trying to claim @bdev
1128 *
1129 * @bdev is about to be opened exclusively. Check @bdev can be opened
1130 * exclusively and mark that an exclusive open is in progress. Each
1131 * successful call to this function must be matched with a call to
Nick Pigginb0018362010-05-26 01:51:19 +10001132 * either bd_finish_claiming() or bd_abort_claiming() (which do not
1133 * fail).
1134 *
1135 * This function is used to gain exclusive access to the block device
1136 * without actually causing other exclusive open attempts to fail. It
1137 * should be used when the open sequence itself requires exclusive
1138 * access but may subsequently fail.
Tejun Heo6b4517a2010-04-07 18:53:59 +09001139 *
1140 * CONTEXT:
1141 * Might sleep.
1142 *
1143 * RETURNS:
1144 * Pointer to the block device containing @bdev on success, ERR_PTR()
1145 * value on failure.
1146 */
1147static struct block_device *bd_start_claiming(struct block_device *bdev,
1148 void *holder)
1149{
1150 struct gendisk *disk;
1151 struct block_device *whole;
1152 int partno, err;
1153
1154 might_sleep();
1155
1156 /*
1157 * @bdev might not have been initialized properly yet, look up
1158 * and grab the outer block device the hard way.
1159 */
Jan Kara560e7cb2018-02-26 13:01:42 +01001160 disk = bdev_get_gendisk(bdev, &partno);
Tejun Heo6b4517a2010-04-07 18:53:59 +09001161 if (!disk)
1162 return ERR_PTR(-ENXIO);
1163
Tejun Heod4c208b2011-06-13 12:45:48 +02001164 /*
1165 * Normally, @bdev should equal what's returned from bdget_disk()
1166 * if partno is 0; however, some drivers (floppy) use multiple
1167 * bdev's for the same physical device and @bdev may be one of the
1168 * aliases. Keep @bdev if partno is 0. This means claimer
1169 * tracking is broken for those devices but it has always been that
1170 * way.
1171 */
1172 if (partno)
1173 whole = bdget_disk(disk, 0);
1174 else
1175 whole = bdgrab(bdev);
1176
Jan Kara9df6c292018-02-26 13:01:39 +01001177 put_disk_and_module(disk);
Tejun Heo6b4517a2010-04-07 18:53:59 +09001178 if (!whole)
1179 return ERR_PTR(-ENOMEM);
1180
1181 /* prepare to claim, if successful, mark claiming in progress */
1182 spin_lock(&bdev_lock);
1183
1184 err = bd_prepare_to_claim(bdev, whole, holder);
1185 if (err == 0) {
1186 whole->bd_claiming = holder;
1187 spin_unlock(&bdev_lock);
1188 return whole;
1189 } else {
1190 spin_unlock(&bdev_lock);
1191 bdput(whole);
1192 return ERR_PTR(err);
1193 }
1194}
1195
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001196#ifdef CONFIG_SYSFS
Tejun Heo49731ba2011-01-14 18:43:57 +01001197struct bd_holder_disk {
1198 struct list_head list;
1199 struct gendisk *disk;
1200 int refcnt;
1201};
1202
1203static struct bd_holder_disk *bd_find_holder_disk(struct block_device *bdev,
1204 struct gendisk *disk)
1205{
1206 struct bd_holder_disk *holder;
1207
1208 list_for_each_entry(holder, &bdev->bd_holder_disks, list)
1209 if (holder->disk == disk)
1210 return holder;
1211 return NULL;
1212}
1213
Andrew Morton4d7dd8fd2006-09-29 01:58:56 -07001214static int add_symlink(struct kobject *from, struct kobject *to)
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001215{
Andrew Morton4d7dd8fd2006-09-29 01:58:56 -07001216 return sysfs_create_link(from, to, kobject_name(to));
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001217}
1218
1219static void del_symlink(struct kobject *from, struct kobject *to)
1220{
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001221 sysfs_remove_link(from, kobject_name(to));
1222}
1223
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001224/**
Tejun Heoe09b4572010-11-13 11:55:17 +01001225 * bd_link_disk_holder - create symlinks between holding disk and slave bdev
1226 * @bdev: the claimed slave bdev
1227 * @disk: the holding disk
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -05001228 *
Tejun Heo49731ba2011-01-14 18:43:57 +01001229 * DON'T USE THIS UNLESS YOU'RE ALREADY USING IT.
1230 *
Tejun Heoe09b4572010-11-13 11:55:17 +01001231 * This functions creates the following sysfs symlinks.
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -05001232 *
Tejun Heoe09b4572010-11-13 11:55:17 +01001233 * - from "slaves" directory of the holder @disk to the claimed @bdev
1234 * - from "holders" directory of the @bdev to the holder @disk
1235 *
1236 * For example, if /dev/dm-0 maps to /dev/sda and disk for dm-0 is
1237 * passed to bd_link_disk_holder(), then:
1238 *
1239 * /sys/block/dm-0/slaves/sda --> /sys/block/sda
1240 * /sys/block/sda/holders/dm-0 --> /sys/block/dm-0
1241 *
1242 * The caller must have claimed @bdev before calling this function and
1243 * ensure that both @bdev and @disk are valid during the creation and
1244 * lifetime of these symlinks.
1245 *
1246 * CONTEXT:
1247 * Might sleep.
1248 *
1249 * RETURNS:
1250 * 0 on success, -errno on failure.
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -05001251 */
Tejun Heoe09b4572010-11-13 11:55:17 +01001252int bd_link_disk_holder(struct block_device *bdev, struct gendisk *disk)
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -05001253{
Tejun Heo49731ba2011-01-14 18:43:57 +01001254 struct bd_holder_disk *holder;
Tejun Heoe09b4572010-11-13 11:55:17 +01001255 int ret = 0;
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001256
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001257 mutex_lock(&bdev->bd_mutex);
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -05001258
Tejun Heo49731ba2011-01-14 18:43:57 +01001259 WARN_ON_ONCE(!bdev->bd_holder);
Johannes Weiner4e916722007-07-15 23:41:25 -07001260
Tejun Heoe09b4572010-11-13 11:55:17 +01001261 /* FIXME: remove the following once add_disk() handles errors */
1262 if (WARN_ON(!disk->slave_dir || !bdev->bd_part->holder_dir))
1263 goto out_unlock;
Johannes Weiner4e916722007-07-15 23:41:25 -07001264
Tejun Heo49731ba2011-01-14 18:43:57 +01001265 holder = bd_find_holder_disk(bdev, disk);
1266 if (holder) {
1267 holder->refcnt++;
Tejun Heoe09b4572010-11-13 11:55:17 +01001268 goto out_unlock;
1269 }
1270
Tejun Heo49731ba2011-01-14 18:43:57 +01001271 holder = kzalloc(sizeof(*holder), GFP_KERNEL);
1272 if (!holder) {
1273 ret = -ENOMEM;
1274 goto out_unlock;
1275 }
1276
1277 INIT_LIST_HEAD(&holder->list);
1278 holder->disk = disk;
1279 holder->refcnt = 1;
1280
1281 ret = add_symlink(disk->slave_dir, &part_to_dev(bdev->bd_part)->kobj);
1282 if (ret)
1283 goto out_free;
1284
1285 ret = add_symlink(bdev->bd_part->holder_dir, &disk_to_dev(disk)->kobj);
1286 if (ret)
1287 goto out_del;
Tejun Heoe7407d12011-02-24 09:56:32 +01001288 /*
1289 * bdev could be deleted beneath us which would implicitly destroy
1290 * the holder directory. Hold on to it.
1291 */
1292 kobject_get(bdev->bd_part->holder_dir);
Tejun Heo49731ba2011-01-14 18:43:57 +01001293
1294 list_add(&holder->list, &bdev->bd_holder_disks);
1295 goto out_unlock;
1296
1297out_del:
1298 del_symlink(disk->slave_dir, &part_to_dev(bdev->bd_part)->kobj);
1299out_free:
1300 kfree(holder);
Tejun Heoe09b4572010-11-13 11:55:17 +01001301out_unlock:
Jun'ichi Nomurab4cf1b72006-03-27 01:18:00 -08001302 mutex_unlock(&bdev->bd_mutex);
Tejun Heoe09b4572010-11-13 11:55:17 +01001303 return ret;
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001304}
Tejun Heoe09b4572010-11-13 11:55:17 +01001305EXPORT_SYMBOL_GPL(bd_link_disk_holder);
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001306
Tejun Heo49731ba2011-01-14 18:43:57 +01001307/**
1308 * bd_unlink_disk_holder - destroy symlinks created by bd_link_disk_holder()
1309 * @bdev: the calimed slave bdev
1310 * @disk: the holding disk
1311 *
1312 * DON'T USE THIS UNLESS YOU'RE ALREADY USING IT.
1313 *
1314 * CONTEXT:
1315 * Might sleep.
1316 */
1317void bd_unlink_disk_holder(struct block_device *bdev, struct gendisk *disk)
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001318{
Tejun Heo49731ba2011-01-14 18:43:57 +01001319 struct bd_holder_disk *holder;
Tejun Heoe09b4572010-11-13 11:55:17 +01001320
Tejun Heo49731ba2011-01-14 18:43:57 +01001321 mutex_lock(&bdev->bd_mutex);
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001322
Tejun Heo49731ba2011-01-14 18:43:57 +01001323 holder = bd_find_holder_disk(bdev, disk);
1324
1325 if (!WARN_ON_ONCE(holder == NULL) && !--holder->refcnt) {
1326 del_symlink(disk->slave_dir, &part_to_dev(bdev->bd_part)->kobj);
1327 del_symlink(bdev->bd_part->holder_dir,
1328 &disk_to_dev(disk)->kobj);
Tejun Heoe7407d12011-02-24 09:56:32 +01001329 kobject_put(bdev->bd_part->holder_dir);
Tejun Heo49731ba2011-01-14 18:43:57 +01001330 list_del_init(&holder->list);
1331 kfree(holder);
1332 }
1333
1334 mutex_unlock(&bdev->bd_mutex);
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001335}
Tejun Heo49731ba2011-01-14 18:43:57 +01001336EXPORT_SYMBOL_GPL(bd_unlink_disk_holder);
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001337#endif
1338
Andrew Patterson0c002c22008-09-04 14:27:20 -06001339/**
Andrew Patterson56ade442008-09-04 14:27:40 -06001340 * flush_disk - invalidates all buffer-cache entries on a disk
1341 *
1342 * @bdev: struct block device to be flushed
Randy Dunlape6eb5ce2011-02-26 10:54:00 -08001343 * @kill_dirty: flag to guide handling of dirty inodes
Andrew Patterson56ade442008-09-04 14:27:40 -06001344 *
1345 * Invalidates all buffer-cache entries on a disk. It should be called
1346 * when a disk has been changed -- either by a media change or online
1347 * resize.
1348 */
NeilBrown93b270f2011-02-24 17:25:47 +11001349static void flush_disk(struct block_device *bdev, bool kill_dirty)
Andrew Patterson56ade442008-09-04 14:27:40 -06001350{
NeilBrown93b270f2011-02-24 17:25:47 +11001351 if (__invalidate_device(bdev, kill_dirty)) {
Andrew Patterson56ade442008-09-04 14:27:40 -06001352 printk(KERN_WARNING "VFS: busy inodes on changed media or "
Dmitry Monakhov424081f2015-04-13 16:31:34 +04001353 "resized disk %s\n",
1354 bdev->bd_disk ? bdev->bd_disk->disk_name : "");
Andrew Patterson56ade442008-09-04 14:27:40 -06001355 }
1356
1357 if (!bdev->bd_disk)
1358 return;
Tejun Heod27769e2011-08-23 20:01:04 +02001359 if (disk_part_scan_enabled(bdev->bd_disk))
Andrew Patterson56ade442008-09-04 14:27:40 -06001360 bdev->bd_invalidated = 1;
1361}
1362
1363/**
Randy Dunlap57d1b532008-10-09 10:42:38 +02001364 * check_disk_size_change - checks for disk size change and adjusts bdev size.
Andrew Pattersonc3279d12008-09-04 14:27:25 -06001365 * @disk: struct gendisk to check
1366 * @bdev: struct bdev to adjust.
Christoph Hellwig5afb7832018-05-29 16:42:59 +02001367 * @verbose: if %true log a message about a size change if there is any
Andrew Pattersonc3279d12008-09-04 14:27:25 -06001368 *
1369 * This routine checks to see if the bdev size does not match the disk size
shunki-fujita849cf552018-04-05 16:20:07 -07001370 * and adjusts it if it differs. When shrinking the bdev size, its all caches
1371 * are freed.
Andrew Pattersonc3279d12008-09-04 14:27:25 -06001372 */
Christoph Hellwig5afb7832018-05-29 16:42:59 +02001373void check_disk_size_change(struct gendisk *disk, struct block_device *bdev,
1374 bool verbose)
Andrew Pattersonc3279d12008-09-04 14:27:25 -06001375{
1376 loff_t disk_size, bdev_size;
1377
1378 disk_size = (loff_t)get_capacity(disk) << 9;
1379 bdev_size = i_size_read(bdev->bd_inode);
1380 if (disk_size != bdev_size) {
Christoph Hellwig5afb7832018-05-29 16:42:59 +02001381 if (verbose) {
1382 printk(KERN_INFO
1383 "%s: detected capacity change from %lld to %lld\n",
1384 disk->disk_name, bdev_size, disk_size);
1385 }
Andrew Pattersonc3279d12008-09-04 14:27:25 -06001386 i_size_write(bdev->bd_inode, disk_size);
shunki-fujita849cf552018-04-05 16:20:07 -07001387 if (bdev_size > disk_size)
1388 flush_disk(bdev, false);
Andrew Pattersonc3279d12008-09-04 14:27:25 -06001389 }
1390}
Andrew Pattersonc3279d12008-09-04 14:27:25 -06001391
1392/**
Randy Dunlap57d1b532008-10-09 10:42:38 +02001393 * revalidate_disk - wrapper for lower-level driver's revalidate_disk call-back
Andrew Patterson0c002c22008-09-04 14:27:20 -06001394 * @disk: struct gendisk to be revalidated
1395 *
1396 * This routine is a wrapper for lower-level driver's revalidate_disk
1397 * call-backs. It is used to do common pre and post operations needed
1398 * for all revalidate_disk operations.
1399 */
1400int revalidate_disk(struct gendisk *disk)
1401{
Andrew Pattersonc3279d12008-09-04 14:27:25 -06001402 struct block_device *bdev;
Andrew Patterson0c002c22008-09-04 14:27:20 -06001403 int ret = 0;
1404
1405 if (disk->fops->revalidate_disk)
1406 ret = disk->fops->revalidate_disk(disk);
Andrew Pattersonc3279d12008-09-04 14:27:25 -06001407 bdev = bdget_disk(disk, 0);
1408 if (!bdev)
1409 return ret;
1410
1411 mutex_lock(&bdev->bd_mutex);
Christoph Hellwig5afb7832018-05-29 16:42:59 +02001412 check_disk_size_change(disk, bdev, ret == 0);
MITSUNARI Shigeo7630b662013-02-21 16:42:01 -08001413 bdev->bd_invalidated = 0;
Andrew Pattersonc3279d12008-09-04 14:27:25 -06001414 mutex_unlock(&bdev->bd_mutex);
1415 bdput(bdev);
Andrew Patterson0c002c22008-09-04 14:27:20 -06001416 return ret;
1417}
1418EXPORT_SYMBOL(revalidate_disk);
1419
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420/*
1421 * This routine checks whether a removable media has been changed,
1422 * and invalidates all buffer-cache-entries in that case. This
1423 * is a relatively slow routine, so we have to try to minimize using
1424 * it. Thus it is called only upon a 'mount' or 'open'. This
1425 * is the best way of combining speed and utility, I think.
1426 * People changing diskettes in the middle of an operation deserve
1427 * to lose :-)
1428 */
1429int check_disk_change(struct block_device *bdev)
1430{
1431 struct gendisk *disk = bdev->bd_disk;
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -07001432 const struct block_device_operations *bdops = disk->fops;
Tejun Heo77ea8872010-12-08 20:57:37 +01001433 unsigned int events;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434
Tejun Heo77ea8872010-12-08 20:57:37 +01001435 events = disk_clear_events(disk, DISK_EVENT_MEDIA_CHANGE |
1436 DISK_EVENT_EJECT_REQUEST);
1437 if (!(events & DISK_EVENT_MEDIA_CHANGE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 return 0;
1439
NeilBrown93b270f2011-02-24 17:25:47 +11001440 flush_disk(bdev, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 if (bdops->revalidate_disk)
1442 bdops->revalidate_disk(bdev->bd_disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 return 1;
1444}
1445
1446EXPORT_SYMBOL(check_disk_change);
1447
1448void bd_set_size(struct block_device *bdev, loff_t size)
1449{
Al Viro59551022016-01-22 15:40:57 -05001450 inode_lock(bdev->bd_inode);
Guo Chaod646a022013-02-21 15:16:42 -08001451 i_size_write(bdev->bd_inode, size);
Al Viro59551022016-01-22 15:40:57 -05001452 inode_unlock(bdev->bd_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453}
1454EXPORT_SYMBOL(bd_set_size);
1455
Al Viro4385bab2013-05-05 22:11:03 -04001456static void __blkdev_put(struct block_device *bdev, fmode_t mode, int for_part);
NeilBrown37be4122006-12-08 02:36:16 -08001457
Peter Zijlstra6d740cd2007-02-20 13:58:18 -08001458/*
1459 * bd_mutex locking:
1460 *
1461 * mutex_lock(part->bd_mutex)
1462 * mutex_lock_nested(whole->bd_mutex, 1)
1463 */
1464
Al Viro572c4892007-10-08 13:24:05 -04001465static int __blkdev_get(struct block_device *bdev, fmode_t mode, int for_part)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 struct gendisk *disk;
Pavel Emelyanov7db9cfd2008-06-05 22:46:27 -07001468 int ret;
Tejun Heocf771cb2008-09-03 09:01:09 +02001469 int partno;
Al Virofe6e9c12008-06-23 08:30:55 -04001470 int perm = 0;
Jan Kara89736652018-02-26 13:01:40 +01001471 bool first_open = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472
Al Viro572c4892007-10-08 13:24:05 -04001473 if (mode & FMODE_READ)
Al Virofe6e9c12008-06-23 08:30:55 -04001474 perm |= MAY_READ;
Al Viro572c4892007-10-08 13:24:05 -04001475 if (mode & FMODE_WRITE)
Al Virofe6e9c12008-06-23 08:30:55 -04001476 perm |= MAY_WRITE;
1477 /*
1478 * hooks: /n/, see "layering violations".
1479 */
Chris Wrightb7300b72010-08-10 18:02:55 -07001480 if (!for_part) {
1481 ret = devcgroup_inode_permission(bdev->bd_inode, perm);
1482 if (ret != 0) {
1483 bdput(bdev);
1484 return ret;
1485 }
Al Viro82666022008-08-01 05:32:04 -04001486 }
Pavel Emelyanov7db9cfd2008-06-05 22:46:27 -07001487
NeilBrownd3374822009-01-09 08:31:10 +11001488 restart:
Tejun Heo0762b8b2008-08-25 19:56:12 +09001489
Tejun Heo89f97492008-11-05 10:21:06 +01001490 ret = -ENXIO;
Jan Kara560e7cb2018-02-26 13:01:42 +01001491 disk = bdev_get_gendisk(bdev, &partno);
Tejun Heo0762b8b2008-08-25 19:56:12 +09001492 if (!disk)
Arnd Bergmann6e9624b2010-08-07 18:25:34 +02001493 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494
Tejun Heo69e02c52011-03-09 19:54:27 +01001495 disk_block_events(disk);
NeilBrown6796bf52006-12-08 02:36:16 -08001496 mutex_lock_nested(&bdev->bd_mutex, for_part);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 if (!bdev->bd_openers) {
Jan Kara89736652018-02-26 13:01:40 +01001498 first_open = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 bdev->bd_disk = disk;
Andi Kleen87192a22012-01-12 17:20:34 -08001500 bdev->bd_queue = disk->queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 bdev->bd_contains = bdev;
Christoph Hellwigc2ee0702017-08-23 19:10:31 +02001502 bdev->bd_partno = partno;
Dan Williams03cdadb2016-02-26 15:19:43 -08001503
Tejun Heocf771cb2008-09-03 09:01:09 +02001504 if (!partno) {
Tejun Heo89f97492008-11-05 10:21:06 +01001505 ret = -ENXIO;
1506 bdev->bd_part = disk_get_part(disk, partno);
1507 if (!bdev->bd_part)
1508 goto out_clear;
1509
Tejun Heo1196f8b2011-04-21 20:54:45 +02001510 ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 if (disk->fops->open) {
Al Viro572c4892007-10-08 13:24:05 -04001512 ret = disk->fops->open(bdev, mode);
NeilBrownd3374822009-01-09 08:31:10 +11001513 if (ret == -ERESTARTSYS) {
1514 /* Lost a race with 'disk' being
1515 * deleted, try again.
1516 * See md.c
1517 */
1518 disk_put_part(bdev->bd_part);
1519 bdev->bd_part = NULL;
NeilBrownd3374822009-01-09 08:31:10 +11001520 bdev->bd_disk = NULL;
Andi Kleen87192a22012-01-12 17:20:34 -08001521 bdev->bd_queue = NULL;
NeilBrownd3374822009-01-09 08:31:10 +11001522 mutex_unlock(&bdev->bd_mutex);
Tejun Heo69e02c52011-03-09 19:54:27 +01001523 disk_unblock_events(disk);
Jan Kara9df6c292018-02-26 13:01:39 +01001524 put_disk_and_module(disk);
NeilBrownd3374822009-01-09 08:31:10 +11001525 goto restart;
1526 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 }
Tejun Heo7e697232011-05-23 13:26:07 +02001528
Jan Kara04906b22019-01-14 09:48:10 +01001529 if (!ret) {
Tejun Heo7e697232011-05-23 13:26:07 +02001530 bd_set_size(bdev,(loff_t)get_capacity(disk)<<9);
Jan Kara04906b22019-01-14 09:48:10 +01001531 set_init_blocksize(bdev);
1532 }
Tejun Heo7e697232011-05-23 13:26:07 +02001533
Tejun Heo1196f8b2011-04-21 20:54:45 +02001534 /*
1535 * If the device is invalidated, rescan partition
1536 * if open succeeded or failed with -ENOMEDIUM.
1537 * The latter is necessary to prevent ghost
1538 * partitions on a removed medium.
1539 */
Jun'ichi Nomurafe316bf2012-03-02 10:38:33 +01001540 if (bdev->bd_invalidated) {
1541 if (!ret)
1542 rescan_partitions(disk, bdev);
1543 else if (ret == -ENOMEDIUM)
1544 invalidate_partitions(disk, bdev);
1545 }
Dan Williams5a023cd2015-11-30 10:20:29 -08001546
Tejun Heo1196f8b2011-04-21 20:54:45 +02001547 if (ret)
1548 goto out_clear;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 struct block_device *whole;
1551 whole = bdget_disk(disk, 0);
1552 ret = -ENOMEM;
1553 if (!whole)
Tejun Heo0762b8b2008-08-25 19:56:12 +09001554 goto out_clear;
NeilBrown37be4122006-12-08 02:36:16 -08001555 BUG_ON(for_part);
Al Viro572c4892007-10-08 13:24:05 -04001556 ret = __blkdev_get(whole, mode, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 if (ret)
Tejun Heo0762b8b2008-08-25 19:56:12 +09001558 goto out_clear;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 bdev->bd_contains = whole;
Tejun Heo89f97492008-11-05 10:21:06 +01001560 bdev->bd_part = disk_get_part(disk, partno);
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001561 if (!(disk->flags & GENHD_FL_UP) ||
Tejun Heo89f97492008-11-05 10:21:06 +01001562 !bdev->bd_part || !bdev->bd_part->nr_sects) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 ret = -ENXIO;
Tejun Heo0762b8b2008-08-25 19:56:12 +09001564 goto out_clear;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 }
Tejun Heo89f97492008-11-05 10:21:06 +01001566 bd_set_size(bdev, (loff_t)bdev->bd_part->nr_sects << 9);
Jan Kara04906b22019-01-14 09:48:10 +01001567 set_init_blocksize(bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 }
Jan Kara03e26272017-03-23 01:36:53 +01001569
1570 if (bdev->bd_bdi == &noop_backing_dev_info)
1571 bdev->bd_bdi = bdi_get(disk->queue->backing_dev_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 if (bdev->bd_contains == bdev) {
Tejun Heo1196f8b2011-04-21 20:54:45 +02001574 ret = 0;
1575 if (bdev->bd_disk->fops->open)
Al Viro572c4892007-10-08 13:24:05 -04001576 ret = bdev->bd_disk->fops->open(bdev, mode);
Tejun Heo1196f8b2011-04-21 20:54:45 +02001577 /* the same as first opener case, read comment there */
Jun'ichi Nomurafe316bf2012-03-02 10:38:33 +01001578 if (bdev->bd_invalidated) {
1579 if (!ret)
1580 rescan_partitions(bdev->bd_disk, bdev);
1581 else if (ret == -ENOMEDIUM)
1582 invalidate_partitions(bdev->bd_disk, bdev);
1583 }
Tejun Heo1196f8b2011-04-21 20:54:45 +02001584 if (ret)
1585 goto out_unlock_bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 }
1587 }
1588 bdev->bd_openers++;
NeilBrown37be4122006-12-08 02:36:16 -08001589 if (for_part)
1590 bdev->bd_part_count++;
Arjan van de Venc039e312006-03-23 03:00:28 -08001591 mutex_unlock(&bdev->bd_mutex);
Tejun Heo69e02c52011-03-09 19:54:27 +01001592 disk_unblock_events(disk);
Jan Kara89736652018-02-26 13:01:40 +01001593 /* only one opener holds refs to the module and disk */
1594 if (!first_open)
1595 put_disk_and_module(disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 return 0;
1597
Tejun Heo0762b8b2008-08-25 19:56:12 +09001598 out_clear:
Tejun Heo89f97492008-11-05 10:21:06 +01001599 disk_put_part(bdev->bd_part);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 bdev->bd_disk = NULL;
Tejun Heo0762b8b2008-08-25 19:56:12 +09001601 bdev->bd_part = NULL;
Andi Kleen87192a22012-01-12 17:20:34 -08001602 bdev->bd_queue = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 if (bdev != bdev->bd_contains)
Al Viro572c4892007-10-08 13:24:05 -04001604 __blkdev_put(bdev->bd_contains, mode, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 bdev->bd_contains = NULL;
Tejun Heo0762b8b2008-08-25 19:56:12 +09001606 out_unlock_bdev:
Arjan van de Venc039e312006-03-23 03:00:28 -08001607 mutex_unlock(&bdev->bd_mutex);
Tejun Heo69e02c52011-03-09 19:54:27 +01001608 disk_unblock_events(disk);
Jan Kara9df6c292018-02-26 13:01:39 +01001609 put_disk_and_module(disk);
Dan Carpenter4345cab2011-03-19 13:53:31 +01001610 out:
Tejun Heo0762b8b2008-08-25 19:56:12 +09001611 bdput(bdev);
1612
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 return ret;
1614}
1615
Tejun Heod4d77622010-11-13 11:55:18 +01001616/**
1617 * blkdev_get - open a block device
1618 * @bdev: block_device to open
1619 * @mode: FMODE_* mask
1620 * @holder: exclusive holder identifier
1621 *
1622 * Open @bdev with @mode. If @mode includes %FMODE_EXCL, @bdev is
1623 * open with exclusive access. Specifying %FMODE_EXCL with %NULL
1624 * @holder is invalid. Exclusive opens may nest for the same @holder.
1625 *
1626 * On success, the reference count of @bdev is unchanged. On failure,
1627 * @bdev is put.
1628 *
1629 * CONTEXT:
1630 * Might sleep.
1631 *
1632 * RETURNS:
1633 * 0 on success, -errno on failure.
1634 */
Tejun Heoe525fd82010-11-13 11:55:17 +01001635int blkdev_get(struct block_device *bdev, fmode_t mode, void *holder)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636{
Tejun Heoe525fd82010-11-13 11:55:17 +01001637 struct block_device *whole = NULL;
1638 int res;
1639
1640 WARN_ON_ONCE((mode & FMODE_EXCL) && !holder);
1641
1642 if ((mode & FMODE_EXCL) && holder) {
1643 whole = bd_start_claiming(bdev, holder);
1644 if (IS_ERR(whole)) {
1645 bdput(bdev);
1646 return PTR_ERR(whole);
1647 }
1648 }
1649
1650 res = __blkdev_get(bdev, mode, 0);
1651
1652 if (whole) {
Tejun Heod4dc2102011-04-21 20:54:46 +02001653 struct gendisk *disk = whole->bd_disk;
1654
Tejun Heo6a027ef2010-11-13 11:55:17 +01001655 /* finish claiming */
Tejun Heo77ea8872010-12-08 20:57:37 +01001656 mutex_lock(&bdev->bd_mutex);
Tejun Heo6a027ef2010-11-13 11:55:17 +01001657 spin_lock(&bdev_lock);
1658
Tejun Heo77ea8872010-12-08 20:57:37 +01001659 if (!res) {
Tejun Heo6a027ef2010-11-13 11:55:17 +01001660 BUG_ON(!bd_may_claim(bdev, whole, holder));
1661 /*
1662 * Note that for a whole device bd_holders
1663 * will be incremented twice, and bd_holder
1664 * will be set to bd_may_claim before being
1665 * set to holder
1666 */
1667 whole->bd_holders++;
1668 whole->bd_holder = bd_may_claim;
1669 bdev->bd_holders++;
1670 bdev->bd_holder = holder;
1671 }
1672
1673 /* tell others that we're done */
1674 BUG_ON(whole->bd_claiming != holder);
1675 whole->bd_claiming = NULL;
1676 wake_up_bit(&whole->bd_claiming, 0);
1677
1678 spin_unlock(&bdev_lock);
Tejun Heo77ea8872010-12-08 20:57:37 +01001679
1680 /*
Tejun Heod4dc2102011-04-21 20:54:46 +02001681 * Block event polling for write claims if requested. Any
1682 * write holder makes the write_holder state stick until
1683 * all are released. This is good enough and tracking
1684 * individual writeable reference is too fragile given the
1685 * way @mode is used in blkdev_get/put().
Tejun Heo77ea8872010-12-08 20:57:37 +01001686 */
Tejun Heo4c49ff32011-06-01 08:27:41 +02001687 if (!res && (mode & FMODE_WRITE) && !bdev->bd_write_holder &&
1688 (disk->flags & GENHD_FL_BLOCK_EVENTS_ON_EXCL_WRITE)) {
Tejun Heo77ea8872010-12-08 20:57:37 +01001689 bdev->bd_write_holder = true;
Tejun Heod4dc2102011-04-21 20:54:46 +02001690 disk_block_events(disk);
Tejun Heo77ea8872010-12-08 20:57:37 +01001691 }
1692
1693 mutex_unlock(&bdev->bd_mutex);
Tejun Heo6a027ef2010-11-13 11:55:17 +01001694 bdput(whole);
Tejun Heoe525fd82010-11-13 11:55:17 +01001695 }
1696
1697 return res;
NeilBrown37be4122006-12-08 02:36:16 -08001698}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699EXPORT_SYMBOL(blkdev_get);
1700
Tejun Heod4d77622010-11-13 11:55:18 +01001701/**
1702 * blkdev_get_by_path - open a block device by name
1703 * @path: path to the block device to open
1704 * @mode: FMODE_* mask
1705 * @holder: exclusive holder identifier
1706 *
1707 * Open the blockdevice described by the device file at @path. @mode
1708 * and @holder are identical to blkdev_get().
1709 *
1710 * On success, the returned block_device has reference count of one.
1711 *
1712 * CONTEXT:
1713 * Might sleep.
1714 *
1715 * RETURNS:
1716 * Pointer to block_device on success, ERR_PTR(-errno) on failure.
1717 */
1718struct block_device *blkdev_get_by_path(const char *path, fmode_t mode,
1719 void *holder)
1720{
1721 struct block_device *bdev;
1722 int err;
1723
1724 bdev = lookup_bdev(path);
1725 if (IS_ERR(bdev))
1726 return bdev;
1727
1728 err = blkdev_get(bdev, mode, holder);
1729 if (err)
1730 return ERR_PTR(err);
1731
Chuck Ebberte51900f2011-02-16 18:11:53 -05001732 if ((mode & FMODE_WRITE) && bdev_read_only(bdev)) {
1733 blkdev_put(bdev, mode);
1734 return ERR_PTR(-EACCES);
1735 }
1736
Tejun Heod4d77622010-11-13 11:55:18 +01001737 return bdev;
1738}
1739EXPORT_SYMBOL(blkdev_get_by_path);
1740
1741/**
1742 * blkdev_get_by_dev - open a block device by device number
1743 * @dev: device number of block device to open
1744 * @mode: FMODE_* mask
1745 * @holder: exclusive holder identifier
1746 *
1747 * Open the blockdevice described by device number @dev. @mode and
1748 * @holder are identical to blkdev_get().
1749 *
1750 * Use it ONLY if you really do not have anything better - i.e. when
1751 * you are behind a truly sucky interface and all you are given is a
1752 * device number. _Never_ to be used for internal purposes. If you
1753 * ever need it - reconsider your API.
1754 *
1755 * On success, the returned block_device has reference count of one.
1756 *
1757 * CONTEXT:
1758 * Might sleep.
1759 *
1760 * RETURNS:
1761 * Pointer to block_device on success, ERR_PTR(-errno) on failure.
1762 */
1763struct block_device *blkdev_get_by_dev(dev_t dev, fmode_t mode, void *holder)
1764{
1765 struct block_device *bdev;
1766 int err;
1767
1768 bdev = bdget(dev);
1769 if (!bdev)
1770 return ERR_PTR(-ENOMEM);
1771
1772 err = blkdev_get(bdev, mode, holder);
1773 if (err)
1774 return ERR_PTR(err);
1775
1776 return bdev;
1777}
1778EXPORT_SYMBOL(blkdev_get_by_dev);
1779
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780static int blkdev_open(struct inode * inode, struct file * filp)
1781{
1782 struct block_device *bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783
1784 /*
1785 * Preserve backwards compatibility and allow large file access
1786 * even if userspace doesn't ask for it explicitly. Some mkfs
1787 * binary needs it. We might want to drop this workaround
1788 * during an unstable branch.
1789 */
1790 filp->f_flags |= O_LARGEFILE;
1791
Christoph Hellwigc35fc7a2017-08-29 16:13:21 +02001792 filp->f_mode |= FMODE_NOWAIT;
1793
Al Viro572c4892007-10-08 13:24:05 -04001794 if (filp->f_flags & O_NDELAY)
1795 filp->f_mode |= FMODE_NDELAY;
1796 if (filp->f_flags & O_EXCL)
1797 filp->f_mode |= FMODE_EXCL;
1798 if ((filp->f_flags & O_ACCMODE) == 3)
1799 filp->f_mode |= FMODE_WRITE_IOCTL;
1800
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 bdev = bd_acquire(inode);
Pavel Emelianov6a2aae02006-10-28 10:38:33 -07001802 if (bdev == NULL)
1803 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804
Al Viro572c4892007-10-08 13:24:05 -04001805 filp->f_mapping = bdev->bd_inode->i_mapping;
Jeff Layton5660e132017-07-06 07:02:25 -04001806 filp->f_wb_err = filemap_sample_wb_err(filp->f_mapping);
Al Viro572c4892007-10-08 13:24:05 -04001807
Tejun Heoe525fd82010-11-13 11:55:17 +01001808 return blkdev_get(bdev, filp->f_mode, filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809}
1810
Al Viro4385bab2013-05-05 22:11:03 -04001811static void __blkdev_put(struct block_device *bdev, fmode_t mode, int for_part)
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001812{
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001813 struct gendisk *disk = bdev->bd_disk;
NeilBrown37be4122006-12-08 02:36:16 -08001814 struct block_device *victim = NULL;
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001815
NeilBrown6796bf52006-12-08 02:36:16 -08001816 mutex_lock_nested(&bdev->bd_mutex, for_part);
NeilBrown37be4122006-12-08 02:36:16 -08001817 if (for_part)
1818 bdev->bd_part_count--;
1819
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001820 if (!--bdev->bd_openers) {
Tejun Heo6a027ef2010-11-13 11:55:17 +01001821 WARN_ON_ONCE(bdev->bd_holders);
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001822 sync_blockdev(bdev);
1823 kill_bdev(bdev);
Ilya Dryomov43d1c0e2015-11-20 22:22:34 +01001824
Vivek Goyaldbd3ca52015-11-09 09:23:40 -07001825 bdev_write_inode(bdev);
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001826 }
1827 if (bdev->bd_contains == bdev) {
1828 if (disk->fops->release)
Al Virodb2a1442013-05-05 21:52:57 -04001829 disk->fops->release(disk, mode);
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001830 }
1831 if (!bdev->bd_openers) {
Tejun Heo0762b8b2008-08-25 19:56:12 +09001832 disk_put_part(bdev->bd_part);
1833 bdev->bd_part = NULL;
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001834 bdev->bd_disk = NULL;
NeilBrown37be4122006-12-08 02:36:16 -08001835 if (bdev != bdev->bd_contains)
1836 victim = bdev->bd_contains;
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001837 bdev->bd_contains = NULL;
Tejun Heo523e1d32011-10-19 14:31:07 +02001838
Jan Kara9df6c292018-02-26 13:01:39 +01001839 put_disk_and_module(disk);
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001840 }
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001841 mutex_unlock(&bdev->bd_mutex);
1842 bdput(bdev);
NeilBrown37be4122006-12-08 02:36:16 -08001843 if (victim)
Al Viro9a1c3542008-02-22 20:40:24 -05001844 __blkdev_put(victim, mode, 1);
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001845}
1846
Al Viro4385bab2013-05-05 22:11:03 -04001847void blkdev_put(struct block_device *bdev, fmode_t mode)
NeilBrown37be4122006-12-08 02:36:16 -08001848{
Tejun Heo85ef06d2011-07-01 16:17:47 +02001849 mutex_lock(&bdev->bd_mutex);
1850
Tejun Heoe525fd82010-11-13 11:55:17 +01001851 if (mode & FMODE_EXCL) {
Tejun Heo6a027ef2010-11-13 11:55:17 +01001852 bool bdev_free;
1853
1854 /*
1855 * Release a claim on the device. The holder fields
1856 * are protected with bdev_lock. bd_mutex is to
1857 * synchronize disk_holder unlinking.
1858 */
Tejun Heo6a027ef2010-11-13 11:55:17 +01001859 spin_lock(&bdev_lock);
1860
1861 WARN_ON_ONCE(--bdev->bd_holders < 0);
1862 WARN_ON_ONCE(--bdev->bd_contains->bd_holders < 0);
1863
1864 /* bd_contains might point to self, check in a separate step */
1865 if ((bdev_free = !bdev->bd_holders))
1866 bdev->bd_holder = NULL;
1867 if (!bdev->bd_contains->bd_holders)
1868 bdev->bd_contains->bd_holder = NULL;
1869
1870 spin_unlock(&bdev_lock);
1871
Tejun Heo77ea8872010-12-08 20:57:37 +01001872 /*
1873 * If this was the last claim, remove holder link and
1874 * unblock evpoll if it was a write holder.
1875 */
Tejun Heo85ef06d2011-07-01 16:17:47 +02001876 if (bdev_free && bdev->bd_write_holder) {
1877 disk_unblock_events(bdev->bd_disk);
1878 bdev->bd_write_holder = false;
Tejun Heo77ea8872010-12-08 20:57:37 +01001879 }
Tejun Heo69362172011-03-09 19:54:27 +01001880 }
Tejun Heo77ea8872010-12-08 20:57:37 +01001881
Tejun Heo85ef06d2011-07-01 16:17:47 +02001882 /*
1883 * Trigger event checking and tell drivers to flush MEDIA_CHANGE
1884 * event. This is to ensure detection of media removal commanded
1885 * from userland - e.g. eject(1).
1886 */
1887 disk_flush_events(bdev->bd_disk, DISK_EVENT_MEDIA_CHANGE);
1888
1889 mutex_unlock(&bdev->bd_mutex);
1890
Al Viro4385bab2013-05-05 22:11:03 -04001891 __blkdev_put(bdev, mode, 0);
NeilBrown37be4122006-12-08 02:36:16 -08001892}
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001893EXPORT_SYMBOL(blkdev_put);
1894
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895static int blkdev_close(struct inode * inode, struct file * filp)
1896{
Dan Williams4ebb16c2015-10-28 07:48:19 +09001897 struct block_device *bdev = I_BDEV(bdev_file_inode(filp));
Al Viro4385bab2013-05-05 22:11:03 -04001898 blkdev_put(bdev, filp->f_mode);
1899 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900}
1901
Arnd Bergmannbb93e3a2005-06-23 00:10:15 -07001902static long block_ioctl(struct file *file, unsigned cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903{
Dan Williams4ebb16c2015-10-28 07:48:19 +09001904 struct block_device *bdev = I_BDEV(bdev_file_inode(file));
Al Viro56b26ad2008-09-19 03:17:36 -04001905 fmode_t mode = file->f_mode;
Christoph Hellwigfd4ce1a2008-11-05 14:58:42 +01001906
1907 /*
1908 * O_NDELAY can be altered using fcntl(.., F_SETFL, ..), so we have
1909 * to updated it before every ioctl.
1910 */
Al Viro56b26ad2008-09-19 03:17:36 -04001911 if (file->f_flags & O_NDELAY)
Christoph Hellwigfd4ce1a2008-11-05 14:58:42 +01001912 mode |= FMODE_NDELAY;
1913 else
1914 mode &= ~FMODE_NDELAY;
1915
Al Viro56b26ad2008-09-19 03:17:36 -04001916 return blkdev_ioctl(bdev, mode, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917}
1918
Theodore Ts'o87d8fe12009-01-03 09:47:09 -05001919/*
Christoph Hellwigeef99382009-08-20 17:43:41 +02001920 * Write data to the block device. Only intended for the block device itself
1921 * and the raw driver which basically is a fake block device.
1922 *
1923 * Does not take i_mutex for the write and thus is not for general purpose
1924 * use.
1925 */
Al Viro1456c0a2014-04-03 03:21:50 -04001926ssize_t blkdev_write_iter(struct kiocb *iocb, struct iov_iter *from)
Christoph Hellwigeef99382009-08-20 17:43:41 +02001927{
1928 struct file *file = iocb->ki_filp;
Dan Williams4ebb16c2015-10-28 07:48:19 +09001929 struct inode *bd_inode = bdev_file_inode(file);
Al Viro7ec7b942015-04-07 11:35:14 -04001930 loff_t size = i_size_read(bd_inode);
Jianpeng Ma53362a02012-08-02 09:50:39 +02001931 struct blk_plug plug;
Christoph Hellwigeef99382009-08-20 17:43:41 +02001932 ssize_t ret;
Al Viro5f380c72015-04-07 11:28:12 -04001933
Al Viro7ec7b942015-04-07 11:35:14 -04001934 if (bdev_read_only(I_BDEV(bd_inode)))
1935 return -EPERM;
Al Viro5f380c72015-04-07 11:28:12 -04001936
Al Viro7ec7b942015-04-07 11:35:14 -04001937 if (!iov_iter_count(from))
Al Viro5f380c72015-04-07 11:28:12 -04001938 return 0;
1939
Al Viro7ec7b942015-04-07 11:35:14 -04001940 if (iocb->ki_pos >= size)
1941 return -ENOSPC;
1942
Christoph Hellwigc35fc7a2017-08-29 16:13:21 +02001943 if ((iocb->ki_flags & (IOCB_NOWAIT | IOCB_DIRECT)) == IOCB_NOWAIT)
1944 return -EOPNOTSUPP;
1945
Al Viro7ec7b942015-04-07 11:35:14 -04001946 iov_iter_truncate(from, size - iocb->ki_pos);
Christoph Hellwigeef99382009-08-20 17:43:41 +02001947
Jianpeng Ma53362a02012-08-02 09:50:39 +02001948 blk_start_plug(&plug);
Al Viro1456c0a2014-04-03 03:21:50 -04001949 ret = __generic_file_write_iter(iocb, from);
Christoph Hellwige2592212016-04-07 08:52:01 -07001950 if (ret > 0)
1951 ret = generic_write_sync(iocb, ret);
Jianpeng Ma53362a02012-08-02 09:50:39 +02001952 blk_finish_plug(&plug);
Christoph Hellwigeef99382009-08-20 17:43:41 +02001953 return ret;
1954}
Al Viro1456c0a2014-04-03 03:21:50 -04001955EXPORT_SYMBOL_GPL(blkdev_write_iter);
Christoph Hellwigeef99382009-08-20 17:43:41 +02001956
David Jefferyb2de5252014-09-29 10:21:10 -04001957ssize_t blkdev_read_iter(struct kiocb *iocb, struct iov_iter *to)
Linus Torvalds684c9aa2012-12-07 16:48:39 -08001958{
1959 struct file *file = iocb->ki_filp;
Dan Williams4ebb16c2015-10-28 07:48:19 +09001960 struct inode *bd_inode = bdev_file_inode(file);
Linus Torvalds684c9aa2012-12-07 16:48:39 -08001961 loff_t size = i_size_read(bd_inode);
Al Viroa8860382014-04-02 20:02:21 -04001962 loff_t pos = iocb->ki_pos;
Linus Torvalds684c9aa2012-12-07 16:48:39 -08001963
1964 if (pos >= size)
1965 return 0;
1966
1967 size -= pos;
Al Viroa8860382014-04-02 20:02:21 -04001968 iov_iter_truncate(to, size);
1969 return generic_file_read_iter(iocb, to);
Linus Torvalds684c9aa2012-12-07 16:48:39 -08001970}
David Jefferyb2de5252014-09-29 10:21:10 -04001971EXPORT_SYMBOL_GPL(blkdev_read_iter);
Linus Torvalds684c9aa2012-12-07 16:48:39 -08001972
Christoph Hellwigeef99382009-08-20 17:43:41 +02001973/*
Theodore Ts'o87d8fe12009-01-03 09:47:09 -05001974 * Try to release a page associated with block device when the system
1975 * is under memory pressure.
1976 */
1977static int blkdev_releasepage(struct page *page, gfp_t wait)
1978{
1979 struct super_block *super = BDEV_I(page->mapping->host)->bdev.bd_super;
1980
1981 if (super && super->s_op->bdev_try_to_free_page)
1982 return super->s_op->bdev_try_to_free_page(super, page, wait);
1983
1984 return try_to_free_buffers(page);
1985}
1986
Ross Zwisler7f6d5b52016-02-26 15:19:55 -08001987static int blkdev_writepages(struct address_space *mapping,
1988 struct writeback_control *wbc)
1989{
Ross Zwisler7f6d5b52016-02-26 15:19:55 -08001990 return generic_writepages(mapping, wbc);
1991}
1992
Adrian Bunk4c54ac62008-02-18 13:48:31 +01001993static const struct address_space_operations def_blk_aops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994 .readpage = blkdev_readpage,
Akinobu Mita447f05b2014-10-09 15:26:58 -07001995 .readpages = blkdev_readpages,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996 .writepage = blkdev_writepage,
Nick Piggin6272b5a2007-10-16 01:25:04 -07001997 .write_begin = blkdev_write_begin,
1998 .write_end = blkdev_write_end,
Ross Zwisler7f6d5b52016-02-26 15:19:55 -08001999 .writepages = blkdev_writepages,
Theodore Ts'o87d8fe12009-01-03 09:47:09 -05002000 .releasepage = blkdev_releasepage,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001 .direct_IO = blkdev_direct_IO,
Jan Kara88dbcbb2018-12-28 00:39:16 -08002002 .migratepage = buffer_migrate_page_norefs,
Mel Gormanb4597222013-07-03 15:02:05 -07002003 .is_dirty_writeback = buffer_check_dirty_writeback,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004};
2005
Darrick J. Wong25f4c412016-10-11 13:51:11 -07002006#define BLKDEV_FALLOC_FL_SUPPORTED \
2007 (FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE | \
2008 FALLOC_FL_ZERO_RANGE | FALLOC_FL_NO_HIDE_STALE)
2009
2010static long blkdev_fallocate(struct file *file, int mode, loff_t start,
2011 loff_t len)
2012{
2013 struct block_device *bdev = I_BDEV(bdev_file_inode(file));
Darrick J. Wong25f4c412016-10-11 13:51:11 -07002014 struct address_space *mapping;
2015 loff_t end = start + len - 1;
2016 loff_t isize;
2017 int error;
2018
2019 /* Fail if we don't recognize the flags. */
2020 if (mode & ~BLKDEV_FALLOC_FL_SUPPORTED)
2021 return -EOPNOTSUPP;
2022
2023 /* Don't go off the end of the device. */
2024 isize = i_size_read(bdev->bd_inode);
2025 if (start >= isize)
2026 return -EINVAL;
2027 if (end >= isize) {
2028 if (mode & FALLOC_FL_KEEP_SIZE) {
2029 len = isize - start;
2030 end = start + len - 1;
2031 } else
2032 return -EINVAL;
2033 }
2034
2035 /*
2036 * Don't allow IO that isn't aligned to logical block size.
2037 */
2038 if ((start | len) & (bdev_logical_block_size(bdev) - 1))
2039 return -EINVAL;
2040
2041 /* Invalidate the page cache, including dirty pages. */
2042 mapping = bdev->bd_inode->i_mapping;
2043 truncate_inode_pages_range(mapping, start, end);
2044
2045 switch (mode) {
2046 case FALLOC_FL_ZERO_RANGE:
2047 case FALLOC_FL_ZERO_RANGE | FALLOC_FL_KEEP_SIZE:
2048 error = blkdev_issue_zeroout(bdev, start >> 9, len >> 9,
Christoph Hellwigee472d82017-04-05 19:21:08 +02002049 GFP_KERNEL, BLKDEV_ZERO_NOUNMAP);
Darrick J. Wong25f4c412016-10-11 13:51:11 -07002050 break;
2051 case FALLOC_FL_PUNCH_HOLE | FALLOC_FL_KEEP_SIZE:
Christoph Hellwig34045122017-04-05 19:21:11 +02002052 error = blkdev_issue_zeroout(bdev, start >> 9, len >> 9,
2053 GFP_KERNEL, BLKDEV_ZERO_NOFALLBACK);
Darrick J. Wong25f4c412016-10-11 13:51:11 -07002054 break;
2055 case FALLOC_FL_PUNCH_HOLE | FALLOC_FL_KEEP_SIZE | FALLOC_FL_NO_HIDE_STALE:
Darrick J. Wong25f4c412016-10-11 13:51:11 -07002056 error = blkdev_issue_discard(bdev, start >> 9, len >> 9,
2057 GFP_KERNEL, 0);
2058 break;
2059 default:
2060 return -EOPNOTSUPP;
2061 }
2062 if (error)
2063 return error;
2064
2065 /*
2066 * Invalidate again; if someone wandered in and dirtied a page,
2067 * the caller will be given -EBUSY. The third argument is
2068 * inclusive, so the rounding here is safe.
2069 */
2070 return invalidate_inode_pages2_range(mapping,
2071 start >> PAGE_SHIFT,
2072 end >> PAGE_SHIFT);
2073}
2074
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08002075const struct file_operations def_blk_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076 .open = blkdev_open,
2077 .release = blkdev_close,
2078 .llseek = block_llseek,
Al Viroa8860382014-04-02 20:02:21 -04002079 .read_iter = blkdev_read_iter,
Al Viro1456c0a2014-04-03 03:21:50 -04002080 .write_iter = blkdev_write_iter,
Dan Williamsacc93d32016-05-07 11:40:28 -07002081 .mmap = generic_file_mmap,
Andrew Mortonb1dd3b22010-04-06 14:35:00 -07002082 .fsync = blkdev_fsync,
Arnd Bergmannbb93e3a2005-06-23 00:10:15 -07002083 .unlocked_ioctl = block_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084#ifdef CONFIG_COMPAT
2085 .compat_ioctl = compat_blkdev_ioctl,
2086#endif
Linus Torvalds1e8b3332012-11-29 10:49:50 -08002087 .splice_read = generic_file_splice_read,
Al Viro8d020762014-04-05 04:27:08 -04002088 .splice_write = iter_file_splice_write,
Darrick J. Wong25f4c412016-10-11 13:51:11 -07002089 .fallocate = blkdev_fallocate,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090};
2091
2092int ioctl_by_bdev(struct block_device *bdev, unsigned cmd, unsigned long arg)
2093{
2094 int res;
2095 mm_segment_t old_fs = get_fs();
2096 set_fs(KERNEL_DS);
Al Viro56b26ad2008-09-19 03:17:36 -04002097 res = blkdev_ioctl(bdev, 0, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098 set_fs(old_fs);
2099 return res;
2100}
2101
2102EXPORT_SYMBOL(ioctl_by_bdev);
2103
2104/**
2105 * lookup_bdev - lookup a struct block_device by name
Randy Dunlap94e29592009-01-06 14:41:15 -08002106 * @pathname: special file representing the block device
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107 *
Randy Dunlap57d1b532008-10-09 10:42:38 +02002108 * Get a reference to the blockdevice at @pathname in the current
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109 * namespace if possible and return it. Return ERR_PTR(error)
2110 * otherwise.
2111 */
Al Viro421748e2008-08-02 01:04:36 -04002112struct block_device *lookup_bdev(const char *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113{
2114 struct block_device *bdev;
2115 struct inode *inode;
Al Viro421748e2008-08-02 01:04:36 -04002116 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117 int error;
2118
Al Viro421748e2008-08-02 01:04:36 -04002119 if (!pathname || !*pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120 return ERR_PTR(-EINVAL);
2121
Al Viro421748e2008-08-02 01:04:36 -04002122 error = kern_path(pathname, LOOKUP_FOLLOW, &path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123 if (error)
2124 return ERR_PTR(error);
2125
David Howellsbb6687342015-03-17 22:26:21 +00002126 inode = d_backing_inode(path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127 error = -ENOTBLK;
2128 if (!S_ISBLK(inode->i_mode))
2129 goto fail;
2130 error = -EACCES;
Eric W. Biedermana2982cc2016-06-09 15:34:02 -05002131 if (!may_open_dev(&path))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132 goto fail;
2133 error = -ENOMEM;
2134 bdev = bd_acquire(inode);
2135 if (!bdev)
2136 goto fail;
2137out:
Al Viro421748e2008-08-02 01:04:36 -04002138 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139 return bdev;
2140fail:
2141 bdev = ERR_PTR(error);
2142 goto out;
2143}
Al Virod5686b42008-08-01 05:00:11 -04002144EXPORT_SYMBOL(lookup_bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145
NeilBrown93b270f2011-02-24 17:25:47 +11002146int __invalidate_device(struct block_device *bdev, bool kill_dirty)
David Howellsb71e8a42006-08-29 19:06:11 +01002147{
2148 struct super_block *sb = get_super(bdev);
2149 int res = 0;
2150
2151 if (sb) {
2152 /*
2153 * no need to lock the super, get_super holds the
2154 * read mutex so the filesystem cannot go away
2155 * under us (->put_super runs with the write lock
2156 * hold).
2157 */
2158 shrink_dcache_sb(sb);
NeilBrown93b270f2011-02-24 17:25:47 +11002159 res = invalidate_inodes(sb, kill_dirty);
David Howellsb71e8a42006-08-29 19:06:11 +01002160 drop_super(sb);
2161 }
Peter Zijlstraf98393a2007-05-06 14:49:54 -07002162 invalidate_bdev(bdev);
David Howellsb71e8a42006-08-29 19:06:11 +01002163 return res;
2164}
2165EXPORT_SYMBOL(__invalidate_device);
Jan Kara5c0d6b62012-07-03 16:45:31 +02002166
2167void iterate_bdevs(void (*func)(struct block_device *, void *), void *arg)
2168{
2169 struct inode *inode, *old_inode = NULL;
2170
Dave Chinner74278da2015-03-04 12:37:22 -05002171 spin_lock(&blockdev_superblock->s_inode_list_lock);
Jan Kara5c0d6b62012-07-03 16:45:31 +02002172 list_for_each_entry(inode, &blockdev_superblock->s_inodes, i_sb_list) {
2173 struct address_space *mapping = inode->i_mapping;
Rabin Vincentaf309222016-12-01 09:18:28 +01002174 struct block_device *bdev;
Jan Kara5c0d6b62012-07-03 16:45:31 +02002175
2176 spin_lock(&inode->i_lock);
2177 if (inode->i_state & (I_FREEING|I_WILL_FREE|I_NEW) ||
2178 mapping->nrpages == 0) {
2179 spin_unlock(&inode->i_lock);
2180 continue;
2181 }
2182 __iget(inode);
2183 spin_unlock(&inode->i_lock);
Dave Chinner74278da2015-03-04 12:37:22 -05002184 spin_unlock(&blockdev_superblock->s_inode_list_lock);
Jan Kara5c0d6b62012-07-03 16:45:31 +02002185 /*
2186 * We hold a reference to 'inode' so it couldn't have been
2187 * removed from s_inodes list while we dropped the
Dave Chinner74278da2015-03-04 12:37:22 -05002188 * s_inode_list_lock We cannot iput the inode now as we can
Jan Kara5c0d6b62012-07-03 16:45:31 +02002189 * be holding the last reference and we cannot iput it under
Dave Chinner74278da2015-03-04 12:37:22 -05002190 * s_inode_list_lock. So we keep the reference and iput it
Jan Kara5c0d6b62012-07-03 16:45:31 +02002191 * later.
2192 */
2193 iput(old_inode);
2194 old_inode = inode;
Rabin Vincentaf309222016-12-01 09:18:28 +01002195 bdev = I_BDEV(inode);
Jan Kara5c0d6b62012-07-03 16:45:31 +02002196
Rabin Vincentaf309222016-12-01 09:18:28 +01002197 mutex_lock(&bdev->bd_mutex);
2198 if (bdev->bd_openers)
2199 func(bdev, arg);
2200 mutex_unlock(&bdev->bd_mutex);
Jan Kara5c0d6b62012-07-03 16:45:31 +02002201
Dave Chinner74278da2015-03-04 12:37:22 -05002202 spin_lock(&blockdev_superblock->s_inode_list_lock);
Jan Kara5c0d6b62012-07-03 16:45:31 +02002203 }
Dave Chinner74278da2015-03-04 12:37:22 -05002204 spin_unlock(&blockdev_superblock->s_inode_list_lock);
Jan Kara5c0d6b62012-07-03 16:45:31 +02002205 iput(old_inode);
2206}