blob: 771f23527010ded79b2293b7c59b528238139530 [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>
19#include <linux/buffer_head.h>
Nick Piggin585d3bc2009-02-25 10:44:19 +010020#include <linux/pagevec.h>
David Howells811d7362006-08-29 19:06:09 +010021#include <linux/writeback.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/mpage.h>
23#include <linux/mount.h>
24#include <linux/uio.h>
25#include <linux/namei.h>
Vignesh Babu BM1368c4f2007-05-08 00:24:32 -070026#include <linux/log2.h>
Catalin Marinas2e1483c2009-06-11 13:24:13 +010027#include <linux/kmemleak.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <asm/uaccess.h>
David Howells07f3f052006-09-30 20:52:18 +020029#include "internal.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
31struct bdev_inode {
32 struct block_device bdev;
33 struct inode vfs_inode;
34};
35
Adrian Bunk4c54ac62008-02-18 13:48:31 +010036static const struct address_space_operations def_blk_aops;
37
Linus Torvalds1da177e2005-04-16 15:20:36 -070038static inline struct bdev_inode *BDEV_I(struct inode *inode)
39{
40 return container_of(inode, struct bdev_inode, vfs_inode);
41}
42
43inline struct block_device *I_BDEV(struct inode *inode)
44{
45 return &BDEV_I(inode)->bdev;
46}
47
48EXPORT_SYMBOL(I_BDEV);
49
Dave Chinnera5491e02010-10-21 11:49:26 +110050/*
51 * move the inode from it's current bdi to the a new bdi. if the inode is dirty
52 * we need to move it onto the dirty list of @dst so that the inode is always
53 * on the right list.
54 */
55static void bdev_inode_switch_bdi(struct inode *inode,
56 struct backing_dev_info *dst)
57{
58 spin_lock(&inode_lock);
59 inode->i_data.backing_dev_info = dst;
60 if (inode->i_state & I_DIRTY)
Nick Piggin7ccf19a2010-10-21 11:49:30 +110061 list_move(&inode->i_wb_list, &dst->wb.b_dirty);
Dave Chinnera5491e02010-10-21 11:49:26 +110062 spin_unlock(&inode_lock);
63}
64
Linus Torvalds1da177e2005-04-16 15:20:36 -070065static sector_t max_block(struct block_device *bdev)
66{
67 sector_t retval = ~((sector_t)0);
68 loff_t sz = i_size_read(bdev->bd_inode);
69
70 if (sz) {
71 unsigned int size = block_size(bdev);
72 unsigned int sizebits = blksize_bits(size);
73 retval = (sz >> sizebits);
74 }
75 return retval;
76}
77
Peter Zijlstraf9a14392007-05-06 14:49:55 -070078/* Kill _all_ buffers and pagecache , dirty or not.. */
Linus Torvalds1da177e2005-04-16 15:20:36 -070079static void kill_bdev(struct block_device *bdev)
80{
Peter Zijlstraf9a14392007-05-06 14:49:55 -070081 if (bdev->bd_inode->i_mapping->nrpages == 0)
82 return;
83 invalidate_bh_lrus();
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 truncate_inode_pages(bdev->bd_inode->i_mapping, 0);
85}
86
87int set_blocksize(struct block_device *bdev, int size)
88{
89 /* Size must be a power of two, and between 512 and PAGE_SIZE */
Vignesh Babu BM1368c4f2007-05-08 00:24:32 -070090 if (size > PAGE_SIZE || size < 512 || !is_power_of_2(size))
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 return -EINVAL;
92
93 /* Size cannot be smaller than the size supported by the device */
Martin K. Petersene1defc42009-05-22 17:17:49 -040094 if (size < bdev_logical_block_size(bdev))
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 return -EINVAL;
96
97 /* Don't change the size if it is same as current */
98 if (bdev->bd_block_size != size) {
99 sync_blockdev(bdev);
100 bdev->bd_block_size = size;
101 bdev->bd_inode->i_blkbits = blksize_bits(size);
102 kill_bdev(bdev);
103 }
104 return 0;
105}
106
107EXPORT_SYMBOL(set_blocksize);
108
109int sb_set_blocksize(struct super_block *sb, int size)
110{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 if (set_blocksize(sb->s_bdev, size))
112 return 0;
113 /* If we get here, we know size is power of two
114 * and it's value is between 512 and PAGE_SIZE */
115 sb->s_blocksize = size;
Coywolf Qi Hunt38885bd2006-03-24 03:18:05 -0800116 sb->s_blocksize_bits = blksize_bits(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 return sb->s_blocksize;
118}
119
120EXPORT_SYMBOL(sb_set_blocksize);
121
122int sb_min_blocksize(struct super_block *sb, int size)
123{
Martin K. Petersene1defc42009-05-22 17:17:49 -0400124 int minsize = bdev_logical_block_size(sb->s_bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 if (size < minsize)
126 size = minsize;
127 return sb_set_blocksize(sb, size);
128}
129
130EXPORT_SYMBOL(sb_min_blocksize);
131
132static int
133blkdev_get_block(struct inode *inode, sector_t iblock,
134 struct buffer_head *bh, int create)
135{
136 if (iblock >= max_block(I_BDEV(inode))) {
137 if (create)
138 return -EIO;
139
140 /*
141 * for reads, we're just trying to fill a partial page.
142 * return a hole, they will have to call get_block again
143 * before they can fill it, and they will get -EIO at that
144 * time
145 */
146 return 0;
147 }
148 bh->b_bdev = I_BDEV(inode);
149 bh->b_blocknr = iblock;
150 set_buffer_mapped(bh);
151 return 0;
152}
153
Andrew Mortonb2e895d2007-02-03 01:14:01 -0800154static int
155blkdev_get_blocks(struct inode *inode, sector_t iblock,
156 struct buffer_head *bh, int create)
157{
158 sector_t end_block = max_block(I_BDEV(inode));
159 unsigned long max_blocks = bh->b_size >> inode->i_blkbits;
160
161 if ((iblock + max_blocks) > end_block) {
162 max_blocks = end_block - iblock;
163 if ((long)max_blocks <= 0) {
164 if (create)
165 return -EIO; /* write fully beyond EOF */
166 /*
167 * It is a read which is fully beyond EOF. We return
168 * a !buffer_mapped buffer
169 */
170 max_blocks = 0;
171 }
172 }
173
174 bh->b_bdev = I_BDEV(inode);
175 bh->b_blocknr = iblock;
176 bh->b_size = max_blocks << inode->i_blkbits;
177 if (max_blocks)
178 set_buffer_mapped(bh);
179 return 0;
180}
181
182static ssize_t
183blkdev_direct_IO(int rw, struct kiocb *iocb, const struct iovec *iov,
184 loff_t offset, unsigned long nr_segs)
185{
186 struct file *file = iocb->ki_filp;
187 struct inode *inode = file->f_mapping->host;
188
Christoph Hellwigeafdc7d2010-06-04 11:29:53 +0200189 return __blockdev_direct_IO(rw, iocb, inode, I_BDEV(inode), iov, offset,
190 nr_segs, blkdev_get_blocks, NULL, NULL, 0);
Andrew Mortonb2e895d2007-02-03 01:14:01 -0800191}
192
Jan Kara5cee5812009-04-27 16:43:51 +0200193int __sync_blockdev(struct block_device *bdev, int wait)
194{
195 if (!bdev)
196 return 0;
197 if (!wait)
198 return filemap_flush(bdev->bd_inode->i_mapping);
199 return filemap_write_and_wait(bdev->bd_inode->i_mapping);
200}
201
Nick Piggin585d3bc2009-02-25 10:44:19 +0100202/*
203 * Write out and wait upon all the dirty data associated with a block
204 * device via its mapping. Does not take the superblock lock.
205 */
206int sync_blockdev(struct block_device *bdev)
207{
Jan Kara5cee5812009-04-27 16:43:51 +0200208 return __sync_blockdev(bdev, 1);
Nick Piggin585d3bc2009-02-25 10:44:19 +0100209}
210EXPORT_SYMBOL(sync_blockdev);
211
212/*
213 * Write out and wait upon all dirty data associated with this
214 * device. Filesystem data as well as the underlying block
215 * device. Takes the superblock lock.
216 */
217int fsync_bdev(struct block_device *bdev)
218{
219 struct super_block *sb = get_super(bdev);
220 if (sb) {
Jan Kara60b06802009-04-27 16:43:53 +0200221 int res = sync_filesystem(sb);
Nick Piggin585d3bc2009-02-25 10:44:19 +0100222 drop_super(sb);
223 return res;
224 }
225 return sync_blockdev(bdev);
226}
Al Viro47e44912009-04-01 07:07:16 -0400227EXPORT_SYMBOL(fsync_bdev);
Nick Piggin585d3bc2009-02-25 10:44:19 +0100228
229/**
230 * freeze_bdev -- lock a filesystem and force it into a consistent state
231 * @bdev: blockdevice to lock
232 *
Nick Piggin585d3bc2009-02-25 10:44:19 +0100233 * If a superblock is found on this device, we take the s_umount semaphore
234 * on it to make sure nobody unmounts until the snapshot creation is done.
235 * The reference counter (bd_fsfreeze_count) guarantees that only the last
236 * unfreeze process can unfreeze the frozen filesystem actually when multiple
237 * freeze requests arrive simultaneously. It counts up in freeze_bdev() and
238 * count down in thaw_bdev(). When it becomes 0, thaw_bdev() will unfreeze
239 * actually.
240 */
241struct super_block *freeze_bdev(struct block_device *bdev)
242{
243 struct super_block *sb;
244 int error = 0;
245
246 mutex_lock(&bdev->bd_fsfreeze_mutex);
Christoph Hellwig45042302009-08-03 23:28:35 +0200247 if (++bdev->bd_fsfreeze_count > 1) {
248 /*
249 * We don't even need to grab a reference - the first call
250 * to freeze_bdev grab an active reference and only the last
251 * thaw_bdev drops it.
252 */
Nick Piggin585d3bc2009-02-25 10:44:19 +0100253 sb = get_super(bdev);
Christoph Hellwig45042302009-08-03 23:28:35 +0200254 drop_super(sb);
Nick Piggin585d3bc2009-02-25 10:44:19 +0100255 mutex_unlock(&bdev->bd_fsfreeze_mutex);
256 return sb;
257 }
Nick Piggin585d3bc2009-02-25 10:44:19 +0100258
Christoph Hellwig45042302009-08-03 23:28:35 +0200259 sb = get_active_super(bdev);
260 if (!sb)
261 goto out;
Josef Bacik18e9e512010-03-23 10:34:56 -0400262 error = freeze_super(sb);
263 if (error) {
264 deactivate_super(sb);
265 bdev->bd_fsfreeze_count--;
Christoph Hellwig45042302009-08-03 23:28:35 +0200266 mutex_unlock(&bdev->bd_fsfreeze_mutex);
Josef Bacik18e9e512010-03-23 10:34:56 -0400267 return ERR_PTR(error);
Nick Piggin585d3bc2009-02-25 10:44:19 +0100268 }
Josef Bacik18e9e512010-03-23 10:34:56 -0400269 deactivate_super(sb);
Christoph Hellwig45042302009-08-03 23:28:35 +0200270 out:
Nick Piggin585d3bc2009-02-25 10:44:19 +0100271 sync_blockdev(bdev);
272 mutex_unlock(&bdev->bd_fsfreeze_mutex);
Christoph Hellwig4fadd7b2009-08-03 23:28:06 +0200273 return sb; /* thaw_bdev releases s->s_umount */
Nick Piggin585d3bc2009-02-25 10:44:19 +0100274}
275EXPORT_SYMBOL(freeze_bdev);
276
277/**
278 * thaw_bdev -- unlock filesystem
279 * @bdev: blockdevice to unlock
280 * @sb: associated superblock
281 *
282 * Unlocks the filesystem and marks it writeable again after freeze_bdev().
283 */
284int thaw_bdev(struct block_device *bdev, struct super_block *sb)
285{
Christoph Hellwig45042302009-08-03 23:28:35 +0200286 int error = -EINVAL;
Nick Piggin585d3bc2009-02-25 10:44:19 +0100287
288 mutex_lock(&bdev->bd_fsfreeze_mutex);
Christoph Hellwig45042302009-08-03 23:28:35 +0200289 if (!bdev->bd_fsfreeze_count)
Josef Bacik18e9e512010-03-23 10:34:56 -0400290 goto out;
Nick Piggin585d3bc2009-02-25 10:44:19 +0100291
Christoph Hellwig45042302009-08-03 23:28:35 +0200292 error = 0;
293 if (--bdev->bd_fsfreeze_count > 0)
Josef Bacik18e9e512010-03-23 10:34:56 -0400294 goto out;
Nick Piggin585d3bc2009-02-25 10:44:19 +0100295
Christoph Hellwig45042302009-08-03 23:28:35 +0200296 if (!sb)
Josef Bacik18e9e512010-03-23 10:34:56 -0400297 goto out;
Christoph Hellwig45042302009-08-03 23:28:35 +0200298
Josef Bacik18e9e512010-03-23 10:34:56 -0400299 error = thaw_super(sb);
300 if (error) {
301 bdev->bd_fsfreeze_count++;
302 mutex_unlock(&bdev->bd_fsfreeze_mutex);
303 return error;
Nick Piggin585d3bc2009-02-25 10:44:19 +0100304 }
Josef Bacik18e9e512010-03-23 10:34:56 -0400305out:
Nick Piggin585d3bc2009-02-25 10:44:19 +0100306 mutex_unlock(&bdev->bd_fsfreeze_mutex);
307 return 0;
308}
309EXPORT_SYMBOL(thaw_bdev);
310
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311static int blkdev_writepage(struct page *page, struct writeback_control *wbc)
312{
313 return block_write_full_page(page, blkdev_get_block, wbc);
314}
315
316static int blkdev_readpage(struct file * file, struct page * page)
317{
318 return block_read_full_page(page, blkdev_get_block);
319}
320
Nick Piggin6272b5a2007-10-16 01:25:04 -0700321static int blkdev_write_begin(struct file *file, struct address_space *mapping,
322 loff_t pos, unsigned len, unsigned flags,
323 struct page **pagep, void **fsdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324{
Christoph Hellwig155130a2010-06-04 11:29:58 +0200325 return block_write_begin(mapping, pos, len, flags, pagep,
326 blkdev_get_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327}
328
Nick Piggin6272b5a2007-10-16 01:25:04 -0700329static int blkdev_write_end(struct file *file, struct address_space *mapping,
330 loff_t pos, unsigned len, unsigned copied,
331 struct page *page, void *fsdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332{
Nick Piggin6272b5a2007-10-16 01:25:04 -0700333 int ret;
334 ret = block_write_end(file, mapping, pos, len, copied, page, fsdata);
335
336 unlock_page(page);
337 page_cache_release(page);
338
339 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340}
341
342/*
343 * private llseek:
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800344 * for a block special file file->f_path.dentry->d_inode->i_size is zero
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 * so we compute the size by hand (just as in block_read/write above)
346 */
347static loff_t block_llseek(struct file *file, loff_t offset, int origin)
348{
349 struct inode *bd_inode = file->f_mapping->host;
350 loff_t size;
351 loff_t retval;
352
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800353 mutex_lock(&bd_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 size = i_size_read(bd_inode);
355
356 switch (origin) {
357 case 2:
358 offset += size;
359 break;
360 case 1:
361 offset += file->f_pos;
362 }
363 retval = -EINVAL;
364 if (offset >= 0 && offset <= size) {
365 if (offset != file->f_pos) {
366 file->f_pos = offset;
367 }
368 retval = offset;
369 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800370 mutex_unlock(&bd_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 return retval;
372}
373
Christoph Hellwig7ea80852010-05-26 17:53:25 +0200374int blkdev_fsync(struct file *filp, int datasync)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375{
Anton Blanchardb8af67e2010-04-23 13:18:06 -0400376 struct inode *bd_inode = filp->f_mapping->host;
377 struct block_device *bdev = I_BDEV(bd_inode);
Christoph Hellwigab0a9732009-10-29 14:14:04 +0100378 int error;
379
Anton Blanchardb8af67e2010-04-23 13:18:06 -0400380 /*
381 * There is no need to serialise calls to blkdev_issue_flush with
382 * i_mutex and doing so causes performance issues with concurrent
383 * O_SYNC writers to a block device.
384 */
385 mutex_unlock(&bd_inode->i_mutex);
386
Christoph Hellwigdd3932e2010-09-16 20:51:46 +0200387 error = blkdev_issue_flush(bdev, GFP_KERNEL, NULL);
Christoph Hellwigab0a9732009-10-29 14:14:04 +0100388 if (error == -EOPNOTSUPP)
389 error = 0;
Anton Blanchardb8af67e2010-04-23 13:18:06 -0400390
391 mutex_lock(&bd_inode->i_mutex);
392
Christoph Hellwigab0a9732009-10-29 14:14:04 +0100393 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394}
Andrew Mortonb1dd3b22010-04-06 14:35:00 -0700395EXPORT_SYMBOL(blkdev_fsync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
397/*
398 * pseudo-fs
399 */
400
401static __cacheline_aligned_in_smp DEFINE_SPINLOCK(bdev_lock);
Christoph Lametere18b8902006-12-06 20:33:20 -0800402static struct kmem_cache * bdev_cachep __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
404static struct inode *bdev_alloc_inode(struct super_block *sb)
405{
Christoph Lametere94b1762006-12-06 20:33:17 -0800406 struct bdev_inode *ei = kmem_cache_alloc(bdev_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 if (!ei)
408 return NULL;
409 return &ei->vfs_inode;
410}
411
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100412static void bdev_i_callback(struct rcu_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413{
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100414 struct inode *inode = container_of(head, struct inode, i_rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 struct bdev_inode *bdi = BDEV_I(inode);
416
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100417 INIT_LIST_HEAD(&inode->i_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 kmem_cache_free(bdev_cachep, bdi);
419}
420
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100421static void bdev_destroy_inode(struct inode *inode)
422{
423 call_rcu(&inode->i_rcu, bdev_i_callback);
424}
425
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700426static void init_once(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427{
428 struct bdev_inode *ei = (struct bdev_inode *) foo;
429 struct block_device *bdev = &ei->bdev;
430
Christoph Lametera35afb82007-05-16 22:10:57 -0700431 memset(bdev, 0, sizeof(*bdev));
432 mutex_init(&bdev->bd_mutex);
Christoph Lametera35afb82007-05-16 22:10:57 -0700433 INIT_LIST_HEAD(&bdev->bd_inodes);
434 INIT_LIST_HEAD(&bdev->bd_list);
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800435#ifdef CONFIG_SYSFS
Christoph Lametera35afb82007-05-16 22:10:57 -0700436 INIT_LIST_HEAD(&bdev->bd_holder_list);
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800437#endif
Christoph Lametera35afb82007-05-16 22:10:57 -0700438 inode_init_once(&ei->vfs_inode);
Takashi Satofcccf502009-01-09 16:40:59 -0800439 /* Initialize mutex for freeze. */
440 mutex_init(&bdev->bd_fsfreeze_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441}
442
443static inline void __bd_forget(struct inode *inode)
444{
445 list_del_init(&inode->i_devices);
446 inode->i_bdev = NULL;
447 inode->i_mapping = &inode->i_data;
448}
449
Al Virob57922d2010-06-07 14:34:48 -0400450static void bdev_evict_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451{
452 struct block_device *bdev = &BDEV_I(inode)->bdev;
453 struct list_head *p;
Al Virob57922d2010-06-07 14:34:48 -0400454 truncate_inode_pages(&inode->i_data, 0);
455 invalidate_inode_buffers(inode); /* is it needed here? */
456 end_writeback(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 spin_lock(&bdev_lock);
458 while ( (p = bdev->bd_inodes.next) != &bdev->bd_inodes ) {
459 __bd_forget(list_entry(p, struct inode, i_devices));
460 }
461 list_del_init(&bdev->bd_list);
462 spin_unlock(&bdev_lock);
463}
464
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800465static const struct super_operations bdev_sops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 .statfs = simple_statfs,
467 .alloc_inode = bdev_alloc_inode,
468 .destroy_inode = bdev_destroy_inode,
469 .drop_inode = generic_delete_inode,
Al Virob57922d2010-06-07 14:34:48 -0400470 .evict_inode = bdev_evict_inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471};
472
Al Viro51139ad2010-07-25 23:47:46 +0400473static struct dentry *bd_mount(struct file_system_type *fs_type,
474 int flags, const char *dev_name, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475{
Al Viro51139ad2010-07-25 23:47:46 +0400476 return mount_pseudo(fs_type, "bdev:", &bdev_sops, 0x62646576);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477}
478
479static struct file_system_type bd_type = {
480 .name = "bdev",
Al Viro51139ad2010-07-25 23:47:46 +0400481 .mount = bd_mount,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 .kill_sb = kill_anon_super,
483};
484
Denis ChengRqc2acf7b2008-12-01 14:34:56 -0800485struct super_block *blockdev_superblock __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
487void __init bdev_cache_init(void)
488{
489 int err;
Denis ChengRqc2acf7b2008-12-01 14:34:56 -0800490 struct vfsmount *bd_mnt;
491
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 bdev_cachep = kmem_cache_create("bdev_cache", sizeof(struct bdev_inode),
Paul Jacksonfffb60f2006-03-24 03:16:06 -0800493 0, (SLAB_HWCACHE_ALIGN|SLAB_RECLAIM_ACCOUNT|
494 SLAB_MEM_SPREAD|SLAB_PANIC),
Paul Mundt20c2df82007-07-20 10:11:58 +0900495 init_once);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 err = register_filesystem(&bd_type);
497 if (err)
498 panic("Cannot register bdev pseudo-fs");
499 bd_mnt = kern_mount(&bd_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 if (IS_ERR(bd_mnt))
501 panic("Cannot create bdev pseudo-fs");
Catalin Marinas2e1483c2009-06-11 13:24:13 +0100502 /*
503 * This vfsmount structure is only used to obtain the
504 * blockdev_superblock, so tell kmemleak not to report it.
505 */
506 kmemleak_not_leak(bd_mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 blockdev_superblock = bd_mnt->mnt_sb; /* For writeback */
508}
509
510/*
511 * Most likely _very_ bad one - but then it's hardly critical for small
512 * /dev and can be fixed when somebody will need really large one.
513 * Keep in mind that it will be fed through icache hash function too.
514 */
515static inline unsigned long hash(dev_t dev)
516{
517 return MAJOR(dev)+MINOR(dev);
518}
519
520static int bdev_test(struct inode *inode, void *data)
521{
522 return BDEV_I(inode)->bdev.bd_dev == *(dev_t *)data;
523}
524
525static int bdev_set(struct inode *inode, void *data)
526{
527 BDEV_I(inode)->bdev.bd_dev = *(dev_t *)data;
528 return 0;
529}
530
531static LIST_HEAD(all_bdevs);
532
533struct block_device *bdget(dev_t dev)
534{
535 struct block_device *bdev;
536 struct inode *inode;
537
Denis ChengRqc2acf7b2008-12-01 14:34:56 -0800538 inode = iget5_locked(blockdev_superblock, hash(dev),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 bdev_test, bdev_set, &dev);
540
541 if (!inode)
542 return NULL;
543
544 bdev = &BDEV_I(inode)->bdev;
545
546 if (inode->i_state & I_NEW) {
547 bdev->bd_contains = NULL;
548 bdev->bd_inode = inode;
549 bdev->bd_block_size = (1 << inode->i_blkbits);
550 bdev->bd_part_count = 0;
551 bdev->bd_invalidated = 0;
552 inode->i_mode = S_IFBLK;
553 inode->i_rdev = dev;
554 inode->i_bdev = bdev;
555 inode->i_data.a_ops = &def_blk_aops;
556 mapping_set_gfp_mask(&inode->i_data, GFP_USER);
557 inode->i_data.backing_dev_info = &default_backing_dev_info;
558 spin_lock(&bdev_lock);
559 list_add(&bdev->bd_list, &all_bdevs);
560 spin_unlock(&bdev_lock);
561 unlock_new_inode(inode);
562 }
563 return bdev;
564}
565
566EXPORT_SYMBOL(bdget);
567
Alan Jenkinsdddac6a2009-07-29 21:07:55 +0200568/**
569 * bdgrab -- Grab a reference to an already referenced block device
570 * @bdev: Block device to grab a reference to.
571 */
572struct block_device *bdgrab(struct block_device *bdev)
573{
Al Viro7de9c6ee2010-10-23 11:11:40 -0400574 ihold(bdev->bd_inode);
Alan Jenkinsdddac6a2009-07-29 21:07:55 +0200575 return bdev;
576}
577
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578long nr_blockdev_pages(void)
579{
Matthias Kaehlcke203a2932007-07-15 23:40:23 -0700580 struct block_device *bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 long ret = 0;
582 spin_lock(&bdev_lock);
Matthias Kaehlcke203a2932007-07-15 23:40:23 -0700583 list_for_each_entry(bdev, &all_bdevs, bd_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 ret += bdev->bd_inode->i_mapping->nrpages;
585 }
586 spin_unlock(&bdev_lock);
587 return ret;
588}
589
590void bdput(struct block_device *bdev)
591{
592 iput(bdev->bd_inode);
593}
594
595EXPORT_SYMBOL(bdput);
596
597static struct block_device *bd_acquire(struct inode *inode)
598{
599 struct block_device *bdev;
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700600
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 spin_lock(&bdev_lock);
602 bdev = inode->i_bdev;
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700603 if (bdev) {
Al Viro7de9c6ee2010-10-23 11:11:40 -0400604 ihold(bdev->bd_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 spin_unlock(&bdev_lock);
606 return bdev;
607 }
608 spin_unlock(&bdev_lock);
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700609
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 bdev = bdget(inode->i_rdev);
611 if (bdev) {
612 spin_lock(&bdev_lock);
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700613 if (!inode->i_bdev) {
614 /*
Al Viro7de9c6ee2010-10-23 11:11:40 -0400615 * We take an additional reference to bd_inode,
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700616 * and it's released in clear_inode() of inode.
617 * So, we can access it via ->i_mapping always
618 * without igrab().
619 */
Al Viro7de9c6ee2010-10-23 11:11:40 -0400620 ihold(bdev->bd_inode);
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700621 inode->i_bdev = bdev;
622 inode->i_mapping = bdev->bd_inode->i_mapping;
623 list_add(&inode->i_devices, &bdev->bd_inodes);
624 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 spin_unlock(&bdev_lock);
626 }
627 return bdev;
628}
629
630/* Call when you free inode */
631
632void bd_forget(struct inode *inode)
633{
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700634 struct block_device *bdev = NULL;
635
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 spin_lock(&bdev_lock);
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700637 if (inode->i_bdev) {
Denis ChengRqc2acf7b2008-12-01 14:34:56 -0800638 if (!sb_is_blkdev_sb(inode->i_sb))
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700639 bdev = inode->i_bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 __bd_forget(inode);
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700641 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 spin_unlock(&bdev_lock);
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700643
644 if (bdev)
645 iput(bdev->bd_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646}
647
Tejun Heo1a3cbbc2010-04-07 18:52:29 +0900648/**
649 * bd_may_claim - test whether a block device can be claimed
650 * @bdev: block device of interest
651 * @whole: whole block device containing @bdev, may equal @bdev
652 * @holder: holder trying to claim @bdev
653 *
654 * Test whther @bdev can be claimed by @holder.
655 *
656 * CONTEXT:
657 * spin_lock(&bdev_lock).
658 *
659 * RETURNS:
660 * %true if @bdev can be claimed, %false otherwise.
661 */
662static bool bd_may_claim(struct block_device *bdev, struct block_device *whole,
663 void *holder)
664{
665 if (bdev->bd_holder == holder)
666 return true; /* already a holder */
667 else if (bdev->bd_holder != NULL)
668 return false; /* held by someone else */
669 else if (bdev->bd_contains == bdev)
670 return true; /* is a whole device which isn't held */
671
672 else if (whole->bd_holder == bd_claim)
673 return true; /* is a partition of a device that is being partitioned */
674 else if (whole->bd_holder != NULL)
675 return false; /* is a partition of a held device */
676 else
677 return true; /* is a partition of an un-held device */
678}
679
680/**
Tejun Heo6b4517a2010-04-07 18:53:59 +0900681 * bd_prepare_to_claim - prepare to claim a block device
682 * @bdev: block device of interest
683 * @whole: the whole device containing @bdev, may equal @bdev
684 * @holder: holder trying to claim @bdev
685 *
686 * Prepare to claim @bdev. This function fails if @bdev is already
687 * claimed by another holder and waits if another claiming is in
688 * progress. This function doesn't actually claim. On successful
689 * return, the caller has ownership of bd_claiming and bd_holder[s].
690 *
691 * CONTEXT:
692 * spin_lock(&bdev_lock). Might release bdev_lock, sleep and regrab
693 * it multiple times.
694 *
695 * RETURNS:
696 * 0 if @bdev can be claimed, -EBUSY otherwise.
697 */
698static int bd_prepare_to_claim(struct block_device *bdev,
699 struct block_device *whole, void *holder)
700{
701retry:
702 /* if someone else claimed, fail */
703 if (!bd_may_claim(bdev, whole, holder))
704 return -EBUSY;
705
Tejun Heoe75aa852010-08-04 17:59:39 +0200706 /* if claiming is already in progress, wait for it to finish */
707 if (whole->bd_claiming) {
Tejun Heo6b4517a2010-04-07 18:53:59 +0900708 wait_queue_head_t *wq = bit_waitqueue(&whole->bd_claiming, 0);
709 DEFINE_WAIT(wait);
710
711 prepare_to_wait(wq, &wait, TASK_UNINTERRUPTIBLE);
712 spin_unlock(&bdev_lock);
713 schedule();
714 finish_wait(wq, &wait);
715 spin_lock(&bdev_lock);
716 goto retry;
717 }
718
719 /* yay, all mine */
720 return 0;
721}
722
723/**
724 * bd_start_claiming - start claiming a block device
725 * @bdev: block device of interest
726 * @holder: holder trying to claim @bdev
727 *
728 * @bdev is about to be opened exclusively. Check @bdev can be opened
729 * exclusively and mark that an exclusive open is in progress. Each
730 * successful call to this function must be matched with a call to
Nick Pigginb0018362010-05-26 01:51:19 +1000731 * either bd_finish_claiming() or bd_abort_claiming() (which do not
732 * fail).
733 *
734 * This function is used to gain exclusive access to the block device
735 * without actually causing other exclusive open attempts to fail. It
736 * should be used when the open sequence itself requires exclusive
737 * access but may subsequently fail.
Tejun Heo6b4517a2010-04-07 18:53:59 +0900738 *
739 * CONTEXT:
740 * Might sleep.
741 *
742 * RETURNS:
743 * Pointer to the block device containing @bdev on success, ERR_PTR()
744 * value on failure.
745 */
746static struct block_device *bd_start_claiming(struct block_device *bdev,
747 void *holder)
748{
749 struct gendisk *disk;
750 struct block_device *whole;
751 int partno, err;
752
753 might_sleep();
754
755 /*
756 * @bdev might not have been initialized properly yet, look up
757 * and grab the outer block device the hard way.
758 */
759 disk = get_gendisk(bdev->bd_dev, &partno);
760 if (!disk)
761 return ERR_PTR(-ENXIO);
762
763 whole = bdget_disk(disk, 0);
Nick Piggincf342572010-05-26 01:50:21 +1000764 module_put(disk->fops->owner);
Tejun Heo6b4517a2010-04-07 18:53:59 +0900765 put_disk(disk);
766 if (!whole)
767 return ERR_PTR(-ENOMEM);
768
769 /* prepare to claim, if successful, mark claiming in progress */
770 spin_lock(&bdev_lock);
771
772 err = bd_prepare_to_claim(bdev, whole, holder);
773 if (err == 0) {
774 whole->bd_claiming = holder;
775 spin_unlock(&bdev_lock);
776 return whole;
777 } else {
778 spin_unlock(&bdev_lock);
779 bdput(whole);
780 return ERR_PTR(err);
781 }
782}
783
784/* releases bdev_lock */
785static void __bd_abort_claiming(struct block_device *whole, void *holder)
786{
787 BUG_ON(whole->bd_claiming != holder);
788 whole->bd_claiming = NULL;
789 wake_up_bit(&whole->bd_claiming, 0);
790
791 spin_unlock(&bdev_lock);
792 bdput(whole);
793}
794
795/**
796 * bd_abort_claiming - abort claiming a block device
797 * @whole: whole block device returned by bd_start_claiming()
798 * @holder: holder trying to claim @bdev
799 *
800 * Abort a claiming block started by bd_start_claiming(). Note that
801 * @whole is not the block device to be claimed but the whole device
802 * returned by bd_start_claiming().
803 *
804 * CONTEXT:
805 * Grabs and releases bdev_lock.
806 */
807static void bd_abort_claiming(struct block_device *whole, void *holder)
808{
809 spin_lock(&bdev_lock);
810 __bd_abort_claiming(whole, holder); /* releases bdev_lock */
811}
812
Nick Pigginb0018362010-05-26 01:51:19 +1000813/* increment holders when we have a legitimate claim. requires bdev_lock */
814static void __bd_claim(struct block_device *bdev, struct block_device *whole,
815 void *holder)
816{
817 /* note that for a whole device bd_holders
818 * will be incremented twice, and bd_holder will
819 * be set to bd_claim before being set to holder
820 */
821 whole->bd_holders++;
822 whole->bd_holder = bd_claim;
823 bdev->bd_holders++;
824 bdev->bd_holder = holder;
825}
826
827/**
828 * bd_finish_claiming - finish claiming a block device
829 * @bdev: block device of interest (passed to bd_start_claiming())
830 * @whole: whole block device returned by bd_start_claiming()
831 * @holder: holder trying to claim @bdev
832 *
833 * Finish a claiming block started by bd_start_claiming().
834 *
835 * CONTEXT:
836 * Grabs and releases bdev_lock.
837 */
838static void bd_finish_claiming(struct block_device *bdev,
839 struct block_device *whole, void *holder)
840{
841 spin_lock(&bdev_lock);
Nick Pigginb0018362010-05-26 01:51:19 +1000842 BUG_ON(!bd_may_claim(bdev, whole, holder));
843 __bd_claim(bdev, whole, holder);
844 __bd_abort_claiming(whole, holder); /* not actually an abort */
845}
846
Tejun Heo6b4517a2010-04-07 18:53:59 +0900847/**
Tejun Heo1a3cbbc2010-04-07 18:52:29 +0900848 * bd_claim - claim a block device
849 * @bdev: block device to claim
850 * @holder: holder trying to claim @bdev
851 *
Nick Pigginb0018362010-05-26 01:51:19 +1000852 * Try to claim @bdev which must have been opened successfully.
Tejun Heo6b4517a2010-04-07 18:53:59 +0900853 *
854 * CONTEXT:
855 * Might sleep.
Tejun Heo1a3cbbc2010-04-07 18:52:29 +0900856 *
857 * RETURNS:
858 * 0 if successful, -EBUSY if @bdev is already claimed.
859 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860int bd_claim(struct block_device *bdev, void *holder)
861{
Tejun Heo1a3cbbc2010-04-07 18:52:29 +0900862 struct block_device *whole = bdev->bd_contains;
Tejun Heo6b4517a2010-04-07 18:53:59 +0900863 int res;
864
865 might_sleep();
Tejun Heo1a3cbbc2010-04-07 18:52:29 +0900866
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 spin_lock(&bdev_lock);
Tejun Heo6b4517a2010-04-07 18:53:59 +0900868 res = bd_prepare_to_claim(bdev, whole, holder);
Nick Pigginb0018362010-05-26 01:51:19 +1000869 if (res == 0)
870 __bd_claim(bdev, whole, holder);
871 spin_unlock(&bdev_lock);
Tejun Heo6b4517a2010-04-07 18:53:59 +0900872
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 return res;
874}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875EXPORT_SYMBOL(bd_claim);
876
877void bd_release(struct block_device *bdev)
878{
879 spin_lock(&bdev_lock);
880 if (!--bdev->bd_contains->bd_holders)
881 bdev->bd_contains->bd_holder = NULL;
882 if (!--bdev->bd_holders)
883 bdev->bd_holder = NULL;
884 spin_unlock(&bdev_lock);
885}
886
887EXPORT_SYMBOL(bd_release);
888
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800889#ifdef CONFIG_SYSFS
890/*
891 * Functions for bd_claim_by_kobject / bd_release_from_kobject
892 *
893 * If a kobject is passed to bd_claim_by_kobject()
894 * and the kobject has a parent directory,
895 * following symlinks are created:
896 * o from the kobject to the claimed bdev
897 * o from "holders" directory of the bdev to the parent of the kobject
898 * bd_release_from_kobject() removes these symlinks.
899 *
900 * Example:
901 * If /dev/dm-0 maps to /dev/sda, kobject corresponding to
902 * /sys/block/dm-0/slaves is passed to bd_claim_by_kobject(), then:
903 * /sys/block/dm-0/slaves/sda --> /sys/block/sda
904 * /sys/block/sda/holders/dm-0 --> /sys/block/dm-0
905 */
906
Andrew Morton4d7dd8f2006-09-29 01:58:56 -0700907static int add_symlink(struct kobject *from, struct kobject *to)
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800908{
909 if (!from || !to)
Andrew Morton4d7dd8f2006-09-29 01:58:56 -0700910 return 0;
911 return sysfs_create_link(from, to, kobject_name(to));
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800912}
913
914static void del_symlink(struct kobject *from, struct kobject *to)
915{
916 if (!from || !to)
917 return;
918 sysfs_remove_link(from, kobject_name(to));
919}
920
921/*
922 * 'struct bd_holder' contains pointers to kobjects symlinked by
923 * bd_claim_by_kobject.
924 * It's connected to bd_holder_list which is protected by bdev->bd_sem.
925 */
926struct bd_holder {
927 struct list_head list; /* chain of holders of the bdev */
928 int count; /* references from the holder */
929 struct kobject *sdir; /* holder object, e.g. "/block/dm-0/slaves" */
930 struct kobject *hdev; /* e.g. "/block/dm-0" */
931 struct kobject *hdir; /* e.g. "/block/sda/holders" */
932 struct kobject *sdev; /* e.g. "/block/sda" */
933};
934
935/*
936 * Get references of related kobjects at once.
937 * Returns 1 on success. 0 on failure.
938 *
939 * Should call bd_holder_release_dirs() after successful use.
940 */
941static int bd_holder_grab_dirs(struct block_device *bdev,
942 struct bd_holder *bo)
943{
944 if (!bdev || !bo)
945 return 0;
946
947 bo->sdir = kobject_get(bo->sdir);
948 if (!bo->sdir)
949 return 0;
950
951 bo->hdev = kobject_get(bo->sdir->parent);
952 if (!bo->hdev)
953 goto fail_put_sdir;
954
Tejun Heo0762b8b2008-08-25 19:56:12 +0900955 bo->sdev = kobject_get(&part_to_dev(bdev->bd_part)->kobj);
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800956 if (!bo->sdev)
957 goto fail_put_hdev;
958
Tejun Heo4c465012008-08-25 19:56:11 +0900959 bo->hdir = kobject_get(bdev->bd_part->holder_dir);
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800960 if (!bo->hdir)
961 goto fail_put_sdev;
962
963 return 1;
964
965fail_put_sdev:
966 kobject_put(bo->sdev);
967fail_put_hdev:
968 kobject_put(bo->hdev);
969fail_put_sdir:
970 kobject_put(bo->sdir);
971
972 return 0;
973}
974
975/* Put references of related kobjects at once. */
976static void bd_holder_release_dirs(struct bd_holder *bo)
977{
978 kobject_put(bo->hdir);
979 kobject_put(bo->sdev);
980 kobject_put(bo->hdev);
981 kobject_put(bo->sdir);
982}
983
984static struct bd_holder *alloc_bd_holder(struct kobject *kobj)
985{
986 struct bd_holder *bo;
987
988 bo = kzalloc(sizeof(*bo), GFP_KERNEL);
989 if (!bo)
990 return NULL;
991
992 bo->count = 1;
993 bo->sdir = kobj;
994
995 return bo;
996}
997
998static void free_bd_holder(struct bd_holder *bo)
999{
1000 kfree(bo);
1001}
1002
1003/**
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -05001004 * find_bd_holder - find matching struct bd_holder from the block device
1005 *
1006 * @bdev: struct block device to be searched
1007 * @bo: target struct bd_holder
1008 *
1009 * Returns matching entry with @bo in @bdev->bd_holder_list.
1010 * If found, increment the reference count and return the pointer.
1011 * If not found, returns NULL.
1012 */
Andrew Morton36a561d2006-10-30 22:07:03 -08001013static struct bd_holder *find_bd_holder(struct block_device *bdev,
1014 struct bd_holder *bo)
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -05001015{
1016 struct bd_holder *tmp;
1017
1018 list_for_each_entry(tmp, &bdev->bd_holder_list, list)
1019 if (tmp->sdir == bo->sdir) {
1020 tmp->count++;
1021 return tmp;
1022 }
1023
1024 return NULL;
1025}
1026
1027/**
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001028 * add_bd_holder - create sysfs symlinks for bd_claim() relationship
1029 *
1030 * @bdev: block device to be bd_claimed
1031 * @bo: preallocated and initialized by alloc_bd_holder()
1032 *
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -05001033 * Add @bo to @bdev->bd_holder_list, create symlinks.
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001034 *
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -05001035 * Returns 0 if symlinks are created.
1036 * Returns -ve if something fails.
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001037 */
1038static int add_bd_holder(struct block_device *bdev, struct bd_holder *bo)
1039{
Johannes Weiner4e916722007-07-15 23:41:25 -07001040 int err;
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001041
1042 if (!bo)
Andrew Morton4d7dd8f2006-09-29 01:58:56 -07001043 return -EINVAL;
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001044
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001045 if (!bd_holder_grab_dirs(bdev, bo))
Andrew Morton4d7dd8f2006-09-29 01:58:56 -07001046 return -EBUSY;
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001047
Johannes Weiner4e916722007-07-15 23:41:25 -07001048 err = add_symlink(bo->sdir, bo->sdev);
1049 if (err)
1050 return err;
1051
1052 err = add_symlink(bo->hdir, bo->hdev);
1053 if (err) {
1054 del_symlink(bo->sdir, bo->sdev);
1055 return err;
Andrew Morton4d7dd8f2006-09-29 01:58:56 -07001056 }
Johannes Weiner4e916722007-07-15 23:41:25 -07001057
1058 list_add_tail(&bo->list, &bdev->bd_holder_list);
1059 return 0;
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001060}
1061
1062/**
1063 * del_bd_holder - delete sysfs symlinks for bd_claim() relationship
1064 *
1065 * @bdev: block device to be bd_claimed
1066 * @kobj: holder's kobject
1067 *
1068 * If there is matching entry with @kobj in @bdev->bd_holder_list
1069 * and no other bd_claim() from the same kobject,
1070 * remove the struct bd_holder from the list, delete symlinks for it.
1071 *
1072 * Returns a pointer to the struct bd_holder when it's removed from the list
1073 * and ready to be freed.
1074 * Returns NULL if matching claim isn't found or there is other bd_claim()
1075 * by the same kobject.
1076 */
1077static struct bd_holder *del_bd_holder(struct block_device *bdev,
1078 struct kobject *kobj)
1079{
1080 struct bd_holder *bo;
1081
1082 list_for_each_entry(bo, &bdev->bd_holder_list, list) {
1083 if (bo->sdir == kobj) {
1084 bo->count--;
1085 BUG_ON(bo->count < 0);
1086 if (!bo->count) {
1087 list_del(&bo->list);
1088 del_symlink(bo->sdir, bo->sdev);
1089 del_symlink(bo->hdir, bo->hdev);
1090 bd_holder_release_dirs(bo);
1091 return bo;
1092 }
1093 break;
1094 }
1095 }
1096
1097 return NULL;
1098}
1099
1100/**
1101 * bd_claim_by_kobject - bd_claim() with additional kobject signature
1102 *
1103 * @bdev: block device to be claimed
1104 * @holder: holder's signature
1105 * @kobj: holder's kobject
1106 *
1107 * Do bd_claim() and if it succeeds, create sysfs symlinks between
1108 * the bdev and the holder's kobject.
1109 * Use bd_release_from_kobject() when relesing the claimed bdev.
1110 *
1111 * Returns 0 on success. (same as bd_claim())
1112 * Returns errno on failure.
1113 */
1114static int bd_claim_by_kobject(struct block_device *bdev, void *holder,
1115 struct kobject *kobj)
1116{
Johannes Weiner4e916722007-07-15 23:41:25 -07001117 int err;
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -05001118 struct bd_holder *bo, *found;
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001119
1120 if (!kobj)
1121 return -EINVAL;
1122
1123 bo = alloc_bd_holder(kobj);
1124 if (!bo)
1125 return -ENOMEM;
1126
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001127 mutex_lock(&bdev->bd_mutex);
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -05001128
Johannes Weiner4e916722007-07-15 23:41:25 -07001129 err = bd_claim(bdev, holder);
1130 if (err)
Andrew Morton4210df22007-07-15 23:41:28 -07001131 goto fail;
Johannes Weiner4e916722007-07-15 23:41:25 -07001132
1133 found = find_bd_holder(bdev, bo);
1134 if (found)
Andrew Morton4210df22007-07-15 23:41:28 -07001135 goto fail;
Johannes Weiner4e916722007-07-15 23:41:25 -07001136
1137 err = add_bd_holder(bdev, bo);
1138 if (err)
1139 bd_release(bdev);
Andrew Morton4210df22007-07-15 23:41:28 -07001140 else
1141 bo = NULL;
1142fail:
Jun'ichi Nomurab4cf1b72006-03-27 01:18:00 -08001143 mutex_unlock(&bdev->bd_mutex);
Andrew Morton4210df22007-07-15 23:41:28 -07001144 free_bd_holder(bo);
Johannes Weiner4e916722007-07-15 23:41:25 -07001145 return err;
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001146}
1147
1148/**
1149 * bd_release_from_kobject - bd_release() with additional kobject signature
1150 *
1151 * @bdev: block device to be released
1152 * @kobj: holder's kobject
1153 *
1154 * Do bd_release() and remove sysfs symlinks created by bd_claim_by_kobject().
1155 */
1156static void bd_release_from_kobject(struct block_device *bdev,
1157 struct kobject *kobj)
1158{
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001159 if (!kobj)
1160 return;
1161
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001162 mutex_lock(&bdev->bd_mutex);
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001163 bd_release(bdev);
Andrew Morton4210df22007-07-15 23:41:28 -07001164 free_bd_holder(del_bd_holder(bdev, kobj));
Jun'ichi Nomurab4cf1b72006-03-27 01:18:00 -08001165 mutex_unlock(&bdev->bd_mutex);
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001166}
1167
1168/**
1169 * bd_claim_by_disk - wrapper function for bd_claim_by_kobject()
1170 *
1171 * @bdev: block device to be claimed
1172 * @holder: holder's signature
1173 * @disk: holder's gendisk
1174 *
1175 * Call bd_claim_by_kobject() with getting @disk->slave_dir.
1176 */
1177int bd_claim_by_disk(struct block_device *bdev, void *holder,
1178 struct gendisk *disk)
1179{
1180 return bd_claim_by_kobject(bdev, holder, kobject_get(disk->slave_dir));
1181}
1182EXPORT_SYMBOL_GPL(bd_claim_by_disk);
1183
1184/**
1185 * bd_release_from_disk - wrapper function for bd_release_from_kobject()
1186 *
1187 * @bdev: block device to be claimed
1188 * @disk: holder's gendisk
1189 *
1190 * Call bd_release_from_kobject() and put @disk->slave_dir.
1191 */
1192void bd_release_from_disk(struct block_device *bdev, struct gendisk *disk)
1193{
1194 bd_release_from_kobject(bdev, disk->slave_dir);
1195 kobject_put(disk->slave_dir);
1196}
1197EXPORT_SYMBOL_GPL(bd_release_from_disk);
1198#endif
1199
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200/*
1201 * Tries to open block device by device number. Use it ONLY if you
1202 * really do not have anything better - i.e. when you are behind a
1203 * truly sucky interface and all you are given is a device number. _Never_
1204 * to be used for internal purposes. If you ever need it - reconsider
1205 * your API.
1206 */
Al Viroaeb5d722008-09-02 15:28:45 -04001207struct block_device *open_by_devnum(dev_t dev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208{
1209 struct block_device *bdev = bdget(dev);
1210 int err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 if (bdev)
Al Viro572c4892007-10-08 13:24:05 -04001212 err = blkdev_get(bdev, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 return err ? ERR_PTR(err) : bdev;
1214}
1215
1216EXPORT_SYMBOL(open_by_devnum);
1217
Andrew Patterson0c002c22008-09-04 14:27:20 -06001218/**
Andrew Patterson56ade442008-09-04 14:27:40 -06001219 * flush_disk - invalidates all buffer-cache entries on a disk
1220 *
1221 * @bdev: struct block device to be flushed
1222 *
1223 * Invalidates all buffer-cache entries on a disk. It should be called
1224 * when a disk has been changed -- either by a media change or online
1225 * resize.
1226 */
1227static void flush_disk(struct block_device *bdev)
1228{
1229 if (__invalidate_device(bdev)) {
1230 char name[BDEVNAME_SIZE] = "";
1231
1232 if (bdev->bd_disk)
1233 disk_name(bdev->bd_disk, 0, name);
1234 printk(KERN_WARNING "VFS: busy inodes on changed media or "
1235 "resized disk %s\n", name);
1236 }
1237
1238 if (!bdev->bd_disk)
1239 return;
1240 if (disk_partitionable(bdev->bd_disk))
1241 bdev->bd_invalidated = 1;
1242}
1243
1244/**
Randy Dunlap57d1b532008-10-09 10:42:38 +02001245 * check_disk_size_change - checks for disk size change and adjusts bdev size.
Andrew Pattersonc3279d12008-09-04 14:27:25 -06001246 * @disk: struct gendisk to check
1247 * @bdev: struct bdev to adjust.
1248 *
1249 * This routine checks to see if the bdev size does not match the disk size
1250 * and adjusts it if it differs.
1251 */
1252void check_disk_size_change(struct gendisk *disk, struct block_device *bdev)
1253{
1254 loff_t disk_size, bdev_size;
1255
1256 disk_size = (loff_t)get_capacity(disk) << 9;
1257 bdev_size = i_size_read(bdev->bd_inode);
1258 if (disk_size != bdev_size) {
1259 char name[BDEVNAME_SIZE];
1260
1261 disk_name(disk, 0, name);
1262 printk(KERN_INFO
1263 "%s: detected capacity change from %lld to %lld\n",
1264 name, bdev_size, disk_size);
1265 i_size_write(bdev->bd_inode, disk_size);
Andrew Patterson608aeef2008-09-04 14:27:45 -06001266 flush_disk(bdev);
Andrew Pattersonc3279d12008-09-04 14:27:25 -06001267 }
1268}
1269EXPORT_SYMBOL(check_disk_size_change);
1270
1271/**
Randy Dunlap57d1b532008-10-09 10:42:38 +02001272 * revalidate_disk - wrapper for lower-level driver's revalidate_disk call-back
Andrew Patterson0c002c22008-09-04 14:27:20 -06001273 * @disk: struct gendisk to be revalidated
1274 *
1275 * This routine is a wrapper for lower-level driver's revalidate_disk
1276 * call-backs. It is used to do common pre and post operations needed
1277 * for all revalidate_disk operations.
1278 */
1279int revalidate_disk(struct gendisk *disk)
1280{
Andrew Pattersonc3279d12008-09-04 14:27:25 -06001281 struct block_device *bdev;
Andrew Patterson0c002c22008-09-04 14:27:20 -06001282 int ret = 0;
1283
1284 if (disk->fops->revalidate_disk)
1285 ret = disk->fops->revalidate_disk(disk);
1286
Andrew Pattersonc3279d12008-09-04 14:27:25 -06001287 bdev = bdget_disk(disk, 0);
1288 if (!bdev)
1289 return ret;
1290
1291 mutex_lock(&bdev->bd_mutex);
1292 check_disk_size_change(disk, bdev);
1293 mutex_unlock(&bdev->bd_mutex);
1294 bdput(bdev);
Andrew Patterson0c002c22008-09-04 14:27:20 -06001295 return ret;
1296}
1297EXPORT_SYMBOL(revalidate_disk);
1298
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299/*
1300 * This routine checks whether a removable media has been changed,
1301 * and invalidates all buffer-cache-entries in that case. This
1302 * is a relatively slow routine, so we have to try to minimize using
1303 * it. Thus it is called only upon a 'mount' or 'open'. This
1304 * is the best way of combining speed and utility, I think.
1305 * People changing diskettes in the middle of an operation deserve
1306 * to lose :-)
1307 */
1308int check_disk_change(struct block_device *bdev)
1309{
1310 struct gendisk *disk = bdev->bd_disk;
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -07001311 const struct block_device_operations *bdops = disk->fops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312
1313 if (!bdops->media_changed)
1314 return 0;
1315 if (!bdops->media_changed(bdev->bd_disk))
1316 return 0;
1317
Andrew Patterson56ade442008-09-04 14:27:40 -06001318 flush_disk(bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 if (bdops->revalidate_disk)
1320 bdops->revalidate_disk(bdev->bd_disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 return 1;
1322}
1323
1324EXPORT_SYMBOL(check_disk_change);
1325
1326void bd_set_size(struct block_device *bdev, loff_t size)
1327{
Martin K. Petersene1defc42009-05-22 17:17:49 -04001328 unsigned bsize = bdev_logical_block_size(bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329
1330 bdev->bd_inode->i_size = size;
1331 while (bsize < PAGE_CACHE_SIZE) {
1332 if (size & bsize)
1333 break;
1334 bsize <<= 1;
1335 }
1336 bdev->bd_block_size = bsize;
1337 bdev->bd_inode->i_blkbits = blksize_bits(bsize);
1338}
1339EXPORT_SYMBOL(bd_set_size);
1340
Al Viro9a1c3542008-02-22 20:40:24 -05001341static int __blkdev_put(struct block_device *bdev, fmode_t mode, int for_part);
NeilBrown37be4122006-12-08 02:36:16 -08001342
Peter Zijlstra6d740cd2007-02-20 13:58:18 -08001343/*
1344 * bd_mutex locking:
1345 *
1346 * mutex_lock(part->bd_mutex)
1347 * mutex_lock_nested(whole->bd_mutex, 1)
1348 */
1349
Al Viro572c4892007-10-08 13:24:05 -04001350static int __blkdev_get(struct block_device *bdev, fmode_t mode, int for_part)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 struct gendisk *disk;
Pavel Emelyanov7db9cfd2008-06-05 22:46:27 -07001353 int ret;
Tejun Heocf771cb2008-09-03 09:01:09 +02001354 int partno;
Al Virofe6e9c12008-06-23 08:30:55 -04001355 int perm = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356
Al Viro572c4892007-10-08 13:24:05 -04001357 if (mode & FMODE_READ)
Al Virofe6e9c12008-06-23 08:30:55 -04001358 perm |= MAY_READ;
Al Viro572c4892007-10-08 13:24:05 -04001359 if (mode & FMODE_WRITE)
Al Virofe6e9c12008-06-23 08:30:55 -04001360 perm |= MAY_WRITE;
1361 /*
1362 * hooks: /n/, see "layering violations".
1363 */
Chris Wrightb7300b72010-08-10 18:02:55 -07001364 if (!for_part) {
1365 ret = devcgroup_inode_permission(bdev->bd_inode, perm);
1366 if (ret != 0) {
1367 bdput(bdev);
1368 return ret;
1369 }
Al Viro82666022008-08-01 05:32:04 -04001370 }
Pavel Emelyanov7db9cfd2008-06-05 22:46:27 -07001371
NeilBrownd3374822009-01-09 08:31:10 +11001372 restart:
Tejun Heo0762b8b2008-08-25 19:56:12 +09001373
Tejun Heo89f97492008-11-05 10:21:06 +01001374 ret = -ENXIO;
Tejun Heocf771cb2008-09-03 09:01:09 +02001375 disk = get_gendisk(bdev->bd_dev, &partno);
Tejun Heo0762b8b2008-08-25 19:56:12 +09001376 if (!disk)
Arnd Bergmann6e9624b2010-08-07 18:25:34 +02001377 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378
NeilBrown6796bf52006-12-08 02:36:16 -08001379 mutex_lock_nested(&bdev->bd_mutex, for_part);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 if (!bdev->bd_openers) {
1381 bdev->bd_disk = disk;
1382 bdev->bd_contains = bdev;
Tejun Heocf771cb2008-09-03 09:01:09 +02001383 if (!partno) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 struct backing_dev_info *bdi;
Tejun Heo89f97492008-11-05 10:21:06 +01001385
1386 ret = -ENXIO;
1387 bdev->bd_part = disk_get_part(disk, partno);
1388 if (!bdev->bd_part)
1389 goto out_clear;
1390
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 if (disk->fops->open) {
Al Viro572c4892007-10-08 13:24:05 -04001392 ret = disk->fops->open(bdev, mode);
NeilBrownd3374822009-01-09 08:31:10 +11001393 if (ret == -ERESTARTSYS) {
1394 /* Lost a race with 'disk' being
1395 * deleted, try again.
1396 * See md.c
1397 */
1398 disk_put_part(bdev->bd_part);
1399 bdev->bd_part = NULL;
1400 module_put(disk->fops->owner);
1401 put_disk(disk);
1402 bdev->bd_disk = NULL;
1403 mutex_unlock(&bdev->bd_mutex);
1404 goto restart;
1405 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 if (ret)
Tejun Heo0762b8b2008-08-25 19:56:12 +09001407 goto out_clear;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 }
1409 if (!bdev->bd_openers) {
1410 bd_set_size(bdev,(loff_t)get_capacity(disk)<<9);
1411 bdi = blk_get_backing_dev_info(bdev);
1412 if (bdi == NULL)
1413 bdi = &default_backing_dev_info;
Dave Chinnera5491e02010-10-21 11:49:26 +11001414 bdev_inode_switch_bdi(bdev->bd_inode, bdi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 }
1416 if (bdev->bd_invalidated)
1417 rescan_partitions(disk, bdev);
1418 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 struct block_device *whole;
1420 whole = bdget_disk(disk, 0);
1421 ret = -ENOMEM;
1422 if (!whole)
Tejun Heo0762b8b2008-08-25 19:56:12 +09001423 goto out_clear;
NeilBrown37be4122006-12-08 02:36:16 -08001424 BUG_ON(for_part);
Al Viro572c4892007-10-08 13:24:05 -04001425 ret = __blkdev_get(whole, mode, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 if (ret)
Tejun Heo0762b8b2008-08-25 19:56:12 +09001427 goto out_clear;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 bdev->bd_contains = whole;
Dave Chinnera5491e02010-10-21 11:49:26 +11001429 bdev_inode_switch_bdi(bdev->bd_inode,
1430 whole->bd_inode->i_data.backing_dev_info);
Tejun Heo89f97492008-11-05 10:21:06 +01001431 bdev->bd_part = disk_get_part(disk, partno);
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001432 if (!(disk->flags & GENHD_FL_UP) ||
Tejun Heo89f97492008-11-05 10:21:06 +01001433 !bdev->bd_part || !bdev->bd_part->nr_sects) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 ret = -ENXIO;
Tejun Heo0762b8b2008-08-25 19:56:12 +09001435 goto out_clear;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 }
Tejun Heo89f97492008-11-05 10:21:06 +01001437 bd_set_size(bdev, (loff_t)bdev->bd_part->nr_sects << 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 }
1439 } else {
Tejun Heo0762b8b2008-08-25 19:56:12 +09001440 module_put(disk->fops->owner);
Neil Brown960cc0f2009-10-26 08:59:17 +01001441 put_disk(disk);
Tejun Heo0762b8b2008-08-25 19:56:12 +09001442 disk = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 if (bdev->bd_contains == bdev) {
1444 if (bdev->bd_disk->fops->open) {
Al Viro572c4892007-10-08 13:24:05 -04001445 ret = bdev->bd_disk->fops->open(bdev, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 if (ret)
Tejun Heo0762b8b2008-08-25 19:56:12 +09001447 goto out_unlock_bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 }
1449 if (bdev->bd_invalidated)
1450 rescan_partitions(bdev->bd_disk, bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 }
1452 }
1453 bdev->bd_openers++;
NeilBrown37be4122006-12-08 02:36:16 -08001454 if (for_part)
1455 bdev->bd_part_count++;
Arjan van de Venc039e312006-03-23 03:00:28 -08001456 mutex_unlock(&bdev->bd_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 return 0;
1458
Tejun Heo0762b8b2008-08-25 19:56:12 +09001459 out_clear:
Tejun Heo89f97492008-11-05 10:21:06 +01001460 disk_put_part(bdev->bd_part);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 bdev->bd_disk = NULL;
Tejun Heo0762b8b2008-08-25 19:56:12 +09001462 bdev->bd_part = NULL;
Dave Chinnera5491e02010-10-21 11:49:26 +11001463 bdev_inode_switch_bdi(bdev->bd_inode, &default_backing_dev_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 if (bdev != bdev->bd_contains)
Al Viro572c4892007-10-08 13:24:05 -04001465 __blkdev_put(bdev->bd_contains, mode, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 bdev->bd_contains = NULL;
Tejun Heo0762b8b2008-08-25 19:56:12 +09001467 out_unlock_bdev:
Arjan van de Venc039e312006-03-23 03:00:28 -08001468 mutex_unlock(&bdev->bd_mutex);
Arnd Bergmann6e9624b2010-08-07 18:25:34 +02001469 out:
Tejun Heo0762b8b2008-08-25 19:56:12 +09001470 if (disk)
1471 module_put(disk->fops->owner);
1472 put_disk(disk);
1473 bdput(bdev);
1474
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 return ret;
1476}
1477
Al Viro572c4892007-10-08 13:24:05 -04001478int blkdev_get(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479{
Al Viro572c4892007-10-08 13:24:05 -04001480 return __blkdev_get(bdev, mode, 0);
NeilBrown37be4122006-12-08 02:36:16 -08001481}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482EXPORT_SYMBOL(blkdev_get);
1483
1484static int blkdev_open(struct inode * inode, struct file * filp)
1485{
Tejun Heo6b4517a2010-04-07 18:53:59 +09001486 struct block_device *whole = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 struct block_device *bdev;
1488 int res;
1489
1490 /*
1491 * Preserve backwards compatibility and allow large file access
1492 * even if userspace doesn't ask for it explicitly. Some mkfs
1493 * binary needs it. We might want to drop this workaround
1494 * during an unstable branch.
1495 */
1496 filp->f_flags |= O_LARGEFILE;
1497
Al Viro572c4892007-10-08 13:24:05 -04001498 if (filp->f_flags & O_NDELAY)
1499 filp->f_mode |= FMODE_NDELAY;
1500 if (filp->f_flags & O_EXCL)
1501 filp->f_mode |= FMODE_EXCL;
1502 if ((filp->f_flags & O_ACCMODE) == 3)
1503 filp->f_mode |= FMODE_WRITE_IOCTL;
1504
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 bdev = bd_acquire(inode);
Pavel Emelianov6a2aae02006-10-28 10:38:33 -07001506 if (bdev == NULL)
1507 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508
Tejun Heo6b4517a2010-04-07 18:53:59 +09001509 if (filp->f_mode & FMODE_EXCL) {
1510 whole = bd_start_claiming(bdev, filp);
1511 if (IS_ERR(whole)) {
1512 bdput(bdev);
1513 return PTR_ERR(whole);
1514 }
1515 }
1516
Al Viro572c4892007-10-08 13:24:05 -04001517 filp->f_mapping = bdev->bd_inode->i_mapping;
1518
1519 res = blkdev_get(bdev, filp->f_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520
Tejun Heo6b4517a2010-04-07 18:53:59 +09001521 if (whole) {
1522 if (res == 0)
Nick Pigginb0018362010-05-26 01:51:19 +10001523 bd_finish_claiming(bdev, whole, filp);
Tejun Heo6b4517a2010-04-07 18:53:59 +09001524 else
1525 bd_abort_claiming(whole, filp);
Christoph Hellwigebbefc02008-11-05 14:54:41 +01001526 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 return res;
1529}
1530
Al Viro9a1c3542008-02-22 20:40:24 -05001531static int __blkdev_put(struct block_device *bdev, fmode_t mode, int for_part)
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001532{
1533 int ret = 0;
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001534 struct gendisk *disk = bdev->bd_disk;
NeilBrown37be4122006-12-08 02:36:16 -08001535 struct block_device *victim = NULL;
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001536
NeilBrown6796bf52006-12-08 02:36:16 -08001537 mutex_lock_nested(&bdev->bd_mutex, for_part);
NeilBrown37be4122006-12-08 02:36:16 -08001538 if (for_part)
1539 bdev->bd_part_count--;
1540
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001541 if (!--bdev->bd_openers) {
1542 sync_blockdev(bdev);
1543 kill_bdev(bdev);
1544 }
1545 if (bdev->bd_contains == bdev) {
1546 if (disk->fops->release)
Al Viro9a1c3542008-02-22 20:40:24 -05001547 ret = disk->fops->release(disk, mode);
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001548 }
1549 if (!bdev->bd_openers) {
1550 struct module *owner = disk->fops->owner;
1551
1552 put_disk(disk);
1553 module_put(owner);
Tejun Heo0762b8b2008-08-25 19:56:12 +09001554 disk_put_part(bdev->bd_part);
1555 bdev->bd_part = NULL;
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001556 bdev->bd_disk = NULL;
Dave Chinnera5491e02010-10-21 11:49:26 +11001557 bdev_inode_switch_bdi(bdev->bd_inode,
1558 &default_backing_dev_info);
NeilBrown37be4122006-12-08 02:36:16 -08001559 if (bdev != bdev->bd_contains)
1560 victim = bdev->bd_contains;
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001561 bdev->bd_contains = NULL;
1562 }
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001563 mutex_unlock(&bdev->bd_mutex);
1564 bdput(bdev);
NeilBrown37be4122006-12-08 02:36:16 -08001565 if (victim)
Al Viro9a1c3542008-02-22 20:40:24 -05001566 __blkdev_put(victim, mode, 1);
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001567 return ret;
1568}
1569
Al Viro9a1c3542008-02-22 20:40:24 -05001570int blkdev_put(struct block_device *bdev, fmode_t mode)
NeilBrown37be4122006-12-08 02:36:16 -08001571{
Al Viro9a1c3542008-02-22 20:40:24 -05001572 return __blkdev_put(bdev, mode, 0);
NeilBrown37be4122006-12-08 02:36:16 -08001573}
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001574EXPORT_SYMBOL(blkdev_put);
1575
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576static int blkdev_close(struct inode * inode, struct file * filp)
1577{
1578 struct block_device *bdev = I_BDEV(filp->f_mapping->host);
1579 if (bdev->bd_holder == filp)
1580 bd_release(bdev);
Al Viro9a1c3542008-02-22 20:40:24 -05001581 return blkdev_put(bdev, filp->f_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582}
1583
Arnd Bergmannbb93e3a2005-06-23 00:10:15 -07001584static long block_ioctl(struct file *file, unsigned cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585{
Al Viro56b26ad2008-09-19 03:17:36 -04001586 struct block_device *bdev = I_BDEV(file->f_mapping->host);
1587 fmode_t mode = file->f_mode;
Christoph Hellwigfd4ce1a2008-11-05 14:58:42 +01001588
1589 /*
1590 * O_NDELAY can be altered using fcntl(.., F_SETFL, ..), so we have
1591 * to updated it before every ioctl.
1592 */
Al Viro56b26ad2008-09-19 03:17:36 -04001593 if (file->f_flags & O_NDELAY)
Christoph Hellwigfd4ce1a2008-11-05 14:58:42 +01001594 mode |= FMODE_NDELAY;
1595 else
1596 mode &= ~FMODE_NDELAY;
1597
Al Viro56b26ad2008-09-19 03:17:36 -04001598 return blkdev_ioctl(bdev, mode, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599}
1600
Theodore Ts'o87d8fe12009-01-03 09:47:09 -05001601/*
Christoph Hellwigeef99382009-08-20 17:43:41 +02001602 * Write data to the block device. Only intended for the block device itself
1603 * and the raw driver which basically is a fake block device.
1604 *
1605 * Does not take i_mutex for the write and thus is not for general purpose
1606 * use.
1607 */
1608ssize_t blkdev_aio_write(struct kiocb *iocb, const struct iovec *iov,
1609 unsigned long nr_segs, loff_t pos)
1610{
1611 struct file *file = iocb->ki_filp;
1612 ssize_t ret;
1613
1614 BUG_ON(iocb->ki_pos != pos);
1615
1616 ret = __generic_file_aio_write(iocb, iov, nr_segs, &iocb->ki_pos);
1617 if (ret > 0 || ret == -EIOCBQUEUED) {
1618 ssize_t err;
1619
1620 err = generic_write_sync(file, pos, ret);
1621 if (err < 0 && ret > 0)
1622 ret = err;
1623 }
1624 return ret;
1625}
1626EXPORT_SYMBOL_GPL(blkdev_aio_write);
1627
1628/*
Theodore Ts'o87d8fe12009-01-03 09:47:09 -05001629 * Try to release a page associated with block device when the system
1630 * is under memory pressure.
1631 */
1632static int blkdev_releasepage(struct page *page, gfp_t wait)
1633{
1634 struct super_block *super = BDEV_I(page->mapping->host)->bdev.bd_super;
1635
1636 if (super && super->s_op->bdev_try_to_free_page)
1637 return super->s_op->bdev_try_to_free_page(super, page, wait);
1638
1639 return try_to_free_buffers(page);
1640}
1641
Adrian Bunk4c54ac62008-02-18 13:48:31 +01001642static const struct address_space_operations def_blk_aops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 .readpage = blkdev_readpage,
1644 .writepage = blkdev_writepage,
1645 .sync_page = block_sync_page,
Nick Piggin6272b5a2007-10-16 01:25:04 -07001646 .write_begin = blkdev_write_begin,
1647 .write_end = blkdev_write_end,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 .writepages = generic_writepages,
Theodore Ts'o87d8fe12009-01-03 09:47:09 -05001649 .releasepage = blkdev_releasepage,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 .direct_IO = blkdev_direct_IO,
1651};
1652
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08001653const struct file_operations def_blk_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 .open = blkdev_open,
1655 .release = blkdev_close,
1656 .llseek = block_llseek,
Badari Pulavarty543ade12006-09-30 23:28:48 -07001657 .read = do_sync_read,
1658 .write = do_sync_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 .aio_read = generic_file_aio_read,
Christoph Hellwigeef99382009-08-20 17:43:41 +02001660 .aio_write = blkdev_aio_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 .mmap = generic_file_mmap,
Andrew Mortonb1dd3b22010-04-06 14:35:00 -07001662 .fsync = blkdev_fsync,
Arnd Bergmannbb93e3a2005-06-23 00:10:15 -07001663 .unlocked_ioctl = block_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664#ifdef CONFIG_COMPAT
1665 .compat_ioctl = compat_blkdev_ioctl,
1666#endif
Jens Axboe7f9c51f2006-05-01 19:59:32 +02001667 .splice_read = generic_file_splice_read,
1668 .splice_write = generic_file_splice_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669};
1670
1671int ioctl_by_bdev(struct block_device *bdev, unsigned cmd, unsigned long arg)
1672{
1673 int res;
1674 mm_segment_t old_fs = get_fs();
1675 set_fs(KERNEL_DS);
Al Viro56b26ad2008-09-19 03:17:36 -04001676 res = blkdev_ioctl(bdev, 0, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 set_fs(old_fs);
1678 return res;
1679}
1680
1681EXPORT_SYMBOL(ioctl_by_bdev);
1682
1683/**
1684 * lookup_bdev - lookup a struct block_device by name
Randy Dunlap94e29592009-01-06 14:41:15 -08001685 * @pathname: special file representing the block device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686 *
Randy Dunlap57d1b532008-10-09 10:42:38 +02001687 * Get a reference to the blockdevice at @pathname in the current
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 * namespace if possible and return it. Return ERR_PTR(error)
1689 * otherwise.
1690 */
Al Viro421748e2008-08-02 01:04:36 -04001691struct block_device *lookup_bdev(const char *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692{
1693 struct block_device *bdev;
1694 struct inode *inode;
Al Viro421748e2008-08-02 01:04:36 -04001695 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696 int error;
1697
Al Viro421748e2008-08-02 01:04:36 -04001698 if (!pathname || !*pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 return ERR_PTR(-EINVAL);
1700
Al Viro421748e2008-08-02 01:04:36 -04001701 error = kern_path(pathname, LOOKUP_FOLLOW, &path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 if (error)
1703 return ERR_PTR(error);
1704
Al Viro421748e2008-08-02 01:04:36 -04001705 inode = path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 error = -ENOTBLK;
1707 if (!S_ISBLK(inode->i_mode))
1708 goto fail;
1709 error = -EACCES;
Al Viro421748e2008-08-02 01:04:36 -04001710 if (path.mnt->mnt_flags & MNT_NODEV)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 goto fail;
1712 error = -ENOMEM;
1713 bdev = bd_acquire(inode);
1714 if (!bdev)
1715 goto fail;
1716out:
Al Viro421748e2008-08-02 01:04:36 -04001717 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 return bdev;
1719fail:
1720 bdev = ERR_PTR(error);
1721 goto out;
1722}
Al Virod5686b42008-08-01 05:00:11 -04001723EXPORT_SYMBOL(lookup_bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724
1725/**
Al Viro30c40d22008-02-22 19:50:45 -05001726 * open_bdev_exclusive - open a block device by name and set it up for use
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 *
1728 * @path: special file representing the block device
Al Viro30c40d22008-02-22 19:50:45 -05001729 * @mode: FMODE_... combination to pass be used
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730 * @holder: owner for exclusion
1731 *
1732 * Open the blockdevice described by the special file at @path, claim it
1733 * for the @holder.
1734 */
Al Viro30c40d22008-02-22 19:50:45 -05001735struct block_device *open_bdev_exclusive(const char *path, fmode_t mode, void *holder)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736{
Tejun Heo6b4517a2010-04-07 18:53:59 +09001737 struct block_device *bdev, *whole;
1738 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739
1740 bdev = lookup_bdev(path);
1741 if (IS_ERR(bdev))
1742 return bdev;
1743
Tejun Heo6b4517a2010-04-07 18:53:59 +09001744 whole = bd_start_claiming(bdev, holder);
1745 if (IS_ERR(whole)) {
1746 bdput(bdev);
1747 return whole;
1748 }
1749
Al Viro572c4892007-10-08 13:24:05 -04001750 error = blkdev_get(bdev, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 if (error)
Tejun Heo6b4517a2010-04-07 18:53:59 +09001752 goto out_abort_claiming;
1753
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 error = -EACCES;
Al Viro30c40d22008-02-22 19:50:45 -05001755 if ((mode & FMODE_WRITE) && bdev_read_only(bdev))
Tejun Heo6b4517a2010-04-07 18:53:59 +09001756 goto out_blkdev_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757
Nick Pigginb0018362010-05-26 01:51:19 +10001758 bd_finish_claiming(bdev, whole, holder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759 return bdev;
Tejun Heo6b4517a2010-04-07 18:53:59 +09001760
1761out_blkdev_put:
Al Viro9a1c3542008-02-22 20:40:24 -05001762 blkdev_put(bdev, mode);
Tejun Heo6b4517a2010-04-07 18:53:59 +09001763out_abort_claiming:
1764 bd_abort_claiming(whole, holder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765 return ERR_PTR(error);
1766}
1767
Al Viro30c40d22008-02-22 19:50:45 -05001768EXPORT_SYMBOL(open_bdev_exclusive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769
1770/**
Al Viro30c40d22008-02-22 19:50:45 -05001771 * close_bdev_exclusive - close a blockdevice opened by open_bdev_exclusive()
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 *
1773 * @bdev: blockdevice to close
Al Viro30c40d22008-02-22 19:50:45 -05001774 * @mode: mode, must match that used to open.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 *
Al Viro30c40d22008-02-22 19:50:45 -05001776 * This is the counterpart to open_bdev_exclusive().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 */
Al Viro30c40d22008-02-22 19:50:45 -05001778void close_bdev_exclusive(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779{
1780 bd_release(bdev);
Al Viro30c40d22008-02-22 19:50:45 -05001781 blkdev_put(bdev, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782}
1783
Al Viro30c40d22008-02-22 19:50:45 -05001784EXPORT_SYMBOL(close_bdev_exclusive);
David Howellsb71e8a42006-08-29 19:06:11 +01001785
1786int __invalidate_device(struct block_device *bdev)
1787{
1788 struct super_block *sb = get_super(bdev);
1789 int res = 0;
1790
1791 if (sb) {
1792 /*
1793 * no need to lock the super, get_super holds the
1794 * read mutex so the filesystem cannot go away
1795 * under us (->put_super runs with the write lock
1796 * hold).
1797 */
1798 shrink_dcache_sb(sb);
1799 res = invalidate_inodes(sb);
1800 drop_super(sb);
1801 }
Peter Zijlstraf98393a2007-05-06 14:49:54 -07001802 invalidate_bdev(bdev);
David Howellsb71e8a42006-08-29 19:06:11 +01001803 return res;
1804}
1805EXPORT_SYMBOL(__invalidate_device);