blob: 319d9c74c4d3a680d47e2cabae47a623f8d9f3eb [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>
Pavel Emelyanov7db9cfd2008-06-05 22:46:27 -070014#include <linux/device_cgroup.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/highmem.h>
16#include <linux/blkdev.h>
17#include <linux/module.h>
18#include <linux/blkpg.h>
Muthu Kumarb502bd12012-03-23 15:01:50 -070019#include <linux/magic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/buffer_head.h>
Al Viroff01bb42011-09-16 02:31:11 -040021#include <linux/swap.h>
Nick Piggin585d3bc2009-02-25 10:44:19 +010022#include <linux/pagevec.h>
David Howells811d7362006-08-29 19:06:09 +010023#include <linux/writeback.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/mpage.h>
25#include <linux/mount.h>
26#include <linux/uio.h>
27#include <linux/namei.h>
Vignesh Babu BM1368c4f2007-05-08 00:24:32 -070028#include <linux/log2.h>
Al Viroff01bb42011-09-16 02:31:11 -040029#include <linux/cleancache.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <asm/uaccess.h>
David Howells07f3f052006-09-30 20:52:18 +020031#include "internal.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
33struct bdev_inode {
34 struct block_device bdev;
35 struct inode vfs_inode;
36};
37
Adrian Bunk4c54ac62008-02-18 13:48:31 +010038static const struct address_space_operations def_blk_aops;
39
Linus Torvalds1da177e2005-04-16 15:20:36 -070040static inline struct bdev_inode *BDEV_I(struct inode *inode)
41{
42 return container_of(inode, struct bdev_inode, vfs_inode);
43}
44
45inline struct block_device *I_BDEV(struct inode *inode)
46{
47 return &BDEV_I(inode)->bdev;
48}
Linus Torvalds1da177e2005-04-16 15:20:36 -070049EXPORT_SYMBOL(I_BDEV);
50
Dave Chinnera5491e02010-10-21 11:49:26 +110051/*
Christoph Hellwigf758eea2011-04-21 18:19:44 -060052 * Move the inode from its current bdi to a new bdi. If the inode is dirty we
53 * need to move it onto the dirty list of @dst so that the inode is always on
54 * the right list.
Dave Chinnera5491e02010-10-21 11:49:26 +110055 */
56static void bdev_inode_switch_bdi(struct inode *inode,
57 struct backing_dev_info *dst)
58{
Christoph Hellwigf758eea2011-04-21 18:19:44 -060059 struct backing_dev_info *old = inode->i_data.backing_dev_info;
Jan Kara6b8ec822013-06-28 16:04:02 +020060 bool wakeup_bdi = false;
Christoph Hellwigf758eea2011-04-21 18:19:44 -060061
62 if (unlikely(dst == old)) /* deadlock avoidance */
63 return;
64 bdi_lock_two(&old->wb, &dst->wb);
Dave Chinner250df6e2011-03-22 22:23:36 +110065 spin_lock(&inode->i_lock);
Dave Chinnera5491e02010-10-21 11:49:26 +110066 inode->i_data.backing_dev_info = dst;
Jan Kara6b8ec822013-06-28 16:04:02 +020067 if (inode->i_state & I_DIRTY) {
68 if (bdi_cap_writeback_dirty(dst) && !wb_has_dirty_io(&dst->wb))
69 wakeup_bdi = true;
Nick Piggin7ccf19a2010-10-21 11:49:30 +110070 list_move(&inode->i_wb_list, &dst->wb.b_dirty);
Jan Kara6b8ec822013-06-28 16:04:02 +020071 }
Dave Chinner250df6e2011-03-22 22:23:36 +110072 spin_unlock(&inode->i_lock);
Christoph Hellwigf758eea2011-04-21 18:19:44 -060073 spin_unlock(&old->wb.list_lock);
74 spin_unlock(&dst->wb.list_lock);
Jan Kara6b8ec822013-06-28 16:04:02 +020075
76 if (wakeup_bdi)
77 bdi_wakeup_thread_delayed(dst);
Dave Chinnera5491e02010-10-21 11:49:26 +110078}
79
Jeff Moyer080399a2012-05-11 16:34:10 +020080sector_t blkdev_max_block(struct block_device *bdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070081{
82 sector_t retval = ~((sector_t)0);
83 loff_t sz = i_size_read(bdev->bd_inode);
84
85 if (sz) {
86 unsigned int size = block_size(bdev);
87 unsigned int sizebits = blksize_bits(size);
88 retval = (sz >> sizebits);
89 }
90 return retval;
91}
92
Peter Zijlstraf9a14392007-05-06 14:49:55 -070093/* Kill _all_ buffers and pagecache , dirty or not.. */
Al Viroff01bb42011-09-16 02:31:11 -040094void kill_bdev(struct block_device *bdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070095{
Al Viroff01bb42011-09-16 02:31:11 -040096 struct address_space *mapping = bdev->bd_inode->i_mapping;
97
98 if (mapping->nrpages == 0)
Peter Zijlstraf9a14392007-05-06 14:49:55 -070099 return;
Al Viroff01bb42011-09-16 02:31:11 -0400100
Peter Zijlstraf9a14392007-05-06 14:49:55 -0700101 invalidate_bh_lrus();
Al Viroff01bb42011-09-16 02:31:11 -0400102 truncate_inode_pages(mapping, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103}
Al Viroff01bb42011-09-16 02:31:11 -0400104EXPORT_SYMBOL(kill_bdev);
105
106/* Invalidate clean unused buffers and pagecache. */
107void invalidate_bdev(struct block_device *bdev)
108{
109 struct address_space *mapping = bdev->bd_inode->i_mapping;
110
111 if (mapping->nrpages == 0)
112 return;
113
114 invalidate_bh_lrus();
115 lru_add_drain_all(); /* make sure all lru add caches are flushed */
116 invalidate_mapping_pages(mapping, 0, -1);
117 /* 99% of the time, we don't need to flush the cleancache on the bdev.
118 * But, for the strange corners, lets be cautious
119 */
Dan Magenheimer31677602011-09-21 11:56:28 -0400120 cleancache_invalidate_inode(mapping);
Al Viroff01bb42011-09-16 02:31:11 -0400121}
122EXPORT_SYMBOL(invalidate_bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
124int set_blocksize(struct block_device *bdev, int size)
125{
126 /* Size must be a power of two, and between 512 and PAGE_SIZE */
Vignesh Babu BM1368c4f2007-05-08 00:24:32 -0700127 if (size > PAGE_SIZE || size < 512 || !is_power_of_2(size))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 return -EINVAL;
129
130 /* Size cannot be smaller than the size supported by the device */
Martin K. Petersene1defc42009-05-22 17:17:49 -0400131 if (size < bdev_logical_block_size(bdev))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 return -EINVAL;
133
134 /* Don't change the size if it is same as current */
135 if (bdev->bd_block_size != size) {
136 sync_blockdev(bdev);
137 bdev->bd_block_size = size;
138 bdev->bd_inode->i_blkbits = blksize_bits(size);
139 kill_bdev(bdev);
140 }
141 return 0;
142}
143
144EXPORT_SYMBOL(set_blocksize);
145
146int sb_set_blocksize(struct super_block *sb, int size)
147{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 if (set_blocksize(sb->s_bdev, size))
149 return 0;
150 /* If we get here, we know size is power of two
151 * and it's value is between 512 and PAGE_SIZE */
152 sb->s_blocksize = size;
Coywolf Qi Hunt38885bd2006-03-24 03:18:05 -0800153 sb->s_blocksize_bits = blksize_bits(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 return sb->s_blocksize;
155}
156
157EXPORT_SYMBOL(sb_set_blocksize);
158
159int sb_min_blocksize(struct super_block *sb, int size)
160{
Martin K. Petersene1defc42009-05-22 17:17:49 -0400161 int minsize = bdev_logical_block_size(sb->s_bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 if (size < minsize)
163 size = minsize;
164 return sb_set_blocksize(sb, size);
165}
166
167EXPORT_SYMBOL(sb_min_blocksize);
168
169static int
170blkdev_get_block(struct inode *inode, sector_t iblock,
171 struct buffer_head *bh, int create)
172{
Jeff Moyer080399a2012-05-11 16:34:10 +0200173 if (iblock >= blkdev_max_block(I_BDEV(inode))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 if (create)
175 return -EIO;
176
177 /*
178 * for reads, we're just trying to fill a partial page.
179 * return a hole, they will have to call get_block again
180 * before they can fill it, and they will get -EIO at that
181 * time
182 */
183 return 0;
184 }
185 bh->b_bdev = I_BDEV(inode);
186 bh->b_blocknr = iblock;
187 set_buffer_mapped(bh);
188 return 0;
189}
190
Andrew Mortonb2e895d2007-02-03 01:14:01 -0800191static int
192blkdev_get_blocks(struct inode *inode, sector_t iblock,
193 struct buffer_head *bh, int create)
194{
Jeff Moyer080399a2012-05-11 16:34:10 +0200195 sector_t end_block = blkdev_max_block(I_BDEV(inode));
Andrew Mortonb2e895d2007-02-03 01:14:01 -0800196 unsigned long max_blocks = bh->b_size >> inode->i_blkbits;
197
198 if ((iblock + max_blocks) > end_block) {
199 max_blocks = end_block - iblock;
200 if ((long)max_blocks <= 0) {
201 if (create)
202 return -EIO; /* write fully beyond EOF */
203 /*
204 * It is a read which is fully beyond EOF. We return
205 * a !buffer_mapped buffer
206 */
207 max_blocks = 0;
208 }
209 }
210
211 bh->b_bdev = I_BDEV(inode);
212 bh->b_blocknr = iblock;
213 bh->b_size = max_blocks << inode->i_blkbits;
214 if (max_blocks)
215 set_buffer_mapped(bh);
216 return 0;
217}
218
219static ssize_t
220blkdev_direct_IO(int rw, struct kiocb *iocb, const struct iovec *iov,
221 loff_t offset, unsigned long nr_segs)
222{
223 struct file *file = iocb->ki_filp;
224 struct inode *inode = file->f_mapping->host;
225
Christoph Hellwigeafdc7d2010-06-04 11:29:53 +0200226 return __blockdev_direct_IO(rw, iocb, inode, I_BDEV(inode), iov, offset,
227 nr_segs, blkdev_get_blocks, NULL, NULL, 0);
Andrew Mortonb2e895d2007-02-03 01:14:01 -0800228}
229
Jan Kara5cee5812009-04-27 16:43:51 +0200230int __sync_blockdev(struct block_device *bdev, int wait)
231{
232 if (!bdev)
233 return 0;
234 if (!wait)
235 return filemap_flush(bdev->bd_inode->i_mapping);
236 return filemap_write_and_wait(bdev->bd_inode->i_mapping);
237}
238
Nick Piggin585d3bc2009-02-25 10:44:19 +0100239/*
240 * Write out and wait upon all the dirty data associated with a block
241 * device via its mapping. Does not take the superblock lock.
242 */
243int sync_blockdev(struct block_device *bdev)
244{
Jan Kara5cee5812009-04-27 16:43:51 +0200245 return __sync_blockdev(bdev, 1);
Nick Piggin585d3bc2009-02-25 10:44:19 +0100246}
247EXPORT_SYMBOL(sync_blockdev);
248
249/*
250 * Write out and wait upon all dirty data associated with this
251 * device. Filesystem data as well as the underlying block
252 * device. Takes the superblock lock.
253 */
254int fsync_bdev(struct block_device *bdev)
255{
256 struct super_block *sb = get_super(bdev);
257 if (sb) {
Jan Kara60b06802009-04-27 16:43:53 +0200258 int res = sync_filesystem(sb);
Nick Piggin585d3bc2009-02-25 10:44:19 +0100259 drop_super(sb);
260 return res;
261 }
262 return sync_blockdev(bdev);
263}
Al Viro47e44912009-04-01 07:07:16 -0400264EXPORT_SYMBOL(fsync_bdev);
Nick Piggin585d3bc2009-02-25 10:44:19 +0100265
266/**
267 * freeze_bdev -- lock a filesystem and force it into a consistent state
268 * @bdev: blockdevice to lock
269 *
Nick Piggin585d3bc2009-02-25 10:44:19 +0100270 * If a superblock is found on this device, we take the s_umount semaphore
271 * on it to make sure nobody unmounts until the snapshot creation is done.
272 * The reference counter (bd_fsfreeze_count) guarantees that only the last
273 * unfreeze process can unfreeze the frozen filesystem actually when multiple
274 * freeze requests arrive simultaneously. It counts up in freeze_bdev() and
275 * count down in thaw_bdev(). When it becomes 0, thaw_bdev() will unfreeze
276 * actually.
277 */
278struct super_block *freeze_bdev(struct block_device *bdev)
279{
280 struct super_block *sb;
281 int error = 0;
282
283 mutex_lock(&bdev->bd_fsfreeze_mutex);
Christoph Hellwig45042302009-08-03 23:28:35 +0200284 if (++bdev->bd_fsfreeze_count > 1) {
285 /*
286 * We don't even need to grab a reference - the first call
287 * to freeze_bdev grab an active reference and only the last
288 * thaw_bdev drops it.
289 */
Nick Piggin585d3bc2009-02-25 10:44:19 +0100290 sb = get_super(bdev);
Christoph Hellwig45042302009-08-03 23:28:35 +0200291 drop_super(sb);
Nick Piggin585d3bc2009-02-25 10:44:19 +0100292 mutex_unlock(&bdev->bd_fsfreeze_mutex);
293 return sb;
294 }
Nick Piggin585d3bc2009-02-25 10:44:19 +0100295
Christoph Hellwig45042302009-08-03 23:28:35 +0200296 sb = get_active_super(bdev);
297 if (!sb)
298 goto out;
Josef Bacik18e9e512010-03-23 10:34:56 -0400299 error = freeze_super(sb);
300 if (error) {
301 deactivate_super(sb);
302 bdev->bd_fsfreeze_count--;
Christoph Hellwig45042302009-08-03 23:28:35 +0200303 mutex_unlock(&bdev->bd_fsfreeze_mutex);
Josef Bacik18e9e512010-03-23 10:34:56 -0400304 return ERR_PTR(error);
Nick Piggin585d3bc2009-02-25 10:44:19 +0100305 }
Josef Bacik18e9e512010-03-23 10:34:56 -0400306 deactivate_super(sb);
Christoph Hellwig45042302009-08-03 23:28:35 +0200307 out:
Nick Piggin585d3bc2009-02-25 10:44:19 +0100308 sync_blockdev(bdev);
309 mutex_unlock(&bdev->bd_fsfreeze_mutex);
Christoph Hellwig4fadd7b2009-08-03 23:28:06 +0200310 return sb; /* thaw_bdev releases s->s_umount */
Nick Piggin585d3bc2009-02-25 10:44:19 +0100311}
312EXPORT_SYMBOL(freeze_bdev);
313
314/**
315 * thaw_bdev -- unlock filesystem
316 * @bdev: blockdevice to unlock
317 * @sb: associated superblock
318 *
319 * Unlocks the filesystem and marks it writeable again after freeze_bdev().
320 */
321int thaw_bdev(struct block_device *bdev, struct super_block *sb)
322{
Christoph Hellwig45042302009-08-03 23:28:35 +0200323 int error = -EINVAL;
Nick Piggin585d3bc2009-02-25 10:44:19 +0100324
325 mutex_lock(&bdev->bd_fsfreeze_mutex);
Christoph Hellwig45042302009-08-03 23:28:35 +0200326 if (!bdev->bd_fsfreeze_count)
Josef Bacik18e9e512010-03-23 10:34:56 -0400327 goto out;
Nick Piggin585d3bc2009-02-25 10:44:19 +0100328
Christoph Hellwig45042302009-08-03 23:28:35 +0200329 error = 0;
330 if (--bdev->bd_fsfreeze_count > 0)
Josef Bacik18e9e512010-03-23 10:34:56 -0400331 goto out;
Nick Piggin585d3bc2009-02-25 10:44:19 +0100332
Christoph Hellwig45042302009-08-03 23:28:35 +0200333 if (!sb)
Josef Bacik18e9e512010-03-23 10:34:56 -0400334 goto out;
Christoph Hellwig45042302009-08-03 23:28:35 +0200335
Josef Bacik18e9e512010-03-23 10:34:56 -0400336 error = thaw_super(sb);
337 if (error) {
338 bdev->bd_fsfreeze_count++;
339 mutex_unlock(&bdev->bd_fsfreeze_mutex);
340 return error;
Nick Piggin585d3bc2009-02-25 10:44:19 +0100341 }
Josef Bacik18e9e512010-03-23 10:34:56 -0400342out:
Nick Piggin585d3bc2009-02-25 10:44:19 +0100343 mutex_unlock(&bdev->bd_fsfreeze_mutex);
344 return 0;
345}
346EXPORT_SYMBOL(thaw_bdev);
347
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348static int blkdev_writepage(struct page *page, struct writeback_control *wbc)
349{
350 return block_write_full_page(page, blkdev_get_block, wbc);
351}
352
353static int blkdev_readpage(struct file * file, struct page * page)
354{
355 return block_read_full_page(page, blkdev_get_block);
356}
357
Nick Piggin6272b5a2007-10-16 01:25:04 -0700358static int blkdev_write_begin(struct file *file, struct address_space *mapping,
359 loff_t pos, unsigned len, unsigned flags,
360 struct page **pagep, void **fsdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361{
Christoph Hellwig155130a2010-06-04 11:29:58 +0200362 return block_write_begin(mapping, pos, len, flags, pagep,
363 blkdev_get_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364}
365
Nick Piggin6272b5a2007-10-16 01:25:04 -0700366static int blkdev_write_end(struct file *file, struct address_space *mapping,
367 loff_t pos, unsigned len, unsigned copied,
368 struct page *page, void *fsdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369{
Nick Piggin6272b5a2007-10-16 01:25:04 -0700370 int ret;
371 ret = block_write_end(file, mapping, pos, len, copied, page, fsdata);
372
373 unlock_page(page);
374 page_cache_release(page);
375
376 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377}
378
379/*
380 * private llseek:
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800381 * for a block special file file->f_path.dentry->d_inode->i_size is zero
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 * so we compute the size by hand (just as in block_read/write above)
383 */
384static loff_t block_llseek(struct file *file, loff_t offset, int origin)
385{
386 struct inode *bd_inode = file->f_mapping->host;
387 loff_t size;
388 loff_t retval;
389
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800390 mutex_lock(&bd_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 size = i_size_read(bd_inode);
392
Josef Bacik06222e42011-07-18 13:21:38 -0400393 retval = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 switch (origin) {
Josef Bacik06222e42011-07-18 13:21:38 -0400395 case SEEK_END:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 offset += size;
397 break;
Josef Bacik06222e42011-07-18 13:21:38 -0400398 case SEEK_CUR:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 offset += file->f_pos;
Josef Bacik06222e42011-07-18 13:21:38 -0400400 case SEEK_SET:
401 break;
402 default:
403 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 if (offset >= 0 && offset <= size) {
406 if (offset != file->f_pos) {
407 file->f_pos = offset;
408 }
409 retval = offset;
410 }
Josef Bacik06222e42011-07-18 13:21:38 -0400411out:
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800412 mutex_unlock(&bd_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 return retval;
414}
415
Josef Bacik02c24a82011-07-16 20:44:56 -0400416int blkdev_fsync(struct file *filp, loff_t start, loff_t end, int datasync)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417{
Anton Blanchardb8af67e2010-04-23 13:18:06 -0400418 struct inode *bd_inode = filp->f_mapping->host;
419 struct block_device *bdev = I_BDEV(bd_inode);
Christoph Hellwigab0a9732009-10-29 14:14:04 +0100420 int error;
Rafael J. Wysockida5aa862011-08-02 02:17:48 +0200421
422 error = filemap_write_and_wait_range(filp->f_mapping, start, end);
423 if (error)
424 return error;
Christoph Hellwigab0a9732009-10-29 14:14:04 +0100425
Anton Blanchardb8af67e2010-04-23 13:18:06 -0400426 /*
427 * There is no need to serialise calls to blkdev_issue_flush with
428 * i_mutex and doing so causes performance issues with concurrent
429 * O_SYNC writers to a block device.
430 */
Christoph Hellwigdd3932e2010-09-16 20:51:46 +0200431 error = blkdev_issue_flush(bdev, GFP_KERNEL, NULL);
Christoph Hellwigab0a9732009-10-29 14:14:04 +0100432 if (error == -EOPNOTSUPP)
433 error = 0;
Anton Blanchardb8af67e2010-04-23 13:18:06 -0400434
Christoph Hellwigab0a9732009-10-29 14:14:04 +0100435 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436}
Andrew Mortonb1dd3b22010-04-06 14:35:00 -0700437EXPORT_SYMBOL(blkdev_fsync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438
439/*
440 * pseudo-fs
441 */
442
443static __cacheline_aligned_in_smp DEFINE_SPINLOCK(bdev_lock);
Christoph Lametere18b8902006-12-06 20:33:20 -0800444static struct kmem_cache * bdev_cachep __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
446static struct inode *bdev_alloc_inode(struct super_block *sb)
447{
Christoph Lametere94b1762006-12-06 20:33:17 -0800448 struct bdev_inode *ei = kmem_cache_alloc(bdev_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 if (!ei)
450 return NULL;
451 return &ei->vfs_inode;
452}
453
Nick Pigginfa0d7e32011-01-07 17:49:49 +1100454static void bdev_i_callback(struct rcu_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455{
Nick Pigginfa0d7e32011-01-07 17:49:49 +1100456 struct inode *inode = container_of(head, struct inode, i_rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 struct bdev_inode *bdi = BDEV_I(inode);
458
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 kmem_cache_free(bdev_cachep, bdi);
460}
461
Nick Pigginfa0d7e32011-01-07 17:49:49 +1100462static void bdev_destroy_inode(struct inode *inode)
463{
464 call_rcu(&inode->i_rcu, bdev_i_callback);
465}
466
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700467static void init_once(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468{
469 struct bdev_inode *ei = (struct bdev_inode *) foo;
470 struct block_device *bdev = &ei->bdev;
471
Christoph Lametera35afb82007-05-16 22:10:57 -0700472 memset(bdev, 0, sizeof(*bdev));
473 mutex_init(&bdev->bd_mutex);
Christoph Lametera35afb82007-05-16 22:10:57 -0700474 INIT_LIST_HEAD(&bdev->bd_inodes);
475 INIT_LIST_HEAD(&bdev->bd_list);
Tejun Heo49731ba2011-01-14 18:43:57 +0100476#ifdef CONFIG_SYSFS
477 INIT_LIST_HEAD(&bdev->bd_holder_disks);
478#endif
Christoph Lametera35afb82007-05-16 22:10:57 -0700479 inode_init_once(&ei->vfs_inode);
Takashi Satofcccf502009-01-09 16:40:59 -0800480 /* Initialize mutex for freeze. */
481 mutex_init(&bdev->bd_fsfreeze_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482}
483
484static inline void __bd_forget(struct inode *inode)
485{
486 list_del_init(&inode->i_devices);
487 inode->i_bdev = NULL;
488 inode->i_mapping = &inode->i_data;
489}
490
Al Virob57922d2010-06-07 14:34:48 -0400491static void bdev_evict_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492{
493 struct block_device *bdev = &BDEV_I(inode)->bdev;
494 struct list_head *p;
Al Virob57922d2010-06-07 14:34:48 -0400495 truncate_inode_pages(&inode->i_data, 0);
496 invalidate_inode_buffers(inode); /* is it needed here? */
497 end_writeback(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 spin_lock(&bdev_lock);
499 while ( (p = bdev->bd_inodes.next) != &bdev->bd_inodes ) {
500 __bd_forget(list_entry(p, struct inode, i_devices));
501 }
502 list_del_init(&bdev->bd_list);
503 spin_unlock(&bdev_lock);
504}
505
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800506static const struct super_operations bdev_sops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 .statfs = simple_statfs,
508 .alloc_inode = bdev_alloc_inode,
509 .destroy_inode = bdev_destroy_inode,
510 .drop_inode = generic_delete_inode,
Al Virob57922d2010-06-07 14:34:48 -0400511 .evict_inode = bdev_evict_inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512};
513
Al Viro51139ad2010-07-25 23:47:46 +0400514static struct dentry *bd_mount(struct file_system_type *fs_type,
515 int flags, const char *dev_name, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516{
Muthu Kumarb502bd12012-03-23 15:01:50 -0700517 return mount_pseudo(fs_type, "bdev:", &bdev_sops, NULL, BDEVFS_MAGIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518}
519
520static struct file_system_type bd_type = {
521 .name = "bdev",
Al Viro51139ad2010-07-25 23:47:46 +0400522 .mount = bd_mount,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 .kill_sb = kill_anon_super,
524};
525
Al Virof47ec3f2011-11-21 21:15:42 -0500526static struct super_block *blockdev_superblock __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527
528void __init bdev_cache_init(void)
529{
530 int err;
Sergey Senozhatskyace85772012-01-10 02:43:59 +0300531 static struct vfsmount *bd_mnt;
Denis ChengRqc2acf7b2008-12-01 14:34:56 -0800532
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 bdev_cachep = kmem_cache_create("bdev_cache", sizeof(struct bdev_inode),
Paul Jacksonfffb60f2006-03-24 03:16:06 -0800534 0, (SLAB_HWCACHE_ALIGN|SLAB_RECLAIM_ACCOUNT|
535 SLAB_MEM_SPREAD|SLAB_PANIC),
Paul Mundt20c2df82007-07-20 10:11:58 +0900536 init_once);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 err = register_filesystem(&bd_type);
538 if (err)
539 panic("Cannot register bdev pseudo-fs");
540 bd_mnt = kern_mount(&bd_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 if (IS_ERR(bd_mnt))
542 panic("Cannot create bdev pseudo-fs");
Sergey Senozhatskyace85772012-01-10 02:43:59 +0300543 blockdev_superblock = bd_mnt->mnt_sb; /* For writeback */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544}
545
546/*
547 * Most likely _very_ bad one - but then it's hardly critical for small
548 * /dev and can be fixed when somebody will need really large one.
549 * Keep in mind that it will be fed through icache hash function too.
550 */
551static inline unsigned long hash(dev_t dev)
552{
553 return MAJOR(dev)+MINOR(dev);
554}
555
556static int bdev_test(struct inode *inode, void *data)
557{
558 return BDEV_I(inode)->bdev.bd_dev == *(dev_t *)data;
559}
560
561static int bdev_set(struct inode *inode, void *data)
562{
563 BDEV_I(inode)->bdev.bd_dev = *(dev_t *)data;
564 return 0;
565}
566
567static LIST_HEAD(all_bdevs);
568
569struct block_device *bdget(dev_t dev)
570{
571 struct block_device *bdev;
572 struct inode *inode;
573
Denis ChengRqc2acf7b2008-12-01 14:34:56 -0800574 inode = iget5_locked(blockdev_superblock, hash(dev),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 bdev_test, bdev_set, &dev);
576
577 if (!inode)
578 return NULL;
579
580 bdev = &BDEV_I(inode)->bdev;
581
582 if (inode->i_state & I_NEW) {
583 bdev->bd_contains = NULL;
Lachlan McIlroy782b94c2011-06-30 11:01:45 +1000584 bdev->bd_super = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 bdev->bd_inode = inode;
586 bdev->bd_block_size = (1 << inode->i_blkbits);
587 bdev->bd_part_count = 0;
588 bdev->bd_invalidated = 0;
589 inode->i_mode = S_IFBLK;
590 inode->i_rdev = dev;
591 inode->i_bdev = bdev;
592 inode->i_data.a_ops = &def_blk_aops;
593 mapping_set_gfp_mask(&inode->i_data, GFP_USER);
594 inode->i_data.backing_dev_info = &default_backing_dev_info;
595 spin_lock(&bdev_lock);
596 list_add(&bdev->bd_list, &all_bdevs);
597 spin_unlock(&bdev_lock);
598 unlock_new_inode(inode);
599 }
600 return bdev;
601}
602
603EXPORT_SYMBOL(bdget);
604
Alan Jenkinsdddac6a2009-07-29 21:07:55 +0200605/**
606 * bdgrab -- Grab a reference to an already referenced block device
607 * @bdev: Block device to grab a reference to.
608 */
609struct block_device *bdgrab(struct block_device *bdev)
610{
Al Viro7de9c6e2010-10-23 11:11:40 -0400611 ihold(bdev->bd_inode);
Alan Jenkinsdddac6a2009-07-29 21:07:55 +0200612 return bdev;
613}
Anatol Pomozov74af9c52013-04-01 09:47:56 -0700614EXPORT_SYMBOL(bdgrab);
Alan Jenkinsdddac6a2009-07-29 21:07:55 +0200615
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616long nr_blockdev_pages(void)
617{
Matthias Kaehlcke203a2932007-07-15 23:40:23 -0700618 struct block_device *bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 long ret = 0;
620 spin_lock(&bdev_lock);
Matthias Kaehlcke203a2932007-07-15 23:40:23 -0700621 list_for_each_entry(bdev, &all_bdevs, bd_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 ret += bdev->bd_inode->i_mapping->nrpages;
623 }
624 spin_unlock(&bdev_lock);
625 return ret;
626}
627
628void bdput(struct block_device *bdev)
629{
630 iput(bdev->bd_inode);
631}
632
633EXPORT_SYMBOL(bdput);
634
635static struct block_device *bd_acquire(struct inode *inode)
636{
637 struct block_device *bdev;
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700638
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 spin_lock(&bdev_lock);
640 bdev = inode->i_bdev;
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700641 if (bdev) {
Al Viro7de9c6e2010-10-23 11:11:40 -0400642 ihold(bdev->bd_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 spin_unlock(&bdev_lock);
644 return bdev;
645 }
646 spin_unlock(&bdev_lock);
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700647
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 bdev = bdget(inode->i_rdev);
649 if (bdev) {
650 spin_lock(&bdev_lock);
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700651 if (!inode->i_bdev) {
652 /*
Al Viro7de9c6e2010-10-23 11:11:40 -0400653 * We take an additional reference to bd_inode,
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700654 * and it's released in clear_inode() of inode.
655 * So, we can access it via ->i_mapping always
656 * without igrab().
657 */
Al Viro7de9c6e2010-10-23 11:11:40 -0400658 ihold(bdev->bd_inode);
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700659 inode->i_bdev = bdev;
660 inode->i_mapping = bdev->bd_inode->i_mapping;
661 list_add(&inode->i_devices, &bdev->bd_inodes);
662 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 spin_unlock(&bdev_lock);
664 }
665 return bdev;
666}
667
Al Virof47ec3f2011-11-21 21:15:42 -0500668static inline int sb_is_blkdev_sb(struct super_block *sb)
669{
670 return sb == blockdev_superblock;
671}
672
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673/* Call when you free inode */
674
675void bd_forget(struct inode *inode)
676{
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700677 struct block_device *bdev = NULL;
678
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 spin_lock(&bdev_lock);
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700680 if (inode->i_bdev) {
Denis ChengRqc2acf7b2008-12-01 14:34:56 -0800681 if (!sb_is_blkdev_sb(inode->i_sb))
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700682 bdev = inode->i_bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 __bd_forget(inode);
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700684 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 spin_unlock(&bdev_lock);
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700686
687 if (bdev)
688 iput(bdev->bd_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689}
690
Tejun Heo1a3cbbc2010-04-07 18:52:29 +0900691/**
692 * bd_may_claim - test whether a block device can be claimed
693 * @bdev: block device of interest
694 * @whole: whole block device containing @bdev, may equal @bdev
695 * @holder: holder trying to claim @bdev
696 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300697 * Test whether @bdev can be claimed by @holder.
Tejun Heo1a3cbbc2010-04-07 18:52:29 +0900698 *
699 * CONTEXT:
700 * spin_lock(&bdev_lock).
701 *
702 * RETURNS:
703 * %true if @bdev can be claimed, %false otherwise.
704 */
705static bool bd_may_claim(struct block_device *bdev, struct block_device *whole,
706 void *holder)
707{
708 if (bdev->bd_holder == holder)
709 return true; /* already a holder */
710 else if (bdev->bd_holder != NULL)
711 return false; /* held by someone else */
712 else if (bdev->bd_contains == bdev)
713 return true; /* is a whole device which isn't held */
714
Tejun Heoe525fd82010-11-13 11:55:17 +0100715 else if (whole->bd_holder == bd_may_claim)
Tejun Heo1a3cbbc2010-04-07 18:52:29 +0900716 return true; /* is a partition of a device that is being partitioned */
717 else if (whole->bd_holder != NULL)
718 return false; /* is a partition of a held device */
719 else
720 return true; /* is a partition of an un-held device */
721}
722
723/**
Tejun Heo6b4517a2010-04-07 18:53:59 +0900724 * bd_prepare_to_claim - prepare to claim a block device
725 * @bdev: block device of interest
726 * @whole: the whole device containing @bdev, may equal @bdev
727 * @holder: holder trying to claim @bdev
728 *
729 * Prepare to claim @bdev. This function fails if @bdev is already
730 * claimed by another holder and waits if another claiming is in
731 * progress. This function doesn't actually claim. On successful
732 * return, the caller has ownership of bd_claiming and bd_holder[s].
733 *
734 * CONTEXT:
735 * spin_lock(&bdev_lock). Might release bdev_lock, sleep and regrab
736 * it multiple times.
737 *
738 * RETURNS:
739 * 0 if @bdev can be claimed, -EBUSY otherwise.
740 */
741static int bd_prepare_to_claim(struct block_device *bdev,
742 struct block_device *whole, void *holder)
743{
744retry:
745 /* if someone else claimed, fail */
746 if (!bd_may_claim(bdev, whole, holder))
747 return -EBUSY;
748
Tejun Heoe75aa852010-08-04 17:59:39 +0200749 /* if claiming is already in progress, wait for it to finish */
750 if (whole->bd_claiming) {
Tejun Heo6b4517a2010-04-07 18:53:59 +0900751 wait_queue_head_t *wq = bit_waitqueue(&whole->bd_claiming, 0);
752 DEFINE_WAIT(wait);
753
754 prepare_to_wait(wq, &wait, TASK_UNINTERRUPTIBLE);
755 spin_unlock(&bdev_lock);
756 schedule();
757 finish_wait(wq, &wait);
758 spin_lock(&bdev_lock);
759 goto retry;
760 }
761
762 /* yay, all mine */
763 return 0;
764}
765
766/**
767 * bd_start_claiming - start claiming a block device
768 * @bdev: block device of interest
769 * @holder: holder trying to claim @bdev
770 *
771 * @bdev is about to be opened exclusively. Check @bdev can be opened
772 * exclusively and mark that an exclusive open is in progress. Each
773 * successful call to this function must be matched with a call to
Nick Pigginb0018362010-05-26 01:51:19 +1000774 * either bd_finish_claiming() or bd_abort_claiming() (which do not
775 * fail).
776 *
777 * This function is used to gain exclusive access to the block device
778 * without actually causing other exclusive open attempts to fail. It
779 * should be used when the open sequence itself requires exclusive
780 * access but may subsequently fail.
Tejun Heo6b4517a2010-04-07 18:53:59 +0900781 *
782 * CONTEXT:
783 * Might sleep.
784 *
785 * RETURNS:
786 * Pointer to the block device containing @bdev on success, ERR_PTR()
787 * value on failure.
788 */
789static struct block_device *bd_start_claiming(struct block_device *bdev,
790 void *holder)
791{
792 struct gendisk *disk;
793 struct block_device *whole;
794 int partno, err;
795
796 might_sleep();
797
798 /*
799 * @bdev might not have been initialized properly yet, look up
800 * and grab the outer block device the hard way.
801 */
802 disk = get_gendisk(bdev->bd_dev, &partno);
803 if (!disk)
804 return ERR_PTR(-ENXIO);
805
Tejun Heod4c208b2011-06-13 12:45:48 +0200806 /*
807 * Normally, @bdev should equal what's returned from bdget_disk()
808 * if partno is 0; however, some drivers (floppy) use multiple
809 * bdev's for the same physical device and @bdev may be one of the
810 * aliases. Keep @bdev if partno is 0. This means claimer
811 * tracking is broken for those devices but it has always been that
812 * way.
813 */
814 if (partno)
815 whole = bdget_disk(disk, 0);
816 else
817 whole = bdgrab(bdev);
818
Nick Piggincf342572010-05-26 01:50:21 +1000819 module_put(disk->fops->owner);
Tejun Heo6b4517a2010-04-07 18:53:59 +0900820 put_disk(disk);
821 if (!whole)
822 return ERR_PTR(-ENOMEM);
823
824 /* prepare to claim, if successful, mark claiming in progress */
825 spin_lock(&bdev_lock);
826
827 err = bd_prepare_to_claim(bdev, whole, holder);
828 if (err == 0) {
829 whole->bd_claiming = holder;
830 spin_unlock(&bdev_lock);
831 return whole;
832 } else {
833 spin_unlock(&bdev_lock);
834 bdput(whole);
835 return ERR_PTR(err);
836 }
837}
838
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800839#ifdef CONFIG_SYSFS
Tejun Heo49731ba2011-01-14 18:43:57 +0100840struct bd_holder_disk {
841 struct list_head list;
842 struct gendisk *disk;
843 int refcnt;
844};
845
846static struct bd_holder_disk *bd_find_holder_disk(struct block_device *bdev,
847 struct gendisk *disk)
848{
849 struct bd_holder_disk *holder;
850
851 list_for_each_entry(holder, &bdev->bd_holder_disks, list)
852 if (holder->disk == disk)
853 return holder;
854 return NULL;
855}
856
Andrew Morton4d7dd8f2006-09-29 01:58:56 -0700857static int add_symlink(struct kobject *from, struct kobject *to)
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800858{
Andrew Morton4d7dd8f2006-09-29 01:58:56 -0700859 return sysfs_create_link(from, to, kobject_name(to));
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800860}
861
862static void del_symlink(struct kobject *from, struct kobject *to)
863{
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800864 sysfs_remove_link(from, kobject_name(to));
865}
866
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800867/**
Tejun Heoe09b4572010-11-13 11:55:17 +0100868 * bd_link_disk_holder - create symlinks between holding disk and slave bdev
869 * @bdev: the claimed slave bdev
870 * @disk: the holding disk
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -0500871 *
Tejun Heo49731ba2011-01-14 18:43:57 +0100872 * DON'T USE THIS UNLESS YOU'RE ALREADY USING IT.
873 *
Tejun Heoe09b4572010-11-13 11:55:17 +0100874 * This functions creates the following sysfs symlinks.
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -0500875 *
Tejun Heoe09b4572010-11-13 11:55:17 +0100876 * - from "slaves" directory of the holder @disk to the claimed @bdev
877 * - from "holders" directory of the @bdev to the holder @disk
878 *
879 * For example, if /dev/dm-0 maps to /dev/sda and disk for dm-0 is
880 * passed to bd_link_disk_holder(), then:
881 *
882 * /sys/block/dm-0/slaves/sda --> /sys/block/sda
883 * /sys/block/sda/holders/dm-0 --> /sys/block/dm-0
884 *
885 * The caller must have claimed @bdev before calling this function and
886 * ensure that both @bdev and @disk are valid during the creation and
887 * lifetime of these symlinks.
888 *
889 * CONTEXT:
890 * Might sleep.
891 *
892 * RETURNS:
893 * 0 on success, -errno on failure.
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -0500894 */
Tejun Heoe09b4572010-11-13 11:55:17 +0100895int bd_link_disk_holder(struct block_device *bdev, struct gendisk *disk)
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -0500896{
Tejun Heo49731ba2011-01-14 18:43:57 +0100897 struct bd_holder_disk *holder;
Tejun Heoe09b4572010-11-13 11:55:17 +0100898 int ret = 0;
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800899
Peter Zijlstra2e7b6512006-12-08 02:36:13 -0800900 mutex_lock(&bdev->bd_mutex);
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -0500901
Tejun Heo49731ba2011-01-14 18:43:57 +0100902 WARN_ON_ONCE(!bdev->bd_holder);
Johannes Weiner4e916722007-07-15 23:41:25 -0700903
Tejun Heoe09b4572010-11-13 11:55:17 +0100904 /* FIXME: remove the following once add_disk() handles errors */
905 if (WARN_ON(!disk->slave_dir || !bdev->bd_part->holder_dir))
906 goto out_unlock;
Johannes Weiner4e916722007-07-15 23:41:25 -0700907
Tejun Heo49731ba2011-01-14 18:43:57 +0100908 holder = bd_find_holder_disk(bdev, disk);
909 if (holder) {
910 holder->refcnt++;
Tejun Heoe09b4572010-11-13 11:55:17 +0100911 goto out_unlock;
912 }
913
Tejun Heo49731ba2011-01-14 18:43:57 +0100914 holder = kzalloc(sizeof(*holder), GFP_KERNEL);
915 if (!holder) {
916 ret = -ENOMEM;
917 goto out_unlock;
918 }
919
920 INIT_LIST_HEAD(&holder->list);
921 holder->disk = disk;
922 holder->refcnt = 1;
923
924 ret = add_symlink(disk->slave_dir, &part_to_dev(bdev->bd_part)->kobj);
925 if (ret)
926 goto out_free;
927
928 ret = add_symlink(bdev->bd_part->holder_dir, &disk_to_dev(disk)->kobj);
929 if (ret)
930 goto out_del;
Tejun Heoe7407d12011-02-24 09:56:32 +0100931 /*
932 * bdev could be deleted beneath us which would implicitly destroy
933 * the holder directory. Hold on to it.
934 */
935 kobject_get(bdev->bd_part->holder_dir);
Tejun Heo49731ba2011-01-14 18:43:57 +0100936
937 list_add(&holder->list, &bdev->bd_holder_disks);
938 goto out_unlock;
939
940out_del:
941 del_symlink(disk->slave_dir, &part_to_dev(bdev->bd_part)->kobj);
942out_free:
943 kfree(holder);
Tejun Heoe09b4572010-11-13 11:55:17 +0100944out_unlock:
Jun'ichi Nomurab4cf1b72006-03-27 01:18:00 -0800945 mutex_unlock(&bdev->bd_mutex);
Tejun Heoe09b4572010-11-13 11:55:17 +0100946 return ret;
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800947}
Tejun Heoe09b4572010-11-13 11:55:17 +0100948EXPORT_SYMBOL_GPL(bd_link_disk_holder);
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800949
Tejun Heo49731ba2011-01-14 18:43:57 +0100950/**
951 * bd_unlink_disk_holder - destroy symlinks created by bd_link_disk_holder()
952 * @bdev: the calimed slave bdev
953 * @disk: the holding disk
954 *
955 * DON'T USE THIS UNLESS YOU'RE ALREADY USING IT.
956 *
957 * CONTEXT:
958 * Might sleep.
959 */
960void bd_unlink_disk_holder(struct block_device *bdev, struct gendisk *disk)
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800961{
Tejun Heo49731ba2011-01-14 18:43:57 +0100962 struct bd_holder_disk *holder;
Tejun Heoe09b4572010-11-13 11:55:17 +0100963
Tejun Heo49731ba2011-01-14 18:43:57 +0100964 mutex_lock(&bdev->bd_mutex);
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800965
Tejun Heo49731ba2011-01-14 18:43:57 +0100966 holder = bd_find_holder_disk(bdev, disk);
967
968 if (!WARN_ON_ONCE(holder == NULL) && !--holder->refcnt) {
969 del_symlink(disk->slave_dir, &part_to_dev(bdev->bd_part)->kobj);
970 del_symlink(bdev->bd_part->holder_dir,
971 &disk_to_dev(disk)->kobj);
Tejun Heoe7407d12011-02-24 09:56:32 +0100972 kobject_put(bdev->bd_part->holder_dir);
Tejun Heo49731ba2011-01-14 18:43:57 +0100973 list_del_init(&holder->list);
974 kfree(holder);
975 }
976
977 mutex_unlock(&bdev->bd_mutex);
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800978}
Tejun Heo49731ba2011-01-14 18:43:57 +0100979EXPORT_SYMBOL_GPL(bd_unlink_disk_holder);
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800980#endif
981
Andrew Patterson0c002c22008-09-04 14:27:20 -0600982/**
Andrew Patterson56ade442008-09-04 14:27:40 -0600983 * flush_disk - invalidates all buffer-cache entries on a disk
984 *
985 * @bdev: struct block device to be flushed
Randy Dunlape6eb5ce2011-02-26 10:54:00 -0800986 * @kill_dirty: flag to guide handling of dirty inodes
Andrew Patterson56ade442008-09-04 14:27:40 -0600987 *
988 * Invalidates all buffer-cache entries on a disk. It should be called
989 * when a disk has been changed -- either by a media change or online
990 * resize.
991 */
NeilBrown93b270f2011-02-24 17:25:47 +1100992static void flush_disk(struct block_device *bdev, bool kill_dirty)
Andrew Patterson56ade442008-09-04 14:27:40 -0600993{
NeilBrown93b270f2011-02-24 17:25:47 +1100994 if (__invalidate_device(bdev, kill_dirty)) {
Andrew Patterson56ade442008-09-04 14:27:40 -0600995 char name[BDEVNAME_SIZE] = "";
996
997 if (bdev->bd_disk)
998 disk_name(bdev->bd_disk, 0, name);
999 printk(KERN_WARNING "VFS: busy inodes on changed media or "
1000 "resized disk %s\n", name);
1001 }
1002
1003 if (!bdev->bd_disk)
1004 return;
Tejun Heod27769e2011-08-23 20:01:04 +02001005 if (disk_part_scan_enabled(bdev->bd_disk))
Andrew Patterson56ade442008-09-04 14:27:40 -06001006 bdev->bd_invalidated = 1;
1007}
1008
1009/**
Randy Dunlap57d1b532008-10-09 10:42:38 +02001010 * check_disk_size_change - checks for disk size change and adjusts bdev size.
Andrew Pattersonc3279d12008-09-04 14:27:25 -06001011 * @disk: struct gendisk to check
1012 * @bdev: struct bdev to adjust.
1013 *
1014 * This routine checks to see if the bdev size does not match the disk size
1015 * and adjusts it if it differs.
1016 */
1017void check_disk_size_change(struct gendisk *disk, struct block_device *bdev)
1018{
1019 loff_t disk_size, bdev_size;
1020
1021 disk_size = (loff_t)get_capacity(disk) << 9;
1022 bdev_size = i_size_read(bdev->bd_inode);
1023 if (disk_size != bdev_size) {
1024 char name[BDEVNAME_SIZE];
1025
1026 disk_name(disk, 0, name);
1027 printk(KERN_INFO
1028 "%s: detected capacity change from %lld to %lld\n",
1029 name, bdev_size, disk_size);
1030 i_size_write(bdev->bd_inode, disk_size);
NeilBrown93b270f2011-02-24 17:25:47 +11001031 flush_disk(bdev, false);
Andrew Pattersonc3279d12008-09-04 14:27:25 -06001032 }
1033}
1034EXPORT_SYMBOL(check_disk_size_change);
1035
1036/**
Randy Dunlap57d1b532008-10-09 10:42:38 +02001037 * revalidate_disk - wrapper for lower-level driver's revalidate_disk call-back
Andrew Patterson0c002c22008-09-04 14:27:20 -06001038 * @disk: struct gendisk to be revalidated
1039 *
1040 * This routine is a wrapper for lower-level driver's revalidate_disk
1041 * call-backs. It is used to do common pre and post operations needed
1042 * for all revalidate_disk operations.
1043 */
1044int revalidate_disk(struct gendisk *disk)
1045{
Andrew Pattersonc3279d12008-09-04 14:27:25 -06001046 struct block_device *bdev;
Andrew Patterson0c002c22008-09-04 14:27:20 -06001047 int ret = 0;
1048
1049 if (disk->fops->revalidate_disk)
1050 ret = disk->fops->revalidate_disk(disk);
1051
Andrew Pattersonc3279d12008-09-04 14:27:25 -06001052 bdev = bdget_disk(disk, 0);
1053 if (!bdev)
1054 return ret;
1055
1056 mutex_lock(&bdev->bd_mutex);
1057 check_disk_size_change(disk, bdev);
MITSUNARI Shigeob6f489a2013-02-21 16:42:01 -08001058 bdev->bd_invalidated = 0;
Andrew Pattersonc3279d12008-09-04 14:27:25 -06001059 mutex_unlock(&bdev->bd_mutex);
1060 bdput(bdev);
Andrew Patterson0c002c22008-09-04 14:27:20 -06001061 return ret;
1062}
1063EXPORT_SYMBOL(revalidate_disk);
1064
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065/*
1066 * This routine checks whether a removable media has been changed,
1067 * and invalidates all buffer-cache-entries in that case. This
1068 * is a relatively slow routine, so we have to try to minimize using
1069 * it. Thus it is called only upon a 'mount' or 'open'. This
1070 * is the best way of combining speed and utility, I think.
1071 * People changing diskettes in the middle of an operation deserve
1072 * to lose :-)
1073 */
1074int check_disk_change(struct block_device *bdev)
1075{
1076 struct gendisk *disk = bdev->bd_disk;
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -07001077 const struct block_device_operations *bdops = disk->fops;
Tejun Heo77ea8872010-12-08 20:57:37 +01001078 unsigned int events;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079
Tejun Heo77ea8872010-12-08 20:57:37 +01001080 events = disk_clear_events(disk, DISK_EVENT_MEDIA_CHANGE |
1081 DISK_EVENT_EJECT_REQUEST);
1082 if (!(events & DISK_EVENT_MEDIA_CHANGE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 return 0;
1084
NeilBrown93b270f2011-02-24 17:25:47 +11001085 flush_disk(bdev, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 if (bdops->revalidate_disk)
1087 bdops->revalidate_disk(bdev->bd_disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 return 1;
1089}
1090
1091EXPORT_SYMBOL(check_disk_change);
1092
1093void bd_set_size(struct block_device *bdev, loff_t size)
1094{
Martin K. Petersene1defc42009-05-22 17:17:49 -04001095 unsigned bsize = bdev_logical_block_size(bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096
Guo Chaoa1781722013-02-21 15:16:42 -08001097 mutex_lock(&bdev->bd_inode->i_mutex);
1098 i_size_write(bdev->bd_inode, size);
1099 mutex_unlock(&bdev->bd_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 while (bsize < PAGE_CACHE_SIZE) {
1101 if (size & bsize)
1102 break;
1103 bsize <<= 1;
1104 }
1105 bdev->bd_block_size = bsize;
1106 bdev->bd_inode->i_blkbits = blksize_bits(bsize);
1107}
1108EXPORT_SYMBOL(bd_set_size);
1109
Al Viro9a1c3542008-02-22 20:40:24 -05001110static int __blkdev_put(struct block_device *bdev, fmode_t mode, int for_part);
NeilBrown37be4122006-12-08 02:36:16 -08001111
Peter Zijlstra6d740cd2007-02-20 13:58:18 -08001112/*
1113 * bd_mutex locking:
1114 *
1115 * mutex_lock(part->bd_mutex)
1116 * mutex_lock_nested(whole->bd_mutex, 1)
1117 */
1118
Al Viro572c4892007-10-08 13:24:05 -04001119static int __blkdev_get(struct block_device *bdev, fmode_t mode, int for_part)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 struct gendisk *disk;
Tejun Heo523e1d32011-10-19 14:31:07 +02001122 struct module *owner;
Pavel Emelyanov7db9cfd2008-06-05 22:46:27 -07001123 int ret;
Tejun Heocf771cb2008-09-03 09:01:09 +02001124 int partno;
Al Virofe6e9c12008-06-23 08:30:55 -04001125 int perm = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126
Al Viro572c4892007-10-08 13:24:05 -04001127 if (mode & FMODE_READ)
Al Virofe6e9c12008-06-23 08:30:55 -04001128 perm |= MAY_READ;
Al Viro572c4892007-10-08 13:24:05 -04001129 if (mode & FMODE_WRITE)
Al Virofe6e9c12008-06-23 08:30:55 -04001130 perm |= MAY_WRITE;
1131 /*
1132 * hooks: /n/, see "layering violations".
1133 */
Chris Wrightb7300b72010-08-10 18:02:55 -07001134 if (!for_part) {
1135 ret = devcgroup_inode_permission(bdev->bd_inode, perm);
1136 if (ret != 0) {
1137 bdput(bdev);
1138 return ret;
1139 }
Al Viro82666022008-08-01 05:32:04 -04001140 }
Pavel Emelyanov7db9cfd2008-06-05 22:46:27 -07001141
NeilBrownd3374822009-01-09 08:31:10 +11001142 restart:
Tejun Heo0762b8b2008-08-25 19:56:12 +09001143
Tejun Heo89f97492008-11-05 10:21:06 +01001144 ret = -ENXIO;
Tejun Heocf771cb2008-09-03 09:01:09 +02001145 disk = get_gendisk(bdev->bd_dev, &partno);
Tejun Heo0762b8b2008-08-25 19:56:12 +09001146 if (!disk)
Arnd Bergmann6e9624b2010-08-07 18:25:34 +02001147 goto out;
Tejun Heo523e1d32011-10-19 14:31:07 +02001148 owner = disk->fops->owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149
Tejun Heo69e02c52011-03-09 19:54:27 +01001150 disk_block_events(disk);
NeilBrown6796bf52006-12-08 02:36:16 -08001151 mutex_lock_nested(&bdev->bd_mutex, for_part);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 if (!bdev->bd_openers) {
1153 bdev->bd_disk = disk;
Andi Kleen87192a22012-01-12 17:20:34 -08001154 bdev->bd_queue = disk->queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 bdev->bd_contains = bdev;
Tejun Heocf771cb2008-09-03 09:01:09 +02001156 if (!partno) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 struct backing_dev_info *bdi;
Tejun Heo89f97492008-11-05 10:21:06 +01001158
1159 ret = -ENXIO;
1160 bdev->bd_part = disk_get_part(disk, partno);
1161 if (!bdev->bd_part)
1162 goto out_clear;
1163
Tejun Heo1196f8b2011-04-21 20:54:45 +02001164 ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 if (disk->fops->open) {
Al Viro572c4892007-10-08 13:24:05 -04001166 ret = disk->fops->open(bdev, mode);
NeilBrownd3374822009-01-09 08:31:10 +11001167 if (ret == -ERESTARTSYS) {
1168 /* Lost a race with 'disk' being
1169 * deleted, try again.
1170 * See md.c
1171 */
1172 disk_put_part(bdev->bd_part);
1173 bdev->bd_part = NULL;
NeilBrownd3374822009-01-09 08:31:10 +11001174 bdev->bd_disk = NULL;
Andi Kleen87192a22012-01-12 17:20:34 -08001175 bdev->bd_queue = NULL;
NeilBrownd3374822009-01-09 08:31:10 +11001176 mutex_unlock(&bdev->bd_mutex);
Tejun Heo69e02c52011-03-09 19:54:27 +01001177 disk_unblock_events(disk);
Tejun Heo69e02c52011-03-09 19:54:27 +01001178 put_disk(disk);
Tejun Heo523e1d32011-10-19 14:31:07 +02001179 module_put(owner);
NeilBrownd3374822009-01-09 08:31:10 +11001180 goto restart;
1181 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 }
Tejun Heo7e697232011-05-23 13:26:07 +02001183
1184 if (!ret && !bdev->bd_openers) {
1185 bd_set_size(bdev,(loff_t)get_capacity(disk)<<9);
1186 bdi = blk_get_backing_dev_info(bdev);
1187 if (bdi == NULL)
1188 bdi = &default_backing_dev_info;
1189 bdev_inode_switch_bdi(bdev->bd_inode, bdi);
1190 }
1191
Tejun Heo1196f8b2011-04-21 20:54:45 +02001192 /*
1193 * If the device is invalidated, rescan partition
1194 * if open succeeded or failed with -ENOMEDIUM.
1195 * The latter is necessary to prevent ghost
1196 * partitions on a removed medium.
1197 */
Jun'ichi Nomurafe316bf2012-03-02 10:38:33 +01001198 if (bdev->bd_invalidated) {
1199 if (!ret)
1200 rescan_partitions(disk, bdev);
1201 else if (ret == -ENOMEDIUM)
1202 invalidate_partitions(disk, bdev);
1203 }
Tejun Heo1196f8b2011-04-21 20:54:45 +02001204 if (ret)
1205 goto out_clear;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 struct block_device *whole;
1208 whole = bdget_disk(disk, 0);
1209 ret = -ENOMEM;
1210 if (!whole)
Tejun Heo0762b8b2008-08-25 19:56:12 +09001211 goto out_clear;
NeilBrown37be4122006-12-08 02:36:16 -08001212 BUG_ON(for_part);
Al Viro572c4892007-10-08 13:24:05 -04001213 ret = __blkdev_get(whole, mode, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 if (ret)
Tejun Heo0762b8b2008-08-25 19:56:12 +09001215 goto out_clear;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 bdev->bd_contains = whole;
Dave Chinnera5491e02010-10-21 11:49:26 +11001217 bdev_inode_switch_bdi(bdev->bd_inode,
1218 whole->bd_inode->i_data.backing_dev_info);
Tejun Heo89f97492008-11-05 10:21:06 +01001219 bdev->bd_part = disk_get_part(disk, partno);
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001220 if (!(disk->flags & GENHD_FL_UP) ||
Tejun Heo89f97492008-11-05 10:21:06 +01001221 !bdev->bd_part || !bdev->bd_part->nr_sects) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 ret = -ENXIO;
Tejun Heo0762b8b2008-08-25 19:56:12 +09001223 goto out_clear;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 }
Tejun Heo89f97492008-11-05 10:21:06 +01001225 bd_set_size(bdev, (loff_t)bdev->bd_part->nr_sects << 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 }
1227 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 if (bdev->bd_contains == bdev) {
Tejun Heo1196f8b2011-04-21 20:54:45 +02001229 ret = 0;
1230 if (bdev->bd_disk->fops->open)
Al Viro572c4892007-10-08 13:24:05 -04001231 ret = bdev->bd_disk->fops->open(bdev, mode);
Tejun Heo1196f8b2011-04-21 20:54:45 +02001232 /* the same as first opener case, read comment there */
Jun'ichi Nomurafe316bf2012-03-02 10:38:33 +01001233 if (bdev->bd_invalidated) {
1234 if (!ret)
1235 rescan_partitions(bdev->bd_disk, bdev);
1236 else if (ret == -ENOMEDIUM)
1237 invalidate_partitions(bdev->bd_disk, bdev);
1238 }
Tejun Heo1196f8b2011-04-21 20:54:45 +02001239 if (ret)
1240 goto out_unlock_bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 }
Tejun Heo69e02c52011-03-09 19:54:27 +01001242 /* only one opener holds refs to the module and disk */
Tejun Heo69e02c52011-03-09 19:54:27 +01001243 put_disk(disk);
Tejun Heo523e1d32011-10-19 14:31:07 +02001244 module_put(owner);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 }
1246 bdev->bd_openers++;
NeilBrown37be4122006-12-08 02:36:16 -08001247 if (for_part)
1248 bdev->bd_part_count++;
Arjan van de Venc039e312006-03-23 03:00:28 -08001249 mutex_unlock(&bdev->bd_mutex);
Tejun Heo69e02c52011-03-09 19:54:27 +01001250 disk_unblock_events(disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 return 0;
1252
Tejun Heo0762b8b2008-08-25 19:56:12 +09001253 out_clear:
Tejun Heo89f97492008-11-05 10:21:06 +01001254 disk_put_part(bdev->bd_part);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 bdev->bd_disk = NULL;
Tejun Heo0762b8b2008-08-25 19:56:12 +09001256 bdev->bd_part = NULL;
Andi Kleen87192a22012-01-12 17:20:34 -08001257 bdev->bd_queue = NULL;
Dave Chinnera5491e02010-10-21 11:49:26 +11001258 bdev_inode_switch_bdi(bdev->bd_inode, &default_backing_dev_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 if (bdev != bdev->bd_contains)
Al Viro572c4892007-10-08 13:24:05 -04001260 __blkdev_put(bdev->bd_contains, mode, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 bdev->bd_contains = NULL;
Tejun Heo0762b8b2008-08-25 19:56:12 +09001262 out_unlock_bdev:
Arjan van de Venc039e312006-03-23 03:00:28 -08001263 mutex_unlock(&bdev->bd_mutex);
Tejun Heo69e02c52011-03-09 19:54:27 +01001264 disk_unblock_events(disk);
Tejun Heo0762b8b2008-08-25 19:56:12 +09001265 put_disk(disk);
Tejun Heo523e1d32011-10-19 14:31:07 +02001266 module_put(owner);
Dan Carpenter4345cab2011-03-19 13:53:31 +01001267 out:
Tejun Heo0762b8b2008-08-25 19:56:12 +09001268 bdput(bdev);
1269
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 return ret;
1271}
1272
Tejun Heod4d77622010-11-13 11:55:18 +01001273/**
1274 * blkdev_get - open a block device
1275 * @bdev: block_device to open
1276 * @mode: FMODE_* mask
1277 * @holder: exclusive holder identifier
1278 *
1279 * Open @bdev with @mode. If @mode includes %FMODE_EXCL, @bdev is
1280 * open with exclusive access. Specifying %FMODE_EXCL with %NULL
1281 * @holder is invalid. Exclusive opens may nest for the same @holder.
1282 *
1283 * On success, the reference count of @bdev is unchanged. On failure,
1284 * @bdev is put.
1285 *
1286 * CONTEXT:
1287 * Might sleep.
1288 *
1289 * RETURNS:
1290 * 0 on success, -errno on failure.
1291 */
Tejun Heoe525fd82010-11-13 11:55:17 +01001292int blkdev_get(struct block_device *bdev, fmode_t mode, void *holder)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293{
Tejun Heoe525fd82010-11-13 11:55:17 +01001294 struct block_device *whole = NULL;
1295 int res;
1296
1297 WARN_ON_ONCE((mode & FMODE_EXCL) && !holder);
1298
1299 if ((mode & FMODE_EXCL) && holder) {
1300 whole = bd_start_claiming(bdev, holder);
1301 if (IS_ERR(whole)) {
1302 bdput(bdev);
1303 return PTR_ERR(whole);
1304 }
1305 }
1306
1307 res = __blkdev_get(bdev, mode, 0);
1308
1309 if (whole) {
Tejun Heod4dc2102011-04-21 20:54:46 +02001310 struct gendisk *disk = whole->bd_disk;
1311
Tejun Heo6a027ef2010-11-13 11:55:17 +01001312 /* finish claiming */
Tejun Heo77ea8872010-12-08 20:57:37 +01001313 mutex_lock(&bdev->bd_mutex);
Tejun Heo6a027ef2010-11-13 11:55:17 +01001314 spin_lock(&bdev_lock);
1315
Tejun Heo77ea8872010-12-08 20:57:37 +01001316 if (!res) {
Tejun Heo6a027ef2010-11-13 11:55:17 +01001317 BUG_ON(!bd_may_claim(bdev, whole, holder));
1318 /*
1319 * Note that for a whole device bd_holders
1320 * will be incremented twice, and bd_holder
1321 * will be set to bd_may_claim before being
1322 * set to holder
1323 */
1324 whole->bd_holders++;
1325 whole->bd_holder = bd_may_claim;
1326 bdev->bd_holders++;
1327 bdev->bd_holder = holder;
1328 }
1329
1330 /* tell others that we're done */
1331 BUG_ON(whole->bd_claiming != holder);
1332 whole->bd_claiming = NULL;
1333 wake_up_bit(&whole->bd_claiming, 0);
1334
1335 spin_unlock(&bdev_lock);
Tejun Heo77ea8872010-12-08 20:57:37 +01001336
1337 /*
Tejun Heod4dc2102011-04-21 20:54:46 +02001338 * Block event polling for write claims if requested. Any
1339 * write holder makes the write_holder state stick until
1340 * all are released. This is good enough and tracking
1341 * individual writeable reference is too fragile given the
1342 * way @mode is used in blkdev_get/put().
Tejun Heo77ea8872010-12-08 20:57:37 +01001343 */
Tejun Heo4c49ff32011-06-01 08:27:41 +02001344 if (!res && (mode & FMODE_WRITE) && !bdev->bd_write_holder &&
1345 (disk->flags & GENHD_FL_BLOCK_EVENTS_ON_EXCL_WRITE)) {
Tejun Heo77ea8872010-12-08 20:57:37 +01001346 bdev->bd_write_holder = true;
Tejun Heod4dc2102011-04-21 20:54:46 +02001347 disk_block_events(disk);
Tejun Heo77ea8872010-12-08 20:57:37 +01001348 }
1349
1350 mutex_unlock(&bdev->bd_mutex);
Tejun Heo6a027ef2010-11-13 11:55:17 +01001351 bdput(whole);
Tejun Heoe525fd82010-11-13 11:55:17 +01001352 }
1353
1354 return res;
NeilBrown37be4122006-12-08 02:36:16 -08001355}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356EXPORT_SYMBOL(blkdev_get);
1357
Tejun Heod4d77622010-11-13 11:55:18 +01001358/**
1359 * blkdev_get_by_path - open a block device by name
1360 * @path: path to the block device to open
1361 * @mode: FMODE_* mask
1362 * @holder: exclusive holder identifier
1363 *
1364 * Open the blockdevice described by the device file at @path. @mode
1365 * and @holder are identical to blkdev_get().
1366 *
1367 * On success, the returned block_device has reference count of one.
1368 *
1369 * CONTEXT:
1370 * Might sleep.
1371 *
1372 * RETURNS:
1373 * Pointer to block_device on success, ERR_PTR(-errno) on failure.
1374 */
1375struct block_device *blkdev_get_by_path(const char *path, fmode_t mode,
1376 void *holder)
1377{
1378 struct block_device *bdev;
1379 int err;
1380
1381 bdev = lookup_bdev(path);
1382 if (IS_ERR(bdev))
1383 return bdev;
1384
1385 err = blkdev_get(bdev, mode, holder);
1386 if (err)
1387 return ERR_PTR(err);
1388
Chuck Ebberte51900f2011-02-16 18:11:53 -05001389 if ((mode & FMODE_WRITE) && bdev_read_only(bdev)) {
1390 blkdev_put(bdev, mode);
1391 return ERR_PTR(-EACCES);
1392 }
1393
Tejun Heod4d77622010-11-13 11:55:18 +01001394 return bdev;
1395}
1396EXPORT_SYMBOL(blkdev_get_by_path);
1397
1398/**
1399 * blkdev_get_by_dev - open a block device by device number
1400 * @dev: device number of block device to open
1401 * @mode: FMODE_* mask
1402 * @holder: exclusive holder identifier
1403 *
1404 * Open the blockdevice described by device number @dev. @mode and
1405 * @holder are identical to blkdev_get().
1406 *
1407 * Use it ONLY if you really do not have anything better - i.e. when
1408 * you are behind a truly sucky interface and all you are given is a
1409 * device number. _Never_ to be used for internal purposes. If you
1410 * ever need it - reconsider your API.
1411 *
1412 * On success, the returned block_device has reference count of one.
1413 *
1414 * CONTEXT:
1415 * Might sleep.
1416 *
1417 * RETURNS:
1418 * Pointer to block_device on success, ERR_PTR(-errno) on failure.
1419 */
1420struct block_device *blkdev_get_by_dev(dev_t dev, fmode_t mode, void *holder)
1421{
1422 struct block_device *bdev;
1423 int err;
1424
1425 bdev = bdget(dev);
1426 if (!bdev)
1427 return ERR_PTR(-ENOMEM);
1428
1429 err = blkdev_get(bdev, mode, holder);
1430 if (err)
1431 return ERR_PTR(err);
1432
1433 return bdev;
1434}
1435EXPORT_SYMBOL(blkdev_get_by_dev);
1436
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437static int blkdev_open(struct inode * inode, struct file * filp)
1438{
1439 struct block_device *bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440
1441 /*
1442 * Preserve backwards compatibility and allow large file access
1443 * even if userspace doesn't ask for it explicitly. Some mkfs
1444 * binary needs it. We might want to drop this workaround
1445 * during an unstable branch.
1446 */
1447 filp->f_flags |= O_LARGEFILE;
1448
Al Viro572c4892007-10-08 13:24:05 -04001449 if (filp->f_flags & O_NDELAY)
1450 filp->f_mode |= FMODE_NDELAY;
1451 if (filp->f_flags & O_EXCL)
1452 filp->f_mode |= FMODE_EXCL;
1453 if ((filp->f_flags & O_ACCMODE) == 3)
1454 filp->f_mode |= FMODE_WRITE_IOCTL;
1455
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 bdev = bd_acquire(inode);
Pavel Emelianov6a2aae02006-10-28 10:38:33 -07001457 if (bdev == NULL)
1458 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459
Al Viro572c4892007-10-08 13:24:05 -04001460 filp->f_mapping = bdev->bd_inode->i_mapping;
1461
Tejun Heoe525fd82010-11-13 11:55:17 +01001462 return blkdev_get(bdev, filp->f_mode, filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463}
1464
Al Viro9a1c3542008-02-22 20:40:24 -05001465static int __blkdev_put(struct block_device *bdev, fmode_t mode, int for_part)
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001466{
1467 int ret = 0;
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001468 struct gendisk *disk = bdev->bd_disk;
NeilBrown37be4122006-12-08 02:36:16 -08001469 struct block_device *victim = NULL;
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001470
NeilBrown6796bf52006-12-08 02:36:16 -08001471 mutex_lock_nested(&bdev->bd_mutex, for_part);
NeilBrown37be4122006-12-08 02:36:16 -08001472 if (for_part)
1473 bdev->bd_part_count--;
1474
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001475 if (!--bdev->bd_openers) {
Tejun Heo6a027ef2010-11-13 11:55:17 +01001476 WARN_ON_ONCE(bdev->bd_holders);
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001477 sync_blockdev(bdev);
1478 kill_bdev(bdev);
NeilBrown94007752011-09-10 17:20:21 +10001479 /* ->release can cause the old bdi to disappear,
1480 * so must switch it out first
1481 */
1482 bdev_inode_switch_bdi(bdev->bd_inode,
1483 &default_backing_dev_info);
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001484 }
1485 if (bdev->bd_contains == bdev) {
1486 if (disk->fops->release)
Al Viro9a1c3542008-02-22 20:40:24 -05001487 ret = disk->fops->release(disk, mode);
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001488 }
1489 if (!bdev->bd_openers) {
1490 struct module *owner = disk->fops->owner;
1491
Tejun Heo0762b8b2008-08-25 19:56:12 +09001492 disk_put_part(bdev->bd_part);
1493 bdev->bd_part = NULL;
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001494 bdev->bd_disk = NULL;
NeilBrown37be4122006-12-08 02:36:16 -08001495 if (bdev != bdev->bd_contains)
1496 victim = bdev->bd_contains;
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001497 bdev->bd_contains = NULL;
Tejun Heo523e1d32011-10-19 14:31:07 +02001498
1499 put_disk(disk);
1500 module_put(owner);
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001501 }
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001502 mutex_unlock(&bdev->bd_mutex);
1503 bdput(bdev);
NeilBrown37be4122006-12-08 02:36:16 -08001504 if (victim)
Al Viro9a1c3542008-02-22 20:40:24 -05001505 __blkdev_put(victim, mode, 1);
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001506 return ret;
1507}
1508
Al Viro9a1c3542008-02-22 20:40:24 -05001509int blkdev_put(struct block_device *bdev, fmode_t mode)
NeilBrown37be4122006-12-08 02:36:16 -08001510{
Tejun Heo85ef06d2011-07-01 16:17:47 +02001511 mutex_lock(&bdev->bd_mutex);
1512
Tejun Heoe525fd82010-11-13 11:55:17 +01001513 if (mode & FMODE_EXCL) {
Tejun Heo6a027ef2010-11-13 11:55:17 +01001514 bool bdev_free;
1515
1516 /*
1517 * Release a claim on the device. The holder fields
1518 * are protected with bdev_lock. bd_mutex is to
1519 * synchronize disk_holder unlinking.
1520 */
Tejun Heo6a027ef2010-11-13 11:55:17 +01001521 spin_lock(&bdev_lock);
1522
1523 WARN_ON_ONCE(--bdev->bd_holders < 0);
1524 WARN_ON_ONCE(--bdev->bd_contains->bd_holders < 0);
1525
1526 /* bd_contains might point to self, check in a separate step */
1527 if ((bdev_free = !bdev->bd_holders))
1528 bdev->bd_holder = NULL;
1529 if (!bdev->bd_contains->bd_holders)
1530 bdev->bd_contains->bd_holder = NULL;
1531
1532 spin_unlock(&bdev_lock);
1533
Tejun Heo77ea8872010-12-08 20:57:37 +01001534 /*
1535 * If this was the last claim, remove holder link and
1536 * unblock evpoll if it was a write holder.
1537 */
Tejun Heo85ef06d2011-07-01 16:17:47 +02001538 if (bdev_free && bdev->bd_write_holder) {
1539 disk_unblock_events(bdev->bd_disk);
1540 bdev->bd_write_holder = false;
Tejun Heo77ea8872010-12-08 20:57:37 +01001541 }
Tejun Heo69362172011-03-09 19:54:27 +01001542 }
Tejun Heo77ea8872010-12-08 20:57:37 +01001543
Tejun Heo85ef06d2011-07-01 16:17:47 +02001544 /*
1545 * Trigger event checking and tell drivers to flush MEDIA_CHANGE
1546 * event. This is to ensure detection of media removal commanded
1547 * from userland - e.g. eject(1).
1548 */
1549 disk_flush_events(bdev->bd_disk, DISK_EVENT_MEDIA_CHANGE);
1550
1551 mutex_unlock(&bdev->bd_mutex);
1552
Al Viro9a1c3542008-02-22 20:40:24 -05001553 return __blkdev_put(bdev, mode, 0);
NeilBrown37be4122006-12-08 02:36:16 -08001554}
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001555EXPORT_SYMBOL(blkdev_put);
1556
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557static int blkdev_close(struct inode * inode, struct file * filp)
1558{
1559 struct block_device *bdev = I_BDEV(filp->f_mapping->host);
Tejun Heoe525fd82010-11-13 11:55:17 +01001560
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,
Nick Piggin6272b5a2007-10-16 01:25:04 -07001625 .write_begin = blkdev_write_begin,
1626 .write_end = blkdev_write_end,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 .writepages = generic_writepages,
Theodore Ts'o87d8fe12009-01-03 09:47:09 -05001628 .releasepage = blkdev_releasepage,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 .direct_IO = blkdev_direct_IO,
1630};
1631
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08001632const struct file_operations def_blk_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 .open = blkdev_open,
1634 .release = blkdev_close,
1635 .llseek = block_llseek,
Badari Pulavarty543ade12006-09-30 23:28:48 -07001636 .read = do_sync_read,
1637 .write = do_sync_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 .aio_read = generic_file_aio_read,
Christoph Hellwigeef99382009-08-20 17:43:41 +02001639 .aio_write = blkdev_aio_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 .mmap = generic_file_mmap,
Andrew Mortonb1dd3b22010-04-06 14:35:00 -07001641 .fsync = blkdev_fsync,
Arnd Bergmannbb93e3a2005-06-23 00:10:15 -07001642 .unlocked_ioctl = block_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643#ifdef CONFIG_COMPAT
1644 .compat_ioctl = compat_blkdev_ioctl,
1645#endif
Jens Axboe7f9c51f2006-05-01 19:59:32 +02001646 .splice_read = generic_file_splice_read,
1647 .splice_write = generic_file_splice_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648};
1649
1650int ioctl_by_bdev(struct block_device *bdev, unsigned cmd, unsigned long arg)
1651{
1652 int res;
1653 mm_segment_t old_fs = get_fs();
1654 set_fs(KERNEL_DS);
Al Viro56b26ad2008-09-19 03:17:36 -04001655 res = blkdev_ioctl(bdev, 0, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 set_fs(old_fs);
1657 return res;
1658}
1659
1660EXPORT_SYMBOL(ioctl_by_bdev);
1661
1662/**
1663 * lookup_bdev - lookup a struct block_device by name
Randy Dunlap94e29592009-01-06 14:41:15 -08001664 * @pathname: special file representing the block device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 *
Randy Dunlap57d1b532008-10-09 10:42:38 +02001666 * Get a reference to the blockdevice at @pathname in the current
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 * namespace if possible and return it. Return ERR_PTR(error)
1668 * otherwise.
1669 */
Al Viro421748e2008-08-02 01:04:36 -04001670struct block_device *lookup_bdev(const char *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671{
1672 struct block_device *bdev;
1673 struct inode *inode;
Al Viro421748e2008-08-02 01:04:36 -04001674 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 int error;
1676
Al Viro421748e2008-08-02 01:04:36 -04001677 if (!pathname || !*pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 return ERR_PTR(-EINVAL);
1679
Al Viro421748e2008-08-02 01:04:36 -04001680 error = kern_path(pathname, LOOKUP_FOLLOW, &path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 if (error)
1682 return ERR_PTR(error);
1683
Al Viro421748e2008-08-02 01:04:36 -04001684 inode = path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 error = -ENOTBLK;
1686 if (!S_ISBLK(inode->i_mode))
1687 goto fail;
1688 error = -EACCES;
Al Viro421748e2008-08-02 01:04:36 -04001689 if (path.mnt->mnt_flags & MNT_NODEV)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 goto fail;
1691 error = -ENOMEM;
1692 bdev = bd_acquire(inode);
1693 if (!bdev)
1694 goto fail;
1695out:
Al Viro421748e2008-08-02 01:04:36 -04001696 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 return bdev;
1698fail:
1699 bdev = ERR_PTR(error);
1700 goto out;
1701}
Al Virod5686b42008-08-01 05:00:11 -04001702EXPORT_SYMBOL(lookup_bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703
NeilBrown93b270f2011-02-24 17:25:47 +11001704int __invalidate_device(struct block_device *bdev, bool kill_dirty)
David Howellsb71e8a42006-08-29 19:06:11 +01001705{
1706 struct super_block *sb = get_super(bdev);
1707 int res = 0;
1708
1709 if (sb) {
1710 /*
1711 * no need to lock the super, get_super holds the
1712 * read mutex so the filesystem cannot go away
1713 * under us (->put_super runs with the write lock
1714 * hold).
1715 */
1716 shrink_dcache_sb(sb);
NeilBrown93b270f2011-02-24 17:25:47 +11001717 res = invalidate_inodes(sb, kill_dirty);
David Howellsb71e8a42006-08-29 19:06:11 +01001718 drop_super(sb);
1719 }
Peter Zijlstraf98393a2007-05-06 14:49:54 -07001720 invalidate_bdev(bdev);
David Howellsb71e8a42006-08-29 19:06:11 +01001721 return res;
1722}
1723EXPORT_SYMBOL(__invalidate_device);