blob: e59440c7e1cf3e0c352f4900a91bebf540833c32 [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);
Christoph Hellwig45042302009-08-03 23:28:35 +0200233 if (++bdev->bd_fsfreeze_count > 1) {
234 /*
235 * We don't even need to grab a reference - the first call
236 * to freeze_bdev grab an active reference and only the last
237 * thaw_bdev drops it.
238 */
Nick Piggin585d3bc2009-02-25 10:44:19 +0100239 sb = get_super(bdev);
Christoph Hellwig45042302009-08-03 23:28:35 +0200240 drop_super(sb);
Nick Piggin585d3bc2009-02-25 10:44:19 +0100241 mutex_unlock(&bdev->bd_fsfreeze_mutex);
242 return sb;
243 }
Nick Piggin585d3bc2009-02-25 10:44:19 +0100244
Christoph Hellwig45042302009-08-03 23:28:35 +0200245 sb = get_active_super(bdev);
246 if (!sb)
247 goto out;
248 if (sb->s_flags & MS_RDONLY) {
Jun'ichi Nomura4b06e5b2010-01-29 09:56:22 +0900249 sb->s_frozen = SB_FREEZE_TRANS;
250 up_write(&sb->s_umount);
Christoph Hellwig45042302009-08-03 23:28:35 +0200251 mutex_unlock(&bdev->bd_fsfreeze_mutex);
252 return sb;
Nick Piggin585d3bc2009-02-25 10:44:19 +0100253 }
254
Christoph Hellwig45042302009-08-03 23:28:35 +0200255 sb->s_frozen = SB_FREEZE_WRITE;
256 smp_wmb();
257
258 sync_filesystem(sb);
259
260 sb->s_frozen = SB_FREEZE_TRANS;
261 smp_wmb();
262
263 sync_blockdev(sb->s_bdev);
264
265 if (sb->s_op->freeze_fs) {
266 error = sb->s_op->freeze_fs(sb);
267 if (error) {
268 printk(KERN_ERR
269 "VFS:Filesystem freeze failed\n");
270 sb->s_frozen = SB_UNFROZEN;
271 deactivate_locked_super(sb);
272 bdev->bd_fsfreeze_count--;
273 mutex_unlock(&bdev->bd_fsfreeze_mutex);
274 return ERR_PTR(error);
275 }
276 }
277 up_write(&sb->s_umount);
278
279 out:
Nick Piggin585d3bc2009-02-25 10:44:19 +0100280 sync_blockdev(bdev);
281 mutex_unlock(&bdev->bd_fsfreeze_mutex);
Christoph Hellwig4fadd7b2009-08-03 23:28:06 +0200282 return sb; /* thaw_bdev releases s->s_umount */
Nick Piggin585d3bc2009-02-25 10:44:19 +0100283}
284EXPORT_SYMBOL(freeze_bdev);
285
286/**
287 * thaw_bdev -- unlock filesystem
288 * @bdev: blockdevice to unlock
289 * @sb: associated superblock
290 *
291 * Unlocks the filesystem and marks it writeable again after freeze_bdev().
292 */
293int thaw_bdev(struct block_device *bdev, struct super_block *sb)
294{
Christoph Hellwig45042302009-08-03 23:28:35 +0200295 int error = -EINVAL;
Nick Piggin585d3bc2009-02-25 10:44:19 +0100296
297 mutex_lock(&bdev->bd_fsfreeze_mutex);
Christoph Hellwig45042302009-08-03 23:28:35 +0200298 if (!bdev->bd_fsfreeze_count)
299 goto out_unlock;
Nick Piggin585d3bc2009-02-25 10:44:19 +0100300
Christoph Hellwig45042302009-08-03 23:28:35 +0200301 error = 0;
302 if (--bdev->bd_fsfreeze_count > 0)
303 goto out_unlock;
Nick Piggin585d3bc2009-02-25 10:44:19 +0100304
Christoph Hellwig45042302009-08-03 23:28:35 +0200305 if (!sb)
306 goto out_unlock;
307
308 BUG_ON(sb->s_bdev != bdev);
309 down_write(&sb->s_umount);
310 if (sb->s_flags & MS_RDONLY)
Jun'ichi Nomura4b06e5b2010-01-29 09:56:22 +0900311 goto out_unfrozen;
Christoph Hellwig45042302009-08-03 23:28:35 +0200312
313 if (sb->s_op->unfreeze_fs) {
314 error = sb->s_op->unfreeze_fs(sb);
315 if (error) {
316 printk(KERN_ERR
317 "VFS:Filesystem thaw failed\n");
318 sb->s_frozen = SB_FREEZE_TRANS;
319 bdev->bd_fsfreeze_count++;
320 mutex_unlock(&bdev->bd_fsfreeze_mutex);
321 return error;
Nick Piggin585d3bc2009-02-25 10:44:19 +0100322 }
Nick Piggin585d3bc2009-02-25 10:44:19 +0100323 }
324
Jun'ichi Nomura4b06e5b2010-01-29 09:56:22 +0900325out_unfrozen:
Christoph Hellwig45042302009-08-03 23:28:35 +0200326 sb->s_frozen = SB_UNFROZEN;
327 smp_wmb();
328 wake_up(&sb->s_wait_unfrozen);
329
Christoph Hellwig45042302009-08-03 23:28:35 +0200330 if (sb)
331 deactivate_locked_super(sb);
332out_unlock:
Nick Piggin585d3bc2009-02-25 10:44:19 +0100333 mutex_unlock(&bdev->bd_fsfreeze_mutex);
334 return 0;
335}
336EXPORT_SYMBOL(thaw_bdev);
337
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338static int blkdev_writepage(struct page *page, struct writeback_control *wbc)
339{
340 return block_write_full_page(page, blkdev_get_block, wbc);
341}
342
343static int blkdev_readpage(struct file * file, struct page * page)
344{
345 return block_read_full_page(page, blkdev_get_block);
346}
347
Nick Piggin6272b5a2007-10-16 01:25:04 -0700348static int blkdev_write_begin(struct file *file, struct address_space *mapping,
349 loff_t pos, unsigned len, unsigned flags,
350 struct page **pagep, void **fsdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351{
Nick Piggin6272b5a2007-10-16 01:25:04 -0700352 *pagep = NULL;
353 return block_write_begin(file, mapping, pos, len, flags, pagep, fsdata,
354 blkdev_get_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355}
356
Nick Piggin6272b5a2007-10-16 01:25:04 -0700357static int blkdev_write_end(struct file *file, struct address_space *mapping,
358 loff_t pos, unsigned len, unsigned copied,
359 struct page *page, void *fsdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360{
Nick Piggin6272b5a2007-10-16 01:25:04 -0700361 int ret;
362 ret = block_write_end(file, mapping, pos, len, copied, page, fsdata);
363
364 unlock_page(page);
365 page_cache_release(page);
366
367 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368}
369
370/*
371 * private llseek:
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800372 * for a block special file file->f_path.dentry->d_inode->i_size is zero
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 * so we compute the size by hand (just as in block_read/write above)
374 */
375static loff_t block_llseek(struct file *file, loff_t offset, int origin)
376{
377 struct inode *bd_inode = file->f_mapping->host;
378 loff_t size;
379 loff_t retval;
380
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800381 mutex_lock(&bd_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 size = i_size_read(bd_inode);
383
384 switch (origin) {
385 case 2:
386 offset += size;
387 break;
388 case 1:
389 offset += file->f_pos;
390 }
391 retval = -EINVAL;
392 if (offset >= 0 && offset <= size) {
393 if (offset != file->f_pos) {
394 file->f_pos = offset;
395 }
396 retval = offset;
397 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800398 mutex_unlock(&bd_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 return retval;
400}
401
402/*
403 * Filp is never NULL; the only case when ->fsync() is called with
404 * NULL first argument is nfsd_sync_dir() and that's not a directory.
405 */
406
Andrew Mortonb1dd3b22010-04-06 14:35:00 -0700407int blkdev_fsync(struct file *filp, struct dentry *dentry, int datasync)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408{
Christoph Hellwigab0a9732009-10-29 14:14:04 +0100409 struct block_device *bdev = I_BDEV(filp->f_mapping->host);
410 int error;
411
412 error = sync_blockdev(bdev);
413 if (error)
414 return error;
415
416 error = blkdev_issue_flush(bdev, NULL);
417 if (error == -EOPNOTSUPP)
418 error = 0;
419 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420}
Andrew Mortonb1dd3b22010-04-06 14:35:00 -0700421EXPORT_SYMBOL(blkdev_fsync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422
423/*
424 * pseudo-fs
425 */
426
427static __cacheline_aligned_in_smp DEFINE_SPINLOCK(bdev_lock);
Christoph Lametere18b8902006-12-06 20:33:20 -0800428static struct kmem_cache * bdev_cachep __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429
430static struct inode *bdev_alloc_inode(struct super_block *sb)
431{
Christoph Lametere94b1762006-12-06 20:33:17 -0800432 struct bdev_inode *ei = kmem_cache_alloc(bdev_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 if (!ei)
434 return NULL;
435 return &ei->vfs_inode;
436}
437
438static void bdev_destroy_inode(struct inode *inode)
439{
440 struct bdev_inode *bdi = BDEV_I(inode);
441
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 kmem_cache_free(bdev_cachep, bdi);
443}
444
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700445static void init_once(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446{
447 struct bdev_inode *ei = (struct bdev_inode *) foo;
448 struct block_device *bdev = &ei->bdev;
449
Christoph Lametera35afb82007-05-16 22:10:57 -0700450 memset(bdev, 0, sizeof(*bdev));
451 mutex_init(&bdev->bd_mutex);
Christoph Lametera35afb82007-05-16 22:10:57 -0700452 INIT_LIST_HEAD(&bdev->bd_inodes);
453 INIT_LIST_HEAD(&bdev->bd_list);
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800454#ifdef CONFIG_SYSFS
Christoph Lametera35afb82007-05-16 22:10:57 -0700455 INIT_LIST_HEAD(&bdev->bd_holder_list);
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800456#endif
Christoph Lametera35afb82007-05-16 22:10:57 -0700457 inode_init_once(&ei->vfs_inode);
Takashi Satofcccf502009-01-09 16:40:59 -0800458 /* Initialize mutex for freeze. */
459 mutex_init(&bdev->bd_fsfreeze_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460}
461
462static inline void __bd_forget(struct inode *inode)
463{
464 list_del_init(&inode->i_devices);
465 inode->i_bdev = NULL;
466 inode->i_mapping = &inode->i_data;
467}
468
469static void bdev_clear_inode(struct inode *inode)
470{
471 struct block_device *bdev = &BDEV_I(inode)->bdev;
472 struct list_head *p;
473 spin_lock(&bdev_lock);
474 while ( (p = bdev->bd_inodes.next) != &bdev->bd_inodes ) {
475 __bd_forget(list_entry(p, struct inode, i_devices));
476 }
477 list_del_init(&bdev->bd_list);
478 spin_unlock(&bdev_lock);
479}
480
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800481static const struct super_operations bdev_sops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 .statfs = simple_statfs,
483 .alloc_inode = bdev_alloc_inode,
484 .destroy_inode = bdev_destroy_inode,
485 .drop_inode = generic_delete_inode,
486 .clear_inode = bdev_clear_inode,
487};
488
David Howells454e2392006-06-23 02:02:57 -0700489static int bd_get_sb(struct file_system_type *fs_type,
490 int flags, const char *dev_name, void *data, struct vfsmount *mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491{
David Howells454e2392006-06-23 02:02:57 -0700492 return get_sb_pseudo(fs_type, "bdev:", &bdev_sops, 0x62646576, mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493}
494
495static struct file_system_type bd_type = {
496 .name = "bdev",
497 .get_sb = bd_get_sb,
498 .kill_sb = kill_anon_super,
499};
500
Denis ChengRqc2acf7b2008-12-01 14:34:56 -0800501struct super_block *blockdev_superblock __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502
503void __init bdev_cache_init(void)
504{
505 int err;
Denis ChengRqc2acf7b2008-12-01 14:34:56 -0800506 struct vfsmount *bd_mnt;
507
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 bdev_cachep = kmem_cache_create("bdev_cache", sizeof(struct bdev_inode),
Paul Jacksonfffb60f2006-03-24 03:16:06 -0800509 0, (SLAB_HWCACHE_ALIGN|SLAB_RECLAIM_ACCOUNT|
510 SLAB_MEM_SPREAD|SLAB_PANIC),
Paul Mundt20c2df82007-07-20 10:11:58 +0900511 init_once);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 err = register_filesystem(&bd_type);
513 if (err)
514 panic("Cannot register bdev pseudo-fs");
515 bd_mnt = kern_mount(&bd_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 if (IS_ERR(bd_mnt))
517 panic("Cannot create bdev pseudo-fs");
Catalin Marinas2e1483c2009-06-11 13:24:13 +0100518 /*
519 * This vfsmount structure is only used to obtain the
520 * blockdev_superblock, so tell kmemleak not to report it.
521 */
522 kmemleak_not_leak(bd_mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 blockdev_superblock = bd_mnt->mnt_sb; /* For writeback */
524}
525
526/*
527 * Most likely _very_ bad one - but then it's hardly critical for small
528 * /dev and can be fixed when somebody will need really large one.
529 * Keep in mind that it will be fed through icache hash function too.
530 */
531static inline unsigned long hash(dev_t dev)
532{
533 return MAJOR(dev)+MINOR(dev);
534}
535
536static int bdev_test(struct inode *inode, void *data)
537{
538 return BDEV_I(inode)->bdev.bd_dev == *(dev_t *)data;
539}
540
541static int bdev_set(struct inode *inode, void *data)
542{
543 BDEV_I(inode)->bdev.bd_dev = *(dev_t *)data;
544 return 0;
545}
546
547static LIST_HEAD(all_bdevs);
548
549struct block_device *bdget(dev_t dev)
550{
551 struct block_device *bdev;
552 struct inode *inode;
553
Denis ChengRqc2acf7b2008-12-01 14:34:56 -0800554 inode = iget5_locked(blockdev_superblock, hash(dev),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 bdev_test, bdev_set, &dev);
556
557 if (!inode)
558 return NULL;
559
560 bdev = &BDEV_I(inode)->bdev;
561
562 if (inode->i_state & I_NEW) {
563 bdev->bd_contains = NULL;
564 bdev->bd_inode = inode;
565 bdev->bd_block_size = (1 << inode->i_blkbits);
566 bdev->bd_part_count = 0;
567 bdev->bd_invalidated = 0;
568 inode->i_mode = S_IFBLK;
569 inode->i_rdev = dev;
570 inode->i_bdev = bdev;
571 inode->i_data.a_ops = &def_blk_aops;
572 mapping_set_gfp_mask(&inode->i_data, GFP_USER);
573 inode->i_data.backing_dev_info = &default_backing_dev_info;
574 spin_lock(&bdev_lock);
575 list_add(&bdev->bd_list, &all_bdevs);
576 spin_unlock(&bdev_lock);
577 unlock_new_inode(inode);
578 }
579 return bdev;
580}
581
582EXPORT_SYMBOL(bdget);
583
Alan Jenkinsdddac6a2009-07-29 21:07:55 +0200584/**
585 * bdgrab -- Grab a reference to an already referenced block device
586 * @bdev: Block device to grab a reference to.
587 */
588struct block_device *bdgrab(struct block_device *bdev)
589{
590 atomic_inc(&bdev->bd_inode->i_count);
591 return bdev;
592}
593
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594long nr_blockdev_pages(void)
595{
Matthias Kaehlcke203a2932007-07-15 23:40:23 -0700596 struct block_device *bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 long ret = 0;
598 spin_lock(&bdev_lock);
Matthias Kaehlcke203a2932007-07-15 23:40:23 -0700599 list_for_each_entry(bdev, &all_bdevs, bd_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 ret += bdev->bd_inode->i_mapping->nrpages;
601 }
602 spin_unlock(&bdev_lock);
603 return ret;
604}
605
606void bdput(struct block_device *bdev)
607{
608 iput(bdev->bd_inode);
609}
610
611EXPORT_SYMBOL(bdput);
612
613static struct block_device *bd_acquire(struct inode *inode)
614{
615 struct block_device *bdev;
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700616
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 spin_lock(&bdev_lock);
618 bdev = inode->i_bdev;
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700619 if (bdev) {
620 atomic_inc(&bdev->bd_inode->i_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 spin_unlock(&bdev_lock);
622 return bdev;
623 }
624 spin_unlock(&bdev_lock);
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700625
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 bdev = bdget(inode->i_rdev);
627 if (bdev) {
628 spin_lock(&bdev_lock);
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700629 if (!inode->i_bdev) {
630 /*
631 * We take an additional bd_inode->i_count for inode,
632 * and it's released in clear_inode() of inode.
633 * So, we can access it via ->i_mapping always
634 * without igrab().
635 */
636 atomic_inc(&bdev->bd_inode->i_count);
637 inode->i_bdev = bdev;
638 inode->i_mapping = bdev->bd_inode->i_mapping;
639 list_add(&inode->i_devices, &bdev->bd_inodes);
640 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 spin_unlock(&bdev_lock);
642 }
643 return bdev;
644}
645
646/* Call when you free inode */
647
648void bd_forget(struct inode *inode)
649{
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700650 struct block_device *bdev = NULL;
651
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 spin_lock(&bdev_lock);
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700653 if (inode->i_bdev) {
Denis ChengRqc2acf7b2008-12-01 14:34:56 -0800654 if (!sb_is_blkdev_sb(inode->i_sb))
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700655 bdev = inode->i_bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 __bd_forget(inode);
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700657 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 spin_unlock(&bdev_lock);
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700659
660 if (bdev)
661 iput(bdev->bd_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662}
663
Tejun Heo1a3cbbc2010-04-07 18:52:29 +0900664/**
665 * bd_may_claim - test whether a block device can be claimed
666 * @bdev: block device of interest
667 * @whole: whole block device containing @bdev, may equal @bdev
668 * @holder: holder trying to claim @bdev
669 *
670 * Test whther @bdev can be claimed by @holder.
671 *
672 * CONTEXT:
673 * spin_lock(&bdev_lock).
674 *
675 * RETURNS:
676 * %true if @bdev can be claimed, %false otherwise.
677 */
678static bool bd_may_claim(struct block_device *bdev, struct block_device *whole,
679 void *holder)
680{
681 if (bdev->bd_holder == holder)
682 return true; /* already a holder */
683 else if (bdev->bd_holder != NULL)
684 return false; /* held by someone else */
685 else if (bdev->bd_contains == bdev)
686 return true; /* is a whole device which isn't held */
687
688 else if (whole->bd_holder == bd_claim)
689 return true; /* is a partition of a device that is being partitioned */
690 else if (whole->bd_holder != NULL)
691 return false; /* is a partition of a held device */
692 else
693 return true; /* is a partition of an un-held device */
694}
695
696/**
697 * bd_claim - claim a block device
698 * @bdev: block device to claim
699 * @holder: holder trying to claim @bdev
700 *
701 * Try to claim @bdev.
702 *
703 * RETURNS:
704 * 0 if successful, -EBUSY if @bdev is already claimed.
705 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706int bd_claim(struct block_device *bdev, void *holder)
707{
Tejun Heo1a3cbbc2010-04-07 18:52:29 +0900708 struct block_device *whole = bdev->bd_contains;
709 int res = -EBUSY;
710
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 spin_lock(&bdev_lock);
712
Tejun Heo1a3cbbc2010-04-07 18:52:29 +0900713 if (bd_may_claim(bdev, whole, holder)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 /* note that for a whole device bd_holders
715 * will be incremented twice, and bd_holder will
716 * be set to bd_claim before being set to holder
717 */
Tejun Heo1a3cbbc2010-04-07 18:52:29 +0900718 whole->bd_holders++;
719 whole->bd_holder = bd_claim;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 bdev->bd_holders++;
721 bdev->bd_holder = holder;
Tejun Heo1a3cbbc2010-04-07 18:52:29 +0900722 res = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 }
Tejun Heo1a3cbbc2010-04-07 18:52:29 +0900724
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 spin_unlock(&bdev_lock);
726 return res;
727}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728EXPORT_SYMBOL(bd_claim);
729
730void bd_release(struct block_device *bdev)
731{
732 spin_lock(&bdev_lock);
733 if (!--bdev->bd_contains->bd_holders)
734 bdev->bd_contains->bd_holder = NULL;
735 if (!--bdev->bd_holders)
736 bdev->bd_holder = NULL;
737 spin_unlock(&bdev_lock);
738}
739
740EXPORT_SYMBOL(bd_release);
741
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800742#ifdef CONFIG_SYSFS
743/*
744 * Functions for bd_claim_by_kobject / bd_release_from_kobject
745 *
746 * If a kobject is passed to bd_claim_by_kobject()
747 * and the kobject has a parent directory,
748 * following symlinks are created:
749 * o from the kobject to the claimed bdev
750 * o from "holders" directory of the bdev to the parent of the kobject
751 * bd_release_from_kobject() removes these symlinks.
752 *
753 * Example:
754 * If /dev/dm-0 maps to /dev/sda, kobject corresponding to
755 * /sys/block/dm-0/slaves is passed to bd_claim_by_kobject(), then:
756 * /sys/block/dm-0/slaves/sda --> /sys/block/sda
757 * /sys/block/sda/holders/dm-0 --> /sys/block/dm-0
758 */
759
Andrew Morton4d7dd8f2006-09-29 01:58:56 -0700760static int add_symlink(struct kobject *from, struct kobject *to)
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800761{
762 if (!from || !to)
Andrew Morton4d7dd8f2006-09-29 01:58:56 -0700763 return 0;
764 return sysfs_create_link(from, to, kobject_name(to));
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800765}
766
767static void del_symlink(struct kobject *from, struct kobject *to)
768{
769 if (!from || !to)
770 return;
771 sysfs_remove_link(from, kobject_name(to));
772}
773
774/*
775 * 'struct bd_holder' contains pointers to kobjects symlinked by
776 * bd_claim_by_kobject.
777 * It's connected to bd_holder_list which is protected by bdev->bd_sem.
778 */
779struct bd_holder {
780 struct list_head list; /* chain of holders of the bdev */
781 int count; /* references from the holder */
782 struct kobject *sdir; /* holder object, e.g. "/block/dm-0/slaves" */
783 struct kobject *hdev; /* e.g. "/block/dm-0" */
784 struct kobject *hdir; /* e.g. "/block/sda/holders" */
785 struct kobject *sdev; /* e.g. "/block/sda" */
786};
787
788/*
789 * Get references of related kobjects at once.
790 * Returns 1 on success. 0 on failure.
791 *
792 * Should call bd_holder_release_dirs() after successful use.
793 */
794static int bd_holder_grab_dirs(struct block_device *bdev,
795 struct bd_holder *bo)
796{
797 if (!bdev || !bo)
798 return 0;
799
800 bo->sdir = kobject_get(bo->sdir);
801 if (!bo->sdir)
802 return 0;
803
804 bo->hdev = kobject_get(bo->sdir->parent);
805 if (!bo->hdev)
806 goto fail_put_sdir;
807
Tejun Heo0762b8b2008-08-25 19:56:12 +0900808 bo->sdev = kobject_get(&part_to_dev(bdev->bd_part)->kobj);
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800809 if (!bo->sdev)
810 goto fail_put_hdev;
811
Tejun Heo4c465012008-08-25 19:56:11 +0900812 bo->hdir = kobject_get(bdev->bd_part->holder_dir);
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800813 if (!bo->hdir)
814 goto fail_put_sdev;
815
816 return 1;
817
818fail_put_sdev:
819 kobject_put(bo->sdev);
820fail_put_hdev:
821 kobject_put(bo->hdev);
822fail_put_sdir:
823 kobject_put(bo->sdir);
824
825 return 0;
826}
827
828/* Put references of related kobjects at once. */
829static void bd_holder_release_dirs(struct bd_holder *bo)
830{
831 kobject_put(bo->hdir);
832 kobject_put(bo->sdev);
833 kobject_put(bo->hdev);
834 kobject_put(bo->sdir);
835}
836
837static struct bd_holder *alloc_bd_holder(struct kobject *kobj)
838{
839 struct bd_holder *bo;
840
841 bo = kzalloc(sizeof(*bo), GFP_KERNEL);
842 if (!bo)
843 return NULL;
844
845 bo->count = 1;
846 bo->sdir = kobj;
847
848 return bo;
849}
850
851static void free_bd_holder(struct bd_holder *bo)
852{
853 kfree(bo);
854}
855
856/**
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -0500857 * find_bd_holder - find matching struct bd_holder from the block device
858 *
859 * @bdev: struct block device to be searched
860 * @bo: target struct bd_holder
861 *
862 * Returns matching entry with @bo in @bdev->bd_holder_list.
863 * If found, increment the reference count and return the pointer.
864 * If not found, returns NULL.
865 */
Andrew Morton36a561d2006-10-30 22:07:03 -0800866static struct bd_holder *find_bd_holder(struct block_device *bdev,
867 struct bd_holder *bo)
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -0500868{
869 struct bd_holder *tmp;
870
871 list_for_each_entry(tmp, &bdev->bd_holder_list, list)
872 if (tmp->sdir == bo->sdir) {
873 tmp->count++;
874 return tmp;
875 }
876
877 return NULL;
878}
879
880/**
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800881 * add_bd_holder - create sysfs symlinks for bd_claim() relationship
882 *
883 * @bdev: block device to be bd_claimed
884 * @bo: preallocated and initialized by alloc_bd_holder()
885 *
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -0500886 * Add @bo to @bdev->bd_holder_list, create symlinks.
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800887 *
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -0500888 * Returns 0 if symlinks are created.
889 * Returns -ve if something fails.
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800890 */
891static int add_bd_holder(struct block_device *bdev, struct bd_holder *bo)
892{
Johannes Weiner4e916722007-07-15 23:41:25 -0700893 int err;
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800894
895 if (!bo)
Andrew Morton4d7dd8f2006-09-29 01:58:56 -0700896 return -EINVAL;
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800897
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800898 if (!bd_holder_grab_dirs(bdev, bo))
Andrew Morton4d7dd8f2006-09-29 01:58:56 -0700899 return -EBUSY;
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800900
Johannes Weiner4e916722007-07-15 23:41:25 -0700901 err = add_symlink(bo->sdir, bo->sdev);
902 if (err)
903 return err;
904
905 err = add_symlink(bo->hdir, bo->hdev);
906 if (err) {
907 del_symlink(bo->sdir, bo->sdev);
908 return err;
Andrew Morton4d7dd8f2006-09-29 01:58:56 -0700909 }
Johannes Weiner4e916722007-07-15 23:41:25 -0700910
911 list_add_tail(&bo->list, &bdev->bd_holder_list);
912 return 0;
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800913}
914
915/**
916 * del_bd_holder - delete sysfs symlinks for bd_claim() relationship
917 *
918 * @bdev: block device to be bd_claimed
919 * @kobj: holder's kobject
920 *
921 * If there is matching entry with @kobj in @bdev->bd_holder_list
922 * and no other bd_claim() from the same kobject,
923 * remove the struct bd_holder from the list, delete symlinks for it.
924 *
925 * Returns a pointer to the struct bd_holder when it's removed from the list
926 * and ready to be freed.
927 * Returns NULL if matching claim isn't found or there is other bd_claim()
928 * by the same kobject.
929 */
930static struct bd_holder *del_bd_holder(struct block_device *bdev,
931 struct kobject *kobj)
932{
933 struct bd_holder *bo;
934
935 list_for_each_entry(bo, &bdev->bd_holder_list, list) {
936 if (bo->sdir == kobj) {
937 bo->count--;
938 BUG_ON(bo->count < 0);
939 if (!bo->count) {
940 list_del(&bo->list);
941 del_symlink(bo->sdir, bo->sdev);
942 del_symlink(bo->hdir, bo->hdev);
943 bd_holder_release_dirs(bo);
944 return bo;
945 }
946 break;
947 }
948 }
949
950 return NULL;
951}
952
953/**
954 * bd_claim_by_kobject - bd_claim() with additional kobject signature
955 *
956 * @bdev: block device to be claimed
957 * @holder: holder's signature
958 * @kobj: holder's kobject
959 *
960 * Do bd_claim() and if it succeeds, create sysfs symlinks between
961 * the bdev and the holder's kobject.
962 * Use bd_release_from_kobject() when relesing the claimed bdev.
963 *
964 * Returns 0 on success. (same as bd_claim())
965 * Returns errno on failure.
966 */
967static int bd_claim_by_kobject(struct block_device *bdev, void *holder,
968 struct kobject *kobj)
969{
Johannes Weiner4e916722007-07-15 23:41:25 -0700970 int err;
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -0500971 struct bd_holder *bo, *found;
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800972
973 if (!kobj)
974 return -EINVAL;
975
976 bo = alloc_bd_holder(kobj);
977 if (!bo)
978 return -ENOMEM;
979
Peter Zijlstra2e7b6512006-12-08 02:36:13 -0800980 mutex_lock(&bdev->bd_mutex);
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -0500981
Johannes Weiner4e916722007-07-15 23:41:25 -0700982 err = bd_claim(bdev, holder);
983 if (err)
Andrew Morton4210df22007-07-15 23:41:28 -0700984 goto fail;
Johannes Weiner4e916722007-07-15 23:41:25 -0700985
986 found = find_bd_holder(bdev, bo);
987 if (found)
Andrew Morton4210df22007-07-15 23:41:28 -0700988 goto fail;
Johannes Weiner4e916722007-07-15 23:41:25 -0700989
990 err = add_bd_holder(bdev, bo);
991 if (err)
992 bd_release(bdev);
Andrew Morton4210df22007-07-15 23:41:28 -0700993 else
994 bo = NULL;
995fail:
Jun'ichi Nomurab4cf1b72006-03-27 01:18:00 -0800996 mutex_unlock(&bdev->bd_mutex);
Andrew Morton4210df22007-07-15 23:41:28 -0700997 free_bd_holder(bo);
Johannes Weiner4e916722007-07-15 23:41:25 -0700998 return err;
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800999}
1000
1001/**
1002 * bd_release_from_kobject - bd_release() with additional kobject signature
1003 *
1004 * @bdev: block device to be released
1005 * @kobj: holder's kobject
1006 *
1007 * Do bd_release() and remove sysfs symlinks created by bd_claim_by_kobject().
1008 */
1009static void bd_release_from_kobject(struct block_device *bdev,
1010 struct kobject *kobj)
1011{
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001012 if (!kobj)
1013 return;
1014
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001015 mutex_lock(&bdev->bd_mutex);
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001016 bd_release(bdev);
Andrew Morton4210df22007-07-15 23:41:28 -07001017 free_bd_holder(del_bd_holder(bdev, kobj));
Jun'ichi Nomurab4cf1b72006-03-27 01:18:00 -08001018 mutex_unlock(&bdev->bd_mutex);
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001019}
1020
1021/**
1022 * bd_claim_by_disk - wrapper function for bd_claim_by_kobject()
1023 *
1024 * @bdev: block device to be claimed
1025 * @holder: holder's signature
1026 * @disk: holder's gendisk
1027 *
1028 * Call bd_claim_by_kobject() with getting @disk->slave_dir.
1029 */
1030int bd_claim_by_disk(struct block_device *bdev, void *holder,
1031 struct gendisk *disk)
1032{
1033 return bd_claim_by_kobject(bdev, holder, kobject_get(disk->slave_dir));
1034}
1035EXPORT_SYMBOL_GPL(bd_claim_by_disk);
1036
1037/**
1038 * bd_release_from_disk - wrapper function for bd_release_from_kobject()
1039 *
1040 * @bdev: block device to be claimed
1041 * @disk: holder's gendisk
1042 *
1043 * Call bd_release_from_kobject() and put @disk->slave_dir.
1044 */
1045void bd_release_from_disk(struct block_device *bdev, struct gendisk *disk)
1046{
1047 bd_release_from_kobject(bdev, disk->slave_dir);
1048 kobject_put(disk->slave_dir);
1049}
1050EXPORT_SYMBOL_GPL(bd_release_from_disk);
1051#endif
1052
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053/*
1054 * Tries to open block device by device number. Use it ONLY if you
1055 * really do not have anything better - i.e. when you are behind a
1056 * truly sucky interface and all you are given is a device number. _Never_
1057 * to be used for internal purposes. If you ever need it - reconsider
1058 * your API.
1059 */
Al Viroaeb5d722008-09-02 15:28:45 -04001060struct block_device *open_by_devnum(dev_t dev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061{
1062 struct block_device *bdev = bdget(dev);
1063 int err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 if (bdev)
Al Viro572c4892007-10-08 13:24:05 -04001065 err = blkdev_get(bdev, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 return err ? ERR_PTR(err) : bdev;
1067}
1068
1069EXPORT_SYMBOL(open_by_devnum);
1070
Andrew Patterson0c002c22008-09-04 14:27:20 -06001071/**
Andrew Patterson56ade442008-09-04 14:27:40 -06001072 * flush_disk - invalidates all buffer-cache entries on a disk
1073 *
1074 * @bdev: struct block device to be flushed
1075 *
1076 * Invalidates all buffer-cache entries on a disk. It should be called
1077 * when a disk has been changed -- either by a media change or online
1078 * resize.
1079 */
1080static void flush_disk(struct block_device *bdev)
1081{
1082 if (__invalidate_device(bdev)) {
1083 char name[BDEVNAME_SIZE] = "";
1084
1085 if (bdev->bd_disk)
1086 disk_name(bdev->bd_disk, 0, name);
1087 printk(KERN_WARNING "VFS: busy inodes on changed media or "
1088 "resized disk %s\n", name);
1089 }
1090
1091 if (!bdev->bd_disk)
1092 return;
1093 if (disk_partitionable(bdev->bd_disk))
1094 bdev->bd_invalidated = 1;
1095}
1096
1097/**
Randy Dunlap57d1b532008-10-09 10:42:38 +02001098 * check_disk_size_change - checks for disk size change and adjusts bdev size.
Andrew Pattersonc3279d12008-09-04 14:27:25 -06001099 * @disk: struct gendisk to check
1100 * @bdev: struct bdev to adjust.
1101 *
1102 * This routine checks to see if the bdev size does not match the disk size
1103 * and adjusts it if it differs.
1104 */
1105void check_disk_size_change(struct gendisk *disk, struct block_device *bdev)
1106{
1107 loff_t disk_size, bdev_size;
1108
1109 disk_size = (loff_t)get_capacity(disk) << 9;
1110 bdev_size = i_size_read(bdev->bd_inode);
1111 if (disk_size != bdev_size) {
1112 char name[BDEVNAME_SIZE];
1113
1114 disk_name(disk, 0, name);
1115 printk(KERN_INFO
1116 "%s: detected capacity change from %lld to %lld\n",
1117 name, bdev_size, disk_size);
1118 i_size_write(bdev->bd_inode, disk_size);
Andrew Patterson608aeef2008-09-04 14:27:45 -06001119 flush_disk(bdev);
Andrew Pattersonc3279d12008-09-04 14:27:25 -06001120 }
1121}
1122EXPORT_SYMBOL(check_disk_size_change);
1123
1124/**
Randy Dunlap57d1b532008-10-09 10:42:38 +02001125 * revalidate_disk - wrapper for lower-level driver's revalidate_disk call-back
Andrew Patterson0c002c22008-09-04 14:27:20 -06001126 * @disk: struct gendisk to be revalidated
1127 *
1128 * This routine is a wrapper for lower-level driver's revalidate_disk
1129 * call-backs. It is used to do common pre and post operations needed
1130 * for all revalidate_disk operations.
1131 */
1132int revalidate_disk(struct gendisk *disk)
1133{
Andrew Pattersonc3279d12008-09-04 14:27:25 -06001134 struct block_device *bdev;
Andrew Patterson0c002c22008-09-04 14:27:20 -06001135 int ret = 0;
1136
1137 if (disk->fops->revalidate_disk)
1138 ret = disk->fops->revalidate_disk(disk);
1139
Andrew Pattersonc3279d12008-09-04 14:27:25 -06001140 bdev = bdget_disk(disk, 0);
1141 if (!bdev)
1142 return ret;
1143
1144 mutex_lock(&bdev->bd_mutex);
1145 check_disk_size_change(disk, bdev);
1146 mutex_unlock(&bdev->bd_mutex);
1147 bdput(bdev);
Andrew Patterson0c002c22008-09-04 14:27:20 -06001148 return ret;
1149}
1150EXPORT_SYMBOL(revalidate_disk);
1151
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152/*
1153 * This routine checks whether a removable media has been changed,
1154 * and invalidates all buffer-cache-entries in that case. This
1155 * is a relatively slow routine, so we have to try to minimize using
1156 * it. Thus it is called only upon a 'mount' or 'open'. This
1157 * is the best way of combining speed and utility, I think.
1158 * People changing diskettes in the middle of an operation deserve
1159 * to lose :-)
1160 */
1161int check_disk_change(struct block_device *bdev)
1162{
1163 struct gendisk *disk = bdev->bd_disk;
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -07001164 const struct block_device_operations *bdops = disk->fops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165
1166 if (!bdops->media_changed)
1167 return 0;
1168 if (!bdops->media_changed(bdev->bd_disk))
1169 return 0;
1170
Andrew Patterson56ade442008-09-04 14:27:40 -06001171 flush_disk(bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 if (bdops->revalidate_disk)
1173 bdops->revalidate_disk(bdev->bd_disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 return 1;
1175}
1176
1177EXPORT_SYMBOL(check_disk_change);
1178
1179void bd_set_size(struct block_device *bdev, loff_t size)
1180{
Martin K. Petersene1defc42009-05-22 17:17:49 -04001181 unsigned bsize = bdev_logical_block_size(bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182
1183 bdev->bd_inode->i_size = size;
1184 while (bsize < PAGE_CACHE_SIZE) {
1185 if (size & bsize)
1186 break;
1187 bsize <<= 1;
1188 }
1189 bdev->bd_block_size = bsize;
1190 bdev->bd_inode->i_blkbits = blksize_bits(bsize);
1191}
1192EXPORT_SYMBOL(bd_set_size);
1193
Al Viro9a1c3542008-02-22 20:40:24 -05001194static int __blkdev_put(struct block_device *bdev, fmode_t mode, int for_part);
NeilBrown37be4122006-12-08 02:36:16 -08001195
Peter Zijlstra6d740cd2007-02-20 13:58:18 -08001196/*
1197 * bd_mutex locking:
1198 *
1199 * mutex_lock(part->bd_mutex)
1200 * mutex_lock_nested(whole->bd_mutex, 1)
1201 */
1202
Al Viro572c4892007-10-08 13:24:05 -04001203static int __blkdev_get(struct block_device *bdev, fmode_t mode, int for_part)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 struct gendisk *disk;
Pavel Emelyanov7db9cfd2008-06-05 22:46:27 -07001206 int ret;
Tejun Heocf771cb2008-09-03 09:01:09 +02001207 int partno;
Al Virofe6e9c12008-06-23 08:30:55 -04001208 int perm = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209
Al Viro572c4892007-10-08 13:24:05 -04001210 if (mode & FMODE_READ)
Al Virofe6e9c12008-06-23 08:30:55 -04001211 perm |= MAY_READ;
Al Viro572c4892007-10-08 13:24:05 -04001212 if (mode & FMODE_WRITE)
Al Virofe6e9c12008-06-23 08:30:55 -04001213 perm |= MAY_WRITE;
1214 /*
1215 * hooks: /n/, see "layering violations".
1216 */
1217 ret = devcgroup_inode_permission(bdev->bd_inode, perm);
Al Viro82666022008-08-01 05:32:04 -04001218 if (ret != 0) {
1219 bdput(bdev);
Pavel Emelyanov7db9cfd2008-06-05 22:46:27 -07001220 return ret;
Al Viro82666022008-08-01 05:32:04 -04001221 }
Pavel Emelyanov7db9cfd2008-06-05 22:46:27 -07001222
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 lock_kernel();
NeilBrownd3374822009-01-09 08:31:10 +11001224 restart:
Tejun Heo0762b8b2008-08-25 19:56:12 +09001225
Tejun Heo89f97492008-11-05 10:21:06 +01001226 ret = -ENXIO;
Tejun Heocf771cb2008-09-03 09:01:09 +02001227 disk = get_gendisk(bdev->bd_dev, &partno);
Tejun Heo0762b8b2008-08-25 19:56:12 +09001228 if (!disk)
1229 goto out_unlock_kernel;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230
NeilBrown6796bf52006-12-08 02:36:16 -08001231 mutex_lock_nested(&bdev->bd_mutex, for_part);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 if (!bdev->bd_openers) {
1233 bdev->bd_disk = disk;
1234 bdev->bd_contains = bdev;
Tejun Heocf771cb2008-09-03 09:01:09 +02001235 if (!partno) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 struct backing_dev_info *bdi;
Tejun Heo89f97492008-11-05 10:21:06 +01001237
1238 ret = -ENXIO;
1239 bdev->bd_part = disk_get_part(disk, partno);
1240 if (!bdev->bd_part)
1241 goto out_clear;
1242
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 if (disk->fops->open) {
Al Viro572c4892007-10-08 13:24:05 -04001244 ret = disk->fops->open(bdev, mode);
NeilBrownd3374822009-01-09 08:31:10 +11001245 if (ret == -ERESTARTSYS) {
1246 /* Lost a race with 'disk' being
1247 * deleted, try again.
1248 * See md.c
1249 */
1250 disk_put_part(bdev->bd_part);
1251 bdev->bd_part = NULL;
1252 module_put(disk->fops->owner);
1253 put_disk(disk);
1254 bdev->bd_disk = NULL;
1255 mutex_unlock(&bdev->bd_mutex);
1256 goto restart;
1257 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 if (ret)
Tejun Heo0762b8b2008-08-25 19:56:12 +09001259 goto out_clear;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 }
1261 if (!bdev->bd_openers) {
1262 bd_set_size(bdev,(loff_t)get_capacity(disk)<<9);
1263 bdi = blk_get_backing_dev_info(bdev);
1264 if (bdi == NULL)
1265 bdi = &default_backing_dev_info;
1266 bdev->bd_inode->i_data.backing_dev_info = bdi;
1267 }
1268 if (bdev->bd_invalidated)
1269 rescan_partitions(disk, bdev);
1270 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 struct block_device *whole;
1272 whole = bdget_disk(disk, 0);
1273 ret = -ENOMEM;
1274 if (!whole)
Tejun Heo0762b8b2008-08-25 19:56:12 +09001275 goto out_clear;
NeilBrown37be4122006-12-08 02:36:16 -08001276 BUG_ON(for_part);
Al Viro572c4892007-10-08 13:24:05 -04001277 ret = __blkdev_get(whole, mode, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 if (ret)
Tejun Heo0762b8b2008-08-25 19:56:12 +09001279 goto out_clear;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 bdev->bd_contains = whole;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 bdev->bd_inode->i_data.backing_dev_info =
1282 whole->bd_inode->i_data.backing_dev_info;
Tejun Heo89f97492008-11-05 10:21:06 +01001283 bdev->bd_part = disk_get_part(disk, partno);
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001284 if (!(disk->flags & GENHD_FL_UP) ||
Tejun Heo89f97492008-11-05 10:21:06 +01001285 !bdev->bd_part || !bdev->bd_part->nr_sects) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 ret = -ENXIO;
Tejun Heo0762b8b2008-08-25 19:56:12 +09001287 goto out_clear;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 }
Tejun Heo89f97492008-11-05 10:21:06 +01001289 bd_set_size(bdev, (loff_t)bdev->bd_part->nr_sects << 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 }
1291 } else {
Tejun Heo0762b8b2008-08-25 19:56:12 +09001292 module_put(disk->fops->owner);
Neil Brown960cc0f2009-10-26 08:59:17 +01001293 put_disk(disk);
Tejun Heo0762b8b2008-08-25 19:56:12 +09001294 disk = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 if (bdev->bd_contains == bdev) {
1296 if (bdev->bd_disk->fops->open) {
Al Viro572c4892007-10-08 13:24:05 -04001297 ret = bdev->bd_disk->fops->open(bdev, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 if (ret)
Tejun Heo0762b8b2008-08-25 19:56:12 +09001299 goto out_unlock_bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 }
1301 if (bdev->bd_invalidated)
1302 rescan_partitions(bdev->bd_disk, bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 }
1304 }
1305 bdev->bd_openers++;
NeilBrown37be4122006-12-08 02:36:16 -08001306 if (for_part)
1307 bdev->bd_part_count++;
Arjan van de Venc039e312006-03-23 03:00:28 -08001308 mutex_unlock(&bdev->bd_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 unlock_kernel();
1310 return 0;
1311
Tejun Heo0762b8b2008-08-25 19:56:12 +09001312 out_clear:
Tejun Heo89f97492008-11-05 10:21:06 +01001313 disk_put_part(bdev->bd_part);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 bdev->bd_disk = NULL;
Tejun Heo0762b8b2008-08-25 19:56:12 +09001315 bdev->bd_part = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 bdev->bd_inode->i_data.backing_dev_info = &default_backing_dev_info;
1317 if (bdev != bdev->bd_contains)
Al Viro572c4892007-10-08 13:24:05 -04001318 __blkdev_put(bdev->bd_contains, mode, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 bdev->bd_contains = NULL;
Tejun Heo0762b8b2008-08-25 19:56:12 +09001320 out_unlock_bdev:
Arjan van de Venc039e312006-03-23 03:00:28 -08001321 mutex_unlock(&bdev->bd_mutex);
Tejun Heo0762b8b2008-08-25 19:56:12 +09001322 out_unlock_kernel:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 unlock_kernel();
Tejun Heo0762b8b2008-08-25 19:56:12 +09001324
Tejun Heo0762b8b2008-08-25 19:56:12 +09001325 if (disk)
1326 module_put(disk->fops->owner);
1327 put_disk(disk);
1328 bdput(bdev);
1329
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 return ret;
1331}
1332
Al Viro572c4892007-10-08 13:24:05 -04001333int blkdev_get(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334{
Al Viro572c4892007-10-08 13:24:05 -04001335 return __blkdev_get(bdev, mode, 0);
NeilBrown37be4122006-12-08 02:36:16 -08001336}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337EXPORT_SYMBOL(blkdev_get);
1338
1339static int blkdev_open(struct inode * inode, struct file * filp)
1340{
1341 struct block_device *bdev;
1342 int res;
1343
1344 /*
1345 * Preserve backwards compatibility and allow large file access
1346 * even if userspace doesn't ask for it explicitly. Some mkfs
1347 * binary needs it. We might want to drop this workaround
1348 * during an unstable branch.
1349 */
1350 filp->f_flags |= O_LARGEFILE;
1351
Al Viro572c4892007-10-08 13:24:05 -04001352 if (filp->f_flags & O_NDELAY)
1353 filp->f_mode |= FMODE_NDELAY;
1354 if (filp->f_flags & O_EXCL)
1355 filp->f_mode |= FMODE_EXCL;
1356 if ((filp->f_flags & O_ACCMODE) == 3)
1357 filp->f_mode |= FMODE_WRITE_IOCTL;
1358
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 bdev = bd_acquire(inode);
Pavel Emelianov6a2aae02006-10-28 10:38:33 -07001360 if (bdev == NULL)
1361 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362
Al Viro572c4892007-10-08 13:24:05 -04001363 filp->f_mapping = bdev->bd_inode->i_mapping;
1364
1365 res = blkdev_get(bdev, filp->f_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 if (res)
1367 return res;
1368
Christoph Hellwigebbefc02008-11-05 14:54:41 +01001369 if (filp->f_mode & FMODE_EXCL) {
1370 res = bd_claim(bdev, filp);
1371 if (res)
1372 goto out_blkdev_put;
1373 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374
Christoph Hellwigebbefc02008-11-05 14:54:41 +01001375 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376
Christoph Hellwigebbefc02008-11-05 14:54:41 +01001377 out_blkdev_put:
Al Viro9a1c3542008-02-22 20:40:24 -05001378 blkdev_put(bdev, filp->f_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 return res;
1380}
1381
Al Viro9a1c3542008-02-22 20:40:24 -05001382static int __blkdev_put(struct block_device *bdev, fmode_t mode, int for_part)
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001383{
1384 int ret = 0;
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001385 struct gendisk *disk = bdev->bd_disk;
NeilBrown37be4122006-12-08 02:36:16 -08001386 struct block_device *victim = NULL;
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001387
NeilBrown6796bf52006-12-08 02:36:16 -08001388 mutex_lock_nested(&bdev->bd_mutex, for_part);
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001389 lock_kernel();
NeilBrown37be4122006-12-08 02:36:16 -08001390 if (for_part)
1391 bdev->bd_part_count--;
1392
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001393 if (!--bdev->bd_openers) {
1394 sync_blockdev(bdev);
1395 kill_bdev(bdev);
1396 }
1397 if (bdev->bd_contains == bdev) {
1398 if (disk->fops->release)
Al Viro9a1c3542008-02-22 20:40:24 -05001399 ret = disk->fops->release(disk, mode);
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001400 }
1401 if (!bdev->bd_openers) {
1402 struct module *owner = disk->fops->owner;
1403
1404 put_disk(disk);
1405 module_put(owner);
Tejun Heo0762b8b2008-08-25 19:56:12 +09001406 disk_put_part(bdev->bd_part);
1407 bdev->bd_part = NULL;
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001408 bdev->bd_disk = NULL;
1409 bdev->bd_inode->i_data.backing_dev_info = &default_backing_dev_info;
NeilBrown37be4122006-12-08 02:36:16 -08001410 if (bdev != bdev->bd_contains)
1411 victim = bdev->bd_contains;
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001412 bdev->bd_contains = NULL;
1413 }
1414 unlock_kernel();
1415 mutex_unlock(&bdev->bd_mutex);
1416 bdput(bdev);
NeilBrown37be4122006-12-08 02:36:16 -08001417 if (victim)
Al Viro9a1c3542008-02-22 20:40:24 -05001418 __blkdev_put(victim, mode, 1);
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001419 return ret;
1420}
1421
Al Viro9a1c3542008-02-22 20:40:24 -05001422int blkdev_put(struct block_device *bdev, fmode_t mode)
NeilBrown37be4122006-12-08 02:36:16 -08001423{
Al Viro9a1c3542008-02-22 20:40:24 -05001424 return __blkdev_put(bdev, mode, 0);
NeilBrown37be4122006-12-08 02:36:16 -08001425}
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001426EXPORT_SYMBOL(blkdev_put);
1427
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428static int blkdev_close(struct inode * inode, struct file * filp)
1429{
1430 struct block_device *bdev = I_BDEV(filp->f_mapping->host);
1431 if (bdev->bd_holder == filp)
1432 bd_release(bdev);
Al Viro9a1c3542008-02-22 20:40:24 -05001433 return blkdev_put(bdev, filp->f_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434}
1435
Arnd Bergmannbb93e3a2005-06-23 00:10:15 -07001436static long block_ioctl(struct file *file, unsigned cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437{
Al Viro56b26ad2008-09-19 03:17:36 -04001438 struct block_device *bdev = I_BDEV(file->f_mapping->host);
1439 fmode_t mode = file->f_mode;
Christoph Hellwigfd4ce1a2008-11-05 14:58:42 +01001440
1441 /*
1442 * O_NDELAY can be altered using fcntl(.., F_SETFL, ..), so we have
1443 * to updated it before every ioctl.
1444 */
Al Viro56b26ad2008-09-19 03:17:36 -04001445 if (file->f_flags & O_NDELAY)
Christoph Hellwigfd4ce1a2008-11-05 14:58:42 +01001446 mode |= FMODE_NDELAY;
1447 else
1448 mode &= ~FMODE_NDELAY;
1449
Al Viro56b26ad2008-09-19 03:17:36 -04001450 return blkdev_ioctl(bdev, mode, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451}
1452
Theodore Ts'o87d8fe12009-01-03 09:47:09 -05001453/*
Christoph Hellwigeef99382009-08-20 17:43:41 +02001454 * Write data to the block device. Only intended for the block device itself
1455 * and the raw driver which basically is a fake block device.
1456 *
1457 * Does not take i_mutex for the write and thus is not for general purpose
1458 * use.
1459 */
1460ssize_t blkdev_aio_write(struct kiocb *iocb, const struct iovec *iov,
1461 unsigned long nr_segs, loff_t pos)
1462{
1463 struct file *file = iocb->ki_filp;
1464 ssize_t ret;
1465
1466 BUG_ON(iocb->ki_pos != pos);
1467
1468 ret = __generic_file_aio_write(iocb, iov, nr_segs, &iocb->ki_pos);
1469 if (ret > 0 || ret == -EIOCBQUEUED) {
1470 ssize_t err;
1471
1472 err = generic_write_sync(file, pos, ret);
1473 if (err < 0 && ret > 0)
1474 ret = err;
1475 }
1476 return ret;
1477}
1478EXPORT_SYMBOL_GPL(blkdev_aio_write);
1479
1480/*
Theodore Ts'o87d8fe12009-01-03 09:47:09 -05001481 * Try to release a page associated with block device when the system
1482 * is under memory pressure.
1483 */
1484static int blkdev_releasepage(struct page *page, gfp_t wait)
1485{
1486 struct super_block *super = BDEV_I(page->mapping->host)->bdev.bd_super;
1487
1488 if (super && super->s_op->bdev_try_to_free_page)
1489 return super->s_op->bdev_try_to_free_page(super, page, wait);
1490
1491 return try_to_free_buffers(page);
1492}
1493
Adrian Bunk4c54ac62008-02-18 13:48:31 +01001494static const struct address_space_operations def_blk_aops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 .readpage = blkdev_readpage,
1496 .writepage = blkdev_writepage,
1497 .sync_page = block_sync_page,
Nick Piggin6272b5a2007-10-16 01:25:04 -07001498 .write_begin = blkdev_write_begin,
1499 .write_end = blkdev_write_end,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 .writepages = generic_writepages,
Theodore Ts'o87d8fe12009-01-03 09:47:09 -05001501 .releasepage = blkdev_releasepage,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 .direct_IO = blkdev_direct_IO,
1503};
1504
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08001505const struct file_operations def_blk_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506 .open = blkdev_open,
1507 .release = blkdev_close,
1508 .llseek = block_llseek,
Badari Pulavarty543ade12006-09-30 23:28:48 -07001509 .read = do_sync_read,
1510 .write = do_sync_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 .aio_read = generic_file_aio_read,
Christoph Hellwigeef99382009-08-20 17:43:41 +02001512 .aio_write = blkdev_aio_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 .mmap = generic_file_mmap,
Andrew Mortonb1dd3b22010-04-06 14:35:00 -07001514 .fsync = blkdev_fsync,
Arnd Bergmannbb93e3a2005-06-23 00:10:15 -07001515 .unlocked_ioctl = block_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516#ifdef CONFIG_COMPAT
1517 .compat_ioctl = compat_blkdev_ioctl,
1518#endif
Jens Axboe7f9c51f2006-05-01 19:59:32 +02001519 .splice_read = generic_file_splice_read,
1520 .splice_write = generic_file_splice_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521};
1522
1523int ioctl_by_bdev(struct block_device *bdev, unsigned cmd, unsigned long arg)
1524{
1525 int res;
1526 mm_segment_t old_fs = get_fs();
1527 set_fs(KERNEL_DS);
Al Viro56b26ad2008-09-19 03:17:36 -04001528 res = blkdev_ioctl(bdev, 0, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 set_fs(old_fs);
1530 return res;
1531}
1532
1533EXPORT_SYMBOL(ioctl_by_bdev);
1534
1535/**
1536 * lookup_bdev - lookup a struct block_device by name
Randy Dunlap94e29592009-01-06 14:41:15 -08001537 * @pathname: special file representing the block device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 *
Randy Dunlap57d1b532008-10-09 10:42:38 +02001539 * Get a reference to the blockdevice at @pathname in the current
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 * namespace if possible and return it. Return ERR_PTR(error)
1541 * otherwise.
1542 */
Al Viro421748e2008-08-02 01:04:36 -04001543struct block_device *lookup_bdev(const char *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544{
1545 struct block_device *bdev;
1546 struct inode *inode;
Al Viro421748e2008-08-02 01:04:36 -04001547 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 int error;
1549
Al Viro421748e2008-08-02 01:04:36 -04001550 if (!pathname || !*pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 return ERR_PTR(-EINVAL);
1552
Al Viro421748e2008-08-02 01:04:36 -04001553 error = kern_path(pathname, LOOKUP_FOLLOW, &path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 if (error)
1555 return ERR_PTR(error);
1556
Al Viro421748e2008-08-02 01:04:36 -04001557 inode = path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 error = -ENOTBLK;
1559 if (!S_ISBLK(inode->i_mode))
1560 goto fail;
1561 error = -EACCES;
Al Viro421748e2008-08-02 01:04:36 -04001562 if (path.mnt->mnt_flags & MNT_NODEV)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 goto fail;
1564 error = -ENOMEM;
1565 bdev = bd_acquire(inode);
1566 if (!bdev)
1567 goto fail;
1568out:
Al Viro421748e2008-08-02 01:04:36 -04001569 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 return bdev;
1571fail:
1572 bdev = ERR_PTR(error);
1573 goto out;
1574}
Al Virod5686b42008-08-01 05:00:11 -04001575EXPORT_SYMBOL(lookup_bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576
1577/**
Al Viro30c40d22008-02-22 19:50:45 -05001578 * open_bdev_exclusive - open a block device by name and set it up for use
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 *
1580 * @path: special file representing the block device
Al Viro30c40d22008-02-22 19:50:45 -05001581 * @mode: FMODE_... combination to pass be used
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 * @holder: owner for exclusion
1583 *
1584 * Open the blockdevice described by the special file at @path, claim it
1585 * for the @holder.
1586 */
Al Viro30c40d22008-02-22 19:50:45 -05001587struct block_device *open_bdev_exclusive(const char *path, fmode_t mode, void *holder)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588{
1589 struct block_device *bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 int error = 0;
1591
1592 bdev = lookup_bdev(path);
1593 if (IS_ERR(bdev))
1594 return bdev;
1595
Al Viro572c4892007-10-08 13:24:05 -04001596 error = blkdev_get(bdev, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 if (error)
1598 return ERR_PTR(error);
1599 error = -EACCES;
Al Viro30c40d22008-02-22 19:50:45 -05001600 if ((mode & FMODE_WRITE) && bdev_read_only(bdev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 goto blkdev_put;
1602 error = bd_claim(bdev, holder);
1603 if (error)
1604 goto blkdev_put;
1605
1606 return bdev;
1607
1608blkdev_put:
Al Viro9a1c3542008-02-22 20:40:24 -05001609 blkdev_put(bdev, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 return ERR_PTR(error);
1611}
1612
Al Viro30c40d22008-02-22 19:50:45 -05001613EXPORT_SYMBOL(open_bdev_exclusive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614
1615/**
Al Viro30c40d22008-02-22 19:50:45 -05001616 * close_bdev_exclusive - close a blockdevice opened by open_bdev_exclusive()
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617 *
1618 * @bdev: blockdevice to close
Al Viro30c40d22008-02-22 19:50:45 -05001619 * @mode: mode, must match that used to open.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 *
Al Viro30c40d22008-02-22 19:50:45 -05001621 * This is the counterpart to open_bdev_exclusive().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 */
Al Viro30c40d22008-02-22 19:50:45 -05001623void close_bdev_exclusive(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624{
1625 bd_release(bdev);
Al Viro30c40d22008-02-22 19:50:45 -05001626 blkdev_put(bdev, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627}
1628
Al Viro30c40d22008-02-22 19:50:45 -05001629EXPORT_SYMBOL(close_bdev_exclusive);
David Howellsb71e8a42006-08-29 19:06:11 +01001630
1631int __invalidate_device(struct block_device *bdev)
1632{
1633 struct super_block *sb = get_super(bdev);
1634 int res = 0;
1635
1636 if (sb) {
1637 /*
1638 * no need to lock the super, get_super holds the
1639 * read mutex so the filesystem cannot go away
1640 * under us (->put_super runs with the write lock
1641 * hold).
1642 */
1643 shrink_dcache_sb(sb);
1644 res = invalidate_inodes(sb);
1645 drop_super(sb);
1646 }
Peter Zijlstraf98393a2007-05-06 14:49:54 -07001647 invalidate_bdev(bdev);
David Howellsb71e8a42006-08-29 19:06:11 +01001648 return res;
1649}
1650EXPORT_SYMBOL(__invalidate_device);