blob: b3c1efff5e1db0180c610bf0df465527587c934c [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>
David Howells811d7362006-08-29 19:06:09 +010021#include <linux/writeback.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/mpage.h>
23#include <linux/mount.h>
24#include <linux/uio.h>
25#include <linux/namei.h>
Vignesh Babu BM1368c4f2007-05-08 00:24:32 -070026#include <linux/log2.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <asm/uaccess.h>
David Howells07f3f052006-09-30 20:52:18 +020028#include "internal.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
30struct bdev_inode {
31 struct block_device bdev;
32 struct inode vfs_inode;
33};
34
Adrian Bunk4c54ac62008-02-18 13:48:31 +010035static const struct address_space_operations def_blk_aops;
36
Linus Torvalds1da177e2005-04-16 15:20:36 -070037static inline struct bdev_inode *BDEV_I(struct inode *inode)
38{
39 return container_of(inode, struct bdev_inode, vfs_inode);
40}
41
42inline struct block_device *I_BDEV(struct inode *inode)
43{
44 return &BDEV_I(inode)->bdev;
45}
46
47EXPORT_SYMBOL(I_BDEV);
48
49static sector_t max_block(struct block_device *bdev)
50{
51 sector_t retval = ~((sector_t)0);
52 loff_t sz = i_size_read(bdev->bd_inode);
53
54 if (sz) {
55 unsigned int size = block_size(bdev);
56 unsigned int sizebits = blksize_bits(size);
57 retval = (sz >> sizebits);
58 }
59 return retval;
60}
61
Peter Zijlstraf9a14392007-05-06 14:49:55 -070062/* Kill _all_ buffers and pagecache , dirty or not.. */
Linus Torvalds1da177e2005-04-16 15:20:36 -070063static void kill_bdev(struct block_device *bdev)
64{
Peter Zijlstraf9a14392007-05-06 14:49:55 -070065 if (bdev->bd_inode->i_mapping->nrpages == 0)
66 return;
67 invalidate_bh_lrus();
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 truncate_inode_pages(bdev->bd_inode->i_mapping, 0);
69}
70
71int set_blocksize(struct block_device *bdev, int size)
72{
73 /* Size must be a power of two, and between 512 and PAGE_SIZE */
Vignesh Babu BM1368c4f2007-05-08 00:24:32 -070074 if (size > PAGE_SIZE || size < 512 || !is_power_of_2(size))
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 return -EINVAL;
76
77 /* Size cannot be smaller than the size supported by the device */
78 if (size < bdev_hardsect_size(bdev))
79 return -EINVAL;
80
81 /* Don't change the size if it is same as current */
82 if (bdev->bd_block_size != size) {
83 sync_blockdev(bdev);
84 bdev->bd_block_size = size;
85 bdev->bd_inode->i_blkbits = blksize_bits(size);
86 kill_bdev(bdev);
87 }
88 return 0;
89}
90
91EXPORT_SYMBOL(set_blocksize);
92
93int sb_set_blocksize(struct super_block *sb, int size)
94{
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 if (set_blocksize(sb->s_bdev, size))
96 return 0;
97 /* If we get here, we know size is power of two
98 * and it's value is between 512 and PAGE_SIZE */
99 sb->s_blocksize = size;
Coywolf Qi Hunt38885bd2006-03-24 03:18:05 -0800100 sb->s_blocksize_bits = blksize_bits(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 return sb->s_blocksize;
102}
103
104EXPORT_SYMBOL(sb_set_blocksize);
105
106int sb_min_blocksize(struct super_block *sb, int size)
107{
108 int minsize = bdev_hardsect_size(sb->s_bdev);
109 if (size < minsize)
110 size = minsize;
111 return sb_set_blocksize(sb, size);
112}
113
114EXPORT_SYMBOL(sb_min_blocksize);
115
116static int
117blkdev_get_block(struct inode *inode, sector_t iblock,
118 struct buffer_head *bh, int create)
119{
120 if (iblock >= max_block(I_BDEV(inode))) {
121 if (create)
122 return -EIO;
123
124 /*
125 * for reads, we're just trying to fill a partial page.
126 * return a hole, they will have to call get_block again
127 * before they can fill it, and they will get -EIO at that
128 * time
129 */
130 return 0;
131 }
132 bh->b_bdev = I_BDEV(inode);
133 bh->b_blocknr = iblock;
134 set_buffer_mapped(bh);
135 return 0;
136}
137
Andrew Mortonb2e895d2007-02-03 01:14:01 -0800138static int
139blkdev_get_blocks(struct inode *inode, sector_t iblock,
140 struct buffer_head *bh, int create)
141{
142 sector_t end_block = max_block(I_BDEV(inode));
143 unsigned long max_blocks = bh->b_size >> inode->i_blkbits;
144
145 if ((iblock + max_blocks) > end_block) {
146 max_blocks = end_block - iblock;
147 if ((long)max_blocks <= 0) {
148 if (create)
149 return -EIO; /* write fully beyond EOF */
150 /*
151 * It is a read which is fully beyond EOF. We return
152 * a !buffer_mapped buffer
153 */
154 max_blocks = 0;
155 }
156 }
157
158 bh->b_bdev = I_BDEV(inode);
159 bh->b_blocknr = iblock;
160 bh->b_size = max_blocks << inode->i_blkbits;
161 if (max_blocks)
162 set_buffer_mapped(bh);
163 return 0;
164}
165
166static ssize_t
167blkdev_direct_IO(int rw, struct kiocb *iocb, const struct iovec *iov,
168 loff_t offset, unsigned long nr_segs)
169{
170 struct file *file = iocb->ki_filp;
171 struct inode *inode = file->f_mapping->host;
172
173 return blockdev_direct_IO_no_locking(rw, iocb, inode, I_BDEV(inode),
174 iov, offset, nr_segs, blkdev_get_blocks, NULL);
175}
176
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177static int blkdev_writepage(struct page *page, struct writeback_control *wbc)
178{
179 return block_write_full_page(page, blkdev_get_block, wbc);
180}
181
182static int blkdev_readpage(struct file * file, struct page * page)
183{
184 return block_read_full_page(page, blkdev_get_block);
185}
186
Nick Piggin6272b5a2007-10-16 01:25:04 -0700187static int blkdev_write_begin(struct file *file, struct address_space *mapping,
188 loff_t pos, unsigned len, unsigned flags,
189 struct page **pagep, void **fsdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190{
Nick Piggin6272b5a2007-10-16 01:25:04 -0700191 *pagep = NULL;
192 return block_write_begin(file, mapping, pos, len, flags, pagep, fsdata,
193 blkdev_get_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194}
195
Nick Piggin6272b5a2007-10-16 01:25:04 -0700196static int blkdev_write_end(struct file *file, struct address_space *mapping,
197 loff_t pos, unsigned len, unsigned copied,
198 struct page *page, void *fsdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199{
Nick Piggin6272b5a2007-10-16 01:25:04 -0700200 int ret;
201 ret = block_write_end(file, mapping, pos, len, copied, page, fsdata);
202
203 unlock_page(page);
204 page_cache_release(page);
205
206 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207}
208
209/*
210 * private llseek:
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800211 * for a block special file file->f_path.dentry->d_inode->i_size is zero
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 * so we compute the size by hand (just as in block_read/write above)
213 */
214static loff_t block_llseek(struct file *file, loff_t offset, int origin)
215{
216 struct inode *bd_inode = file->f_mapping->host;
217 loff_t size;
218 loff_t retval;
219
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800220 mutex_lock(&bd_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 size = i_size_read(bd_inode);
222
223 switch (origin) {
224 case 2:
225 offset += size;
226 break;
227 case 1:
228 offset += file->f_pos;
229 }
230 retval = -EINVAL;
231 if (offset >= 0 && offset <= size) {
232 if (offset != file->f_pos) {
233 file->f_pos = offset;
234 }
235 retval = offset;
236 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800237 mutex_unlock(&bd_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 return retval;
239}
240
241/*
242 * Filp is never NULL; the only case when ->fsync() is called with
243 * NULL first argument is nfsd_sync_dir() and that's not a directory.
244 */
245
246static int block_fsync(struct file *filp, struct dentry *dentry, int datasync)
247{
248 return sync_blockdev(I_BDEV(filp->f_mapping->host));
249}
250
251/*
252 * pseudo-fs
253 */
254
255static __cacheline_aligned_in_smp DEFINE_SPINLOCK(bdev_lock);
Christoph Lametere18b8902006-12-06 20:33:20 -0800256static struct kmem_cache * bdev_cachep __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
258static struct inode *bdev_alloc_inode(struct super_block *sb)
259{
Christoph Lametere94b1762006-12-06 20:33:17 -0800260 struct bdev_inode *ei = kmem_cache_alloc(bdev_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 if (!ei)
262 return NULL;
263 return &ei->vfs_inode;
264}
265
266static void bdev_destroy_inode(struct inode *inode)
267{
268 struct bdev_inode *bdi = BDEV_I(inode);
269
270 bdi->bdev.bd_inode_backing_dev_info = NULL;
271 kmem_cache_free(bdev_cachep, bdi);
272}
273
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700274static void init_once(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275{
276 struct bdev_inode *ei = (struct bdev_inode *) foo;
277 struct block_device *bdev = &ei->bdev;
278
Christoph Lametera35afb82007-05-16 22:10:57 -0700279 memset(bdev, 0, sizeof(*bdev));
280 mutex_init(&bdev->bd_mutex);
281 sema_init(&bdev->bd_mount_sem, 1);
282 INIT_LIST_HEAD(&bdev->bd_inodes);
283 INIT_LIST_HEAD(&bdev->bd_list);
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800284#ifdef CONFIG_SYSFS
Christoph Lametera35afb82007-05-16 22:10:57 -0700285 INIT_LIST_HEAD(&bdev->bd_holder_list);
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800286#endif
Christoph Lametera35afb82007-05-16 22:10:57 -0700287 inode_init_once(&ei->vfs_inode);
Takashi Satofcccf502009-01-09 16:40:59 -0800288 /* Initialize mutex for freeze. */
289 mutex_init(&bdev->bd_fsfreeze_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290}
291
292static inline void __bd_forget(struct inode *inode)
293{
294 list_del_init(&inode->i_devices);
295 inode->i_bdev = NULL;
296 inode->i_mapping = &inode->i_data;
297}
298
299static void bdev_clear_inode(struct inode *inode)
300{
301 struct block_device *bdev = &BDEV_I(inode)->bdev;
302 struct list_head *p;
303 spin_lock(&bdev_lock);
304 while ( (p = bdev->bd_inodes.next) != &bdev->bd_inodes ) {
305 __bd_forget(list_entry(p, struct inode, i_devices));
306 }
307 list_del_init(&bdev->bd_list);
308 spin_unlock(&bdev_lock);
309}
310
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800311static const struct super_operations bdev_sops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 .statfs = simple_statfs,
313 .alloc_inode = bdev_alloc_inode,
314 .destroy_inode = bdev_destroy_inode,
315 .drop_inode = generic_delete_inode,
316 .clear_inode = bdev_clear_inode,
317};
318
David Howells454e2392006-06-23 02:02:57 -0700319static int bd_get_sb(struct file_system_type *fs_type,
320 int flags, const char *dev_name, void *data, struct vfsmount *mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321{
David Howells454e2392006-06-23 02:02:57 -0700322 return get_sb_pseudo(fs_type, "bdev:", &bdev_sops, 0x62646576, mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323}
324
325static struct file_system_type bd_type = {
326 .name = "bdev",
327 .get_sb = bd_get_sb,
328 .kill_sb = kill_anon_super,
329};
330
Denis ChengRqc2acf7b2008-12-01 14:34:56 -0800331struct super_block *blockdev_superblock __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
333void __init bdev_cache_init(void)
334{
335 int err;
Denis ChengRqc2acf7b2008-12-01 14:34:56 -0800336 struct vfsmount *bd_mnt;
337
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 bdev_cachep = kmem_cache_create("bdev_cache", sizeof(struct bdev_inode),
Paul Jacksonfffb60f2006-03-24 03:16:06 -0800339 0, (SLAB_HWCACHE_ALIGN|SLAB_RECLAIM_ACCOUNT|
340 SLAB_MEM_SPREAD|SLAB_PANIC),
Paul Mundt20c2df82007-07-20 10:11:58 +0900341 init_once);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 err = register_filesystem(&bd_type);
343 if (err)
344 panic("Cannot register bdev pseudo-fs");
345 bd_mnt = kern_mount(&bd_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 if (IS_ERR(bd_mnt))
347 panic("Cannot create bdev pseudo-fs");
348 blockdev_superblock = bd_mnt->mnt_sb; /* For writeback */
349}
350
351/*
352 * Most likely _very_ bad one - but then it's hardly critical for small
353 * /dev and can be fixed when somebody will need really large one.
354 * Keep in mind that it will be fed through icache hash function too.
355 */
356static inline unsigned long hash(dev_t dev)
357{
358 return MAJOR(dev)+MINOR(dev);
359}
360
361static int bdev_test(struct inode *inode, void *data)
362{
363 return BDEV_I(inode)->bdev.bd_dev == *(dev_t *)data;
364}
365
366static int bdev_set(struct inode *inode, void *data)
367{
368 BDEV_I(inode)->bdev.bd_dev = *(dev_t *)data;
369 return 0;
370}
371
372static LIST_HEAD(all_bdevs);
373
374struct block_device *bdget(dev_t dev)
375{
376 struct block_device *bdev;
377 struct inode *inode;
378
Denis ChengRqc2acf7b2008-12-01 14:34:56 -0800379 inode = iget5_locked(blockdev_superblock, hash(dev),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 bdev_test, bdev_set, &dev);
381
382 if (!inode)
383 return NULL;
384
385 bdev = &BDEV_I(inode)->bdev;
386
387 if (inode->i_state & I_NEW) {
388 bdev->bd_contains = NULL;
389 bdev->bd_inode = inode;
390 bdev->bd_block_size = (1 << inode->i_blkbits);
391 bdev->bd_part_count = 0;
392 bdev->bd_invalidated = 0;
393 inode->i_mode = S_IFBLK;
394 inode->i_rdev = dev;
395 inode->i_bdev = bdev;
396 inode->i_data.a_ops = &def_blk_aops;
397 mapping_set_gfp_mask(&inode->i_data, GFP_USER);
398 inode->i_data.backing_dev_info = &default_backing_dev_info;
399 spin_lock(&bdev_lock);
400 list_add(&bdev->bd_list, &all_bdevs);
401 spin_unlock(&bdev_lock);
402 unlock_new_inode(inode);
403 }
404 return bdev;
405}
406
407EXPORT_SYMBOL(bdget);
408
409long nr_blockdev_pages(void)
410{
Matthias Kaehlcke203a2932007-07-15 23:40:23 -0700411 struct block_device *bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 long ret = 0;
413 spin_lock(&bdev_lock);
Matthias Kaehlcke203a2932007-07-15 23:40:23 -0700414 list_for_each_entry(bdev, &all_bdevs, bd_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 ret += bdev->bd_inode->i_mapping->nrpages;
416 }
417 spin_unlock(&bdev_lock);
418 return ret;
419}
420
421void bdput(struct block_device *bdev)
422{
423 iput(bdev->bd_inode);
424}
425
426EXPORT_SYMBOL(bdput);
427
428static struct block_device *bd_acquire(struct inode *inode)
429{
430 struct block_device *bdev;
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700431
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 spin_lock(&bdev_lock);
433 bdev = inode->i_bdev;
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700434 if (bdev) {
435 atomic_inc(&bdev->bd_inode->i_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 spin_unlock(&bdev_lock);
437 return bdev;
438 }
439 spin_unlock(&bdev_lock);
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700440
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 bdev = bdget(inode->i_rdev);
442 if (bdev) {
443 spin_lock(&bdev_lock);
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700444 if (!inode->i_bdev) {
445 /*
446 * We take an additional bd_inode->i_count for inode,
447 * and it's released in clear_inode() of inode.
448 * So, we can access it via ->i_mapping always
449 * without igrab().
450 */
451 atomic_inc(&bdev->bd_inode->i_count);
452 inode->i_bdev = bdev;
453 inode->i_mapping = bdev->bd_inode->i_mapping;
454 list_add(&inode->i_devices, &bdev->bd_inodes);
455 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 spin_unlock(&bdev_lock);
457 }
458 return bdev;
459}
460
461/* Call when you free inode */
462
463void bd_forget(struct inode *inode)
464{
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700465 struct block_device *bdev = NULL;
466
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 spin_lock(&bdev_lock);
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700468 if (inode->i_bdev) {
Denis ChengRqc2acf7b2008-12-01 14:34:56 -0800469 if (!sb_is_blkdev_sb(inode->i_sb))
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700470 bdev = inode->i_bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 __bd_forget(inode);
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700472 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 spin_unlock(&bdev_lock);
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700474
475 if (bdev)
476 iput(bdev->bd_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477}
478
479int bd_claim(struct block_device *bdev, void *holder)
480{
481 int res;
482 spin_lock(&bdev_lock);
483
484 /* first decide result */
485 if (bdev->bd_holder == holder)
486 res = 0; /* already a holder */
487 else if (bdev->bd_holder != NULL)
488 res = -EBUSY; /* held by someone else */
489 else if (bdev->bd_contains == bdev)
490 res = 0; /* is a whole device which isn't held */
491
492 else if (bdev->bd_contains->bd_holder == bd_claim)
493 res = 0; /* is a partition of a device that is being partitioned */
494 else if (bdev->bd_contains->bd_holder != NULL)
495 res = -EBUSY; /* is a partition of a held device */
496 else
497 res = 0; /* is a partition of an un-held device */
498
499 /* now impose change */
500 if (res==0) {
501 /* note that for a whole device bd_holders
502 * will be incremented twice, and bd_holder will
503 * be set to bd_claim before being set to holder
504 */
505 bdev->bd_contains->bd_holders ++;
506 bdev->bd_contains->bd_holder = bd_claim;
507 bdev->bd_holders++;
508 bdev->bd_holder = holder;
509 }
510 spin_unlock(&bdev_lock);
511 return res;
512}
513
514EXPORT_SYMBOL(bd_claim);
515
516void bd_release(struct block_device *bdev)
517{
518 spin_lock(&bdev_lock);
519 if (!--bdev->bd_contains->bd_holders)
520 bdev->bd_contains->bd_holder = NULL;
521 if (!--bdev->bd_holders)
522 bdev->bd_holder = NULL;
523 spin_unlock(&bdev_lock);
524}
525
526EXPORT_SYMBOL(bd_release);
527
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800528#ifdef CONFIG_SYSFS
529/*
530 * Functions for bd_claim_by_kobject / bd_release_from_kobject
531 *
532 * If a kobject is passed to bd_claim_by_kobject()
533 * and the kobject has a parent directory,
534 * following symlinks are created:
535 * o from the kobject to the claimed bdev
536 * o from "holders" directory of the bdev to the parent of the kobject
537 * bd_release_from_kobject() removes these symlinks.
538 *
539 * Example:
540 * If /dev/dm-0 maps to /dev/sda, kobject corresponding to
541 * /sys/block/dm-0/slaves is passed to bd_claim_by_kobject(), then:
542 * /sys/block/dm-0/slaves/sda --> /sys/block/sda
543 * /sys/block/sda/holders/dm-0 --> /sys/block/dm-0
544 */
545
Andrew Morton4d7dd8f2006-09-29 01:58:56 -0700546static int add_symlink(struct kobject *from, struct kobject *to)
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800547{
548 if (!from || !to)
Andrew Morton4d7dd8f2006-09-29 01:58:56 -0700549 return 0;
550 return sysfs_create_link(from, to, kobject_name(to));
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800551}
552
553static void del_symlink(struct kobject *from, struct kobject *to)
554{
555 if (!from || !to)
556 return;
557 sysfs_remove_link(from, kobject_name(to));
558}
559
560/*
561 * 'struct bd_holder' contains pointers to kobjects symlinked by
562 * bd_claim_by_kobject.
563 * It's connected to bd_holder_list which is protected by bdev->bd_sem.
564 */
565struct bd_holder {
566 struct list_head list; /* chain of holders of the bdev */
567 int count; /* references from the holder */
568 struct kobject *sdir; /* holder object, e.g. "/block/dm-0/slaves" */
569 struct kobject *hdev; /* e.g. "/block/dm-0" */
570 struct kobject *hdir; /* e.g. "/block/sda/holders" */
571 struct kobject *sdev; /* e.g. "/block/sda" */
572};
573
574/*
575 * Get references of related kobjects at once.
576 * Returns 1 on success. 0 on failure.
577 *
578 * Should call bd_holder_release_dirs() after successful use.
579 */
580static int bd_holder_grab_dirs(struct block_device *bdev,
581 struct bd_holder *bo)
582{
583 if (!bdev || !bo)
584 return 0;
585
586 bo->sdir = kobject_get(bo->sdir);
587 if (!bo->sdir)
588 return 0;
589
590 bo->hdev = kobject_get(bo->sdir->parent);
591 if (!bo->hdev)
592 goto fail_put_sdir;
593
Tejun Heo0762b8b2008-08-25 19:56:12 +0900594 bo->sdev = kobject_get(&part_to_dev(bdev->bd_part)->kobj);
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800595 if (!bo->sdev)
596 goto fail_put_hdev;
597
Tejun Heo4c465012008-08-25 19:56:11 +0900598 bo->hdir = kobject_get(bdev->bd_part->holder_dir);
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800599 if (!bo->hdir)
600 goto fail_put_sdev;
601
602 return 1;
603
604fail_put_sdev:
605 kobject_put(bo->sdev);
606fail_put_hdev:
607 kobject_put(bo->hdev);
608fail_put_sdir:
609 kobject_put(bo->sdir);
610
611 return 0;
612}
613
614/* Put references of related kobjects at once. */
615static void bd_holder_release_dirs(struct bd_holder *bo)
616{
617 kobject_put(bo->hdir);
618 kobject_put(bo->sdev);
619 kobject_put(bo->hdev);
620 kobject_put(bo->sdir);
621}
622
623static struct bd_holder *alloc_bd_holder(struct kobject *kobj)
624{
625 struct bd_holder *bo;
626
627 bo = kzalloc(sizeof(*bo), GFP_KERNEL);
628 if (!bo)
629 return NULL;
630
631 bo->count = 1;
632 bo->sdir = kobj;
633
634 return bo;
635}
636
637static void free_bd_holder(struct bd_holder *bo)
638{
639 kfree(bo);
640}
641
642/**
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -0500643 * find_bd_holder - find matching struct bd_holder from the block device
644 *
645 * @bdev: struct block device to be searched
646 * @bo: target struct bd_holder
647 *
648 * Returns matching entry with @bo in @bdev->bd_holder_list.
649 * If found, increment the reference count and return the pointer.
650 * If not found, returns NULL.
651 */
Andrew Morton36a561d2006-10-30 22:07:03 -0800652static struct bd_holder *find_bd_holder(struct block_device *bdev,
653 struct bd_holder *bo)
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -0500654{
655 struct bd_holder *tmp;
656
657 list_for_each_entry(tmp, &bdev->bd_holder_list, list)
658 if (tmp->sdir == bo->sdir) {
659 tmp->count++;
660 return tmp;
661 }
662
663 return NULL;
664}
665
666/**
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800667 * add_bd_holder - create sysfs symlinks for bd_claim() relationship
668 *
669 * @bdev: block device to be bd_claimed
670 * @bo: preallocated and initialized by alloc_bd_holder()
671 *
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -0500672 * Add @bo to @bdev->bd_holder_list, create symlinks.
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800673 *
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -0500674 * Returns 0 if symlinks are created.
675 * Returns -ve if something fails.
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800676 */
677static int add_bd_holder(struct block_device *bdev, struct bd_holder *bo)
678{
Johannes Weiner4e916722007-07-15 23:41:25 -0700679 int err;
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800680
681 if (!bo)
Andrew Morton4d7dd8f2006-09-29 01:58:56 -0700682 return -EINVAL;
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800683
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800684 if (!bd_holder_grab_dirs(bdev, bo))
Andrew Morton4d7dd8f2006-09-29 01:58:56 -0700685 return -EBUSY;
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800686
Johannes Weiner4e916722007-07-15 23:41:25 -0700687 err = add_symlink(bo->sdir, bo->sdev);
688 if (err)
689 return err;
690
691 err = add_symlink(bo->hdir, bo->hdev);
692 if (err) {
693 del_symlink(bo->sdir, bo->sdev);
694 return err;
Andrew Morton4d7dd8f2006-09-29 01:58:56 -0700695 }
Johannes Weiner4e916722007-07-15 23:41:25 -0700696
697 list_add_tail(&bo->list, &bdev->bd_holder_list);
698 return 0;
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800699}
700
701/**
702 * del_bd_holder - delete sysfs symlinks for bd_claim() relationship
703 *
704 * @bdev: block device to be bd_claimed
705 * @kobj: holder's kobject
706 *
707 * If there is matching entry with @kobj in @bdev->bd_holder_list
708 * and no other bd_claim() from the same kobject,
709 * remove the struct bd_holder from the list, delete symlinks for it.
710 *
711 * Returns a pointer to the struct bd_holder when it's removed from the list
712 * and ready to be freed.
713 * Returns NULL if matching claim isn't found or there is other bd_claim()
714 * by the same kobject.
715 */
716static struct bd_holder *del_bd_holder(struct block_device *bdev,
717 struct kobject *kobj)
718{
719 struct bd_holder *bo;
720
721 list_for_each_entry(bo, &bdev->bd_holder_list, list) {
722 if (bo->sdir == kobj) {
723 bo->count--;
724 BUG_ON(bo->count < 0);
725 if (!bo->count) {
726 list_del(&bo->list);
727 del_symlink(bo->sdir, bo->sdev);
728 del_symlink(bo->hdir, bo->hdev);
729 bd_holder_release_dirs(bo);
730 return bo;
731 }
732 break;
733 }
734 }
735
736 return NULL;
737}
738
739/**
740 * bd_claim_by_kobject - bd_claim() with additional kobject signature
741 *
742 * @bdev: block device to be claimed
743 * @holder: holder's signature
744 * @kobj: holder's kobject
745 *
746 * Do bd_claim() and if it succeeds, create sysfs symlinks between
747 * the bdev and the holder's kobject.
748 * Use bd_release_from_kobject() when relesing the claimed bdev.
749 *
750 * Returns 0 on success. (same as bd_claim())
751 * Returns errno on failure.
752 */
753static int bd_claim_by_kobject(struct block_device *bdev, void *holder,
754 struct kobject *kobj)
755{
Johannes Weiner4e916722007-07-15 23:41:25 -0700756 int err;
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -0500757 struct bd_holder *bo, *found;
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800758
759 if (!kobj)
760 return -EINVAL;
761
762 bo = alloc_bd_holder(kobj);
763 if (!bo)
764 return -ENOMEM;
765
Peter Zijlstra2e7b6512006-12-08 02:36:13 -0800766 mutex_lock(&bdev->bd_mutex);
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -0500767
Johannes Weiner4e916722007-07-15 23:41:25 -0700768 err = bd_claim(bdev, holder);
769 if (err)
Andrew Morton4210df22007-07-15 23:41:28 -0700770 goto fail;
Johannes Weiner4e916722007-07-15 23:41:25 -0700771
772 found = find_bd_holder(bdev, bo);
773 if (found)
Andrew Morton4210df22007-07-15 23:41:28 -0700774 goto fail;
Johannes Weiner4e916722007-07-15 23:41:25 -0700775
776 err = add_bd_holder(bdev, bo);
777 if (err)
778 bd_release(bdev);
Andrew Morton4210df22007-07-15 23:41:28 -0700779 else
780 bo = NULL;
781fail:
Jun'ichi Nomurab4cf1b72006-03-27 01:18:00 -0800782 mutex_unlock(&bdev->bd_mutex);
Andrew Morton4210df22007-07-15 23:41:28 -0700783 free_bd_holder(bo);
Johannes Weiner4e916722007-07-15 23:41:25 -0700784 return err;
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800785}
786
787/**
788 * bd_release_from_kobject - bd_release() with additional kobject signature
789 *
790 * @bdev: block device to be released
791 * @kobj: holder's kobject
792 *
793 * Do bd_release() and remove sysfs symlinks created by bd_claim_by_kobject().
794 */
795static void bd_release_from_kobject(struct block_device *bdev,
796 struct kobject *kobj)
797{
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800798 if (!kobj)
799 return;
800
Peter Zijlstra2e7b6512006-12-08 02:36:13 -0800801 mutex_lock(&bdev->bd_mutex);
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800802 bd_release(bdev);
Andrew Morton4210df22007-07-15 23:41:28 -0700803 free_bd_holder(del_bd_holder(bdev, kobj));
Jun'ichi Nomurab4cf1b72006-03-27 01:18:00 -0800804 mutex_unlock(&bdev->bd_mutex);
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800805}
806
807/**
808 * bd_claim_by_disk - wrapper function for bd_claim_by_kobject()
809 *
810 * @bdev: block device to be claimed
811 * @holder: holder's signature
812 * @disk: holder's gendisk
813 *
814 * Call bd_claim_by_kobject() with getting @disk->slave_dir.
815 */
816int bd_claim_by_disk(struct block_device *bdev, void *holder,
817 struct gendisk *disk)
818{
819 return bd_claim_by_kobject(bdev, holder, kobject_get(disk->slave_dir));
820}
821EXPORT_SYMBOL_GPL(bd_claim_by_disk);
822
823/**
824 * bd_release_from_disk - wrapper function for bd_release_from_kobject()
825 *
826 * @bdev: block device to be claimed
827 * @disk: holder's gendisk
828 *
829 * Call bd_release_from_kobject() and put @disk->slave_dir.
830 */
831void bd_release_from_disk(struct block_device *bdev, struct gendisk *disk)
832{
833 bd_release_from_kobject(bdev, disk->slave_dir);
834 kobject_put(disk->slave_dir);
835}
836EXPORT_SYMBOL_GPL(bd_release_from_disk);
837#endif
838
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839/*
840 * Tries to open block device by device number. Use it ONLY if you
841 * really do not have anything better - i.e. when you are behind a
842 * truly sucky interface and all you are given is a device number. _Never_
843 * to be used for internal purposes. If you ever need it - reconsider
844 * your API.
845 */
Al Viroaeb5d722008-09-02 15:28:45 -0400846struct block_device *open_by_devnum(dev_t dev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847{
848 struct block_device *bdev = bdget(dev);
849 int err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 if (bdev)
Al Viro572c4892007-10-08 13:24:05 -0400851 err = blkdev_get(bdev, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 return err ? ERR_PTR(err) : bdev;
853}
854
855EXPORT_SYMBOL(open_by_devnum);
856
Andrew Patterson0c002c22008-09-04 14:27:20 -0600857/**
Andrew Patterson56ade442008-09-04 14:27:40 -0600858 * flush_disk - invalidates all buffer-cache entries on a disk
859 *
860 * @bdev: struct block device to be flushed
861 *
862 * Invalidates all buffer-cache entries on a disk. It should be called
863 * when a disk has been changed -- either by a media change or online
864 * resize.
865 */
866static void flush_disk(struct block_device *bdev)
867{
868 if (__invalidate_device(bdev)) {
869 char name[BDEVNAME_SIZE] = "";
870
871 if (bdev->bd_disk)
872 disk_name(bdev->bd_disk, 0, name);
873 printk(KERN_WARNING "VFS: busy inodes on changed media or "
874 "resized disk %s\n", name);
875 }
876
877 if (!bdev->bd_disk)
878 return;
879 if (disk_partitionable(bdev->bd_disk))
880 bdev->bd_invalidated = 1;
881}
882
883/**
Randy Dunlap57d1b532008-10-09 10:42:38 +0200884 * check_disk_size_change - checks for disk size change and adjusts bdev size.
Andrew Pattersonc3279d12008-09-04 14:27:25 -0600885 * @disk: struct gendisk to check
886 * @bdev: struct bdev to adjust.
887 *
888 * This routine checks to see if the bdev size does not match the disk size
889 * and adjusts it if it differs.
890 */
891void check_disk_size_change(struct gendisk *disk, struct block_device *bdev)
892{
893 loff_t disk_size, bdev_size;
894
895 disk_size = (loff_t)get_capacity(disk) << 9;
896 bdev_size = i_size_read(bdev->bd_inode);
897 if (disk_size != bdev_size) {
898 char name[BDEVNAME_SIZE];
899
900 disk_name(disk, 0, name);
901 printk(KERN_INFO
902 "%s: detected capacity change from %lld to %lld\n",
903 name, bdev_size, disk_size);
904 i_size_write(bdev->bd_inode, disk_size);
Andrew Patterson608aeef2008-09-04 14:27:45 -0600905 flush_disk(bdev);
Andrew Pattersonc3279d12008-09-04 14:27:25 -0600906 }
907}
908EXPORT_SYMBOL(check_disk_size_change);
909
910/**
Randy Dunlap57d1b532008-10-09 10:42:38 +0200911 * revalidate_disk - wrapper for lower-level driver's revalidate_disk call-back
Andrew Patterson0c002c22008-09-04 14:27:20 -0600912 * @disk: struct gendisk to be revalidated
913 *
914 * This routine is a wrapper for lower-level driver's revalidate_disk
915 * call-backs. It is used to do common pre and post operations needed
916 * for all revalidate_disk operations.
917 */
918int revalidate_disk(struct gendisk *disk)
919{
Andrew Pattersonc3279d12008-09-04 14:27:25 -0600920 struct block_device *bdev;
Andrew Patterson0c002c22008-09-04 14:27:20 -0600921 int ret = 0;
922
923 if (disk->fops->revalidate_disk)
924 ret = disk->fops->revalidate_disk(disk);
925
Andrew Pattersonc3279d12008-09-04 14:27:25 -0600926 bdev = bdget_disk(disk, 0);
927 if (!bdev)
928 return ret;
929
930 mutex_lock(&bdev->bd_mutex);
931 check_disk_size_change(disk, bdev);
932 mutex_unlock(&bdev->bd_mutex);
933 bdput(bdev);
Andrew Patterson0c002c22008-09-04 14:27:20 -0600934 return ret;
935}
936EXPORT_SYMBOL(revalidate_disk);
937
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938/*
939 * This routine checks whether a removable media has been changed,
940 * and invalidates all buffer-cache-entries in that case. This
941 * is a relatively slow routine, so we have to try to minimize using
942 * it. Thus it is called only upon a 'mount' or 'open'. This
943 * is the best way of combining speed and utility, I think.
944 * People changing diskettes in the middle of an operation deserve
945 * to lose :-)
946 */
947int check_disk_change(struct block_device *bdev)
948{
949 struct gendisk *disk = bdev->bd_disk;
950 struct block_device_operations * bdops = disk->fops;
951
952 if (!bdops->media_changed)
953 return 0;
954 if (!bdops->media_changed(bdev->bd_disk))
955 return 0;
956
Andrew Patterson56ade442008-09-04 14:27:40 -0600957 flush_disk(bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 if (bdops->revalidate_disk)
959 bdops->revalidate_disk(bdev->bd_disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 return 1;
961}
962
963EXPORT_SYMBOL(check_disk_change);
964
965void bd_set_size(struct block_device *bdev, loff_t size)
966{
967 unsigned bsize = bdev_hardsect_size(bdev);
968
969 bdev->bd_inode->i_size = size;
970 while (bsize < PAGE_CACHE_SIZE) {
971 if (size & bsize)
972 break;
973 bsize <<= 1;
974 }
975 bdev->bd_block_size = bsize;
976 bdev->bd_inode->i_blkbits = blksize_bits(bsize);
977}
978EXPORT_SYMBOL(bd_set_size);
979
Al Viro9a1c3542008-02-22 20:40:24 -0500980static int __blkdev_put(struct block_device *bdev, fmode_t mode, int for_part);
NeilBrown37be4122006-12-08 02:36:16 -0800981
Peter Zijlstra6d740cd2007-02-20 13:58:18 -0800982/*
983 * bd_mutex locking:
984 *
985 * mutex_lock(part->bd_mutex)
986 * mutex_lock_nested(whole->bd_mutex, 1)
987 */
988
Al Viro572c4892007-10-08 13:24:05 -0400989static int __blkdev_get(struct block_device *bdev, fmode_t mode, int for_part)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 struct gendisk *disk;
Pavel Emelyanov7db9cfd2008-06-05 22:46:27 -0700992 int ret;
Tejun Heocf771cb2008-09-03 09:01:09 +0200993 int partno;
Al Virofe6e9c12008-06-23 08:30:55 -0400994 int perm = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995
Al Viro572c4892007-10-08 13:24:05 -0400996 if (mode & FMODE_READ)
Al Virofe6e9c12008-06-23 08:30:55 -0400997 perm |= MAY_READ;
Al Viro572c4892007-10-08 13:24:05 -0400998 if (mode & FMODE_WRITE)
Al Virofe6e9c12008-06-23 08:30:55 -0400999 perm |= MAY_WRITE;
1000 /*
1001 * hooks: /n/, see "layering violations".
1002 */
1003 ret = devcgroup_inode_permission(bdev->bd_inode, perm);
Al Viro82666022008-08-01 05:32:04 -04001004 if (ret != 0) {
1005 bdput(bdev);
Pavel Emelyanov7db9cfd2008-06-05 22:46:27 -07001006 return ret;
Al Viro82666022008-08-01 05:32:04 -04001007 }
Pavel Emelyanov7db9cfd2008-06-05 22:46:27 -07001008
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 lock_kernel();
NeilBrownd3374822009-01-09 08:31:10 +11001010 restart:
Tejun Heo0762b8b2008-08-25 19:56:12 +09001011
Tejun Heo89f97492008-11-05 10:21:06 +01001012 ret = -ENXIO;
Tejun Heocf771cb2008-09-03 09:01:09 +02001013 disk = get_gendisk(bdev->bd_dev, &partno);
Tejun Heo0762b8b2008-08-25 19:56:12 +09001014 if (!disk)
1015 goto out_unlock_kernel;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016
NeilBrown6796bf52006-12-08 02:36:16 -08001017 mutex_lock_nested(&bdev->bd_mutex, for_part);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 if (!bdev->bd_openers) {
1019 bdev->bd_disk = disk;
1020 bdev->bd_contains = bdev;
Tejun Heocf771cb2008-09-03 09:01:09 +02001021 if (!partno) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 struct backing_dev_info *bdi;
Tejun Heo89f97492008-11-05 10:21:06 +01001023
1024 ret = -ENXIO;
1025 bdev->bd_part = disk_get_part(disk, partno);
1026 if (!bdev->bd_part)
1027 goto out_clear;
1028
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 if (disk->fops->open) {
Al Viro572c4892007-10-08 13:24:05 -04001030 ret = disk->fops->open(bdev, mode);
NeilBrownd3374822009-01-09 08:31:10 +11001031 if (ret == -ERESTARTSYS) {
1032 /* Lost a race with 'disk' being
1033 * deleted, try again.
1034 * See md.c
1035 */
1036 disk_put_part(bdev->bd_part);
1037 bdev->bd_part = NULL;
1038 module_put(disk->fops->owner);
1039 put_disk(disk);
1040 bdev->bd_disk = NULL;
1041 mutex_unlock(&bdev->bd_mutex);
1042 goto restart;
1043 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 if (ret)
Tejun Heo0762b8b2008-08-25 19:56:12 +09001045 goto out_clear;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 }
1047 if (!bdev->bd_openers) {
1048 bd_set_size(bdev,(loff_t)get_capacity(disk)<<9);
1049 bdi = blk_get_backing_dev_info(bdev);
1050 if (bdi == NULL)
1051 bdi = &default_backing_dev_info;
1052 bdev->bd_inode->i_data.backing_dev_info = bdi;
1053 }
1054 if (bdev->bd_invalidated)
1055 rescan_partitions(disk, bdev);
1056 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 struct block_device *whole;
1058 whole = bdget_disk(disk, 0);
1059 ret = -ENOMEM;
1060 if (!whole)
Tejun Heo0762b8b2008-08-25 19:56:12 +09001061 goto out_clear;
NeilBrown37be4122006-12-08 02:36:16 -08001062 BUG_ON(for_part);
Al Viro572c4892007-10-08 13:24:05 -04001063 ret = __blkdev_get(whole, mode, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 if (ret)
Tejun Heo0762b8b2008-08-25 19:56:12 +09001065 goto out_clear;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 bdev->bd_contains = whole;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 bdev->bd_inode->i_data.backing_dev_info =
1068 whole->bd_inode->i_data.backing_dev_info;
Tejun Heo89f97492008-11-05 10:21:06 +01001069 bdev->bd_part = disk_get_part(disk, partno);
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001070 if (!(disk->flags & GENHD_FL_UP) ||
Tejun Heo89f97492008-11-05 10:21:06 +01001071 !bdev->bd_part || !bdev->bd_part->nr_sects) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 ret = -ENXIO;
Tejun Heo0762b8b2008-08-25 19:56:12 +09001073 goto out_clear;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 }
Tejun Heo89f97492008-11-05 10:21:06 +01001075 bd_set_size(bdev, (loff_t)bdev->bd_part->nr_sects << 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 }
1077 } else {
1078 put_disk(disk);
Tejun Heo0762b8b2008-08-25 19:56:12 +09001079 module_put(disk->fops->owner);
Tejun Heo0762b8b2008-08-25 19:56:12 +09001080 disk = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 if (bdev->bd_contains == bdev) {
1082 if (bdev->bd_disk->fops->open) {
Al Viro572c4892007-10-08 13:24:05 -04001083 ret = bdev->bd_disk->fops->open(bdev, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 if (ret)
Tejun Heo0762b8b2008-08-25 19:56:12 +09001085 goto out_unlock_bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 }
1087 if (bdev->bd_invalidated)
1088 rescan_partitions(bdev->bd_disk, bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 }
1090 }
1091 bdev->bd_openers++;
NeilBrown37be4122006-12-08 02:36:16 -08001092 if (for_part)
1093 bdev->bd_part_count++;
Arjan van de Venc039e312006-03-23 03:00:28 -08001094 mutex_unlock(&bdev->bd_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 unlock_kernel();
1096 return 0;
1097
Tejun Heo0762b8b2008-08-25 19:56:12 +09001098 out_clear:
Tejun Heo89f97492008-11-05 10:21:06 +01001099 disk_put_part(bdev->bd_part);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 bdev->bd_disk = NULL;
Tejun Heo0762b8b2008-08-25 19:56:12 +09001101 bdev->bd_part = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 bdev->bd_inode->i_data.backing_dev_info = &default_backing_dev_info;
1103 if (bdev != bdev->bd_contains)
Al Viro572c4892007-10-08 13:24:05 -04001104 __blkdev_put(bdev->bd_contains, mode, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 bdev->bd_contains = NULL;
Tejun Heo0762b8b2008-08-25 19:56:12 +09001106 out_unlock_bdev:
Arjan van de Venc039e312006-03-23 03:00:28 -08001107 mutex_unlock(&bdev->bd_mutex);
Tejun Heo0762b8b2008-08-25 19:56:12 +09001108 out_unlock_kernel:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 unlock_kernel();
Tejun Heo0762b8b2008-08-25 19:56:12 +09001110
Tejun Heo0762b8b2008-08-25 19:56:12 +09001111 if (disk)
1112 module_put(disk->fops->owner);
1113 put_disk(disk);
1114 bdput(bdev);
1115
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 return ret;
1117}
1118
Al Viro572c4892007-10-08 13:24:05 -04001119int blkdev_get(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120{
Al Viro572c4892007-10-08 13:24:05 -04001121 return __blkdev_get(bdev, mode, 0);
NeilBrown37be4122006-12-08 02:36:16 -08001122}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123EXPORT_SYMBOL(blkdev_get);
1124
1125static int blkdev_open(struct inode * inode, struct file * filp)
1126{
1127 struct block_device *bdev;
1128 int res;
1129
1130 /*
1131 * Preserve backwards compatibility and allow large file access
1132 * even if userspace doesn't ask for it explicitly. Some mkfs
1133 * binary needs it. We might want to drop this workaround
1134 * during an unstable branch.
1135 */
1136 filp->f_flags |= O_LARGEFILE;
1137
Al Viro572c4892007-10-08 13:24:05 -04001138 if (filp->f_flags & O_NDELAY)
1139 filp->f_mode |= FMODE_NDELAY;
1140 if (filp->f_flags & O_EXCL)
1141 filp->f_mode |= FMODE_EXCL;
1142 if ((filp->f_flags & O_ACCMODE) == 3)
1143 filp->f_mode |= FMODE_WRITE_IOCTL;
1144
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 bdev = bd_acquire(inode);
Pavel Emelianov6a2aae02006-10-28 10:38:33 -07001146 if (bdev == NULL)
1147 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148
Al Viro572c4892007-10-08 13:24:05 -04001149 filp->f_mapping = bdev->bd_inode->i_mapping;
1150
1151 res = blkdev_get(bdev, filp->f_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 if (res)
1153 return res;
1154
Christoph Hellwigebbefc02008-11-05 14:54:41 +01001155 if (filp->f_mode & FMODE_EXCL) {
1156 res = bd_claim(bdev, filp);
1157 if (res)
1158 goto out_blkdev_put;
1159 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160
Christoph Hellwigebbefc02008-11-05 14:54:41 +01001161 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162
Christoph Hellwigebbefc02008-11-05 14:54:41 +01001163 out_blkdev_put:
Al Viro9a1c3542008-02-22 20:40:24 -05001164 blkdev_put(bdev, filp->f_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 return res;
1166}
1167
Al Viro9a1c3542008-02-22 20:40:24 -05001168static int __blkdev_put(struct block_device *bdev, fmode_t mode, int for_part)
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001169{
1170 int ret = 0;
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001171 struct gendisk *disk = bdev->bd_disk;
NeilBrown37be4122006-12-08 02:36:16 -08001172 struct block_device *victim = NULL;
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001173
NeilBrown6796bf52006-12-08 02:36:16 -08001174 mutex_lock_nested(&bdev->bd_mutex, for_part);
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001175 lock_kernel();
NeilBrown37be4122006-12-08 02:36:16 -08001176 if (for_part)
1177 bdev->bd_part_count--;
1178
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001179 if (!--bdev->bd_openers) {
1180 sync_blockdev(bdev);
1181 kill_bdev(bdev);
1182 }
1183 if (bdev->bd_contains == bdev) {
1184 if (disk->fops->release)
Al Viro9a1c3542008-02-22 20:40:24 -05001185 ret = disk->fops->release(disk, mode);
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001186 }
1187 if (!bdev->bd_openers) {
1188 struct module *owner = disk->fops->owner;
1189
1190 put_disk(disk);
1191 module_put(owner);
Tejun Heo0762b8b2008-08-25 19:56:12 +09001192 disk_put_part(bdev->bd_part);
1193 bdev->bd_part = NULL;
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001194 bdev->bd_disk = NULL;
1195 bdev->bd_inode->i_data.backing_dev_info = &default_backing_dev_info;
NeilBrown37be4122006-12-08 02:36:16 -08001196 if (bdev != bdev->bd_contains)
1197 victim = bdev->bd_contains;
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001198 bdev->bd_contains = NULL;
1199 }
1200 unlock_kernel();
1201 mutex_unlock(&bdev->bd_mutex);
1202 bdput(bdev);
NeilBrown37be4122006-12-08 02:36:16 -08001203 if (victim)
Al Viro9a1c3542008-02-22 20:40:24 -05001204 __blkdev_put(victim, mode, 1);
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001205 return ret;
1206}
1207
Al Viro9a1c3542008-02-22 20:40:24 -05001208int blkdev_put(struct block_device *bdev, fmode_t mode)
NeilBrown37be4122006-12-08 02:36:16 -08001209{
Al Viro9a1c3542008-02-22 20:40:24 -05001210 return __blkdev_put(bdev, mode, 0);
NeilBrown37be4122006-12-08 02:36:16 -08001211}
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001212EXPORT_SYMBOL(blkdev_put);
1213
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214static int blkdev_close(struct inode * inode, struct file * filp)
1215{
1216 struct block_device *bdev = I_BDEV(filp->f_mapping->host);
1217 if (bdev->bd_holder == filp)
1218 bd_release(bdev);
Al Viro9a1c3542008-02-22 20:40:24 -05001219 return blkdev_put(bdev, filp->f_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220}
1221
Arnd Bergmannbb93e3a2005-06-23 00:10:15 -07001222static long block_ioctl(struct file *file, unsigned cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223{
Al Viro56b26ad2008-09-19 03:17:36 -04001224 struct block_device *bdev = I_BDEV(file->f_mapping->host);
1225 fmode_t mode = file->f_mode;
Christoph Hellwigfd4ce1a2008-11-05 14:58:42 +01001226
1227 /*
1228 * O_NDELAY can be altered using fcntl(.., F_SETFL, ..), so we have
1229 * to updated it before every ioctl.
1230 */
Al Viro56b26ad2008-09-19 03:17:36 -04001231 if (file->f_flags & O_NDELAY)
Christoph Hellwigfd4ce1a2008-11-05 14:58:42 +01001232 mode |= FMODE_NDELAY;
1233 else
1234 mode &= ~FMODE_NDELAY;
1235
Al Viro56b26ad2008-09-19 03:17:36 -04001236 return blkdev_ioctl(bdev, mode, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237}
1238
Theodore Ts'o87d8fe12009-01-03 09:47:09 -05001239/*
1240 * Try to release a page associated with block device when the system
1241 * is under memory pressure.
1242 */
1243static int blkdev_releasepage(struct page *page, gfp_t wait)
1244{
1245 struct super_block *super = BDEV_I(page->mapping->host)->bdev.bd_super;
1246
1247 if (super && super->s_op->bdev_try_to_free_page)
1248 return super->s_op->bdev_try_to_free_page(super, page, wait);
1249
1250 return try_to_free_buffers(page);
1251}
1252
Adrian Bunk4c54ac62008-02-18 13:48:31 +01001253static const struct address_space_operations def_blk_aops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 .readpage = blkdev_readpage,
1255 .writepage = blkdev_writepage,
1256 .sync_page = block_sync_page,
Nick Piggin6272b5a2007-10-16 01:25:04 -07001257 .write_begin = blkdev_write_begin,
1258 .write_end = blkdev_write_end,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 .writepages = generic_writepages,
Theodore Ts'o87d8fe12009-01-03 09:47:09 -05001260 .releasepage = blkdev_releasepage,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 .direct_IO = blkdev_direct_IO,
1262};
1263
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08001264const struct file_operations def_blk_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 .open = blkdev_open,
1266 .release = blkdev_close,
1267 .llseek = block_llseek,
Badari Pulavarty543ade12006-09-30 23:28:48 -07001268 .read = do_sync_read,
1269 .write = do_sync_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 .aio_read = generic_file_aio_read,
Badari Pulavarty027445c2006-09-30 23:28:46 -07001271 .aio_write = generic_file_aio_write_nolock,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 .mmap = generic_file_mmap,
1273 .fsync = block_fsync,
Arnd Bergmannbb93e3a2005-06-23 00:10:15 -07001274 .unlocked_ioctl = block_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275#ifdef CONFIG_COMPAT
1276 .compat_ioctl = compat_blkdev_ioctl,
1277#endif
Jens Axboe7f9c51f2006-05-01 19:59:32 +02001278 .splice_read = generic_file_splice_read,
1279 .splice_write = generic_file_splice_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280};
1281
1282int ioctl_by_bdev(struct block_device *bdev, unsigned cmd, unsigned long arg)
1283{
1284 int res;
1285 mm_segment_t old_fs = get_fs();
1286 set_fs(KERNEL_DS);
Al Viro56b26ad2008-09-19 03:17:36 -04001287 res = blkdev_ioctl(bdev, 0, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 set_fs(old_fs);
1289 return res;
1290}
1291
1292EXPORT_SYMBOL(ioctl_by_bdev);
1293
1294/**
1295 * lookup_bdev - lookup a struct block_device by name
Randy Dunlap94e29592009-01-06 14:41:15 -08001296 * @pathname: special file representing the block device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 *
Randy Dunlap57d1b532008-10-09 10:42:38 +02001298 * Get a reference to the blockdevice at @pathname in the current
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 * namespace if possible and return it. Return ERR_PTR(error)
1300 * otherwise.
1301 */
Al Viro421748e2008-08-02 01:04:36 -04001302struct block_device *lookup_bdev(const char *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303{
1304 struct block_device *bdev;
1305 struct inode *inode;
Al Viro421748e2008-08-02 01:04:36 -04001306 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 int error;
1308
Al Viro421748e2008-08-02 01:04:36 -04001309 if (!pathname || !*pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 return ERR_PTR(-EINVAL);
1311
Al Viro421748e2008-08-02 01:04:36 -04001312 error = kern_path(pathname, LOOKUP_FOLLOW, &path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 if (error)
1314 return ERR_PTR(error);
1315
Al Viro421748e2008-08-02 01:04:36 -04001316 inode = path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 error = -ENOTBLK;
1318 if (!S_ISBLK(inode->i_mode))
1319 goto fail;
1320 error = -EACCES;
Al Viro421748e2008-08-02 01:04:36 -04001321 if (path.mnt->mnt_flags & MNT_NODEV)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 goto fail;
1323 error = -ENOMEM;
1324 bdev = bd_acquire(inode);
1325 if (!bdev)
1326 goto fail;
1327out:
Al Viro421748e2008-08-02 01:04:36 -04001328 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 return bdev;
1330fail:
1331 bdev = ERR_PTR(error);
1332 goto out;
1333}
Al Virod5686b42008-08-01 05:00:11 -04001334EXPORT_SYMBOL(lookup_bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335
1336/**
Al Viro30c40d22008-02-22 19:50:45 -05001337 * open_bdev_exclusive - open a block device by name and set it up for use
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 *
1339 * @path: special file representing the block device
Al Viro30c40d22008-02-22 19:50:45 -05001340 * @mode: FMODE_... combination to pass be used
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 * @holder: owner for exclusion
1342 *
1343 * Open the blockdevice described by the special file at @path, claim it
1344 * for the @holder.
1345 */
Al Viro30c40d22008-02-22 19:50:45 -05001346struct block_device *open_bdev_exclusive(const char *path, fmode_t mode, void *holder)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347{
1348 struct block_device *bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 int error = 0;
1350
1351 bdev = lookup_bdev(path);
1352 if (IS_ERR(bdev))
1353 return bdev;
1354
Al Viro572c4892007-10-08 13:24:05 -04001355 error = blkdev_get(bdev, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 if (error)
1357 return ERR_PTR(error);
1358 error = -EACCES;
Al Viro30c40d22008-02-22 19:50:45 -05001359 if ((mode & FMODE_WRITE) && bdev_read_only(bdev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 goto blkdev_put;
1361 error = bd_claim(bdev, holder);
1362 if (error)
1363 goto blkdev_put;
1364
1365 return bdev;
1366
1367blkdev_put:
Al Viro9a1c3542008-02-22 20:40:24 -05001368 blkdev_put(bdev, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 return ERR_PTR(error);
1370}
1371
Al Viro30c40d22008-02-22 19:50:45 -05001372EXPORT_SYMBOL(open_bdev_exclusive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373
1374/**
Al Viro30c40d22008-02-22 19:50:45 -05001375 * close_bdev_exclusive - close a blockdevice opened by open_bdev_exclusive()
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 *
1377 * @bdev: blockdevice to close
Al Viro30c40d22008-02-22 19:50:45 -05001378 * @mode: mode, must match that used to open.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 *
Al Viro30c40d22008-02-22 19:50:45 -05001380 * This is the counterpart to open_bdev_exclusive().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 */
Al Viro30c40d22008-02-22 19:50:45 -05001382void close_bdev_exclusive(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383{
1384 bd_release(bdev);
Al Viro30c40d22008-02-22 19:50:45 -05001385 blkdev_put(bdev, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386}
1387
Al Viro30c40d22008-02-22 19:50:45 -05001388EXPORT_SYMBOL(close_bdev_exclusive);
David Howellsb71e8a42006-08-29 19:06:11 +01001389
1390int __invalidate_device(struct block_device *bdev)
1391{
1392 struct super_block *sb = get_super(bdev);
1393 int res = 0;
1394
1395 if (sb) {
1396 /*
1397 * no need to lock the super, get_super holds the
1398 * read mutex so the filesystem cannot go away
1399 * under us (->put_super runs with the write lock
1400 * hold).
1401 */
1402 shrink_dcache_sb(sb);
1403 res = invalidate_inodes(sb);
1404 drop_super(sb);
1405 }
Peter Zijlstraf98393a2007-05-06 14:49:54 -07001406 invalidate_bdev(bdev);
David Howellsb71e8a42006-08-29 19:06:11 +01001407 return res;
1408}
1409EXPORT_SYMBOL(__invalidate_device);