blob: 99d6af8117473b661a64a5f05e58a024570d4fe0 [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
Nick Piggin3322e792010-05-27 22:42:19 +1000175 return blockdev_direct_IO_no_locking_newtrunc(rw, iocb, inode,
176 I_BDEV(inode), iov, offset, nr_segs,
177 blkdev_get_blocks, NULL);
Andrew Mortonb2e895d2007-02-03 01:14:01 -0800178}
179
Jan Kara5cee5812009-04-27 16:43:51 +0200180int __sync_blockdev(struct block_device *bdev, int wait)
181{
182 if (!bdev)
183 return 0;
184 if (!wait)
185 return filemap_flush(bdev->bd_inode->i_mapping);
186 return filemap_write_and_wait(bdev->bd_inode->i_mapping);
187}
188
Nick Piggin585d3bc2009-02-25 10:44:19 +0100189/*
190 * Write out and wait upon all the dirty data associated with a block
191 * device via its mapping. Does not take the superblock lock.
192 */
193int sync_blockdev(struct block_device *bdev)
194{
Jan Kara5cee5812009-04-27 16:43:51 +0200195 return __sync_blockdev(bdev, 1);
Nick Piggin585d3bc2009-02-25 10:44:19 +0100196}
197EXPORT_SYMBOL(sync_blockdev);
198
199/*
200 * Write out and wait upon all dirty data associated with this
201 * device. Filesystem data as well as the underlying block
202 * device. Takes the superblock lock.
203 */
204int fsync_bdev(struct block_device *bdev)
205{
206 struct super_block *sb = get_super(bdev);
207 if (sb) {
Jan Kara60b06802009-04-27 16:43:53 +0200208 int res = sync_filesystem(sb);
Nick Piggin585d3bc2009-02-25 10:44:19 +0100209 drop_super(sb);
210 return res;
211 }
212 return sync_blockdev(bdev);
213}
Al Viro47e44912009-04-01 07:07:16 -0400214EXPORT_SYMBOL(fsync_bdev);
Nick Piggin585d3bc2009-02-25 10:44:19 +0100215
216/**
217 * freeze_bdev -- lock a filesystem and force it into a consistent state
218 * @bdev: blockdevice to lock
219 *
Nick Piggin585d3bc2009-02-25 10:44:19 +0100220 * If a superblock is found on this device, we take the s_umount semaphore
221 * on it to make sure nobody unmounts until the snapshot creation is done.
222 * The reference counter (bd_fsfreeze_count) guarantees that only the last
223 * unfreeze process can unfreeze the frozen filesystem actually when multiple
224 * freeze requests arrive simultaneously. It counts up in freeze_bdev() and
225 * count down in thaw_bdev(). When it becomes 0, thaw_bdev() will unfreeze
226 * actually.
227 */
228struct super_block *freeze_bdev(struct block_device *bdev)
229{
230 struct super_block *sb;
231 int error = 0;
232
233 mutex_lock(&bdev->bd_fsfreeze_mutex);
Christoph Hellwig45042302009-08-03 23:28:35 +0200234 if (++bdev->bd_fsfreeze_count > 1) {
235 /*
236 * We don't even need to grab a reference - the first call
237 * to freeze_bdev grab an active reference and only the last
238 * thaw_bdev drops it.
239 */
Nick Piggin585d3bc2009-02-25 10:44:19 +0100240 sb = get_super(bdev);
Christoph Hellwig45042302009-08-03 23:28:35 +0200241 drop_super(sb);
Nick Piggin585d3bc2009-02-25 10:44:19 +0100242 mutex_unlock(&bdev->bd_fsfreeze_mutex);
243 return sb;
244 }
Nick Piggin585d3bc2009-02-25 10:44:19 +0100245
Christoph Hellwig45042302009-08-03 23:28:35 +0200246 sb = get_active_super(bdev);
247 if (!sb)
248 goto out;
Josef Bacik18e9e512010-03-23 10:34:56 -0400249 error = freeze_super(sb);
250 if (error) {
251 deactivate_super(sb);
252 bdev->bd_fsfreeze_count--;
Christoph Hellwig45042302009-08-03 23:28:35 +0200253 mutex_unlock(&bdev->bd_fsfreeze_mutex);
Josef Bacik18e9e512010-03-23 10:34:56 -0400254 return ERR_PTR(error);
Nick Piggin585d3bc2009-02-25 10:44:19 +0100255 }
Josef Bacik18e9e512010-03-23 10:34:56 -0400256 deactivate_super(sb);
Christoph Hellwig45042302009-08-03 23:28:35 +0200257 out:
Nick Piggin585d3bc2009-02-25 10:44:19 +0100258 sync_blockdev(bdev);
259 mutex_unlock(&bdev->bd_fsfreeze_mutex);
Christoph Hellwig4fadd7b2009-08-03 23:28:06 +0200260 return sb; /* thaw_bdev releases s->s_umount */
Nick Piggin585d3bc2009-02-25 10:44:19 +0100261}
262EXPORT_SYMBOL(freeze_bdev);
263
264/**
265 * thaw_bdev -- unlock filesystem
266 * @bdev: blockdevice to unlock
267 * @sb: associated superblock
268 *
269 * Unlocks the filesystem and marks it writeable again after freeze_bdev().
270 */
271int thaw_bdev(struct block_device *bdev, struct super_block *sb)
272{
Christoph Hellwig45042302009-08-03 23:28:35 +0200273 int error = -EINVAL;
Nick Piggin585d3bc2009-02-25 10:44:19 +0100274
275 mutex_lock(&bdev->bd_fsfreeze_mutex);
Christoph Hellwig45042302009-08-03 23:28:35 +0200276 if (!bdev->bd_fsfreeze_count)
Josef Bacik18e9e512010-03-23 10:34:56 -0400277 goto out;
Nick Piggin585d3bc2009-02-25 10:44:19 +0100278
Christoph Hellwig45042302009-08-03 23:28:35 +0200279 error = 0;
280 if (--bdev->bd_fsfreeze_count > 0)
Josef Bacik18e9e512010-03-23 10:34:56 -0400281 goto out;
Nick Piggin585d3bc2009-02-25 10:44:19 +0100282
Christoph Hellwig45042302009-08-03 23:28:35 +0200283 if (!sb)
Josef Bacik18e9e512010-03-23 10:34:56 -0400284 goto out;
Christoph Hellwig45042302009-08-03 23:28:35 +0200285
Josef Bacik18e9e512010-03-23 10:34:56 -0400286 error = thaw_super(sb);
287 if (error) {
288 bdev->bd_fsfreeze_count++;
289 mutex_unlock(&bdev->bd_fsfreeze_mutex);
290 return error;
Nick Piggin585d3bc2009-02-25 10:44:19 +0100291 }
Josef Bacik18e9e512010-03-23 10:34:56 -0400292out:
Nick Piggin585d3bc2009-02-25 10:44:19 +0100293 mutex_unlock(&bdev->bd_fsfreeze_mutex);
294 return 0;
295}
296EXPORT_SYMBOL(thaw_bdev);
297
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298static int blkdev_writepage(struct page *page, struct writeback_control *wbc)
299{
300 return block_write_full_page(page, blkdev_get_block, wbc);
301}
302
303static int blkdev_readpage(struct file * file, struct page * page)
304{
305 return block_read_full_page(page, blkdev_get_block);
306}
307
Nick Piggin6272b5a2007-10-16 01:25:04 -0700308static int blkdev_write_begin(struct file *file, struct address_space *mapping,
309 loff_t pos, unsigned len, unsigned flags,
310 struct page **pagep, void **fsdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311{
Nick Piggin6272b5a2007-10-16 01:25:04 -0700312 *pagep = NULL;
Nick Piggin3322e792010-05-27 22:42:19 +1000313 return block_write_begin_newtrunc(file, mapping, pos, len, flags,
314 pagep, fsdata, blkdev_get_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315}
316
Nick Piggin6272b5a2007-10-16 01:25:04 -0700317static int blkdev_write_end(struct file *file, struct address_space *mapping,
318 loff_t pos, unsigned len, unsigned copied,
319 struct page *page, void *fsdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320{
Nick Piggin6272b5a2007-10-16 01:25:04 -0700321 int ret;
322 ret = block_write_end(file, mapping, pos, len, copied, page, fsdata);
323
324 unlock_page(page);
325 page_cache_release(page);
326
327 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328}
329
330/*
331 * private llseek:
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800332 * for a block special file file->f_path.dentry->d_inode->i_size is zero
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 * so we compute the size by hand (just as in block_read/write above)
334 */
335static loff_t block_llseek(struct file *file, loff_t offset, int origin)
336{
337 struct inode *bd_inode = file->f_mapping->host;
338 loff_t size;
339 loff_t retval;
340
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800341 mutex_lock(&bd_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 size = i_size_read(bd_inode);
343
344 switch (origin) {
345 case 2:
346 offset += size;
347 break;
348 case 1:
349 offset += file->f_pos;
350 }
351 retval = -EINVAL;
352 if (offset >= 0 && offset <= size) {
353 if (offset != file->f_pos) {
354 file->f_pos = offset;
355 }
356 retval = offset;
357 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800358 mutex_unlock(&bd_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 return retval;
360}
361
Christoph Hellwig7ea80852010-05-26 17:53:25 +0200362int blkdev_fsync(struct file *filp, int datasync)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363{
Anton Blanchardb8af67e2010-04-23 13:18:06 -0400364 struct inode *bd_inode = filp->f_mapping->host;
365 struct block_device *bdev = I_BDEV(bd_inode);
Christoph Hellwigab0a9732009-10-29 14:14:04 +0100366 int error;
367
Anton Blanchardb8af67e2010-04-23 13:18:06 -0400368 /*
369 * There is no need to serialise calls to blkdev_issue_flush with
370 * i_mutex and doing so causes performance issues with concurrent
371 * O_SYNC writers to a block device.
372 */
373 mutex_unlock(&bd_inode->i_mutex);
374
Jens Axboe7407cf32010-04-29 09:36:24 +0200375 error = blkdev_issue_flush(bdev, GFP_KERNEL, NULL, BLKDEV_IFL_WAIT);
Christoph Hellwigab0a9732009-10-29 14:14:04 +0100376 if (error == -EOPNOTSUPP)
377 error = 0;
Anton Blanchardb8af67e2010-04-23 13:18:06 -0400378
379 mutex_lock(&bd_inode->i_mutex);
380
Christoph Hellwigab0a9732009-10-29 14:14:04 +0100381 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382}
Andrew Mortonb1dd3b22010-04-06 14:35:00 -0700383EXPORT_SYMBOL(blkdev_fsync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384
385/*
386 * pseudo-fs
387 */
388
389static __cacheline_aligned_in_smp DEFINE_SPINLOCK(bdev_lock);
Christoph Lametere18b8902006-12-06 20:33:20 -0800390static struct kmem_cache * bdev_cachep __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391
392static struct inode *bdev_alloc_inode(struct super_block *sb)
393{
Christoph Lametere94b1762006-12-06 20:33:17 -0800394 struct bdev_inode *ei = kmem_cache_alloc(bdev_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 if (!ei)
396 return NULL;
397 return &ei->vfs_inode;
398}
399
400static void bdev_destroy_inode(struct inode *inode)
401{
402 struct bdev_inode *bdi = BDEV_I(inode);
403
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 kmem_cache_free(bdev_cachep, bdi);
405}
406
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700407static void init_once(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408{
409 struct bdev_inode *ei = (struct bdev_inode *) foo;
410 struct block_device *bdev = &ei->bdev;
411
Christoph Lametera35afb82007-05-16 22:10:57 -0700412 memset(bdev, 0, sizeof(*bdev));
413 mutex_init(&bdev->bd_mutex);
Christoph Lametera35afb82007-05-16 22:10:57 -0700414 INIT_LIST_HEAD(&bdev->bd_inodes);
415 INIT_LIST_HEAD(&bdev->bd_list);
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800416#ifdef CONFIG_SYSFS
Christoph Lametera35afb82007-05-16 22:10:57 -0700417 INIT_LIST_HEAD(&bdev->bd_holder_list);
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800418#endif
Christoph Lametera35afb82007-05-16 22:10:57 -0700419 inode_init_once(&ei->vfs_inode);
Takashi Satofcccf502009-01-09 16:40:59 -0800420 /* Initialize mutex for freeze. */
421 mutex_init(&bdev->bd_fsfreeze_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422}
423
424static inline void __bd_forget(struct inode *inode)
425{
426 list_del_init(&inode->i_devices);
427 inode->i_bdev = NULL;
428 inode->i_mapping = &inode->i_data;
429}
430
431static void bdev_clear_inode(struct inode *inode)
432{
433 struct block_device *bdev = &BDEV_I(inode)->bdev;
434 struct list_head *p;
435 spin_lock(&bdev_lock);
436 while ( (p = bdev->bd_inodes.next) != &bdev->bd_inodes ) {
437 __bd_forget(list_entry(p, struct inode, i_devices));
438 }
439 list_del_init(&bdev->bd_list);
440 spin_unlock(&bdev_lock);
441}
442
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800443static const struct super_operations bdev_sops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 .statfs = simple_statfs,
445 .alloc_inode = bdev_alloc_inode,
446 .destroy_inode = bdev_destroy_inode,
447 .drop_inode = generic_delete_inode,
448 .clear_inode = bdev_clear_inode,
449};
450
David Howells454e2392006-06-23 02:02:57 -0700451static int bd_get_sb(struct file_system_type *fs_type,
452 int flags, const char *dev_name, void *data, struct vfsmount *mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453{
David Howells454e2392006-06-23 02:02:57 -0700454 return get_sb_pseudo(fs_type, "bdev:", &bdev_sops, 0x62646576, mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455}
456
457static struct file_system_type bd_type = {
458 .name = "bdev",
459 .get_sb = bd_get_sb,
460 .kill_sb = kill_anon_super,
461};
462
Denis ChengRqc2acf7b2008-12-01 14:34:56 -0800463struct super_block *blockdev_superblock __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
465void __init bdev_cache_init(void)
466{
467 int err;
Denis ChengRqc2acf7b2008-12-01 14:34:56 -0800468 struct vfsmount *bd_mnt;
469
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 bdev_cachep = kmem_cache_create("bdev_cache", sizeof(struct bdev_inode),
Paul Jacksonfffb60f2006-03-24 03:16:06 -0800471 0, (SLAB_HWCACHE_ALIGN|SLAB_RECLAIM_ACCOUNT|
472 SLAB_MEM_SPREAD|SLAB_PANIC),
Paul Mundt20c2df82007-07-20 10:11:58 +0900473 init_once);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 err = register_filesystem(&bd_type);
475 if (err)
476 panic("Cannot register bdev pseudo-fs");
477 bd_mnt = kern_mount(&bd_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 if (IS_ERR(bd_mnt))
479 panic("Cannot create bdev pseudo-fs");
Catalin Marinas2e1483c2009-06-11 13:24:13 +0100480 /*
481 * This vfsmount structure is only used to obtain the
482 * blockdev_superblock, so tell kmemleak not to report it.
483 */
484 kmemleak_not_leak(bd_mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 blockdev_superblock = bd_mnt->mnt_sb; /* For writeback */
486}
487
488/*
489 * Most likely _very_ bad one - but then it's hardly critical for small
490 * /dev and can be fixed when somebody will need really large one.
491 * Keep in mind that it will be fed through icache hash function too.
492 */
493static inline unsigned long hash(dev_t dev)
494{
495 return MAJOR(dev)+MINOR(dev);
496}
497
498static int bdev_test(struct inode *inode, void *data)
499{
500 return BDEV_I(inode)->bdev.bd_dev == *(dev_t *)data;
501}
502
503static int bdev_set(struct inode *inode, void *data)
504{
505 BDEV_I(inode)->bdev.bd_dev = *(dev_t *)data;
506 return 0;
507}
508
509static LIST_HEAD(all_bdevs);
510
511struct block_device *bdget(dev_t dev)
512{
513 struct block_device *bdev;
514 struct inode *inode;
515
Denis ChengRqc2acf7b2008-12-01 14:34:56 -0800516 inode = iget5_locked(blockdev_superblock, hash(dev),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 bdev_test, bdev_set, &dev);
518
519 if (!inode)
520 return NULL;
521
522 bdev = &BDEV_I(inode)->bdev;
523
524 if (inode->i_state & I_NEW) {
525 bdev->bd_contains = NULL;
526 bdev->bd_inode = inode;
527 bdev->bd_block_size = (1 << inode->i_blkbits);
528 bdev->bd_part_count = 0;
529 bdev->bd_invalidated = 0;
530 inode->i_mode = S_IFBLK;
531 inode->i_rdev = dev;
532 inode->i_bdev = bdev;
533 inode->i_data.a_ops = &def_blk_aops;
534 mapping_set_gfp_mask(&inode->i_data, GFP_USER);
535 inode->i_data.backing_dev_info = &default_backing_dev_info;
536 spin_lock(&bdev_lock);
537 list_add(&bdev->bd_list, &all_bdevs);
538 spin_unlock(&bdev_lock);
539 unlock_new_inode(inode);
540 }
541 return bdev;
542}
543
544EXPORT_SYMBOL(bdget);
545
Alan Jenkinsdddac6a2009-07-29 21:07:55 +0200546/**
547 * bdgrab -- Grab a reference to an already referenced block device
548 * @bdev: Block device to grab a reference to.
549 */
550struct block_device *bdgrab(struct block_device *bdev)
551{
552 atomic_inc(&bdev->bd_inode->i_count);
553 return bdev;
554}
555
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556long nr_blockdev_pages(void)
557{
Matthias Kaehlcke203a2932007-07-15 23:40:23 -0700558 struct block_device *bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 long ret = 0;
560 spin_lock(&bdev_lock);
Matthias Kaehlcke203a2932007-07-15 23:40:23 -0700561 list_for_each_entry(bdev, &all_bdevs, bd_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 ret += bdev->bd_inode->i_mapping->nrpages;
563 }
564 spin_unlock(&bdev_lock);
565 return ret;
566}
567
568void bdput(struct block_device *bdev)
569{
570 iput(bdev->bd_inode);
571}
572
573EXPORT_SYMBOL(bdput);
574
575static struct block_device *bd_acquire(struct inode *inode)
576{
577 struct block_device *bdev;
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700578
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 spin_lock(&bdev_lock);
580 bdev = inode->i_bdev;
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700581 if (bdev) {
582 atomic_inc(&bdev->bd_inode->i_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 spin_unlock(&bdev_lock);
584 return bdev;
585 }
586 spin_unlock(&bdev_lock);
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700587
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 bdev = bdget(inode->i_rdev);
589 if (bdev) {
590 spin_lock(&bdev_lock);
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700591 if (!inode->i_bdev) {
592 /*
593 * We take an additional bd_inode->i_count for inode,
594 * and it's released in clear_inode() of inode.
595 * So, we can access it via ->i_mapping always
596 * without igrab().
597 */
598 atomic_inc(&bdev->bd_inode->i_count);
599 inode->i_bdev = bdev;
600 inode->i_mapping = bdev->bd_inode->i_mapping;
601 list_add(&inode->i_devices, &bdev->bd_inodes);
602 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 spin_unlock(&bdev_lock);
604 }
605 return bdev;
606}
607
608/* Call when you free inode */
609
610void bd_forget(struct inode *inode)
611{
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700612 struct block_device *bdev = NULL;
613
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 spin_lock(&bdev_lock);
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700615 if (inode->i_bdev) {
Denis ChengRqc2acf7b2008-12-01 14:34:56 -0800616 if (!sb_is_blkdev_sb(inode->i_sb))
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700617 bdev = inode->i_bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 __bd_forget(inode);
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700619 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 spin_unlock(&bdev_lock);
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700621
622 if (bdev)
623 iput(bdev->bd_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624}
625
Tejun Heo1a3cbbc2010-04-07 18:52:29 +0900626/**
627 * bd_may_claim - test whether a block device can be claimed
628 * @bdev: block device of interest
629 * @whole: whole block device containing @bdev, may equal @bdev
630 * @holder: holder trying to claim @bdev
631 *
632 * Test whther @bdev can be claimed by @holder.
633 *
634 * CONTEXT:
635 * spin_lock(&bdev_lock).
636 *
637 * RETURNS:
638 * %true if @bdev can be claimed, %false otherwise.
639 */
640static bool bd_may_claim(struct block_device *bdev, struct block_device *whole,
641 void *holder)
642{
643 if (bdev->bd_holder == holder)
644 return true; /* already a holder */
645 else if (bdev->bd_holder != NULL)
646 return false; /* held by someone else */
647 else if (bdev->bd_contains == bdev)
648 return true; /* is a whole device which isn't held */
649
650 else if (whole->bd_holder == bd_claim)
651 return true; /* is a partition of a device that is being partitioned */
652 else if (whole->bd_holder != NULL)
653 return false; /* is a partition of a held device */
654 else
655 return true; /* is a partition of an un-held device */
656}
657
658/**
Tejun Heo6b4517a2010-04-07 18:53:59 +0900659 * bd_prepare_to_claim - prepare to claim a block device
660 * @bdev: block device of interest
661 * @whole: the whole device containing @bdev, may equal @bdev
662 * @holder: holder trying to claim @bdev
663 *
664 * Prepare to claim @bdev. This function fails if @bdev is already
665 * claimed by another holder and waits if another claiming is in
666 * progress. This function doesn't actually claim. On successful
667 * return, the caller has ownership of bd_claiming and bd_holder[s].
668 *
669 * CONTEXT:
670 * spin_lock(&bdev_lock). Might release bdev_lock, sleep and regrab
671 * it multiple times.
672 *
673 * RETURNS:
674 * 0 if @bdev can be claimed, -EBUSY otherwise.
675 */
676static int bd_prepare_to_claim(struct block_device *bdev,
677 struct block_device *whole, void *holder)
678{
679retry:
680 /* if someone else claimed, fail */
681 if (!bd_may_claim(bdev, whole, holder))
682 return -EBUSY;
683
684 /* if someone else is claiming, wait for it to finish */
685 if (whole->bd_claiming && whole->bd_claiming != holder) {
686 wait_queue_head_t *wq = bit_waitqueue(&whole->bd_claiming, 0);
687 DEFINE_WAIT(wait);
688
689 prepare_to_wait(wq, &wait, TASK_UNINTERRUPTIBLE);
690 spin_unlock(&bdev_lock);
691 schedule();
692 finish_wait(wq, &wait);
693 spin_lock(&bdev_lock);
694 goto retry;
695 }
696
697 /* yay, all mine */
698 return 0;
699}
700
701/**
702 * bd_start_claiming - start claiming a block device
703 * @bdev: block device of interest
704 * @holder: holder trying to claim @bdev
705 *
706 * @bdev is about to be opened exclusively. Check @bdev can be opened
707 * exclusively and mark that an exclusive open is in progress. Each
708 * successful call to this function must be matched with a call to
Nick Pigginb0018362010-05-26 01:51:19 +1000709 * either bd_finish_claiming() or bd_abort_claiming() (which do not
710 * fail).
711 *
712 * This function is used to gain exclusive access to the block device
713 * without actually causing other exclusive open attempts to fail. It
714 * should be used when the open sequence itself requires exclusive
715 * access but may subsequently fail.
Tejun Heo6b4517a2010-04-07 18:53:59 +0900716 *
717 * CONTEXT:
718 * Might sleep.
719 *
720 * RETURNS:
721 * Pointer to the block device containing @bdev on success, ERR_PTR()
722 * value on failure.
723 */
724static struct block_device *bd_start_claiming(struct block_device *bdev,
725 void *holder)
726{
727 struct gendisk *disk;
728 struct block_device *whole;
729 int partno, err;
730
731 might_sleep();
732
733 /*
734 * @bdev might not have been initialized properly yet, look up
735 * and grab the outer block device the hard way.
736 */
737 disk = get_gendisk(bdev->bd_dev, &partno);
738 if (!disk)
739 return ERR_PTR(-ENXIO);
740
741 whole = bdget_disk(disk, 0);
Nick Piggincf342572010-05-26 01:50:21 +1000742 module_put(disk->fops->owner);
Tejun Heo6b4517a2010-04-07 18:53:59 +0900743 put_disk(disk);
744 if (!whole)
745 return ERR_PTR(-ENOMEM);
746
747 /* prepare to claim, if successful, mark claiming in progress */
748 spin_lock(&bdev_lock);
749
750 err = bd_prepare_to_claim(bdev, whole, holder);
751 if (err == 0) {
752 whole->bd_claiming = holder;
753 spin_unlock(&bdev_lock);
754 return whole;
755 } else {
756 spin_unlock(&bdev_lock);
757 bdput(whole);
758 return ERR_PTR(err);
759 }
760}
761
762/* releases bdev_lock */
763static void __bd_abort_claiming(struct block_device *whole, void *holder)
764{
765 BUG_ON(whole->bd_claiming != holder);
766 whole->bd_claiming = NULL;
767 wake_up_bit(&whole->bd_claiming, 0);
768
769 spin_unlock(&bdev_lock);
770 bdput(whole);
771}
772
773/**
774 * bd_abort_claiming - abort claiming a block device
775 * @whole: whole block device returned by bd_start_claiming()
776 * @holder: holder trying to claim @bdev
777 *
778 * Abort a claiming block started by bd_start_claiming(). Note that
779 * @whole is not the block device to be claimed but the whole device
780 * returned by bd_start_claiming().
781 *
782 * CONTEXT:
783 * Grabs and releases bdev_lock.
784 */
785static void bd_abort_claiming(struct block_device *whole, void *holder)
786{
787 spin_lock(&bdev_lock);
788 __bd_abort_claiming(whole, holder); /* releases bdev_lock */
789}
790
Nick Pigginb0018362010-05-26 01:51:19 +1000791/* increment holders when we have a legitimate claim. requires bdev_lock */
792static void __bd_claim(struct block_device *bdev, struct block_device *whole,
793 void *holder)
794{
795 /* note that for a whole device bd_holders
796 * will be incremented twice, and bd_holder will
797 * be set to bd_claim before being set to holder
798 */
799 whole->bd_holders++;
800 whole->bd_holder = bd_claim;
801 bdev->bd_holders++;
802 bdev->bd_holder = holder;
803}
804
805/**
806 * bd_finish_claiming - finish claiming a block device
807 * @bdev: block device of interest (passed to bd_start_claiming())
808 * @whole: whole block device returned by bd_start_claiming()
809 * @holder: holder trying to claim @bdev
810 *
811 * Finish a claiming block started by bd_start_claiming().
812 *
813 * CONTEXT:
814 * Grabs and releases bdev_lock.
815 */
816static void bd_finish_claiming(struct block_device *bdev,
817 struct block_device *whole, void *holder)
818{
819 spin_lock(&bdev_lock);
Nick Pigginb0018362010-05-26 01:51:19 +1000820 BUG_ON(!bd_may_claim(bdev, whole, holder));
821 __bd_claim(bdev, whole, holder);
822 __bd_abort_claiming(whole, holder); /* not actually an abort */
823}
824
Tejun Heo6b4517a2010-04-07 18:53:59 +0900825/**
Tejun Heo1a3cbbc2010-04-07 18:52:29 +0900826 * bd_claim - claim a block device
827 * @bdev: block device to claim
828 * @holder: holder trying to claim @bdev
829 *
Nick Pigginb0018362010-05-26 01:51:19 +1000830 * Try to claim @bdev which must have been opened successfully.
Tejun Heo6b4517a2010-04-07 18:53:59 +0900831 *
832 * CONTEXT:
833 * Might sleep.
Tejun Heo1a3cbbc2010-04-07 18:52:29 +0900834 *
835 * RETURNS:
836 * 0 if successful, -EBUSY if @bdev is already claimed.
837 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838int bd_claim(struct block_device *bdev, void *holder)
839{
Tejun Heo1a3cbbc2010-04-07 18:52:29 +0900840 struct block_device *whole = bdev->bd_contains;
Tejun Heo6b4517a2010-04-07 18:53:59 +0900841 int res;
842
843 might_sleep();
Tejun Heo1a3cbbc2010-04-07 18:52:29 +0900844
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 spin_lock(&bdev_lock);
Tejun Heo6b4517a2010-04-07 18:53:59 +0900846 res = bd_prepare_to_claim(bdev, whole, holder);
Nick Pigginb0018362010-05-26 01:51:19 +1000847 if (res == 0)
848 __bd_claim(bdev, whole, holder);
849 spin_unlock(&bdev_lock);
Tejun Heo6b4517a2010-04-07 18:53:59 +0900850
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 return res;
852}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853EXPORT_SYMBOL(bd_claim);
854
855void bd_release(struct block_device *bdev)
856{
857 spin_lock(&bdev_lock);
858 if (!--bdev->bd_contains->bd_holders)
859 bdev->bd_contains->bd_holder = NULL;
860 if (!--bdev->bd_holders)
861 bdev->bd_holder = NULL;
862 spin_unlock(&bdev_lock);
863}
864
865EXPORT_SYMBOL(bd_release);
866
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800867#ifdef CONFIG_SYSFS
868/*
869 * Functions for bd_claim_by_kobject / bd_release_from_kobject
870 *
871 * If a kobject is passed to bd_claim_by_kobject()
872 * and the kobject has a parent directory,
873 * following symlinks are created:
874 * o from the kobject to the claimed bdev
875 * o from "holders" directory of the bdev to the parent of the kobject
876 * bd_release_from_kobject() removes these symlinks.
877 *
878 * Example:
879 * If /dev/dm-0 maps to /dev/sda, kobject corresponding to
880 * /sys/block/dm-0/slaves is passed to bd_claim_by_kobject(), then:
881 * /sys/block/dm-0/slaves/sda --> /sys/block/sda
882 * /sys/block/sda/holders/dm-0 --> /sys/block/dm-0
883 */
884
Andrew Morton4d7dd8f2006-09-29 01:58:56 -0700885static int add_symlink(struct kobject *from, struct kobject *to)
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800886{
887 if (!from || !to)
Andrew Morton4d7dd8f2006-09-29 01:58:56 -0700888 return 0;
889 return sysfs_create_link(from, to, kobject_name(to));
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800890}
891
892static void del_symlink(struct kobject *from, struct kobject *to)
893{
894 if (!from || !to)
895 return;
896 sysfs_remove_link(from, kobject_name(to));
897}
898
899/*
900 * 'struct bd_holder' contains pointers to kobjects symlinked by
901 * bd_claim_by_kobject.
902 * It's connected to bd_holder_list which is protected by bdev->bd_sem.
903 */
904struct bd_holder {
905 struct list_head list; /* chain of holders of the bdev */
906 int count; /* references from the holder */
907 struct kobject *sdir; /* holder object, e.g. "/block/dm-0/slaves" */
908 struct kobject *hdev; /* e.g. "/block/dm-0" */
909 struct kobject *hdir; /* e.g. "/block/sda/holders" */
910 struct kobject *sdev; /* e.g. "/block/sda" */
911};
912
913/*
914 * Get references of related kobjects at once.
915 * Returns 1 on success. 0 on failure.
916 *
917 * Should call bd_holder_release_dirs() after successful use.
918 */
919static int bd_holder_grab_dirs(struct block_device *bdev,
920 struct bd_holder *bo)
921{
922 if (!bdev || !bo)
923 return 0;
924
925 bo->sdir = kobject_get(bo->sdir);
926 if (!bo->sdir)
927 return 0;
928
929 bo->hdev = kobject_get(bo->sdir->parent);
930 if (!bo->hdev)
931 goto fail_put_sdir;
932
Tejun Heo0762b8b2008-08-25 19:56:12 +0900933 bo->sdev = kobject_get(&part_to_dev(bdev->bd_part)->kobj);
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800934 if (!bo->sdev)
935 goto fail_put_hdev;
936
Tejun Heo4c465012008-08-25 19:56:11 +0900937 bo->hdir = kobject_get(bdev->bd_part->holder_dir);
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800938 if (!bo->hdir)
939 goto fail_put_sdev;
940
941 return 1;
942
943fail_put_sdev:
944 kobject_put(bo->sdev);
945fail_put_hdev:
946 kobject_put(bo->hdev);
947fail_put_sdir:
948 kobject_put(bo->sdir);
949
950 return 0;
951}
952
953/* Put references of related kobjects at once. */
954static void bd_holder_release_dirs(struct bd_holder *bo)
955{
956 kobject_put(bo->hdir);
957 kobject_put(bo->sdev);
958 kobject_put(bo->hdev);
959 kobject_put(bo->sdir);
960}
961
962static struct bd_holder *alloc_bd_holder(struct kobject *kobj)
963{
964 struct bd_holder *bo;
965
966 bo = kzalloc(sizeof(*bo), GFP_KERNEL);
967 if (!bo)
968 return NULL;
969
970 bo->count = 1;
971 bo->sdir = kobj;
972
973 return bo;
974}
975
976static void free_bd_holder(struct bd_holder *bo)
977{
978 kfree(bo);
979}
980
981/**
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -0500982 * find_bd_holder - find matching struct bd_holder from the block device
983 *
984 * @bdev: struct block device to be searched
985 * @bo: target struct bd_holder
986 *
987 * Returns matching entry with @bo in @bdev->bd_holder_list.
988 * If found, increment the reference count and return the pointer.
989 * If not found, returns NULL.
990 */
Andrew Morton36a561d2006-10-30 22:07:03 -0800991static struct bd_holder *find_bd_holder(struct block_device *bdev,
992 struct bd_holder *bo)
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -0500993{
994 struct bd_holder *tmp;
995
996 list_for_each_entry(tmp, &bdev->bd_holder_list, list)
997 if (tmp->sdir == bo->sdir) {
998 tmp->count++;
999 return tmp;
1000 }
1001
1002 return NULL;
1003}
1004
1005/**
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001006 * add_bd_holder - create sysfs symlinks for bd_claim() relationship
1007 *
1008 * @bdev: block device to be bd_claimed
1009 * @bo: preallocated and initialized by alloc_bd_holder()
1010 *
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -05001011 * Add @bo to @bdev->bd_holder_list, create symlinks.
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001012 *
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -05001013 * Returns 0 if symlinks are created.
1014 * Returns -ve if something fails.
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001015 */
1016static int add_bd_holder(struct block_device *bdev, struct bd_holder *bo)
1017{
Johannes Weiner4e916722007-07-15 23:41:25 -07001018 int err;
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001019
1020 if (!bo)
Andrew Morton4d7dd8f2006-09-29 01:58:56 -07001021 return -EINVAL;
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001022
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001023 if (!bd_holder_grab_dirs(bdev, bo))
Andrew Morton4d7dd8f2006-09-29 01:58:56 -07001024 return -EBUSY;
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001025
Johannes Weiner4e916722007-07-15 23:41:25 -07001026 err = add_symlink(bo->sdir, bo->sdev);
1027 if (err)
1028 return err;
1029
1030 err = add_symlink(bo->hdir, bo->hdev);
1031 if (err) {
1032 del_symlink(bo->sdir, bo->sdev);
1033 return err;
Andrew Morton4d7dd8f2006-09-29 01:58:56 -07001034 }
Johannes Weiner4e916722007-07-15 23:41:25 -07001035
1036 list_add_tail(&bo->list, &bdev->bd_holder_list);
1037 return 0;
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001038}
1039
1040/**
1041 * del_bd_holder - delete sysfs symlinks for bd_claim() relationship
1042 *
1043 * @bdev: block device to be bd_claimed
1044 * @kobj: holder's kobject
1045 *
1046 * If there is matching entry with @kobj in @bdev->bd_holder_list
1047 * and no other bd_claim() from the same kobject,
1048 * remove the struct bd_holder from the list, delete symlinks for it.
1049 *
1050 * Returns a pointer to the struct bd_holder when it's removed from the list
1051 * and ready to be freed.
1052 * Returns NULL if matching claim isn't found or there is other bd_claim()
1053 * by the same kobject.
1054 */
1055static struct bd_holder *del_bd_holder(struct block_device *bdev,
1056 struct kobject *kobj)
1057{
1058 struct bd_holder *bo;
1059
1060 list_for_each_entry(bo, &bdev->bd_holder_list, list) {
1061 if (bo->sdir == kobj) {
1062 bo->count--;
1063 BUG_ON(bo->count < 0);
1064 if (!bo->count) {
1065 list_del(&bo->list);
1066 del_symlink(bo->sdir, bo->sdev);
1067 del_symlink(bo->hdir, bo->hdev);
1068 bd_holder_release_dirs(bo);
1069 return bo;
1070 }
1071 break;
1072 }
1073 }
1074
1075 return NULL;
1076}
1077
1078/**
1079 * bd_claim_by_kobject - bd_claim() with additional kobject signature
1080 *
1081 * @bdev: block device to be claimed
1082 * @holder: holder's signature
1083 * @kobj: holder's kobject
1084 *
1085 * Do bd_claim() and if it succeeds, create sysfs symlinks between
1086 * the bdev and the holder's kobject.
1087 * Use bd_release_from_kobject() when relesing the claimed bdev.
1088 *
1089 * Returns 0 on success. (same as bd_claim())
1090 * Returns errno on failure.
1091 */
1092static int bd_claim_by_kobject(struct block_device *bdev, void *holder,
1093 struct kobject *kobj)
1094{
Johannes Weiner4e916722007-07-15 23:41:25 -07001095 int err;
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -05001096 struct bd_holder *bo, *found;
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001097
1098 if (!kobj)
1099 return -EINVAL;
1100
1101 bo = alloc_bd_holder(kobj);
1102 if (!bo)
1103 return -ENOMEM;
1104
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001105 mutex_lock(&bdev->bd_mutex);
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -05001106
Johannes Weiner4e916722007-07-15 23:41:25 -07001107 err = bd_claim(bdev, holder);
1108 if (err)
Andrew Morton4210df22007-07-15 23:41:28 -07001109 goto fail;
Johannes Weiner4e916722007-07-15 23:41:25 -07001110
1111 found = find_bd_holder(bdev, bo);
1112 if (found)
Andrew Morton4210df22007-07-15 23:41:28 -07001113 goto fail;
Johannes Weiner4e916722007-07-15 23:41:25 -07001114
1115 err = add_bd_holder(bdev, bo);
1116 if (err)
1117 bd_release(bdev);
Andrew Morton4210df22007-07-15 23:41:28 -07001118 else
1119 bo = NULL;
1120fail:
Jun'ichi Nomurab4cf1b72006-03-27 01:18:00 -08001121 mutex_unlock(&bdev->bd_mutex);
Andrew Morton4210df22007-07-15 23:41:28 -07001122 free_bd_holder(bo);
Johannes Weiner4e916722007-07-15 23:41:25 -07001123 return err;
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001124}
1125
1126/**
1127 * bd_release_from_kobject - bd_release() with additional kobject signature
1128 *
1129 * @bdev: block device to be released
1130 * @kobj: holder's kobject
1131 *
1132 * Do bd_release() and remove sysfs symlinks created by bd_claim_by_kobject().
1133 */
1134static void bd_release_from_kobject(struct block_device *bdev,
1135 struct kobject *kobj)
1136{
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001137 if (!kobj)
1138 return;
1139
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001140 mutex_lock(&bdev->bd_mutex);
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001141 bd_release(bdev);
Andrew Morton4210df22007-07-15 23:41:28 -07001142 free_bd_holder(del_bd_holder(bdev, kobj));
Jun'ichi Nomurab4cf1b72006-03-27 01:18:00 -08001143 mutex_unlock(&bdev->bd_mutex);
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001144}
1145
1146/**
1147 * bd_claim_by_disk - wrapper function for bd_claim_by_kobject()
1148 *
1149 * @bdev: block device to be claimed
1150 * @holder: holder's signature
1151 * @disk: holder's gendisk
1152 *
1153 * Call bd_claim_by_kobject() with getting @disk->slave_dir.
1154 */
1155int bd_claim_by_disk(struct block_device *bdev, void *holder,
1156 struct gendisk *disk)
1157{
1158 return bd_claim_by_kobject(bdev, holder, kobject_get(disk->slave_dir));
1159}
1160EXPORT_SYMBOL_GPL(bd_claim_by_disk);
1161
1162/**
1163 * bd_release_from_disk - wrapper function for bd_release_from_kobject()
1164 *
1165 * @bdev: block device to be claimed
1166 * @disk: holder's gendisk
1167 *
1168 * Call bd_release_from_kobject() and put @disk->slave_dir.
1169 */
1170void bd_release_from_disk(struct block_device *bdev, struct gendisk *disk)
1171{
1172 bd_release_from_kobject(bdev, disk->slave_dir);
1173 kobject_put(disk->slave_dir);
1174}
1175EXPORT_SYMBOL_GPL(bd_release_from_disk);
1176#endif
1177
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178/*
1179 * Tries to open block device by device number. Use it ONLY if you
1180 * really do not have anything better - i.e. when you are behind a
1181 * truly sucky interface and all you are given is a device number. _Never_
1182 * to be used for internal purposes. If you ever need it - reconsider
1183 * your API.
1184 */
Al Viroaeb5d722008-09-02 15:28:45 -04001185struct block_device *open_by_devnum(dev_t dev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186{
1187 struct block_device *bdev = bdget(dev);
1188 int err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 if (bdev)
Al Viro572c4892007-10-08 13:24:05 -04001190 err = blkdev_get(bdev, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 return err ? ERR_PTR(err) : bdev;
1192}
1193
1194EXPORT_SYMBOL(open_by_devnum);
1195
Andrew Patterson0c002c22008-09-04 14:27:20 -06001196/**
Andrew Patterson56ade442008-09-04 14:27:40 -06001197 * flush_disk - invalidates all buffer-cache entries on a disk
1198 *
1199 * @bdev: struct block device to be flushed
1200 *
1201 * Invalidates all buffer-cache entries on a disk. It should be called
1202 * when a disk has been changed -- either by a media change or online
1203 * resize.
1204 */
1205static void flush_disk(struct block_device *bdev)
1206{
1207 if (__invalidate_device(bdev)) {
1208 char name[BDEVNAME_SIZE] = "";
1209
1210 if (bdev->bd_disk)
1211 disk_name(bdev->bd_disk, 0, name);
1212 printk(KERN_WARNING "VFS: busy inodes on changed media or "
1213 "resized disk %s\n", name);
1214 }
1215
1216 if (!bdev->bd_disk)
1217 return;
1218 if (disk_partitionable(bdev->bd_disk))
1219 bdev->bd_invalidated = 1;
1220}
1221
1222/**
Randy Dunlap57d1b532008-10-09 10:42:38 +02001223 * check_disk_size_change - checks for disk size change and adjusts bdev size.
Andrew Pattersonc3279d12008-09-04 14:27:25 -06001224 * @disk: struct gendisk to check
1225 * @bdev: struct bdev to adjust.
1226 *
1227 * This routine checks to see if the bdev size does not match the disk size
1228 * and adjusts it if it differs.
1229 */
1230void check_disk_size_change(struct gendisk *disk, struct block_device *bdev)
1231{
1232 loff_t disk_size, bdev_size;
1233
1234 disk_size = (loff_t)get_capacity(disk) << 9;
1235 bdev_size = i_size_read(bdev->bd_inode);
1236 if (disk_size != bdev_size) {
1237 char name[BDEVNAME_SIZE];
1238
1239 disk_name(disk, 0, name);
1240 printk(KERN_INFO
1241 "%s: detected capacity change from %lld to %lld\n",
1242 name, bdev_size, disk_size);
1243 i_size_write(bdev->bd_inode, disk_size);
Andrew Patterson608aeef2008-09-04 14:27:45 -06001244 flush_disk(bdev);
Andrew Pattersonc3279d12008-09-04 14:27:25 -06001245 }
1246}
1247EXPORT_SYMBOL(check_disk_size_change);
1248
1249/**
Randy Dunlap57d1b532008-10-09 10:42:38 +02001250 * revalidate_disk - wrapper for lower-level driver's revalidate_disk call-back
Andrew Patterson0c002c22008-09-04 14:27:20 -06001251 * @disk: struct gendisk to be revalidated
1252 *
1253 * This routine is a wrapper for lower-level driver's revalidate_disk
1254 * call-backs. It is used to do common pre and post operations needed
1255 * for all revalidate_disk operations.
1256 */
1257int revalidate_disk(struct gendisk *disk)
1258{
Andrew Pattersonc3279d12008-09-04 14:27:25 -06001259 struct block_device *bdev;
Andrew Patterson0c002c22008-09-04 14:27:20 -06001260 int ret = 0;
1261
1262 if (disk->fops->revalidate_disk)
1263 ret = disk->fops->revalidate_disk(disk);
1264
Andrew Pattersonc3279d12008-09-04 14:27:25 -06001265 bdev = bdget_disk(disk, 0);
1266 if (!bdev)
1267 return ret;
1268
1269 mutex_lock(&bdev->bd_mutex);
1270 check_disk_size_change(disk, bdev);
1271 mutex_unlock(&bdev->bd_mutex);
1272 bdput(bdev);
Andrew Patterson0c002c22008-09-04 14:27:20 -06001273 return ret;
1274}
1275EXPORT_SYMBOL(revalidate_disk);
1276
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277/*
1278 * This routine checks whether a removable media has been changed,
1279 * and invalidates all buffer-cache-entries in that case. This
1280 * is a relatively slow routine, so we have to try to minimize using
1281 * it. Thus it is called only upon a 'mount' or 'open'. This
1282 * is the best way of combining speed and utility, I think.
1283 * People changing diskettes in the middle of an operation deserve
1284 * to lose :-)
1285 */
1286int check_disk_change(struct block_device *bdev)
1287{
1288 struct gendisk *disk = bdev->bd_disk;
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -07001289 const struct block_device_operations *bdops = disk->fops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290
1291 if (!bdops->media_changed)
1292 return 0;
1293 if (!bdops->media_changed(bdev->bd_disk))
1294 return 0;
1295
Andrew Patterson56ade442008-09-04 14:27:40 -06001296 flush_disk(bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 if (bdops->revalidate_disk)
1298 bdops->revalidate_disk(bdev->bd_disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 return 1;
1300}
1301
1302EXPORT_SYMBOL(check_disk_change);
1303
1304void bd_set_size(struct block_device *bdev, loff_t size)
1305{
Martin K. Petersene1defc42009-05-22 17:17:49 -04001306 unsigned bsize = bdev_logical_block_size(bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307
1308 bdev->bd_inode->i_size = size;
1309 while (bsize < PAGE_CACHE_SIZE) {
1310 if (size & bsize)
1311 break;
1312 bsize <<= 1;
1313 }
1314 bdev->bd_block_size = bsize;
1315 bdev->bd_inode->i_blkbits = blksize_bits(bsize);
1316}
1317EXPORT_SYMBOL(bd_set_size);
1318
Al Viro9a1c3542008-02-22 20:40:24 -05001319static int __blkdev_put(struct block_device *bdev, fmode_t mode, int for_part);
NeilBrown37be4122006-12-08 02:36:16 -08001320
Peter Zijlstra6d740cd2007-02-20 13:58:18 -08001321/*
1322 * bd_mutex locking:
1323 *
1324 * mutex_lock(part->bd_mutex)
1325 * mutex_lock_nested(whole->bd_mutex, 1)
1326 */
1327
Al Viro572c4892007-10-08 13:24:05 -04001328static int __blkdev_get(struct block_device *bdev, fmode_t mode, int for_part)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 struct gendisk *disk;
Pavel Emelyanov7db9cfd2008-06-05 22:46:27 -07001331 int ret;
Tejun Heocf771cb2008-09-03 09:01:09 +02001332 int partno;
Al Virofe6e9c12008-06-23 08:30:55 -04001333 int perm = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334
Al Viro572c4892007-10-08 13:24:05 -04001335 if (mode & FMODE_READ)
Al Virofe6e9c12008-06-23 08:30:55 -04001336 perm |= MAY_READ;
Al Viro572c4892007-10-08 13:24:05 -04001337 if (mode & FMODE_WRITE)
Al Virofe6e9c12008-06-23 08:30:55 -04001338 perm |= MAY_WRITE;
1339 /*
1340 * hooks: /n/, see "layering violations".
1341 */
1342 ret = devcgroup_inode_permission(bdev->bd_inode, perm);
Al Viro82666022008-08-01 05:32:04 -04001343 if (ret != 0) {
1344 bdput(bdev);
Pavel Emelyanov7db9cfd2008-06-05 22:46:27 -07001345 return ret;
Al Viro82666022008-08-01 05:32:04 -04001346 }
Pavel Emelyanov7db9cfd2008-06-05 22:46:27 -07001347
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 lock_kernel();
NeilBrownd3374822009-01-09 08:31:10 +11001349 restart:
Tejun Heo0762b8b2008-08-25 19:56:12 +09001350
Tejun Heo89f97492008-11-05 10:21:06 +01001351 ret = -ENXIO;
Tejun Heocf771cb2008-09-03 09:01:09 +02001352 disk = get_gendisk(bdev->bd_dev, &partno);
Tejun Heo0762b8b2008-08-25 19:56:12 +09001353 if (!disk)
1354 goto out_unlock_kernel;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355
NeilBrown6796bf52006-12-08 02:36:16 -08001356 mutex_lock_nested(&bdev->bd_mutex, for_part);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 if (!bdev->bd_openers) {
1358 bdev->bd_disk = disk;
1359 bdev->bd_contains = bdev;
Tejun Heocf771cb2008-09-03 09:01:09 +02001360 if (!partno) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 struct backing_dev_info *bdi;
Tejun Heo89f97492008-11-05 10:21:06 +01001362
1363 ret = -ENXIO;
1364 bdev->bd_part = disk_get_part(disk, partno);
1365 if (!bdev->bd_part)
1366 goto out_clear;
1367
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 if (disk->fops->open) {
Al Viro572c4892007-10-08 13:24:05 -04001369 ret = disk->fops->open(bdev, mode);
NeilBrownd3374822009-01-09 08:31:10 +11001370 if (ret == -ERESTARTSYS) {
1371 /* Lost a race with 'disk' being
1372 * deleted, try again.
1373 * See md.c
1374 */
1375 disk_put_part(bdev->bd_part);
1376 bdev->bd_part = NULL;
1377 module_put(disk->fops->owner);
1378 put_disk(disk);
1379 bdev->bd_disk = NULL;
1380 mutex_unlock(&bdev->bd_mutex);
1381 goto restart;
1382 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 if (ret)
Tejun Heo0762b8b2008-08-25 19:56:12 +09001384 goto out_clear;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 }
1386 if (!bdev->bd_openers) {
1387 bd_set_size(bdev,(loff_t)get_capacity(disk)<<9);
1388 bdi = blk_get_backing_dev_info(bdev);
1389 if (bdi == NULL)
1390 bdi = &default_backing_dev_info;
1391 bdev->bd_inode->i_data.backing_dev_info = bdi;
1392 }
1393 if (bdev->bd_invalidated)
1394 rescan_partitions(disk, bdev);
1395 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 struct block_device *whole;
1397 whole = bdget_disk(disk, 0);
1398 ret = -ENOMEM;
1399 if (!whole)
Tejun Heo0762b8b2008-08-25 19:56:12 +09001400 goto out_clear;
NeilBrown37be4122006-12-08 02:36:16 -08001401 BUG_ON(for_part);
Al Viro572c4892007-10-08 13:24:05 -04001402 ret = __blkdev_get(whole, mode, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 if (ret)
Tejun Heo0762b8b2008-08-25 19:56:12 +09001404 goto out_clear;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 bdev->bd_contains = whole;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 bdev->bd_inode->i_data.backing_dev_info =
1407 whole->bd_inode->i_data.backing_dev_info;
Tejun Heo89f97492008-11-05 10:21:06 +01001408 bdev->bd_part = disk_get_part(disk, partno);
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001409 if (!(disk->flags & GENHD_FL_UP) ||
Tejun Heo89f97492008-11-05 10:21:06 +01001410 !bdev->bd_part || !bdev->bd_part->nr_sects) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 ret = -ENXIO;
Tejun Heo0762b8b2008-08-25 19:56:12 +09001412 goto out_clear;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 }
Tejun Heo89f97492008-11-05 10:21:06 +01001414 bd_set_size(bdev, (loff_t)bdev->bd_part->nr_sects << 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 }
1416 } else {
Tejun Heo0762b8b2008-08-25 19:56:12 +09001417 module_put(disk->fops->owner);
Neil Brown960cc0f2009-10-26 08:59:17 +01001418 put_disk(disk);
Tejun Heo0762b8b2008-08-25 19:56:12 +09001419 disk = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 if (bdev->bd_contains == bdev) {
1421 if (bdev->bd_disk->fops->open) {
Al Viro572c4892007-10-08 13:24:05 -04001422 ret = bdev->bd_disk->fops->open(bdev, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 if (ret)
Tejun Heo0762b8b2008-08-25 19:56:12 +09001424 goto out_unlock_bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 }
1426 if (bdev->bd_invalidated)
1427 rescan_partitions(bdev->bd_disk, bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 }
1429 }
1430 bdev->bd_openers++;
NeilBrown37be4122006-12-08 02:36:16 -08001431 if (for_part)
1432 bdev->bd_part_count++;
Arjan van de Venc039e312006-03-23 03:00:28 -08001433 mutex_unlock(&bdev->bd_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 unlock_kernel();
1435 return 0;
1436
Tejun Heo0762b8b2008-08-25 19:56:12 +09001437 out_clear:
Tejun Heo89f97492008-11-05 10:21:06 +01001438 disk_put_part(bdev->bd_part);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 bdev->bd_disk = NULL;
Tejun Heo0762b8b2008-08-25 19:56:12 +09001440 bdev->bd_part = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 bdev->bd_inode->i_data.backing_dev_info = &default_backing_dev_info;
1442 if (bdev != bdev->bd_contains)
Al Viro572c4892007-10-08 13:24:05 -04001443 __blkdev_put(bdev->bd_contains, mode, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 bdev->bd_contains = NULL;
Tejun Heo0762b8b2008-08-25 19:56:12 +09001445 out_unlock_bdev:
Arjan van de Venc039e312006-03-23 03:00:28 -08001446 mutex_unlock(&bdev->bd_mutex);
Tejun Heo0762b8b2008-08-25 19:56:12 +09001447 out_unlock_kernel:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 unlock_kernel();
Tejun Heo0762b8b2008-08-25 19:56:12 +09001449
Tejun Heo0762b8b2008-08-25 19:56:12 +09001450 if (disk)
1451 module_put(disk->fops->owner);
1452 put_disk(disk);
1453 bdput(bdev);
1454
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 return ret;
1456}
1457
Al Viro572c4892007-10-08 13:24:05 -04001458int blkdev_get(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459{
Al Viro572c4892007-10-08 13:24:05 -04001460 return __blkdev_get(bdev, mode, 0);
NeilBrown37be4122006-12-08 02:36:16 -08001461}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462EXPORT_SYMBOL(blkdev_get);
1463
1464static int blkdev_open(struct inode * inode, struct file * filp)
1465{
Tejun Heo6b4517a2010-04-07 18:53:59 +09001466 struct block_device *whole = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 struct block_device *bdev;
1468 int res;
1469
1470 /*
1471 * Preserve backwards compatibility and allow large file access
1472 * even if userspace doesn't ask for it explicitly. Some mkfs
1473 * binary needs it. We might want to drop this workaround
1474 * during an unstable branch.
1475 */
1476 filp->f_flags |= O_LARGEFILE;
1477
Al Viro572c4892007-10-08 13:24:05 -04001478 if (filp->f_flags & O_NDELAY)
1479 filp->f_mode |= FMODE_NDELAY;
1480 if (filp->f_flags & O_EXCL)
1481 filp->f_mode |= FMODE_EXCL;
1482 if ((filp->f_flags & O_ACCMODE) == 3)
1483 filp->f_mode |= FMODE_WRITE_IOCTL;
1484
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 bdev = bd_acquire(inode);
Pavel Emelianov6a2aae02006-10-28 10:38:33 -07001486 if (bdev == NULL)
1487 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488
Tejun Heo6b4517a2010-04-07 18:53:59 +09001489 if (filp->f_mode & FMODE_EXCL) {
1490 whole = bd_start_claiming(bdev, filp);
1491 if (IS_ERR(whole)) {
1492 bdput(bdev);
1493 return PTR_ERR(whole);
1494 }
1495 }
1496
Al Viro572c4892007-10-08 13:24:05 -04001497 filp->f_mapping = bdev->bd_inode->i_mapping;
1498
1499 res = blkdev_get(bdev, filp->f_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500
Tejun Heo6b4517a2010-04-07 18:53:59 +09001501 if (whole) {
1502 if (res == 0)
Nick Pigginb0018362010-05-26 01:51:19 +10001503 bd_finish_claiming(bdev, whole, filp);
Tejun Heo6b4517a2010-04-07 18:53:59 +09001504 else
1505 bd_abort_claiming(whole, filp);
Christoph Hellwigebbefc02008-11-05 14:54:41 +01001506 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 return res;
1509}
1510
Al Viro9a1c3542008-02-22 20:40:24 -05001511static int __blkdev_put(struct block_device *bdev, fmode_t mode, int for_part)
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001512{
1513 int ret = 0;
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001514 struct gendisk *disk = bdev->bd_disk;
NeilBrown37be4122006-12-08 02:36:16 -08001515 struct block_device *victim = NULL;
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001516
NeilBrown6796bf52006-12-08 02:36:16 -08001517 mutex_lock_nested(&bdev->bd_mutex, for_part);
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001518 lock_kernel();
NeilBrown37be4122006-12-08 02:36:16 -08001519 if (for_part)
1520 bdev->bd_part_count--;
1521
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001522 if (!--bdev->bd_openers) {
1523 sync_blockdev(bdev);
1524 kill_bdev(bdev);
1525 }
1526 if (bdev->bd_contains == bdev) {
1527 if (disk->fops->release)
Al Viro9a1c3542008-02-22 20:40:24 -05001528 ret = disk->fops->release(disk, mode);
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001529 }
1530 if (!bdev->bd_openers) {
1531 struct module *owner = disk->fops->owner;
1532
1533 put_disk(disk);
1534 module_put(owner);
Tejun Heo0762b8b2008-08-25 19:56:12 +09001535 disk_put_part(bdev->bd_part);
1536 bdev->bd_part = NULL;
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001537 bdev->bd_disk = NULL;
1538 bdev->bd_inode->i_data.backing_dev_info = &default_backing_dev_info;
NeilBrown37be4122006-12-08 02:36:16 -08001539 if (bdev != bdev->bd_contains)
1540 victim = bdev->bd_contains;
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001541 bdev->bd_contains = NULL;
1542 }
1543 unlock_kernel();
1544 mutex_unlock(&bdev->bd_mutex);
1545 bdput(bdev);
NeilBrown37be4122006-12-08 02:36:16 -08001546 if (victim)
Al Viro9a1c3542008-02-22 20:40:24 -05001547 __blkdev_put(victim, mode, 1);
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001548 return ret;
1549}
1550
Al Viro9a1c3542008-02-22 20:40:24 -05001551int blkdev_put(struct block_device *bdev, fmode_t mode)
NeilBrown37be4122006-12-08 02:36:16 -08001552{
Al Viro9a1c3542008-02-22 20:40:24 -05001553 return __blkdev_put(bdev, mode, 0);
NeilBrown37be4122006-12-08 02:36:16 -08001554}
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001555EXPORT_SYMBOL(blkdev_put);
1556
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557static int blkdev_close(struct inode * inode, struct file * filp)
1558{
1559 struct block_device *bdev = I_BDEV(filp->f_mapping->host);
1560 if (bdev->bd_holder == filp)
1561 bd_release(bdev);
Al Viro9a1c3542008-02-22 20:40:24 -05001562 return blkdev_put(bdev, filp->f_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563}
1564
Arnd Bergmannbb93e3a2005-06-23 00:10:15 -07001565static long block_ioctl(struct file *file, unsigned cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566{
Al Viro56b26ad2008-09-19 03:17:36 -04001567 struct block_device *bdev = I_BDEV(file->f_mapping->host);
1568 fmode_t mode = file->f_mode;
Christoph Hellwigfd4ce1a2008-11-05 14:58:42 +01001569
1570 /*
1571 * O_NDELAY can be altered using fcntl(.., F_SETFL, ..), so we have
1572 * to updated it before every ioctl.
1573 */
Al Viro56b26ad2008-09-19 03:17:36 -04001574 if (file->f_flags & O_NDELAY)
Christoph Hellwigfd4ce1a2008-11-05 14:58:42 +01001575 mode |= FMODE_NDELAY;
1576 else
1577 mode &= ~FMODE_NDELAY;
1578
Al Viro56b26ad2008-09-19 03:17:36 -04001579 return blkdev_ioctl(bdev, mode, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580}
1581
Theodore Ts'o87d8fe12009-01-03 09:47:09 -05001582/*
Christoph Hellwigeef99382009-08-20 17:43:41 +02001583 * Write data to the block device. Only intended for the block device itself
1584 * and the raw driver which basically is a fake block device.
1585 *
1586 * Does not take i_mutex for the write and thus is not for general purpose
1587 * use.
1588 */
1589ssize_t blkdev_aio_write(struct kiocb *iocb, const struct iovec *iov,
1590 unsigned long nr_segs, loff_t pos)
1591{
1592 struct file *file = iocb->ki_filp;
1593 ssize_t ret;
1594
1595 BUG_ON(iocb->ki_pos != pos);
1596
1597 ret = __generic_file_aio_write(iocb, iov, nr_segs, &iocb->ki_pos);
1598 if (ret > 0 || ret == -EIOCBQUEUED) {
1599 ssize_t err;
1600
1601 err = generic_write_sync(file, pos, ret);
1602 if (err < 0 && ret > 0)
1603 ret = err;
1604 }
1605 return ret;
1606}
1607EXPORT_SYMBOL_GPL(blkdev_aio_write);
1608
1609/*
Theodore Ts'o87d8fe12009-01-03 09:47:09 -05001610 * Try to release a page associated with block device when the system
1611 * is under memory pressure.
1612 */
1613static int blkdev_releasepage(struct page *page, gfp_t wait)
1614{
1615 struct super_block *super = BDEV_I(page->mapping->host)->bdev.bd_super;
1616
1617 if (super && super->s_op->bdev_try_to_free_page)
1618 return super->s_op->bdev_try_to_free_page(super, page, wait);
1619
1620 return try_to_free_buffers(page);
1621}
1622
Adrian Bunk4c54ac62008-02-18 13:48:31 +01001623static const struct address_space_operations def_blk_aops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 .readpage = blkdev_readpage,
1625 .writepage = blkdev_writepage,
1626 .sync_page = block_sync_page,
Nick Piggin6272b5a2007-10-16 01:25:04 -07001627 .write_begin = blkdev_write_begin,
1628 .write_end = blkdev_write_end,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 .writepages = generic_writepages,
Theodore Ts'o87d8fe12009-01-03 09:47:09 -05001630 .releasepage = blkdev_releasepage,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 .direct_IO = blkdev_direct_IO,
1632};
1633
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08001634const struct file_operations def_blk_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 .open = blkdev_open,
1636 .release = blkdev_close,
1637 .llseek = block_llseek,
Badari Pulavarty543ade12006-09-30 23:28:48 -07001638 .read = do_sync_read,
1639 .write = do_sync_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 .aio_read = generic_file_aio_read,
Christoph Hellwigeef99382009-08-20 17:43:41 +02001641 .aio_write = blkdev_aio_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 .mmap = generic_file_mmap,
Andrew Mortonb1dd3b22010-04-06 14:35:00 -07001643 .fsync = blkdev_fsync,
Arnd Bergmannbb93e3a2005-06-23 00:10:15 -07001644 .unlocked_ioctl = block_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645#ifdef CONFIG_COMPAT
1646 .compat_ioctl = compat_blkdev_ioctl,
1647#endif
Jens Axboe7f9c51f2006-05-01 19:59:32 +02001648 .splice_read = generic_file_splice_read,
1649 .splice_write = generic_file_splice_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650};
1651
1652int ioctl_by_bdev(struct block_device *bdev, unsigned cmd, unsigned long arg)
1653{
1654 int res;
1655 mm_segment_t old_fs = get_fs();
1656 set_fs(KERNEL_DS);
Al Viro56b26ad2008-09-19 03:17:36 -04001657 res = blkdev_ioctl(bdev, 0, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 set_fs(old_fs);
1659 return res;
1660}
1661
1662EXPORT_SYMBOL(ioctl_by_bdev);
1663
1664/**
1665 * lookup_bdev - lookup a struct block_device by name
Randy Dunlap94e29592009-01-06 14:41:15 -08001666 * @pathname: special file representing the block device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 *
Randy Dunlap57d1b532008-10-09 10:42:38 +02001668 * Get a reference to the blockdevice at @pathname in the current
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 * namespace if possible and return it. Return ERR_PTR(error)
1670 * otherwise.
1671 */
Al Viro421748e2008-08-02 01:04:36 -04001672struct block_device *lookup_bdev(const char *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673{
1674 struct block_device *bdev;
1675 struct inode *inode;
Al Viro421748e2008-08-02 01:04:36 -04001676 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 int error;
1678
Al Viro421748e2008-08-02 01:04:36 -04001679 if (!pathname || !*pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 return ERR_PTR(-EINVAL);
1681
Al Viro421748e2008-08-02 01:04:36 -04001682 error = kern_path(pathname, LOOKUP_FOLLOW, &path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 if (error)
1684 return ERR_PTR(error);
1685
Al Viro421748e2008-08-02 01:04:36 -04001686 inode = path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 error = -ENOTBLK;
1688 if (!S_ISBLK(inode->i_mode))
1689 goto fail;
1690 error = -EACCES;
Al Viro421748e2008-08-02 01:04:36 -04001691 if (path.mnt->mnt_flags & MNT_NODEV)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 goto fail;
1693 error = -ENOMEM;
1694 bdev = bd_acquire(inode);
1695 if (!bdev)
1696 goto fail;
1697out:
Al Viro421748e2008-08-02 01:04:36 -04001698 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 return bdev;
1700fail:
1701 bdev = ERR_PTR(error);
1702 goto out;
1703}
Al Virod5686b42008-08-01 05:00:11 -04001704EXPORT_SYMBOL(lookup_bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705
1706/**
Al Viro30c40d22008-02-22 19:50:45 -05001707 * open_bdev_exclusive - open a block device by name and set it up for use
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 *
1709 * @path: special file representing the block device
Al Viro30c40d22008-02-22 19:50:45 -05001710 * @mode: FMODE_... combination to pass be used
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 * @holder: owner for exclusion
1712 *
1713 * Open the blockdevice described by the special file at @path, claim it
1714 * for the @holder.
1715 */
Al Viro30c40d22008-02-22 19:50:45 -05001716struct block_device *open_bdev_exclusive(const char *path, fmode_t mode, void *holder)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717{
Tejun Heo6b4517a2010-04-07 18:53:59 +09001718 struct block_device *bdev, *whole;
1719 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720
1721 bdev = lookup_bdev(path);
1722 if (IS_ERR(bdev))
1723 return bdev;
1724
Tejun Heo6b4517a2010-04-07 18:53:59 +09001725 whole = bd_start_claiming(bdev, holder);
1726 if (IS_ERR(whole)) {
1727 bdput(bdev);
1728 return whole;
1729 }
1730
Al Viro572c4892007-10-08 13:24:05 -04001731 error = blkdev_get(bdev, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 if (error)
Tejun Heo6b4517a2010-04-07 18:53:59 +09001733 goto out_abort_claiming;
1734
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 error = -EACCES;
Al Viro30c40d22008-02-22 19:50:45 -05001736 if ((mode & FMODE_WRITE) && bdev_read_only(bdev))
Tejun Heo6b4517a2010-04-07 18:53:59 +09001737 goto out_blkdev_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738
Nick Pigginb0018362010-05-26 01:51:19 +10001739 bd_finish_claiming(bdev, whole, holder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 return bdev;
Tejun Heo6b4517a2010-04-07 18:53:59 +09001741
1742out_blkdev_put:
Al Viro9a1c3542008-02-22 20:40:24 -05001743 blkdev_put(bdev, mode);
Tejun Heo6b4517a2010-04-07 18:53:59 +09001744out_abort_claiming:
1745 bd_abort_claiming(whole, holder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746 return ERR_PTR(error);
1747}
1748
Al Viro30c40d22008-02-22 19:50:45 -05001749EXPORT_SYMBOL(open_bdev_exclusive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750
1751/**
Al Viro30c40d22008-02-22 19:50:45 -05001752 * close_bdev_exclusive - close a blockdevice opened by open_bdev_exclusive()
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 *
1754 * @bdev: blockdevice to close
Al Viro30c40d22008-02-22 19:50:45 -05001755 * @mode: mode, must match that used to open.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 *
Al Viro30c40d22008-02-22 19:50:45 -05001757 * This is the counterpart to open_bdev_exclusive().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 */
Al Viro30c40d22008-02-22 19:50:45 -05001759void close_bdev_exclusive(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760{
1761 bd_release(bdev);
Al Viro30c40d22008-02-22 19:50:45 -05001762 blkdev_put(bdev, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763}
1764
Al Viro30c40d22008-02-22 19:50:45 -05001765EXPORT_SYMBOL(close_bdev_exclusive);
David Howellsb71e8a42006-08-29 19:06:11 +01001766
1767int __invalidate_device(struct block_device *bdev)
1768{
1769 struct super_block *sb = get_super(bdev);
1770 int res = 0;
1771
1772 if (sb) {
1773 /*
1774 * no need to lock the super, get_super holds the
1775 * read mutex so the filesystem cannot go away
1776 * under us (->put_super runs with the write lock
1777 * hold).
1778 */
1779 shrink_dcache_sb(sb);
1780 res = invalidate_inodes(sb);
1781 drop_super(sb);
1782 }
Peter Zijlstraf98393a2007-05-06 14:49:54 -07001783 invalidate_bdev(bdev);
David Howellsb71e8a42006-08-29 19:06:11 +01001784 return res;
1785}
1786EXPORT_SYMBOL(__invalidate_device);