blob: 431b6a04ebfdb6783e479c14fe25fcfe0253c6ff [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>
17#include <linux/module.h>
18#include <linux/blkpg.h>
Muthu Kumarb502bd12012-03-23 15:01:50 -070019#include <linux/magic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/buffer_head.h>
Al Viroff01bb482011-09-16 02:31:11 -040021#include <linux/swap.h>
Nick Piggin585d3bc2009-02-25 10:44:19 +010022#include <linux/pagevec.h>
David Howells811d7362006-08-29 19:06:09 +010023#include <linux/writeback.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/mpage.h>
25#include <linux/mount.h>
26#include <linux/uio.h>
27#include <linux/namei.h>
Vignesh Babu BM1368c4f2007-05-08 00:24:32 -070028#include <linux/log2.h>
Al Viroff01bb482011-09-16 02:31:11 -040029#include <linux/cleancache.h>
Kent Overstreeta27bb332013-05-07 16:19:08 -070030#include <linux/aio.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <asm/uaccess.h>
David Howells07f3f052006-09-30 20:52:18 +020032#include "internal.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
34struct bdev_inode {
35 struct block_device bdev;
36 struct inode vfs_inode;
37};
38
Adrian Bunk4c54ac62008-02-18 13:48:31 +010039static const struct address_space_operations def_blk_aops;
40
Linus Torvalds1da177e2005-04-16 15:20:36 -070041static inline struct bdev_inode *BDEV_I(struct inode *inode)
42{
43 return container_of(inode, struct bdev_inode, vfs_inode);
44}
45
46inline struct block_device *I_BDEV(struct inode *inode)
47{
48 return &BDEV_I(inode)->bdev;
49}
Linus Torvalds1da177e2005-04-16 15:20:36 -070050EXPORT_SYMBOL(I_BDEV);
51
Dave Chinnera5491e02010-10-21 11:49:26 +110052/*
Christoph Hellwigf758eea2011-04-21 18:19:44 -060053 * Move the inode from its current bdi to a new bdi. If the inode is dirty we
54 * need to move it onto the dirty list of @dst so that the inode is always on
55 * the right list.
Dave Chinnera5491e02010-10-21 11:49:26 +110056 */
57static void bdev_inode_switch_bdi(struct inode *inode,
58 struct backing_dev_info *dst)
59{
Christoph Hellwigf758eea2011-04-21 18:19:44 -060060 struct backing_dev_info *old = inode->i_data.backing_dev_info;
61
62 if (unlikely(dst == old)) /* deadlock avoidance */
63 return;
64 bdi_lock_two(&old->wb, &dst->wb);
Dave Chinner250df6e2011-03-22 22:23:36 +110065 spin_lock(&inode->i_lock);
Dave Chinnera5491e02010-10-21 11:49:26 +110066 inode->i_data.backing_dev_info = dst;
67 if (inode->i_state & I_DIRTY)
Nick Piggin7ccf19a2010-10-21 11:49:30 +110068 list_move(&inode->i_wb_list, &dst->wb.b_dirty);
Dave Chinner250df6e2011-03-22 22:23:36 +110069 spin_unlock(&inode->i_lock);
Christoph Hellwigf758eea2011-04-21 18:19:44 -060070 spin_unlock(&old->wb.list_lock);
71 spin_unlock(&dst->wb.list_lock);
Dave Chinnera5491e02010-10-21 11:49:26 +110072}
73
Peter Zijlstraf9a14392007-05-06 14:49:55 -070074/* Kill _all_ buffers and pagecache , dirty or not.. */
Al Viroff01bb482011-09-16 02:31:11 -040075void kill_bdev(struct block_device *bdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070076{
Al Viroff01bb482011-09-16 02:31:11 -040077 struct address_space *mapping = bdev->bd_inode->i_mapping;
78
79 if (mapping->nrpages == 0)
Peter Zijlstraf9a14392007-05-06 14:49:55 -070080 return;
Al Viroff01bb482011-09-16 02:31:11 -040081
Peter Zijlstraf9a14392007-05-06 14:49:55 -070082 invalidate_bh_lrus();
Al Viroff01bb482011-09-16 02:31:11 -040083 truncate_inode_pages(mapping, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084}
Al Viroff01bb482011-09-16 02:31:11 -040085EXPORT_SYMBOL(kill_bdev);
86
87/* Invalidate clean unused buffers and pagecache. */
88void invalidate_bdev(struct block_device *bdev)
89{
90 struct address_space *mapping = bdev->bd_inode->i_mapping;
91
92 if (mapping->nrpages == 0)
93 return;
94
95 invalidate_bh_lrus();
96 lru_add_drain_all(); /* make sure all lru add caches are flushed */
97 invalidate_mapping_pages(mapping, 0, -1);
98 /* 99% of the time, we don't need to flush the cleancache on the bdev.
99 * But, for the strange corners, lets be cautious
100 */
Dan Magenheimer31677602011-09-21 11:56:28 -0400101 cleancache_invalidate_inode(mapping);
Al Viroff01bb482011-09-16 02:31:11 -0400102}
103EXPORT_SYMBOL(invalidate_bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
105int set_blocksize(struct block_device *bdev, int size)
106{
107 /* Size must be a power of two, and between 512 and PAGE_SIZE */
Vignesh Babu BM1368c4f2007-05-08 00:24:32 -0700108 if (size > PAGE_SIZE || size < 512 || !is_power_of_2(size))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 return -EINVAL;
110
111 /* Size cannot be smaller than the size supported by the device */
Martin K. Petersene1defc42009-05-22 17:17:49 -0400112 if (size < bdev_logical_block_size(bdev))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 return -EINVAL;
114
115 /* Don't change the size if it is same as current */
116 if (bdev->bd_block_size != size) {
117 sync_blockdev(bdev);
118 bdev->bd_block_size = size;
119 bdev->bd_inode->i_blkbits = blksize_bits(size);
120 kill_bdev(bdev);
121 }
122 return 0;
123}
124
125EXPORT_SYMBOL(set_blocksize);
126
127int sb_set_blocksize(struct super_block *sb, int size)
128{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 if (set_blocksize(sb->s_bdev, size))
130 return 0;
131 /* If we get here, we know size is power of two
132 * and it's value is between 512 and PAGE_SIZE */
133 sb->s_blocksize = size;
Coywolf Qi Hunt38885bd2006-03-24 03:18:05 -0800134 sb->s_blocksize_bits = blksize_bits(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 return sb->s_blocksize;
136}
137
138EXPORT_SYMBOL(sb_set_blocksize);
139
140int sb_min_blocksize(struct super_block *sb, int size)
141{
Martin K. Petersene1defc42009-05-22 17:17:49 -0400142 int minsize = bdev_logical_block_size(sb->s_bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 if (size < minsize)
144 size = minsize;
145 return sb_set_blocksize(sb, size);
146}
147
148EXPORT_SYMBOL(sb_min_blocksize);
149
150static int
151blkdev_get_block(struct inode *inode, sector_t iblock,
152 struct buffer_head *bh, int create)
153{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 bh->b_bdev = I_BDEV(inode);
155 bh->b_blocknr = iblock;
156 set_buffer_mapped(bh);
157 return 0;
158}
159
Andrew Mortonb2e895d2007-02-03 01:14:01 -0800160static ssize_t
161blkdev_direct_IO(int rw, struct kiocb *iocb, const struct iovec *iov,
162 loff_t offset, unsigned long nr_segs)
163{
164 struct file *file = iocb->ki_filp;
165 struct inode *inode = file->f_mapping->host;
166
Christoph Hellwigeafdc7d2010-06-04 11:29:53 +0200167 return __blockdev_direct_IO(rw, iocb, inode, I_BDEV(inode), iov, offset,
Linus Torvaldsbbec02702012-11-29 12:31:52 -0800168 nr_segs, blkdev_get_block, NULL, NULL, 0);
Andrew Mortonb2e895d2007-02-03 01:14:01 -0800169}
170
Jan Kara5cee5812009-04-27 16:43:51 +0200171int __sync_blockdev(struct block_device *bdev, int wait)
172{
173 if (!bdev)
174 return 0;
175 if (!wait)
176 return filemap_flush(bdev->bd_inode->i_mapping);
177 return filemap_write_and_wait(bdev->bd_inode->i_mapping);
178}
179
Nick Piggin585d3bc2009-02-25 10:44:19 +0100180/*
181 * Write out and wait upon all the dirty data associated with a block
182 * device via its mapping. Does not take the superblock lock.
183 */
184int sync_blockdev(struct block_device *bdev)
185{
Jan Kara5cee5812009-04-27 16:43:51 +0200186 return __sync_blockdev(bdev, 1);
Nick Piggin585d3bc2009-02-25 10:44:19 +0100187}
188EXPORT_SYMBOL(sync_blockdev);
189
190/*
191 * Write out and wait upon all dirty data associated with this
192 * device. Filesystem data as well as the underlying block
193 * device. Takes the superblock lock.
194 */
195int fsync_bdev(struct block_device *bdev)
196{
197 struct super_block *sb = get_super(bdev);
198 if (sb) {
Jan Kara60b06802009-04-27 16:43:53 +0200199 int res = sync_filesystem(sb);
Nick Piggin585d3bc2009-02-25 10:44:19 +0100200 drop_super(sb);
201 return res;
202 }
203 return sync_blockdev(bdev);
204}
Al Viro47e44912009-04-01 07:07:16 -0400205EXPORT_SYMBOL(fsync_bdev);
Nick Piggin585d3bc2009-02-25 10:44:19 +0100206
207/**
208 * freeze_bdev -- lock a filesystem and force it into a consistent state
209 * @bdev: blockdevice to lock
210 *
Nick Piggin585d3bc2009-02-25 10:44:19 +0100211 * If a superblock is found on this device, we take the s_umount semaphore
212 * on it to make sure nobody unmounts until the snapshot creation is done.
213 * The reference counter (bd_fsfreeze_count) guarantees that only the last
214 * unfreeze process can unfreeze the frozen filesystem actually when multiple
215 * freeze requests arrive simultaneously. It counts up in freeze_bdev() and
216 * count down in thaw_bdev(). When it becomes 0, thaw_bdev() will unfreeze
217 * actually.
218 */
219struct super_block *freeze_bdev(struct block_device *bdev)
220{
221 struct super_block *sb;
222 int error = 0;
223
224 mutex_lock(&bdev->bd_fsfreeze_mutex);
Christoph Hellwig45042302009-08-03 23:28:35 +0200225 if (++bdev->bd_fsfreeze_count > 1) {
226 /*
227 * We don't even need to grab a reference - the first call
228 * to freeze_bdev grab an active reference and only the last
229 * thaw_bdev drops it.
230 */
Nick Piggin585d3bc2009-02-25 10:44:19 +0100231 sb = get_super(bdev);
Christoph Hellwig45042302009-08-03 23:28:35 +0200232 drop_super(sb);
Nick Piggin585d3bc2009-02-25 10:44:19 +0100233 mutex_unlock(&bdev->bd_fsfreeze_mutex);
234 return sb;
235 }
Nick Piggin585d3bc2009-02-25 10:44:19 +0100236
Christoph Hellwig45042302009-08-03 23:28:35 +0200237 sb = get_active_super(bdev);
238 if (!sb)
239 goto out;
Josef Bacik18e9e512010-03-23 10:34:56 -0400240 error = freeze_super(sb);
241 if (error) {
242 deactivate_super(sb);
243 bdev->bd_fsfreeze_count--;
Christoph Hellwig45042302009-08-03 23:28:35 +0200244 mutex_unlock(&bdev->bd_fsfreeze_mutex);
Josef Bacik18e9e512010-03-23 10:34:56 -0400245 return ERR_PTR(error);
Nick Piggin585d3bc2009-02-25 10:44:19 +0100246 }
Josef Bacik18e9e512010-03-23 10:34:56 -0400247 deactivate_super(sb);
Christoph Hellwig45042302009-08-03 23:28:35 +0200248 out:
Nick Piggin585d3bc2009-02-25 10:44:19 +0100249 sync_blockdev(bdev);
250 mutex_unlock(&bdev->bd_fsfreeze_mutex);
Christoph Hellwig4fadd7b2009-08-03 23:28:06 +0200251 return sb; /* thaw_bdev releases s->s_umount */
Nick Piggin585d3bc2009-02-25 10:44:19 +0100252}
253EXPORT_SYMBOL(freeze_bdev);
254
255/**
256 * thaw_bdev -- unlock filesystem
257 * @bdev: blockdevice to unlock
258 * @sb: associated superblock
259 *
260 * Unlocks the filesystem and marks it writeable again after freeze_bdev().
261 */
262int thaw_bdev(struct block_device *bdev, struct super_block *sb)
263{
Christoph Hellwig45042302009-08-03 23:28:35 +0200264 int error = -EINVAL;
Nick Piggin585d3bc2009-02-25 10:44:19 +0100265
266 mutex_lock(&bdev->bd_fsfreeze_mutex);
Christoph Hellwig45042302009-08-03 23:28:35 +0200267 if (!bdev->bd_fsfreeze_count)
Josef Bacik18e9e512010-03-23 10:34:56 -0400268 goto out;
Nick Piggin585d3bc2009-02-25 10:44:19 +0100269
Christoph Hellwig45042302009-08-03 23:28:35 +0200270 error = 0;
271 if (--bdev->bd_fsfreeze_count > 0)
Josef Bacik18e9e512010-03-23 10:34:56 -0400272 goto out;
Nick Piggin585d3bc2009-02-25 10:44:19 +0100273
Christoph Hellwig45042302009-08-03 23:28:35 +0200274 if (!sb)
Josef Bacik18e9e512010-03-23 10:34:56 -0400275 goto out;
Christoph Hellwig45042302009-08-03 23:28:35 +0200276
Josef Bacik18e9e512010-03-23 10:34:56 -0400277 error = thaw_super(sb);
278 if (error) {
279 bdev->bd_fsfreeze_count++;
280 mutex_unlock(&bdev->bd_fsfreeze_mutex);
281 return error;
Nick Piggin585d3bc2009-02-25 10:44:19 +0100282 }
Josef Bacik18e9e512010-03-23 10:34:56 -0400283out:
Nick Piggin585d3bc2009-02-25 10:44:19 +0100284 mutex_unlock(&bdev->bd_fsfreeze_mutex);
285 return 0;
286}
287EXPORT_SYMBOL(thaw_bdev);
288
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289static int blkdev_writepage(struct page *page, struct writeback_control *wbc)
290{
291 return block_write_full_page(page, blkdev_get_block, wbc);
292}
293
294static int blkdev_readpage(struct file * file, struct page * page)
295{
296 return block_read_full_page(page, blkdev_get_block);
297}
298
Nick Piggin6272b5a2007-10-16 01:25:04 -0700299static int blkdev_write_begin(struct file *file, struct address_space *mapping,
300 loff_t pos, unsigned len, unsigned flags,
301 struct page **pagep, void **fsdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302{
Christoph Hellwig155130a2010-06-04 11:29:58 +0200303 return block_write_begin(mapping, pos, len, flags, pagep,
304 blkdev_get_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305}
306
Nick Piggin6272b5a2007-10-16 01:25:04 -0700307static int blkdev_write_end(struct file *file, struct address_space *mapping,
308 loff_t pos, unsigned len, unsigned copied,
309 struct page *page, void *fsdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310{
Nick Piggin6272b5a2007-10-16 01:25:04 -0700311 int ret;
312 ret = block_write_end(file, mapping, pos, len, copied, page, fsdata);
313
314 unlock_page(page);
315 page_cache_release(page);
316
317 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318}
319
320/*
321 * private llseek:
Al Viro496ad9a2013-01-23 17:07:38 -0500322 * for a block special file file_inode(file)->i_size is zero
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 * so we compute the size by hand (just as in block_read/write above)
324 */
Andrew Morton965c8e52012-12-17 15:59:39 -0800325static loff_t block_llseek(struct file *file, loff_t offset, int whence)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326{
327 struct inode *bd_inode = file->f_mapping->host;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 loff_t retval;
329
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800330 mutex_lock(&bd_inode->i_mutex);
Al Viro5d48f3a2013-06-23 21:34:45 +0400331 retval = fixed_size_llseek(file, offset, whence, i_size_read(bd_inode));
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800332 mutex_unlock(&bd_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 return retval;
334}
335
Josef Bacik02c24a82011-07-16 20:44:56 -0400336int blkdev_fsync(struct file *filp, loff_t start, loff_t end, int datasync)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337{
Anton Blanchardb8af67e2010-04-23 13:18:06 -0400338 struct inode *bd_inode = filp->f_mapping->host;
339 struct block_device *bdev = I_BDEV(bd_inode);
Christoph Hellwigab0a9732009-10-29 14:14:04 +0100340 int error;
Rafael J. Wysockida5aa862011-08-02 02:17:48 +0200341
342 error = filemap_write_and_wait_range(filp->f_mapping, start, end);
343 if (error)
344 return error;
Christoph Hellwigab0a9732009-10-29 14:14:04 +0100345
Anton Blanchardb8af67e2010-04-23 13:18:06 -0400346 /*
347 * There is no need to serialise calls to blkdev_issue_flush with
348 * i_mutex and doing so causes performance issues with concurrent
349 * O_SYNC writers to a block device.
350 */
Christoph Hellwigdd3932e2010-09-16 20:51:46 +0200351 error = blkdev_issue_flush(bdev, GFP_KERNEL, NULL);
Christoph Hellwigab0a9732009-10-29 14:14:04 +0100352 if (error == -EOPNOTSUPP)
353 error = 0;
Anton Blanchardb8af67e2010-04-23 13:18:06 -0400354
Christoph Hellwigab0a9732009-10-29 14:14:04 +0100355 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356}
Andrew Mortonb1dd3b22010-04-06 14:35:00 -0700357EXPORT_SYMBOL(blkdev_fsync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
359/*
360 * pseudo-fs
361 */
362
363static __cacheline_aligned_in_smp DEFINE_SPINLOCK(bdev_lock);
Christoph Lametere18b8902006-12-06 20:33:20 -0800364static struct kmem_cache * bdev_cachep __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
366static struct inode *bdev_alloc_inode(struct super_block *sb)
367{
Christoph Lametere94b1762006-12-06 20:33:17 -0800368 struct bdev_inode *ei = kmem_cache_alloc(bdev_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 if (!ei)
370 return NULL;
371 return &ei->vfs_inode;
372}
373
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100374static void bdev_i_callback(struct rcu_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375{
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100376 struct inode *inode = container_of(head, struct inode, i_rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 struct bdev_inode *bdi = BDEV_I(inode);
378
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 kmem_cache_free(bdev_cachep, bdi);
380}
381
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100382static void bdev_destroy_inode(struct inode *inode)
383{
384 call_rcu(&inode->i_rcu, bdev_i_callback);
385}
386
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700387static void init_once(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388{
389 struct bdev_inode *ei = (struct bdev_inode *) foo;
390 struct block_device *bdev = &ei->bdev;
391
Christoph Lametera35afb82007-05-16 22:10:57 -0700392 memset(bdev, 0, sizeof(*bdev));
393 mutex_init(&bdev->bd_mutex);
Christoph Lametera35afb82007-05-16 22:10:57 -0700394 INIT_LIST_HEAD(&bdev->bd_inodes);
395 INIT_LIST_HEAD(&bdev->bd_list);
Tejun Heo49731ba2011-01-14 18:43:57 +0100396#ifdef CONFIG_SYSFS
397 INIT_LIST_HEAD(&bdev->bd_holder_disks);
398#endif
Christoph Lametera35afb82007-05-16 22:10:57 -0700399 inode_init_once(&ei->vfs_inode);
Takashi Satofcccf502009-01-09 16:40:59 -0800400 /* Initialize mutex for freeze. */
401 mutex_init(&bdev->bd_fsfreeze_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402}
403
404static inline void __bd_forget(struct inode *inode)
405{
406 list_del_init(&inode->i_devices);
407 inode->i_bdev = NULL;
408 inode->i_mapping = &inode->i_data;
409}
410
Al Virob57922d2010-06-07 14:34:48 -0400411static void bdev_evict_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412{
413 struct block_device *bdev = &BDEV_I(inode)->bdev;
414 struct list_head *p;
Al Virob57922d2010-06-07 14:34:48 -0400415 truncate_inode_pages(&inode->i_data, 0);
416 invalidate_inode_buffers(inode); /* is it needed here? */
Jan Karadbd57682012-05-03 14:48:02 +0200417 clear_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 spin_lock(&bdev_lock);
419 while ( (p = bdev->bd_inodes.next) != &bdev->bd_inodes ) {
420 __bd_forget(list_entry(p, struct inode, i_devices));
421 }
422 list_del_init(&bdev->bd_list);
423 spin_unlock(&bdev_lock);
424}
425
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800426static const struct super_operations bdev_sops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 .statfs = simple_statfs,
428 .alloc_inode = bdev_alloc_inode,
429 .destroy_inode = bdev_destroy_inode,
430 .drop_inode = generic_delete_inode,
Al Virob57922d2010-06-07 14:34:48 -0400431 .evict_inode = bdev_evict_inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432};
433
Al Viro51139ad2010-07-25 23:47:46 +0400434static struct dentry *bd_mount(struct file_system_type *fs_type,
435 int flags, const char *dev_name, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436{
Muthu Kumarb502bd12012-03-23 15:01:50 -0700437 return mount_pseudo(fs_type, "bdev:", &bdev_sops, NULL, BDEVFS_MAGIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438}
439
440static struct file_system_type bd_type = {
441 .name = "bdev",
Al Viro51139ad2010-07-25 23:47:46 +0400442 .mount = bd_mount,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 .kill_sb = kill_anon_super,
444};
445
Al Virof47ec3f2011-11-21 21:15:42 -0500446static struct super_block *blockdev_superblock __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447
448void __init bdev_cache_init(void)
449{
450 int err;
Sergey Senozhatskyace85772012-01-10 02:43:59 +0300451 static struct vfsmount *bd_mnt;
Denis ChengRqc2acf7b2008-12-01 14:34:56 -0800452
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 bdev_cachep = kmem_cache_create("bdev_cache", sizeof(struct bdev_inode),
Paul Jacksonfffb60f2006-03-24 03:16:06 -0800454 0, (SLAB_HWCACHE_ALIGN|SLAB_RECLAIM_ACCOUNT|
455 SLAB_MEM_SPREAD|SLAB_PANIC),
Paul Mundt20c2df82007-07-20 10:11:58 +0900456 init_once);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 err = register_filesystem(&bd_type);
458 if (err)
459 panic("Cannot register bdev pseudo-fs");
460 bd_mnt = kern_mount(&bd_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 if (IS_ERR(bd_mnt))
462 panic("Cannot create bdev pseudo-fs");
Sergey Senozhatskyace85772012-01-10 02:43:59 +0300463 blockdev_superblock = bd_mnt->mnt_sb; /* For writeback */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464}
465
466/*
467 * Most likely _very_ bad one - but then it's hardly critical for small
468 * /dev and can be fixed when somebody will need really large one.
469 * Keep in mind that it will be fed through icache hash function too.
470 */
471static inline unsigned long hash(dev_t dev)
472{
473 return MAJOR(dev)+MINOR(dev);
474}
475
476static int bdev_test(struct inode *inode, void *data)
477{
478 return BDEV_I(inode)->bdev.bd_dev == *(dev_t *)data;
479}
480
481static int bdev_set(struct inode *inode, void *data)
482{
483 BDEV_I(inode)->bdev.bd_dev = *(dev_t *)data;
484 return 0;
485}
486
487static LIST_HEAD(all_bdevs);
488
489struct block_device *bdget(dev_t dev)
490{
491 struct block_device *bdev;
492 struct inode *inode;
493
Denis ChengRqc2acf7b2008-12-01 14:34:56 -0800494 inode = iget5_locked(blockdev_superblock, hash(dev),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 bdev_test, bdev_set, &dev);
496
497 if (!inode)
498 return NULL;
499
500 bdev = &BDEV_I(inode)->bdev;
501
502 if (inode->i_state & I_NEW) {
503 bdev->bd_contains = NULL;
Lachlan McIlroy782b94c2011-06-30 11:01:45 +1000504 bdev->bd_super = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 bdev->bd_inode = inode;
506 bdev->bd_block_size = (1 << inode->i_blkbits);
507 bdev->bd_part_count = 0;
508 bdev->bd_invalidated = 0;
509 inode->i_mode = S_IFBLK;
510 inode->i_rdev = dev;
511 inode->i_bdev = bdev;
512 inode->i_data.a_ops = &def_blk_aops;
513 mapping_set_gfp_mask(&inode->i_data, GFP_USER);
514 inode->i_data.backing_dev_info = &default_backing_dev_info;
515 spin_lock(&bdev_lock);
516 list_add(&bdev->bd_list, &all_bdevs);
517 spin_unlock(&bdev_lock);
518 unlock_new_inode(inode);
519 }
520 return bdev;
521}
522
523EXPORT_SYMBOL(bdget);
524
Alan Jenkinsdddac6a2009-07-29 21:07:55 +0200525/**
526 * bdgrab -- Grab a reference to an already referenced block device
527 * @bdev: Block device to grab a reference to.
528 */
529struct block_device *bdgrab(struct block_device *bdev)
530{
Al Viro7de9c6ee2010-10-23 11:11:40 -0400531 ihold(bdev->bd_inode);
Alan Jenkinsdddac6a2009-07-29 21:07:55 +0200532 return bdev;
533}
Anatol Pomozovc1681bf2013-04-01 09:47:56 -0700534EXPORT_SYMBOL(bdgrab);
Alan Jenkinsdddac6a2009-07-29 21:07:55 +0200535
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536long nr_blockdev_pages(void)
537{
Matthias Kaehlcke203a2932007-07-15 23:40:23 -0700538 struct block_device *bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 long ret = 0;
540 spin_lock(&bdev_lock);
Matthias Kaehlcke203a2932007-07-15 23:40:23 -0700541 list_for_each_entry(bdev, &all_bdevs, bd_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 ret += bdev->bd_inode->i_mapping->nrpages;
543 }
544 spin_unlock(&bdev_lock);
545 return ret;
546}
547
548void bdput(struct block_device *bdev)
549{
550 iput(bdev->bd_inode);
551}
552
553EXPORT_SYMBOL(bdput);
554
555static struct block_device *bd_acquire(struct inode *inode)
556{
557 struct block_device *bdev;
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700558
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 spin_lock(&bdev_lock);
560 bdev = inode->i_bdev;
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700561 if (bdev) {
Al Viro7de9c6ee2010-10-23 11:11:40 -0400562 ihold(bdev->bd_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 spin_unlock(&bdev_lock);
564 return bdev;
565 }
566 spin_unlock(&bdev_lock);
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700567
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 bdev = bdget(inode->i_rdev);
569 if (bdev) {
570 spin_lock(&bdev_lock);
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700571 if (!inode->i_bdev) {
572 /*
Al Viro7de9c6ee2010-10-23 11:11:40 -0400573 * We take an additional reference to bd_inode,
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700574 * and it's released in clear_inode() of inode.
575 * So, we can access it via ->i_mapping always
576 * without igrab().
577 */
Al Viro7de9c6ee2010-10-23 11:11:40 -0400578 ihold(bdev->bd_inode);
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700579 inode->i_bdev = bdev;
580 inode->i_mapping = bdev->bd_inode->i_mapping;
581 list_add(&inode->i_devices, &bdev->bd_inodes);
582 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 spin_unlock(&bdev_lock);
584 }
585 return bdev;
586}
587
Al Virof47ec3f2011-11-21 21:15:42 -0500588static inline int sb_is_blkdev_sb(struct super_block *sb)
589{
590 return sb == blockdev_superblock;
591}
592
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593/* Call when you free inode */
594
595void bd_forget(struct inode *inode)
596{
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700597 struct block_device *bdev = NULL;
598
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 spin_lock(&bdev_lock);
Yan Hongb4ea2ea2013-04-30 15:26:47 -0700600 if (!sb_is_blkdev_sb(inode->i_sb))
601 bdev = inode->i_bdev;
602 __bd_forget(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 spin_unlock(&bdev_lock);
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700604
605 if (bdev)
606 iput(bdev->bd_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607}
608
Tejun Heo1a3cbbc2010-04-07 18:52:29 +0900609/**
610 * bd_may_claim - test whether a block device can be claimed
611 * @bdev: block device of interest
612 * @whole: whole block device containing @bdev, may equal @bdev
613 * @holder: holder trying to claim @bdev
614 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300615 * Test whether @bdev can be claimed by @holder.
Tejun Heo1a3cbbc2010-04-07 18:52:29 +0900616 *
617 * CONTEXT:
618 * spin_lock(&bdev_lock).
619 *
620 * RETURNS:
621 * %true if @bdev can be claimed, %false otherwise.
622 */
623static bool bd_may_claim(struct block_device *bdev, struct block_device *whole,
624 void *holder)
625{
626 if (bdev->bd_holder == holder)
627 return true; /* already a holder */
628 else if (bdev->bd_holder != NULL)
629 return false; /* held by someone else */
630 else if (bdev->bd_contains == bdev)
631 return true; /* is a whole device which isn't held */
632
Tejun Heoe525fd82010-11-13 11:55:17 +0100633 else if (whole->bd_holder == bd_may_claim)
Tejun Heo1a3cbbc2010-04-07 18:52:29 +0900634 return true; /* is a partition of a device that is being partitioned */
635 else if (whole->bd_holder != NULL)
636 return false; /* is a partition of a held device */
637 else
638 return true; /* is a partition of an un-held device */
639}
640
641/**
Tejun Heo6b4517a2010-04-07 18:53:59 +0900642 * bd_prepare_to_claim - prepare to claim a block device
643 * @bdev: block device of interest
644 * @whole: the whole device containing @bdev, may equal @bdev
645 * @holder: holder trying to claim @bdev
646 *
647 * Prepare to claim @bdev. This function fails if @bdev is already
648 * claimed by another holder and waits if another claiming is in
649 * progress. This function doesn't actually claim. On successful
650 * return, the caller has ownership of bd_claiming and bd_holder[s].
651 *
652 * CONTEXT:
653 * spin_lock(&bdev_lock). Might release bdev_lock, sleep and regrab
654 * it multiple times.
655 *
656 * RETURNS:
657 * 0 if @bdev can be claimed, -EBUSY otherwise.
658 */
659static int bd_prepare_to_claim(struct block_device *bdev,
660 struct block_device *whole, void *holder)
661{
662retry:
663 /* if someone else claimed, fail */
664 if (!bd_may_claim(bdev, whole, holder))
665 return -EBUSY;
666
Tejun Heoe75aa852010-08-04 17:59:39 +0200667 /* if claiming is already in progress, wait for it to finish */
668 if (whole->bd_claiming) {
Tejun Heo6b4517a2010-04-07 18:53:59 +0900669 wait_queue_head_t *wq = bit_waitqueue(&whole->bd_claiming, 0);
670 DEFINE_WAIT(wait);
671
672 prepare_to_wait(wq, &wait, TASK_UNINTERRUPTIBLE);
673 spin_unlock(&bdev_lock);
674 schedule();
675 finish_wait(wq, &wait);
676 spin_lock(&bdev_lock);
677 goto retry;
678 }
679
680 /* yay, all mine */
681 return 0;
682}
683
684/**
685 * bd_start_claiming - start claiming a block device
686 * @bdev: block device of interest
687 * @holder: holder trying to claim @bdev
688 *
689 * @bdev is about to be opened exclusively. Check @bdev can be opened
690 * exclusively and mark that an exclusive open is in progress. Each
691 * successful call to this function must be matched with a call to
Nick Pigginb0018362010-05-26 01:51:19 +1000692 * either bd_finish_claiming() or bd_abort_claiming() (which do not
693 * fail).
694 *
695 * This function is used to gain exclusive access to the block device
696 * without actually causing other exclusive open attempts to fail. It
697 * should be used when the open sequence itself requires exclusive
698 * access but may subsequently fail.
Tejun Heo6b4517a2010-04-07 18:53:59 +0900699 *
700 * CONTEXT:
701 * Might sleep.
702 *
703 * RETURNS:
704 * Pointer to the block device containing @bdev on success, ERR_PTR()
705 * value on failure.
706 */
707static struct block_device *bd_start_claiming(struct block_device *bdev,
708 void *holder)
709{
710 struct gendisk *disk;
711 struct block_device *whole;
712 int partno, err;
713
714 might_sleep();
715
716 /*
717 * @bdev might not have been initialized properly yet, look up
718 * and grab the outer block device the hard way.
719 */
720 disk = get_gendisk(bdev->bd_dev, &partno);
721 if (!disk)
722 return ERR_PTR(-ENXIO);
723
Tejun Heod4c208b2011-06-13 12:45:48 +0200724 /*
725 * Normally, @bdev should equal what's returned from bdget_disk()
726 * if partno is 0; however, some drivers (floppy) use multiple
727 * bdev's for the same physical device and @bdev may be one of the
728 * aliases. Keep @bdev if partno is 0. This means claimer
729 * tracking is broken for those devices but it has always been that
730 * way.
731 */
732 if (partno)
733 whole = bdget_disk(disk, 0);
734 else
735 whole = bdgrab(bdev);
736
Nick Piggincf342572010-05-26 01:50:21 +1000737 module_put(disk->fops->owner);
Tejun Heo6b4517a2010-04-07 18:53:59 +0900738 put_disk(disk);
739 if (!whole)
740 return ERR_PTR(-ENOMEM);
741
742 /* prepare to claim, if successful, mark claiming in progress */
743 spin_lock(&bdev_lock);
744
745 err = bd_prepare_to_claim(bdev, whole, holder);
746 if (err == 0) {
747 whole->bd_claiming = holder;
748 spin_unlock(&bdev_lock);
749 return whole;
750 } else {
751 spin_unlock(&bdev_lock);
752 bdput(whole);
753 return ERR_PTR(err);
754 }
755}
756
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800757#ifdef CONFIG_SYSFS
Tejun Heo49731ba2011-01-14 18:43:57 +0100758struct bd_holder_disk {
759 struct list_head list;
760 struct gendisk *disk;
761 int refcnt;
762};
763
764static struct bd_holder_disk *bd_find_holder_disk(struct block_device *bdev,
765 struct gendisk *disk)
766{
767 struct bd_holder_disk *holder;
768
769 list_for_each_entry(holder, &bdev->bd_holder_disks, list)
770 if (holder->disk == disk)
771 return holder;
772 return NULL;
773}
774
Andrew Morton4d7dd8f2006-09-29 01:58:56 -0700775static int add_symlink(struct kobject *from, struct kobject *to)
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800776{
Andrew Morton4d7dd8f2006-09-29 01:58:56 -0700777 return sysfs_create_link(from, to, kobject_name(to));
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800778}
779
780static void del_symlink(struct kobject *from, struct kobject *to)
781{
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800782 sysfs_remove_link(from, kobject_name(to));
783}
784
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800785/**
Tejun Heoe09b4572010-11-13 11:55:17 +0100786 * bd_link_disk_holder - create symlinks between holding disk and slave bdev
787 * @bdev: the claimed slave bdev
788 * @disk: the holding disk
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -0500789 *
Tejun Heo49731ba2011-01-14 18:43:57 +0100790 * DON'T USE THIS UNLESS YOU'RE ALREADY USING IT.
791 *
Tejun Heoe09b4572010-11-13 11:55:17 +0100792 * This functions creates the following sysfs symlinks.
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -0500793 *
Tejun Heoe09b4572010-11-13 11:55:17 +0100794 * - from "slaves" directory of the holder @disk to the claimed @bdev
795 * - from "holders" directory of the @bdev to the holder @disk
796 *
797 * For example, if /dev/dm-0 maps to /dev/sda and disk for dm-0 is
798 * passed to bd_link_disk_holder(), then:
799 *
800 * /sys/block/dm-0/slaves/sda --> /sys/block/sda
801 * /sys/block/sda/holders/dm-0 --> /sys/block/dm-0
802 *
803 * The caller must have claimed @bdev before calling this function and
804 * ensure that both @bdev and @disk are valid during the creation and
805 * lifetime of these symlinks.
806 *
807 * CONTEXT:
808 * Might sleep.
809 *
810 * RETURNS:
811 * 0 on success, -errno on failure.
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -0500812 */
Tejun Heoe09b4572010-11-13 11:55:17 +0100813int bd_link_disk_holder(struct block_device *bdev, struct gendisk *disk)
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -0500814{
Tejun Heo49731ba2011-01-14 18:43:57 +0100815 struct bd_holder_disk *holder;
Tejun Heoe09b4572010-11-13 11:55:17 +0100816 int ret = 0;
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800817
Peter Zijlstra2e7b6512006-12-08 02:36:13 -0800818 mutex_lock(&bdev->bd_mutex);
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -0500819
Tejun Heo49731ba2011-01-14 18:43:57 +0100820 WARN_ON_ONCE(!bdev->bd_holder);
Johannes Weiner4e916722007-07-15 23:41:25 -0700821
Tejun Heoe09b4572010-11-13 11:55:17 +0100822 /* FIXME: remove the following once add_disk() handles errors */
823 if (WARN_ON(!disk->slave_dir || !bdev->bd_part->holder_dir))
824 goto out_unlock;
Johannes Weiner4e916722007-07-15 23:41:25 -0700825
Tejun Heo49731ba2011-01-14 18:43:57 +0100826 holder = bd_find_holder_disk(bdev, disk);
827 if (holder) {
828 holder->refcnt++;
Tejun Heoe09b4572010-11-13 11:55:17 +0100829 goto out_unlock;
830 }
831
Tejun Heo49731ba2011-01-14 18:43:57 +0100832 holder = kzalloc(sizeof(*holder), GFP_KERNEL);
833 if (!holder) {
834 ret = -ENOMEM;
835 goto out_unlock;
836 }
837
838 INIT_LIST_HEAD(&holder->list);
839 holder->disk = disk;
840 holder->refcnt = 1;
841
842 ret = add_symlink(disk->slave_dir, &part_to_dev(bdev->bd_part)->kobj);
843 if (ret)
844 goto out_free;
845
846 ret = add_symlink(bdev->bd_part->holder_dir, &disk_to_dev(disk)->kobj);
847 if (ret)
848 goto out_del;
Tejun Heoe7407d12011-02-24 09:56:32 +0100849 /*
850 * bdev could be deleted beneath us which would implicitly destroy
851 * the holder directory. Hold on to it.
852 */
853 kobject_get(bdev->bd_part->holder_dir);
Tejun Heo49731ba2011-01-14 18:43:57 +0100854
855 list_add(&holder->list, &bdev->bd_holder_disks);
856 goto out_unlock;
857
858out_del:
859 del_symlink(disk->slave_dir, &part_to_dev(bdev->bd_part)->kobj);
860out_free:
861 kfree(holder);
Tejun Heoe09b4572010-11-13 11:55:17 +0100862out_unlock:
Jun'ichi Nomurab4cf1b72006-03-27 01:18:00 -0800863 mutex_unlock(&bdev->bd_mutex);
Tejun Heoe09b4572010-11-13 11:55:17 +0100864 return ret;
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800865}
Tejun Heoe09b4572010-11-13 11:55:17 +0100866EXPORT_SYMBOL_GPL(bd_link_disk_holder);
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800867
Tejun Heo49731ba2011-01-14 18:43:57 +0100868/**
869 * bd_unlink_disk_holder - destroy symlinks created by bd_link_disk_holder()
870 * @bdev: the calimed slave bdev
871 * @disk: the holding disk
872 *
873 * DON'T USE THIS UNLESS YOU'RE ALREADY USING IT.
874 *
875 * CONTEXT:
876 * Might sleep.
877 */
878void bd_unlink_disk_holder(struct block_device *bdev, struct gendisk *disk)
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800879{
Tejun Heo49731ba2011-01-14 18:43:57 +0100880 struct bd_holder_disk *holder;
Tejun Heoe09b4572010-11-13 11:55:17 +0100881
Tejun Heo49731ba2011-01-14 18:43:57 +0100882 mutex_lock(&bdev->bd_mutex);
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800883
Tejun Heo49731ba2011-01-14 18:43:57 +0100884 holder = bd_find_holder_disk(bdev, disk);
885
886 if (!WARN_ON_ONCE(holder == NULL) && !--holder->refcnt) {
887 del_symlink(disk->slave_dir, &part_to_dev(bdev->bd_part)->kobj);
888 del_symlink(bdev->bd_part->holder_dir,
889 &disk_to_dev(disk)->kobj);
Tejun Heoe7407d12011-02-24 09:56:32 +0100890 kobject_put(bdev->bd_part->holder_dir);
Tejun Heo49731ba2011-01-14 18:43:57 +0100891 list_del_init(&holder->list);
892 kfree(holder);
893 }
894
895 mutex_unlock(&bdev->bd_mutex);
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800896}
Tejun Heo49731ba2011-01-14 18:43:57 +0100897EXPORT_SYMBOL_GPL(bd_unlink_disk_holder);
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800898#endif
899
Andrew Patterson0c002c22008-09-04 14:27:20 -0600900/**
Andrew Patterson56ade442008-09-04 14:27:40 -0600901 * flush_disk - invalidates all buffer-cache entries on a disk
902 *
903 * @bdev: struct block device to be flushed
Randy Dunlape6eb5ce2011-02-26 10:54:00 -0800904 * @kill_dirty: flag to guide handling of dirty inodes
Andrew Patterson56ade442008-09-04 14:27:40 -0600905 *
906 * Invalidates all buffer-cache entries on a disk. It should be called
907 * when a disk has been changed -- either by a media change or online
908 * resize.
909 */
NeilBrown93b270f2011-02-24 17:25:47 +1100910static void flush_disk(struct block_device *bdev, bool kill_dirty)
Andrew Patterson56ade442008-09-04 14:27:40 -0600911{
NeilBrown93b270f2011-02-24 17:25:47 +1100912 if (__invalidate_device(bdev, kill_dirty)) {
Andrew Patterson56ade442008-09-04 14:27:40 -0600913 char name[BDEVNAME_SIZE] = "";
914
915 if (bdev->bd_disk)
916 disk_name(bdev->bd_disk, 0, name);
917 printk(KERN_WARNING "VFS: busy inodes on changed media or "
918 "resized disk %s\n", name);
919 }
920
921 if (!bdev->bd_disk)
922 return;
Tejun Heod27769e2011-08-23 20:01:04 +0200923 if (disk_part_scan_enabled(bdev->bd_disk))
Andrew Patterson56ade442008-09-04 14:27:40 -0600924 bdev->bd_invalidated = 1;
925}
926
927/**
Randy Dunlap57d1b532008-10-09 10:42:38 +0200928 * check_disk_size_change - checks for disk size change and adjusts bdev size.
Andrew Pattersonc3279d12008-09-04 14:27:25 -0600929 * @disk: struct gendisk to check
930 * @bdev: struct bdev to adjust.
931 *
932 * This routine checks to see if the bdev size does not match the disk size
933 * and adjusts it if it differs.
934 */
935void check_disk_size_change(struct gendisk *disk, struct block_device *bdev)
936{
937 loff_t disk_size, bdev_size;
938
939 disk_size = (loff_t)get_capacity(disk) << 9;
940 bdev_size = i_size_read(bdev->bd_inode);
941 if (disk_size != bdev_size) {
942 char name[BDEVNAME_SIZE];
943
944 disk_name(disk, 0, name);
945 printk(KERN_INFO
946 "%s: detected capacity change from %lld to %lld\n",
947 name, bdev_size, disk_size);
948 i_size_write(bdev->bd_inode, disk_size);
NeilBrown93b270f2011-02-24 17:25:47 +1100949 flush_disk(bdev, false);
Andrew Pattersonc3279d12008-09-04 14:27:25 -0600950 }
951}
952EXPORT_SYMBOL(check_disk_size_change);
953
954/**
Randy Dunlap57d1b532008-10-09 10:42:38 +0200955 * revalidate_disk - wrapper for lower-level driver's revalidate_disk call-back
Andrew Patterson0c002c22008-09-04 14:27:20 -0600956 * @disk: struct gendisk to be revalidated
957 *
958 * This routine is a wrapper for lower-level driver's revalidate_disk
959 * call-backs. It is used to do common pre and post operations needed
960 * for all revalidate_disk operations.
961 */
962int revalidate_disk(struct gendisk *disk)
963{
Andrew Pattersonc3279d12008-09-04 14:27:25 -0600964 struct block_device *bdev;
Andrew Patterson0c002c22008-09-04 14:27:20 -0600965 int ret = 0;
966
967 if (disk->fops->revalidate_disk)
968 ret = disk->fops->revalidate_disk(disk);
969
Andrew Pattersonc3279d12008-09-04 14:27:25 -0600970 bdev = bdget_disk(disk, 0);
971 if (!bdev)
972 return ret;
973
974 mutex_lock(&bdev->bd_mutex);
975 check_disk_size_change(disk, bdev);
MITSUNARI Shigeo7630b662013-02-21 16:42:01 -0800976 bdev->bd_invalidated = 0;
Andrew Pattersonc3279d12008-09-04 14:27:25 -0600977 mutex_unlock(&bdev->bd_mutex);
978 bdput(bdev);
Andrew Patterson0c002c22008-09-04 14:27:20 -0600979 return ret;
980}
981EXPORT_SYMBOL(revalidate_disk);
982
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983/*
984 * This routine checks whether a removable media has been changed,
985 * and invalidates all buffer-cache-entries in that case. This
986 * is a relatively slow routine, so we have to try to minimize using
987 * it. Thus it is called only upon a 'mount' or 'open'. This
988 * is the best way of combining speed and utility, I think.
989 * People changing diskettes in the middle of an operation deserve
990 * to lose :-)
991 */
992int check_disk_change(struct block_device *bdev)
993{
994 struct gendisk *disk = bdev->bd_disk;
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -0700995 const struct block_device_operations *bdops = disk->fops;
Tejun Heo77ea8872010-12-08 20:57:37 +0100996 unsigned int events;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997
Tejun Heo77ea8872010-12-08 20:57:37 +0100998 events = disk_clear_events(disk, DISK_EVENT_MEDIA_CHANGE |
999 DISK_EVENT_EJECT_REQUEST);
1000 if (!(events & DISK_EVENT_MEDIA_CHANGE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 return 0;
1002
NeilBrown93b270f2011-02-24 17:25:47 +11001003 flush_disk(bdev, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 if (bdops->revalidate_disk)
1005 bdops->revalidate_disk(bdev->bd_disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 return 1;
1007}
1008
1009EXPORT_SYMBOL(check_disk_change);
1010
1011void bd_set_size(struct block_device *bdev, loff_t size)
1012{
Martin K. Petersene1defc42009-05-22 17:17:49 -04001013 unsigned bsize = bdev_logical_block_size(bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014
Guo Chaod646a022013-02-21 15:16:42 -08001015 mutex_lock(&bdev->bd_inode->i_mutex);
1016 i_size_write(bdev->bd_inode, size);
1017 mutex_unlock(&bdev->bd_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 while (bsize < PAGE_CACHE_SIZE) {
1019 if (size & bsize)
1020 break;
1021 bsize <<= 1;
1022 }
1023 bdev->bd_block_size = bsize;
1024 bdev->bd_inode->i_blkbits = blksize_bits(bsize);
1025}
1026EXPORT_SYMBOL(bd_set_size);
1027
Al Viro4385bab2013-05-05 22:11:03 -04001028static void __blkdev_put(struct block_device *bdev, fmode_t mode, int for_part);
NeilBrown37be4122006-12-08 02:36:16 -08001029
Peter Zijlstra6d740cd2007-02-20 13:58:18 -08001030/*
1031 * bd_mutex locking:
1032 *
1033 * mutex_lock(part->bd_mutex)
1034 * mutex_lock_nested(whole->bd_mutex, 1)
1035 */
1036
Al Viro572c4892007-10-08 13:24:05 -04001037static int __blkdev_get(struct block_device *bdev, fmode_t mode, int for_part)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 struct gendisk *disk;
Tejun Heo523e1d32011-10-19 14:31:07 +02001040 struct module *owner;
Pavel Emelyanov7db9cfd2008-06-05 22:46:27 -07001041 int ret;
Tejun Heocf771cb2008-09-03 09:01:09 +02001042 int partno;
Al Virofe6e9c12008-06-23 08:30:55 -04001043 int perm = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044
Al Viro572c4892007-10-08 13:24:05 -04001045 if (mode & FMODE_READ)
Al Virofe6e9c12008-06-23 08:30:55 -04001046 perm |= MAY_READ;
Al Viro572c4892007-10-08 13:24:05 -04001047 if (mode & FMODE_WRITE)
Al Virofe6e9c12008-06-23 08:30:55 -04001048 perm |= MAY_WRITE;
1049 /*
1050 * hooks: /n/, see "layering violations".
1051 */
Chris Wrightb7300b72010-08-10 18:02:55 -07001052 if (!for_part) {
1053 ret = devcgroup_inode_permission(bdev->bd_inode, perm);
1054 if (ret != 0) {
1055 bdput(bdev);
1056 return ret;
1057 }
Al Viro82666022008-08-01 05:32:04 -04001058 }
Pavel Emelyanov7db9cfd2008-06-05 22:46:27 -07001059
NeilBrownd3374822009-01-09 08:31:10 +11001060 restart:
Tejun Heo0762b8b2008-08-25 19:56:12 +09001061
Tejun Heo89f97492008-11-05 10:21:06 +01001062 ret = -ENXIO;
Tejun Heocf771cb2008-09-03 09:01:09 +02001063 disk = get_gendisk(bdev->bd_dev, &partno);
Tejun Heo0762b8b2008-08-25 19:56:12 +09001064 if (!disk)
Arnd Bergmann6e9624b2010-08-07 18:25:34 +02001065 goto out;
Tejun Heo523e1d32011-10-19 14:31:07 +02001066 owner = disk->fops->owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067
Tejun Heo69e02c52011-03-09 19:54:27 +01001068 disk_block_events(disk);
NeilBrown6796bf52006-12-08 02:36:16 -08001069 mutex_lock_nested(&bdev->bd_mutex, for_part);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 if (!bdev->bd_openers) {
1071 bdev->bd_disk = disk;
Andi Kleen87192a22012-01-12 17:20:34 -08001072 bdev->bd_queue = disk->queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 bdev->bd_contains = bdev;
Tejun Heocf771cb2008-09-03 09:01:09 +02001074 if (!partno) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 struct backing_dev_info *bdi;
Tejun Heo89f97492008-11-05 10:21:06 +01001076
1077 ret = -ENXIO;
1078 bdev->bd_part = disk_get_part(disk, partno);
1079 if (!bdev->bd_part)
1080 goto out_clear;
1081
Tejun Heo1196f8b2011-04-21 20:54:45 +02001082 ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 if (disk->fops->open) {
Al Viro572c4892007-10-08 13:24:05 -04001084 ret = disk->fops->open(bdev, mode);
NeilBrownd3374822009-01-09 08:31:10 +11001085 if (ret == -ERESTARTSYS) {
1086 /* Lost a race with 'disk' being
1087 * deleted, try again.
1088 * See md.c
1089 */
1090 disk_put_part(bdev->bd_part);
1091 bdev->bd_part = NULL;
NeilBrownd3374822009-01-09 08:31:10 +11001092 bdev->bd_disk = NULL;
Andi Kleen87192a22012-01-12 17:20:34 -08001093 bdev->bd_queue = NULL;
NeilBrownd3374822009-01-09 08:31:10 +11001094 mutex_unlock(&bdev->bd_mutex);
Tejun Heo69e02c52011-03-09 19:54:27 +01001095 disk_unblock_events(disk);
Tejun Heo69e02c52011-03-09 19:54:27 +01001096 put_disk(disk);
Tejun Heo523e1d32011-10-19 14:31:07 +02001097 module_put(owner);
NeilBrownd3374822009-01-09 08:31:10 +11001098 goto restart;
1099 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 }
Tejun Heo7e697232011-05-23 13:26:07 +02001101
Guo Chaode331272013-02-21 15:16:43 -08001102 if (!ret) {
Tejun Heo7e697232011-05-23 13:26:07 +02001103 bd_set_size(bdev,(loff_t)get_capacity(disk)<<9);
1104 bdi = blk_get_backing_dev_info(bdev);
1105 if (bdi == NULL)
1106 bdi = &default_backing_dev_info;
1107 bdev_inode_switch_bdi(bdev->bd_inode, bdi);
1108 }
1109
Tejun Heo1196f8b2011-04-21 20:54:45 +02001110 /*
1111 * If the device is invalidated, rescan partition
1112 * if open succeeded or failed with -ENOMEDIUM.
1113 * The latter is necessary to prevent ghost
1114 * partitions on a removed medium.
1115 */
Jun'ichi Nomurafe316bf2012-03-02 10:38:33 +01001116 if (bdev->bd_invalidated) {
1117 if (!ret)
1118 rescan_partitions(disk, bdev);
1119 else if (ret == -ENOMEDIUM)
1120 invalidate_partitions(disk, bdev);
1121 }
Tejun Heo1196f8b2011-04-21 20:54:45 +02001122 if (ret)
1123 goto out_clear;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 struct block_device *whole;
1126 whole = bdget_disk(disk, 0);
1127 ret = -ENOMEM;
1128 if (!whole)
Tejun Heo0762b8b2008-08-25 19:56:12 +09001129 goto out_clear;
NeilBrown37be4122006-12-08 02:36:16 -08001130 BUG_ON(for_part);
Al Viro572c4892007-10-08 13:24:05 -04001131 ret = __blkdev_get(whole, mode, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 if (ret)
Tejun Heo0762b8b2008-08-25 19:56:12 +09001133 goto out_clear;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 bdev->bd_contains = whole;
Dave Chinnera5491e02010-10-21 11:49:26 +11001135 bdev_inode_switch_bdi(bdev->bd_inode,
1136 whole->bd_inode->i_data.backing_dev_info);
Tejun Heo89f97492008-11-05 10:21:06 +01001137 bdev->bd_part = disk_get_part(disk, partno);
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001138 if (!(disk->flags & GENHD_FL_UP) ||
Tejun Heo89f97492008-11-05 10:21:06 +01001139 !bdev->bd_part || !bdev->bd_part->nr_sects) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 ret = -ENXIO;
Tejun Heo0762b8b2008-08-25 19:56:12 +09001141 goto out_clear;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 }
Tejun Heo89f97492008-11-05 10:21:06 +01001143 bd_set_size(bdev, (loff_t)bdev->bd_part->nr_sects << 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 }
1145 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 if (bdev->bd_contains == bdev) {
Tejun Heo1196f8b2011-04-21 20:54:45 +02001147 ret = 0;
1148 if (bdev->bd_disk->fops->open)
Al Viro572c4892007-10-08 13:24:05 -04001149 ret = bdev->bd_disk->fops->open(bdev, mode);
Tejun Heo1196f8b2011-04-21 20:54:45 +02001150 /* the same as first opener case, read comment there */
Jun'ichi Nomurafe316bf2012-03-02 10:38:33 +01001151 if (bdev->bd_invalidated) {
1152 if (!ret)
1153 rescan_partitions(bdev->bd_disk, bdev);
1154 else if (ret == -ENOMEDIUM)
1155 invalidate_partitions(bdev->bd_disk, bdev);
1156 }
Tejun Heo1196f8b2011-04-21 20:54:45 +02001157 if (ret)
1158 goto out_unlock_bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 }
Tejun Heo69e02c52011-03-09 19:54:27 +01001160 /* only one opener holds refs to the module and disk */
Tejun Heo69e02c52011-03-09 19:54:27 +01001161 put_disk(disk);
Tejun Heo523e1d32011-10-19 14:31:07 +02001162 module_put(owner);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 }
1164 bdev->bd_openers++;
NeilBrown37be4122006-12-08 02:36:16 -08001165 if (for_part)
1166 bdev->bd_part_count++;
Arjan van de Venc039e312006-03-23 03:00:28 -08001167 mutex_unlock(&bdev->bd_mutex);
Tejun Heo69e02c52011-03-09 19:54:27 +01001168 disk_unblock_events(disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 return 0;
1170
Tejun Heo0762b8b2008-08-25 19:56:12 +09001171 out_clear:
Tejun Heo89f97492008-11-05 10:21:06 +01001172 disk_put_part(bdev->bd_part);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 bdev->bd_disk = NULL;
Tejun Heo0762b8b2008-08-25 19:56:12 +09001174 bdev->bd_part = NULL;
Andi Kleen87192a22012-01-12 17:20:34 -08001175 bdev->bd_queue = NULL;
Dave Chinnera5491e02010-10-21 11:49:26 +11001176 bdev_inode_switch_bdi(bdev->bd_inode, &default_backing_dev_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 if (bdev != bdev->bd_contains)
Al Viro572c4892007-10-08 13:24:05 -04001178 __blkdev_put(bdev->bd_contains, mode, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 bdev->bd_contains = NULL;
Tejun Heo0762b8b2008-08-25 19:56:12 +09001180 out_unlock_bdev:
Arjan van de Venc039e312006-03-23 03:00:28 -08001181 mutex_unlock(&bdev->bd_mutex);
Tejun Heo69e02c52011-03-09 19:54:27 +01001182 disk_unblock_events(disk);
Tejun Heo0762b8b2008-08-25 19:56:12 +09001183 put_disk(disk);
Tejun Heo523e1d32011-10-19 14:31:07 +02001184 module_put(owner);
Dan Carpenter4345cab2011-03-19 13:53:31 +01001185 out:
Tejun Heo0762b8b2008-08-25 19:56:12 +09001186 bdput(bdev);
1187
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 return ret;
1189}
1190
Tejun Heod4d77622010-11-13 11:55:18 +01001191/**
1192 * blkdev_get - open a block device
1193 * @bdev: block_device to open
1194 * @mode: FMODE_* mask
1195 * @holder: exclusive holder identifier
1196 *
1197 * Open @bdev with @mode. If @mode includes %FMODE_EXCL, @bdev is
1198 * open with exclusive access. Specifying %FMODE_EXCL with %NULL
1199 * @holder is invalid. Exclusive opens may nest for the same @holder.
1200 *
1201 * On success, the reference count of @bdev is unchanged. On failure,
1202 * @bdev is put.
1203 *
1204 * CONTEXT:
1205 * Might sleep.
1206 *
1207 * RETURNS:
1208 * 0 on success, -errno on failure.
1209 */
Tejun Heoe525fd82010-11-13 11:55:17 +01001210int blkdev_get(struct block_device *bdev, fmode_t mode, void *holder)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211{
Tejun Heoe525fd82010-11-13 11:55:17 +01001212 struct block_device *whole = NULL;
1213 int res;
1214
1215 WARN_ON_ONCE((mode & FMODE_EXCL) && !holder);
1216
1217 if ((mode & FMODE_EXCL) && holder) {
1218 whole = bd_start_claiming(bdev, holder);
1219 if (IS_ERR(whole)) {
1220 bdput(bdev);
1221 return PTR_ERR(whole);
1222 }
1223 }
1224
1225 res = __blkdev_get(bdev, mode, 0);
1226
1227 if (whole) {
Tejun Heod4dc2102011-04-21 20:54:46 +02001228 struct gendisk *disk = whole->bd_disk;
1229
Tejun Heo6a027ef2010-11-13 11:55:17 +01001230 /* finish claiming */
Tejun Heo77ea8872010-12-08 20:57:37 +01001231 mutex_lock(&bdev->bd_mutex);
Tejun Heo6a027ef2010-11-13 11:55:17 +01001232 spin_lock(&bdev_lock);
1233
Tejun Heo77ea8872010-12-08 20:57:37 +01001234 if (!res) {
Tejun Heo6a027ef2010-11-13 11:55:17 +01001235 BUG_ON(!bd_may_claim(bdev, whole, holder));
1236 /*
1237 * Note that for a whole device bd_holders
1238 * will be incremented twice, and bd_holder
1239 * will be set to bd_may_claim before being
1240 * set to holder
1241 */
1242 whole->bd_holders++;
1243 whole->bd_holder = bd_may_claim;
1244 bdev->bd_holders++;
1245 bdev->bd_holder = holder;
1246 }
1247
1248 /* tell others that we're done */
1249 BUG_ON(whole->bd_claiming != holder);
1250 whole->bd_claiming = NULL;
1251 wake_up_bit(&whole->bd_claiming, 0);
1252
1253 spin_unlock(&bdev_lock);
Tejun Heo77ea8872010-12-08 20:57:37 +01001254
1255 /*
Tejun Heod4dc2102011-04-21 20:54:46 +02001256 * Block event polling for write claims if requested. Any
1257 * write holder makes the write_holder state stick until
1258 * all are released. This is good enough and tracking
1259 * individual writeable reference is too fragile given the
1260 * way @mode is used in blkdev_get/put().
Tejun Heo77ea8872010-12-08 20:57:37 +01001261 */
Tejun Heo4c49ff32011-06-01 08:27:41 +02001262 if (!res && (mode & FMODE_WRITE) && !bdev->bd_write_holder &&
1263 (disk->flags & GENHD_FL_BLOCK_EVENTS_ON_EXCL_WRITE)) {
Tejun Heo77ea8872010-12-08 20:57:37 +01001264 bdev->bd_write_holder = true;
Tejun Heod4dc2102011-04-21 20:54:46 +02001265 disk_block_events(disk);
Tejun Heo77ea8872010-12-08 20:57:37 +01001266 }
1267
1268 mutex_unlock(&bdev->bd_mutex);
Tejun Heo6a027ef2010-11-13 11:55:17 +01001269 bdput(whole);
Tejun Heoe525fd82010-11-13 11:55:17 +01001270 }
1271
1272 return res;
NeilBrown37be4122006-12-08 02:36:16 -08001273}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274EXPORT_SYMBOL(blkdev_get);
1275
Tejun Heod4d77622010-11-13 11:55:18 +01001276/**
1277 * blkdev_get_by_path - open a block device by name
1278 * @path: path to the block device to open
1279 * @mode: FMODE_* mask
1280 * @holder: exclusive holder identifier
1281 *
1282 * Open the blockdevice described by the device file at @path. @mode
1283 * and @holder are identical to blkdev_get().
1284 *
1285 * On success, the returned block_device has reference count of one.
1286 *
1287 * CONTEXT:
1288 * Might sleep.
1289 *
1290 * RETURNS:
1291 * Pointer to block_device on success, ERR_PTR(-errno) on failure.
1292 */
1293struct block_device *blkdev_get_by_path(const char *path, fmode_t mode,
1294 void *holder)
1295{
1296 struct block_device *bdev;
1297 int err;
1298
1299 bdev = lookup_bdev(path);
1300 if (IS_ERR(bdev))
1301 return bdev;
1302
1303 err = blkdev_get(bdev, mode, holder);
1304 if (err)
1305 return ERR_PTR(err);
1306
Chuck Ebberte51900f2011-02-16 18:11:53 -05001307 if ((mode & FMODE_WRITE) && bdev_read_only(bdev)) {
1308 blkdev_put(bdev, mode);
1309 return ERR_PTR(-EACCES);
1310 }
1311
Tejun Heod4d77622010-11-13 11:55:18 +01001312 return bdev;
1313}
1314EXPORT_SYMBOL(blkdev_get_by_path);
1315
1316/**
1317 * blkdev_get_by_dev - open a block device by device number
1318 * @dev: device number of block device to open
1319 * @mode: FMODE_* mask
1320 * @holder: exclusive holder identifier
1321 *
1322 * Open the blockdevice described by device number @dev. @mode and
1323 * @holder are identical to blkdev_get().
1324 *
1325 * Use it ONLY if you really do not have anything better - i.e. when
1326 * you are behind a truly sucky interface and all you are given is a
1327 * device number. _Never_ to be used for internal purposes. If you
1328 * ever need it - reconsider your API.
1329 *
1330 * On success, the returned block_device has reference count of one.
1331 *
1332 * CONTEXT:
1333 * Might sleep.
1334 *
1335 * RETURNS:
1336 * Pointer to block_device on success, ERR_PTR(-errno) on failure.
1337 */
1338struct block_device *blkdev_get_by_dev(dev_t dev, fmode_t mode, void *holder)
1339{
1340 struct block_device *bdev;
1341 int err;
1342
1343 bdev = bdget(dev);
1344 if (!bdev)
1345 return ERR_PTR(-ENOMEM);
1346
1347 err = blkdev_get(bdev, mode, holder);
1348 if (err)
1349 return ERR_PTR(err);
1350
1351 return bdev;
1352}
1353EXPORT_SYMBOL(blkdev_get_by_dev);
1354
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355static int blkdev_open(struct inode * inode, struct file * filp)
1356{
1357 struct block_device *bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358
1359 /*
1360 * Preserve backwards compatibility and allow large file access
1361 * even if userspace doesn't ask for it explicitly. Some mkfs
1362 * binary needs it. We might want to drop this workaround
1363 * during an unstable branch.
1364 */
1365 filp->f_flags |= O_LARGEFILE;
1366
Al Viro572c4892007-10-08 13:24:05 -04001367 if (filp->f_flags & O_NDELAY)
1368 filp->f_mode |= FMODE_NDELAY;
1369 if (filp->f_flags & O_EXCL)
1370 filp->f_mode |= FMODE_EXCL;
1371 if ((filp->f_flags & O_ACCMODE) == 3)
1372 filp->f_mode |= FMODE_WRITE_IOCTL;
1373
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 bdev = bd_acquire(inode);
Pavel Emelianov6a2aae02006-10-28 10:38:33 -07001375 if (bdev == NULL)
1376 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377
Al Viro572c4892007-10-08 13:24:05 -04001378 filp->f_mapping = bdev->bd_inode->i_mapping;
1379
Tejun Heoe525fd82010-11-13 11:55:17 +01001380 return blkdev_get(bdev, filp->f_mode, filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381}
1382
Al Viro4385bab2013-05-05 22:11:03 -04001383static void __blkdev_put(struct block_device *bdev, fmode_t mode, int for_part)
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001384{
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001385 struct gendisk *disk = bdev->bd_disk;
NeilBrown37be4122006-12-08 02:36:16 -08001386 struct block_device *victim = NULL;
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001387
NeilBrown6796bf52006-12-08 02:36:16 -08001388 mutex_lock_nested(&bdev->bd_mutex, for_part);
NeilBrown37be4122006-12-08 02:36:16 -08001389 if (for_part)
1390 bdev->bd_part_count--;
1391
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001392 if (!--bdev->bd_openers) {
Tejun Heo6a027ef2010-11-13 11:55:17 +01001393 WARN_ON_ONCE(bdev->bd_holders);
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001394 sync_blockdev(bdev);
1395 kill_bdev(bdev);
NeilBrown94007752011-09-10 17:20:21 +10001396 /* ->release can cause the old bdi to disappear,
1397 * so must switch it out first
1398 */
1399 bdev_inode_switch_bdi(bdev->bd_inode,
1400 &default_backing_dev_info);
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001401 }
1402 if (bdev->bd_contains == bdev) {
1403 if (disk->fops->release)
Al Virodb2a1442013-05-05 21:52:57 -04001404 disk->fops->release(disk, mode);
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001405 }
1406 if (!bdev->bd_openers) {
1407 struct module *owner = disk->fops->owner;
1408
Tejun Heo0762b8b2008-08-25 19:56:12 +09001409 disk_put_part(bdev->bd_part);
1410 bdev->bd_part = NULL;
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001411 bdev->bd_disk = NULL;
NeilBrown37be4122006-12-08 02:36:16 -08001412 if (bdev != bdev->bd_contains)
1413 victim = bdev->bd_contains;
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001414 bdev->bd_contains = NULL;
Tejun Heo523e1d32011-10-19 14:31:07 +02001415
1416 put_disk(disk);
1417 module_put(owner);
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001418 }
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001419 mutex_unlock(&bdev->bd_mutex);
1420 bdput(bdev);
NeilBrown37be4122006-12-08 02:36:16 -08001421 if (victim)
Al Viro9a1c3542008-02-22 20:40:24 -05001422 __blkdev_put(victim, mode, 1);
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001423}
1424
Al Viro4385bab2013-05-05 22:11:03 -04001425void blkdev_put(struct block_device *bdev, fmode_t mode)
NeilBrown37be4122006-12-08 02:36:16 -08001426{
Tejun Heo85ef06d2011-07-01 16:17:47 +02001427 mutex_lock(&bdev->bd_mutex);
1428
Tejun Heoe525fd82010-11-13 11:55:17 +01001429 if (mode & FMODE_EXCL) {
Tejun Heo6a027ef2010-11-13 11:55:17 +01001430 bool bdev_free;
1431
1432 /*
1433 * Release a claim on the device. The holder fields
1434 * are protected with bdev_lock. bd_mutex is to
1435 * synchronize disk_holder unlinking.
1436 */
Tejun Heo6a027ef2010-11-13 11:55:17 +01001437 spin_lock(&bdev_lock);
1438
1439 WARN_ON_ONCE(--bdev->bd_holders < 0);
1440 WARN_ON_ONCE(--bdev->bd_contains->bd_holders < 0);
1441
1442 /* bd_contains might point to self, check in a separate step */
1443 if ((bdev_free = !bdev->bd_holders))
1444 bdev->bd_holder = NULL;
1445 if (!bdev->bd_contains->bd_holders)
1446 bdev->bd_contains->bd_holder = NULL;
1447
1448 spin_unlock(&bdev_lock);
1449
Tejun Heo77ea8872010-12-08 20:57:37 +01001450 /*
1451 * If this was the last claim, remove holder link and
1452 * unblock evpoll if it was a write holder.
1453 */
Tejun Heo85ef06d2011-07-01 16:17:47 +02001454 if (bdev_free && bdev->bd_write_holder) {
1455 disk_unblock_events(bdev->bd_disk);
1456 bdev->bd_write_holder = false;
Tejun Heo77ea8872010-12-08 20:57:37 +01001457 }
Tejun Heo69362172011-03-09 19:54:27 +01001458 }
Tejun Heo77ea8872010-12-08 20:57:37 +01001459
Tejun Heo85ef06d2011-07-01 16:17:47 +02001460 /*
1461 * Trigger event checking and tell drivers to flush MEDIA_CHANGE
1462 * event. This is to ensure detection of media removal commanded
1463 * from userland - e.g. eject(1).
1464 */
1465 disk_flush_events(bdev->bd_disk, DISK_EVENT_MEDIA_CHANGE);
1466
1467 mutex_unlock(&bdev->bd_mutex);
1468
Al Viro4385bab2013-05-05 22:11:03 -04001469 __blkdev_put(bdev, mode, 0);
NeilBrown37be4122006-12-08 02:36:16 -08001470}
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001471EXPORT_SYMBOL(blkdev_put);
1472
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473static int blkdev_close(struct inode * inode, struct file * filp)
1474{
1475 struct block_device *bdev = I_BDEV(filp->f_mapping->host);
Al Viro4385bab2013-05-05 22:11:03 -04001476 blkdev_put(bdev, filp->f_mode);
1477 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478}
1479
Arnd Bergmannbb93e3a2005-06-23 00:10:15 -07001480static long block_ioctl(struct file *file, unsigned cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481{
Al Viro56b26ad2008-09-19 03:17:36 -04001482 struct block_device *bdev = I_BDEV(file->f_mapping->host);
1483 fmode_t mode = file->f_mode;
Christoph Hellwigfd4ce1a2008-11-05 14:58:42 +01001484
1485 /*
1486 * O_NDELAY can be altered using fcntl(.., F_SETFL, ..), so we have
1487 * to updated it before every ioctl.
1488 */
Al Viro56b26ad2008-09-19 03:17:36 -04001489 if (file->f_flags & O_NDELAY)
Christoph Hellwigfd4ce1a2008-11-05 14:58:42 +01001490 mode |= FMODE_NDELAY;
1491 else
1492 mode &= ~FMODE_NDELAY;
1493
Al Viro56b26ad2008-09-19 03:17:36 -04001494 return blkdev_ioctl(bdev, mode, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495}
1496
Theodore Ts'o87d8fe12009-01-03 09:47:09 -05001497/*
Christoph Hellwigeef99382009-08-20 17:43:41 +02001498 * Write data to the block device. Only intended for the block device itself
1499 * and the raw driver which basically is a fake block device.
1500 *
1501 * Does not take i_mutex for the write and thus is not for general purpose
1502 * use.
1503 */
1504ssize_t blkdev_aio_write(struct kiocb *iocb, const struct iovec *iov,
1505 unsigned long nr_segs, loff_t pos)
1506{
1507 struct file *file = iocb->ki_filp;
Jianpeng Ma53362a02012-08-02 09:50:39 +02001508 struct blk_plug plug;
Christoph Hellwigeef99382009-08-20 17:43:41 +02001509 ssize_t ret;
1510
1511 BUG_ON(iocb->ki_pos != pos);
1512
Jianpeng Ma53362a02012-08-02 09:50:39 +02001513 blk_start_plug(&plug);
Christoph Hellwigeef99382009-08-20 17:43:41 +02001514 ret = __generic_file_aio_write(iocb, iov, nr_segs, &iocb->ki_pos);
1515 if (ret > 0 || ret == -EIOCBQUEUED) {
1516 ssize_t err;
1517
1518 err = generic_write_sync(file, pos, ret);
1519 if (err < 0 && ret > 0)
1520 ret = err;
1521 }
Jianpeng Ma53362a02012-08-02 09:50:39 +02001522 blk_finish_plug(&plug);
Christoph Hellwigeef99382009-08-20 17:43:41 +02001523 return ret;
1524}
1525EXPORT_SYMBOL_GPL(blkdev_aio_write);
1526
Linus Torvalds684c9aa2012-12-07 16:48:39 -08001527static ssize_t blkdev_aio_read(struct kiocb *iocb, const struct iovec *iov,
1528 unsigned long nr_segs, loff_t pos)
1529{
1530 struct file *file = iocb->ki_filp;
1531 struct inode *bd_inode = file->f_mapping->host;
1532 loff_t size = i_size_read(bd_inode);
1533
1534 if (pos >= size)
1535 return 0;
1536
1537 size -= pos;
Gu Zheng6f8f5c22013-04-29 11:55:52 -07001538 if (size < iocb->ki_left)
Linus Torvalds684c9aa2012-12-07 16:48:39 -08001539 nr_segs = iov_shorten((struct iovec *)iov, nr_segs, size);
1540 return generic_file_aio_read(iocb, iov, nr_segs, pos);
1541}
1542
Christoph Hellwigeef99382009-08-20 17:43:41 +02001543/*
Theodore Ts'o87d8fe12009-01-03 09:47:09 -05001544 * Try to release a page associated with block device when the system
1545 * is under memory pressure.
1546 */
1547static int blkdev_releasepage(struct page *page, gfp_t wait)
1548{
1549 struct super_block *super = BDEV_I(page->mapping->host)->bdev.bd_super;
1550
1551 if (super && super->s_op->bdev_try_to_free_page)
1552 return super->s_op->bdev_try_to_free_page(super, page, wait);
1553
1554 return try_to_free_buffers(page);
1555}
1556
Adrian Bunk4c54ac62008-02-18 13:48:31 +01001557static const struct address_space_operations def_blk_aops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 .readpage = blkdev_readpage,
1559 .writepage = blkdev_writepage,
Nick Piggin6272b5a2007-10-16 01:25:04 -07001560 .write_begin = blkdev_write_begin,
1561 .write_end = blkdev_write_end,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 .writepages = generic_writepages,
Theodore Ts'o87d8fe12009-01-03 09:47:09 -05001563 .releasepage = blkdev_releasepage,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 .direct_IO = blkdev_direct_IO,
1565};
1566
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08001567const struct file_operations def_blk_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 .open = blkdev_open,
1569 .release = blkdev_close,
1570 .llseek = block_llseek,
Badari Pulavarty543ade12006-09-30 23:28:48 -07001571 .read = do_sync_read,
1572 .write = do_sync_write,
Linus Torvalds684c9aa2012-12-07 16:48:39 -08001573 .aio_read = blkdev_aio_read,
Christoph Hellwigeef99382009-08-20 17:43:41 +02001574 .aio_write = blkdev_aio_write,
Linus Torvalds1e8b3332012-11-29 10:49:50 -08001575 .mmap = generic_file_mmap,
Andrew Mortonb1dd3b22010-04-06 14:35:00 -07001576 .fsync = blkdev_fsync,
Arnd Bergmannbb93e3a2005-06-23 00:10:15 -07001577 .unlocked_ioctl = block_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578#ifdef CONFIG_COMPAT
1579 .compat_ioctl = compat_blkdev_ioctl,
1580#endif
Linus Torvalds1e8b3332012-11-29 10:49:50 -08001581 .splice_read = generic_file_splice_read,
1582 .splice_write = generic_file_splice_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583};
1584
1585int ioctl_by_bdev(struct block_device *bdev, unsigned cmd, unsigned long arg)
1586{
1587 int res;
1588 mm_segment_t old_fs = get_fs();
1589 set_fs(KERNEL_DS);
Al Viro56b26ad2008-09-19 03:17:36 -04001590 res = blkdev_ioctl(bdev, 0, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 set_fs(old_fs);
1592 return res;
1593}
1594
1595EXPORT_SYMBOL(ioctl_by_bdev);
1596
1597/**
1598 * lookup_bdev - lookup a struct block_device by name
Randy Dunlap94e29592009-01-06 14:41:15 -08001599 * @pathname: special file representing the block device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 *
Randy Dunlap57d1b532008-10-09 10:42:38 +02001601 * Get a reference to the blockdevice at @pathname in the current
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 * namespace if possible and return it. Return ERR_PTR(error)
1603 * otherwise.
1604 */
Al Viro421748e2008-08-02 01:04:36 -04001605struct block_device *lookup_bdev(const char *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606{
1607 struct block_device *bdev;
1608 struct inode *inode;
Al Viro421748e2008-08-02 01:04:36 -04001609 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 int error;
1611
Al Viro421748e2008-08-02 01:04:36 -04001612 if (!pathname || !*pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 return ERR_PTR(-EINVAL);
1614
Al Viro421748e2008-08-02 01:04:36 -04001615 error = kern_path(pathname, LOOKUP_FOLLOW, &path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 if (error)
1617 return ERR_PTR(error);
1618
Al Viro421748e2008-08-02 01:04:36 -04001619 inode = path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 error = -ENOTBLK;
1621 if (!S_ISBLK(inode->i_mode))
1622 goto fail;
1623 error = -EACCES;
Al Viro421748e2008-08-02 01:04:36 -04001624 if (path.mnt->mnt_flags & MNT_NODEV)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625 goto fail;
1626 error = -ENOMEM;
1627 bdev = bd_acquire(inode);
1628 if (!bdev)
1629 goto fail;
1630out:
Al Viro421748e2008-08-02 01:04:36 -04001631 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 return bdev;
1633fail:
1634 bdev = ERR_PTR(error);
1635 goto out;
1636}
Al Virod5686b42008-08-01 05:00:11 -04001637EXPORT_SYMBOL(lookup_bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638
NeilBrown93b270f2011-02-24 17:25:47 +11001639int __invalidate_device(struct block_device *bdev, bool kill_dirty)
David Howellsb71e8a42006-08-29 19:06:11 +01001640{
1641 struct super_block *sb = get_super(bdev);
1642 int res = 0;
1643
1644 if (sb) {
1645 /*
1646 * no need to lock the super, get_super holds the
1647 * read mutex so the filesystem cannot go away
1648 * under us (->put_super runs with the write lock
1649 * hold).
1650 */
1651 shrink_dcache_sb(sb);
NeilBrown93b270f2011-02-24 17:25:47 +11001652 res = invalidate_inodes(sb, kill_dirty);
David Howellsb71e8a42006-08-29 19:06:11 +01001653 drop_super(sb);
1654 }
Peter Zijlstraf98393a2007-05-06 14:49:54 -07001655 invalidate_bdev(bdev);
David Howellsb71e8a42006-08-29 19:06:11 +01001656 return res;
1657}
1658EXPORT_SYMBOL(__invalidate_device);
Jan Kara5c0d6b62012-07-03 16:45:31 +02001659
1660void iterate_bdevs(void (*func)(struct block_device *, void *), void *arg)
1661{
1662 struct inode *inode, *old_inode = NULL;
1663
1664 spin_lock(&inode_sb_list_lock);
1665 list_for_each_entry(inode, &blockdev_superblock->s_inodes, i_sb_list) {
1666 struct address_space *mapping = inode->i_mapping;
1667
1668 spin_lock(&inode->i_lock);
1669 if (inode->i_state & (I_FREEING|I_WILL_FREE|I_NEW) ||
1670 mapping->nrpages == 0) {
1671 spin_unlock(&inode->i_lock);
1672 continue;
1673 }
1674 __iget(inode);
1675 spin_unlock(&inode->i_lock);
1676 spin_unlock(&inode_sb_list_lock);
1677 /*
1678 * We hold a reference to 'inode' so it couldn't have been
1679 * removed from s_inodes list while we dropped the
1680 * inode_sb_list_lock. We cannot iput the inode now as we can
1681 * be holding the last reference and we cannot iput it under
1682 * inode_sb_list_lock. So we keep the reference and iput it
1683 * later.
1684 */
1685 iput(old_inode);
1686 old_inode = inode;
1687
1688 func(I_BDEV(inode), arg);
1689
1690 spin_lock(&inode_sb_list_lock);
1691 }
1692 spin_unlock(&inode_sb_list_lock);
1693 iput(old_inode);
1694}