blob: ddc6cdd1860b476e08c59dfa1f7dfbff331486f4 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/buffer_head.h>
Al Viroff01bb482011-09-16 02:31:11 -040022#include <linux/swap.h>
Nick Piggin585d3bc2009-02-25 10:44:19 +010023#include <linux/pagevec.h>
David Howells811d7362006-08-29 19:06:09 +010024#include <linux/writeback.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/mpage.h>
26#include <linux/mount.h>
27#include <linux/uio.h>
28#include <linux/namei.h>
Vignesh Babu BM1368c4f2007-05-08 00:24:32 -070029#include <linux/log2.h>
Al Viroff01bb482011-09-16 02:31:11 -040030#include <linux/cleancache.h>
Matthew Wilcoxc94c2ac2015-09-08 14:58:40 -070031#include <linux/dax.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <asm/uaccess.h>
David Howells07f3f052006-09-30 20:52:18 +020033#include "internal.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
35struct bdev_inode {
36 struct block_device bdev;
37 struct inode vfs_inode;
38};
39
Adrian Bunk4c54ac62008-02-18 13:48:31 +010040static const struct address_space_operations def_blk_aops;
41
Linus Torvalds1da177e2005-04-16 15:20:36 -070042static inline struct bdev_inode *BDEV_I(struct inode *inode)
43{
44 return container_of(inode, struct bdev_inode, vfs_inode);
45}
46
Geert Uytterhoevenff5053f2015-06-26 13:58:32 +020047struct block_device *I_BDEV(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -070048{
49 return &BDEV_I(inode)->bdev;
50}
Linus Torvalds1da177e2005-04-16 15:20:36 -070051EXPORT_SYMBOL(I_BDEV);
52
Vivek Goyaldbd3ca52015-11-09 09:23:40 -070053static void bdev_write_inode(struct block_device *bdev)
Christoph Hellwig564f00f2015-01-14 10:42:33 +010054{
Vivek Goyaldbd3ca52015-11-09 09:23:40 -070055 struct inode *inode = bdev->bd_inode;
56 int ret;
57
Christoph Hellwig564f00f2015-01-14 10:42:33 +010058 spin_lock(&inode->i_lock);
59 while (inode->i_state & I_DIRTY) {
60 spin_unlock(&inode->i_lock);
Vivek Goyaldbd3ca52015-11-09 09:23:40 -070061 ret = write_inode_now(inode, true);
62 if (ret) {
63 char name[BDEVNAME_SIZE];
64 pr_warn_ratelimited("VFS: Dirty inode writeback failed "
65 "for block device %s (err=%d).\n",
66 bdevname(bdev, name), ret);
67 }
Christoph Hellwig564f00f2015-01-14 10:42:33 +010068 spin_lock(&inode->i_lock);
69 }
70 spin_unlock(&inode->i_lock);
71}
72
Peter Zijlstraf9a14392007-05-06 14:49:55 -070073/* Kill _all_ buffers and pagecache , dirty or not.. */
Al Viroff01bb482011-09-16 02:31:11 -040074void kill_bdev(struct block_device *bdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070075{
Al Viroff01bb482011-09-16 02:31:11 -040076 struct address_space *mapping = bdev->bd_inode->i_mapping;
77
Johannes Weiner91b0abe2014-04-03 14:47:49 -070078 if (mapping->nrpages == 0 && mapping->nrshadows == 0)
Peter Zijlstraf9a14392007-05-06 14:49:55 -070079 return;
Al Viroff01bb482011-09-16 02:31:11 -040080
Peter Zijlstraf9a14392007-05-06 14:49:55 -070081 invalidate_bh_lrus();
Al Viroff01bb482011-09-16 02:31:11 -040082 truncate_inode_pages(mapping, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070083}
Al Viroff01bb482011-09-16 02:31:11 -040084EXPORT_SYMBOL(kill_bdev);
85
86/* Invalidate clean unused buffers and pagecache. */
87void invalidate_bdev(struct block_device *bdev)
88{
89 struct address_space *mapping = bdev->bd_inode->i_mapping;
90
91 if (mapping->nrpages == 0)
92 return;
93
94 invalidate_bh_lrus();
95 lru_add_drain_all(); /* make sure all lru add caches are flushed */
96 invalidate_mapping_pages(mapping, 0, -1);
97 /* 99% of the time, we don't need to flush the cleancache on the bdev.
98 * But, for the strange corners, lets be cautious
99 */
Dan Magenheimer31677602011-09-21 11:56:28 -0400100 cleancache_invalidate_inode(mapping);
Al Viroff01bb482011-09-16 02:31:11 -0400101}
102EXPORT_SYMBOL(invalidate_bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
104int set_blocksize(struct block_device *bdev, int size)
105{
106 /* Size must be a power of two, and between 512 and PAGE_SIZE */
Vignesh Babu BM1368c4f2007-05-08 00:24:32 -0700107 if (size > PAGE_SIZE || size < 512 || !is_power_of_2(size))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 return -EINVAL;
109
110 /* Size cannot be smaller than the size supported by the device */
Martin K. Petersene1defc42009-05-22 17:17:49 -0400111 if (size < bdev_logical_block_size(bdev))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 return -EINVAL;
113
114 /* Don't change the size if it is same as current */
115 if (bdev->bd_block_size != size) {
116 sync_blockdev(bdev);
117 bdev->bd_block_size = size;
118 bdev->bd_inode->i_blkbits = blksize_bits(size);
119 kill_bdev(bdev);
120 }
121 return 0;
122}
123
124EXPORT_SYMBOL(set_blocksize);
125
126int sb_set_blocksize(struct super_block *sb, int size)
127{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 if (set_blocksize(sb->s_bdev, size))
129 return 0;
130 /* If we get here, we know size is power of two
131 * and it's value is between 512 and PAGE_SIZE */
132 sb->s_blocksize = size;
Coywolf Qi Hunt38885bd2006-03-24 03:18:05 -0800133 sb->s_blocksize_bits = blksize_bits(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 return sb->s_blocksize;
135}
136
137EXPORT_SYMBOL(sb_set_blocksize);
138
139int sb_min_blocksize(struct super_block *sb, int size)
140{
Martin K. Petersene1defc42009-05-22 17:17:49 -0400141 int minsize = bdev_logical_block_size(sb->s_bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 if (size < minsize)
143 size = minsize;
144 return sb_set_blocksize(sb, size);
145}
146
147EXPORT_SYMBOL(sb_min_blocksize);
148
149static int
150blkdev_get_block(struct inode *inode, sector_t iblock,
151 struct buffer_head *bh, int create)
152{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 bh->b_bdev = I_BDEV(inode);
154 bh->b_blocknr = iblock;
155 set_buffer_mapped(bh);
156 return 0;
157}
158
Dan Williams4ebb16c2015-10-28 07:48:19 +0900159static struct inode *bdev_file_inode(struct file *file)
160{
161 return file->f_mapping->host;
162}
163
Andrew Mortonb2e895d2007-02-03 01:14:01 -0800164static ssize_t
Omar Sandoval22c61862015-03-16 04:33:53 -0700165blkdev_direct_IO(struct kiocb *iocb, struct iov_iter *iter, loff_t offset)
Andrew Mortonb2e895d2007-02-03 01:14:01 -0800166{
167 struct file *file = iocb->ki_filp;
Dan Williams4ebb16c2015-10-28 07:48:19 +0900168 struct inode *inode = bdev_file_inode(file);
Andrew Mortonb2e895d2007-02-03 01:14:01 -0800169
Matthew Wilcoxbbab37d2015-07-03 10:40:42 -0400170 if (IS_DAX(inode))
171 return dax_do_io(iocb, inode, iter, offset, blkdev_get_block,
172 NULL, DIO_SKIP_DIO_COUNT);
Omar Sandoval17f8c842015-03-16 04:33:50 -0700173 return __blockdev_direct_IO(iocb, inode, I_BDEV(inode), iter, offset,
Jens Axboefe0f07d2015-04-15 17:05:48 -0600174 blkdev_get_block, NULL, NULL,
175 DIO_SKIP_DIO_COUNT);
Andrew Mortonb2e895d2007-02-03 01:14:01 -0800176}
177
Jan Kara5cee5812009-04-27 16:43:51 +0200178int __sync_blockdev(struct block_device *bdev, int wait)
179{
180 if (!bdev)
181 return 0;
182 if (!wait)
183 return filemap_flush(bdev->bd_inode->i_mapping);
184 return filemap_write_and_wait(bdev->bd_inode->i_mapping);
185}
186
Nick Piggin585d3bc2009-02-25 10:44:19 +0100187/*
188 * Write out and wait upon all the dirty data associated with a block
189 * device via its mapping. Does not take the superblock lock.
190 */
191int sync_blockdev(struct block_device *bdev)
192{
Jan Kara5cee5812009-04-27 16:43:51 +0200193 return __sync_blockdev(bdev, 1);
Nick Piggin585d3bc2009-02-25 10:44:19 +0100194}
195EXPORT_SYMBOL(sync_blockdev);
196
197/*
198 * Write out and wait upon all dirty data associated with this
199 * device. Filesystem data as well as the underlying block
200 * device. Takes the superblock lock.
201 */
202int fsync_bdev(struct block_device *bdev)
203{
204 struct super_block *sb = get_super(bdev);
205 if (sb) {
Jan Kara60b06802009-04-27 16:43:53 +0200206 int res = sync_filesystem(sb);
Nick Piggin585d3bc2009-02-25 10:44:19 +0100207 drop_super(sb);
208 return res;
209 }
210 return sync_blockdev(bdev);
211}
Al Viro47e44912009-04-01 07:07:16 -0400212EXPORT_SYMBOL(fsync_bdev);
Nick Piggin585d3bc2009-02-25 10:44:19 +0100213
214/**
215 * freeze_bdev -- lock a filesystem and force it into a consistent state
216 * @bdev: blockdevice to lock
217 *
Nick Piggin585d3bc2009-02-25 10:44:19 +0100218 * If a superblock is found on this device, we take the s_umount semaphore
219 * on it to make sure nobody unmounts until the snapshot creation is done.
220 * The reference counter (bd_fsfreeze_count) guarantees that only the last
221 * unfreeze process can unfreeze the frozen filesystem actually when multiple
222 * freeze requests arrive simultaneously. It counts up in freeze_bdev() and
223 * count down in thaw_bdev(). When it becomes 0, thaw_bdev() will unfreeze
224 * actually.
225 */
226struct super_block *freeze_bdev(struct block_device *bdev)
227{
228 struct super_block *sb;
229 int error = 0;
230
231 mutex_lock(&bdev->bd_fsfreeze_mutex);
Christoph Hellwig45042302009-08-03 23:28:35 +0200232 if (++bdev->bd_fsfreeze_count > 1) {
233 /*
234 * We don't even need to grab a reference - the first call
235 * to freeze_bdev grab an active reference and only the last
236 * thaw_bdev drops it.
237 */
Nick Piggin585d3bc2009-02-25 10:44:19 +0100238 sb = get_super(bdev);
Christoph Hellwig45042302009-08-03 23:28:35 +0200239 drop_super(sb);
Nick Piggin585d3bc2009-02-25 10:44:19 +0100240 mutex_unlock(&bdev->bd_fsfreeze_mutex);
241 return sb;
242 }
Nick Piggin585d3bc2009-02-25 10:44:19 +0100243
Christoph Hellwig45042302009-08-03 23:28:35 +0200244 sb = get_active_super(bdev);
245 if (!sb)
246 goto out;
Benjamin Marzinski48b6bca2014-11-13 20:42:03 -0600247 if (sb->s_op->freeze_super)
248 error = sb->s_op->freeze_super(sb);
249 else
250 error = freeze_super(sb);
Josef Bacik18e9e512010-03-23 10:34:56 -0400251 if (error) {
252 deactivate_super(sb);
253 bdev->bd_fsfreeze_count--;
Christoph Hellwig45042302009-08-03 23:28:35 +0200254 mutex_unlock(&bdev->bd_fsfreeze_mutex);
Josef Bacik18e9e512010-03-23 10:34:56 -0400255 return ERR_PTR(error);
Nick Piggin585d3bc2009-02-25 10:44:19 +0100256 }
Josef Bacik18e9e512010-03-23 10:34:56 -0400257 deactivate_super(sb);
Christoph Hellwig45042302009-08-03 23:28:35 +0200258 out:
Nick Piggin585d3bc2009-02-25 10:44:19 +0100259 sync_blockdev(bdev);
260 mutex_unlock(&bdev->bd_fsfreeze_mutex);
Christoph Hellwig4fadd7b2009-08-03 23:28:06 +0200261 return sb; /* thaw_bdev releases s->s_umount */
Nick Piggin585d3bc2009-02-25 10:44:19 +0100262}
263EXPORT_SYMBOL(freeze_bdev);
264
265/**
266 * thaw_bdev -- unlock filesystem
267 * @bdev: blockdevice to unlock
268 * @sb: associated superblock
269 *
270 * Unlocks the filesystem and marks it writeable again after freeze_bdev().
271 */
272int thaw_bdev(struct block_device *bdev, struct super_block *sb)
273{
Christoph Hellwig45042302009-08-03 23:28:35 +0200274 int error = -EINVAL;
Nick Piggin585d3bc2009-02-25 10:44:19 +0100275
276 mutex_lock(&bdev->bd_fsfreeze_mutex);
Christoph Hellwig45042302009-08-03 23:28:35 +0200277 if (!bdev->bd_fsfreeze_count)
Josef Bacik18e9e512010-03-23 10:34:56 -0400278 goto out;
Nick Piggin585d3bc2009-02-25 10:44:19 +0100279
Christoph Hellwig45042302009-08-03 23:28:35 +0200280 error = 0;
281 if (--bdev->bd_fsfreeze_count > 0)
Josef Bacik18e9e512010-03-23 10:34:56 -0400282 goto out;
Nick Piggin585d3bc2009-02-25 10:44:19 +0100283
Christoph Hellwig45042302009-08-03 23:28:35 +0200284 if (!sb)
Josef Bacik18e9e512010-03-23 10:34:56 -0400285 goto out;
Christoph Hellwig45042302009-08-03 23:28:35 +0200286
Benjamin Marzinski48b6bca2014-11-13 20:42:03 -0600287 if (sb->s_op->thaw_super)
288 error = sb->s_op->thaw_super(sb);
289 else
290 error = thaw_super(sb);
Josef Bacik18e9e512010-03-23 10:34:56 -0400291 if (error) {
292 bdev->bd_fsfreeze_count++;
293 mutex_unlock(&bdev->bd_fsfreeze_mutex);
294 return error;
Nick Piggin585d3bc2009-02-25 10:44:19 +0100295 }
Josef Bacik18e9e512010-03-23 10:34:56 -0400296out:
Nick Piggin585d3bc2009-02-25 10:44:19 +0100297 mutex_unlock(&bdev->bd_fsfreeze_mutex);
298 return 0;
299}
300EXPORT_SYMBOL(thaw_bdev);
301
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302static int blkdev_writepage(struct page *page, struct writeback_control *wbc)
303{
304 return block_write_full_page(page, blkdev_get_block, wbc);
305}
306
307static int blkdev_readpage(struct file * file, struct page * page)
308{
309 return block_read_full_page(page, blkdev_get_block);
310}
311
Akinobu Mita447f05b2014-10-09 15:26:58 -0700312static int blkdev_readpages(struct file *file, struct address_space *mapping,
313 struct list_head *pages, unsigned nr_pages)
314{
315 return mpage_readpages(mapping, pages, nr_pages, blkdev_get_block);
316}
317
Nick Piggin6272b5a2007-10-16 01:25:04 -0700318static int blkdev_write_begin(struct file *file, struct address_space *mapping,
319 loff_t pos, unsigned len, unsigned flags,
320 struct page **pagep, void **fsdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321{
Christoph Hellwig155130a2010-06-04 11:29:58 +0200322 return block_write_begin(mapping, pos, len, flags, pagep,
323 blkdev_get_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324}
325
Nick Piggin6272b5a2007-10-16 01:25:04 -0700326static int blkdev_write_end(struct file *file, struct address_space *mapping,
327 loff_t pos, unsigned len, unsigned copied,
328 struct page *page, void *fsdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329{
Nick Piggin6272b5a2007-10-16 01:25:04 -0700330 int ret;
331 ret = block_write_end(file, mapping, pos, len, copied, page, fsdata);
332
333 unlock_page(page);
334 page_cache_release(page);
335
336 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337}
338
339/*
340 * private llseek:
Al Viro496ad9a2013-01-23 17:07:38 -0500341 * for a block special file file_inode(file)->i_size is zero
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 * so we compute the size by hand (just as in block_read/write above)
343 */
Andrew Morton965c8e52012-12-17 15:59:39 -0800344static loff_t block_llseek(struct file *file, loff_t offset, int whence)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345{
Dan Williams4ebb16c2015-10-28 07:48:19 +0900346 struct inode *bd_inode = bdev_file_inode(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 loff_t retval;
348
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800349 mutex_lock(&bd_inode->i_mutex);
Al Viro5d48f3a2013-06-23 21:34:45 +0400350 retval = fixed_size_llseek(file, offset, whence, i_size_read(bd_inode));
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800351 mutex_unlock(&bd_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 return retval;
353}
354
Josef Bacik02c24a82011-07-16 20:44:56 -0400355int blkdev_fsync(struct file *filp, loff_t start, loff_t end, int datasync)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356{
Dan Williams4ebb16c2015-10-28 07:48:19 +0900357 struct inode *bd_inode = bdev_file_inode(filp);
Anton Blanchardb8af67e2010-04-23 13:18:06 -0400358 struct block_device *bdev = I_BDEV(bd_inode);
Christoph Hellwigab0a9732009-10-29 14:14:04 +0100359 int error;
Rafael J. Wysockida5aa862011-08-02 02:17:48 +0200360
361 error = filemap_write_and_wait_range(filp->f_mapping, start, end);
362 if (error)
363 return error;
Christoph Hellwigab0a9732009-10-29 14:14:04 +0100364
Anton Blanchardb8af67e2010-04-23 13:18:06 -0400365 /*
366 * There is no need to serialise calls to blkdev_issue_flush with
367 * i_mutex and doing so causes performance issues with concurrent
368 * O_SYNC writers to a block device.
369 */
Christoph Hellwigdd3932e2010-09-16 20:51:46 +0200370 error = blkdev_issue_flush(bdev, GFP_KERNEL, NULL);
Christoph Hellwigab0a9732009-10-29 14:14:04 +0100371 if (error == -EOPNOTSUPP)
372 error = 0;
Anton Blanchardb8af67e2010-04-23 13:18:06 -0400373
Christoph Hellwigab0a9732009-10-29 14:14:04 +0100374 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375}
Andrew Mortonb1dd3b22010-04-06 14:35:00 -0700376EXPORT_SYMBOL(blkdev_fsync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377
Matthew Wilcox47a191f2014-06-04 16:07:46 -0700378/**
379 * bdev_read_page() - Start reading a page from a block device
380 * @bdev: The device to read the page from
381 * @sector: The offset on the device to read the page to (need not be aligned)
382 * @page: The page to read
383 *
384 * On entry, the page should be locked. It will be unlocked when the page
385 * has been read. If the block driver implements rw_page synchronously,
386 * that will be true on exit from this function, but it need not be.
387 *
388 * Errors returned by this function are usually "soft", eg out of memory, or
389 * queue full; callers should try a different route to read this page rather
390 * than propagate an error back up the stack.
391 *
392 * Return: negative errno if an error occurs, 0 if submission was successful.
393 */
394int bdev_read_page(struct block_device *bdev, sector_t sector,
395 struct page *page)
396{
397 const struct block_device_operations *ops = bdev->bd_disk->fops;
Dan Williams2e6edc92015-11-19 13:29:28 -0800398 int result = -EOPNOTSUPP;
399
Vishal Vermaf68eb1e2015-05-12 13:48:53 -0400400 if (!ops->rw_page || bdev_get_integrity(bdev))
Dan Williams2e6edc92015-11-19 13:29:28 -0800401 return result;
402
403 result = blk_queue_enter(bdev->bd_queue, GFP_KERNEL);
404 if (result)
405 return result;
406 result = ops->rw_page(bdev, sector + get_start_sect(bdev), page, READ);
407 blk_queue_exit(bdev->bd_queue);
408 return result;
Matthew Wilcox47a191f2014-06-04 16:07:46 -0700409}
410EXPORT_SYMBOL_GPL(bdev_read_page);
411
412/**
413 * bdev_write_page() - Start writing a page to a block device
414 * @bdev: The device to write the page to
415 * @sector: The offset on the device to write the page to (need not be aligned)
416 * @page: The page to write
417 * @wbc: The writeback_control for the write
418 *
419 * On entry, the page should be locked and not currently under writeback.
420 * On exit, if the write started successfully, the page will be unlocked and
421 * under writeback. If the write failed already (eg the driver failed to
422 * queue the page to the device), the page will still be locked. If the
423 * caller is a ->writepage implementation, it will need to unlock the page.
424 *
425 * Errors returned by this function are usually "soft", eg out of memory, or
426 * queue full; callers should try a different route to write this page rather
427 * than propagate an error back up the stack.
428 *
429 * Return: negative errno if an error occurs, 0 if submission was successful.
430 */
431int bdev_write_page(struct block_device *bdev, sector_t sector,
432 struct page *page, struct writeback_control *wbc)
433{
434 int result;
435 int rw = (wbc->sync_mode == WB_SYNC_ALL) ? WRITE_SYNC : WRITE;
436 const struct block_device_operations *ops = bdev->bd_disk->fops;
Dan Williams2e6edc92015-11-19 13:29:28 -0800437
Vishal Vermaf68eb1e2015-05-12 13:48:53 -0400438 if (!ops->rw_page || bdev_get_integrity(bdev))
Matthew Wilcox47a191f2014-06-04 16:07:46 -0700439 return -EOPNOTSUPP;
Andrew Mortonb8328612016-01-14 15:19:44 -0800440 result = blk_queue_enter(bdev->bd_queue, GFP_NOIO);
Dan Williams2e6edc92015-11-19 13:29:28 -0800441 if (result)
442 return result;
443
Matthew Wilcox47a191f2014-06-04 16:07:46 -0700444 set_page_writeback(page);
445 result = ops->rw_page(bdev, sector + get_start_sect(bdev), page, rw);
446 if (result)
447 end_page_writeback(page);
448 else
449 unlock_page(page);
Dan Williams2e6edc92015-11-19 13:29:28 -0800450 blk_queue_exit(bdev->bd_queue);
Matthew Wilcox47a191f2014-06-04 16:07:46 -0700451 return result;
452}
453EXPORT_SYMBOL_GPL(bdev_write_page);
454
Matthew Wilcoxdd22f552015-01-07 18:05:34 +0200455/**
456 * bdev_direct_access() - Get the address for directly-accessibly memory
457 * @bdev: The device containing the memory
458 * @sector: The offset within the device
459 * @addr: Where to put the address of the memory
460 * @pfn: The Page Frame Number for the memory
461 * @size: The number of bytes requested
462 *
463 * If a block device is made up of directly addressable memory, this function
464 * will tell the caller the PFN and the address of the memory. The address
465 * may be directly dereferenced within the kernel without the need to call
466 * ioremap(), kmap() or similar. The PFN is suitable for inserting into
467 * page tables.
468 *
469 * Return: negative errno if an error occurs, otherwise the number of bytes
470 * accessible at this address.
471 */
472long bdev_direct_access(struct block_device *bdev, sector_t sector,
Ross Zwislere2e05392015-08-18 13:55:41 -0600473 void __pmem **addr, unsigned long *pfn, long size)
Matthew Wilcoxdd22f552015-01-07 18:05:34 +0200474{
475 long avail;
476 const struct block_device_operations *ops = bdev->bd_disk->fops;
477
Matthew Wilcox43c3dd02015-07-03 10:40:43 -0400478 /*
479 * The device driver is allowed to sleep, in order to make the
480 * memory directly accessible.
481 */
482 might_sleep();
483
Matthew Wilcoxdd22f552015-01-07 18:05:34 +0200484 if (size < 0)
485 return size;
486 if (!ops->direct_access)
487 return -EOPNOTSUPP;
488 if ((sector + DIV_ROUND_UP(size, 512)) >
489 part_nr_sects_read(bdev->bd_part))
490 return -ERANGE;
491 sector += get_start_sect(bdev);
492 if (sector % (PAGE_SIZE / 512))
493 return -EINVAL;
Dan Williamscb389b92015-08-07 17:41:00 -0400494 avail = ops->direct_access(bdev, sector, addr, pfn);
Matthew Wilcoxdd22f552015-01-07 18:05:34 +0200495 if (!avail)
496 return -ERANGE;
Dan Williamsfe683ad2016-01-15 16:55:56 -0800497 if (avail > 0 && avail & ~PAGE_MASK)
498 return -ENXIO;
Matthew Wilcoxdd22f552015-01-07 18:05:34 +0200499 return min(avail, size);
500}
501EXPORT_SYMBOL_GPL(bdev_direct_access);
502
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503/*
504 * pseudo-fs
505 */
506
507static __cacheline_aligned_in_smp DEFINE_SPINLOCK(bdev_lock);
Christoph Lametere18b8902006-12-06 20:33:20 -0800508static struct kmem_cache * bdev_cachep __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
510static struct inode *bdev_alloc_inode(struct super_block *sb)
511{
Christoph Lametere94b1762006-12-06 20:33:17 -0800512 struct bdev_inode *ei = kmem_cache_alloc(bdev_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 if (!ei)
514 return NULL;
515 return &ei->vfs_inode;
516}
517
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100518static void bdev_i_callback(struct rcu_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519{
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100520 struct inode *inode = container_of(head, struct inode, i_rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 struct bdev_inode *bdi = BDEV_I(inode);
522
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 kmem_cache_free(bdev_cachep, bdi);
524}
525
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100526static void bdev_destroy_inode(struct inode *inode)
527{
528 call_rcu(&inode->i_rcu, bdev_i_callback);
529}
530
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700531static void init_once(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532{
533 struct bdev_inode *ei = (struct bdev_inode *) foo;
534 struct block_device *bdev = &ei->bdev;
535
Christoph Lametera35afb82007-05-16 22:10:57 -0700536 memset(bdev, 0, sizeof(*bdev));
537 mutex_init(&bdev->bd_mutex);
Christoph Lametera35afb82007-05-16 22:10:57 -0700538 INIT_LIST_HEAD(&bdev->bd_inodes);
539 INIT_LIST_HEAD(&bdev->bd_list);
Tejun Heo49731ba2011-01-14 18:43:57 +0100540#ifdef CONFIG_SYSFS
541 INIT_LIST_HEAD(&bdev->bd_holder_disks);
542#endif
Christoph Lametera35afb82007-05-16 22:10:57 -0700543 inode_init_once(&ei->vfs_inode);
Takashi Satofcccf502009-01-09 16:40:59 -0800544 /* Initialize mutex for freeze. */
545 mutex_init(&bdev->bd_fsfreeze_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546}
547
548static inline void __bd_forget(struct inode *inode)
549{
550 list_del_init(&inode->i_devices);
551 inode->i_bdev = NULL;
552 inode->i_mapping = &inode->i_data;
553}
554
Al Virob57922d2010-06-07 14:34:48 -0400555static void bdev_evict_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556{
557 struct block_device *bdev = &BDEV_I(inode)->bdev;
558 struct list_head *p;
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700559 truncate_inode_pages_final(&inode->i_data);
Al Virob57922d2010-06-07 14:34:48 -0400560 invalidate_inode_buffers(inode); /* is it needed here? */
Jan Karadbd57682012-05-03 14:48:02 +0200561 clear_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 spin_lock(&bdev_lock);
563 while ( (p = bdev->bd_inodes.next) != &bdev->bd_inodes ) {
564 __bd_forget(list_entry(p, struct inode, i_devices));
565 }
566 list_del_init(&bdev->bd_list);
567 spin_unlock(&bdev_lock);
568}
569
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800570static const struct super_operations bdev_sops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 .statfs = simple_statfs,
572 .alloc_inode = bdev_alloc_inode,
573 .destroy_inode = bdev_destroy_inode,
574 .drop_inode = generic_delete_inode,
Al Virob57922d2010-06-07 14:34:48 -0400575 .evict_inode = bdev_evict_inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576};
577
Al Viro51139ad2010-07-25 23:47:46 +0400578static struct dentry *bd_mount(struct file_system_type *fs_type,
579 int flags, const char *dev_name, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580{
Muthu Kumarb502bd12012-03-23 15:01:50 -0700581 return mount_pseudo(fs_type, "bdev:", &bdev_sops, NULL, BDEVFS_MAGIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582}
583
584static struct file_system_type bd_type = {
585 .name = "bdev",
Al Viro51139ad2010-07-25 23:47:46 +0400586 .mount = bd_mount,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 .kill_sb = kill_anon_super,
588};
589
Tejun Heoa212b102015-05-22 17:13:33 -0400590struct super_block *blockdev_superblock __read_mostly;
591EXPORT_SYMBOL_GPL(blockdev_superblock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
593void __init bdev_cache_init(void)
594{
595 int err;
Sergey Senozhatskyace85772012-01-10 02:43:59 +0300596 static struct vfsmount *bd_mnt;
Denis ChengRqc2acf7b2008-12-01 14:34:56 -0800597
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 bdev_cachep = kmem_cache_create("bdev_cache", sizeof(struct bdev_inode),
Paul Jacksonfffb60f2006-03-24 03:16:06 -0800599 0, (SLAB_HWCACHE_ALIGN|SLAB_RECLAIM_ACCOUNT|
Vladimir Davydov5d097052016-01-14 15:18:21 -0800600 SLAB_MEM_SPREAD|SLAB_ACCOUNT|SLAB_PANIC),
Paul Mundt20c2df82007-07-20 10:11:58 +0900601 init_once);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 err = register_filesystem(&bd_type);
603 if (err)
604 panic("Cannot register bdev pseudo-fs");
605 bd_mnt = kern_mount(&bd_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 if (IS_ERR(bd_mnt))
607 panic("Cannot create bdev pseudo-fs");
Sergey Senozhatskyace85772012-01-10 02:43:59 +0300608 blockdev_superblock = bd_mnt->mnt_sb; /* For writeback */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609}
610
611/*
612 * Most likely _very_ bad one - but then it's hardly critical for small
613 * /dev and can be fixed when somebody will need really large one.
614 * Keep in mind that it will be fed through icache hash function too.
615 */
616static inline unsigned long hash(dev_t dev)
617{
618 return MAJOR(dev)+MINOR(dev);
619}
620
621static int bdev_test(struct inode *inode, void *data)
622{
623 return BDEV_I(inode)->bdev.bd_dev == *(dev_t *)data;
624}
625
626static int bdev_set(struct inode *inode, void *data)
627{
628 BDEV_I(inode)->bdev.bd_dev = *(dev_t *)data;
629 return 0;
630}
631
632static LIST_HEAD(all_bdevs);
633
634struct block_device *bdget(dev_t dev)
635{
636 struct block_device *bdev;
637 struct inode *inode;
638
Denis ChengRqc2acf7b2008-12-01 14:34:56 -0800639 inode = iget5_locked(blockdev_superblock, hash(dev),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 bdev_test, bdev_set, &dev);
641
642 if (!inode)
643 return NULL;
644
645 bdev = &BDEV_I(inode)->bdev;
646
647 if (inode->i_state & I_NEW) {
648 bdev->bd_contains = NULL;
Lachlan McIlroy782b94c2011-06-30 11:01:45 +1000649 bdev->bd_super = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 bdev->bd_inode = inode;
651 bdev->bd_block_size = (1 << inode->i_blkbits);
652 bdev->bd_part_count = 0;
653 bdev->bd_invalidated = 0;
654 inode->i_mode = S_IFBLK;
655 inode->i_rdev = dev;
656 inode->i_bdev = bdev;
657 inode->i_data.a_ops = &def_blk_aops;
658 mapping_set_gfp_mask(&inode->i_data, GFP_USER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 spin_lock(&bdev_lock);
660 list_add(&bdev->bd_list, &all_bdevs);
661 spin_unlock(&bdev_lock);
662 unlock_new_inode(inode);
663 }
664 return bdev;
665}
666
667EXPORT_SYMBOL(bdget);
668
Alan Jenkinsdddac6a2009-07-29 21:07:55 +0200669/**
670 * bdgrab -- Grab a reference to an already referenced block device
671 * @bdev: Block device to grab a reference to.
672 */
673struct block_device *bdgrab(struct block_device *bdev)
674{
Al Viro7de9c6ee2010-10-23 11:11:40 -0400675 ihold(bdev->bd_inode);
Alan Jenkinsdddac6a2009-07-29 21:07:55 +0200676 return bdev;
677}
Anatol Pomozovc1681bf2013-04-01 09:47:56 -0700678EXPORT_SYMBOL(bdgrab);
Alan Jenkinsdddac6a2009-07-29 21:07:55 +0200679
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680long nr_blockdev_pages(void)
681{
Matthias Kaehlcke203a2932007-07-15 23:40:23 -0700682 struct block_device *bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 long ret = 0;
684 spin_lock(&bdev_lock);
Matthias Kaehlcke203a2932007-07-15 23:40:23 -0700685 list_for_each_entry(bdev, &all_bdevs, bd_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 ret += bdev->bd_inode->i_mapping->nrpages;
687 }
688 spin_unlock(&bdev_lock);
689 return ret;
690}
691
692void bdput(struct block_device *bdev)
693{
694 iput(bdev->bd_inode);
695}
696
697EXPORT_SYMBOL(bdput);
698
699static struct block_device *bd_acquire(struct inode *inode)
700{
701 struct block_device *bdev;
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700702
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 spin_lock(&bdev_lock);
704 bdev = inode->i_bdev;
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700705 if (bdev) {
Al Viro7de9c6ee2010-10-23 11:11:40 -0400706 ihold(bdev->bd_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 spin_unlock(&bdev_lock);
708 return bdev;
709 }
710 spin_unlock(&bdev_lock);
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700711
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 bdev = bdget(inode->i_rdev);
713 if (bdev) {
714 spin_lock(&bdev_lock);
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700715 if (!inode->i_bdev) {
716 /*
Al Viro7de9c6ee2010-10-23 11:11:40 -0400717 * We take an additional reference to bd_inode,
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700718 * and it's released in clear_inode() of inode.
719 * So, we can access it via ->i_mapping always
720 * without igrab().
721 */
Al Viro7de9c6ee2010-10-23 11:11:40 -0400722 ihold(bdev->bd_inode);
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700723 inode->i_bdev = bdev;
724 inode->i_mapping = bdev->bd_inode->i_mapping;
725 list_add(&inode->i_devices, &bdev->bd_inodes);
726 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 spin_unlock(&bdev_lock);
728 }
729 return bdev;
730}
731
732/* Call when you free inode */
733
734void bd_forget(struct inode *inode)
735{
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700736 struct block_device *bdev = NULL;
737
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 spin_lock(&bdev_lock);
Yan Hongb4ea2ea2013-04-30 15:26:47 -0700739 if (!sb_is_blkdev_sb(inode->i_sb))
740 bdev = inode->i_bdev;
741 __bd_forget(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 spin_unlock(&bdev_lock);
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700743
744 if (bdev)
745 iput(bdev->bd_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746}
747
Tejun Heo1a3cbbc2010-04-07 18:52:29 +0900748/**
749 * bd_may_claim - test whether a block device can be claimed
750 * @bdev: block device of interest
751 * @whole: whole block device containing @bdev, may equal @bdev
752 * @holder: holder trying to claim @bdev
753 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300754 * Test whether @bdev can be claimed by @holder.
Tejun Heo1a3cbbc2010-04-07 18:52:29 +0900755 *
756 * CONTEXT:
757 * spin_lock(&bdev_lock).
758 *
759 * RETURNS:
760 * %true if @bdev can be claimed, %false otherwise.
761 */
762static bool bd_may_claim(struct block_device *bdev, struct block_device *whole,
763 void *holder)
764{
765 if (bdev->bd_holder == holder)
766 return true; /* already a holder */
767 else if (bdev->bd_holder != NULL)
768 return false; /* held by someone else */
769 else if (bdev->bd_contains == bdev)
770 return true; /* is a whole device which isn't held */
771
Tejun Heoe525fd82010-11-13 11:55:17 +0100772 else if (whole->bd_holder == bd_may_claim)
Tejun Heo1a3cbbc2010-04-07 18:52:29 +0900773 return true; /* is a partition of a device that is being partitioned */
774 else if (whole->bd_holder != NULL)
775 return false; /* is a partition of a held device */
776 else
777 return true; /* is a partition of an un-held device */
778}
779
780/**
Tejun Heo6b4517a2010-04-07 18:53:59 +0900781 * bd_prepare_to_claim - prepare to claim a block device
782 * @bdev: block device of interest
783 * @whole: the whole device containing @bdev, may equal @bdev
784 * @holder: holder trying to claim @bdev
785 *
786 * Prepare to claim @bdev. This function fails if @bdev is already
787 * claimed by another holder and waits if another claiming is in
788 * progress. This function doesn't actually claim. On successful
789 * return, the caller has ownership of bd_claiming and bd_holder[s].
790 *
791 * CONTEXT:
792 * spin_lock(&bdev_lock). Might release bdev_lock, sleep and regrab
793 * it multiple times.
794 *
795 * RETURNS:
796 * 0 if @bdev can be claimed, -EBUSY otherwise.
797 */
798static int bd_prepare_to_claim(struct block_device *bdev,
799 struct block_device *whole, void *holder)
800{
801retry:
802 /* if someone else claimed, fail */
803 if (!bd_may_claim(bdev, whole, holder))
804 return -EBUSY;
805
Tejun Heoe75aa852010-08-04 17:59:39 +0200806 /* if claiming is already in progress, wait for it to finish */
807 if (whole->bd_claiming) {
Tejun Heo6b4517a2010-04-07 18:53:59 +0900808 wait_queue_head_t *wq = bit_waitqueue(&whole->bd_claiming, 0);
809 DEFINE_WAIT(wait);
810
811 prepare_to_wait(wq, &wait, TASK_UNINTERRUPTIBLE);
812 spin_unlock(&bdev_lock);
813 schedule();
814 finish_wait(wq, &wait);
815 spin_lock(&bdev_lock);
816 goto retry;
817 }
818
819 /* yay, all mine */
820 return 0;
821}
822
823/**
824 * bd_start_claiming - start claiming a block device
825 * @bdev: block device of interest
826 * @holder: holder trying to claim @bdev
827 *
828 * @bdev is about to be opened exclusively. Check @bdev can be opened
829 * exclusively and mark that an exclusive open is in progress. Each
830 * successful call to this function must be matched with a call to
Nick Pigginb0018362010-05-26 01:51:19 +1000831 * either bd_finish_claiming() or bd_abort_claiming() (which do not
832 * fail).
833 *
834 * This function is used to gain exclusive access to the block device
835 * without actually causing other exclusive open attempts to fail. It
836 * should be used when the open sequence itself requires exclusive
837 * access but may subsequently fail.
Tejun Heo6b4517a2010-04-07 18:53:59 +0900838 *
839 * CONTEXT:
840 * Might sleep.
841 *
842 * RETURNS:
843 * Pointer to the block device containing @bdev on success, ERR_PTR()
844 * value on failure.
845 */
846static struct block_device *bd_start_claiming(struct block_device *bdev,
847 void *holder)
848{
849 struct gendisk *disk;
850 struct block_device *whole;
851 int partno, err;
852
853 might_sleep();
854
855 /*
856 * @bdev might not have been initialized properly yet, look up
857 * and grab the outer block device the hard way.
858 */
859 disk = get_gendisk(bdev->bd_dev, &partno);
860 if (!disk)
861 return ERR_PTR(-ENXIO);
862
Tejun Heod4c208b2011-06-13 12:45:48 +0200863 /*
864 * Normally, @bdev should equal what's returned from bdget_disk()
865 * if partno is 0; however, some drivers (floppy) use multiple
866 * bdev's for the same physical device and @bdev may be one of the
867 * aliases. Keep @bdev if partno is 0. This means claimer
868 * tracking is broken for those devices but it has always been that
869 * way.
870 */
871 if (partno)
872 whole = bdget_disk(disk, 0);
873 else
874 whole = bdgrab(bdev);
875
Nick Piggincf342572010-05-26 01:50:21 +1000876 module_put(disk->fops->owner);
Tejun Heo6b4517a2010-04-07 18:53:59 +0900877 put_disk(disk);
878 if (!whole)
879 return ERR_PTR(-ENOMEM);
880
881 /* prepare to claim, if successful, mark claiming in progress */
882 spin_lock(&bdev_lock);
883
884 err = bd_prepare_to_claim(bdev, whole, holder);
885 if (err == 0) {
886 whole->bd_claiming = holder;
887 spin_unlock(&bdev_lock);
888 return whole;
889 } else {
890 spin_unlock(&bdev_lock);
891 bdput(whole);
892 return ERR_PTR(err);
893 }
894}
895
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800896#ifdef CONFIG_SYSFS
Tejun Heo49731ba2011-01-14 18:43:57 +0100897struct bd_holder_disk {
898 struct list_head list;
899 struct gendisk *disk;
900 int refcnt;
901};
902
903static struct bd_holder_disk *bd_find_holder_disk(struct block_device *bdev,
904 struct gendisk *disk)
905{
906 struct bd_holder_disk *holder;
907
908 list_for_each_entry(holder, &bdev->bd_holder_disks, list)
909 if (holder->disk == disk)
910 return holder;
911 return NULL;
912}
913
Andrew Morton4d7dd8f2006-09-29 01:58:56 -0700914static int add_symlink(struct kobject *from, struct kobject *to)
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800915{
Andrew Morton4d7dd8f2006-09-29 01:58:56 -0700916 return sysfs_create_link(from, to, kobject_name(to));
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800917}
918
919static void del_symlink(struct kobject *from, struct kobject *to)
920{
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800921 sysfs_remove_link(from, kobject_name(to));
922}
923
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800924/**
Tejun Heoe09b4572010-11-13 11:55:17 +0100925 * bd_link_disk_holder - create symlinks between holding disk and slave bdev
926 * @bdev: the claimed slave bdev
927 * @disk: the holding disk
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -0500928 *
Tejun Heo49731ba2011-01-14 18:43:57 +0100929 * DON'T USE THIS UNLESS YOU'RE ALREADY USING IT.
930 *
Tejun Heoe09b4572010-11-13 11:55:17 +0100931 * This functions creates the following sysfs symlinks.
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -0500932 *
Tejun Heoe09b4572010-11-13 11:55:17 +0100933 * - from "slaves" directory of the holder @disk to the claimed @bdev
934 * - from "holders" directory of the @bdev to the holder @disk
935 *
936 * For example, if /dev/dm-0 maps to /dev/sda and disk for dm-0 is
937 * passed to bd_link_disk_holder(), then:
938 *
939 * /sys/block/dm-0/slaves/sda --> /sys/block/sda
940 * /sys/block/sda/holders/dm-0 --> /sys/block/dm-0
941 *
942 * The caller must have claimed @bdev before calling this function and
943 * ensure that both @bdev and @disk are valid during the creation and
944 * lifetime of these symlinks.
945 *
946 * CONTEXT:
947 * Might sleep.
948 *
949 * RETURNS:
950 * 0 on success, -errno on failure.
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -0500951 */
Tejun Heoe09b4572010-11-13 11:55:17 +0100952int bd_link_disk_holder(struct block_device *bdev, struct gendisk *disk)
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -0500953{
Tejun Heo49731ba2011-01-14 18:43:57 +0100954 struct bd_holder_disk *holder;
Tejun Heoe09b4572010-11-13 11:55:17 +0100955 int ret = 0;
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800956
Peter Zijlstra2e7b6512006-12-08 02:36:13 -0800957 mutex_lock(&bdev->bd_mutex);
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -0500958
Tejun Heo49731ba2011-01-14 18:43:57 +0100959 WARN_ON_ONCE(!bdev->bd_holder);
Johannes Weiner4e916722007-07-15 23:41:25 -0700960
Tejun Heoe09b4572010-11-13 11:55:17 +0100961 /* FIXME: remove the following once add_disk() handles errors */
962 if (WARN_ON(!disk->slave_dir || !bdev->bd_part->holder_dir))
963 goto out_unlock;
Johannes Weiner4e916722007-07-15 23:41:25 -0700964
Tejun Heo49731ba2011-01-14 18:43:57 +0100965 holder = bd_find_holder_disk(bdev, disk);
966 if (holder) {
967 holder->refcnt++;
Tejun Heoe09b4572010-11-13 11:55:17 +0100968 goto out_unlock;
969 }
970
Tejun Heo49731ba2011-01-14 18:43:57 +0100971 holder = kzalloc(sizeof(*holder), GFP_KERNEL);
972 if (!holder) {
973 ret = -ENOMEM;
974 goto out_unlock;
975 }
976
977 INIT_LIST_HEAD(&holder->list);
978 holder->disk = disk;
979 holder->refcnt = 1;
980
981 ret = add_symlink(disk->slave_dir, &part_to_dev(bdev->bd_part)->kobj);
982 if (ret)
983 goto out_free;
984
985 ret = add_symlink(bdev->bd_part->holder_dir, &disk_to_dev(disk)->kobj);
986 if (ret)
987 goto out_del;
Tejun Heoe7407d12011-02-24 09:56:32 +0100988 /*
989 * bdev could be deleted beneath us which would implicitly destroy
990 * the holder directory. Hold on to it.
991 */
992 kobject_get(bdev->bd_part->holder_dir);
Tejun Heo49731ba2011-01-14 18:43:57 +0100993
994 list_add(&holder->list, &bdev->bd_holder_disks);
995 goto out_unlock;
996
997out_del:
998 del_symlink(disk->slave_dir, &part_to_dev(bdev->bd_part)->kobj);
999out_free:
1000 kfree(holder);
Tejun Heoe09b4572010-11-13 11:55:17 +01001001out_unlock:
Jun'ichi Nomurab4cf1b72006-03-27 01:18:00 -08001002 mutex_unlock(&bdev->bd_mutex);
Tejun Heoe09b4572010-11-13 11:55:17 +01001003 return ret;
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001004}
Tejun Heoe09b4572010-11-13 11:55:17 +01001005EXPORT_SYMBOL_GPL(bd_link_disk_holder);
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001006
Tejun Heo49731ba2011-01-14 18:43:57 +01001007/**
1008 * bd_unlink_disk_holder - destroy symlinks created by bd_link_disk_holder()
1009 * @bdev: the calimed slave bdev
1010 * @disk: the holding disk
1011 *
1012 * DON'T USE THIS UNLESS YOU'RE ALREADY USING IT.
1013 *
1014 * CONTEXT:
1015 * Might sleep.
1016 */
1017void bd_unlink_disk_holder(struct block_device *bdev, struct gendisk *disk)
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001018{
Tejun Heo49731ba2011-01-14 18:43:57 +01001019 struct bd_holder_disk *holder;
Tejun Heoe09b4572010-11-13 11:55:17 +01001020
Tejun Heo49731ba2011-01-14 18:43:57 +01001021 mutex_lock(&bdev->bd_mutex);
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001022
Tejun Heo49731ba2011-01-14 18:43:57 +01001023 holder = bd_find_holder_disk(bdev, disk);
1024
1025 if (!WARN_ON_ONCE(holder == NULL) && !--holder->refcnt) {
1026 del_symlink(disk->slave_dir, &part_to_dev(bdev->bd_part)->kobj);
1027 del_symlink(bdev->bd_part->holder_dir,
1028 &disk_to_dev(disk)->kobj);
Tejun Heoe7407d12011-02-24 09:56:32 +01001029 kobject_put(bdev->bd_part->holder_dir);
Tejun Heo49731ba2011-01-14 18:43:57 +01001030 list_del_init(&holder->list);
1031 kfree(holder);
1032 }
1033
1034 mutex_unlock(&bdev->bd_mutex);
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001035}
Tejun Heo49731ba2011-01-14 18:43:57 +01001036EXPORT_SYMBOL_GPL(bd_unlink_disk_holder);
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001037#endif
1038
Andrew Patterson0c002c22008-09-04 14:27:20 -06001039/**
Andrew Patterson56ade442008-09-04 14:27:40 -06001040 * flush_disk - invalidates all buffer-cache entries on a disk
1041 *
1042 * @bdev: struct block device to be flushed
Randy Dunlape6eb5ce2011-02-26 10:54:00 -08001043 * @kill_dirty: flag to guide handling of dirty inodes
Andrew Patterson56ade442008-09-04 14:27:40 -06001044 *
1045 * Invalidates all buffer-cache entries on a disk. It should be called
1046 * when a disk has been changed -- either by a media change or online
1047 * resize.
1048 */
NeilBrown93b270f2011-02-24 17:25:47 +11001049static void flush_disk(struct block_device *bdev, bool kill_dirty)
Andrew Patterson56ade442008-09-04 14:27:40 -06001050{
NeilBrown93b270f2011-02-24 17:25:47 +11001051 if (__invalidate_device(bdev, kill_dirty)) {
Andrew Patterson56ade442008-09-04 14:27:40 -06001052 printk(KERN_WARNING "VFS: busy inodes on changed media or "
Dmitry Monakhov424081f2015-04-13 16:31:34 +04001053 "resized disk %s\n",
1054 bdev->bd_disk ? bdev->bd_disk->disk_name : "");
Andrew Patterson56ade442008-09-04 14:27:40 -06001055 }
1056
1057 if (!bdev->bd_disk)
1058 return;
Tejun Heod27769e2011-08-23 20:01:04 +02001059 if (disk_part_scan_enabled(bdev->bd_disk))
Andrew Patterson56ade442008-09-04 14:27:40 -06001060 bdev->bd_invalidated = 1;
1061}
1062
1063/**
Randy Dunlap57d1b532008-10-09 10:42:38 +02001064 * check_disk_size_change - checks for disk size change and adjusts bdev size.
Andrew Pattersonc3279d12008-09-04 14:27:25 -06001065 * @disk: struct gendisk to check
1066 * @bdev: struct bdev to adjust.
1067 *
1068 * This routine checks to see if the bdev size does not match the disk size
1069 * and adjusts it if it differs.
1070 */
1071void check_disk_size_change(struct gendisk *disk, struct block_device *bdev)
1072{
1073 loff_t disk_size, bdev_size;
1074
1075 disk_size = (loff_t)get_capacity(disk) << 9;
1076 bdev_size = i_size_read(bdev->bd_inode);
1077 if (disk_size != bdev_size) {
Andrew Pattersonc3279d12008-09-04 14:27:25 -06001078 printk(KERN_INFO
1079 "%s: detected capacity change from %lld to %lld\n",
Dmitry Monakhov424081f2015-04-13 16:31:34 +04001080 disk->disk_name, bdev_size, disk_size);
Andrew Pattersonc3279d12008-09-04 14:27:25 -06001081 i_size_write(bdev->bd_inode, disk_size);
NeilBrown93b270f2011-02-24 17:25:47 +11001082 flush_disk(bdev, false);
Andrew Pattersonc3279d12008-09-04 14:27:25 -06001083 }
1084}
1085EXPORT_SYMBOL(check_disk_size_change);
1086
1087/**
Randy Dunlap57d1b532008-10-09 10:42:38 +02001088 * revalidate_disk - wrapper for lower-level driver's revalidate_disk call-back
Andrew Patterson0c002c22008-09-04 14:27:20 -06001089 * @disk: struct gendisk to be revalidated
1090 *
1091 * This routine is a wrapper for lower-level driver's revalidate_disk
1092 * call-backs. It is used to do common pre and post operations needed
1093 * for all revalidate_disk operations.
1094 */
1095int revalidate_disk(struct gendisk *disk)
1096{
Andrew Pattersonc3279d12008-09-04 14:27:25 -06001097 struct block_device *bdev;
Andrew Patterson0c002c22008-09-04 14:27:20 -06001098 int ret = 0;
1099
1100 if (disk->fops->revalidate_disk)
1101 ret = disk->fops->revalidate_disk(disk);
Martin K. Petersen25520d52015-10-21 13:19:49 -04001102 blk_integrity_revalidate(disk);
Andrew Pattersonc3279d12008-09-04 14:27:25 -06001103 bdev = bdget_disk(disk, 0);
1104 if (!bdev)
1105 return ret;
1106
1107 mutex_lock(&bdev->bd_mutex);
1108 check_disk_size_change(disk, bdev);
MITSUNARI Shigeo7630b662013-02-21 16:42:01 -08001109 bdev->bd_invalidated = 0;
Andrew Pattersonc3279d12008-09-04 14:27:25 -06001110 mutex_unlock(&bdev->bd_mutex);
1111 bdput(bdev);
Andrew Patterson0c002c22008-09-04 14:27:20 -06001112 return ret;
1113}
1114EXPORT_SYMBOL(revalidate_disk);
1115
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116/*
1117 * This routine checks whether a removable media has been changed,
1118 * and invalidates all buffer-cache-entries in that case. This
1119 * is a relatively slow routine, so we have to try to minimize using
1120 * it. Thus it is called only upon a 'mount' or 'open'. This
1121 * is the best way of combining speed and utility, I think.
1122 * People changing diskettes in the middle of an operation deserve
1123 * to lose :-)
1124 */
1125int check_disk_change(struct block_device *bdev)
1126{
1127 struct gendisk *disk = bdev->bd_disk;
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -07001128 const struct block_device_operations *bdops = disk->fops;
Tejun Heo77ea8872010-12-08 20:57:37 +01001129 unsigned int events;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130
Tejun Heo77ea8872010-12-08 20:57:37 +01001131 events = disk_clear_events(disk, DISK_EVENT_MEDIA_CHANGE |
1132 DISK_EVENT_EJECT_REQUEST);
1133 if (!(events & DISK_EVENT_MEDIA_CHANGE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 return 0;
1135
NeilBrown93b270f2011-02-24 17:25:47 +11001136 flush_disk(bdev, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 if (bdops->revalidate_disk)
1138 bdops->revalidate_disk(bdev->bd_disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 return 1;
1140}
1141
1142EXPORT_SYMBOL(check_disk_change);
1143
1144void bd_set_size(struct block_device *bdev, loff_t size)
1145{
Martin K. Petersene1defc42009-05-22 17:17:49 -04001146 unsigned bsize = bdev_logical_block_size(bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147
Guo Chaod646a022013-02-21 15:16:42 -08001148 mutex_lock(&bdev->bd_inode->i_mutex);
1149 i_size_write(bdev->bd_inode, size);
1150 mutex_unlock(&bdev->bd_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 while (bsize < PAGE_CACHE_SIZE) {
1152 if (size & bsize)
1153 break;
1154 bsize <<= 1;
1155 }
1156 bdev->bd_block_size = bsize;
1157 bdev->bd_inode->i_blkbits = blksize_bits(bsize);
1158}
1159EXPORT_SYMBOL(bd_set_size);
1160
Al Viro4385bab2013-05-05 22:11:03 -04001161static void __blkdev_put(struct block_device *bdev, fmode_t mode, int for_part);
NeilBrown37be4122006-12-08 02:36:16 -08001162
Peter Zijlstra6d740cd2007-02-20 13:58:18 -08001163/*
1164 * bd_mutex locking:
1165 *
1166 * mutex_lock(part->bd_mutex)
1167 * mutex_lock_nested(whole->bd_mutex, 1)
1168 */
1169
Al Viro572c4892007-10-08 13:24:05 -04001170static int __blkdev_get(struct block_device *bdev, fmode_t mode, int for_part)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 struct gendisk *disk;
Tejun Heo523e1d32011-10-19 14:31:07 +02001173 struct module *owner;
Pavel Emelyanov7db9cfd2008-06-05 22:46:27 -07001174 int ret;
Tejun Heocf771cb2008-09-03 09:01:09 +02001175 int partno;
Al Virofe6e9c12008-06-23 08:30:55 -04001176 int perm = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177
Al Viro572c4892007-10-08 13:24:05 -04001178 if (mode & FMODE_READ)
Al Virofe6e9c12008-06-23 08:30:55 -04001179 perm |= MAY_READ;
Al Viro572c4892007-10-08 13:24:05 -04001180 if (mode & FMODE_WRITE)
Al Virofe6e9c12008-06-23 08:30:55 -04001181 perm |= MAY_WRITE;
1182 /*
1183 * hooks: /n/, see "layering violations".
1184 */
Chris Wrightb7300b72010-08-10 18:02:55 -07001185 if (!for_part) {
1186 ret = devcgroup_inode_permission(bdev->bd_inode, perm);
1187 if (ret != 0) {
1188 bdput(bdev);
1189 return ret;
1190 }
Al Viro82666022008-08-01 05:32:04 -04001191 }
Pavel Emelyanov7db9cfd2008-06-05 22:46:27 -07001192
NeilBrownd3374822009-01-09 08:31:10 +11001193 restart:
Tejun Heo0762b8b2008-08-25 19:56:12 +09001194
Tejun Heo89f97492008-11-05 10:21:06 +01001195 ret = -ENXIO;
Tejun Heocf771cb2008-09-03 09:01:09 +02001196 disk = get_gendisk(bdev->bd_dev, &partno);
Tejun Heo0762b8b2008-08-25 19:56:12 +09001197 if (!disk)
Arnd Bergmann6e9624b2010-08-07 18:25:34 +02001198 goto out;
Tejun Heo523e1d32011-10-19 14:31:07 +02001199 owner = disk->fops->owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200
Tejun Heo69e02c52011-03-09 19:54:27 +01001201 disk_block_events(disk);
NeilBrown6796bf52006-12-08 02:36:16 -08001202 mutex_lock_nested(&bdev->bd_mutex, for_part);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 if (!bdev->bd_openers) {
1204 bdev->bd_disk = disk;
Andi Kleen87192a22012-01-12 17:20:34 -08001205 bdev->bd_queue = disk->queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 bdev->bd_contains = bdev;
Matthew Wilcoxbbab37d2015-07-03 10:40:42 -04001207 bdev->bd_inode->i_flags = disk->fops->direct_access ? S_DAX : 0;
Tejun Heocf771cb2008-09-03 09:01:09 +02001208 if (!partno) {
Tejun Heo89f97492008-11-05 10:21:06 +01001209 ret = -ENXIO;
1210 bdev->bd_part = disk_get_part(disk, partno);
1211 if (!bdev->bd_part)
1212 goto out_clear;
1213
Tejun Heo1196f8b2011-04-21 20:54:45 +02001214 ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 if (disk->fops->open) {
Al Viro572c4892007-10-08 13:24:05 -04001216 ret = disk->fops->open(bdev, mode);
NeilBrownd3374822009-01-09 08:31:10 +11001217 if (ret == -ERESTARTSYS) {
1218 /* Lost a race with 'disk' being
1219 * deleted, try again.
1220 * See md.c
1221 */
1222 disk_put_part(bdev->bd_part);
1223 bdev->bd_part = NULL;
NeilBrownd3374822009-01-09 08:31:10 +11001224 bdev->bd_disk = NULL;
Andi Kleen87192a22012-01-12 17:20:34 -08001225 bdev->bd_queue = NULL;
NeilBrownd3374822009-01-09 08:31:10 +11001226 mutex_unlock(&bdev->bd_mutex);
Tejun Heo69e02c52011-03-09 19:54:27 +01001227 disk_unblock_events(disk);
Tejun Heo69e02c52011-03-09 19:54:27 +01001228 put_disk(disk);
Tejun Heo523e1d32011-10-19 14:31:07 +02001229 module_put(owner);
NeilBrownd3374822009-01-09 08:31:10 +11001230 goto restart;
1231 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 }
Tejun Heo7e697232011-05-23 13:26:07 +02001233
Dan Williams5a023cd2015-11-30 10:20:29 -08001234 if (!ret) {
Tejun Heo7e697232011-05-23 13:26:07 +02001235 bd_set_size(bdev,(loff_t)get_capacity(disk)<<9);
Dan Williams5a023cd2015-11-30 10:20:29 -08001236 if (!blkdev_dax_capable(bdev))
1237 bdev->bd_inode->i_flags &= ~S_DAX;
1238 }
Tejun Heo7e697232011-05-23 13:26:07 +02001239
Tejun Heo1196f8b2011-04-21 20:54:45 +02001240 /*
1241 * If the device is invalidated, rescan partition
1242 * if open succeeded or failed with -ENOMEDIUM.
1243 * The latter is necessary to prevent ghost
1244 * partitions on a removed medium.
1245 */
Jun'ichi Nomurafe316bf2012-03-02 10:38:33 +01001246 if (bdev->bd_invalidated) {
1247 if (!ret)
1248 rescan_partitions(disk, bdev);
1249 else if (ret == -ENOMEDIUM)
1250 invalidate_partitions(disk, bdev);
1251 }
Dan Williams5a023cd2015-11-30 10:20:29 -08001252
Tejun Heo1196f8b2011-04-21 20:54:45 +02001253 if (ret)
1254 goto out_clear;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 struct block_device *whole;
1257 whole = bdget_disk(disk, 0);
1258 ret = -ENOMEM;
1259 if (!whole)
Tejun Heo0762b8b2008-08-25 19:56:12 +09001260 goto out_clear;
NeilBrown37be4122006-12-08 02:36:16 -08001261 BUG_ON(for_part);
Al Viro572c4892007-10-08 13:24:05 -04001262 ret = __blkdev_get(whole, mode, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 if (ret)
Tejun Heo0762b8b2008-08-25 19:56:12 +09001264 goto out_clear;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 bdev->bd_contains = whole;
Tejun Heo89f97492008-11-05 10:21:06 +01001266 bdev->bd_part = disk_get_part(disk, partno);
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001267 if (!(disk->flags & GENHD_FL_UP) ||
Tejun Heo89f97492008-11-05 10:21:06 +01001268 !bdev->bd_part || !bdev->bd_part->nr_sects) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 ret = -ENXIO;
Tejun Heo0762b8b2008-08-25 19:56:12 +09001270 goto out_clear;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 }
Tejun Heo89f97492008-11-05 10:21:06 +01001272 bd_set_size(bdev, (loff_t)bdev->bd_part->nr_sects << 9);
Dan Williams5a023cd2015-11-30 10:20:29 -08001273 if (!blkdev_dax_capable(bdev))
Jeff Moyerf0b2e562015-08-14 16:15:32 -04001274 bdev->bd_inode->i_flags &= ~S_DAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 }
1276 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 if (bdev->bd_contains == bdev) {
Tejun Heo1196f8b2011-04-21 20:54:45 +02001278 ret = 0;
1279 if (bdev->bd_disk->fops->open)
Al Viro572c4892007-10-08 13:24:05 -04001280 ret = bdev->bd_disk->fops->open(bdev, mode);
Tejun Heo1196f8b2011-04-21 20:54:45 +02001281 /* the same as first opener case, read comment there */
Jun'ichi Nomurafe316bf2012-03-02 10:38:33 +01001282 if (bdev->bd_invalidated) {
1283 if (!ret)
1284 rescan_partitions(bdev->bd_disk, bdev);
1285 else if (ret == -ENOMEDIUM)
1286 invalidate_partitions(bdev->bd_disk, bdev);
1287 }
Tejun Heo1196f8b2011-04-21 20:54:45 +02001288 if (ret)
1289 goto out_unlock_bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 }
Tejun Heo69e02c52011-03-09 19:54:27 +01001291 /* only one opener holds refs to the module and disk */
Tejun Heo69e02c52011-03-09 19:54:27 +01001292 put_disk(disk);
Tejun Heo523e1d32011-10-19 14:31:07 +02001293 module_put(owner);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 }
1295 bdev->bd_openers++;
NeilBrown37be4122006-12-08 02:36:16 -08001296 if (for_part)
1297 bdev->bd_part_count++;
Arjan van de Venc039e312006-03-23 03:00:28 -08001298 mutex_unlock(&bdev->bd_mutex);
Tejun Heo69e02c52011-03-09 19:54:27 +01001299 disk_unblock_events(disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 return 0;
1301
Tejun Heo0762b8b2008-08-25 19:56:12 +09001302 out_clear:
Tejun Heo89f97492008-11-05 10:21:06 +01001303 disk_put_part(bdev->bd_part);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 bdev->bd_disk = NULL;
Tejun Heo0762b8b2008-08-25 19:56:12 +09001305 bdev->bd_part = NULL;
Andi Kleen87192a22012-01-12 17:20:34 -08001306 bdev->bd_queue = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 if (bdev != bdev->bd_contains)
Al Viro572c4892007-10-08 13:24:05 -04001308 __blkdev_put(bdev->bd_contains, mode, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 bdev->bd_contains = NULL;
Tejun Heo0762b8b2008-08-25 19:56:12 +09001310 out_unlock_bdev:
Arjan van de Venc039e312006-03-23 03:00:28 -08001311 mutex_unlock(&bdev->bd_mutex);
Tejun Heo69e02c52011-03-09 19:54:27 +01001312 disk_unblock_events(disk);
Tejun Heo0762b8b2008-08-25 19:56:12 +09001313 put_disk(disk);
Tejun Heo523e1d32011-10-19 14:31:07 +02001314 module_put(owner);
Dan Carpenter4345cab2011-03-19 13:53:31 +01001315 out:
Tejun Heo0762b8b2008-08-25 19:56:12 +09001316 bdput(bdev);
1317
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 return ret;
1319}
1320
Tejun Heod4d77622010-11-13 11:55:18 +01001321/**
1322 * blkdev_get - open a block device
1323 * @bdev: block_device to open
1324 * @mode: FMODE_* mask
1325 * @holder: exclusive holder identifier
1326 *
1327 * Open @bdev with @mode. If @mode includes %FMODE_EXCL, @bdev is
1328 * open with exclusive access. Specifying %FMODE_EXCL with %NULL
1329 * @holder is invalid. Exclusive opens may nest for the same @holder.
1330 *
1331 * On success, the reference count of @bdev is unchanged. On failure,
1332 * @bdev is put.
1333 *
1334 * CONTEXT:
1335 * Might sleep.
1336 *
1337 * RETURNS:
1338 * 0 on success, -errno on failure.
1339 */
Tejun Heoe525fd82010-11-13 11:55:17 +01001340int blkdev_get(struct block_device *bdev, fmode_t mode, void *holder)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341{
Tejun Heoe525fd82010-11-13 11:55:17 +01001342 struct block_device *whole = NULL;
1343 int res;
1344
1345 WARN_ON_ONCE((mode & FMODE_EXCL) && !holder);
1346
1347 if ((mode & FMODE_EXCL) && holder) {
1348 whole = bd_start_claiming(bdev, holder);
1349 if (IS_ERR(whole)) {
1350 bdput(bdev);
1351 return PTR_ERR(whole);
1352 }
1353 }
1354
1355 res = __blkdev_get(bdev, mode, 0);
1356
1357 if (whole) {
Tejun Heod4dc2102011-04-21 20:54:46 +02001358 struct gendisk *disk = whole->bd_disk;
1359
Tejun Heo6a027ef2010-11-13 11:55:17 +01001360 /* finish claiming */
Tejun Heo77ea8872010-12-08 20:57:37 +01001361 mutex_lock(&bdev->bd_mutex);
Tejun Heo6a027ef2010-11-13 11:55:17 +01001362 spin_lock(&bdev_lock);
1363
Tejun Heo77ea8872010-12-08 20:57:37 +01001364 if (!res) {
Tejun Heo6a027ef2010-11-13 11:55:17 +01001365 BUG_ON(!bd_may_claim(bdev, whole, holder));
1366 /*
1367 * Note that for a whole device bd_holders
1368 * will be incremented twice, and bd_holder
1369 * will be set to bd_may_claim before being
1370 * set to holder
1371 */
1372 whole->bd_holders++;
1373 whole->bd_holder = bd_may_claim;
1374 bdev->bd_holders++;
1375 bdev->bd_holder = holder;
1376 }
1377
1378 /* tell others that we're done */
1379 BUG_ON(whole->bd_claiming != holder);
1380 whole->bd_claiming = NULL;
1381 wake_up_bit(&whole->bd_claiming, 0);
1382
1383 spin_unlock(&bdev_lock);
Tejun Heo77ea8872010-12-08 20:57:37 +01001384
1385 /*
Tejun Heod4dc2102011-04-21 20:54:46 +02001386 * Block event polling for write claims if requested. Any
1387 * write holder makes the write_holder state stick until
1388 * all are released. This is good enough and tracking
1389 * individual writeable reference is too fragile given the
1390 * way @mode is used in blkdev_get/put().
Tejun Heo77ea8872010-12-08 20:57:37 +01001391 */
Tejun Heo4c49ff32011-06-01 08:27:41 +02001392 if (!res && (mode & FMODE_WRITE) && !bdev->bd_write_holder &&
1393 (disk->flags & GENHD_FL_BLOCK_EVENTS_ON_EXCL_WRITE)) {
Tejun Heo77ea8872010-12-08 20:57:37 +01001394 bdev->bd_write_holder = true;
Tejun Heod4dc2102011-04-21 20:54:46 +02001395 disk_block_events(disk);
Tejun Heo77ea8872010-12-08 20:57:37 +01001396 }
1397
1398 mutex_unlock(&bdev->bd_mutex);
Tejun Heo6a027ef2010-11-13 11:55:17 +01001399 bdput(whole);
Tejun Heoe525fd82010-11-13 11:55:17 +01001400 }
1401
1402 return res;
NeilBrown37be4122006-12-08 02:36:16 -08001403}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404EXPORT_SYMBOL(blkdev_get);
1405
Tejun Heod4d77622010-11-13 11:55:18 +01001406/**
1407 * blkdev_get_by_path - open a block device by name
1408 * @path: path to the block device to open
1409 * @mode: FMODE_* mask
1410 * @holder: exclusive holder identifier
1411 *
1412 * Open the blockdevice described by the device file at @path. @mode
1413 * and @holder are identical to blkdev_get().
1414 *
1415 * On success, the returned block_device has reference count of one.
1416 *
1417 * CONTEXT:
1418 * Might sleep.
1419 *
1420 * RETURNS:
1421 * Pointer to block_device on success, ERR_PTR(-errno) on failure.
1422 */
1423struct block_device *blkdev_get_by_path(const char *path, fmode_t mode,
1424 void *holder)
1425{
1426 struct block_device *bdev;
1427 int err;
1428
1429 bdev = lookup_bdev(path);
1430 if (IS_ERR(bdev))
1431 return bdev;
1432
1433 err = blkdev_get(bdev, mode, holder);
1434 if (err)
1435 return ERR_PTR(err);
1436
Chuck Ebberte51900f2011-02-16 18:11:53 -05001437 if ((mode & FMODE_WRITE) && bdev_read_only(bdev)) {
1438 blkdev_put(bdev, mode);
1439 return ERR_PTR(-EACCES);
1440 }
1441
Tejun Heod4d77622010-11-13 11:55:18 +01001442 return bdev;
1443}
1444EXPORT_SYMBOL(blkdev_get_by_path);
1445
1446/**
1447 * blkdev_get_by_dev - open a block device by device number
1448 * @dev: device number of block device to open
1449 * @mode: FMODE_* mask
1450 * @holder: exclusive holder identifier
1451 *
1452 * Open the blockdevice described by device number @dev. @mode and
1453 * @holder are identical to blkdev_get().
1454 *
1455 * Use it ONLY if you really do not have anything better - i.e. when
1456 * you are behind a truly sucky interface and all you are given is a
1457 * device number. _Never_ to be used for internal purposes. If you
1458 * ever need it - reconsider your API.
1459 *
1460 * On success, the returned block_device has reference count of one.
1461 *
1462 * CONTEXT:
1463 * Might sleep.
1464 *
1465 * RETURNS:
1466 * Pointer to block_device on success, ERR_PTR(-errno) on failure.
1467 */
1468struct block_device *blkdev_get_by_dev(dev_t dev, fmode_t mode, void *holder)
1469{
1470 struct block_device *bdev;
1471 int err;
1472
1473 bdev = bdget(dev);
1474 if (!bdev)
1475 return ERR_PTR(-ENOMEM);
1476
1477 err = blkdev_get(bdev, mode, holder);
1478 if (err)
1479 return ERR_PTR(err);
1480
1481 return bdev;
1482}
1483EXPORT_SYMBOL(blkdev_get_by_dev);
1484
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485static int blkdev_open(struct inode * inode, struct file * filp)
1486{
1487 struct block_device *bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488
1489 /*
1490 * Preserve backwards compatibility and allow large file access
1491 * even if userspace doesn't ask for it explicitly. Some mkfs
1492 * binary needs it. We might want to drop this workaround
1493 * during an unstable branch.
1494 */
1495 filp->f_flags |= O_LARGEFILE;
1496
Al Viro572c4892007-10-08 13:24:05 -04001497 if (filp->f_flags & O_NDELAY)
1498 filp->f_mode |= FMODE_NDELAY;
1499 if (filp->f_flags & O_EXCL)
1500 filp->f_mode |= FMODE_EXCL;
1501 if ((filp->f_flags & O_ACCMODE) == 3)
1502 filp->f_mode |= FMODE_WRITE_IOCTL;
1503
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 bdev = bd_acquire(inode);
Pavel Emelianov6a2aae02006-10-28 10:38:33 -07001505 if (bdev == NULL)
1506 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507
Al Viro572c4892007-10-08 13:24:05 -04001508 filp->f_mapping = bdev->bd_inode->i_mapping;
1509
Tejun Heoe525fd82010-11-13 11:55:17 +01001510 return blkdev_get(bdev, filp->f_mode, filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511}
1512
Al Viro4385bab2013-05-05 22:11:03 -04001513static void __blkdev_put(struct block_device *bdev, fmode_t mode, int for_part)
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001514{
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001515 struct gendisk *disk = bdev->bd_disk;
NeilBrown37be4122006-12-08 02:36:16 -08001516 struct block_device *victim = NULL;
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001517
NeilBrown6796bf52006-12-08 02:36:16 -08001518 mutex_lock_nested(&bdev->bd_mutex, for_part);
NeilBrown37be4122006-12-08 02:36:16 -08001519 if (for_part)
1520 bdev->bd_part_count--;
1521
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001522 if (!--bdev->bd_openers) {
Tejun Heo6a027ef2010-11-13 11:55:17 +01001523 WARN_ON_ONCE(bdev->bd_holders);
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001524 sync_blockdev(bdev);
1525 kill_bdev(bdev);
Ilya Dryomov43d1c0e2015-11-20 22:22:34 +01001526
Vivek Goyaldbd3ca52015-11-09 09:23:40 -07001527 bdev_write_inode(bdev);
Ilya Dryomov43d1c0e2015-11-20 22:22:34 +01001528 /*
1529 * Detaching bdev inode from its wb in __destroy_inode()
1530 * is too late: the queue which embeds its bdi (along with
1531 * root wb) can be gone as soon as we put_disk() below.
1532 */
1533 inode_detach_wb(bdev->bd_inode);
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001534 }
1535 if (bdev->bd_contains == bdev) {
1536 if (disk->fops->release)
Al Virodb2a1442013-05-05 21:52:57 -04001537 disk->fops->release(disk, mode);
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001538 }
1539 if (!bdev->bd_openers) {
1540 struct module *owner = disk->fops->owner;
1541
Tejun Heo0762b8b2008-08-25 19:56:12 +09001542 disk_put_part(bdev->bd_part);
1543 bdev->bd_part = NULL;
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001544 bdev->bd_disk = NULL;
NeilBrown37be4122006-12-08 02:36:16 -08001545 if (bdev != bdev->bd_contains)
1546 victim = bdev->bd_contains;
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001547 bdev->bd_contains = NULL;
Tejun Heo523e1d32011-10-19 14:31:07 +02001548
1549 put_disk(disk);
1550 module_put(owner);
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001551 }
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001552 mutex_unlock(&bdev->bd_mutex);
1553 bdput(bdev);
NeilBrown37be4122006-12-08 02:36:16 -08001554 if (victim)
Al Viro9a1c3542008-02-22 20:40:24 -05001555 __blkdev_put(victim, mode, 1);
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001556}
1557
Al Viro4385bab2013-05-05 22:11:03 -04001558void blkdev_put(struct block_device *bdev, fmode_t mode)
NeilBrown37be4122006-12-08 02:36:16 -08001559{
Tejun Heo85ef06d2011-07-01 16:17:47 +02001560 mutex_lock(&bdev->bd_mutex);
1561
Tejun Heoe525fd82010-11-13 11:55:17 +01001562 if (mode & FMODE_EXCL) {
Tejun Heo6a027ef2010-11-13 11:55:17 +01001563 bool bdev_free;
1564
1565 /*
1566 * Release a claim on the device. The holder fields
1567 * are protected with bdev_lock. bd_mutex is to
1568 * synchronize disk_holder unlinking.
1569 */
Tejun Heo6a027ef2010-11-13 11:55:17 +01001570 spin_lock(&bdev_lock);
1571
1572 WARN_ON_ONCE(--bdev->bd_holders < 0);
1573 WARN_ON_ONCE(--bdev->bd_contains->bd_holders < 0);
1574
1575 /* bd_contains might point to self, check in a separate step */
1576 if ((bdev_free = !bdev->bd_holders))
1577 bdev->bd_holder = NULL;
1578 if (!bdev->bd_contains->bd_holders)
1579 bdev->bd_contains->bd_holder = NULL;
1580
1581 spin_unlock(&bdev_lock);
1582
Tejun Heo77ea8872010-12-08 20:57:37 +01001583 /*
1584 * If this was the last claim, remove holder link and
1585 * unblock evpoll if it was a write holder.
1586 */
Tejun Heo85ef06d2011-07-01 16:17:47 +02001587 if (bdev_free && bdev->bd_write_holder) {
1588 disk_unblock_events(bdev->bd_disk);
1589 bdev->bd_write_holder = false;
Tejun Heo77ea8872010-12-08 20:57:37 +01001590 }
Tejun Heo69362172011-03-09 19:54:27 +01001591 }
Tejun Heo77ea8872010-12-08 20:57:37 +01001592
Tejun Heo85ef06d2011-07-01 16:17:47 +02001593 /*
1594 * Trigger event checking and tell drivers to flush MEDIA_CHANGE
1595 * event. This is to ensure detection of media removal commanded
1596 * from userland - e.g. eject(1).
1597 */
1598 disk_flush_events(bdev->bd_disk, DISK_EVENT_MEDIA_CHANGE);
1599
1600 mutex_unlock(&bdev->bd_mutex);
1601
Al Viro4385bab2013-05-05 22:11:03 -04001602 __blkdev_put(bdev, mode, 0);
NeilBrown37be4122006-12-08 02:36:16 -08001603}
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001604EXPORT_SYMBOL(blkdev_put);
1605
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606static int blkdev_close(struct inode * inode, struct file * filp)
1607{
Dan Williams4ebb16c2015-10-28 07:48:19 +09001608 struct block_device *bdev = I_BDEV(bdev_file_inode(filp));
Al Viro4385bab2013-05-05 22:11:03 -04001609 blkdev_put(bdev, filp->f_mode);
1610 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611}
1612
Arnd Bergmannbb93e3a2005-06-23 00:10:15 -07001613static long block_ioctl(struct file *file, unsigned cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614{
Dan Williams4ebb16c2015-10-28 07:48:19 +09001615 struct block_device *bdev = I_BDEV(bdev_file_inode(file));
Al Viro56b26ad2008-09-19 03:17:36 -04001616 fmode_t mode = file->f_mode;
Christoph Hellwigfd4ce1a2008-11-05 14:58:42 +01001617
1618 /*
1619 * O_NDELAY can be altered using fcntl(.., F_SETFL, ..), so we have
1620 * to updated it before every ioctl.
1621 */
Al Viro56b26ad2008-09-19 03:17:36 -04001622 if (file->f_flags & O_NDELAY)
Christoph Hellwigfd4ce1a2008-11-05 14:58:42 +01001623 mode |= FMODE_NDELAY;
1624 else
1625 mode &= ~FMODE_NDELAY;
1626
Al Viro56b26ad2008-09-19 03:17:36 -04001627 return blkdev_ioctl(bdev, mode, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628}
1629
Theodore Ts'o87d8fe12009-01-03 09:47:09 -05001630/*
Christoph Hellwigeef99382009-08-20 17:43:41 +02001631 * Write data to the block device. Only intended for the block device itself
1632 * and the raw driver which basically is a fake block device.
1633 *
1634 * Does not take i_mutex for the write and thus is not for general purpose
1635 * use.
1636 */
Al Viro1456c0a2014-04-03 03:21:50 -04001637ssize_t blkdev_write_iter(struct kiocb *iocb, struct iov_iter *from)
Christoph Hellwigeef99382009-08-20 17:43:41 +02001638{
1639 struct file *file = iocb->ki_filp;
Dan Williams4ebb16c2015-10-28 07:48:19 +09001640 struct inode *bd_inode = bdev_file_inode(file);
Al Viro7ec7b942015-04-07 11:35:14 -04001641 loff_t size = i_size_read(bd_inode);
Jianpeng Ma53362a02012-08-02 09:50:39 +02001642 struct blk_plug plug;
Christoph Hellwigeef99382009-08-20 17:43:41 +02001643 ssize_t ret;
Al Viro5f380c72015-04-07 11:28:12 -04001644
Al Viro7ec7b942015-04-07 11:35:14 -04001645 if (bdev_read_only(I_BDEV(bd_inode)))
1646 return -EPERM;
Al Viro5f380c72015-04-07 11:28:12 -04001647
Al Viro7ec7b942015-04-07 11:35:14 -04001648 if (!iov_iter_count(from))
Al Viro5f380c72015-04-07 11:28:12 -04001649 return 0;
1650
Al Viro7ec7b942015-04-07 11:35:14 -04001651 if (iocb->ki_pos >= size)
1652 return -ENOSPC;
1653
1654 iov_iter_truncate(from, size - iocb->ki_pos);
Christoph Hellwigeef99382009-08-20 17:43:41 +02001655
Jianpeng Ma53362a02012-08-02 09:50:39 +02001656 blk_start_plug(&plug);
Al Viro1456c0a2014-04-03 03:21:50 -04001657 ret = __generic_file_write_iter(iocb, from);
Christoph Hellwig02afc272013-09-04 15:04:40 +02001658 if (ret > 0) {
Christoph Hellwigeef99382009-08-20 17:43:41 +02001659 ssize_t err;
Al Viro1456c0a2014-04-03 03:21:50 -04001660 err = generic_write_sync(file, iocb->ki_pos - ret, ret);
Dan Carpenter45d4f852014-04-03 14:47:17 -07001661 if (err < 0)
Christoph Hellwigeef99382009-08-20 17:43:41 +02001662 ret = err;
1663 }
Jianpeng Ma53362a02012-08-02 09:50:39 +02001664 blk_finish_plug(&plug);
Christoph Hellwigeef99382009-08-20 17:43:41 +02001665 return ret;
1666}
Al Viro1456c0a2014-04-03 03:21:50 -04001667EXPORT_SYMBOL_GPL(blkdev_write_iter);
Christoph Hellwigeef99382009-08-20 17:43:41 +02001668
David Jefferyb2de5252014-09-29 10:21:10 -04001669ssize_t blkdev_read_iter(struct kiocb *iocb, struct iov_iter *to)
Linus Torvalds684c9aa2012-12-07 16:48:39 -08001670{
1671 struct file *file = iocb->ki_filp;
Dan Williams4ebb16c2015-10-28 07:48:19 +09001672 struct inode *bd_inode = bdev_file_inode(file);
Linus Torvalds684c9aa2012-12-07 16:48:39 -08001673 loff_t size = i_size_read(bd_inode);
Al Viroa8860382014-04-02 20:02:21 -04001674 loff_t pos = iocb->ki_pos;
Linus Torvalds684c9aa2012-12-07 16:48:39 -08001675
1676 if (pos >= size)
1677 return 0;
1678
1679 size -= pos;
Al Viroa8860382014-04-02 20:02:21 -04001680 iov_iter_truncate(to, size);
1681 return generic_file_read_iter(iocb, to);
Linus Torvalds684c9aa2012-12-07 16:48:39 -08001682}
David Jefferyb2de5252014-09-29 10:21:10 -04001683EXPORT_SYMBOL_GPL(blkdev_read_iter);
Linus Torvalds684c9aa2012-12-07 16:48:39 -08001684
Christoph Hellwigeef99382009-08-20 17:43:41 +02001685/*
Theodore Ts'o87d8fe12009-01-03 09:47:09 -05001686 * Try to release a page associated with block device when the system
1687 * is under memory pressure.
1688 */
1689static int blkdev_releasepage(struct page *page, gfp_t wait)
1690{
1691 struct super_block *super = BDEV_I(page->mapping->host)->bdev.bd_super;
1692
1693 if (super && super->s_op->bdev_try_to_free_page)
1694 return super->s_op->bdev_try_to_free_page(super, page, wait);
1695
1696 return try_to_free_buffers(page);
1697}
1698
Adrian Bunk4c54ac62008-02-18 13:48:31 +01001699static const struct address_space_operations def_blk_aops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 .readpage = blkdev_readpage,
Akinobu Mita447f05b2014-10-09 15:26:58 -07001701 .readpages = blkdev_readpages,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 .writepage = blkdev_writepage,
Nick Piggin6272b5a2007-10-16 01:25:04 -07001703 .write_begin = blkdev_write_begin,
1704 .write_end = blkdev_write_end,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 .writepages = generic_writepages,
Theodore Ts'o87d8fe12009-01-03 09:47:09 -05001706 .releasepage = blkdev_releasepage,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 .direct_IO = blkdev_direct_IO,
Mel Gormanb4597222013-07-03 15:02:05 -07001708 .is_dirty_writeback = buffer_check_dirty_writeback,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709};
1710
Dan Williams5a023cd2015-11-30 10:20:29 -08001711#ifdef CONFIG_FS_DAX
1712/*
1713 * In the raw block case we do not need to contend with truncation nor
1714 * unwritten file extents. Without those concerns there is no need for
1715 * additional locking beyond the mmap_sem context that these routines
1716 * are already executing under.
1717 *
1718 * Note, there is no protection if the block device is dynamically
1719 * resized (partition grow/shrink) during a fault. A stable block device
1720 * size is already not enforced in the blkdev_direct_IO path.
1721 *
1722 * For DAX, it is the responsibility of the block device driver to
1723 * ensure the whole-disk device size is stable while requests are in
1724 * flight.
1725 *
1726 * Finally, unlike the filemap_page_mkwrite() case there is no
1727 * filesystem superblock to sync against freezing. We still include a
1728 * pfn_mkwrite callback for dax drivers to receive write fault
1729 * notifications.
1730 */
1731static int blkdev_dax_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
1732{
1733 return __dax_fault(vma, vmf, blkdev_get_block, NULL);
1734}
1735
1736static int blkdev_dax_pmd_fault(struct vm_area_struct *vma, unsigned long addr,
1737 pmd_t *pmd, unsigned int flags)
1738{
1739 return __dax_pmd_fault(vma, addr, pmd, flags, blkdev_get_block, NULL);
1740}
1741
1742static void blkdev_vm_open(struct vm_area_struct *vma)
1743{
1744 struct inode *bd_inode = bdev_file_inode(vma->vm_file);
1745 struct block_device *bdev = I_BDEV(bd_inode);
1746
1747 mutex_lock(&bd_inode->i_mutex);
1748 bdev->bd_map_count++;
1749 mutex_unlock(&bd_inode->i_mutex);
1750}
1751
1752static void blkdev_vm_close(struct vm_area_struct *vma)
1753{
1754 struct inode *bd_inode = bdev_file_inode(vma->vm_file);
1755 struct block_device *bdev = I_BDEV(bd_inode);
1756
1757 mutex_lock(&bd_inode->i_mutex);
1758 bdev->bd_map_count--;
1759 mutex_unlock(&bd_inode->i_mutex);
1760}
1761
1762static const struct vm_operations_struct blkdev_dax_vm_ops = {
1763 .open = blkdev_vm_open,
1764 .close = blkdev_vm_close,
1765 .fault = blkdev_dax_fault,
1766 .pmd_fault = blkdev_dax_pmd_fault,
1767 .pfn_mkwrite = blkdev_dax_fault,
1768};
1769
1770static const struct vm_operations_struct blkdev_default_vm_ops = {
1771 .open = blkdev_vm_open,
1772 .close = blkdev_vm_close,
1773 .fault = filemap_fault,
1774 .map_pages = filemap_map_pages,
1775};
1776
1777static int blkdev_mmap(struct file *file, struct vm_area_struct *vma)
1778{
1779 struct inode *bd_inode = bdev_file_inode(file);
1780 struct block_device *bdev = I_BDEV(bd_inode);
1781
1782 file_accessed(file);
1783 mutex_lock(&bd_inode->i_mutex);
1784 bdev->bd_map_count++;
1785 if (IS_DAX(bd_inode)) {
1786 vma->vm_ops = &blkdev_dax_vm_ops;
1787 vma->vm_flags |= VM_MIXEDMAP | VM_HUGEPAGE;
1788 } else {
1789 vma->vm_ops = &blkdev_default_vm_ops;
1790 }
1791 mutex_unlock(&bd_inode->i_mutex);
1792
1793 return 0;
1794}
1795#else
1796#define blkdev_mmap generic_file_mmap
1797#endif
1798
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08001799const struct file_operations def_blk_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800 .open = blkdev_open,
1801 .release = blkdev_close,
1802 .llseek = block_llseek,
Al Viroa8860382014-04-02 20:02:21 -04001803 .read_iter = blkdev_read_iter,
Al Viro1456c0a2014-04-03 03:21:50 -04001804 .write_iter = blkdev_write_iter,
Dan Williams5a023cd2015-11-30 10:20:29 -08001805 .mmap = blkdev_mmap,
Andrew Mortonb1dd3b22010-04-06 14:35:00 -07001806 .fsync = blkdev_fsync,
Arnd Bergmannbb93e3a2005-06-23 00:10:15 -07001807 .unlocked_ioctl = block_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808#ifdef CONFIG_COMPAT
1809 .compat_ioctl = compat_blkdev_ioctl,
1810#endif
Linus Torvalds1e8b3332012-11-29 10:49:50 -08001811 .splice_read = generic_file_splice_read,
Al Viro8d020762014-04-05 04:27:08 -04001812 .splice_write = iter_file_splice_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813};
1814
1815int ioctl_by_bdev(struct block_device *bdev, unsigned cmd, unsigned long arg)
1816{
1817 int res;
1818 mm_segment_t old_fs = get_fs();
1819 set_fs(KERNEL_DS);
Al Viro56b26ad2008-09-19 03:17:36 -04001820 res = blkdev_ioctl(bdev, 0, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 set_fs(old_fs);
1822 return res;
1823}
1824
1825EXPORT_SYMBOL(ioctl_by_bdev);
1826
1827/**
1828 * lookup_bdev - lookup a struct block_device by name
Randy Dunlap94e29592009-01-06 14:41:15 -08001829 * @pathname: special file representing the block device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 *
Randy Dunlap57d1b532008-10-09 10:42:38 +02001831 * Get a reference to the blockdevice at @pathname in the current
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 * namespace if possible and return it. Return ERR_PTR(error)
1833 * otherwise.
1834 */
Al Viro421748e2008-08-02 01:04:36 -04001835struct block_device *lookup_bdev(const char *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836{
1837 struct block_device *bdev;
1838 struct inode *inode;
Al Viro421748e2008-08-02 01:04:36 -04001839 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840 int error;
1841
Al Viro421748e2008-08-02 01:04:36 -04001842 if (!pathname || !*pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 return ERR_PTR(-EINVAL);
1844
Al Viro421748e2008-08-02 01:04:36 -04001845 error = kern_path(pathname, LOOKUP_FOLLOW, &path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 if (error)
1847 return ERR_PTR(error);
1848
David Howellsbb6687342015-03-17 22:26:21 +00001849 inode = d_backing_inode(path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850 error = -ENOTBLK;
1851 if (!S_ISBLK(inode->i_mode))
1852 goto fail;
1853 error = -EACCES;
Al Viro421748e2008-08-02 01:04:36 -04001854 if (path.mnt->mnt_flags & MNT_NODEV)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 goto fail;
1856 error = -ENOMEM;
1857 bdev = bd_acquire(inode);
1858 if (!bdev)
1859 goto fail;
1860out:
Al Viro421748e2008-08-02 01:04:36 -04001861 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 return bdev;
1863fail:
1864 bdev = ERR_PTR(error);
1865 goto out;
1866}
Al Virod5686b42008-08-01 05:00:11 -04001867EXPORT_SYMBOL(lookup_bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868
NeilBrown93b270f2011-02-24 17:25:47 +11001869int __invalidate_device(struct block_device *bdev, bool kill_dirty)
David Howellsb71e8a42006-08-29 19:06:11 +01001870{
1871 struct super_block *sb = get_super(bdev);
1872 int res = 0;
1873
1874 if (sb) {
1875 /*
1876 * no need to lock the super, get_super holds the
1877 * read mutex so the filesystem cannot go away
1878 * under us (->put_super runs with the write lock
1879 * hold).
1880 */
1881 shrink_dcache_sb(sb);
NeilBrown93b270f2011-02-24 17:25:47 +11001882 res = invalidate_inodes(sb, kill_dirty);
David Howellsb71e8a42006-08-29 19:06:11 +01001883 drop_super(sb);
1884 }
Peter Zijlstraf98393a2007-05-06 14:49:54 -07001885 invalidate_bdev(bdev);
David Howellsb71e8a42006-08-29 19:06:11 +01001886 return res;
1887}
1888EXPORT_SYMBOL(__invalidate_device);
Jan Kara5c0d6b62012-07-03 16:45:31 +02001889
1890void iterate_bdevs(void (*func)(struct block_device *, void *), void *arg)
1891{
1892 struct inode *inode, *old_inode = NULL;
1893
Dave Chinner74278da2015-03-04 12:37:22 -05001894 spin_lock(&blockdev_superblock->s_inode_list_lock);
Jan Kara5c0d6b62012-07-03 16:45:31 +02001895 list_for_each_entry(inode, &blockdev_superblock->s_inodes, i_sb_list) {
1896 struct address_space *mapping = inode->i_mapping;
1897
1898 spin_lock(&inode->i_lock);
1899 if (inode->i_state & (I_FREEING|I_WILL_FREE|I_NEW) ||
1900 mapping->nrpages == 0) {
1901 spin_unlock(&inode->i_lock);
1902 continue;
1903 }
1904 __iget(inode);
1905 spin_unlock(&inode->i_lock);
Dave Chinner74278da2015-03-04 12:37:22 -05001906 spin_unlock(&blockdev_superblock->s_inode_list_lock);
Jan Kara5c0d6b62012-07-03 16:45:31 +02001907 /*
1908 * We hold a reference to 'inode' so it couldn't have been
1909 * removed from s_inodes list while we dropped the
Dave Chinner74278da2015-03-04 12:37:22 -05001910 * s_inode_list_lock We cannot iput the inode now as we can
Jan Kara5c0d6b62012-07-03 16:45:31 +02001911 * be holding the last reference and we cannot iput it under
Dave Chinner74278da2015-03-04 12:37:22 -05001912 * s_inode_list_lock. So we keep the reference and iput it
Jan Kara5c0d6b62012-07-03 16:45:31 +02001913 * later.
1914 */
1915 iput(old_inode);
1916 old_inode = inode;
1917
1918 func(I_BDEV(inode), arg);
1919
Dave Chinner74278da2015-03-04 12:37:22 -05001920 spin_lock(&blockdev_superblock->s_inode_list_lock);
Jan Kara5c0d6b62012-07-03 16:45:31 +02001921 }
Dave Chinner74278da2015-03-04 12:37:22 -05001922 spin_unlock(&blockdev_superblock->s_inode_list_lock);
Jan Kara5c0d6b62012-07-03 16:45:31 +02001923 iput(old_inode);
1924}