blob: 22506eb4a58e1523ba45dc497e6bde195e0b32f5 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/smp_lock.h>
Pavel Emelyanov7db9cfd2008-06-05 22:46:27 -070015#include <linux/device_cgroup.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/highmem.h>
17#include <linux/blkdev.h>
18#include <linux/module.h>
19#include <linux/blkpg.h>
20#include <linux/buffer_head.h>
Nick Piggin585d3bc2009-02-25 10:44:19 +010021#include <linux/pagevec.h>
David Howells811d7362006-08-29 19:06:09 +010022#include <linux/writeback.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/mpage.h>
24#include <linux/mount.h>
25#include <linux/uio.h>
26#include <linux/namei.h>
Vignesh Babu BM1368c4f2007-05-08 00:24:32 -070027#include <linux/log2.h>
Catalin Marinas2e1483c2009-06-11 13:24:13 +010028#include <linux/kmemleak.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <asm/uaccess.h>
David Howells07f3f052006-09-30 20:52:18 +020030#include "internal.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
32struct bdev_inode {
33 struct block_device bdev;
34 struct inode vfs_inode;
35};
36
Adrian Bunk4c54ac62008-02-18 13:48:31 +010037static const struct address_space_operations def_blk_aops;
38
Linus Torvalds1da177e2005-04-16 15:20:36 -070039static inline struct bdev_inode *BDEV_I(struct inode *inode)
40{
41 return container_of(inode, struct bdev_inode, vfs_inode);
42}
43
44inline struct block_device *I_BDEV(struct inode *inode)
45{
46 return &BDEV_I(inode)->bdev;
47}
48
49EXPORT_SYMBOL(I_BDEV);
50
51static sector_t max_block(struct block_device *bdev)
52{
53 sector_t retval = ~((sector_t)0);
54 loff_t sz = i_size_read(bdev->bd_inode);
55
56 if (sz) {
57 unsigned int size = block_size(bdev);
58 unsigned int sizebits = blksize_bits(size);
59 retval = (sz >> sizebits);
60 }
61 return retval;
62}
63
Peter Zijlstraf9a14392007-05-06 14:49:55 -070064/* Kill _all_ buffers and pagecache , dirty or not.. */
Linus Torvalds1da177e2005-04-16 15:20:36 -070065static void kill_bdev(struct block_device *bdev)
66{
Peter Zijlstraf9a14392007-05-06 14:49:55 -070067 if (bdev->bd_inode->i_mapping->nrpages == 0)
68 return;
69 invalidate_bh_lrus();
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 truncate_inode_pages(bdev->bd_inode->i_mapping, 0);
71}
72
73int set_blocksize(struct block_device *bdev, int size)
74{
75 /* Size must be a power of two, and between 512 and PAGE_SIZE */
Vignesh Babu BM1368c4f2007-05-08 00:24:32 -070076 if (size > PAGE_SIZE || size < 512 || !is_power_of_2(size))
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 return -EINVAL;
78
79 /* Size cannot be smaller than the size supported by the device */
Martin K. Petersene1defc42009-05-22 17:17:49 -040080 if (size < bdev_logical_block_size(bdev))
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 return -EINVAL;
82
83 /* Don't change the size if it is same as current */
84 if (bdev->bd_block_size != size) {
85 sync_blockdev(bdev);
86 bdev->bd_block_size = size;
87 bdev->bd_inode->i_blkbits = blksize_bits(size);
88 kill_bdev(bdev);
89 }
90 return 0;
91}
92
93EXPORT_SYMBOL(set_blocksize);
94
95int sb_set_blocksize(struct super_block *sb, int size)
96{
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 if (set_blocksize(sb->s_bdev, size))
98 return 0;
99 /* If we get here, we know size is power of two
100 * and it's value is between 512 and PAGE_SIZE */
101 sb->s_blocksize = size;
Coywolf Qi Hunt38885bd2006-03-24 03:18:05 -0800102 sb->s_blocksize_bits = blksize_bits(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 return sb->s_blocksize;
104}
105
106EXPORT_SYMBOL(sb_set_blocksize);
107
108int sb_min_blocksize(struct super_block *sb, int size)
109{
Martin K. Petersene1defc42009-05-22 17:17:49 -0400110 int minsize = bdev_logical_block_size(sb->s_bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 if (size < minsize)
112 size = minsize;
113 return sb_set_blocksize(sb, size);
114}
115
116EXPORT_SYMBOL(sb_min_blocksize);
117
118static int
119blkdev_get_block(struct inode *inode, sector_t iblock,
120 struct buffer_head *bh, int create)
121{
122 if (iblock >= max_block(I_BDEV(inode))) {
123 if (create)
124 return -EIO;
125
126 /*
127 * for reads, we're just trying to fill a partial page.
128 * return a hole, they will have to call get_block again
129 * before they can fill it, and they will get -EIO at that
130 * time
131 */
132 return 0;
133 }
134 bh->b_bdev = I_BDEV(inode);
135 bh->b_blocknr = iblock;
136 set_buffer_mapped(bh);
137 return 0;
138}
139
Andrew Mortonb2e895d2007-02-03 01:14:01 -0800140static int
141blkdev_get_blocks(struct inode *inode, sector_t iblock,
142 struct buffer_head *bh, int create)
143{
144 sector_t end_block = max_block(I_BDEV(inode));
145 unsigned long max_blocks = bh->b_size >> inode->i_blkbits;
146
147 if ((iblock + max_blocks) > end_block) {
148 max_blocks = end_block - iblock;
149 if ((long)max_blocks <= 0) {
150 if (create)
151 return -EIO; /* write fully beyond EOF */
152 /*
153 * It is a read which is fully beyond EOF. We return
154 * a !buffer_mapped buffer
155 */
156 max_blocks = 0;
157 }
158 }
159
160 bh->b_bdev = I_BDEV(inode);
161 bh->b_blocknr = iblock;
162 bh->b_size = max_blocks << inode->i_blkbits;
163 if (max_blocks)
164 set_buffer_mapped(bh);
165 return 0;
166}
167
168static ssize_t
169blkdev_direct_IO(int rw, struct kiocb *iocb, const struct iovec *iov,
170 loff_t offset, unsigned long nr_segs)
171{
172 struct file *file = iocb->ki_filp;
173 struct inode *inode = file->f_mapping->host;
174
175 return blockdev_direct_IO_no_locking(rw, iocb, inode, I_BDEV(inode),
176 iov, offset, nr_segs, blkdev_get_blocks, NULL);
177}
178
Jan Kara5cee5812009-04-27 16:43:51 +0200179int __sync_blockdev(struct block_device *bdev, int wait)
180{
181 if (!bdev)
182 return 0;
183 if (!wait)
184 return filemap_flush(bdev->bd_inode->i_mapping);
185 return filemap_write_and_wait(bdev->bd_inode->i_mapping);
186}
187
Nick Piggin585d3bc2009-02-25 10:44:19 +0100188/*
189 * Write out and wait upon all the dirty data associated with a block
190 * device via its mapping. Does not take the superblock lock.
191 */
192int sync_blockdev(struct block_device *bdev)
193{
Jan Kara5cee5812009-04-27 16:43:51 +0200194 return __sync_blockdev(bdev, 1);
Nick Piggin585d3bc2009-02-25 10:44:19 +0100195}
196EXPORT_SYMBOL(sync_blockdev);
197
198/*
199 * Write out and wait upon all dirty data associated with this
200 * device. Filesystem data as well as the underlying block
201 * device. Takes the superblock lock.
202 */
203int fsync_bdev(struct block_device *bdev)
204{
205 struct super_block *sb = get_super(bdev);
206 if (sb) {
Jan Kara60b06802009-04-27 16:43:53 +0200207 int res = sync_filesystem(sb);
Nick Piggin585d3bc2009-02-25 10:44:19 +0100208 drop_super(sb);
209 return res;
210 }
211 return sync_blockdev(bdev);
212}
Al Viro47e44912009-04-01 07:07:16 -0400213EXPORT_SYMBOL(fsync_bdev);
Nick Piggin585d3bc2009-02-25 10:44:19 +0100214
215/**
216 * freeze_bdev -- lock a filesystem and force it into a consistent state
217 * @bdev: blockdevice to lock
218 *
Nick Piggin585d3bc2009-02-25 10:44:19 +0100219 * If a superblock is found on this device, we take the s_umount semaphore
220 * on it to make sure nobody unmounts until the snapshot creation is done.
221 * The reference counter (bd_fsfreeze_count) guarantees that only the last
222 * unfreeze process can unfreeze the frozen filesystem actually when multiple
223 * freeze requests arrive simultaneously. It counts up in freeze_bdev() and
224 * count down in thaw_bdev(). When it becomes 0, thaw_bdev() will unfreeze
225 * actually.
226 */
227struct super_block *freeze_bdev(struct block_device *bdev)
228{
229 struct super_block *sb;
230 int error = 0;
231
232 mutex_lock(&bdev->bd_fsfreeze_mutex);
233 if (bdev->bd_fsfreeze_count > 0) {
234 bdev->bd_fsfreeze_count++;
235 sb = get_super(bdev);
236 mutex_unlock(&bdev->bd_fsfreeze_mutex);
237 return sb;
238 }
239 bdev->bd_fsfreeze_count++;
240
Nick Piggin585d3bc2009-02-25 10:44:19 +0100241 sb = get_super(bdev);
242 if (sb && !(sb->s_flags & MS_RDONLY)) {
243 sb->s_frozen = SB_FREEZE_WRITE;
244 smp_wmb();
245
Jan Kara60b06802009-04-27 16:43:53 +0200246 sync_filesystem(sb);
Nick Piggin585d3bc2009-02-25 10:44:19 +0100247
248 sb->s_frozen = SB_FREEZE_TRANS;
249 smp_wmb();
250
251 sync_blockdev(sb->s_bdev);
252
253 if (sb->s_op->freeze_fs) {
254 error = sb->s_op->freeze_fs(sb);
255 if (error) {
256 printk(KERN_ERR
257 "VFS:Filesystem freeze failed\n");
258 sb->s_frozen = SB_UNFROZEN;
259 drop_super(sb);
Nick Piggin585d3bc2009-02-25 10:44:19 +0100260 bdev->bd_fsfreeze_count--;
261 mutex_unlock(&bdev->bd_fsfreeze_mutex);
262 return ERR_PTR(error);
263 }
264 }
265 }
266
267 sync_blockdev(bdev);
268 mutex_unlock(&bdev->bd_fsfreeze_mutex);
269
Christoph Hellwig4fadd7b2009-08-03 23:28:06 +0200270 return sb; /* thaw_bdev releases s->s_umount */
Nick Piggin585d3bc2009-02-25 10:44:19 +0100271}
272EXPORT_SYMBOL(freeze_bdev);
273
274/**
275 * thaw_bdev -- unlock filesystem
276 * @bdev: blockdevice to unlock
277 * @sb: associated superblock
278 *
279 * Unlocks the filesystem and marks it writeable again after freeze_bdev().
280 */
281int thaw_bdev(struct block_device *bdev, struct super_block *sb)
282{
283 int error = 0;
284
285 mutex_lock(&bdev->bd_fsfreeze_mutex);
286 if (!bdev->bd_fsfreeze_count) {
287 mutex_unlock(&bdev->bd_fsfreeze_mutex);
288 return -EINVAL;
289 }
290
291 bdev->bd_fsfreeze_count--;
292 if (bdev->bd_fsfreeze_count > 0) {
293 if (sb)
294 drop_super(sb);
295 mutex_unlock(&bdev->bd_fsfreeze_mutex);
296 return 0;
297 }
298
299 if (sb) {
300 BUG_ON(sb->s_bdev != bdev);
301 if (!(sb->s_flags & MS_RDONLY)) {
302 if (sb->s_op->unfreeze_fs) {
303 error = sb->s_op->unfreeze_fs(sb);
304 if (error) {
305 printk(KERN_ERR
306 "VFS:Filesystem thaw failed\n");
307 sb->s_frozen = SB_FREEZE_TRANS;
308 bdev->bd_fsfreeze_count++;
309 mutex_unlock(&bdev->bd_fsfreeze_mutex);
310 return error;
311 }
312 }
313 sb->s_frozen = SB_UNFROZEN;
314 smp_wmb();
315 wake_up(&sb->s_wait_unfrozen);
316 }
317 drop_super(sb);
318 }
319
Nick Piggin585d3bc2009-02-25 10:44:19 +0100320 mutex_unlock(&bdev->bd_fsfreeze_mutex);
321 return 0;
322}
323EXPORT_SYMBOL(thaw_bdev);
324
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325static int blkdev_writepage(struct page *page, struct writeback_control *wbc)
326{
327 return block_write_full_page(page, blkdev_get_block, wbc);
328}
329
330static int blkdev_readpage(struct file * file, struct page * page)
331{
332 return block_read_full_page(page, blkdev_get_block);
333}
334
Nick Piggin6272b5a2007-10-16 01:25:04 -0700335static int blkdev_write_begin(struct file *file, struct address_space *mapping,
336 loff_t pos, unsigned len, unsigned flags,
337 struct page **pagep, void **fsdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338{
Nick Piggin6272b5a2007-10-16 01:25:04 -0700339 *pagep = NULL;
340 return block_write_begin(file, mapping, pos, len, flags, pagep, fsdata,
341 blkdev_get_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342}
343
Nick Piggin6272b5a2007-10-16 01:25:04 -0700344static int blkdev_write_end(struct file *file, struct address_space *mapping,
345 loff_t pos, unsigned len, unsigned copied,
346 struct page *page, void *fsdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347{
Nick Piggin6272b5a2007-10-16 01:25:04 -0700348 int ret;
349 ret = block_write_end(file, mapping, pos, len, copied, page, fsdata);
350
351 unlock_page(page);
352 page_cache_release(page);
353
354 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355}
356
357/*
358 * private llseek:
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800359 * for a block special file file->f_path.dentry->d_inode->i_size is zero
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 * so we compute the size by hand (just as in block_read/write above)
361 */
362static loff_t block_llseek(struct file *file, loff_t offset, int origin)
363{
364 struct inode *bd_inode = file->f_mapping->host;
365 loff_t size;
366 loff_t retval;
367
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800368 mutex_lock(&bd_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 size = i_size_read(bd_inode);
370
371 switch (origin) {
372 case 2:
373 offset += size;
374 break;
375 case 1:
376 offset += file->f_pos;
377 }
378 retval = -EINVAL;
379 if (offset >= 0 && offset <= size) {
380 if (offset != file->f_pos) {
381 file->f_pos = offset;
382 }
383 retval = offset;
384 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800385 mutex_unlock(&bd_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 return retval;
387}
388
389/*
390 * Filp is never NULL; the only case when ->fsync() is called with
391 * NULL first argument is nfsd_sync_dir() and that's not a directory.
392 */
393
394static int block_fsync(struct file *filp, struct dentry *dentry, int datasync)
395{
396 return sync_blockdev(I_BDEV(filp->f_mapping->host));
397}
398
399/*
400 * pseudo-fs
401 */
402
403static __cacheline_aligned_in_smp DEFINE_SPINLOCK(bdev_lock);
Christoph Lametere18b8902006-12-06 20:33:20 -0800404static struct kmem_cache * bdev_cachep __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
406static struct inode *bdev_alloc_inode(struct super_block *sb)
407{
Christoph Lametere94b1762006-12-06 20:33:17 -0800408 struct bdev_inode *ei = kmem_cache_alloc(bdev_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 if (!ei)
410 return NULL;
411 return &ei->vfs_inode;
412}
413
414static void bdev_destroy_inode(struct inode *inode)
415{
416 struct bdev_inode *bdi = BDEV_I(inode);
417
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 kmem_cache_free(bdev_cachep, bdi);
419}
420
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700421static void init_once(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422{
423 struct bdev_inode *ei = (struct bdev_inode *) foo;
424 struct block_device *bdev = &ei->bdev;
425
Christoph Lametera35afb82007-05-16 22:10:57 -0700426 memset(bdev, 0, sizeof(*bdev));
427 mutex_init(&bdev->bd_mutex);
Christoph Lametera35afb82007-05-16 22:10:57 -0700428 INIT_LIST_HEAD(&bdev->bd_inodes);
429 INIT_LIST_HEAD(&bdev->bd_list);
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800430#ifdef CONFIG_SYSFS
Christoph Lametera35afb82007-05-16 22:10:57 -0700431 INIT_LIST_HEAD(&bdev->bd_holder_list);
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800432#endif
Christoph Lametera35afb82007-05-16 22:10:57 -0700433 inode_init_once(&ei->vfs_inode);
Takashi Satofcccf502009-01-09 16:40:59 -0800434 /* Initialize mutex for freeze. */
435 mutex_init(&bdev->bd_fsfreeze_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436}
437
438static inline void __bd_forget(struct inode *inode)
439{
440 list_del_init(&inode->i_devices);
441 inode->i_bdev = NULL;
442 inode->i_mapping = &inode->i_data;
443}
444
445static void bdev_clear_inode(struct inode *inode)
446{
447 struct block_device *bdev = &BDEV_I(inode)->bdev;
448 struct list_head *p;
449 spin_lock(&bdev_lock);
450 while ( (p = bdev->bd_inodes.next) != &bdev->bd_inodes ) {
451 __bd_forget(list_entry(p, struct inode, i_devices));
452 }
453 list_del_init(&bdev->bd_list);
454 spin_unlock(&bdev_lock);
455}
456
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800457static const struct super_operations bdev_sops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 .statfs = simple_statfs,
459 .alloc_inode = bdev_alloc_inode,
460 .destroy_inode = bdev_destroy_inode,
461 .drop_inode = generic_delete_inode,
462 .clear_inode = bdev_clear_inode,
463};
464
David Howells454e2392006-06-23 02:02:57 -0700465static int bd_get_sb(struct file_system_type *fs_type,
466 int flags, const char *dev_name, void *data, struct vfsmount *mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467{
David Howells454e2392006-06-23 02:02:57 -0700468 return get_sb_pseudo(fs_type, "bdev:", &bdev_sops, 0x62646576, mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469}
470
471static struct file_system_type bd_type = {
472 .name = "bdev",
473 .get_sb = bd_get_sb,
474 .kill_sb = kill_anon_super,
475};
476
Denis ChengRqc2acf7b2008-12-01 14:34:56 -0800477struct super_block *blockdev_superblock __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478
479void __init bdev_cache_init(void)
480{
481 int err;
Denis ChengRqc2acf7b2008-12-01 14:34:56 -0800482 struct vfsmount *bd_mnt;
483
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 bdev_cachep = kmem_cache_create("bdev_cache", sizeof(struct bdev_inode),
Paul Jacksonfffb60f2006-03-24 03:16:06 -0800485 0, (SLAB_HWCACHE_ALIGN|SLAB_RECLAIM_ACCOUNT|
486 SLAB_MEM_SPREAD|SLAB_PANIC),
Paul Mundt20c2df82007-07-20 10:11:58 +0900487 init_once);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 err = register_filesystem(&bd_type);
489 if (err)
490 panic("Cannot register bdev pseudo-fs");
491 bd_mnt = kern_mount(&bd_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 if (IS_ERR(bd_mnt))
493 panic("Cannot create bdev pseudo-fs");
Catalin Marinas2e1483c2009-06-11 13:24:13 +0100494 /*
495 * This vfsmount structure is only used to obtain the
496 * blockdev_superblock, so tell kmemleak not to report it.
497 */
498 kmemleak_not_leak(bd_mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 blockdev_superblock = bd_mnt->mnt_sb; /* For writeback */
500}
501
502/*
503 * Most likely _very_ bad one - but then it's hardly critical for small
504 * /dev and can be fixed when somebody will need really large one.
505 * Keep in mind that it will be fed through icache hash function too.
506 */
507static inline unsigned long hash(dev_t dev)
508{
509 return MAJOR(dev)+MINOR(dev);
510}
511
512static int bdev_test(struct inode *inode, void *data)
513{
514 return BDEV_I(inode)->bdev.bd_dev == *(dev_t *)data;
515}
516
517static int bdev_set(struct inode *inode, void *data)
518{
519 BDEV_I(inode)->bdev.bd_dev = *(dev_t *)data;
520 return 0;
521}
522
523static LIST_HEAD(all_bdevs);
524
525struct block_device *bdget(dev_t dev)
526{
527 struct block_device *bdev;
528 struct inode *inode;
529
Denis ChengRqc2acf7b2008-12-01 14:34:56 -0800530 inode = iget5_locked(blockdev_superblock, hash(dev),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 bdev_test, bdev_set, &dev);
532
533 if (!inode)
534 return NULL;
535
536 bdev = &BDEV_I(inode)->bdev;
537
538 if (inode->i_state & I_NEW) {
539 bdev->bd_contains = NULL;
540 bdev->bd_inode = inode;
541 bdev->bd_block_size = (1 << inode->i_blkbits);
542 bdev->bd_part_count = 0;
543 bdev->bd_invalidated = 0;
544 inode->i_mode = S_IFBLK;
545 inode->i_rdev = dev;
546 inode->i_bdev = bdev;
547 inode->i_data.a_ops = &def_blk_aops;
548 mapping_set_gfp_mask(&inode->i_data, GFP_USER);
549 inode->i_data.backing_dev_info = &default_backing_dev_info;
550 spin_lock(&bdev_lock);
551 list_add(&bdev->bd_list, &all_bdevs);
552 spin_unlock(&bdev_lock);
553 unlock_new_inode(inode);
554 }
555 return bdev;
556}
557
558EXPORT_SYMBOL(bdget);
559
Alan Jenkinsdddac6a2009-07-29 21:07:55 +0200560/**
561 * bdgrab -- Grab a reference to an already referenced block device
562 * @bdev: Block device to grab a reference to.
563 */
564struct block_device *bdgrab(struct block_device *bdev)
565{
566 atomic_inc(&bdev->bd_inode->i_count);
567 return bdev;
568}
569
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570long nr_blockdev_pages(void)
571{
Matthias Kaehlcke203a2932007-07-15 23:40:23 -0700572 struct block_device *bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 long ret = 0;
574 spin_lock(&bdev_lock);
Matthias Kaehlcke203a2932007-07-15 23:40:23 -0700575 list_for_each_entry(bdev, &all_bdevs, bd_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 ret += bdev->bd_inode->i_mapping->nrpages;
577 }
578 spin_unlock(&bdev_lock);
579 return ret;
580}
581
582void bdput(struct block_device *bdev)
583{
584 iput(bdev->bd_inode);
585}
586
587EXPORT_SYMBOL(bdput);
588
589static struct block_device *bd_acquire(struct inode *inode)
590{
591 struct block_device *bdev;
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700592
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 spin_lock(&bdev_lock);
594 bdev = inode->i_bdev;
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700595 if (bdev) {
596 atomic_inc(&bdev->bd_inode->i_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 spin_unlock(&bdev_lock);
598 return bdev;
599 }
600 spin_unlock(&bdev_lock);
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700601
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 bdev = bdget(inode->i_rdev);
603 if (bdev) {
604 spin_lock(&bdev_lock);
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700605 if (!inode->i_bdev) {
606 /*
607 * We take an additional bd_inode->i_count for inode,
608 * and it's released in clear_inode() of inode.
609 * So, we can access it via ->i_mapping always
610 * without igrab().
611 */
612 atomic_inc(&bdev->bd_inode->i_count);
613 inode->i_bdev = bdev;
614 inode->i_mapping = bdev->bd_inode->i_mapping;
615 list_add(&inode->i_devices, &bdev->bd_inodes);
616 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 spin_unlock(&bdev_lock);
618 }
619 return bdev;
620}
621
622/* Call when you free inode */
623
624void bd_forget(struct inode *inode)
625{
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700626 struct block_device *bdev = NULL;
627
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 spin_lock(&bdev_lock);
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700629 if (inode->i_bdev) {
Denis ChengRqc2acf7b2008-12-01 14:34:56 -0800630 if (!sb_is_blkdev_sb(inode->i_sb))
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700631 bdev = inode->i_bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 __bd_forget(inode);
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700633 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 spin_unlock(&bdev_lock);
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700635
636 if (bdev)
637 iput(bdev->bd_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638}
639
640int bd_claim(struct block_device *bdev, void *holder)
641{
642 int res;
643 spin_lock(&bdev_lock);
644
645 /* first decide result */
646 if (bdev->bd_holder == holder)
647 res = 0; /* already a holder */
648 else if (bdev->bd_holder != NULL)
649 res = -EBUSY; /* held by someone else */
650 else if (bdev->bd_contains == bdev)
651 res = 0; /* is a whole device which isn't held */
652
653 else if (bdev->bd_contains->bd_holder == bd_claim)
654 res = 0; /* is a partition of a device that is being partitioned */
655 else if (bdev->bd_contains->bd_holder != NULL)
656 res = -EBUSY; /* is a partition of a held device */
657 else
658 res = 0; /* is a partition of an un-held device */
659
660 /* now impose change */
661 if (res==0) {
662 /* note that for a whole device bd_holders
663 * will be incremented twice, and bd_holder will
664 * be set to bd_claim before being set to holder
665 */
666 bdev->bd_contains->bd_holders ++;
667 bdev->bd_contains->bd_holder = bd_claim;
668 bdev->bd_holders++;
669 bdev->bd_holder = holder;
670 }
671 spin_unlock(&bdev_lock);
672 return res;
673}
674
675EXPORT_SYMBOL(bd_claim);
676
677void bd_release(struct block_device *bdev)
678{
679 spin_lock(&bdev_lock);
680 if (!--bdev->bd_contains->bd_holders)
681 bdev->bd_contains->bd_holder = NULL;
682 if (!--bdev->bd_holders)
683 bdev->bd_holder = NULL;
684 spin_unlock(&bdev_lock);
685}
686
687EXPORT_SYMBOL(bd_release);
688
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800689#ifdef CONFIG_SYSFS
690/*
691 * Functions for bd_claim_by_kobject / bd_release_from_kobject
692 *
693 * If a kobject is passed to bd_claim_by_kobject()
694 * and the kobject has a parent directory,
695 * following symlinks are created:
696 * o from the kobject to the claimed bdev
697 * o from "holders" directory of the bdev to the parent of the kobject
698 * bd_release_from_kobject() removes these symlinks.
699 *
700 * Example:
701 * If /dev/dm-0 maps to /dev/sda, kobject corresponding to
702 * /sys/block/dm-0/slaves is passed to bd_claim_by_kobject(), then:
703 * /sys/block/dm-0/slaves/sda --> /sys/block/sda
704 * /sys/block/sda/holders/dm-0 --> /sys/block/dm-0
705 */
706
Andrew Morton4d7dd8f2006-09-29 01:58:56 -0700707static int add_symlink(struct kobject *from, struct kobject *to)
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800708{
709 if (!from || !to)
Andrew Morton4d7dd8f2006-09-29 01:58:56 -0700710 return 0;
711 return sysfs_create_link(from, to, kobject_name(to));
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800712}
713
714static void del_symlink(struct kobject *from, struct kobject *to)
715{
716 if (!from || !to)
717 return;
718 sysfs_remove_link(from, kobject_name(to));
719}
720
721/*
722 * 'struct bd_holder' contains pointers to kobjects symlinked by
723 * bd_claim_by_kobject.
724 * It's connected to bd_holder_list which is protected by bdev->bd_sem.
725 */
726struct bd_holder {
727 struct list_head list; /* chain of holders of the bdev */
728 int count; /* references from the holder */
729 struct kobject *sdir; /* holder object, e.g. "/block/dm-0/slaves" */
730 struct kobject *hdev; /* e.g. "/block/dm-0" */
731 struct kobject *hdir; /* e.g. "/block/sda/holders" */
732 struct kobject *sdev; /* e.g. "/block/sda" */
733};
734
735/*
736 * Get references of related kobjects at once.
737 * Returns 1 on success. 0 on failure.
738 *
739 * Should call bd_holder_release_dirs() after successful use.
740 */
741static int bd_holder_grab_dirs(struct block_device *bdev,
742 struct bd_holder *bo)
743{
744 if (!bdev || !bo)
745 return 0;
746
747 bo->sdir = kobject_get(bo->sdir);
748 if (!bo->sdir)
749 return 0;
750
751 bo->hdev = kobject_get(bo->sdir->parent);
752 if (!bo->hdev)
753 goto fail_put_sdir;
754
Tejun Heo0762b8b2008-08-25 19:56:12 +0900755 bo->sdev = kobject_get(&part_to_dev(bdev->bd_part)->kobj);
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800756 if (!bo->sdev)
757 goto fail_put_hdev;
758
Tejun Heo4c465012008-08-25 19:56:11 +0900759 bo->hdir = kobject_get(bdev->bd_part->holder_dir);
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800760 if (!bo->hdir)
761 goto fail_put_sdev;
762
763 return 1;
764
765fail_put_sdev:
766 kobject_put(bo->sdev);
767fail_put_hdev:
768 kobject_put(bo->hdev);
769fail_put_sdir:
770 kobject_put(bo->sdir);
771
772 return 0;
773}
774
775/* Put references of related kobjects at once. */
776static void bd_holder_release_dirs(struct bd_holder *bo)
777{
778 kobject_put(bo->hdir);
779 kobject_put(bo->sdev);
780 kobject_put(bo->hdev);
781 kobject_put(bo->sdir);
782}
783
784static struct bd_holder *alloc_bd_holder(struct kobject *kobj)
785{
786 struct bd_holder *bo;
787
788 bo = kzalloc(sizeof(*bo), GFP_KERNEL);
789 if (!bo)
790 return NULL;
791
792 bo->count = 1;
793 bo->sdir = kobj;
794
795 return bo;
796}
797
798static void free_bd_holder(struct bd_holder *bo)
799{
800 kfree(bo);
801}
802
803/**
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -0500804 * find_bd_holder - find matching struct bd_holder from the block device
805 *
806 * @bdev: struct block device to be searched
807 * @bo: target struct bd_holder
808 *
809 * Returns matching entry with @bo in @bdev->bd_holder_list.
810 * If found, increment the reference count and return the pointer.
811 * If not found, returns NULL.
812 */
Andrew Morton36a561d2006-10-30 22:07:03 -0800813static struct bd_holder *find_bd_holder(struct block_device *bdev,
814 struct bd_holder *bo)
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -0500815{
816 struct bd_holder *tmp;
817
818 list_for_each_entry(tmp, &bdev->bd_holder_list, list)
819 if (tmp->sdir == bo->sdir) {
820 tmp->count++;
821 return tmp;
822 }
823
824 return NULL;
825}
826
827/**
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800828 * add_bd_holder - create sysfs symlinks for bd_claim() relationship
829 *
830 * @bdev: block device to be bd_claimed
831 * @bo: preallocated and initialized by alloc_bd_holder()
832 *
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -0500833 * Add @bo to @bdev->bd_holder_list, create symlinks.
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800834 *
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -0500835 * Returns 0 if symlinks are created.
836 * Returns -ve if something fails.
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800837 */
838static int add_bd_holder(struct block_device *bdev, struct bd_holder *bo)
839{
Johannes Weiner4e916722007-07-15 23:41:25 -0700840 int err;
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800841
842 if (!bo)
Andrew Morton4d7dd8f2006-09-29 01:58:56 -0700843 return -EINVAL;
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800844
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800845 if (!bd_holder_grab_dirs(bdev, bo))
Andrew Morton4d7dd8f2006-09-29 01:58:56 -0700846 return -EBUSY;
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800847
Johannes Weiner4e916722007-07-15 23:41:25 -0700848 err = add_symlink(bo->sdir, bo->sdev);
849 if (err)
850 return err;
851
852 err = add_symlink(bo->hdir, bo->hdev);
853 if (err) {
854 del_symlink(bo->sdir, bo->sdev);
855 return err;
Andrew Morton4d7dd8f2006-09-29 01:58:56 -0700856 }
Johannes Weiner4e916722007-07-15 23:41:25 -0700857
858 list_add_tail(&bo->list, &bdev->bd_holder_list);
859 return 0;
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800860}
861
862/**
863 * del_bd_holder - delete sysfs symlinks for bd_claim() relationship
864 *
865 * @bdev: block device to be bd_claimed
866 * @kobj: holder's kobject
867 *
868 * If there is matching entry with @kobj in @bdev->bd_holder_list
869 * and no other bd_claim() from the same kobject,
870 * remove the struct bd_holder from the list, delete symlinks for it.
871 *
872 * Returns a pointer to the struct bd_holder when it's removed from the list
873 * and ready to be freed.
874 * Returns NULL if matching claim isn't found or there is other bd_claim()
875 * by the same kobject.
876 */
877static struct bd_holder *del_bd_holder(struct block_device *bdev,
878 struct kobject *kobj)
879{
880 struct bd_holder *bo;
881
882 list_for_each_entry(bo, &bdev->bd_holder_list, list) {
883 if (bo->sdir == kobj) {
884 bo->count--;
885 BUG_ON(bo->count < 0);
886 if (!bo->count) {
887 list_del(&bo->list);
888 del_symlink(bo->sdir, bo->sdev);
889 del_symlink(bo->hdir, bo->hdev);
890 bd_holder_release_dirs(bo);
891 return bo;
892 }
893 break;
894 }
895 }
896
897 return NULL;
898}
899
900/**
901 * bd_claim_by_kobject - bd_claim() with additional kobject signature
902 *
903 * @bdev: block device to be claimed
904 * @holder: holder's signature
905 * @kobj: holder's kobject
906 *
907 * Do bd_claim() and if it succeeds, create sysfs symlinks between
908 * the bdev and the holder's kobject.
909 * Use bd_release_from_kobject() when relesing the claimed bdev.
910 *
911 * Returns 0 on success. (same as bd_claim())
912 * Returns errno on failure.
913 */
914static int bd_claim_by_kobject(struct block_device *bdev, void *holder,
915 struct kobject *kobj)
916{
Johannes Weiner4e916722007-07-15 23:41:25 -0700917 int err;
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -0500918 struct bd_holder *bo, *found;
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800919
920 if (!kobj)
921 return -EINVAL;
922
923 bo = alloc_bd_holder(kobj);
924 if (!bo)
925 return -ENOMEM;
926
Peter Zijlstra2e7b6512006-12-08 02:36:13 -0800927 mutex_lock(&bdev->bd_mutex);
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -0500928
Johannes Weiner4e916722007-07-15 23:41:25 -0700929 err = bd_claim(bdev, holder);
930 if (err)
Andrew Morton4210df22007-07-15 23:41:28 -0700931 goto fail;
Johannes Weiner4e916722007-07-15 23:41:25 -0700932
933 found = find_bd_holder(bdev, bo);
934 if (found)
Andrew Morton4210df22007-07-15 23:41:28 -0700935 goto fail;
Johannes Weiner4e916722007-07-15 23:41:25 -0700936
937 err = add_bd_holder(bdev, bo);
938 if (err)
939 bd_release(bdev);
Andrew Morton4210df22007-07-15 23:41:28 -0700940 else
941 bo = NULL;
942fail:
Jun'ichi Nomurab4cf1b72006-03-27 01:18:00 -0800943 mutex_unlock(&bdev->bd_mutex);
Andrew Morton4210df22007-07-15 23:41:28 -0700944 free_bd_holder(bo);
Johannes Weiner4e916722007-07-15 23:41:25 -0700945 return err;
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800946}
947
948/**
949 * bd_release_from_kobject - bd_release() with additional kobject signature
950 *
951 * @bdev: block device to be released
952 * @kobj: holder's kobject
953 *
954 * Do bd_release() and remove sysfs symlinks created by bd_claim_by_kobject().
955 */
956static void bd_release_from_kobject(struct block_device *bdev,
957 struct kobject *kobj)
958{
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800959 if (!kobj)
960 return;
961
Peter Zijlstra2e7b6512006-12-08 02:36:13 -0800962 mutex_lock(&bdev->bd_mutex);
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800963 bd_release(bdev);
Andrew Morton4210df22007-07-15 23:41:28 -0700964 free_bd_holder(del_bd_holder(bdev, kobj));
Jun'ichi Nomurab4cf1b72006-03-27 01:18:00 -0800965 mutex_unlock(&bdev->bd_mutex);
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800966}
967
968/**
969 * bd_claim_by_disk - wrapper function for bd_claim_by_kobject()
970 *
971 * @bdev: block device to be claimed
972 * @holder: holder's signature
973 * @disk: holder's gendisk
974 *
975 * Call bd_claim_by_kobject() with getting @disk->slave_dir.
976 */
977int bd_claim_by_disk(struct block_device *bdev, void *holder,
978 struct gendisk *disk)
979{
980 return bd_claim_by_kobject(bdev, holder, kobject_get(disk->slave_dir));
981}
982EXPORT_SYMBOL_GPL(bd_claim_by_disk);
983
984/**
985 * bd_release_from_disk - wrapper function for bd_release_from_kobject()
986 *
987 * @bdev: block device to be claimed
988 * @disk: holder's gendisk
989 *
990 * Call bd_release_from_kobject() and put @disk->slave_dir.
991 */
992void bd_release_from_disk(struct block_device *bdev, struct gendisk *disk)
993{
994 bd_release_from_kobject(bdev, disk->slave_dir);
995 kobject_put(disk->slave_dir);
996}
997EXPORT_SYMBOL_GPL(bd_release_from_disk);
998#endif
999
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000/*
1001 * Tries to open block device by device number. Use it ONLY if you
1002 * really do not have anything better - i.e. when you are behind a
1003 * truly sucky interface and all you are given is a device number. _Never_
1004 * to be used for internal purposes. If you ever need it - reconsider
1005 * your API.
1006 */
Al Viroaeb5d722008-09-02 15:28:45 -04001007struct block_device *open_by_devnum(dev_t dev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008{
1009 struct block_device *bdev = bdget(dev);
1010 int err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 if (bdev)
Al Viro572c4892007-10-08 13:24:05 -04001012 err = blkdev_get(bdev, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 return err ? ERR_PTR(err) : bdev;
1014}
1015
1016EXPORT_SYMBOL(open_by_devnum);
1017
Andrew Patterson0c002c22008-09-04 14:27:20 -06001018/**
Andrew Patterson56ade442008-09-04 14:27:40 -06001019 * flush_disk - invalidates all buffer-cache entries on a disk
1020 *
1021 * @bdev: struct block device to be flushed
1022 *
1023 * Invalidates all buffer-cache entries on a disk. It should be called
1024 * when a disk has been changed -- either by a media change or online
1025 * resize.
1026 */
1027static void flush_disk(struct block_device *bdev)
1028{
1029 if (__invalidate_device(bdev)) {
1030 char name[BDEVNAME_SIZE] = "";
1031
1032 if (bdev->bd_disk)
1033 disk_name(bdev->bd_disk, 0, name);
1034 printk(KERN_WARNING "VFS: busy inodes on changed media or "
1035 "resized disk %s\n", name);
1036 }
1037
1038 if (!bdev->bd_disk)
1039 return;
1040 if (disk_partitionable(bdev->bd_disk))
1041 bdev->bd_invalidated = 1;
1042}
1043
1044/**
Randy Dunlap57d1b532008-10-09 10:42:38 +02001045 * check_disk_size_change - checks for disk size change and adjusts bdev size.
Andrew Pattersonc3279d12008-09-04 14:27:25 -06001046 * @disk: struct gendisk to check
1047 * @bdev: struct bdev to adjust.
1048 *
1049 * This routine checks to see if the bdev size does not match the disk size
1050 * and adjusts it if it differs.
1051 */
1052void check_disk_size_change(struct gendisk *disk, struct block_device *bdev)
1053{
1054 loff_t disk_size, bdev_size;
1055
1056 disk_size = (loff_t)get_capacity(disk) << 9;
1057 bdev_size = i_size_read(bdev->bd_inode);
1058 if (disk_size != bdev_size) {
1059 char name[BDEVNAME_SIZE];
1060
1061 disk_name(disk, 0, name);
1062 printk(KERN_INFO
1063 "%s: detected capacity change from %lld to %lld\n",
1064 name, bdev_size, disk_size);
1065 i_size_write(bdev->bd_inode, disk_size);
Andrew Patterson608aeef2008-09-04 14:27:45 -06001066 flush_disk(bdev);
Andrew Pattersonc3279d12008-09-04 14:27:25 -06001067 }
1068}
1069EXPORT_SYMBOL(check_disk_size_change);
1070
1071/**
Randy Dunlap57d1b532008-10-09 10:42:38 +02001072 * revalidate_disk - wrapper for lower-level driver's revalidate_disk call-back
Andrew Patterson0c002c22008-09-04 14:27:20 -06001073 * @disk: struct gendisk to be revalidated
1074 *
1075 * This routine is a wrapper for lower-level driver's revalidate_disk
1076 * call-backs. It is used to do common pre and post operations needed
1077 * for all revalidate_disk operations.
1078 */
1079int revalidate_disk(struct gendisk *disk)
1080{
Andrew Pattersonc3279d12008-09-04 14:27:25 -06001081 struct block_device *bdev;
Andrew Patterson0c002c22008-09-04 14:27:20 -06001082 int ret = 0;
1083
1084 if (disk->fops->revalidate_disk)
1085 ret = disk->fops->revalidate_disk(disk);
1086
Andrew Pattersonc3279d12008-09-04 14:27:25 -06001087 bdev = bdget_disk(disk, 0);
1088 if (!bdev)
1089 return ret;
1090
1091 mutex_lock(&bdev->bd_mutex);
1092 check_disk_size_change(disk, bdev);
1093 mutex_unlock(&bdev->bd_mutex);
1094 bdput(bdev);
Andrew Patterson0c002c22008-09-04 14:27:20 -06001095 return ret;
1096}
1097EXPORT_SYMBOL(revalidate_disk);
1098
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099/*
1100 * This routine checks whether a removable media has been changed,
1101 * and invalidates all buffer-cache-entries in that case. This
1102 * is a relatively slow routine, so we have to try to minimize using
1103 * it. Thus it is called only upon a 'mount' or 'open'. This
1104 * is the best way of combining speed and utility, I think.
1105 * People changing diskettes in the middle of an operation deserve
1106 * to lose :-)
1107 */
1108int check_disk_change(struct block_device *bdev)
1109{
1110 struct gendisk *disk = bdev->bd_disk;
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -07001111 const struct block_device_operations *bdops = disk->fops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112
1113 if (!bdops->media_changed)
1114 return 0;
1115 if (!bdops->media_changed(bdev->bd_disk))
1116 return 0;
1117
Andrew Patterson56ade442008-09-04 14:27:40 -06001118 flush_disk(bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 if (bdops->revalidate_disk)
1120 bdops->revalidate_disk(bdev->bd_disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 return 1;
1122}
1123
1124EXPORT_SYMBOL(check_disk_change);
1125
1126void bd_set_size(struct block_device *bdev, loff_t size)
1127{
Martin K. Petersene1defc42009-05-22 17:17:49 -04001128 unsigned bsize = bdev_logical_block_size(bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129
1130 bdev->bd_inode->i_size = size;
1131 while (bsize < PAGE_CACHE_SIZE) {
1132 if (size & bsize)
1133 break;
1134 bsize <<= 1;
1135 }
1136 bdev->bd_block_size = bsize;
1137 bdev->bd_inode->i_blkbits = blksize_bits(bsize);
1138}
1139EXPORT_SYMBOL(bd_set_size);
1140
Al Viro9a1c3542008-02-22 20:40:24 -05001141static int __blkdev_put(struct block_device *bdev, fmode_t mode, int for_part);
NeilBrown37be4122006-12-08 02:36:16 -08001142
Peter Zijlstra6d740cd2007-02-20 13:58:18 -08001143/*
1144 * bd_mutex locking:
1145 *
1146 * mutex_lock(part->bd_mutex)
1147 * mutex_lock_nested(whole->bd_mutex, 1)
1148 */
1149
Al Viro572c4892007-10-08 13:24:05 -04001150static int __blkdev_get(struct block_device *bdev, fmode_t mode, int for_part)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 struct gendisk *disk;
Pavel Emelyanov7db9cfd2008-06-05 22:46:27 -07001153 int ret;
Tejun Heocf771cb2008-09-03 09:01:09 +02001154 int partno;
Al Virofe6e9c12008-06-23 08:30:55 -04001155 int perm = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156
Al Viro572c4892007-10-08 13:24:05 -04001157 if (mode & FMODE_READ)
Al Virofe6e9c12008-06-23 08:30:55 -04001158 perm |= MAY_READ;
Al Viro572c4892007-10-08 13:24:05 -04001159 if (mode & FMODE_WRITE)
Al Virofe6e9c12008-06-23 08:30:55 -04001160 perm |= MAY_WRITE;
1161 /*
1162 * hooks: /n/, see "layering violations".
1163 */
1164 ret = devcgroup_inode_permission(bdev->bd_inode, perm);
Al Viro82666022008-08-01 05:32:04 -04001165 if (ret != 0) {
1166 bdput(bdev);
Pavel Emelyanov7db9cfd2008-06-05 22:46:27 -07001167 return ret;
Al Viro82666022008-08-01 05:32:04 -04001168 }
Pavel Emelyanov7db9cfd2008-06-05 22:46:27 -07001169
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 lock_kernel();
NeilBrownd3374822009-01-09 08:31:10 +11001171 restart:
Tejun Heo0762b8b2008-08-25 19:56:12 +09001172
Tejun Heo89f97492008-11-05 10:21:06 +01001173 ret = -ENXIO;
Tejun Heocf771cb2008-09-03 09:01:09 +02001174 disk = get_gendisk(bdev->bd_dev, &partno);
Tejun Heo0762b8b2008-08-25 19:56:12 +09001175 if (!disk)
1176 goto out_unlock_kernel;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177
NeilBrown6796bf52006-12-08 02:36:16 -08001178 mutex_lock_nested(&bdev->bd_mutex, for_part);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 if (!bdev->bd_openers) {
1180 bdev->bd_disk = disk;
1181 bdev->bd_contains = bdev;
Tejun Heocf771cb2008-09-03 09:01:09 +02001182 if (!partno) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 struct backing_dev_info *bdi;
Tejun Heo89f97492008-11-05 10:21:06 +01001184
1185 ret = -ENXIO;
1186 bdev->bd_part = disk_get_part(disk, partno);
1187 if (!bdev->bd_part)
1188 goto out_clear;
1189
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 if (disk->fops->open) {
Al Viro572c4892007-10-08 13:24:05 -04001191 ret = disk->fops->open(bdev, mode);
NeilBrownd3374822009-01-09 08:31:10 +11001192 if (ret == -ERESTARTSYS) {
1193 /* Lost a race with 'disk' being
1194 * deleted, try again.
1195 * See md.c
1196 */
1197 disk_put_part(bdev->bd_part);
1198 bdev->bd_part = NULL;
1199 module_put(disk->fops->owner);
1200 put_disk(disk);
1201 bdev->bd_disk = NULL;
1202 mutex_unlock(&bdev->bd_mutex);
1203 goto restart;
1204 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 if (ret)
Tejun Heo0762b8b2008-08-25 19:56:12 +09001206 goto out_clear;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 }
1208 if (!bdev->bd_openers) {
1209 bd_set_size(bdev,(loff_t)get_capacity(disk)<<9);
1210 bdi = blk_get_backing_dev_info(bdev);
1211 if (bdi == NULL)
1212 bdi = &default_backing_dev_info;
1213 bdev->bd_inode->i_data.backing_dev_info = bdi;
1214 }
1215 if (bdev->bd_invalidated)
1216 rescan_partitions(disk, bdev);
1217 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 struct block_device *whole;
1219 whole = bdget_disk(disk, 0);
1220 ret = -ENOMEM;
1221 if (!whole)
Tejun Heo0762b8b2008-08-25 19:56:12 +09001222 goto out_clear;
NeilBrown37be4122006-12-08 02:36:16 -08001223 BUG_ON(for_part);
Al Viro572c4892007-10-08 13:24:05 -04001224 ret = __blkdev_get(whole, mode, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 if (ret)
Tejun Heo0762b8b2008-08-25 19:56:12 +09001226 goto out_clear;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 bdev->bd_contains = whole;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 bdev->bd_inode->i_data.backing_dev_info =
1229 whole->bd_inode->i_data.backing_dev_info;
Tejun Heo89f97492008-11-05 10:21:06 +01001230 bdev->bd_part = disk_get_part(disk, partno);
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001231 if (!(disk->flags & GENHD_FL_UP) ||
Tejun Heo89f97492008-11-05 10:21:06 +01001232 !bdev->bd_part || !bdev->bd_part->nr_sects) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 ret = -ENXIO;
Tejun Heo0762b8b2008-08-25 19:56:12 +09001234 goto out_clear;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 }
Tejun Heo89f97492008-11-05 10:21:06 +01001236 bd_set_size(bdev, (loff_t)bdev->bd_part->nr_sects << 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 }
1238 } else {
1239 put_disk(disk);
Tejun Heo0762b8b2008-08-25 19:56:12 +09001240 module_put(disk->fops->owner);
Tejun Heo0762b8b2008-08-25 19:56:12 +09001241 disk = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 if (bdev->bd_contains == bdev) {
1243 if (bdev->bd_disk->fops->open) {
Al Viro572c4892007-10-08 13:24:05 -04001244 ret = bdev->bd_disk->fops->open(bdev, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 if (ret)
Tejun Heo0762b8b2008-08-25 19:56:12 +09001246 goto out_unlock_bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 }
1248 if (bdev->bd_invalidated)
1249 rescan_partitions(bdev->bd_disk, bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 }
1251 }
1252 bdev->bd_openers++;
NeilBrown37be4122006-12-08 02:36:16 -08001253 if (for_part)
1254 bdev->bd_part_count++;
Arjan van de Venc039e312006-03-23 03:00:28 -08001255 mutex_unlock(&bdev->bd_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 unlock_kernel();
1257 return 0;
1258
Tejun Heo0762b8b2008-08-25 19:56:12 +09001259 out_clear:
Tejun Heo89f97492008-11-05 10:21:06 +01001260 disk_put_part(bdev->bd_part);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 bdev->bd_disk = NULL;
Tejun Heo0762b8b2008-08-25 19:56:12 +09001262 bdev->bd_part = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 bdev->bd_inode->i_data.backing_dev_info = &default_backing_dev_info;
1264 if (bdev != bdev->bd_contains)
Al Viro572c4892007-10-08 13:24:05 -04001265 __blkdev_put(bdev->bd_contains, mode, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 bdev->bd_contains = NULL;
Tejun Heo0762b8b2008-08-25 19:56:12 +09001267 out_unlock_bdev:
Arjan van de Venc039e312006-03-23 03:00:28 -08001268 mutex_unlock(&bdev->bd_mutex);
Tejun Heo0762b8b2008-08-25 19:56:12 +09001269 out_unlock_kernel:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 unlock_kernel();
Tejun Heo0762b8b2008-08-25 19:56:12 +09001271
Tejun Heo0762b8b2008-08-25 19:56:12 +09001272 if (disk)
1273 module_put(disk->fops->owner);
1274 put_disk(disk);
1275 bdput(bdev);
1276
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 return ret;
1278}
1279
Al Viro572c4892007-10-08 13:24:05 -04001280int blkdev_get(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281{
Al Viro572c4892007-10-08 13:24:05 -04001282 return __blkdev_get(bdev, mode, 0);
NeilBrown37be4122006-12-08 02:36:16 -08001283}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284EXPORT_SYMBOL(blkdev_get);
1285
1286static int blkdev_open(struct inode * inode, struct file * filp)
1287{
1288 struct block_device *bdev;
1289 int res;
1290
1291 /*
1292 * Preserve backwards compatibility and allow large file access
1293 * even if userspace doesn't ask for it explicitly. Some mkfs
1294 * binary needs it. We might want to drop this workaround
1295 * during an unstable branch.
1296 */
1297 filp->f_flags |= O_LARGEFILE;
1298
Al Viro572c4892007-10-08 13:24:05 -04001299 if (filp->f_flags & O_NDELAY)
1300 filp->f_mode |= FMODE_NDELAY;
1301 if (filp->f_flags & O_EXCL)
1302 filp->f_mode |= FMODE_EXCL;
1303 if ((filp->f_flags & O_ACCMODE) == 3)
1304 filp->f_mode |= FMODE_WRITE_IOCTL;
1305
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 bdev = bd_acquire(inode);
Pavel Emelianov6a2aae02006-10-28 10:38:33 -07001307 if (bdev == NULL)
1308 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309
Al Viro572c4892007-10-08 13:24:05 -04001310 filp->f_mapping = bdev->bd_inode->i_mapping;
1311
1312 res = blkdev_get(bdev, filp->f_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 if (res)
1314 return res;
1315
Christoph Hellwigebbefc02008-11-05 14:54:41 +01001316 if (filp->f_mode & FMODE_EXCL) {
1317 res = bd_claim(bdev, filp);
1318 if (res)
1319 goto out_blkdev_put;
1320 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321
Christoph Hellwigebbefc02008-11-05 14:54:41 +01001322 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323
Christoph Hellwigebbefc02008-11-05 14:54:41 +01001324 out_blkdev_put:
Al Viro9a1c3542008-02-22 20:40:24 -05001325 blkdev_put(bdev, filp->f_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 return res;
1327}
1328
Al Viro9a1c3542008-02-22 20:40:24 -05001329static int __blkdev_put(struct block_device *bdev, fmode_t mode, int for_part)
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001330{
1331 int ret = 0;
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001332 struct gendisk *disk = bdev->bd_disk;
NeilBrown37be4122006-12-08 02:36:16 -08001333 struct block_device *victim = NULL;
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001334
NeilBrown6796bf52006-12-08 02:36:16 -08001335 mutex_lock_nested(&bdev->bd_mutex, for_part);
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001336 lock_kernel();
NeilBrown37be4122006-12-08 02:36:16 -08001337 if (for_part)
1338 bdev->bd_part_count--;
1339
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001340 if (!--bdev->bd_openers) {
1341 sync_blockdev(bdev);
1342 kill_bdev(bdev);
1343 }
1344 if (bdev->bd_contains == bdev) {
1345 if (disk->fops->release)
Al Viro9a1c3542008-02-22 20:40:24 -05001346 ret = disk->fops->release(disk, mode);
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001347 }
1348 if (!bdev->bd_openers) {
1349 struct module *owner = disk->fops->owner;
1350
1351 put_disk(disk);
1352 module_put(owner);
Tejun Heo0762b8b2008-08-25 19:56:12 +09001353 disk_put_part(bdev->bd_part);
1354 bdev->bd_part = NULL;
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001355 bdev->bd_disk = NULL;
1356 bdev->bd_inode->i_data.backing_dev_info = &default_backing_dev_info;
NeilBrown37be4122006-12-08 02:36:16 -08001357 if (bdev != bdev->bd_contains)
1358 victim = bdev->bd_contains;
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001359 bdev->bd_contains = NULL;
1360 }
1361 unlock_kernel();
1362 mutex_unlock(&bdev->bd_mutex);
1363 bdput(bdev);
NeilBrown37be4122006-12-08 02:36:16 -08001364 if (victim)
Al Viro9a1c3542008-02-22 20:40:24 -05001365 __blkdev_put(victim, mode, 1);
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001366 return ret;
1367}
1368
Al Viro9a1c3542008-02-22 20:40:24 -05001369int blkdev_put(struct block_device *bdev, fmode_t mode)
NeilBrown37be4122006-12-08 02:36:16 -08001370{
Al Viro9a1c3542008-02-22 20:40:24 -05001371 return __blkdev_put(bdev, mode, 0);
NeilBrown37be4122006-12-08 02:36:16 -08001372}
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001373EXPORT_SYMBOL(blkdev_put);
1374
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375static int blkdev_close(struct inode * inode, struct file * filp)
1376{
1377 struct block_device *bdev = I_BDEV(filp->f_mapping->host);
1378 if (bdev->bd_holder == filp)
1379 bd_release(bdev);
Al Viro9a1c3542008-02-22 20:40:24 -05001380 return blkdev_put(bdev, filp->f_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381}
1382
Arnd Bergmannbb93e3a2005-06-23 00:10:15 -07001383static long block_ioctl(struct file *file, unsigned cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384{
Al Viro56b26ad2008-09-19 03:17:36 -04001385 struct block_device *bdev = I_BDEV(file->f_mapping->host);
1386 fmode_t mode = file->f_mode;
Christoph Hellwigfd4ce1a2008-11-05 14:58:42 +01001387
1388 /*
1389 * O_NDELAY can be altered using fcntl(.., F_SETFL, ..), so we have
1390 * to updated it before every ioctl.
1391 */
Al Viro56b26ad2008-09-19 03:17:36 -04001392 if (file->f_flags & O_NDELAY)
Christoph Hellwigfd4ce1a2008-11-05 14:58:42 +01001393 mode |= FMODE_NDELAY;
1394 else
1395 mode &= ~FMODE_NDELAY;
1396
Al Viro56b26ad2008-09-19 03:17:36 -04001397 return blkdev_ioctl(bdev, mode, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398}
1399
Theodore Ts'o87d8fe12009-01-03 09:47:09 -05001400/*
Christoph Hellwigeef99382009-08-20 17:43:41 +02001401 * Write data to the block device. Only intended for the block device itself
1402 * and the raw driver which basically is a fake block device.
1403 *
1404 * Does not take i_mutex for the write and thus is not for general purpose
1405 * use.
1406 */
1407ssize_t blkdev_aio_write(struct kiocb *iocb, const struct iovec *iov,
1408 unsigned long nr_segs, loff_t pos)
1409{
1410 struct file *file = iocb->ki_filp;
1411 ssize_t ret;
1412
1413 BUG_ON(iocb->ki_pos != pos);
1414
1415 ret = __generic_file_aio_write(iocb, iov, nr_segs, &iocb->ki_pos);
1416 if (ret > 0 || ret == -EIOCBQUEUED) {
1417 ssize_t err;
1418
1419 err = generic_write_sync(file, pos, ret);
1420 if (err < 0 && ret > 0)
1421 ret = err;
1422 }
1423 return ret;
1424}
1425EXPORT_SYMBOL_GPL(blkdev_aio_write);
1426
1427/*
Theodore Ts'o87d8fe12009-01-03 09:47:09 -05001428 * Try to release a page associated with block device when the system
1429 * is under memory pressure.
1430 */
1431static int blkdev_releasepage(struct page *page, gfp_t wait)
1432{
1433 struct super_block *super = BDEV_I(page->mapping->host)->bdev.bd_super;
1434
1435 if (super && super->s_op->bdev_try_to_free_page)
1436 return super->s_op->bdev_try_to_free_page(super, page, wait);
1437
1438 return try_to_free_buffers(page);
1439}
1440
Adrian Bunk4c54ac62008-02-18 13:48:31 +01001441static const struct address_space_operations def_blk_aops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 .readpage = blkdev_readpage,
1443 .writepage = blkdev_writepage,
1444 .sync_page = block_sync_page,
Nick Piggin6272b5a2007-10-16 01:25:04 -07001445 .write_begin = blkdev_write_begin,
1446 .write_end = blkdev_write_end,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 .writepages = generic_writepages,
Theodore Ts'o87d8fe12009-01-03 09:47:09 -05001448 .releasepage = blkdev_releasepage,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 .direct_IO = blkdev_direct_IO,
1450};
1451
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08001452const struct file_operations def_blk_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 .open = blkdev_open,
1454 .release = blkdev_close,
1455 .llseek = block_llseek,
Badari Pulavarty543ade12006-09-30 23:28:48 -07001456 .read = do_sync_read,
1457 .write = do_sync_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 .aio_read = generic_file_aio_read,
Christoph Hellwigeef99382009-08-20 17:43:41 +02001459 .aio_write = blkdev_aio_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 .mmap = generic_file_mmap,
1461 .fsync = block_fsync,
Arnd Bergmannbb93e3a2005-06-23 00:10:15 -07001462 .unlocked_ioctl = block_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463#ifdef CONFIG_COMPAT
1464 .compat_ioctl = compat_blkdev_ioctl,
1465#endif
Jens Axboe7f9c51f2006-05-01 19:59:32 +02001466 .splice_read = generic_file_splice_read,
1467 .splice_write = generic_file_splice_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468};
1469
1470int ioctl_by_bdev(struct block_device *bdev, unsigned cmd, unsigned long arg)
1471{
1472 int res;
1473 mm_segment_t old_fs = get_fs();
1474 set_fs(KERNEL_DS);
Al Viro56b26ad2008-09-19 03:17:36 -04001475 res = blkdev_ioctl(bdev, 0, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 set_fs(old_fs);
1477 return res;
1478}
1479
1480EXPORT_SYMBOL(ioctl_by_bdev);
1481
1482/**
1483 * lookup_bdev - lookup a struct block_device by name
Randy Dunlap94e29592009-01-06 14:41:15 -08001484 * @pathname: special file representing the block device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 *
Randy Dunlap57d1b532008-10-09 10:42:38 +02001486 * Get a reference to the blockdevice at @pathname in the current
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 * namespace if possible and return it. Return ERR_PTR(error)
1488 * otherwise.
1489 */
Al Viro421748e2008-08-02 01:04:36 -04001490struct block_device *lookup_bdev(const char *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491{
1492 struct block_device *bdev;
1493 struct inode *inode;
Al Viro421748e2008-08-02 01:04:36 -04001494 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 int error;
1496
Al Viro421748e2008-08-02 01:04:36 -04001497 if (!pathname || !*pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 return ERR_PTR(-EINVAL);
1499
Al Viro421748e2008-08-02 01:04:36 -04001500 error = kern_path(pathname, LOOKUP_FOLLOW, &path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 if (error)
1502 return ERR_PTR(error);
1503
Al Viro421748e2008-08-02 01:04:36 -04001504 inode = path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 error = -ENOTBLK;
1506 if (!S_ISBLK(inode->i_mode))
1507 goto fail;
1508 error = -EACCES;
Al Viro421748e2008-08-02 01:04:36 -04001509 if (path.mnt->mnt_flags & MNT_NODEV)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 goto fail;
1511 error = -ENOMEM;
1512 bdev = bd_acquire(inode);
1513 if (!bdev)
1514 goto fail;
1515out:
Al Viro421748e2008-08-02 01:04:36 -04001516 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 return bdev;
1518fail:
1519 bdev = ERR_PTR(error);
1520 goto out;
1521}
Al Virod5686b42008-08-01 05:00:11 -04001522EXPORT_SYMBOL(lookup_bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523
1524/**
Al Viro30c40d22008-02-22 19:50:45 -05001525 * open_bdev_exclusive - open a block device by name and set it up for use
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526 *
1527 * @path: special file representing the block device
Al Viro30c40d22008-02-22 19:50:45 -05001528 * @mode: FMODE_... combination to pass be used
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 * @holder: owner for exclusion
1530 *
1531 * Open the blockdevice described by the special file at @path, claim it
1532 * for the @holder.
1533 */
Al Viro30c40d22008-02-22 19:50:45 -05001534struct block_device *open_bdev_exclusive(const char *path, fmode_t mode, void *holder)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535{
1536 struct block_device *bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 int error = 0;
1538
1539 bdev = lookup_bdev(path);
1540 if (IS_ERR(bdev))
1541 return bdev;
1542
Al Viro572c4892007-10-08 13:24:05 -04001543 error = blkdev_get(bdev, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 if (error)
1545 return ERR_PTR(error);
1546 error = -EACCES;
Al Viro30c40d22008-02-22 19:50:45 -05001547 if ((mode & FMODE_WRITE) && bdev_read_only(bdev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 goto blkdev_put;
1549 error = bd_claim(bdev, holder);
1550 if (error)
1551 goto blkdev_put;
1552
1553 return bdev;
1554
1555blkdev_put:
Al Viro9a1c3542008-02-22 20:40:24 -05001556 blkdev_put(bdev, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 return ERR_PTR(error);
1558}
1559
Al Viro30c40d22008-02-22 19:50:45 -05001560EXPORT_SYMBOL(open_bdev_exclusive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561
1562/**
Al Viro30c40d22008-02-22 19:50:45 -05001563 * close_bdev_exclusive - close a blockdevice opened by open_bdev_exclusive()
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 *
1565 * @bdev: blockdevice to close
Al Viro30c40d22008-02-22 19:50:45 -05001566 * @mode: mode, must match that used to open.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 *
Al Viro30c40d22008-02-22 19:50:45 -05001568 * This is the counterpart to open_bdev_exclusive().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 */
Al Viro30c40d22008-02-22 19:50:45 -05001570void close_bdev_exclusive(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571{
1572 bd_release(bdev);
Al Viro30c40d22008-02-22 19:50:45 -05001573 blkdev_put(bdev, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574}
1575
Al Viro30c40d22008-02-22 19:50:45 -05001576EXPORT_SYMBOL(close_bdev_exclusive);
David Howellsb71e8a42006-08-29 19:06:11 +01001577
1578int __invalidate_device(struct block_device *bdev)
1579{
1580 struct super_block *sb = get_super(bdev);
1581 int res = 0;
1582
1583 if (sb) {
1584 /*
1585 * no need to lock the super, get_super holds the
1586 * read mutex so the filesystem cannot go away
1587 * under us (->put_super runs with the write lock
1588 * hold).
1589 */
1590 shrink_dcache_sb(sb);
1591 res = invalidate_inodes(sb);
1592 drop_super(sb);
1593 }
Peter Zijlstraf98393a2007-05-06 14:49:54 -07001594 invalidate_bdev(bdev);
David Howellsb71e8a42006-08-29 19:06:11 +01001595 return res;
1596}
1597EXPORT_SYMBOL(__invalidate_device);