blob: 85f5c85ec91c050818495c49c1e4a2a669c14322 [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;
Jan Karaa5faeaf2013-06-28 16:04:02 +020061 bool wakeup_bdi = false;
Christoph Hellwigf758eea2011-04-21 18:19:44 -060062
63 if (unlikely(dst == old)) /* deadlock avoidance */
64 return;
65 bdi_lock_two(&old->wb, &dst->wb);
Dave Chinner250df6e2011-03-22 22:23:36 +110066 spin_lock(&inode->i_lock);
Dave Chinnera5491e02010-10-21 11:49:26 +110067 inode->i_data.backing_dev_info = dst;
Jan Karaa5faeaf2013-06-28 16:04:02 +020068 if (inode->i_state & I_DIRTY) {
69 if (bdi_cap_writeback_dirty(dst) && !wb_has_dirty_io(&dst->wb))
70 wakeup_bdi = true;
Nick Piggin7ccf19a2010-10-21 11:49:30 +110071 list_move(&inode->i_wb_list, &dst->wb.b_dirty);
Jan Karaa5faeaf2013-06-28 16:04:02 +020072 }
Dave Chinner250df6e2011-03-22 22:23:36 +110073 spin_unlock(&inode->i_lock);
Christoph Hellwigf758eea2011-04-21 18:19:44 -060074 spin_unlock(&old->wb.list_lock);
75 spin_unlock(&dst->wb.list_lock);
Jan Karaa5faeaf2013-06-28 16:04:02 +020076
77 if (wakeup_bdi)
78 bdi_wakeup_thread_delayed(dst);
Dave Chinnera5491e02010-10-21 11:49:26 +110079}
80
Peter Zijlstraf9a14392007-05-06 14:49:55 -070081/* Kill _all_ buffers and pagecache , dirty or not.. */
Al Viroff01bb482011-09-16 02:31:11 -040082void kill_bdev(struct block_device *bdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070083{
Al Viroff01bb482011-09-16 02:31:11 -040084 struct address_space *mapping = bdev->bd_inode->i_mapping;
85
86 if (mapping->nrpages == 0)
Peter Zijlstraf9a14392007-05-06 14:49:55 -070087 return;
Al Viroff01bb482011-09-16 02:31:11 -040088
Peter Zijlstraf9a14392007-05-06 14:49:55 -070089 invalidate_bh_lrus();
Al Viroff01bb482011-09-16 02:31:11 -040090 truncate_inode_pages(mapping, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091}
Al Viroff01bb482011-09-16 02:31:11 -040092EXPORT_SYMBOL(kill_bdev);
93
94/* Invalidate clean unused buffers and pagecache. */
95void invalidate_bdev(struct block_device *bdev)
96{
97 struct address_space *mapping = bdev->bd_inode->i_mapping;
98
99 if (mapping->nrpages == 0)
100 return;
101
102 invalidate_bh_lrus();
103 lru_add_drain_all(); /* make sure all lru add caches are flushed */
104 invalidate_mapping_pages(mapping, 0, -1);
105 /* 99% of the time, we don't need to flush the cleancache on the bdev.
106 * But, for the strange corners, lets be cautious
107 */
Dan Magenheimer31677602011-09-21 11:56:28 -0400108 cleancache_invalidate_inode(mapping);
Al Viroff01bb482011-09-16 02:31:11 -0400109}
110EXPORT_SYMBOL(invalidate_bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
112int set_blocksize(struct block_device *bdev, int size)
113{
114 /* Size must be a power of two, and between 512 and PAGE_SIZE */
Vignesh Babu BM1368c4f2007-05-08 00:24:32 -0700115 if (size > PAGE_SIZE || size < 512 || !is_power_of_2(size))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 return -EINVAL;
117
118 /* Size cannot be smaller than the size supported by the device */
Martin K. Petersene1defc42009-05-22 17:17:49 -0400119 if (size < bdev_logical_block_size(bdev))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 return -EINVAL;
121
122 /* Don't change the size if it is same as current */
123 if (bdev->bd_block_size != size) {
124 sync_blockdev(bdev);
125 bdev->bd_block_size = size;
126 bdev->bd_inode->i_blkbits = blksize_bits(size);
127 kill_bdev(bdev);
128 }
129 return 0;
130}
131
132EXPORT_SYMBOL(set_blocksize);
133
134int sb_set_blocksize(struct super_block *sb, int size)
135{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 if (set_blocksize(sb->s_bdev, size))
137 return 0;
138 /* If we get here, we know size is power of two
139 * and it's value is between 512 and PAGE_SIZE */
140 sb->s_blocksize = size;
Coywolf Qi Hunt38885bd2006-03-24 03:18:05 -0800141 sb->s_blocksize_bits = blksize_bits(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 return sb->s_blocksize;
143}
144
145EXPORT_SYMBOL(sb_set_blocksize);
146
147int sb_min_blocksize(struct super_block *sb, int size)
148{
Martin K. Petersene1defc42009-05-22 17:17:49 -0400149 int minsize = bdev_logical_block_size(sb->s_bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 if (size < minsize)
151 size = minsize;
152 return sb_set_blocksize(sb, size);
153}
154
155EXPORT_SYMBOL(sb_min_blocksize);
156
157static int
158blkdev_get_block(struct inode *inode, sector_t iblock,
159 struct buffer_head *bh, int create)
160{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 bh->b_bdev = I_BDEV(inode);
162 bh->b_blocknr = iblock;
163 set_buffer_mapped(bh);
164 return 0;
165}
166
Andrew Mortonb2e895d2007-02-03 01:14:01 -0800167static ssize_t
168blkdev_direct_IO(int rw, struct kiocb *iocb, const struct iovec *iov,
169 loff_t offset, unsigned long nr_segs)
170{
171 struct file *file = iocb->ki_filp;
172 struct inode *inode = file->f_mapping->host;
173
Christoph Hellwigeafdc7d2010-06-04 11:29:53 +0200174 return __blockdev_direct_IO(rw, iocb, inode, I_BDEV(inode), iov, offset,
Linus Torvaldsbbec02702012-11-29 12:31:52 -0800175 nr_segs, blkdev_get_block, NULL, NULL, 0);
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;
Josef Bacik18e9e512010-03-23 10:34:56 -0400247 error = freeze_super(sb);
248 if (error) {
249 deactivate_super(sb);
250 bdev->bd_fsfreeze_count--;
Christoph Hellwig45042302009-08-03 23:28:35 +0200251 mutex_unlock(&bdev->bd_fsfreeze_mutex);
Josef Bacik18e9e512010-03-23 10:34:56 -0400252 return ERR_PTR(error);
Nick Piggin585d3bc2009-02-25 10:44:19 +0100253 }
Josef Bacik18e9e512010-03-23 10:34:56 -0400254 deactivate_super(sb);
Christoph Hellwig45042302009-08-03 23:28:35 +0200255 out:
Nick Piggin585d3bc2009-02-25 10:44:19 +0100256 sync_blockdev(bdev);
257 mutex_unlock(&bdev->bd_fsfreeze_mutex);
Christoph Hellwig4fadd7b2009-08-03 23:28:06 +0200258 return sb; /* thaw_bdev releases s->s_umount */
Nick Piggin585d3bc2009-02-25 10:44:19 +0100259}
260EXPORT_SYMBOL(freeze_bdev);
261
262/**
263 * thaw_bdev -- unlock filesystem
264 * @bdev: blockdevice to unlock
265 * @sb: associated superblock
266 *
267 * Unlocks the filesystem and marks it writeable again after freeze_bdev().
268 */
269int thaw_bdev(struct block_device *bdev, struct super_block *sb)
270{
Christoph Hellwig45042302009-08-03 23:28:35 +0200271 int error = -EINVAL;
Nick Piggin585d3bc2009-02-25 10:44:19 +0100272
273 mutex_lock(&bdev->bd_fsfreeze_mutex);
Christoph Hellwig45042302009-08-03 23:28:35 +0200274 if (!bdev->bd_fsfreeze_count)
Josef Bacik18e9e512010-03-23 10:34:56 -0400275 goto out;
Nick Piggin585d3bc2009-02-25 10:44:19 +0100276
Christoph Hellwig45042302009-08-03 23:28:35 +0200277 error = 0;
278 if (--bdev->bd_fsfreeze_count > 0)
Josef Bacik18e9e512010-03-23 10:34:56 -0400279 goto out;
Nick Piggin585d3bc2009-02-25 10:44:19 +0100280
Christoph Hellwig45042302009-08-03 23:28:35 +0200281 if (!sb)
Josef Bacik18e9e512010-03-23 10:34:56 -0400282 goto out;
Christoph Hellwig45042302009-08-03 23:28:35 +0200283
Josef Bacik18e9e512010-03-23 10:34:56 -0400284 error = thaw_super(sb);
285 if (error) {
286 bdev->bd_fsfreeze_count++;
287 mutex_unlock(&bdev->bd_fsfreeze_mutex);
288 return error;
Nick Piggin585d3bc2009-02-25 10:44:19 +0100289 }
Josef Bacik18e9e512010-03-23 10:34:56 -0400290out:
Nick Piggin585d3bc2009-02-25 10:44:19 +0100291 mutex_unlock(&bdev->bd_fsfreeze_mutex);
292 return 0;
293}
294EXPORT_SYMBOL(thaw_bdev);
295
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296static int blkdev_writepage(struct page *page, struct writeback_control *wbc)
297{
298 return block_write_full_page(page, blkdev_get_block, wbc);
299}
300
301static int blkdev_readpage(struct file * file, struct page * page)
302{
303 return block_read_full_page(page, blkdev_get_block);
304}
305
Nick Piggin6272b5a2007-10-16 01:25:04 -0700306static int blkdev_write_begin(struct file *file, struct address_space *mapping,
307 loff_t pos, unsigned len, unsigned flags,
308 struct page **pagep, void **fsdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309{
Christoph Hellwig155130a2010-06-04 11:29:58 +0200310 return block_write_begin(mapping, pos, len, flags, pagep,
311 blkdev_get_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312}
313
Nick Piggin6272b5a2007-10-16 01:25:04 -0700314static int blkdev_write_end(struct file *file, struct address_space *mapping,
315 loff_t pos, unsigned len, unsigned copied,
316 struct page *page, void *fsdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317{
Nick Piggin6272b5a2007-10-16 01:25:04 -0700318 int ret;
319 ret = block_write_end(file, mapping, pos, len, copied, page, fsdata);
320
321 unlock_page(page);
322 page_cache_release(page);
323
324 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325}
326
327/*
328 * private llseek:
Al Viro496ad9a2013-01-23 17:07:38 -0500329 * for a block special file file_inode(file)->i_size is zero
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 * so we compute the size by hand (just as in block_read/write above)
331 */
Andrew Morton965c8e52012-12-17 15:59:39 -0800332static loff_t block_llseek(struct file *file, loff_t offset, int whence)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333{
334 struct inode *bd_inode = file->f_mapping->host;
335 loff_t size;
336 loff_t retval;
337
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800338 mutex_lock(&bd_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 size = i_size_read(bd_inode);
340
Josef Bacik06222e42011-07-18 13:21:38 -0400341 retval = -EINVAL;
Andrew Morton965c8e52012-12-17 15:59:39 -0800342 switch (whence) {
Josef Bacik06222e42011-07-18 13:21:38 -0400343 case SEEK_END:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 offset += size;
345 break;
Josef Bacik06222e42011-07-18 13:21:38 -0400346 case SEEK_CUR:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 offset += file->f_pos;
Josef Bacik06222e42011-07-18 13:21:38 -0400348 case SEEK_SET:
349 break;
350 default:
351 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 if (offset >= 0 && offset <= size) {
354 if (offset != file->f_pos) {
355 file->f_pos = offset;
356 }
357 retval = offset;
358 }
Josef Bacik06222e42011-07-18 13:21:38 -0400359out:
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800360 mutex_unlock(&bd_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 return retval;
362}
363
Josef Bacik02c24a82011-07-16 20:44:56 -0400364int blkdev_fsync(struct file *filp, loff_t start, loff_t end, int datasync)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365{
Anton Blanchardb8af67e2010-04-23 13:18:06 -0400366 struct inode *bd_inode = filp->f_mapping->host;
367 struct block_device *bdev = I_BDEV(bd_inode);
Christoph Hellwigab0a9732009-10-29 14:14:04 +0100368 int error;
Rafael J. Wysockida5aa862011-08-02 02:17:48 +0200369
370 error = filemap_write_and_wait_range(filp->f_mapping, start, end);
371 if (error)
372 return error;
Christoph Hellwigab0a9732009-10-29 14:14:04 +0100373
Anton Blanchardb8af67e2010-04-23 13:18:06 -0400374 /*
375 * There is no need to serialise calls to blkdev_issue_flush with
376 * i_mutex and doing so causes performance issues with concurrent
377 * O_SYNC writers to a block device.
378 */
Christoph Hellwigdd3932e2010-09-16 20:51:46 +0200379 error = blkdev_issue_flush(bdev, GFP_KERNEL, NULL);
Christoph Hellwigab0a9732009-10-29 14:14:04 +0100380 if (error == -EOPNOTSUPP)
381 error = 0;
Anton Blanchardb8af67e2010-04-23 13:18:06 -0400382
Christoph Hellwigab0a9732009-10-29 14:14:04 +0100383 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384}
Andrew Mortonb1dd3b22010-04-06 14:35:00 -0700385EXPORT_SYMBOL(blkdev_fsync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
387/*
388 * pseudo-fs
389 */
390
391static __cacheline_aligned_in_smp DEFINE_SPINLOCK(bdev_lock);
Christoph Lametere18b8902006-12-06 20:33:20 -0800392static struct kmem_cache * bdev_cachep __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393
394static struct inode *bdev_alloc_inode(struct super_block *sb)
395{
Christoph Lametere94b1762006-12-06 20:33:17 -0800396 struct bdev_inode *ei = kmem_cache_alloc(bdev_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 if (!ei)
398 return NULL;
399 return &ei->vfs_inode;
400}
401
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100402static void bdev_i_callback(struct rcu_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403{
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100404 struct inode *inode = container_of(head, struct inode, i_rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 struct bdev_inode *bdi = BDEV_I(inode);
406
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 kmem_cache_free(bdev_cachep, bdi);
408}
409
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100410static void bdev_destroy_inode(struct inode *inode)
411{
412 call_rcu(&inode->i_rcu, bdev_i_callback);
413}
414
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700415static void init_once(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416{
417 struct bdev_inode *ei = (struct bdev_inode *) foo;
418 struct block_device *bdev = &ei->bdev;
419
Christoph Lametera35afb82007-05-16 22:10:57 -0700420 memset(bdev, 0, sizeof(*bdev));
421 mutex_init(&bdev->bd_mutex);
Christoph Lametera35afb82007-05-16 22:10:57 -0700422 INIT_LIST_HEAD(&bdev->bd_inodes);
423 INIT_LIST_HEAD(&bdev->bd_list);
Tejun Heo49731ba2011-01-14 18:43:57 +0100424#ifdef CONFIG_SYSFS
425 INIT_LIST_HEAD(&bdev->bd_holder_disks);
426#endif
Christoph Lametera35afb82007-05-16 22:10:57 -0700427 inode_init_once(&ei->vfs_inode);
Takashi Satofcccf502009-01-09 16:40:59 -0800428 /* Initialize mutex for freeze. */
429 mutex_init(&bdev->bd_fsfreeze_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430}
431
432static inline void __bd_forget(struct inode *inode)
433{
434 list_del_init(&inode->i_devices);
435 inode->i_bdev = NULL;
436 inode->i_mapping = &inode->i_data;
437}
438
Al Virob57922d2010-06-07 14:34:48 -0400439static void bdev_evict_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440{
441 struct block_device *bdev = &BDEV_I(inode)->bdev;
442 struct list_head *p;
Al Virob57922d2010-06-07 14:34:48 -0400443 truncate_inode_pages(&inode->i_data, 0);
444 invalidate_inode_buffers(inode); /* is it needed here? */
Jan Karadbd57682012-05-03 14:48:02 +0200445 clear_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 spin_lock(&bdev_lock);
447 while ( (p = bdev->bd_inodes.next) != &bdev->bd_inodes ) {
448 __bd_forget(list_entry(p, struct inode, i_devices));
449 }
450 list_del_init(&bdev->bd_list);
451 spin_unlock(&bdev_lock);
452}
453
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800454static const struct super_operations bdev_sops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 .statfs = simple_statfs,
456 .alloc_inode = bdev_alloc_inode,
457 .destroy_inode = bdev_destroy_inode,
458 .drop_inode = generic_delete_inode,
Al Virob57922d2010-06-07 14:34:48 -0400459 .evict_inode = bdev_evict_inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460};
461
Al Viro51139ad2010-07-25 23:47:46 +0400462static struct dentry *bd_mount(struct file_system_type *fs_type,
463 int flags, const char *dev_name, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464{
Muthu Kumarb502bd12012-03-23 15:01:50 -0700465 return mount_pseudo(fs_type, "bdev:", &bdev_sops, NULL, BDEVFS_MAGIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466}
467
468static struct file_system_type bd_type = {
469 .name = "bdev",
Al Viro51139ad2010-07-25 23:47:46 +0400470 .mount = bd_mount,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 .kill_sb = kill_anon_super,
472};
473
Al Virof47ec3f2011-11-21 21:15:42 -0500474static struct super_block *blockdev_superblock __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475
476void __init bdev_cache_init(void)
477{
478 int err;
Sergey Senozhatskyace85772012-01-10 02:43:59 +0300479 static struct vfsmount *bd_mnt;
Denis ChengRqc2acf7b2008-12-01 14:34:56 -0800480
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 bdev_cachep = kmem_cache_create("bdev_cache", sizeof(struct bdev_inode),
Paul Jacksonfffb60f2006-03-24 03:16:06 -0800482 0, (SLAB_HWCACHE_ALIGN|SLAB_RECLAIM_ACCOUNT|
483 SLAB_MEM_SPREAD|SLAB_PANIC),
Paul Mundt20c2df82007-07-20 10:11:58 +0900484 init_once);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 err = register_filesystem(&bd_type);
486 if (err)
487 panic("Cannot register bdev pseudo-fs");
488 bd_mnt = kern_mount(&bd_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 if (IS_ERR(bd_mnt))
490 panic("Cannot create bdev pseudo-fs");
Sergey Senozhatskyace85772012-01-10 02:43:59 +0300491 blockdev_superblock = bd_mnt->mnt_sb; /* For writeback */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492}
493
494/*
495 * Most likely _very_ bad one - but then it's hardly critical for small
496 * /dev and can be fixed when somebody will need really large one.
497 * Keep in mind that it will be fed through icache hash function too.
498 */
499static inline unsigned long hash(dev_t dev)
500{
501 return MAJOR(dev)+MINOR(dev);
502}
503
504static int bdev_test(struct inode *inode, void *data)
505{
506 return BDEV_I(inode)->bdev.bd_dev == *(dev_t *)data;
507}
508
509static int bdev_set(struct inode *inode, void *data)
510{
511 BDEV_I(inode)->bdev.bd_dev = *(dev_t *)data;
512 return 0;
513}
514
515static LIST_HEAD(all_bdevs);
516
517struct block_device *bdget(dev_t dev)
518{
519 struct block_device *bdev;
520 struct inode *inode;
521
Denis ChengRqc2acf7b2008-12-01 14:34:56 -0800522 inode = iget5_locked(blockdev_superblock, hash(dev),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 bdev_test, bdev_set, &dev);
524
525 if (!inode)
526 return NULL;
527
528 bdev = &BDEV_I(inode)->bdev;
529
530 if (inode->i_state & I_NEW) {
531 bdev->bd_contains = NULL;
Lachlan McIlroy782b94c2011-06-30 11:01:45 +1000532 bdev->bd_super = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 bdev->bd_inode = inode;
534 bdev->bd_block_size = (1 << inode->i_blkbits);
535 bdev->bd_part_count = 0;
536 bdev->bd_invalidated = 0;
537 inode->i_mode = S_IFBLK;
538 inode->i_rdev = dev;
539 inode->i_bdev = bdev;
540 inode->i_data.a_ops = &def_blk_aops;
541 mapping_set_gfp_mask(&inode->i_data, GFP_USER);
542 inode->i_data.backing_dev_info = &default_backing_dev_info;
543 spin_lock(&bdev_lock);
544 list_add(&bdev->bd_list, &all_bdevs);
545 spin_unlock(&bdev_lock);
546 unlock_new_inode(inode);
547 }
548 return bdev;
549}
550
551EXPORT_SYMBOL(bdget);
552
Alan Jenkinsdddac6a2009-07-29 21:07:55 +0200553/**
554 * bdgrab -- Grab a reference to an already referenced block device
555 * @bdev: Block device to grab a reference to.
556 */
557struct block_device *bdgrab(struct block_device *bdev)
558{
Al Viro7de9c6ee2010-10-23 11:11:40 -0400559 ihold(bdev->bd_inode);
Alan Jenkinsdddac6a2009-07-29 21:07:55 +0200560 return bdev;
561}
Anatol Pomozovc1681bf2013-04-01 09:47:56 -0700562EXPORT_SYMBOL(bdgrab);
Alan Jenkinsdddac6a2009-07-29 21:07:55 +0200563
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564long nr_blockdev_pages(void)
565{
Matthias Kaehlcke203a2932007-07-15 23:40:23 -0700566 struct block_device *bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 long ret = 0;
568 spin_lock(&bdev_lock);
Matthias Kaehlcke203a2932007-07-15 23:40:23 -0700569 list_for_each_entry(bdev, &all_bdevs, bd_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 ret += bdev->bd_inode->i_mapping->nrpages;
571 }
572 spin_unlock(&bdev_lock);
573 return ret;
574}
575
576void bdput(struct block_device *bdev)
577{
578 iput(bdev->bd_inode);
579}
580
581EXPORT_SYMBOL(bdput);
582
583static struct block_device *bd_acquire(struct inode *inode)
584{
585 struct block_device *bdev;
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700586
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 spin_lock(&bdev_lock);
588 bdev = inode->i_bdev;
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700589 if (bdev) {
Al Viro7de9c6ee2010-10-23 11:11:40 -0400590 ihold(bdev->bd_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 spin_unlock(&bdev_lock);
592 return bdev;
593 }
594 spin_unlock(&bdev_lock);
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700595
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 bdev = bdget(inode->i_rdev);
597 if (bdev) {
598 spin_lock(&bdev_lock);
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700599 if (!inode->i_bdev) {
600 /*
Al Viro7de9c6ee2010-10-23 11:11:40 -0400601 * We take an additional reference to bd_inode,
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700602 * and it's released in clear_inode() of inode.
603 * So, we can access it via ->i_mapping always
604 * without igrab().
605 */
Al Viro7de9c6ee2010-10-23 11:11:40 -0400606 ihold(bdev->bd_inode);
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700607 inode->i_bdev = bdev;
608 inode->i_mapping = bdev->bd_inode->i_mapping;
609 list_add(&inode->i_devices, &bdev->bd_inodes);
610 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 spin_unlock(&bdev_lock);
612 }
613 return bdev;
614}
615
Al Virof47ec3f2011-11-21 21:15:42 -0500616static inline int sb_is_blkdev_sb(struct super_block *sb)
617{
618 return sb == blockdev_superblock;
619}
620
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621/* Call when you free inode */
622
623void bd_forget(struct inode *inode)
624{
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700625 struct block_device *bdev = NULL;
626
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 spin_lock(&bdev_lock);
Yan Hongb4ea2ea2013-04-30 15:26:47 -0700628 if (!sb_is_blkdev_sb(inode->i_sb))
629 bdev = inode->i_bdev;
630 __bd_forget(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 spin_unlock(&bdev_lock);
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700632
633 if (bdev)
634 iput(bdev->bd_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635}
636
Tejun Heo1a3cbbc2010-04-07 18:52:29 +0900637/**
638 * bd_may_claim - test whether a block device can be claimed
639 * @bdev: block device of interest
640 * @whole: whole block device containing @bdev, may equal @bdev
641 * @holder: holder trying to claim @bdev
642 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300643 * Test whether @bdev can be claimed by @holder.
Tejun Heo1a3cbbc2010-04-07 18:52:29 +0900644 *
645 * CONTEXT:
646 * spin_lock(&bdev_lock).
647 *
648 * RETURNS:
649 * %true if @bdev can be claimed, %false otherwise.
650 */
651static bool bd_may_claim(struct block_device *bdev, struct block_device *whole,
652 void *holder)
653{
654 if (bdev->bd_holder == holder)
655 return true; /* already a holder */
656 else if (bdev->bd_holder != NULL)
657 return false; /* held by someone else */
658 else if (bdev->bd_contains == bdev)
659 return true; /* is a whole device which isn't held */
660
Tejun Heoe525fd82010-11-13 11:55:17 +0100661 else if (whole->bd_holder == bd_may_claim)
Tejun Heo1a3cbbc2010-04-07 18:52:29 +0900662 return true; /* is a partition of a device that is being partitioned */
663 else if (whole->bd_holder != NULL)
664 return false; /* is a partition of a held device */
665 else
666 return true; /* is a partition of an un-held device */
667}
668
669/**
Tejun Heo6b4517a2010-04-07 18:53:59 +0900670 * bd_prepare_to_claim - prepare to claim a block device
671 * @bdev: block device of interest
672 * @whole: the whole device containing @bdev, may equal @bdev
673 * @holder: holder trying to claim @bdev
674 *
675 * Prepare to claim @bdev. This function fails if @bdev is already
676 * claimed by another holder and waits if another claiming is in
677 * progress. This function doesn't actually claim. On successful
678 * return, the caller has ownership of bd_claiming and bd_holder[s].
679 *
680 * CONTEXT:
681 * spin_lock(&bdev_lock). Might release bdev_lock, sleep and regrab
682 * it multiple times.
683 *
684 * RETURNS:
685 * 0 if @bdev can be claimed, -EBUSY otherwise.
686 */
687static int bd_prepare_to_claim(struct block_device *bdev,
688 struct block_device *whole, void *holder)
689{
690retry:
691 /* if someone else claimed, fail */
692 if (!bd_may_claim(bdev, whole, holder))
693 return -EBUSY;
694
Tejun Heoe75aa852010-08-04 17:59:39 +0200695 /* if claiming is already in progress, wait for it to finish */
696 if (whole->bd_claiming) {
Tejun Heo6b4517a2010-04-07 18:53:59 +0900697 wait_queue_head_t *wq = bit_waitqueue(&whole->bd_claiming, 0);
698 DEFINE_WAIT(wait);
699
700 prepare_to_wait(wq, &wait, TASK_UNINTERRUPTIBLE);
701 spin_unlock(&bdev_lock);
702 schedule();
703 finish_wait(wq, &wait);
704 spin_lock(&bdev_lock);
705 goto retry;
706 }
707
708 /* yay, all mine */
709 return 0;
710}
711
712/**
713 * bd_start_claiming - start claiming a block device
714 * @bdev: block device of interest
715 * @holder: holder trying to claim @bdev
716 *
717 * @bdev is about to be opened exclusively. Check @bdev can be opened
718 * exclusively and mark that an exclusive open is in progress. Each
719 * successful call to this function must be matched with a call to
Nick Pigginb0018362010-05-26 01:51:19 +1000720 * either bd_finish_claiming() or bd_abort_claiming() (which do not
721 * fail).
722 *
723 * This function is used to gain exclusive access to the block device
724 * without actually causing other exclusive open attempts to fail. It
725 * should be used when the open sequence itself requires exclusive
726 * access but may subsequently fail.
Tejun Heo6b4517a2010-04-07 18:53:59 +0900727 *
728 * CONTEXT:
729 * Might sleep.
730 *
731 * RETURNS:
732 * Pointer to the block device containing @bdev on success, ERR_PTR()
733 * value on failure.
734 */
735static struct block_device *bd_start_claiming(struct block_device *bdev,
736 void *holder)
737{
738 struct gendisk *disk;
739 struct block_device *whole;
740 int partno, err;
741
742 might_sleep();
743
744 /*
745 * @bdev might not have been initialized properly yet, look up
746 * and grab the outer block device the hard way.
747 */
748 disk = get_gendisk(bdev->bd_dev, &partno);
749 if (!disk)
750 return ERR_PTR(-ENXIO);
751
Tejun Heod4c208b2011-06-13 12:45:48 +0200752 /*
753 * Normally, @bdev should equal what's returned from bdget_disk()
754 * if partno is 0; however, some drivers (floppy) use multiple
755 * bdev's for the same physical device and @bdev may be one of the
756 * aliases. Keep @bdev if partno is 0. This means claimer
757 * tracking is broken for those devices but it has always been that
758 * way.
759 */
760 if (partno)
761 whole = bdget_disk(disk, 0);
762 else
763 whole = bdgrab(bdev);
764
Nick Piggincf342572010-05-26 01:50:21 +1000765 module_put(disk->fops->owner);
Tejun Heo6b4517a2010-04-07 18:53:59 +0900766 put_disk(disk);
767 if (!whole)
768 return ERR_PTR(-ENOMEM);
769
770 /* prepare to claim, if successful, mark claiming in progress */
771 spin_lock(&bdev_lock);
772
773 err = bd_prepare_to_claim(bdev, whole, holder);
774 if (err == 0) {
775 whole->bd_claiming = holder;
776 spin_unlock(&bdev_lock);
777 return whole;
778 } else {
779 spin_unlock(&bdev_lock);
780 bdput(whole);
781 return ERR_PTR(err);
782 }
783}
784
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800785#ifdef CONFIG_SYSFS
Tejun Heo49731ba2011-01-14 18:43:57 +0100786struct bd_holder_disk {
787 struct list_head list;
788 struct gendisk *disk;
789 int refcnt;
790};
791
792static struct bd_holder_disk *bd_find_holder_disk(struct block_device *bdev,
793 struct gendisk *disk)
794{
795 struct bd_holder_disk *holder;
796
797 list_for_each_entry(holder, &bdev->bd_holder_disks, list)
798 if (holder->disk == disk)
799 return holder;
800 return NULL;
801}
802
Andrew Morton4d7dd8f2006-09-29 01:58:56 -0700803static int add_symlink(struct kobject *from, struct kobject *to)
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800804{
Andrew Morton4d7dd8f2006-09-29 01:58:56 -0700805 return sysfs_create_link(from, to, kobject_name(to));
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800806}
807
808static void del_symlink(struct kobject *from, struct kobject *to)
809{
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800810 sysfs_remove_link(from, kobject_name(to));
811}
812
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800813/**
Tejun Heoe09b4572010-11-13 11:55:17 +0100814 * bd_link_disk_holder - create symlinks between holding disk and slave bdev
815 * @bdev: the claimed slave bdev
816 * @disk: the holding disk
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -0500817 *
Tejun Heo49731ba2011-01-14 18:43:57 +0100818 * DON'T USE THIS UNLESS YOU'RE ALREADY USING IT.
819 *
Tejun Heoe09b4572010-11-13 11:55:17 +0100820 * This functions creates the following sysfs symlinks.
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -0500821 *
Tejun Heoe09b4572010-11-13 11:55:17 +0100822 * - from "slaves" directory of the holder @disk to the claimed @bdev
823 * - from "holders" directory of the @bdev to the holder @disk
824 *
825 * For example, if /dev/dm-0 maps to /dev/sda and disk for dm-0 is
826 * passed to bd_link_disk_holder(), then:
827 *
828 * /sys/block/dm-0/slaves/sda --> /sys/block/sda
829 * /sys/block/sda/holders/dm-0 --> /sys/block/dm-0
830 *
831 * The caller must have claimed @bdev before calling this function and
832 * ensure that both @bdev and @disk are valid during the creation and
833 * lifetime of these symlinks.
834 *
835 * CONTEXT:
836 * Might sleep.
837 *
838 * RETURNS:
839 * 0 on success, -errno on failure.
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -0500840 */
Tejun Heoe09b4572010-11-13 11:55:17 +0100841int bd_link_disk_holder(struct block_device *bdev, struct gendisk *disk)
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -0500842{
Tejun Heo49731ba2011-01-14 18:43:57 +0100843 struct bd_holder_disk *holder;
Tejun Heoe09b4572010-11-13 11:55:17 +0100844 int ret = 0;
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800845
Peter Zijlstra2e7b6512006-12-08 02:36:13 -0800846 mutex_lock(&bdev->bd_mutex);
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -0500847
Tejun Heo49731ba2011-01-14 18:43:57 +0100848 WARN_ON_ONCE(!bdev->bd_holder);
Johannes Weiner4e916722007-07-15 23:41:25 -0700849
Tejun Heoe09b4572010-11-13 11:55:17 +0100850 /* FIXME: remove the following once add_disk() handles errors */
851 if (WARN_ON(!disk->slave_dir || !bdev->bd_part->holder_dir))
852 goto out_unlock;
Johannes Weiner4e916722007-07-15 23:41:25 -0700853
Tejun Heo49731ba2011-01-14 18:43:57 +0100854 holder = bd_find_holder_disk(bdev, disk);
855 if (holder) {
856 holder->refcnt++;
Tejun Heoe09b4572010-11-13 11:55:17 +0100857 goto out_unlock;
858 }
859
Tejun Heo49731ba2011-01-14 18:43:57 +0100860 holder = kzalloc(sizeof(*holder), GFP_KERNEL);
861 if (!holder) {
862 ret = -ENOMEM;
863 goto out_unlock;
864 }
865
866 INIT_LIST_HEAD(&holder->list);
867 holder->disk = disk;
868 holder->refcnt = 1;
869
870 ret = add_symlink(disk->slave_dir, &part_to_dev(bdev->bd_part)->kobj);
871 if (ret)
872 goto out_free;
873
874 ret = add_symlink(bdev->bd_part->holder_dir, &disk_to_dev(disk)->kobj);
875 if (ret)
876 goto out_del;
Tejun Heoe7407d12011-02-24 09:56:32 +0100877 /*
878 * bdev could be deleted beneath us which would implicitly destroy
879 * the holder directory. Hold on to it.
880 */
881 kobject_get(bdev->bd_part->holder_dir);
Tejun Heo49731ba2011-01-14 18:43:57 +0100882
883 list_add(&holder->list, &bdev->bd_holder_disks);
884 goto out_unlock;
885
886out_del:
887 del_symlink(disk->slave_dir, &part_to_dev(bdev->bd_part)->kobj);
888out_free:
889 kfree(holder);
Tejun Heoe09b4572010-11-13 11:55:17 +0100890out_unlock:
Jun'ichi Nomurab4cf1b72006-03-27 01:18:00 -0800891 mutex_unlock(&bdev->bd_mutex);
Tejun Heoe09b4572010-11-13 11:55:17 +0100892 return ret;
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800893}
Tejun Heoe09b4572010-11-13 11:55:17 +0100894EXPORT_SYMBOL_GPL(bd_link_disk_holder);
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800895
Tejun Heo49731ba2011-01-14 18:43:57 +0100896/**
897 * bd_unlink_disk_holder - destroy symlinks created by bd_link_disk_holder()
898 * @bdev: the calimed slave bdev
899 * @disk: the holding disk
900 *
901 * DON'T USE THIS UNLESS YOU'RE ALREADY USING IT.
902 *
903 * CONTEXT:
904 * Might sleep.
905 */
906void bd_unlink_disk_holder(struct block_device *bdev, struct gendisk *disk)
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800907{
Tejun Heo49731ba2011-01-14 18:43:57 +0100908 struct bd_holder_disk *holder;
Tejun Heoe09b4572010-11-13 11:55:17 +0100909
Tejun Heo49731ba2011-01-14 18:43:57 +0100910 mutex_lock(&bdev->bd_mutex);
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800911
Tejun Heo49731ba2011-01-14 18:43:57 +0100912 holder = bd_find_holder_disk(bdev, disk);
913
914 if (!WARN_ON_ONCE(holder == NULL) && !--holder->refcnt) {
915 del_symlink(disk->slave_dir, &part_to_dev(bdev->bd_part)->kobj);
916 del_symlink(bdev->bd_part->holder_dir,
917 &disk_to_dev(disk)->kobj);
Tejun Heoe7407d12011-02-24 09:56:32 +0100918 kobject_put(bdev->bd_part->holder_dir);
Tejun Heo49731ba2011-01-14 18:43:57 +0100919 list_del_init(&holder->list);
920 kfree(holder);
921 }
922
923 mutex_unlock(&bdev->bd_mutex);
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800924}
Tejun Heo49731ba2011-01-14 18:43:57 +0100925EXPORT_SYMBOL_GPL(bd_unlink_disk_holder);
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800926#endif
927
Andrew Patterson0c002c22008-09-04 14:27:20 -0600928/**
Andrew Patterson56ade442008-09-04 14:27:40 -0600929 * flush_disk - invalidates all buffer-cache entries on a disk
930 *
931 * @bdev: struct block device to be flushed
Randy Dunlape6eb5ce2011-02-26 10:54:00 -0800932 * @kill_dirty: flag to guide handling of dirty inodes
Andrew Patterson56ade442008-09-04 14:27:40 -0600933 *
934 * Invalidates all buffer-cache entries on a disk. It should be called
935 * when a disk has been changed -- either by a media change or online
936 * resize.
937 */
NeilBrown93b270f2011-02-24 17:25:47 +1100938static void flush_disk(struct block_device *bdev, bool kill_dirty)
Andrew Patterson56ade442008-09-04 14:27:40 -0600939{
NeilBrown93b270f2011-02-24 17:25:47 +1100940 if (__invalidate_device(bdev, kill_dirty)) {
Andrew Patterson56ade442008-09-04 14:27:40 -0600941 char name[BDEVNAME_SIZE] = "";
942
943 if (bdev->bd_disk)
944 disk_name(bdev->bd_disk, 0, name);
945 printk(KERN_WARNING "VFS: busy inodes on changed media or "
946 "resized disk %s\n", name);
947 }
948
949 if (!bdev->bd_disk)
950 return;
Tejun Heod27769e2011-08-23 20:01:04 +0200951 if (disk_part_scan_enabled(bdev->bd_disk))
Andrew Patterson56ade442008-09-04 14:27:40 -0600952 bdev->bd_invalidated = 1;
953}
954
955/**
Randy Dunlap57d1b532008-10-09 10:42:38 +0200956 * check_disk_size_change - checks for disk size change and adjusts bdev size.
Andrew Pattersonc3279d12008-09-04 14:27:25 -0600957 * @disk: struct gendisk to check
958 * @bdev: struct bdev to adjust.
959 *
960 * This routine checks to see if the bdev size does not match the disk size
961 * and adjusts it if it differs.
962 */
963void check_disk_size_change(struct gendisk *disk, struct block_device *bdev)
964{
965 loff_t disk_size, bdev_size;
966
967 disk_size = (loff_t)get_capacity(disk) << 9;
968 bdev_size = i_size_read(bdev->bd_inode);
969 if (disk_size != bdev_size) {
970 char name[BDEVNAME_SIZE];
971
972 disk_name(disk, 0, name);
973 printk(KERN_INFO
974 "%s: detected capacity change from %lld to %lld\n",
975 name, bdev_size, disk_size);
976 i_size_write(bdev->bd_inode, disk_size);
NeilBrown93b270f2011-02-24 17:25:47 +1100977 flush_disk(bdev, false);
Andrew Pattersonc3279d12008-09-04 14:27:25 -0600978 }
979}
980EXPORT_SYMBOL(check_disk_size_change);
981
982/**
Randy Dunlap57d1b532008-10-09 10:42:38 +0200983 * revalidate_disk - wrapper for lower-level driver's revalidate_disk call-back
Andrew Patterson0c002c22008-09-04 14:27:20 -0600984 * @disk: struct gendisk to be revalidated
985 *
986 * This routine is a wrapper for lower-level driver's revalidate_disk
987 * call-backs. It is used to do common pre and post operations needed
988 * for all revalidate_disk operations.
989 */
990int revalidate_disk(struct gendisk *disk)
991{
Andrew Pattersonc3279d12008-09-04 14:27:25 -0600992 struct block_device *bdev;
Andrew Patterson0c002c22008-09-04 14:27:20 -0600993 int ret = 0;
994
995 if (disk->fops->revalidate_disk)
996 ret = disk->fops->revalidate_disk(disk);
997
Andrew Pattersonc3279d12008-09-04 14:27:25 -0600998 bdev = bdget_disk(disk, 0);
999 if (!bdev)
1000 return ret;
1001
1002 mutex_lock(&bdev->bd_mutex);
1003 check_disk_size_change(disk, bdev);
MITSUNARI Shigeo7630b662013-02-21 16:42:01 -08001004 bdev->bd_invalidated = 0;
Andrew Pattersonc3279d12008-09-04 14:27:25 -06001005 mutex_unlock(&bdev->bd_mutex);
1006 bdput(bdev);
Andrew Patterson0c002c22008-09-04 14:27:20 -06001007 return ret;
1008}
1009EXPORT_SYMBOL(revalidate_disk);
1010
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011/*
1012 * This routine checks whether a removable media has been changed,
1013 * and invalidates all buffer-cache-entries in that case. This
1014 * is a relatively slow routine, so we have to try to minimize using
1015 * it. Thus it is called only upon a 'mount' or 'open'. This
1016 * is the best way of combining speed and utility, I think.
1017 * People changing diskettes in the middle of an operation deserve
1018 * to lose :-)
1019 */
1020int check_disk_change(struct block_device *bdev)
1021{
1022 struct gendisk *disk = bdev->bd_disk;
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -07001023 const struct block_device_operations *bdops = disk->fops;
Tejun Heo77ea8872010-12-08 20:57:37 +01001024 unsigned int events;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025
Tejun Heo77ea8872010-12-08 20:57:37 +01001026 events = disk_clear_events(disk, DISK_EVENT_MEDIA_CHANGE |
1027 DISK_EVENT_EJECT_REQUEST);
1028 if (!(events & DISK_EVENT_MEDIA_CHANGE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 return 0;
1030
NeilBrown93b270f2011-02-24 17:25:47 +11001031 flush_disk(bdev, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 if (bdops->revalidate_disk)
1033 bdops->revalidate_disk(bdev->bd_disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 return 1;
1035}
1036
1037EXPORT_SYMBOL(check_disk_change);
1038
1039void bd_set_size(struct block_device *bdev, loff_t size)
1040{
Martin K. Petersene1defc42009-05-22 17:17:49 -04001041 unsigned bsize = bdev_logical_block_size(bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042
Guo Chaod646a022013-02-21 15:16:42 -08001043 mutex_lock(&bdev->bd_inode->i_mutex);
1044 i_size_write(bdev->bd_inode, size);
1045 mutex_unlock(&bdev->bd_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 while (bsize < PAGE_CACHE_SIZE) {
1047 if (size & bsize)
1048 break;
1049 bsize <<= 1;
1050 }
1051 bdev->bd_block_size = bsize;
1052 bdev->bd_inode->i_blkbits = blksize_bits(bsize);
1053}
1054EXPORT_SYMBOL(bd_set_size);
1055
Al Viro4385bab2013-05-05 22:11:03 -04001056static void __blkdev_put(struct block_device *bdev, fmode_t mode, int for_part);
NeilBrown37be4122006-12-08 02:36:16 -08001057
Peter Zijlstra6d740cd2007-02-20 13:58:18 -08001058/*
1059 * bd_mutex locking:
1060 *
1061 * mutex_lock(part->bd_mutex)
1062 * mutex_lock_nested(whole->bd_mutex, 1)
1063 */
1064
Al Viro572c4892007-10-08 13:24:05 -04001065static int __blkdev_get(struct block_device *bdev, fmode_t mode, int for_part)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 struct gendisk *disk;
Tejun Heo523e1d32011-10-19 14:31:07 +02001068 struct module *owner;
Pavel Emelyanov7db9cfd2008-06-05 22:46:27 -07001069 int ret;
Tejun Heocf771cb2008-09-03 09:01:09 +02001070 int partno;
Al Virofe6e9c12008-06-23 08:30:55 -04001071 int perm = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072
Al Viro572c4892007-10-08 13:24:05 -04001073 if (mode & FMODE_READ)
Al Virofe6e9c12008-06-23 08:30:55 -04001074 perm |= MAY_READ;
Al Viro572c4892007-10-08 13:24:05 -04001075 if (mode & FMODE_WRITE)
Al Virofe6e9c12008-06-23 08:30:55 -04001076 perm |= MAY_WRITE;
1077 /*
1078 * hooks: /n/, see "layering violations".
1079 */
Chris Wrightb7300b72010-08-10 18:02:55 -07001080 if (!for_part) {
1081 ret = devcgroup_inode_permission(bdev->bd_inode, perm);
1082 if (ret != 0) {
1083 bdput(bdev);
1084 return ret;
1085 }
Al Viro82666022008-08-01 05:32:04 -04001086 }
Pavel Emelyanov7db9cfd2008-06-05 22:46:27 -07001087
NeilBrownd3374822009-01-09 08:31:10 +11001088 restart:
Tejun Heo0762b8b2008-08-25 19:56:12 +09001089
Tejun Heo89f97492008-11-05 10:21:06 +01001090 ret = -ENXIO;
Tejun Heocf771cb2008-09-03 09:01:09 +02001091 disk = get_gendisk(bdev->bd_dev, &partno);
Tejun Heo0762b8b2008-08-25 19:56:12 +09001092 if (!disk)
Arnd Bergmann6e9624b2010-08-07 18:25:34 +02001093 goto out;
Tejun Heo523e1d32011-10-19 14:31:07 +02001094 owner = disk->fops->owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095
Tejun Heo69e02c52011-03-09 19:54:27 +01001096 disk_block_events(disk);
NeilBrown6796bf52006-12-08 02:36:16 -08001097 mutex_lock_nested(&bdev->bd_mutex, for_part);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 if (!bdev->bd_openers) {
1099 bdev->bd_disk = disk;
Andi Kleen87192a22012-01-12 17:20:34 -08001100 bdev->bd_queue = disk->queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 bdev->bd_contains = bdev;
Tejun Heocf771cb2008-09-03 09:01:09 +02001102 if (!partno) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 struct backing_dev_info *bdi;
Tejun Heo89f97492008-11-05 10:21:06 +01001104
1105 ret = -ENXIO;
1106 bdev->bd_part = disk_get_part(disk, partno);
1107 if (!bdev->bd_part)
1108 goto out_clear;
1109
Tejun Heo1196f8b2011-04-21 20:54:45 +02001110 ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 if (disk->fops->open) {
Al Viro572c4892007-10-08 13:24:05 -04001112 ret = disk->fops->open(bdev, mode);
NeilBrownd3374822009-01-09 08:31:10 +11001113 if (ret == -ERESTARTSYS) {
1114 /* Lost a race with 'disk' being
1115 * deleted, try again.
1116 * See md.c
1117 */
1118 disk_put_part(bdev->bd_part);
1119 bdev->bd_part = NULL;
NeilBrownd3374822009-01-09 08:31:10 +11001120 bdev->bd_disk = NULL;
Andi Kleen87192a22012-01-12 17:20:34 -08001121 bdev->bd_queue = NULL;
NeilBrownd3374822009-01-09 08:31:10 +11001122 mutex_unlock(&bdev->bd_mutex);
Tejun Heo69e02c52011-03-09 19:54:27 +01001123 disk_unblock_events(disk);
Tejun Heo69e02c52011-03-09 19:54:27 +01001124 put_disk(disk);
Tejun Heo523e1d32011-10-19 14:31:07 +02001125 module_put(owner);
NeilBrownd3374822009-01-09 08:31:10 +11001126 goto restart;
1127 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 }
Tejun Heo7e697232011-05-23 13:26:07 +02001129
Guo Chaode331272013-02-21 15:16:43 -08001130 if (!ret) {
Tejun Heo7e697232011-05-23 13:26:07 +02001131 bd_set_size(bdev,(loff_t)get_capacity(disk)<<9);
1132 bdi = blk_get_backing_dev_info(bdev);
1133 if (bdi == NULL)
1134 bdi = &default_backing_dev_info;
1135 bdev_inode_switch_bdi(bdev->bd_inode, bdi);
1136 }
1137
Tejun Heo1196f8b2011-04-21 20:54:45 +02001138 /*
1139 * If the device is invalidated, rescan partition
1140 * if open succeeded or failed with -ENOMEDIUM.
1141 * The latter is necessary to prevent ghost
1142 * partitions on a removed medium.
1143 */
Jun'ichi Nomurafe316bf2012-03-02 10:38:33 +01001144 if (bdev->bd_invalidated) {
1145 if (!ret)
1146 rescan_partitions(disk, bdev);
1147 else if (ret == -ENOMEDIUM)
1148 invalidate_partitions(disk, bdev);
1149 }
Tejun Heo1196f8b2011-04-21 20:54:45 +02001150 if (ret)
1151 goto out_clear;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 struct block_device *whole;
1154 whole = bdget_disk(disk, 0);
1155 ret = -ENOMEM;
1156 if (!whole)
Tejun Heo0762b8b2008-08-25 19:56:12 +09001157 goto out_clear;
NeilBrown37be4122006-12-08 02:36:16 -08001158 BUG_ON(for_part);
Al Viro572c4892007-10-08 13:24:05 -04001159 ret = __blkdev_get(whole, mode, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 if (ret)
Tejun Heo0762b8b2008-08-25 19:56:12 +09001161 goto out_clear;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 bdev->bd_contains = whole;
Dave Chinnera5491e02010-10-21 11:49:26 +11001163 bdev_inode_switch_bdi(bdev->bd_inode,
1164 whole->bd_inode->i_data.backing_dev_info);
Tejun Heo89f97492008-11-05 10:21:06 +01001165 bdev->bd_part = disk_get_part(disk, partno);
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001166 if (!(disk->flags & GENHD_FL_UP) ||
Tejun Heo89f97492008-11-05 10:21:06 +01001167 !bdev->bd_part || !bdev->bd_part->nr_sects) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 ret = -ENXIO;
Tejun Heo0762b8b2008-08-25 19:56:12 +09001169 goto out_clear;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 }
Tejun Heo89f97492008-11-05 10:21:06 +01001171 bd_set_size(bdev, (loff_t)bdev->bd_part->nr_sects << 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 }
1173 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 if (bdev->bd_contains == bdev) {
Tejun Heo1196f8b2011-04-21 20:54:45 +02001175 ret = 0;
1176 if (bdev->bd_disk->fops->open)
Al Viro572c4892007-10-08 13:24:05 -04001177 ret = bdev->bd_disk->fops->open(bdev, mode);
Tejun Heo1196f8b2011-04-21 20:54:45 +02001178 /* the same as first opener case, read comment there */
Jun'ichi Nomurafe316bf2012-03-02 10:38:33 +01001179 if (bdev->bd_invalidated) {
1180 if (!ret)
1181 rescan_partitions(bdev->bd_disk, bdev);
1182 else if (ret == -ENOMEDIUM)
1183 invalidate_partitions(bdev->bd_disk, bdev);
1184 }
Tejun Heo1196f8b2011-04-21 20:54:45 +02001185 if (ret)
1186 goto out_unlock_bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 }
Tejun Heo69e02c52011-03-09 19:54:27 +01001188 /* only one opener holds refs to the module and disk */
Tejun Heo69e02c52011-03-09 19:54:27 +01001189 put_disk(disk);
Tejun Heo523e1d32011-10-19 14:31:07 +02001190 module_put(owner);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 }
1192 bdev->bd_openers++;
NeilBrown37be4122006-12-08 02:36:16 -08001193 if (for_part)
1194 bdev->bd_part_count++;
Arjan van de Venc039e312006-03-23 03:00:28 -08001195 mutex_unlock(&bdev->bd_mutex);
Tejun Heo69e02c52011-03-09 19:54:27 +01001196 disk_unblock_events(disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 return 0;
1198
Tejun Heo0762b8b2008-08-25 19:56:12 +09001199 out_clear:
Tejun Heo89f97492008-11-05 10:21:06 +01001200 disk_put_part(bdev->bd_part);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 bdev->bd_disk = NULL;
Tejun Heo0762b8b2008-08-25 19:56:12 +09001202 bdev->bd_part = NULL;
Andi Kleen87192a22012-01-12 17:20:34 -08001203 bdev->bd_queue = NULL;
Dave Chinnera5491e02010-10-21 11:49:26 +11001204 bdev_inode_switch_bdi(bdev->bd_inode, &default_backing_dev_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 if (bdev != bdev->bd_contains)
Al Viro572c4892007-10-08 13:24:05 -04001206 __blkdev_put(bdev->bd_contains, mode, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 bdev->bd_contains = NULL;
Tejun Heo0762b8b2008-08-25 19:56:12 +09001208 out_unlock_bdev:
Arjan van de Venc039e312006-03-23 03:00:28 -08001209 mutex_unlock(&bdev->bd_mutex);
Tejun Heo69e02c52011-03-09 19:54:27 +01001210 disk_unblock_events(disk);
Tejun Heo0762b8b2008-08-25 19:56:12 +09001211 put_disk(disk);
Tejun Heo523e1d32011-10-19 14:31:07 +02001212 module_put(owner);
Dan Carpenter4345cab2011-03-19 13:53:31 +01001213 out:
Tejun Heo0762b8b2008-08-25 19:56:12 +09001214 bdput(bdev);
1215
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 return ret;
1217}
1218
Tejun Heod4d77622010-11-13 11:55:18 +01001219/**
1220 * blkdev_get - open a block device
1221 * @bdev: block_device to open
1222 * @mode: FMODE_* mask
1223 * @holder: exclusive holder identifier
1224 *
1225 * Open @bdev with @mode. If @mode includes %FMODE_EXCL, @bdev is
1226 * open with exclusive access. Specifying %FMODE_EXCL with %NULL
1227 * @holder is invalid. Exclusive opens may nest for the same @holder.
1228 *
1229 * On success, the reference count of @bdev is unchanged. On failure,
1230 * @bdev is put.
1231 *
1232 * CONTEXT:
1233 * Might sleep.
1234 *
1235 * RETURNS:
1236 * 0 on success, -errno on failure.
1237 */
Tejun Heoe525fd82010-11-13 11:55:17 +01001238int blkdev_get(struct block_device *bdev, fmode_t mode, void *holder)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239{
Tejun Heoe525fd82010-11-13 11:55:17 +01001240 struct block_device *whole = NULL;
1241 int res;
1242
1243 WARN_ON_ONCE((mode & FMODE_EXCL) && !holder);
1244
1245 if ((mode & FMODE_EXCL) && holder) {
1246 whole = bd_start_claiming(bdev, holder);
1247 if (IS_ERR(whole)) {
1248 bdput(bdev);
1249 return PTR_ERR(whole);
1250 }
1251 }
1252
1253 res = __blkdev_get(bdev, mode, 0);
1254
1255 if (whole) {
Tejun Heod4dc2102011-04-21 20:54:46 +02001256 struct gendisk *disk = whole->bd_disk;
1257
Tejun Heo6a027ef2010-11-13 11:55:17 +01001258 /* finish claiming */
Tejun Heo77ea8872010-12-08 20:57:37 +01001259 mutex_lock(&bdev->bd_mutex);
Tejun Heo6a027ef2010-11-13 11:55:17 +01001260 spin_lock(&bdev_lock);
1261
Tejun Heo77ea8872010-12-08 20:57:37 +01001262 if (!res) {
Tejun Heo6a027ef2010-11-13 11:55:17 +01001263 BUG_ON(!bd_may_claim(bdev, whole, holder));
1264 /*
1265 * Note that for a whole device bd_holders
1266 * will be incremented twice, and bd_holder
1267 * will be set to bd_may_claim before being
1268 * set to holder
1269 */
1270 whole->bd_holders++;
1271 whole->bd_holder = bd_may_claim;
1272 bdev->bd_holders++;
1273 bdev->bd_holder = holder;
1274 }
1275
1276 /* tell others that we're done */
1277 BUG_ON(whole->bd_claiming != holder);
1278 whole->bd_claiming = NULL;
1279 wake_up_bit(&whole->bd_claiming, 0);
1280
1281 spin_unlock(&bdev_lock);
Tejun Heo77ea8872010-12-08 20:57:37 +01001282
1283 /*
Tejun Heod4dc2102011-04-21 20:54:46 +02001284 * Block event polling for write claims if requested. Any
1285 * write holder makes the write_holder state stick until
1286 * all are released. This is good enough and tracking
1287 * individual writeable reference is too fragile given the
1288 * way @mode is used in blkdev_get/put().
Tejun Heo77ea8872010-12-08 20:57:37 +01001289 */
Tejun Heo4c49ff32011-06-01 08:27:41 +02001290 if (!res && (mode & FMODE_WRITE) && !bdev->bd_write_holder &&
1291 (disk->flags & GENHD_FL_BLOCK_EVENTS_ON_EXCL_WRITE)) {
Tejun Heo77ea8872010-12-08 20:57:37 +01001292 bdev->bd_write_holder = true;
Tejun Heod4dc2102011-04-21 20:54:46 +02001293 disk_block_events(disk);
Tejun Heo77ea8872010-12-08 20:57:37 +01001294 }
1295
1296 mutex_unlock(&bdev->bd_mutex);
Tejun Heo6a027ef2010-11-13 11:55:17 +01001297 bdput(whole);
Tejun Heoe525fd82010-11-13 11:55:17 +01001298 }
1299
1300 return res;
NeilBrown37be4122006-12-08 02:36:16 -08001301}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302EXPORT_SYMBOL(blkdev_get);
1303
Tejun Heod4d77622010-11-13 11:55:18 +01001304/**
1305 * blkdev_get_by_path - open a block device by name
1306 * @path: path to the block device to open
1307 * @mode: FMODE_* mask
1308 * @holder: exclusive holder identifier
1309 *
1310 * Open the blockdevice described by the device file at @path. @mode
1311 * and @holder are identical to blkdev_get().
1312 *
1313 * On success, the returned block_device has reference count of one.
1314 *
1315 * CONTEXT:
1316 * Might sleep.
1317 *
1318 * RETURNS:
1319 * Pointer to block_device on success, ERR_PTR(-errno) on failure.
1320 */
1321struct block_device *blkdev_get_by_path(const char *path, fmode_t mode,
1322 void *holder)
1323{
1324 struct block_device *bdev;
1325 int err;
1326
1327 bdev = lookup_bdev(path);
1328 if (IS_ERR(bdev))
1329 return bdev;
1330
1331 err = blkdev_get(bdev, mode, holder);
1332 if (err)
1333 return ERR_PTR(err);
1334
Chuck Ebberte51900f2011-02-16 18:11:53 -05001335 if ((mode & FMODE_WRITE) && bdev_read_only(bdev)) {
1336 blkdev_put(bdev, mode);
1337 return ERR_PTR(-EACCES);
1338 }
1339
Tejun Heod4d77622010-11-13 11:55:18 +01001340 return bdev;
1341}
1342EXPORT_SYMBOL(blkdev_get_by_path);
1343
1344/**
1345 * blkdev_get_by_dev - open a block device by device number
1346 * @dev: device number of block device to open
1347 * @mode: FMODE_* mask
1348 * @holder: exclusive holder identifier
1349 *
1350 * Open the blockdevice described by device number @dev. @mode and
1351 * @holder are identical to blkdev_get().
1352 *
1353 * Use it ONLY if you really do not have anything better - i.e. when
1354 * you are behind a truly sucky interface and all you are given is a
1355 * device number. _Never_ to be used for internal purposes. If you
1356 * ever need it - reconsider your API.
1357 *
1358 * On success, the returned block_device has reference count of one.
1359 *
1360 * CONTEXT:
1361 * Might sleep.
1362 *
1363 * RETURNS:
1364 * Pointer to block_device on success, ERR_PTR(-errno) on failure.
1365 */
1366struct block_device *blkdev_get_by_dev(dev_t dev, fmode_t mode, void *holder)
1367{
1368 struct block_device *bdev;
1369 int err;
1370
1371 bdev = bdget(dev);
1372 if (!bdev)
1373 return ERR_PTR(-ENOMEM);
1374
1375 err = blkdev_get(bdev, mode, holder);
1376 if (err)
1377 return ERR_PTR(err);
1378
1379 return bdev;
1380}
1381EXPORT_SYMBOL(blkdev_get_by_dev);
1382
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383static int blkdev_open(struct inode * inode, struct file * filp)
1384{
1385 struct block_device *bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386
1387 /*
1388 * Preserve backwards compatibility and allow large file access
1389 * even if userspace doesn't ask for it explicitly. Some mkfs
1390 * binary needs it. We might want to drop this workaround
1391 * during an unstable branch.
1392 */
1393 filp->f_flags |= O_LARGEFILE;
1394
Al Viro572c4892007-10-08 13:24:05 -04001395 if (filp->f_flags & O_NDELAY)
1396 filp->f_mode |= FMODE_NDELAY;
1397 if (filp->f_flags & O_EXCL)
1398 filp->f_mode |= FMODE_EXCL;
1399 if ((filp->f_flags & O_ACCMODE) == 3)
1400 filp->f_mode |= FMODE_WRITE_IOCTL;
1401
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 bdev = bd_acquire(inode);
Pavel Emelianov6a2aae02006-10-28 10:38:33 -07001403 if (bdev == NULL)
1404 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405
Al Viro572c4892007-10-08 13:24:05 -04001406 filp->f_mapping = bdev->bd_inode->i_mapping;
1407
Tejun Heoe525fd82010-11-13 11:55:17 +01001408 return blkdev_get(bdev, filp->f_mode, filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409}
1410
Al Viro4385bab2013-05-05 22:11:03 -04001411static void __blkdev_put(struct block_device *bdev, fmode_t mode, int for_part)
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001412{
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001413 struct gendisk *disk = bdev->bd_disk;
NeilBrown37be4122006-12-08 02:36:16 -08001414 struct block_device *victim = NULL;
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001415
NeilBrown6796bf52006-12-08 02:36:16 -08001416 mutex_lock_nested(&bdev->bd_mutex, for_part);
NeilBrown37be4122006-12-08 02:36:16 -08001417 if (for_part)
1418 bdev->bd_part_count--;
1419
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001420 if (!--bdev->bd_openers) {
Tejun Heo6a027ef2010-11-13 11:55:17 +01001421 WARN_ON_ONCE(bdev->bd_holders);
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001422 sync_blockdev(bdev);
1423 kill_bdev(bdev);
NeilBrown94007752011-09-10 17:20:21 +10001424 /* ->release can cause the old bdi to disappear,
1425 * so must switch it out first
1426 */
1427 bdev_inode_switch_bdi(bdev->bd_inode,
1428 &default_backing_dev_info);
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001429 }
1430 if (bdev->bd_contains == bdev) {
1431 if (disk->fops->release)
Al Virodb2a1442013-05-05 21:52:57 -04001432 disk->fops->release(disk, mode);
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001433 }
1434 if (!bdev->bd_openers) {
1435 struct module *owner = disk->fops->owner;
1436
Tejun Heo0762b8b2008-08-25 19:56:12 +09001437 disk_put_part(bdev->bd_part);
1438 bdev->bd_part = NULL;
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001439 bdev->bd_disk = NULL;
NeilBrown37be4122006-12-08 02:36:16 -08001440 if (bdev != bdev->bd_contains)
1441 victim = bdev->bd_contains;
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001442 bdev->bd_contains = NULL;
Tejun Heo523e1d32011-10-19 14:31:07 +02001443
1444 put_disk(disk);
1445 module_put(owner);
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001446 }
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001447 mutex_unlock(&bdev->bd_mutex);
1448 bdput(bdev);
NeilBrown37be4122006-12-08 02:36:16 -08001449 if (victim)
Al Viro9a1c3542008-02-22 20:40:24 -05001450 __blkdev_put(victim, mode, 1);
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001451}
1452
Al Viro4385bab2013-05-05 22:11:03 -04001453void blkdev_put(struct block_device *bdev, fmode_t mode)
NeilBrown37be4122006-12-08 02:36:16 -08001454{
Tejun Heo85ef06d2011-07-01 16:17:47 +02001455 mutex_lock(&bdev->bd_mutex);
1456
Tejun Heoe525fd82010-11-13 11:55:17 +01001457 if (mode & FMODE_EXCL) {
Tejun Heo6a027ef2010-11-13 11:55:17 +01001458 bool bdev_free;
1459
1460 /*
1461 * Release a claim on the device. The holder fields
1462 * are protected with bdev_lock. bd_mutex is to
1463 * synchronize disk_holder unlinking.
1464 */
Tejun Heo6a027ef2010-11-13 11:55:17 +01001465 spin_lock(&bdev_lock);
1466
1467 WARN_ON_ONCE(--bdev->bd_holders < 0);
1468 WARN_ON_ONCE(--bdev->bd_contains->bd_holders < 0);
1469
1470 /* bd_contains might point to self, check in a separate step */
1471 if ((bdev_free = !bdev->bd_holders))
1472 bdev->bd_holder = NULL;
1473 if (!bdev->bd_contains->bd_holders)
1474 bdev->bd_contains->bd_holder = NULL;
1475
1476 spin_unlock(&bdev_lock);
1477
Tejun Heo77ea8872010-12-08 20:57:37 +01001478 /*
1479 * If this was the last claim, remove holder link and
1480 * unblock evpoll if it was a write holder.
1481 */
Tejun Heo85ef06d2011-07-01 16:17:47 +02001482 if (bdev_free && bdev->bd_write_holder) {
1483 disk_unblock_events(bdev->bd_disk);
1484 bdev->bd_write_holder = false;
Tejun Heo77ea8872010-12-08 20:57:37 +01001485 }
Tejun Heo69362172011-03-09 19:54:27 +01001486 }
Tejun Heo77ea8872010-12-08 20:57:37 +01001487
Tejun Heo85ef06d2011-07-01 16:17:47 +02001488 /*
1489 * Trigger event checking and tell drivers to flush MEDIA_CHANGE
1490 * event. This is to ensure detection of media removal commanded
1491 * from userland - e.g. eject(1).
1492 */
1493 disk_flush_events(bdev->bd_disk, DISK_EVENT_MEDIA_CHANGE);
1494
1495 mutex_unlock(&bdev->bd_mutex);
1496
Al Viro4385bab2013-05-05 22:11:03 -04001497 __blkdev_put(bdev, mode, 0);
NeilBrown37be4122006-12-08 02:36:16 -08001498}
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001499EXPORT_SYMBOL(blkdev_put);
1500
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501static int blkdev_close(struct inode * inode, struct file * filp)
1502{
1503 struct block_device *bdev = I_BDEV(filp->f_mapping->host);
Al Viro4385bab2013-05-05 22:11:03 -04001504 blkdev_put(bdev, filp->f_mode);
1505 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506}
1507
Arnd Bergmannbb93e3a2005-06-23 00:10:15 -07001508static long block_ioctl(struct file *file, unsigned cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509{
Al Viro56b26ad2008-09-19 03:17:36 -04001510 struct block_device *bdev = I_BDEV(file->f_mapping->host);
1511 fmode_t mode = file->f_mode;
Christoph Hellwigfd4ce1a2008-11-05 14:58:42 +01001512
1513 /*
1514 * O_NDELAY can be altered using fcntl(.., F_SETFL, ..), so we have
1515 * to updated it before every ioctl.
1516 */
Al Viro56b26ad2008-09-19 03:17:36 -04001517 if (file->f_flags & O_NDELAY)
Christoph Hellwigfd4ce1a2008-11-05 14:58:42 +01001518 mode |= FMODE_NDELAY;
1519 else
1520 mode &= ~FMODE_NDELAY;
1521
Al Viro56b26ad2008-09-19 03:17:36 -04001522 return blkdev_ioctl(bdev, mode, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523}
1524
Theodore Ts'o87d8fe12009-01-03 09:47:09 -05001525/*
Christoph Hellwigeef99382009-08-20 17:43:41 +02001526 * Write data to the block device. Only intended for the block device itself
1527 * and the raw driver which basically is a fake block device.
1528 *
1529 * Does not take i_mutex for the write and thus is not for general purpose
1530 * use.
1531 */
1532ssize_t blkdev_aio_write(struct kiocb *iocb, const struct iovec *iov,
1533 unsigned long nr_segs, loff_t pos)
1534{
1535 struct file *file = iocb->ki_filp;
Jianpeng Ma53362a02012-08-02 09:50:39 +02001536 struct blk_plug plug;
Christoph Hellwigeef99382009-08-20 17:43:41 +02001537 ssize_t ret;
1538
1539 BUG_ON(iocb->ki_pos != pos);
1540
Jianpeng Ma53362a02012-08-02 09:50:39 +02001541 blk_start_plug(&plug);
Christoph Hellwigeef99382009-08-20 17:43:41 +02001542 ret = __generic_file_aio_write(iocb, iov, nr_segs, &iocb->ki_pos);
1543 if (ret > 0 || ret == -EIOCBQUEUED) {
1544 ssize_t err;
1545
1546 err = generic_write_sync(file, pos, ret);
1547 if (err < 0 && ret > 0)
1548 ret = err;
1549 }
Jianpeng Ma53362a02012-08-02 09:50:39 +02001550 blk_finish_plug(&plug);
Christoph Hellwigeef99382009-08-20 17:43:41 +02001551 return ret;
1552}
1553EXPORT_SYMBOL_GPL(blkdev_aio_write);
1554
Linus Torvalds684c9aa2012-12-07 16:48:39 -08001555static ssize_t blkdev_aio_read(struct kiocb *iocb, const struct iovec *iov,
1556 unsigned long nr_segs, loff_t pos)
1557{
1558 struct file *file = iocb->ki_filp;
1559 struct inode *bd_inode = file->f_mapping->host;
1560 loff_t size = i_size_read(bd_inode);
1561
1562 if (pos >= size)
1563 return 0;
1564
1565 size -= pos;
Gu Zheng6f8f5c22013-04-29 11:55:52 -07001566 if (size < iocb->ki_left)
Linus Torvalds684c9aa2012-12-07 16:48:39 -08001567 nr_segs = iov_shorten((struct iovec *)iov, nr_segs, size);
1568 return generic_file_aio_read(iocb, iov, nr_segs, pos);
1569}
1570
Christoph Hellwigeef99382009-08-20 17:43:41 +02001571/*
Theodore Ts'o87d8fe12009-01-03 09:47:09 -05001572 * Try to release a page associated with block device when the system
1573 * is under memory pressure.
1574 */
1575static int blkdev_releasepage(struct page *page, gfp_t wait)
1576{
1577 struct super_block *super = BDEV_I(page->mapping->host)->bdev.bd_super;
1578
1579 if (super && super->s_op->bdev_try_to_free_page)
1580 return super->s_op->bdev_try_to_free_page(super, page, wait);
1581
1582 return try_to_free_buffers(page);
1583}
1584
Adrian Bunk4c54ac62008-02-18 13:48:31 +01001585static const struct address_space_operations def_blk_aops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 .readpage = blkdev_readpage,
1587 .writepage = blkdev_writepage,
Nick Piggin6272b5a2007-10-16 01:25:04 -07001588 .write_begin = blkdev_write_begin,
1589 .write_end = blkdev_write_end,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 .writepages = generic_writepages,
Theodore Ts'o87d8fe12009-01-03 09:47:09 -05001591 .releasepage = blkdev_releasepage,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 .direct_IO = blkdev_direct_IO,
1593};
1594
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08001595const struct file_operations def_blk_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 .open = blkdev_open,
1597 .release = blkdev_close,
1598 .llseek = block_llseek,
Badari Pulavarty543ade12006-09-30 23:28:48 -07001599 .read = do_sync_read,
1600 .write = do_sync_write,
Linus Torvalds684c9aa2012-12-07 16:48:39 -08001601 .aio_read = blkdev_aio_read,
Christoph Hellwigeef99382009-08-20 17:43:41 +02001602 .aio_write = blkdev_aio_write,
Linus Torvalds1e8b3332012-11-29 10:49:50 -08001603 .mmap = generic_file_mmap,
Andrew Mortonb1dd3b22010-04-06 14:35:00 -07001604 .fsync = blkdev_fsync,
Arnd Bergmannbb93e3a2005-06-23 00:10:15 -07001605 .unlocked_ioctl = block_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606#ifdef CONFIG_COMPAT
1607 .compat_ioctl = compat_blkdev_ioctl,
1608#endif
Linus Torvalds1e8b3332012-11-29 10:49:50 -08001609 .splice_read = generic_file_splice_read,
1610 .splice_write = generic_file_splice_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611};
1612
1613int ioctl_by_bdev(struct block_device *bdev, unsigned cmd, unsigned long arg)
1614{
1615 int res;
1616 mm_segment_t old_fs = get_fs();
1617 set_fs(KERNEL_DS);
Al Viro56b26ad2008-09-19 03:17:36 -04001618 res = blkdev_ioctl(bdev, 0, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 set_fs(old_fs);
1620 return res;
1621}
1622
1623EXPORT_SYMBOL(ioctl_by_bdev);
1624
1625/**
1626 * lookup_bdev - lookup a struct block_device by name
Randy Dunlap94e29592009-01-06 14:41:15 -08001627 * @pathname: special file representing the block device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 *
Randy Dunlap57d1b532008-10-09 10:42:38 +02001629 * Get a reference to the blockdevice at @pathname in the current
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 * namespace if possible and return it. Return ERR_PTR(error)
1631 * otherwise.
1632 */
Al Viro421748e2008-08-02 01:04:36 -04001633struct block_device *lookup_bdev(const char *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634{
1635 struct block_device *bdev;
1636 struct inode *inode;
Al Viro421748e2008-08-02 01:04:36 -04001637 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 int error;
1639
Al Viro421748e2008-08-02 01:04:36 -04001640 if (!pathname || !*pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 return ERR_PTR(-EINVAL);
1642
Al Viro421748e2008-08-02 01:04:36 -04001643 error = kern_path(pathname, LOOKUP_FOLLOW, &path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 if (error)
1645 return ERR_PTR(error);
1646
Al Viro421748e2008-08-02 01:04:36 -04001647 inode = path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 error = -ENOTBLK;
1649 if (!S_ISBLK(inode->i_mode))
1650 goto fail;
1651 error = -EACCES;
Al Viro421748e2008-08-02 01:04:36 -04001652 if (path.mnt->mnt_flags & MNT_NODEV)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 goto fail;
1654 error = -ENOMEM;
1655 bdev = bd_acquire(inode);
1656 if (!bdev)
1657 goto fail;
1658out:
Al Viro421748e2008-08-02 01:04:36 -04001659 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 return bdev;
1661fail:
1662 bdev = ERR_PTR(error);
1663 goto out;
1664}
Al Virod5686b42008-08-01 05:00:11 -04001665EXPORT_SYMBOL(lookup_bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666
NeilBrown93b270f2011-02-24 17:25:47 +11001667int __invalidate_device(struct block_device *bdev, bool kill_dirty)
David Howellsb71e8a42006-08-29 19:06:11 +01001668{
1669 struct super_block *sb = get_super(bdev);
1670 int res = 0;
1671
1672 if (sb) {
1673 /*
1674 * no need to lock the super, get_super holds the
1675 * read mutex so the filesystem cannot go away
1676 * under us (->put_super runs with the write lock
1677 * hold).
1678 */
1679 shrink_dcache_sb(sb);
NeilBrown93b270f2011-02-24 17:25:47 +11001680 res = invalidate_inodes(sb, kill_dirty);
David Howellsb71e8a42006-08-29 19:06:11 +01001681 drop_super(sb);
1682 }
Peter Zijlstraf98393a2007-05-06 14:49:54 -07001683 invalidate_bdev(bdev);
David Howellsb71e8a42006-08-29 19:06:11 +01001684 return res;
1685}
1686EXPORT_SYMBOL(__invalidate_device);
Jan Kara5c0d6b62012-07-03 16:45:31 +02001687
1688void iterate_bdevs(void (*func)(struct block_device *, void *), void *arg)
1689{
1690 struct inode *inode, *old_inode = NULL;
1691
1692 spin_lock(&inode_sb_list_lock);
1693 list_for_each_entry(inode, &blockdev_superblock->s_inodes, i_sb_list) {
1694 struct address_space *mapping = inode->i_mapping;
1695
1696 spin_lock(&inode->i_lock);
1697 if (inode->i_state & (I_FREEING|I_WILL_FREE|I_NEW) ||
1698 mapping->nrpages == 0) {
1699 spin_unlock(&inode->i_lock);
1700 continue;
1701 }
1702 __iget(inode);
1703 spin_unlock(&inode->i_lock);
1704 spin_unlock(&inode_sb_list_lock);
1705 /*
1706 * We hold a reference to 'inode' so it couldn't have been
1707 * removed from s_inodes list while we dropped the
1708 * inode_sb_list_lock. We cannot iput the inode now as we can
1709 * be holding the last reference and we cannot iput it under
1710 * inode_sb_list_lock. So we keep the reference and iput it
1711 * later.
1712 */
1713 iput(old_inode);
1714 old_inode = inode;
1715
1716 func(I_BDEV(inode), arg);
1717
1718 spin_lock(&inode_sb_list_lock);
1719 }
1720 spin_unlock(&inode_sb_list_lock);
1721 iput(old_inode);
1722}