blob: 65a0c26508e560ddd603da56d1bc61c7f1d9a805 [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
Christoph Hellwigeafdc7d2010-06-04 11:29:53 +0200175 return __blockdev_direct_IO(rw, iocb, inode, I_BDEV(inode), iov, offset,
176 nr_segs, blkdev_get_blocks, NULL, NULL, 0);
Andrew Mortonb2e895d2007-02-03 01:14:01 -0800177}
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;
Josef Bacik18e9e512010-03-23 10:34:56 -0400248 error = freeze_super(sb);
249 if (error) {
250 deactivate_super(sb);
251 bdev->bd_fsfreeze_count--;
Christoph Hellwig45042302009-08-03 23:28:35 +0200252 mutex_unlock(&bdev->bd_fsfreeze_mutex);
Josef Bacik18e9e512010-03-23 10:34:56 -0400253 return ERR_PTR(error);
Nick Piggin585d3bc2009-02-25 10:44:19 +0100254 }
Josef Bacik18e9e512010-03-23 10:34:56 -0400255 deactivate_super(sb);
Christoph Hellwig45042302009-08-03 23:28:35 +0200256 out:
Nick Piggin585d3bc2009-02-25 10:44:19 +0100257 sync_blockdev(bdev);
258 mutex_unlock(&bdev->bd_fsfreeze_mutex);
Christoph Hellwig4fadd7b2009-08-03 23:28:06 +0200259 return sb; /* thaw_bdev releases s->s_umount */
Nick Piggin585d3bc2009-02-25 10:44:19 +0100260}
261EXPORT_SYMBOL(freeze_bdev);
262
263/**
264 * thaw_bdev -- unlock filesystem
265 * @bdev: blockdevice to unlock
266 * @sb: associated superblock
267 *
268 * Unlocks the filesystem and marks it writeable again after freeze_bdev().
269 */
270int thaw_bdev(struct block_device *bdev, struct super_block *sb)
271{
Christoph Hellwig45042302009-08-03 23:28:35 +0200272 int error = -EINVAL;
Nick Piggin585d3bc2009-02-25 10:44:19 +0100273
274 mutex_lock(&bdev->bd_fsfreeze_mutex);
Christoph Hellwig45042302009-08-03 23:28:35 +0200275 if (!bdev->bd_fsfreeze_count)
Josef Bacik18e9e512010-03-23 10:34:56 -0400276 goto out;
Nick Piggin585d3bc2009-02-25 10:44:19 +0100277
Christoph Hellwig45042302009-08-03 23:28:35 +0200278 error = 0;
279 if (--bdev->bd_fsfreeze_count > 0)
Josef Bacik18e9e512010-03-23 10:34:56 -0400280 goto out;
Nick Piggin585d3bc2009-02-25 10:44:19 +0100281
Christoph Hellwig45042302009-08-03 23:28:35 +0200282 if (!sb)
Josef Bacik18e9e512010-03-23 10:34:56 -0400283 goto out;
Christoph Hellwig45042302009-08-03 23:28:35 +0200284
Josef Bacik18e9e512010-03-23 10:34:56 -0400285 error = thaw_super(sb);
286 if (error) {
287 bdev->bd_fsfreeze_count++;
288 mutex_unlock(&bdev->bd_fsfreeze_mutex);
289 return error;
Nick Piggin585d3bc2009-02-25 10:44:19 +0100290 }
Josef Bacik18e9e512010-03-23 10:34:56 -0400291out:
Nick Piggin585d3bc2009-02-25 10:44:19 +0100292 mutex_unlock(&bdev->bd_fsfreeze_mutex);
293 return 0;
294}
295EXPORT_SYMBOL(thaw_bdev);
296
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297static int blkdev_writepage(struct page *page, struct writeback_control *wbc)
298{
299 return block_write_full_page(page, blkdev_get_block, wbc);
300}
301
302static int blkdev_readpage(struct file * file, struct page * page)
303{
304 return block_read_full_page(page, blkdev_get_block);
305}
306
Nick Piggin6272b5a2007-10-16 01:25:04 -0700307static int blkdev_write_begin(struct file *file, struct address_space *mapping,
308 loff_t pos, unsigned len, unsigned flags,
309 struct page **pagep, void **fsdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310{
Nick Piggin6272b5a2007-10-16 01:25:04 -0700311 *pagep = NULL;
Nick Piggin3322e792010-05-27 22:42:19 +1000312 return block_write_begin_newtrunc(file, mapping, pos, len, flags,
313 pagep, fsdata, blkdev_get_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314}
315
Nick Piggin6272b5a2007-10-16 01:25:04 -0700316static int blkdev_write_end(struct file *file, struct address_space *mapping,
317 loff_t pos, unsigned len, unsigned copied,
318 struct page *page, void *fsdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319{
Nick Piggin6272b5a2007-10-16 01:25:04 -0700320 int ret;
321 ret = block_write_end(file, mapping, pos, len, copied, page, fsdata);
322
323 unlock_page(page);
324 page_cache_release(page);
325
326 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327}
328
329/*
330 * private llseek:
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800331 * for a block special file file->f_path.dentry->d_inode->i_size is zero
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 * so we compute the size by hand (just as in block_read/write above)
333 */
334static loff_t block_llseek(struct file *file, loff_t offset, int origin)
335{
336 struct inode *bd_inode = file->f_mapping->host;
337 loff_t size;
338 loff_t retval;
339
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800340 mutex_lock(&bd_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 size = i_size_read(bd_inode);
342
343 switch (origin) {
344 case 2:
345 offset += size;
346 break;
347 case 1:
348 offset += file->f_pos;
349 }
350 retval = -EINVAL;
351 if (offset >= 0 && offset <= size) {
352 if (offset != file->f_pos) {
353 file->f_pos = offset;
354 }
355 retval = offset;
356 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800357 mutex_unlock(&bd_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 return retval;
359}
360
Christoph Hellwig7ea80852010-05-26 17:53:25 +0200361int blkdev_fsync(struct file *filp, int datasync)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362{
Anton Blanchardb8af67e2010-04-23 13:18:06 -0400363 struct inode *bd_inode = filp->f_mapping->host;
364 struct block_device *bdev = I_BDEV(bd_inode);
Christoph Hellwigab0a9732009-10-29 14:14:04 +0100365 int error;
366
Anton Blanchardb8af67e2010-04-23 13:18:06 -0400367 /*
368 * There is no need to serialise calls to blkdev_issue_flush with
369 * i_mutex and doing so causes performance issues with concurrent
370 * O_SYNC writers to a block device.
371 */
372 mutex_unlock(&bd_inode->i_mutex);
373
Jens Axboe7407cf32010-04-29 09:36:24 +0200374 error = blkdev_issue_flush(bdev, GFP_KERNEL, NULL, BLKDEV_IFL_WAIT);
Christoph Hellwigab0a9732009-10-29 14:14:04 +0100375 if (error == -EOPNOTSUPP)
376 error = 0;
Anton Blanchardb8af67e2010-04-23 13:18:06 -0400377
378 mutex_lock(&bd_inode->i_mutex);
379
Christoph Hellwigab0a9732009-10-29 14:14:04 +0100380 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381}
Andrew Mortonb1dd3b22010-04-06 14:35:00 -0700382EXPORT_SYMBOL(blkdev_fsync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
384/*
385 * pseudo-fs
386 */
387
388static __cacheline_aligned_in_smp DEFINE_SPINLOCK(bdev_lock);
Christoph Lametere18b8902006-12-06 20:33:20 -0800389static struct kmem_cache * bdev_cachep __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390
391static struct inode *bdev_alloc_inode(struct super_block *sb)
392{
Christoph Lametere94b1762006-12-06 20:33:17 -0800393 struct bdev_inode *ei = kmem_cache_alloc(bdev_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 if (!ei)
395 return NULL;
396 return &ei->vfs_inode;
397}
398
399static void bdev_destroy_inode(struct inode *inode)
400{
401 struct bdev_inode *bdi = BDEV_I(inode);
402
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 kmem_cache_free(bdev_cachep, bdi);
404}
405
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700406static void init_once(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407{
408 struct bdev_inode *ei = (struct bdev_inode *) foo;
409 struct block_device *bdev = &ei->bdev;
410
Christoph Lametera35afb82007-05-16 22:10:57 -0700411 memset(bdev, 0, sizeof(*bdev));
412 mutex_init(&bdev->bd_mutex);
Christoph Lametera35afb82007-05-16 22:10:57 -0700413 INIT_LIST_HEAD(&bdev->bd_inodes);
414 INIT_LIST_HEAD(&bdev->bd_list);
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800415#ifdef CONFIG_SYSFS
Christoph Lametera35afb82007-05-16 22:10:57 -0700416 INIT_LIST_HEAD(&bdev->bd_holder_list);
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800417#endif
Christoph Lametera35afb82007-05-16 22:10:57 -0700418 inode_init_once(&ei->vfs_inode);
Takashi Satofcccf502009-01-09 16:40:59 -0800419 /* Initialize mutex for freeze. */
420 mutex_init(&bdev->bd_fsfreeze_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421}
422
423static inline void __bd_forget(struct inode *inode)
424{
425 list_del_init(&inode->i_devices);
426 inode->i_bdev = NULL;
427 inode->i_mapping = &inode->i_data;
428}
429
430static void bdev_clear_inode(struct inode *inode)
431{
432 struct block_device *bdev = &BDEV_I(inode)->bdev;
433 struct list_head *p;
434 spin_lock(&bdev_lock);
435 while ( (p = bdev->bd_inodes.next) != &bdev->bd_inodes ) {
436 __bd_forget(list_entry(p, struct inode, i_devices));
437 }
438 list_del_init(&bdev->bd_list);
439 spin_unlock(&bdev_lock);
440}
441
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800442static const struct super_operations bdev_sops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 .statfs = simple_statfs,
444 .alloc_inode = bdev_alloc_inode,
445 .destroy_inode = bdev_destroy_inode,
446 .drop_inode = generic_delete_inode,
447 .clear_inode = bdev_clear_inode,
448};
449
David Howells454e2392006-06-23 02:02:57 -0700450static int bd_get_sb(struct file_system_type *fs_type,
451 int flags, const char *dev_name, void *data, struct vfsmount *mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452{
David Howells454e2392006-06-23 02:02:57 -0700453 return get_sb_pseudo(fs_type, "bdev:", &bdev_sops, 0x62646576, mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454}
455
456static struct file_system_type bd_type = {
457 .name = "bdev",
458 .get_sb = bd_get_sb,
459 .kill_sb = kill_anon_super,
460};
461
Denis ChengRqc2acf7b2008-12-01 14:34:56 -0800462struct super_block *blockdev_superblock __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
464void __init bdev_cache_init(void)
465{
466 int err;
Denis ChengRqc2acf7b2008-12-01 14:34:56 -0800467 struct vfsmount *bd_mnt;
468
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 bdev_cachep = kmem_cache_create("bdev_cache", sizeof(struct bdev_inode),
Paul Jacksonfffb60f2006-03-24 03:16:06 -0800470 0, (SLAB_HWCACHE_ALIGN|SLAB_RECLAIM_ACCOUNT|
471 SLAB_MEM_SPREAD|SLAB_PANIC),
Paul Mundt20c2df82007-07-20 10:11:58 +0900472 init_once);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 err = register_filesystem(&bd_type);
474 if (err)
475 panic("Cannot register bdev pseudo-fs");
476 bd_mnt = kern_mount(&bd_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 if (IS_ERR(bd_mnt))
478 panic("Cannot create bdev pseudo-fs");
Catalin Marinas2e1483c2009-06-11 13:24:13 +0100479 /*
480 * This vfsmount structure is only used to obtain the
481 * blockdev_superblock, so tell kmemleak not to report it.
482 */
483 kmemleak_not_leak(bd_mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 blockdev_superblock = bd_mnt->mnt_sb; /* For writeback */
485}
486
487/*
488 * Most likely _very_ bad one - but then it's hardly critical for small
489 * /dev and can be fixed when somebody will need really large one.
490 * Keep in mind that it will be fed through icache hash function too.
491 */
492static inline unsigned long hash(dev_t dev)
493{
494 return MAJOR(dev)+MINOR(dev);
495}
496
497static int bdev_test(struct inode *inode, void *data)
498{
499 return BDEV_I(inode)->bdev.bd_dev == *(dev_t *)data;
500}
501
502static int bdev_set(struct inode *inode, void *data)
503{
504 BDEV_I(inode)->bdev.bd_dev = *(dev_t *)data;
505 return 0;
506}
507
508static LIST_HEAD(all_bdevs);
509
510struct block_device *bdget(dev_t dev)
511{
512 struct block_device *bdev;
513 struct inode *inode;
514
Denis ChengRqc2acf7b2008-12-01 14:34:56 -0800515 inode = iget5_locked(blockdev_superblock, hash(dev),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 bdev_test, bdev_set, &dev);
517
518 if (!inode)
519 return NULL;
520
521 bdev = &BDEV_I(inode)->bdev;
522
523 if (inode->i_state & I_NEW) {
524 bdev->bd_contains = NULL;
525 bdev->bd_inode = inode;
526 bdev->bd_block_size = (1 << inode->i_blkbits);
527 bdev->bd_part_count = 0;
528 bdev->bd_invalidated = 0;
529 inode->i_mode = S_IFBLK;
530 inode->i_rdev = dev;
531 inode->i_bdev = bdev;
532 inode->i_data.a_ops = &def_blk_aops;
533 mapping_set_gfp_mask(&inode->i_data, GFP_USER);
534 inode->i_data.backing_dev_info = &default_backing_dev_info;
535 spin_lock(&bdev_lock);
536 list_add(&bdev->bd_list, &all_bdevs);
537 spin_unlock(&bdev_lock);
538 unlock_new_inode(inode);
539 }
540 return bdev;
541}
542
543EXPORT_SYMBOL(bdget);
544
Alan Jenkinsdddac6a2009-07-29 21:07:55 +0200545/**
546 * bdgrab -- Grab a reference to an already referenced block device
547 * @bdev: Block device to grab a reference to.
548 */
549struct block_device *bdgrab(struct block_device *bdev)
550{
551 atomic_inc(&bdev->bd_inode->i_count);
552 return bdev;
553}
554
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555long nr_blockdev_pages(void)
556{
Matthias Kaehlcke203a2932007-07-15 23:40:23 -0700557 struct block_device *bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 long ret = 0;
559 spin_lock(&bdev_lock);
Matthias Kaehlcke203a2932007-07-15 23:40:23 -0700560 list_for_each_entry(bdev, &all_bdevs, bd_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 ret += bdev->bd_inode->i_mapping->nrpages;
562 }
563 spin_unlock(&bdev_lock);
564 return ret;
565}
566
567void bdput(struct block_device *bdev)
568{
569 iput(bdev->bd_inode);
570}
571
572EXPORT_SYMBOL(bdput);
573
574static struct block_device *bd_acquire(struct inode *inode)
575{
576 struct block_device *bdev;
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700577
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 spin_lock(&bdev_lock);
579 bdev = inode->i_bdev;
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700580 if (bdev) {
581 atomic_inc(&bdev->bd_inode->i_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 spin_unlock(&bdev_lock);
583 return bdev;
584 }
585 spin_unlock(&bdev_lock);
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700586
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 bdev = bdget(inode->i_rdev);
588 if (bdev) {
589 spin_lock(&bdev_lock);
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700590 if (!inode->i_bdev) {
591 /*
592 * We take an additional bd_inode->i_count for inode,
593 * and it's released in clear_inode() of inode.
594 * So, we can access it via ->i_mapping always
595 * without igrab().
596 */
597 atomic_inc(&bdev->bd_inode->i_count);
598 inode->i_bdev = bdev;
599 inode->i_mapping = bdev->bd_inode->i_mapping;
600 list_add(&inode->i_devices, &bdev->bd_inodes);
601 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 spin_unlock(&bdev_lock);
603 }
604 return bdev;
605}
606
607/* Call when you free inode */
608
609void bd_forget(struct inode *inode)
610{
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700611 struct block_device *bdev = NULL;
612
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 spin_lock(&bdev_lock);
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700614 if (inode->i_bdev) {
Denis ChengRqc2acf7b2008-12-01 14:34:56 -0800615 if (!sb_is_blkdev_sb(inode->i_sb))
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700616 bdev = inode->i_bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 __bd_forget(inode);
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700618 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 spin_unlock(&bdev_lock);
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700620
621 if (bdev)
622 iput(bdev->bd_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623}
624
Tejun Heo1a3cbbc2010-04-07 18:52:29 +0900625/**
626 * bd_may_claim - test whether a block device can be claimed
627 * @bdev: block device of interest
628 * @whole: whole block device containing @bdev, may equal @bdev
629 * @holder: holder trying to claim @bdev
630 *
631 * Test whther @bdev can be claimed by @holder.
632 *
633 * CONTEXT:
634 * spin_lock(&bdev_lock).
635 *
636 * RETURNS:
637 * %true if @bdev can be claimed, %false otherwise.
638 */
639static bool bd_may_claim(struct block_device *bdev, struct block_device *whole,
640 void *holder)
641{
642 if (bdev->bd_holder == holder)
643 return true; /* already a holder */
644 else if (bdev->bd_holder != NULL)
645 return false; /* held by someone else */
646 else if (bdev->bd_contains == bdev)
647 return true; /* is a whole device which isn't held */
648
649 else if (whole->bd_holder == bd_claim)
650 return true; /* is a partition of a device that is being partitioned */
651 else if (whole->bd_holder != NULL)
652 return false; /* is a partition of a held device */
653 else
654 return true; /* is a partition of an un-held device */
655}
656
657/**
Tejun Heo6b4517a2010-04-07 18:53:59 +0900658 * bd_prepare_to_claim - prepare to claim a block device
659 * @bdev: block device of interest
660 * @whole: the whole device containing @bdev, may equal @bdev
661 * @holder: holder trying to claim @bdev
662 *
663 * Prepare to claim @bdev. This function fails if @bdev is already
664 * claimed by another holder and waits if another claiming is in
665 * progress. This function doesn't actually claim. On successful
666 * return, the caller has ownership of bd_claiming and bd_holder[s].
667 *
668 * CONTEXT:
669 * spin_lock(&bdev_lock). Might release bdev_lock, sleep and regrab
670 * it multiple times.
671 *
672 * RETURNS:
673 * 0 if @bdev can be claimed, -EBUSY otherwise.
674 */
675static int bd_prepare_to_claim(struct block_device *bdev,
676 struct block_device *whole, void *holder)
677{
678retry:
679 /* if someone else claimed, fail */
680 if (!bd_may_claim(bdev, whole, holder))
681 return -EBUSY;
682
683 /* if someone else is claiming, wait for it to finish */
684 if (whole->bd_claiming && whole->bd_claiming != holder) {
685 wait_queue_head_t *wq = bit_waitqueue(&whole->bd_claiming, 0);
686 DEFINE_WAIT(wait);
687
688 prepare_to_wait(wq, &wait, TASK_UNINTERRUPTIBLE);
689 spin_unlock(&bdev_lock);
690 schedule();
691 finish_wait(wq, &wait);
692 spin_lock(&bdev_lock);
693 goto retry;
694 }
695
696 /* yay, all mine */
697 return 0;
698}
699
700/**
701 * bd_start_claiming - start claiming a block device
702 * @bdev: block device of interest
703 * @holder: holder trying to claim @bdev
704 *
705 * @bdev is about to be opened exclusively. Check @bdev can be opened
706 * exclusively and mark that an exclusive open is in progress. Each
707 * successful call to this function must be matched with a call to
Nick Pigginb0018362010-05-26 01:51:19 +1000708 * either bd_finish_claiming() or bd_abort_claiming() (which do not
709 * fail).
710 *
711 * This function is used to gain exclusive access to the block device
712 * without actually causing other exclusive open attempts to fail. It
713 * should be used when the open sequence itself requires exclusive
714 * access but may subsequently fail.
Tejun Heo6b4517a2010-04-07 18:53:59 +0900715 *
716 * CONTEXT:
717 * Might sleep.
718 *
719 * RETURNS:
720 * Pointer to the block device containing @bdev on success, ERR_PTR()
721 * value on failure.
722 */
723static struct block_device *bd_start_claiming(struct block_device *bdev,
724 void *holder)
725{
726 struct gendisk *disk;
727 struct block_device *whole;
728 int partno, err;
729
730 might_sleep();
731
732 /*
733 * @bdev might not have been initialized properly yet, look up
734 * and grab the outer block device the hard way.
735 */
736 disk = get_gendisk(bdev->bd_dev, &partno);
737 if (!disk)
738 return ERR_PTR(-ENXIO);
739
740 whole = bdget_disk(disk, 0);
Nick Piggincf342572010-05-26 01:50:21 +1000741 module_put(disk->fops->owner);
Tejun Heo6b4517a2010-04-07 18:53:59 +0900742 put_disk(disk);
743 if (!whole)
744 return ERR_PTR(-ENOMEM);
745
746 /* prepare to claim, if successful, mark claiming in progress */
747 spin_lock(&bdev_lock);
748
749 err = bd_prepare_to_claim(bdev, whole, holder);
750 if (err == 0) {
751 whole->bd_claiming = holder;
752 spin_unlock(&bdev_lock);
753 return whole;
754 } else {
755 spin_unlock(&bdev_lock);
756 bdput(whole);
757 return ERR_PTR(err);
758 }
759}
760
761/* releases bdev_lock */
762static void __bd_abort_claiming(struct block_device *whole, void *holder)
763{
764 BUG_ON(whole->bd_claiming != holder);
765 whole->bd_claiming = NULL;
766 wake_up_bit(&whole->bd_claiming, 0);
767
768 spin_unlock(&bdev_lock);
769 bdput(whole);
770}
771
772/**
773 * bd_abort_claiming - abort claiming a block device
774 * @whole: whole block device returned by bd_start_claiming()
775 * @holder: holder trying to claim @bdev
776 *
777 * Abort a claiming block started by bd_start_claiming(). Note that
778 * @whole is not the block device to be claimed but the whole device
779 * returned by bd_start_claiming().
780 *
781 * CONTEXT:
782 * Grabs and releases bdev_lock.
783 */
784static void bd_abort_claiming(struct block_device *whole, void *holder)
785{
786 spin_lock(&bdev_lock);
787 __bd_abort_claiming(whole, holder); /* releases bdev_lock */
788}
789
Nick Pigginb0018362010-05-26 01:51:19 +1000790/* increment holders when we have a legitimate claim. requires bdev_lock */
791static void __bd_claim(struct block_device *bdev, struct block_device *whole,
792 void *holder)
793{
794 /* note that for a whole device bd_holders
795 * will be incremented twice, and bd_holder will
796 * be set to bd_claim before being set to holder
797 */
798 whole->bd_holders++;
799 whole->bd_holder = bd_claim;
800 bdev->bd_holders++;
801 bdev->bd_holder = holder;
802}
803
804/**
805 * bd_finish_claiming - finish claiming a block device
806 * @bdev: block device of interest (passed to bd_start_claiming())
807 * @whole: whole block device returned by bd_start_claiming()
808 * @holder: holder trying to claim @bdev
809 *
810 * Finish a claiming block started by bd_start_claiming().
811 *
812 * CONTEXT:
813 * Grabs and releases bdev_lock.
814 */
815static void bd_finish_claiming(struct block_device *bdev,
816 struct block_device *whole, void *holder)
817{
818 spin_lock(&bdev_lock);
Nick Pigginb0018362010-05-26 01:51:19 +1000819 BUG_ON(!bd_may_claim(bdev, whole, holder));
820 __bd_claim(bdev, whole, holder);
821 __bd_abort_claiming(whole, holder); /* not actually an abort */
822}
823
Tejun Heo6b4517a2010-04-07 18:53:59 +0900824/**
Tejun Heo1a3cbbc2010-04-07 18:52:29 +0900825 * bd_claim - claim a block device
826 * @bdev: block device to claim
827 * @holder: holder trying to claim @bdev
828 *
Nick Pigginb0018362010-05-26 01:51:19 +1000829 * Try to claim @bdev which must have been opened successfully.
Tejun Heo6b4517a2010-04-07 18:53:59 +0900830 *
831 * CONTEXT:
832 * Might sleep.
Tejun Heo1a3cbbc2010-04-07 18:52:29 +0900833 *
834 * RETURNS:
835 * 0 if successful, -EBUSY if @bdev is already claimed.
836 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837int bd_claim(struct block_device *bdev, void *holder)
838{
Tejun Heo1a3cbbc2010-04-07 18:52:29 +0900839 struct block_device *whole = bdev->bd_contains;
Tejun Heo6b4517a2010-04-07 18:53:59 +0900840 int res;
841
842 might_sleep();
Tejun Heo1a3cbbc2010-04-07 18:52:29 +0900843
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 spin_lock(&bdev_lock);
Tejun Heo6b4517a2010-04-07 18:53:59 +0900845 res = bd_prepare_to_claim(bdev, whole, holder);
Nick Pigginb0018362010-05-26 01:51:19 +1000846 if (res == 0)
847 __bd_claim(bdev, whole, holder);
848 spin_unlock(&bdev_lock);
Tejun Heo6b4517a2010-04-07 18:53:59 +0900849
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 return res;
851}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852EXPORT_SYMBOL(bd_claim);
853
854void bd_release(struct block_device *bdev)
855{
856 spin_lock(&bdev_lock);
857 if (!--bdev->bd_contains->bd_holders)
858 bdev->bd_contains->bd_holder = NULL;
859 if (!--bdev->bd_holders)
860 bdev->bd_holder = NULL;
861 spin_unlock(&bdev_lock);
862}
863
864EXPORT_SYMBOL(bd_release);
865
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800866#ifdef CONFIG_SYSFS
867/*
868 * Functions for bd_claim_by_kobject / bd_release_from_kobject
869 *
870 * If a kobject is passed to bd_claim_by_kobject()
871 * and the kobject has a parent directory,
872 * following symlinks are created:
873 * o from the kobject to the claimed bdev
874 * o from "holders" directory of the bdev to the parent of the kobject
875 * bd_release_from_kobject() removes these symlinks.
876 *
877 * Example:
878 * If /dev/dm-0 maps to /dev/sda, kobject corresponding to
879 * /sys/block/dm-0/slaves is passed to bd_claim_by_kobject(), then:
880 * /sys/block/dm-0/slaves/sda --> /sys/block/sda
881 * /sys/block/sda/holders/dm-0 --> /sys/block/dm-0
882 */
883
Andrew Morton4d7dd8f2006-09-29 01:58:56 -0700884static int add_symlink(struct kobject *from, struct kobject *to)
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800885{
886 if (!from || !to)
Andrew Morton4d7dd8f2006-09-29 01:58:56 -0700887 return 0;
888 return sysfs_create_link(from, to, kobject_name(to));
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800889}
890
891static void del_symlink(struct kobject *from, struct kobject *to)
892{
893 if (!from || !to)
894 return;
895 sysfs_remove_link(from, kobject_name(to));
896}
897
898/*
899 * 'struct bd_holder' contains pointers to kobjects symlinked by
900 * bd_claim_by_kobject.
901 * It's connected to bd_holder_list which is protected by bdev->bd_sem.
902 */
903struct bd_holder {
904 struct list_head list; /* chain of holders of the bdev */
905 int count; /* references from the holder */
906 struct kobject *sdir; /* holder object, e.g. "/block/dm-0/slaves" */
907 struct kobject *hdev; /* e.g. "/block/dm-0" */
908 struct kobject *hdir; /* e.g. "/block/sda/holders" */
909 struct kobject *sdev; /* e.g. "/block/sda" */
910};
911
912/*
913 * Get references of related kobjects at once.
914 * Returns 1 on success. 0 on failure.
915 *
916 * Should call bd_holder_release_dirs() after successful use.
917 */
918static int bd_holder_grab_dirs(struct block_device *bdev,
919 struct bd_holder *bo)
920{
921 if (!bdev || !bo)
922 return 0;
923
924 bo->sdir = kobject_get(bo->sdir);
925 if (!bo->sdir)
926 return 0;
927
928 bo->hdev = kobject_get(bo->sdir->parent);
929 if (!bo->hdev)
930 goto fail_put_sdir;
931
Tejun Heo0762b8b2008-08-25 19:56:12 +0900932 bo->sdev = kobject_get(&part_to_dev(bdev->bd_part)->kobj);
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800933 if (!bo->sdev)
934 goto fail_put_hdev;
935
Tejun Heo4c465012008-08-25 19:56:11 +0900936 bo->hdir = kobject_get(bdev->bd_part->holder_dir);
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800937 if (!bo->hdir)
938 goto fail_put_sdev;
939
940 return 1;
941
942fail_put_sdev:
943 kobject_put(bo->sdev);
944fail_put_hdev:
945 kobject_put(bo->hdev);
946fail_put_sdir:
947 kobject_put(bo->sdir);
948
949 return 0;
950}
951
952/* Put references of related kobjects at once. */
953static void bd_holder_release_dirs(struct bd_holder *bo)
954{
955 kobject_put(bo->hdir);
956 kobject_put(bo->sdev);
957 kobject_put(bo->hdev);
958 kobject_put(bo->sdir);
959}
960
961static struct bd_holder *alloc_bd_holder(struct kobject *kobj)
962{
963 struct bd_holder *bo;
964
965 bo = kzalloc(sizeof(*bo), GFP_KERNEL);
966 if (!bo)
967 return NULL;
968
969 bo->count = 1;
970 bo->sdir = kobj;
971
972 return bo;
973}
974
975static void free_bd_holder(struct bd_holder *bo)
976{
977 kfree(bo);
978}
979
980/**
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -0500981 * find_bd_holder - find matching struct bd_holder from the block device
982 *
983 * @bdev: struct block device to be searched
984 * @bo: target struct bd_holder
985 *
986 * Returns matching entry with @bo in @bdev->bd_holder_list.
987 * If found, increment the reference count and return the pointer.
988 * If not found, returns NULL.
989 */
Andrew Morton36a561d2006-10-30 22:07:03 -0800990static struct bd_holder *find_bd_holder(struct block_device *bdev,
991 struct bd_holder *bo)
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -0500992{
993 struct bd_holder *tmp;
994
995 list_for_each_entry(tmp, &bdev->bd_holder_list, list)
996 if (tmp->sdir == bo->sdir) {
997 tmp->count++;
998 return tmp;
999 }
1000
1001 return NULL;
1002}
1003
1004/**
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001005 * add_bd_holder - create sysfs symlinks for bd_claim() relationship
1006 *
1007 * @bdev: block device to be bd_claimed
1008 * @bo: preallocated and initialized by alloc_bd_holder()
1009 *
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -05001010 * Add @bo to @bdev->bd_holder_list, create symlinks.
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001011 *
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -05001012 * Returns 0 if symlinks are created.
1013 * Returns -ve if something fails.
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001014 */
1015static int add_bd_holder(struct block_device *bdev, struct bd_holder *bo)
1016{
Johannes Weiner4e916722007-07-15 23:41:25 -07001017 int err;
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001018
1019 if (!bo)
Andrew Morton4d7dd8f2006-09-29 01:58:56 -07001020 return -EINVAL;
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001021
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001022 if (!bd_holder_grab_dirs(bdev, bo))
Andrew Morton4d7dd8f2006-09-29 01:58:56 -07001023 return -EBUSY;
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001024
Johannes Weiner4e916722007-07-15 23:41:25 -07001025 err = add_symlink(bo->sdir, bo->sdev);
1026 if (err)
1027 return err;
1028
1029 err = add_symlink(bo->hdir, bo->hdev);
1030 if (err) {
1031 del_symlink(bo->sdir, bo->sdev);
1032 return err;
Andrew Morton4d7dd8f2006-09-29 01:58:56 -07001033 }
Johannes Weiner4e916722007-07-15 23:41:25 -07001034
1035 list_add_tail(&bo->list, &bdev->bd_holder_list);
1036 return 0;
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001037}
1038
1039/**
1040 * del_bd_holder - delete sysfs symlinks for bd_claim() relationship
1041 *
1042 * @bdev: block device to be bd_claimed
1043 * @kobj: holder's kobject
1044 *
1045 * If there is matching entry with @kobj in @bdev->bd_holder_list
1046 * and no other bd_claim() from the same kobject,
1047 * remove the struct bd_holder from the list, delete symlinks for it.
1048 *
1049 * Returns a pointer to the struct bd_holder when it's removed from the list
1050 * and ready to be freed.
1051 * Returns NULL if matching claim isn't found or there is other bd_claim()
1052 * by the same kobject.
1053 */
1054static struct bd_holder *del_bd_holder(struct block_device *bdev,
1055 struct kobject *kobj)
1056{
1057 struct bd_holder *bo;
1058
1059 list_for_each_entry(bo, &bdev->bd_holder_list, list) {
1060 if (bo->sdir == kobj) {
1061 bo->count--;
1062 BUG_ON(bo->count < 0);
1063 if (!bo->count) {
1064 list_del(&bo->list);
1065 del_symlink(bo->sdir, bo->sdev);
1066 del_symlink(bo->hdir, bo->hdev);
1067 bd_holder_release_dirs(bo);
1068 return bo;
1069 }
1070 break;
1071 }
1072 }
1073
1074 return NULL;
1075}
1076
1077/**
1078 * bd_claim_by_kobject - bd_claim() with additional kobject signature
1079 *
1080 * @bdev: block device to be claimed
1081 * @holder: holder's signature
1082 * @kobj: holder's kobject
1083 *
1084 * Do bd_claim() and if it succeeds, create sysfs symlinks between
1085 * the bdev and the holder's kobject.
1086 * Use bd_release_from_kobject() when relesing the claimed bdev.
1087 *
1088 * Returns 0 on success. (same as bd_claim())
1089 * Returns errno on failure.
1090 */
1091static int bd_claim_by_kobject(struct block_device *bdev, void *holder,
1092 struct kobject *kobj)
1093{
Johannes Weiner4e916722007-07-15 23:41:25 -07001094 int err;
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -05001095 struct bd_holder *bo, *found;
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001096
1097 if (!kobj)
1098 return -EINVAL;
1099
1100 bo = alloc_bd_holder(kobj);
1101 if (!bo)
1102 return -ENOMEM;
1103
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001104 mutex_lock(&bdev->bd_mutex);
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -05001105
Johannes Weiner4e916722007-07-15 23:41:25 -07001106 err = bd_claim(bdev, holder);
1107 if (err)
Andrew Morton4210df22007-07-15 23:41:28 -07001108 goto fail;
Johannes Weiner4e916722007-07-15 23:41:25 -07001109
1110 found = find_bd_holder(bdev, bo);
1111 if (found)
Andrew Morton4210df22007-07-15 23:41:28 -07001112 goto fail;
Johannes Weiner4e916722007-07-15 23:41:25 -07001113
1114 err = add_bd_holder(bdev, bo);
1115 if (err)
1116 bd_release(bdev);
Andrew Morton4210df22007-07-15 23:41:28 -07001117 else
1118 bo = NULL;
1119fail:
Jun'ichi Nomurab4cf1b72006-03-27 01:18:00 -08001120 mutex_unlock(&bdev->bd_mutex);
Andrew Morton4210df22007-07-15 23:41:28 -07001121 free_bd_holder(bo);
Johannes Weiner4e916722007-07-15 23:41:25 -07001122 return err;
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001123}
1124
1125/**
1126 * bd_release_from_kobject - bd_release() with additional kobject signature
1127 *
1128 * @bdev: block device to be released
1129 * @kobj: holder's kobject
1130 *
1131 * Do bd_release() and remove sysfs symlinks created by bd_claim_by_kobject().
1132 */
1133static void bd_release_from_kobject(struct block_device *bdev,
1134 struct kobject *kobj)
1135{
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001136 if (!kobj)
1137 return;
1138
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001139 mutex_lock(&bdev->bd_mutex);
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001140 bd_release(bdev);
Andrew Morton4210df22007-07-15 23:41:28 -07001141 free_bd_holder(del_bd_holder(bdev, kobj));
Jun'ichi Nomurab4cf1b72006-03-27 01:18:00 -08001142 mutex_unlock(&bdev->bd_mutex);
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001143}
1144
1145/**
1146 * bd_claim_by_disk - wrapper function for bd_claim_by_kobject()
1147 *
1148 * @bdev: block device to be claimed
1149 * @holder: holder's signature
1150 * @disk: holder's gendisk
1151 *
1152 * Call bd_claim_by_kobject() with getting @disk->slave_dir.
1153 */
1154int bd_claim_by_disk(struct block_device *bdev, void *holder,
1155 struct gendisk *disk)
1156{
1157 return bd_claim_by_kobject(bdev, holder, kobject_get(disk->slave_dir));
1158}
1159EXPORT_SYMBOL_GPL(bd_claim_by_disk);
1160
1161/**
1162 * bd_release_from_disk - wrapper function for bd_release_from_kobject()
1163 *
1164 * @bdev: block device to be claimed
1165 * @disk: holder's gendisk
1166 *
1167 * Call bd_release_from_kobject() and put @disk->slave_dir.
1168 */
1169void bd_release_from_disk(struct block_device *bdev, struct gendisk *disk)
1170{
1171 bd_release_from_kobject(bdev, disk->slave_dir);
1172 kobject_put(disk->slave_dir);
1173}
1174EXPORT_SYMBOL_GPL(bd_release_from_disk);
1175#endif
1176
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177/*
1178 * Tries to open block device by device number. Use it ONLY if you
1179 * really do not have anything better - i.e. when you are behind a
1180 * truly sucky interface and all you are given is a device number. _Never_
1181 * to be used for internal purposes. If you ever need it - reconsider
1182 * your API.
1183 */
Al Viroaeb5d722008-09-02 15:28:45 -04001184struct block_device *open_by_devnum(dev_t dev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185{
1186 struct block_device *bdev = bdget(dev);
1187 int err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 if (bdev)
Al Viro572c4892007-10-08 13:24:05 -04001189 err = blkdev_get(bdev, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 return err ? ERR_PTR(err) : bdev;
1191}
1192
1193EXPORT_SYMBOL(open_by_devnum);
1194
Andrew Patterson0c002c22008-09-04 14:27:20 -06001195/**
Andrew Patterson56ade442008-09-04 14:27:40 -06001196 * flush_disk - invalidates all buffer-cache entries on a disk
1197 *
1198 * @bdev: struct block device to be flushed
1199 *
1200 * Invalidates all buffer-cache entries on a disk. It should be called
1201 * when a disk has been changed -- either by a media change or online
1202 * resize.
1203 */
1204static void flush_disk(struct block_device *bdev)
1205{
1206 if (__invalidate_device(bdev)) {
1207 char name[BDEVNAME_SIZE] = "";
1208
1209 if (bdev->bd_disk)
1210 disk_name(bdev->bd_disk, 0, name);
1211 printk(KERN_WARNING "VFS: busy inodes on changed media or "
1212 "resized disk %s\n", name);
1213 }
1214
1215 if (!bdev->bd_disk)
1216 return;
1217 if (disk_partitionable(bdev->bd_disk))
1218 bdev->bd_invalidated = 1;
1219}
1220
1221/**
Randy Dunlap57d1b532008-10-09 10:42:38 +02001222 * check_disk_size_change - checks for disk size change and adjusts bdev size.
Andrew Pattersonc3279d12008-09-04 14:27:25 -06001223 * @disk: struct gendisk to check
1224 * @bdev: struct bdev to adjust.
1225 *
1226 * This routine checks to see if the bdev size does not match the disk size
1227 * and adjusts it if it differs.
1228 */
1229void check_disk_size_change(struct gendisk *disk, struct block_device *bdev)
1230{
1231 loff_t disk_size, bdev_size;
1232
1233 disk_size = (loff_t)get_capacity(disk) << 9;
1234 bdev_size = i_size_read(bdev->bd_inode);
1235 if (disk_size != bdev_size) {
1236 char name[BDEVNAME_SIZE];
1237
1238 disk_name(disk, 0, name);
1239 printk(KERN_INFO
1240 "%s: detected capacity change from %lld to %lld\n",
1241 name, bdev_size, disk_size);
1242 i_size_write(bdev->bd_inode, disk_size);
Andrew Patterson608aeef2008-09-04 14:27:45 -06001243 flush_disk(bdev);
Andrew Pattersonc3279d12008-09-04 14:27:25 -06001244 }
1245}
1246EXPORT_SYMBOL(check_disk_size_change);
1247
1248/**
Randy Dunlap57d1b532008-10-09 10:42:38 +02001249 * revalidate_disk - wrapper for lower-level driver's revalidate_disk call-back
Andrew Patterson0c002c22008-09-04 14:27:20 -06001250 * @disk: struct gendisk to be revalidated
1251 *
1252 * This routine is a wrapper for lower-level driver's revalidate_disk
1253 * call-backs. It is used to do common pre and post operations needed
1254 * for all revalidate_disk operations.
1255 */
1256int revalidate_disk(struct gendisk *disk)
1257{
Andrew Pattersonc3279d12008-09-04 14:27:25 -06001258 struct block_device *bdev;
Andrew Patterson0c002c22008-09-04 14:27:20 -06001259 int ret = 0;
1260
1261 if (disk->fops->revalidate_disk)
1262 ret = disk->fops->revalidate_disk(disk);
1263
Andrew Pattersonc3279d12008-09-04 14:27:25 -06001264 bdev = bdget_disk(disk, 0);
1265 if (!bdev)
1266 return ret;
1267
1268 mutex_lock(&bdev->bd_mutex);
1269 check_disk_size_change(disk, bdev);
1270 mutex_unlock(&bdev->bd_mutex);
1271 bdput(bdev);
Andrew Patterson0c002c22008-09-04 14:27:20 -06001272 return ret;
1273}
1274EXPORT_SYMBOL(revalidate_disk);
1275
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276/*
1277 * This routine checks whether a removable media has been changed,
1278 * and invalidates all buffer-cache-entries in that case. This
1279 * is a relatively slow routine, so we have to try to minimize using
1280 * it. Thus it is called only upon a 'mount' or 'open'. This
1281 * is the best way of combining speed and utility, I think.
1282 * People changing diskettes in the middle of an operation deserve
1283 * to lose :-)
1284 */
1285int check_disk_change(struct block_device *bdev)
1286{
1287 struct gendisk *disk = bdev->bd_disk;
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -07001288 const struct block_device_operations *bdops = disk->fops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289
1290 if (!bdops->media_changed)
1291 return 0;
1292 if (!bdops->media_changed(bdev->bd_disk))
1293 return 0;
1294
Andrew Patterson56ade442008-09-04 14:27:40 -06001295 flush_disk(bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 if (bdops->revalidate_disk)
1297 bdops->revalidate_disk(bdev->bd_disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 return 1;
1299}
1300
1301EXPORT_SYMBOL(check_disk_change);
1302
1303void bd_set_size(struct block_device *bdev, loff_t size)
1304{
Martin K. Petersene1defc42009-05-22 17:17:49 -04001305 unsigned bsize = bdev_logical_block_size(bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306
1307 bdev->bd_inode->i_size = size;
1308 while (bsize < PAGE_CACHE_SIZE) {
1309 if (size & bsize)
1310 break;
1311 bsize <<= 1;
1312 }
1313 bdev->bd_block_size = bsize;
1314 bdev->bd_inode->i_blkbits = blksize_bits(bsize);
1315}
1316EXPORT_SYMBOL(bd_set_size);
1317
Al Viro9a1c3542008-02-22 20:40:24 -05001318static int __blkdev_put(struct block_device *bdev, fmode_t mode, int for_part);
NeilBrown37be4122006-12-08 02:36:16 -08001319
Peter Zijlstra6d740cd2007-02-20 13:58:18 -08001320/*
1321 * bd_mutex locking:
1322 *
1323 * mutex_lock(part->bd_mutex)
1324 * mutex_lock_nested(whole->bd_mutex, 1)
1325 */
1326
Al Viro572c4892007-10-08 13:24:05 -04001327static int __blkdev_get(struct block_device *bdev, fmode_t mode, int for_part)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 struct gendisk *disk;
Pavel Emelyanov7db9cfd2008-06-05 22:46:27 -07001330 int ret;
Tejun Heocf771cb2008-09-03 09:01:09 +02001331 int partno;
Al Virofe6e9c12008-06-23 08:30:55 -04001332 int perm = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333
Al Viro572c4892007-10-08 13:24:05 -04001334 if (mode & FMODE_READ)
Al Virofe6e9c12008-06-23 08:30:55 -04001335 perm |= MAY_READ;
Al Viro572c4892007-10-08 13:24:05 -04001336 if (mode & FMODE_WRITE)
Al Virofe6e9c12008-06-23 08:30:55 -04001337 perm |= MAY_WRITE;
1338 /*
1339 * hooks: /n/, see "layering violations".
1340 */
1341 ret = devcgroup_inode_permission(bdev->bd_inode, perm);
Al Viro82666022008-08-01 05:32:04 -04001342 if (ret != 0) {
1343 bdput(bdev);
Pavel Emelyanov7db9cfd2008-06-05 22:46:27 -07001344 return ret;
Al Viro82666022008-08-01 05:32:04 -04001345 }
Pavel Emelyanov7db9cfd2008-06-05 22:46:27 -07001346
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 lock_kernel();
NeilBrownd3374822009-01-09 08:31:10 +11001348 restart:
Tejun Heo0762b8b2008-08-25 19:56:12 +09001349
Tejun Heo89f97492008-11-05 10:21:06 +01001350 ret = -ENXIO;
Tejun Heocf771cb2008-09-03 09:01:09 +02001351 disk = get_gendisk(bdev->bd_dev, &partno);
Tejun Heo0762b8b2008-08-25 19:56:12 +09001352 if (!disk)
1353 goto out_unlock_kernel;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354
NeilBrown6796bf52006-12-08 02:36:16 -08001355 mutex_lock_nested(&bdev->bd_mutex, for_part);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 if (!bdev->bd_openers) {
1357 bdev->bd_disk = disk;
1358 bdev->bd_contains = bdev;
Tejun Heocf771cb2008-09-03 09:01:09 +02001359 if (!partno) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 struct backing_dev_info *bdi;
Tejun Heo89f97492008-11-05 10:21:06 +01001361
1362 ret = -ENXIO;
1363 bdev->bd_part = disk_get_part(disk, partno);
1364 if (!bdev->bd_part)
1365 goto out_clear;
1366
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 if (disk->fops->open) {
Al Viro572c4892007-10-08 13:24:05 -04001368 ret = disk->fops->open(bdev, mode);
NeilBrownd3374822009-01-09 08:31:10 +11001369 if (ret == -ERESTARTSYS) {
1370 /* Lost a race with 'disk' being
1371 * deleted, try again.
1372 * See md.c
1373 */
1374 disk_put_part(bdev->bd_part);
1375 bdev->bd_part = NULL;
1376 module_put(disk->fops->owner);
1377 put_disk(disk);
1378 bdev->bd_disk = NULL;
1379 mutex_unlock(&bdev->bd_mutex);
1380 goto restart;
1381 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 if (ret)
Tejun Heo0762b8b2008-08-25 19:56:12 +09001383 goto out_clear;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 }
1385 if (!bdev->bd_openers) {
1386 bd_set_size(bdev,(loff_t)get_capacity(disk)<<9);
1387 bdi = blk_get_backing_dev_info(bdev);
1388 if (bdi == NULL)
1389 bdi = &default_backing_dev_info;
1390 bdev->bd_inode->i_data.backing_dev_info = bdi;
1391 }
1392 if (bdev->bd_invalidated)
1393 rescan_partitions(disk, bdev);
1394 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 struct block_device *whole;
1396 whole = bdget_disk(disk, 0);
1397 ret = -ENOMEM;
1398 if (!whole)
Tejun Heo0762b8b2008-08-25 19:56:12 +09001399 goto out_clear;
NeilBrown37be4122006-12-08 02:36:16 -08001400 BUG_ON(for_part);
Al Viro572c4892007-10-08 13:24:05 -04001401 ret = __blkdev_get(whole, mode, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 if (ret)
Tejun Heo0762b8b2008-08-25 19:56:12 +09001403 goto out_clear;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 bdev->bd_contains = whole;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 bdev->bd_inode->i_data.backing_dev_info =
1406 whole->bd_inode->i_data.backing_dev_info;
Tejun Heo89f97492008-11-05 10:21:06 +01001407 bdev->bd_part = disk_get_part(disk, partno);
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001408 if (!(disk->flags & GENHD_FL_UP) ||
Tejun Heo89f97492008-11-05 10:21:06 +01001409 !bdev->bd_part || !bdev->bd_part->nr_sects) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 ret = -ENXIO;
Tejun Heo0762b8b2008-08-25 19:56:12 +09001411 goto out_clear;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 }
Tejun Heo89f97492008-11-05 10:21:06 +01001413 bd_set_size(bdev, (loff_t)bdev->bd_part->nr_sects << 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 }
1415 } else {
Tejun Heo0762b8b2008-08-25 19:56:12 +09001416 module_put(disk->fops->owner);
Neil Brown960cc0f2009-10-26 08:59:17 +01001417 put_disk(disk);
Tejun Heo0762b8b2008-08-25 19:56:12 +09001418 disk = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 if (bdev->bd_contains == bdev) {
1420 if (bdev->bd_disk->fops->open) {
Al Viro572c4892007-10-08 13:24:05 -04001421 ret = bdev->bd_disk->fops->open(bdev, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 if (ret)
Tejun Heo0762b8b2008-08-25 19:56:12 +09001423 goto out_unlock_bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 }
1425 if (bdev->bd_invalidated)
1426 rescan_partitions(bdev->bd_disk, bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 }
1428 }
1429 bdev->bd_openers++;
NeilBrown37be4122006-12-08 02:36:16 -08001430 if (for_part)
1431 bdev->bd_part_count++;
Arjan van de Venc039e312006-03-23 03:00:28 -08001432 mutex_unlock(&bdev->bd_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 unlock_kernel();
1434 return 0;
1435
Tejun Heo0762b8b2008-08-25 19:56:12 +09001436 out_clear:
Tejun Heo89f97492008-11-05 10:21:06 +01001437 disk_put_part(bdev->bd_part);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 bdev->bd_disk = NULL;
Tejun Heo0762b8b2008-08-25 19:56:12 +09001439 bdev->bd_part = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 bdev->bd_inode->i_data.backing_dev_info = &default_backing_dev_info;
1441 if (bdev != bdev->bd_contains)
Al Viro572c4892007-10-08 13:24:05 -04001442 __blkdev_put(bdev->bd_contains, mode, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 bdev->bd_contains = NULL;
Tejun Heo0762b8b2008-08-25 19:56:12 +09001444 out_unlock_bdev:
Arjan van de Venc039e312006-03-23 03:00:28 -08001445 mutex_unlock(&bdev->bd_mutex);
Tejun Heo0762b8b2008-08-25 19:56:12 +09001446 out_unlock_kernel:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 unlock_kernel();
Tejun Heo0762b8b2008-08-25 19:56:12 +09001448
Tejun Heo0762b8b2008-08-25 19:56:12 +09001449 if (disk)
1450 module_put(disk->fops->owner);
1451 put_disk(disk);
1452 bdput(bdev);
1453
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 return ret;
1455}
1456
Al Viro572c4892007-10-08 13:24:05 -04001457int blkdev_get(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458{
Al Viro572c4892007-10-08 13:24:05 -04001459 return __blkdev_get(bdev, mode, 0);
NeilBrown37be4122006-12-08 02:36:16 -08001460}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461EXPORT_SYMBOL(blkdev_get);
1462
1463static int blkdev_open(struct inode * inode, struct file * filp)
1464{
Tejun Heo6b4517a2010-04-07 18:53:59 +09001465 struct block_device *whole = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 struct block_device *bdev;
1467 int res;
1468
1469 /*
1470 * Preserve backwards compatibility and allow large file access
1471 * even if userspace doesn't ask for it explicitly. Some mkfs
1472 * binary needs it. We might want to drop this workaround
1473 * during an unstable branch.
1474 */
1475 filp->f_flags |= O_LARGEFILE;
1476
Al Viro572c4892007-10-08 13:24:05 -04001477 if (filp->f_flags & O_NDELAY)
1478 filp->f_mode |= FMODE_NDELAY;
1479 if (filp->f_flags & O_EXCL)
1480 filp->f_mode |= FMODE_EXCL;
1481 if ((filp->f_flags & O_ACCMODE) == 3)
1482 filp->f_mode |= FMODE_WRITE_IOCTL;
1483
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 bdev = bd_acquire(inode);
Pavel Emelianov6a2aae02006-10-28 10:38:33 -07001485 if (bdev == NULL)
1486 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487
Tejun Heo6b4517a2010-04-07 18:53:59 +09001488 if (filp->f_mode & FMODE_EXCL) {
1489 whole = bd_start_claiming(bdev, filp);
1490 if (IS_ERR(whole)) {
1491 bdput(bdev);
1492 return PTR_ERR(whole);
1493 }
1494 }
1495
Al Viro572c4892007-10-08 13:24:05 -04001496 filp->f_mapping = bdev->bd_inode->i_mapping;
1497
1498 res = blkdev_get(bdev, filp->f_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499
Tejun Heo6b4517a2010-04-07 18:53:59 +09001500 if (whole) {
1501 if (res == 0)
Nick Pigginb0018362010-05-26 01:51:19 +10001502 bd_finish_claiming(bdev, whole, filp);
Tejun Heo6b4517a2010-04-07 18:53:59 +09001503 else
1504 bd_abort_claiming(whole, filp);
Christoph Hellwigebbefc02008-11-05 14:54:41 +01001505 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 return res;
1508}
1509
Al Viro9a1c3542008-02-22 20:40:24 -05001510static int __blkdev_put(struct block_device *bdev, fmode_t mode, int for_part)
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001511{
1512 int ret = 0;
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001513 struct gendisk *disk = bdev->bd_disk;
NeilBrown37be4122006-12-08 02:36:16 -08001514 struct block_device *victim = NULL;
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001515
NeilBrown6796bf52006-12-08 02:36:16 -08001516 mutex_lock_nested(&bdev->bd_mutex, for_part);
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001517 lock_kernel();
NeilBrown37be4122006-12-08 02:36:16 -08001518 if (for_part)
1519 bdev->bd_part_count--;
1520
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001521 if (!--bdev->bd_openers) {
1522 sync_blockdev(bdev);
1523 kill_bdev(bdev);
1524 }
1525 if (bdev->bd_contains == bdev) {
1526 if (disk->fops->release)
Al Viro9a1c3542008-02-22 20:40:24 -05001527 ret = disk->fops->release(disk, mode);
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001528 }
1529 if (!bdev->bd_openers) {
1530 struct module *owner = disk->fops->owner;
1531
1532 put_disk(disk);
1533 module_put(owner);
Tejun Heo0762b8b2008-08-25 19:56:12 +09001534 disk_put_part(bdev->bd_part);
1535 bdev->bd_part = NULL;
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001536 bdev->bd_disk = NULL;
1537 bdev->bd_inode->i_data.backing_dev_info = &default_backing_dev_info;
NeilBrown37be4122006-12-08 02:36:16 -08001538 if (bdev != bdev->bd_contains)
1539 victim = bdev->bd_contains;
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001540 bdev->bd_contains = NULL;
1541 }
1542 unlock_kernel();
1543 mutex_unlock(&bdev->bd_mutex);
1544 bdput(bdev);
NeilBrown37be4122006-12-08 02:36:16 -08001545 if (victim)
Al Viro9a1c3542008-02-22 20:40:24 -05001546 __blkdev_put(victim, mode, 1);
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001547 return ret;
1548}
1549
Al Viro9a1c3542008-02-22 20:40:24 -05001550int blkdev_put(struct block_device *bdev, fmode_t mode)
NeilBrown37be4122006-12-08 02:36:16 -08001551{
Al Viro9a1c3542008-02-22 20:40:24 -05001552 return __blkdev_put(bdev, mode, 0);
NeilBrown37be4122006-12-08 02:36:16 -08001553}
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001554EXPORT_SYMBOL(blkdev_put);
1555
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556static int blkdev_close(struct inode * inode, struct file * filp)
1557{
1558 struct block_device *bdev = I_BDEV(filp->f_mapping->host);
1559 if (bdev->bd_holder == filp)
1560 bd_release(bdev);
Al Viro9a1c3542008-02-22 20:40:24 -05001561 return blkdev_put(bdev, filp->f_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562}
1563
Arnd Bergmannbb93e3a2005-06-23 00:10:15 -07001564static long block_ioctl(struct file *file, unsigned cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565{
Al Viro56b26ad2008-09-19 03:17:36 -04001566 struct block_device *bdev = I_BDEV(file->f_mapping->host);
1567 fmode_t mode = file->f_mode;
Christoph Hellwigfd4ce1a2008-11-05 14:58:42 +01001568
1569 /*
1570 * O_NDELAY can be altered using fcntl(.., F_SETFL, ..), so we have
1571 * to updated it before every ioctl.
1572 */
Al Viro56b26ad2008-09-19 03:17:36 -04001573 if (file->f_flags & O_NDELAY)
Christoph Hellwigfd4ce1a2008-11-05 14:58:42 +01001574 mode |= FMODE_NDELAY;
1575 else
1576 mode &= ~FMODE_NDELAY;
1577
Al Viro56b26ad2008-09-19 03:17:36 -04001578 return blkdev_ioctl(bdev, mode, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579}
1580
Theodore Ts'o87d8fe12009-01-03 09:47:09 -05001581/*
Christoph Hellwigeef99382009-08-20 17:43:41 +02001582 * Write data to the block device. Only intended for the block device itself
1583 * and the raw driver which basically is a fake block device.
1584 *
1585 * Does not take i_mutex for the write and thus is not for general purpose
1586 * use.
1587 */
1588ssize_t blkdev_aio_write(struct kiocb *iocb, const struct iovec *iov,
1589 unsigned long nr_segs, loff_t pos)
1590{
1591 struct file *file = iocb->ki_filp;
1592 ssize_t ret;
1593
1594 BUG_ON(iocb->ki_pos != pos);
1595
1596 ret = __generic_file_aio_write(iocb, iov, nr_segs, &iocb->ki_pos);
1597 if (ret > 0 || ret == -EIOCBQUEUED) {
1598 ssize_t err;
1599
1600 err = generic_write_sync(file, pos, ret);
1601 if (err < 0 && ret > 0)
1602 ret = err;
1603 }
1604 return ret;
1605}
1606EXPORT_SYMBOL_GPL(blkdev_aio_write);
1607
1608/*
Theodore Ts'o87d8fe12009-01-03 09:47:09 -05001609 * Try to release a page associated with block device when the system
1610 * is under memory pressure.
1611 */
1612static int blkdev_releasepage(struct page *page, gfp_t wait)
1613{
1614 struct super_block *super = BDEV_I(page->mapping->host)->bdev.bd_super;
1615
1616 if (super && super->s_op->bdev_try_to_free_page)
1617 return super->s_op->bdev_try_to_free_page(super, page, wait);
1618
1619 return try_to_free_buffers(page);
1620}
1621
Adrian Bunk4c54ac62008-02-18 13:48:31 +01001622static const struct address_space_operations def_blk_aops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 .readpage = blkdev_readpage,
1624 .writepage = blkdev_writepage,
1625 .sync_page = block_sync_page,
Nick Piggin6272b5a2007-10-16 01:25:04 -07001626 .write_begin = blkdev_write_begin,
1627 .write_end = blkdev_write_end,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 .writepages = generic_writepages,
Theodore Ts'o87d8fe12009-01-03 09:47:09 -05001629 .releasepage = blkdev_releasepage,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 .direct_IO = blkdev_direct_IO,
1631};
1632
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08001633const struct file_operations def_blk_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 .open = blkdev_open,
1635 .release = blkdev_close,
1636 .llseek = block_llseek,
Badari Pulavarty543ade12006-09-30 23:28:48 -07001637 .read = do_sync_read,
1638 .write = do_sync_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 .aio_read = generic_file_aio_read,
Christoph Hellwigeef99382009-08-20 17:43:41 +02001640 .aio_write = blkdev_aio_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 .mmap = generic_file_mmap,
Andrew Mortonb1dd3b22010-04-06 14:35:00 -07001642 .fsync = blkdev_fsync,
Arnd Bergmannbb93e3a2005-06-23 00:10:15 -07001643 .unlocked_ioctl = block_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644#ifdef CONFIG_COMPAT
1645 .compat_ioctl = compat_blkdev_ioctl,
1646#endif
Jens Axboe7f9c51f2006-05-01 19:59:32 +02001647 .splice_read = generic_file_splice_read,
1648 .splice_write = generic_file_splice_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649};
1650
1651int ioctl_by_bdev(struct block_device *bdev, unsigned cmd, unsigned long arg)
1652{
1653 int res;
1654 mm_segment_t old_fs = get_fs();
1655 set_fs(KERNEL_DS);
Al Viro56b26ad2008-09-19 03:17:36 -04001656 res = blkdev_ioctl(bdev, 0, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657 set_fs(old_fs);
1658 return res;
1659}
1660
1661EXPORT_SYMBOL(ioctl_by_bdev);
1662
1663/**
1664 * lookup_bdev - lookup a struct block_device by name
Randy Dunlap94e29592009-01-06 14:41:15 -08001665 * @pathname: special file representing the block device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 *
Randy Dunlap57d1b532008-10-09 10:42:38 +02001667 * Get a reference to the blockdevice at @pathname in the current
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 * namespace if possible and return it. Return ERR_PTR(error)
1669 * otherwise.
1670 */
Al Viro421748e2008-08-02 01:04:36 -04001671struct block_device *lookup_bdev(const char *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672{
1673 struct block_device *bdev;
1674 struct inode *inode;
Al Viro421748e2008-08-02 01:04:36 -04001675 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 int error;
1677
Al Viro421748e2008-08-02 01:04:36 -04001678 if (!pathname || !*pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679 return ERR_PTR(-EINVAL);
1680
Al Viro421748e2008-08-02 01:04:36 -04001681 error = kern_path(pathname, LOOKUP_FOLLOW, &path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682 if (error)
1683 return ERR_PTR(error);
1684
Al Viro421748e2008-08-02 01:04:36 -04001685 inode = path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686 error = -ENOTBLK;
1687 if (!S_ISBLK(inode->i_mode))
1688 goto fail;
1689 error = -EACCES;
Al Viro421748e2008-08-02 01:04:36 -04001690 if (path.mnt->mnt_flags & MNT_NODEV)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 goto fail;
1692 error = -ENOMEM;
1693 bdev = bd_acquire(inode);
1694 if (!bdev)
1695 goto fail;
1696out:
Al Viro421748e2008-08-02 01:04:36 -04001697 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 return bdev;
1699fail:
1700 bdev = ERR_PTR(error);
1701 goto out;
1702}
Al Virod5686b42008-08-01 05:00:11 -04001703EXPORT_SYMBOL(lookup_bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704
1705/**
Al Viro30c40d22008-02-22 19:50:45 -05001706 * open_bdev_exclusive - open a block device by name and set it up for use
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 *
1708 * @path: special file representing the block device
Al Viro30c40d22008-02-22 19:50:45 -05001709 * @mode: FMODE_... combination to pass be used
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 * @holder: owner for exclusion
1711 *
1712 * Open the blockdevice described by the special file at @path, claim it
1713 * for the @holder.
1714 */
Al Viro30c40d22008-02-22 19:50:45 -05001715struct block_device *open_bdev_exclusive(const char *path, fmode_t mode, void *holder)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716{
Tejun Heo6b4517a2010-04-07 18:53:59 +09001717 struct block_device *bdev, *whole;
1718 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719
1720 bdev = lookup_bdev(path);
1721 if (IS_ERR(bdev))
1722 return bdev;
1723
Tejun Heo6b4517a2010-04-07 18:53:59 +09001724 whole = bd_start_claiming(bdev, holder);
1725 if (IS_ERR(whole)) {
1726 bdput(bdev);
1727 return whole;
1728 }
1729
Al Viro572c4892007-10-08 13:24:05 -04001730 error = blkdev_get(bdev, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 if (error)
Tejun Heo6b4517a2010-04-07 18:53:59 +09001732 goto out_abort_claiming;
1733
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 error = -EACCES;
Al Viro30c40d22008-02-22 19:50:45 -05001735 if ((mode & FMODE_WRITE) && bdev_read_only(bdev))
Tejun Heo6b4517a2010-04-07 18:53:59 +09001736 goto out_blkdev_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737
Nick Pigginb0018362010-05-26 01:51:19 +10001738 bd_finish_claiming(bdev, whole, holder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 return bdev;
Tejun Heo6b4517a2010-04-07 18:53:59 +09001740
1741out_blkdev_put:
Al Viro9a1c3542008-02-22 20:40:24 -05001742 blkdev_put(bdev, mode);
Tejun Heo6b4517a2010-04-07 18:53:59 +09001743out_abort_claiming:
1744 bd_abort_claiming(whole, holder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 return ERR_PTR(error);
1746}
1747
Al Viro30c40d22008-02-22 19:50:45 -05001748EXPORT_SYMBOL(open_bdev_exclusive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749
1750/**
Al Viro30c40d22008-02-22 19:50:45 -05001751 * close_bdev_exclusive - close a blockdevice opened by open_bdev_exclusive()
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 *
1753 * @bdev: blockdevice to close
Al Viro30c40d22008-02-22 19:50:45 -05001754 * @mode: mode, must match that used to open.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 *
Al Viro30c40d22008-02-22 19:50:45 -05001756 * This is the counterpart to open_bdev_exclusive().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 */
Al Viro30c40d22008-02-22 19:50:45 -05001758void close_bdev_exclusive(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759{
1760 bd_release(bdev);
Al Viro30c40d22008-02-22 19:50:45 -05001761 blkdev_put(bdev, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762}
1763
Al Viro30c40d22008-02-22 19:50:45 -05001764EXPORT_SYMBOL(close_bdev_exclusive);
David Howellsb71e8a42006-08-29 19:06:11 +01001765
1766int __invalidate_device(struct block_device *bdev)
1767{
1768 struct super_block *sb = get_super(bdev);
1769 int res = 0;
1770
1771 if (sb) {
1772 /*
1773 * no need to lock the super, get_super holds the
1774 * read mutex so the filesystem cannot go away
1775 * under us (->put_super runs with the write lock
1776 * hold).
1777 */
1778 shrink_dcache_sb(sb);
1779 res = invalidate_inodes(sb);
1780 drop_super(sb);
1781 }
Peter Zijlstraf98393a2007-05-06 14:49:54 -07001782 invalidate_bdev(bdev);
David Howellsb71e8a42006-08-29 19:06:11 +01001783 return res;
1784}
1785EXPORT_SYMBOL(__invalidate_device);