blob: 026ca7b8431c7e295a6f54e95d5448daed99248a [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 Viroff01bb482011-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 Viroff01bb482011-09-16 02:31:11 -040029#include <linux/cleancache.h>
Kent Overstreeta27bb332013-05-07 16:19:08 -070030#include <linux/aio.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <asm/uaccess.h>
David Howells07f3f052006-09-30 20:52:18 +020032#include "internal.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
34struct bdev_inode {
35 struct block_device bdev;
36 struct inode vfs_inode;
37};
38
Adrian Bunk4c54ac62008-02-18 13:48:31 +010039static const struct address_space_operations def_blk_aops;
40
Linus Torvalds1da177e2005-04-16 15:20:36 -070041static inline struct bdev_inode *BDEV_I(struct inode *inode)
42{
43 return container_of(inode, struct bdev_inode, vfs_inode);
44}
45
46inline struct block_device *I_BDEV(struct inode *inode)
47{
48 return &BDEV_I(inode)->bdev;
49}
Linus Torvalds1da177e2005-04-16 15:20:36 -070050EXPORT_SYMBOL(I_BDEV);
51
Christoph Hellwig564f00f2015-01-14 10:42:33 +010052static void bdev_write_inode(struct inode *inode)
53{
54 spin_lock(&inode->i_lock);
55 while (inode->i_state & I_DIRTY) {
56 spin_unlock(&inode->i_lock);
57 WARN_ON_ONCE(write_inode_now(inode, true));
58 spin_lock(&inode->i_lock);
59 }
60 spin_unlock(&inode->i_lock);
61}
62
Dave Chinnera5491e02010-10-21 11:49:26 +110063/*
Tejun Heo018a17b2014-09-08 08:04:01 +090064 * Move the inode from its current bdi to a new bdi. Make sure the inode
65 * is clean before moving so that it doesn't linger on the old bdi.
Dave Chinnera5491e02010-10-21 11:49:26 +110066 */
67static void bdev_inode_switch_bdi(struct inode *inode,
68 struct backing_dev_info *dst)
69{
Christoph Hellwig564f00f2015-01-14 10:42:33 +010070 spin_lock(&inode->i_lock);
71 WARN_ON_ONCE(inode->i_state & I_DIRTY);
72 inode->i_data.backing_dev_info = dst;
73 spin_unlock(&inode->i_lock);
Dave Chinnera5491e02010-10-21 11:49:26 +110074}
75
Peter Zijlstraf9a14392007-05-06 14:49:55 -070076/* Kill _all_ buffers and pagecache , dirty or not.. */
Al Viroff01bb482011-09-16 02:31:11 -040077void kill_bdev(struct block_device *bdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070078{
Al Viroff01bb482011-09-16 02:31:11 -040079 struct address_space *mapping = bdev->bd_inode->i_mapping;
80
Johannes Weiner91b0abe2014-04-03 14:47:49 -070081 if (mapping->nrpages == 0 && mapping->nrshadows == 0)
Peter Zijlstraf9a14392007-05-06 14:49:55 -070082 return;
Al Viroff01bb482011-09-16 02:31:11 -040083
Peter Zijlstraf9a14392007-05-06 14:49:55 -070084 invalidate_bh_lrus();
Al Viroff01bb482011-09-16 02:31:11 -040085 truncate_inode_pages(mapping, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086}
Al Viroff01bb482011-09-16 02:31:11 -040087EXPORT_SYMBOL(kill_bdev);
88
89/* Invalidate clean unused buffers and pagecache. */
90void invalidate_bdev(struct block_device *bdev)
91{
92 struct address_space *mapping = bdev->bd_inode->i_mapping;
93
94 if (mapping->nrpages == 0)
95 return;
96
97 invalidate_bh_lrus();
98 lru_add_drain_all(); /* make sure all lru add caches are flushed */
99 invalidate_mapping_pages(mapping, 0, -1);
100 /* 99% of the time, we don't need to flush the cleancache on the bdev.
101 * But, for the strange corners, lets be cautious
102 */
Dan Magenheimer31677602011-09-21 11:56:28 -0400103 cleancache_invalidate_inode(mapping);
Al Viroff01bb482011-09-16 02:31:11 -0400104}
105EXPORT_SYMBOL(invalidate_bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
107int set_blocksize(struct block_device *bdev, int size)
108{
109 /* Size must be a power of two, and between 512 and PAGE_SIZE */
Vignesh Babu BM1368c4f2007-05-08 00:24:32 -0700110 if (size > PAGE_SIZE || size < 512 || !is_power_of_2(size))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 return -EINVAL;
112
113 /* Size cannot be smaller than the size supported by the device */
Martin K. Petersene1defc42009-05-22 17:17:49 -0400114 if (size < bdev_logical_block_size(bdev))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 return -EINVAL;
116
117 /* Don't change the size if it is same as current */
118 if (bdev->bd_block_size != size) {
119 sync_blockdev(bdev);
120 bdev->bd_block_size = size;
121 bdev->bd_inode->i_blkbits = blksize_bits(size);
122 kill_bdev(bdev);
123 }
124 return 0;
125}
126
127EXPORT_SYMBOL(set_blocksize);
128
129int sb_set_blocksize(struct super_block *sb, int size)
130{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 if (set_blocksize(sb->s_bdev, size))
132 return 0;
133 /* If we get here, we know size is power of two
134 * and it's value is between 512 and PAGE_SIZE */
135 sb->s_blocksize = size;
Coywolf Qi Hunt38885bd2006-03-24 03:18:05 -0800136 sb->s_blocksize_bits = blksize_bits(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 return sb->s_blocksize;
138}
139
140EXPORT_SYMBOL(sb_set_blocksize);
141
142int sb_min_blocksize(struct super_block *sb, int size)
143{
Martin K. Petersene1defc42009-05-22 17:17:49 -0400144 int minsize = bdev_logical_block_size(sb->s_bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 if (size < minsize)
146 size = minsize;
147 return sb_set_blocksize(sb, size);
148}
149
150EXPORT_SYMBOL(sb_min_blocksize);
151
152static int
153blkdev_get_block(struct inode *inode, sector_t iblock,
154 struct buffer_head *bh, int create)
155{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 bh->b_bdev = I_BDEV(inode);
157 bh->b_blocknr = iblock;
158 set_buffer_mapped(bh);
159 return 0;
160}
161
Andrew Mortonb2e895d2007-02-03 01:14:01 -0800162static ssize_t
Al Virod8d3d942014-03-04 21:27:34 -0500163blkdev_direct_IO(int rw, struct kiocb *iocb, struct iov_iter *iter,
164 loff_t offset)
Andrew Mortonb2e895d2007-02-03 01:14:01 -0800165{
166 struct file *file = iocb->ki_filp;
167 struct inode *inode = file->f_mapping->host;
168
Al Viro31b14032014-03-05 01:33:16 -0500169 return __blockdev_direct_IO(rw, iocb, inode, I_BDEV(inode), iter,
170 offset, blkdev_get_block,
Al Virod8d3d942014-03-04 21:27:34 -0500171 NULL, NULL, 0);
Andrew Mortonb2e895d2007-02-03 01:14:01 -0800172}
173
Jan Kara5cee5812009-04-27 16:43:51 +0200174int __sync_blockdev(struct block_device *bdev, int wait)
175{
176 if (!bdev)
177 return 0;
178 if (!wait)
179 return filemap_flush(bdev->bd_inode->i_mapping);
180 return filemap_write_and_wait(bdev->bd_inode->i_mapping);
181}
182
Nick Piggin585d3bc2009-02-25 10:44:19 +0100183/*
184 * Write out and wait upon all the dirty data associated with a block
185 * device via its mapping. Does not take the superblock lock.
186 */
187int sync_blockdev(struct block_device *bdev)
188{
Jan Kara5cee5812009-04-27 16:43:51 +0200189 return __sync_blockdev(bdev, 1);
Nick Piggin585d3bc2009-02-25 10:44:19 +0100190}
191EXPORT_SYMBOL(sync_blockdev);
192
193/*
194 * Write out and wait upon all dirty data associated with this
195 * device. Filesystem data as well as the underlying block
196 * device. Takes the superblock lock.
197 */
198int fsync_bdev(struct block_device *bdev)
199{
200 struct super_block *sb = get_super(bdev);
201 if (sb) {
Jan Kara60b06802009-04-27 16:43:53 +0200202 int res = sync_filesystem(sb);
Nick Piggin585d3bc2009-02-25 10:44:19 +0100203 drop_super(sb);
204 return res;
205 }
206 return sync_blockdev(bdev);
207}
Al Viro47e44912009-04-01 07:07:16 -0400208EXPORT_SYMBOL(fsync_bdev);
Nick Piggin585d3bc2009-02-25 10:44:19 +0100209
210/**
211 * freeze_bdev -- lock a filesystem and force it into a consistent state
212 * @bdev: blockdevice to lock
213 *
Nick Piggin585d3bc2009-02-25 10:44:19 +0100214 * If a superblock is found on this device, we take the s_umount semaphore
215 * on it to make sure nobody unmounts until the snapshot creation is done.
216 * The reference counter (bd_fsfreeze_count) guarantees that only the last
217 * unfreeze process can unfreeze the frozen filesystem actually when multiple
218 * freeze requests arrive simultaneously. It counts up in freeze_bdev() and
219 * count down in thaw_bdev(). When it becomes 0, thaw_bdev() will unfreeze
220 * actually.
221 */
222struct super_block *freeze_bdev(struct block_device *bdev)
223{
224 struct super_block *sb;
225 int error = 0;
226
227 mutex_lock(&bdev->bd_fsfreeze_mutex);
Christoph Hellwig45042302009-08-03 23:28:35 +0200228 if (++bdev->bd_fsfreeze_count > 1) {
229 /*
230 * We don't even need to grab a reference - the first call
231 * to freeze_bdev grab an active reference and only the last
232 * thaw_bdev drops it.
233 */
Nick Piggin585d3bc2009-02-25 10:44:19 +0100234 sb = get_super(bdev);
Christoph Hellwig45042302009-08-03 23:28:35 +0200235 drop_super(sb);
Nick Piggin585d3bc2009-02-25 10:44:19 +0100236 mutex_unlock(&bdev->bd_fsfreeze_mutex);
237 return sb;
238 }
Nick Piggin585d3bc2009-02-25 10:44:19 +0100239
Christoph Hellwig45042302009-08-03 23:28:35 +0200240 sb = get_active_super(bdev);
241 if (!sb)
242 goto out;
Benjamin Marzinski48b6bca2014-11-13 20:42:03 -0600243 if (sb->s_op->freeze_super)
244 error = sb->s_op->freeze_super(sb);
245 else
246 error = freeze_super(sb);
Josef Bacik18e9e512010-03-23 10:34:56 -0400247 if (error) {
248 deactivate_super(sb);
249 bdev->bd_fsfreeze_count--;
Christoph Hellwig45042302009-08-03 23:28:35 +0200250 mutex_unlock(&bdev->bd_fsfreeze_mutex);
Josef Bacik18e9e512010-03-23 10:34:56 -0400251 return ERR_PTR(error);
Nick Piggin585d3bc2009-02-25 10:44:19 +0100252 }
Josef Bacik18e9e512010-03-23 10:34:56 -0400253 deactivate_super(sb);
Christoph Hellwig45042302009-08-03 23:28:35 +0200254 out:
Nick Piggin585d3bc2009-02-25 10:44:19 +0100255 sync_blockdev(bdev);
256 mutex_unlock(&bdev->bd_fsfreeze_mutex);
Christoph Hellwig4fadd7b2009-08-03 23:28:06 +0200257 return sb; /* thaw_bdev releases s->s_umount */
Nick Piggin585d3bc2009-02-25 10:44:19 +0100258}
259EXPORT_SYMBOL(freeze_bdev);
260
261/**
262 * thaw_bdev -- unlock filesystem
263 * @bdev: blockdevice to unlock
264 * @sb: associated superblock
265 *
266 * Unlocks the filesystem and marks it writeable again after freeze_bdev().
267 */
268int thaw_bdev(struct block_device *bdev, struct super_block *sb)
269{
Christoph Hellwig45042302009-08-03 23:28:35 +0200270 int error = -EINVAL;
Nick Piggin585d3bc2009-02-25 10:44:19 +0100271
272 mutex_lock(&bdev->bd_fsfreeze_mutex);
Christoph Hellwig45042302009-08-03 23:28:35 +0200273 if (!bdev->bd_fsfreeze_count)
Josef Bacik18e9e512010-03-23 10:34:56 -0400274 goto out;
Nick Piggin585d3bc2009-02-25 10:44:19 +0100275
Christoph Hellwig45042302009-08-03 23:28:35 +0200276 error = 0;
277 if (--bdev->bd_fsfreeze_count > 0)
Josef Bacik18e9e512010-03-23 10:34:56 -0400278 goto out;
Nick Piggin585d3bc2009-02-25 10:44:19 +0100279
Christoph Hellwig45042302009-08-03 23:28:35 +0200280 if (!sb)
Josef Bacik18e9e512010-03-23 10:34:56 -0400281 goto out;
Christoph Hellwig45042302009-08-03 23:28:35 +0200282
Benjamin Marzinski48b6bca2014-11-13 20:42:03 -0600283 if (sb->s_op->thaw_super)
284 error = sb->s_op->thaw_super(sb);
285 else
286 error = thaw_super(sb);
Josef Bacik18e9e512010-03-23 10:34:56 -0400287 if (error) {
288 bdev->bd_fsfreeze_count++;
289 mutex_unlock(&bdev->bd_fsfreeze_mutex);
290 return error;
Nick Piggin585d3bc2009-02-25 10:44:19 +0100291 }
Josef Bacik18e9e512010-03-23 10:34:56 -0400292out:
Nick Piggin585d3bc2009-02-25 10:44:19 +0100293 mutex_unlock(&bdev->bd_fsfreeze_mutex);
294 return 0;
295}
296EXPORT_SYMBOL(thaw_bdev);
297
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298static int blkdev_writepage(struct page *page, struct writeback_control *wbc)
299{
300 return block_write_full_page(page, blkdev_get_block, wbc);
301}
302
303static int blkdev_readpage(struct file * file, struct page * page)
304{
305 return block_read_full_page(page, blkdev_get_block);
306}
307
Akinobu Mita447f05b2014-10-09 15:26:58 -0700308static int blkdev_readpages(struct file *file, struct address_space *mapping,
309 struct list_head *pages, unsigned nr_pages)
310{
311 return mpage_readpages(mapping, pages, nr_pages, blkdev_get_block);
312}
313
Nick Piggin6272b5a2007-10-16 01:25:04 -0700314static int blkdev_write_begin(struct file *file, struct address_space *mapping,
315 loff_t pos, unsigned len, unsigned flags,
316 struct page **pagep, void **fsdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317{
Christoph Hellwig155130a2010-06-04 11:29:58 +0200318 return block_write_begin(mapping, pos, len, flags, pagep,
319 blkdev_get_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320}
321
Nick Piggin6272b5a2007-10-16 01:25:04 -0700322static int blkdev_write_end(struct file *file, struct address_space *mapping,
323 loff_t pos, unsigned len, unsigned copied,
324 struct page *page, void *fsdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325{
Nick Piggin6272b5a2007-10-16 01:25:04 -0700326 int ret;
327 ret = block_write_end(file, mapping, pos, len, copied, page, fsdata);
328
329 unlock_page(page);
330 page_cache_release(page);
331
332 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333}
334
335/*
336 * private llseek:
Al Viro496ad9a2013-01-23 17:07:38 -0500337 * for a block special file file_inode(file)->i_size is zero
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 * so we compute the size by hand (just as in block_read/write above)
339 */
Andrew Morton965c8e52012-12-17 15:59:39 -0800340static loff_t block_llseek(struct file *file, loff_t offset, int whence)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341{
342 struct inode *bd_inode = file->f_mapping->host;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 loff_t retval;
344
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800345 mutex_lock(&bd_inode->i_mutex);
Al Viro5d48f3a2013-06-23 21:34:45 +0400346 retval = fixed_size_llseek(file, offset, whence, i_size_read(bd_inode));
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800347 mutex_unlock(&bd_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 return retval;
349}
350
Josef Bacik02c24a82011-07-16 20:44:56 -0400351int blkdev_fsync(struct file *filp, loff_t start, loff_t end, int datasync)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352{
Anton Blanchardb8af67e2010-04-23 13:18:06 -0400353 struct inode *bd_inode = filp->f_mapping->host;
354 struct block_device *bdev = I_BDEV(bd_inode);
Christoph Hellwigab0a9732009-10-29 14:14:04 +0100355 int error;
Rafael J. Wysockida5aa862011-08-02 02:17:48 +0200356
357 error = filemap_write_and_wait_range(filp->f_mapping, start, end);
358 if (error)
359 return error;
Christoph Hellwigab0a9732009-10-29 14:14:04 +0100360
Anton Blanchardb8af67e2010-04-23 13:18:06 -0400361 /*
362 * There is no need to serialise calls to blkdev_issue_flush with
363 * i_mutex and doing so causes performance issues with concurrent
364 * O_SYNC writers to a block device.
365 */
Christoph Hellwigdd3932e2010-09-16 20:51:46 +0200366 error = blkdev_issue_flush(bdev, GFP_KERNEL, NULL);
Christoph Hellwigab0a9732009-10-29 14:14:04 +0100367 if (error == -EOPNOTSUPP)
368 error = 0;
Anton Blanchardb8af67e2010-04-23 13:18:06 -0400369
Christoph Hellwigab0a9732009-10-29 14:14:04 +0100370 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371}
Andrew Mortonb1dd3b22010-04-06 14:35:00 -0700372EXPORT_SYMBOL(blkdev_fsync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
Matthew Wilcox47a191f2014-06-04 16:07:46 -0700374/**
375 * bdev_read_page() - Start reading a page from a block device
376 * @bdev: The device to read the page from
377 * @sector: The offset on the device to read the page to (need not be aligned)
378 * @page: The page to read
379 *
380 * On entry, the page should be locked. It will be unlocked when the page
381 * has been read. If the block driver implements rw_page synchronously,
382 * that will be true on exit from this function, but it need not be.
383 *
384 * Errors returned by this function are usually "soft", eg out of memory, or
385 * queue full; callers should try a different route to read this page rather
386 * than propagate an error back up the stack.
387 *
388 * Return: negative errno if an error occurs, 0 if submission was successful.
389 */
390int bdev_read_page(struct block_device *bdev, sector_t sector,
391 struct page *page)
392{
393 const struct block_device_operations *ops = bdev->bd_disk->fops;
394 if (!ops->rw_page)
395 return -EOPNOTSUPP;
396 return ops->rw_page(bdev, sector + get_start_sect(bdev), page, READ);
397}
398EXPORT_SYMBOL_GPL(bdev_read_page);
399
400/**
401 * bdev_write_page() - Start writing a page to a block device
402 * @bdev: The device to write the page to
403 * @sector: The offset on the device to write the page to (need not be aligned)
404 * @page: The page to write
405 * @wbc: The writeback_control for the write
406 *
407 * On entry, the page should be locked and not currently under writeback.
408 * On exit, if the write started successfully, the page will be unlocked and
409 * under writeback. If the write failed already (eg the driver failed to
410 * queue the page to the device), the page will still be locked. If the
411 * caller is a ->writepage implementation, it will need to unlock the page.
412 *
413 * Errors returned by this function are usually "soft", eg out of memory, or
414 * queue full; callers should try a different route to write this page rather
415 * than propagate an error back up the stack.
416 *
417 * Return: negative errno if an error occurs, 0 if submission was successful.
418 */
419int bdev_write_page(struct block_device *bdev, sector_t sector,
420 struct page *page, struct writeback_control *wbc)
421{
422 int result;
423 int rw = (wbc->sync_mode == WB_SYNC_ALL) ? WRITE_SYNC : WRITE;
424 const struct block_device_operations *ops = bdev->bd_disk->fops;
425 if (!ops->rw_page)
426 return -EOPNOTSUPP;
427 set_page_writeback(page);
428 result = ops->rw_page(bdev, sector + get_start_sect(bdev), page, rw);
429 if (result)
430 end_page_writeback(page);
431 else
432 unlock_page(page);
433 return result;
434}
435EXPORT_SYMBOL_GPL(bdev_write_page);
436
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437/*
438 * pseudo-fs
439 */
440
441static __cacheline_aligned_in_smp DEFINE_SPINLOCK(bdev_lock);
Christoph Lametere18b8902006-12-06 20:33:20 -0800442static struct kmem_cache * bdev_cachep __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443
444static struct inode *bdev_alloc_inode(struct super_block *sb)
445{
Christoph Lametere94b1762006-12-06 20:33:17 -0800446 struct bdev_inode *ei = kmem_cache_alloc(bdev_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 if (!ei)
448 return NULL;
449 return &ei->vfs_inode;
450}
451
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100452static void bdev_i_callback(struct rcu_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453{
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100454 struct inode *inode = container_of(head, struct inode, i_rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 struct bdev_inode *bdi = BDEV_I(inode);
456
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 kmem_cache_free(bdev_cachep, bdi);
458}
459
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100460static void bdev_destroy_inode(struct inode *inode)
461{
462 call_rcu(&inode->i_rcu, bdev_i_callback);
463}
464
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700465static void init_once(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466{
467 struct bdev_inode *ei = (struct bdev_inode *) foo;
468 struct block_device *bdev = &ei->bdev;
469
Christoph Lametera35afb82007-05-16 22:10:57 -0700470 memset(bdev, 0, sizeof(*bdev));
471 mutex_init(&bdev->bd_mutex);
Christoph Lametera35afb82007-05-16 22:10:57 -0700472 INIT_LIST_HEAD(&bdev->bd_inodes);
473 INIT_LIST_HEAD(&bdev->bd_list);
Tejun Heo49731ba2011-01-14 18:43:57 +0100474#ifdef CONFIG_SYSFS
475 INIT_LIST_HEAD(&bdev->bd_holder_disks);
476#endif
Christoph Lametera35afb82007-05-16 22:10:57 -0700477 inode_init_once(&ei->vfs_inode);
Takashi Satofcccf502009-01-09 16:40:59 -0800478 /* Initialize mutex for freeze. */
479 mutex_init(&bdev->bd_fsfreeze_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480}
481
482static inline void __bd_forget(struct inode *inode)
483{
484 list_del_init(&inode->i_devices);
485 inode->i_bdev = NULL;
486 inode->i_mapping = &inode->i_data;
487}
488
Al Virob57922d2010-06-07 14:34:48 -0400489static void bdev_evict_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490{
491 struct block_device *bdev = &BDEV_I(inode)->bdev;
492 struct list_head *p;
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700493 truncate_inode_pages_final(&inode->i_data);
Al Virob57922d2010-06-07 14:34:48 -0400494 invalidate_inode_buffers(inode); /* is it needed here? */
Jan Karadbd57682012-05-03 14:48:02 +0200495 clear_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 spin_lock(&bdev_lock);
497 while ( (p = bdev->bd_inodes.next) != &bdev->bd_inodes ) {
498 __bd_forget(list_entry(p, struct inode, i_devices));
499 }
500 list_del_init(&bdev->bd_list);
501 spin_unlock(&bdev_lock);
502}
503
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800504static const struct super_operations bdev_sops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 .statfs = simple_statfs,
506 .alloc_inode = bdev_alloc_inode,
507 .destroy_inode = bdev_destroy_inode,
508 .drop_inode = generic_delete_inode,
Al Virob57922d2010-06-07 14:34:48 -0400509 .evict_inode = bdev_evict_inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510};
511
Al Viro51139ad2010-07-25 23:47:46 +0400512static struct dentry *bd_mount(struct file_system_type *fs_type,
513 int flags, const char *dev_name, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514{
Muthu Kumarb502bd12012-03-23 15:01:50 -0700515 return mount_pseudo(fs_type, "bdev:", &bdev_sops, NULL, BDEVFS_MAGIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516}
517
518static struct file_system_type bd_type = {
519 .name = "bdev",
Al Viro51139ad2010-07-25 23:47:46 +0400520 .mount = bd_mount,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 .kill_sb = kill_anon_super,
522};
523
Al Virof47ec3f2011-11-21 21:15:42 -0500524static struct super_block *blockdev_superblock __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525
526void __init bdev_cache_init(void)
527{
528 int err;
Sergey Senozhatskyace85772012-01-10 02:43:59 +0300529 static struct vfsmount *bd_mnt;
Denis ChengRqc2acf7b2008-12-01 14:34:56 -0800530
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 bdev_cachep = kmem_cache_create("bdev_cache", sizeof(struct bdev_inode),
Paul Jacksonfffb60f2006-03-24 03:16:06 -0800532 0, (SLAB_HWCACHE_ALIGN|SLAB_RECLAIM_ACCOUNT|
533 SLAB_MEM_SPREAD|SLAB_PANIC),
Paul Mundt20c2df82007-07-20 10:11:58 +0900534 init_once);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 err = register_filesystem(&bd_type);
536 if (err)
537 panic("Cannot register bdev pseudo-fs");
538 bd_mnt = kern_mount(&bd_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 if (IS_ERR(bd_mnt))
540 panic("Cannot create bdev pseudo-fs");
Sergey Senozhatskyace85772012-01-10 02:43:59 +0300541 blockdev_superblock = bd_mnt->mnt_sb; /* For writeback */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542}
543
544/*
545 * Most likely _very_ bad one - but then it's hardly critical for small
546 * /dev and can be fixed when somebody will need really large one.
547 * Keep in mind that it will be fed through icache hash function too.
548 */
549static inline unsigned long hash(dev_t dev)
550{
551 return MAJOR(dev)+MINOR(dev);
552}
553
554static int bdev_test(struct inode *inode, void *data)
555{
556 return BDEV_I(inode)->bdev.bd_dev == *(dev_t *)data;
557}
558
559static int bdev_set(struct inode *inode, void *data)
560{
561 BDEV_I(inode)->bdev.bd_dev = *(dev_t *)data;
562 return 0;
563}
564
565static LIST_HEAD(all_bdevs);
566
567struct block_device *bdget(dev_t dev)
568{
569 struct block_device *bdev;
570 struct inode *inode;
571
Denis ChengRqc2acf7b2008-12-01 14:34:56 -0800572 inode = iget5_locked(blockdev_superblock, hash(dev),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 bdev_test, bdev_set, &dev);
574
575 if (!inode)
576 return NULL;
577
578 bdev = &BDEV_I(inode)->bdev;
579
580 if (inode->i_state & I_NEW) {
581 bdev->bd_contains = NULL;
Lachlan McIlroy782b94c2011-06-30 11:01:45 +1000582 bdev->bd_super = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 bdev->bd_inode = inode;
584 bdev->bd_block_size = (1 << inode->i_blkbits);
585 bdev->bd_part_count = 0;
586 bdev->bd_invalidated = 0;
587 inode->i_mode = S_IFBLK;
588 inode->i_rdev = dev;
589 inode->i_bdev = bdev;
590 inode->i_data.a_ops = &def_blk_aops;
591 mapping_set_gfp_mask(&inode->i_data, GFP_USER);
592 inode->i_data.backing_dev_info = &default_backing_dev_info;
593 spin_lock(&bdev_lock);
594 list_add(&bdev->bd_list, &all_bdevs);
595 spin_unlock(&bdev_lock);
596 unlock_new_inode(inode);
597 }
598 return bdev;
599}
600
601EXPORT_SYMBOL(bdget);
602
Alan Jenkinsdddac6a2009-07-29 21:07:55 +0200603/**
604 * bdgrab -- Grab a reference to an already referenced block device
605 * @bdev: Block device to grab a reference to.
606 */
607struct block_device *bdgrab(struct block_device *bdev)
608{
Al Viro7de9c6ee2010-10-23 11:11:40 -0400609 ihold(bdev->bd_inode);
Alan Jenkinsdddac6a2009-07-29 21:07:55 +0200610 return bdev;
611}
Anatol Pomozovc1681bf2013-04-01 09:47:56 -0700612EXPORT_SYMBOL(bdgrab);
Alan Jenkinsdddac6a2009-07-29 21:07:55 +0200613
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614long nr_blockdev_pages(void)
615{
Matthias Kaehlcke203a2932007-07-15 23:40:23 -0700616 struct block_device *bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 long ret = 0;
618 spin_lock(&bdev_lock);
Matthias Kaehlcke203a2932007-07-15 23:40:23 -0700619 list_for_each_entry(bdev, &all_bdevs, bd_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 ret += bdev->bd_inode->i_mapping->nrpages;
621 }
622 spin_unlock(&bdev_lock);
623 return ret;
624}
625
626void bdput(struct block_device *bdev)
627{
628 iput(bdev->bd_inode);
629}
630
631EXPORT_SYMBOL(bdput);
632
633static struct block_device *bd_acquire(struct inode *inode)
634{
635 struct block_device *bdev;
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700636
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 spin_lock(&bdev_lock);
638 bdev = inode->i_bdev;
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700639 if (bdev) {
Al Viro7de9c6ee2010-10-23 11:11:40 -0400640 ihold(bdev->bd_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 spin_unlock(&bdev_lock);
642 return bdev;
643 }
644 spin_unlock(&bdev_lock);
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700645
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 bdev = bdget(inode->i_rdev);
647 if (bdev) {
648 spin_lock(&bdev_lock);
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700649 if (!inode->i_bdev) {
650 /*
Al Viro7de9c6ee2010-10-23 11:11:40 -0400651 * We take an additional reference to bd_inode,
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700652 * and it's released in clear_inode() of inode.
653 * So, we can access it via ->i_mapping always
654 * without igrab().
655 */
Al Viro7de9c6ee2010-10-23 11:11:40 -0400656 ihold(bdev->bd_inode);
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700657 inode->i_bdev = bdev;
658 inode->i_mapping = bdev->bd_inode->i_mapping;
659 list_add(&inode->i_devices, &bdev->bd_inodes);
660 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 spin_unlock(&bdev_lock);
662 }
663 return bdev;
664}
665
Jan Karaa8855992013-07-09 22:36:45 +0800666int sb_is_blkdev_sb(struct super_block *sb)
Al Virof47ec3f2011-11-21 21:15:42 -0500667{
668 return sb == blockdev_superblock;
669}
670
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671/* Call when you free inode */
672
673void bd_forget(struct inode *inode)
674{
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700675 struct block_device *bdev = NULL;
676
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 spin_lock(&bdev_lock);
Yan Hongb4ea2ea2013-04-30 15:26:47 -0700678 if (!sb_is_blkdev_sb(inode->i_sb))
679 bdev = inode->i_bdev;
680 __bd_forget(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 spin_unlock(&bdev_lock);
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700682
683 if (bdev)
684 iput(bdev->bd_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685}
686
Tejun Heo1a3cbbc2010-04-07 18:52:29 +0900687/**
688 * bd_may_claim - test whether a block device can be claimed
689 * @bdev: block device of interest
690 * @whole: whole block device containing @bdev, may equal @bdev
691 * @holder: holder trying to claim @bdev
692 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300693 * Test whether @bdev can be claimed by @holder.
Tejun Heo1a3cbbc2010-04-07 18:52:29 +0900694 *
695 * CONTEXT:
696 * spin_lock(&bdev_lock).
697 *
698 * RETURNS:
699 * %true if @bdev can be claimed, %false otherwise.
700 */
701static bool bd_may_claim(struct block_device *bdev, struct block_device *whole,
702 void *holder)
703{
704 if (bdev->bd_holder == holder)
705 return true; /* already a holder */
706 else if (bdev->bd_holder != NULL)
707 return false; /* held by someone else */
708 else if (bdev->bd_contains == bdev)
709 return true; /* is a whole device which isn't held */
710
Tejun Heoe525fd82010-11-13 11:55:17 +0100711 else if (whole->bd_holder == bd_may_claim)
Tejun Heo1a3cbbc2010-04-07 18:52:29 +0900712 return true; /* is a partition of a device that is being partitioned */
713 else if (whole->bd_holder != NULL)
714 return false; /* is a partition of a held device */
715 else
716 return true; /* is a partition of an un-held device */
717}
718
719/**
Tejun Heo6b4517a2010-04-07 18:53:59 +0900720 * bd_prepare_to_claim - prepare to claim a block device
721 * @bdev: block device of interest
722 * @whole: the whole device containing @bdev, may equal @bdev
723 * @holder: holder trying to claim @bdev
724 *
725 * Prepare to claim @bdev. This function fails if @bdev is already
726 * claimed by another holder and waits if another claiming is in
727 * progress. This function doesn't actually claim. On successful
728 * return, the caller has ownership of bd_claiming and bd_holder[s].
729 *
730 * CONTEXT:
731 * spin_lock(&bdev_lock). Might release bdev_lock, sleep and regrab
732 * it multiple times.
733 *
734 * RETURNS:
735 * 0 if @bdev can be claimed, -EBUSY otherwise.
736 */
737static int bd_prepare_to_claim(struct block_device *bdev,
738 struct block_device *whole, void *holder)
739{
740retry:
741 /* if someone else claimed, fail */
742 if (!bd_may_claim(bdev, whole, holder))
743 return -EBUSY;
744
Tejun Heoe75aa852010-08-04 17:59:39 +0200745 /* if claiming is already in progress, wait for it to finish */
746 if (whole->bd_claiming) {
Tejun Heo6b4517a2010-04-07 18:53:59 +0900747 wait_queue_head_t *wq = bit_waitqueue(&whole->bd_claiming, 0);
748 DEFINE_WAIT(wait);
749
750 prepare_to_wait(wq, &wait, TASK_UNINTERRUPTIBLE);
751 spin_unlock(&bdev_lock);
752 schedule();
753 finish_wait(wq, &wait);
754 spin_lock(&bdev_lock);
755 goto retry;
756 }
757
758 /* yay, all mine */
759 return 0;
760}
761
762/**
763 * bd_start_claiming - start claiming a block device
764 * @bdev: block device of interest
765 * @holder: holder trying to claim @bdev
766 *
767 * @bdev is about to be opened exclusively. Check @bdev can be opened
768 * exclusively and mark that an exclusive open is in progress. Each
769 * successful call to this function must be matched with a call to
Nick Pigginb0018362010-05-26 01:51:19 +1000770 * either bd_finish_claiming() or bd_abort_claiming() (which do not
771 * fail).
772 *
773 * This function is used to gain exclusive access to the block device
774 * without actually causing other exclusive open attempts to fail. It
775 * should be used when the open sequence itself requires exclusive
776 * access but may subsequently fail.
Tejun Heo6b4517a2010-04-07 18:53:59 +0900777 *
778 * CONTEXT:
779 * Might sleep.
780 *
781 * RETURNS:
782 * Pointer to the block device containing @bdev on success, ERR_PTR()
783 * value on failure.
784 */
785static struct block_device *bd_start_claiming(struct block_device *bdev,
786 void *holder)
787{
788 struct gendisk *disk;
789 struct block_device *whole;
790 int partno, err;
791
792 might_sleep();
793
794 /*
795 * @bdev might not have been initialized properly yet, look up
796 * and grab the outer block device the hard way.
797 */
798 disk = get_gendisk(bdev->bd_dev, &partno);
799 if (!disk)
800 return ERR_PTR(-ENXIO);
801
Tejun Heod4c208b2011-06-13 12:45:48 +0200802 /*
803 * Normally, @bdev should equal what's returned from bdget_disk()
804 * if partno is 0; however, some drivers (floppy) use multiple
805 * bdev's for the same physical device and @bdev may be one of the
806 * aliases. Keep @bdev if partno is 0. This means claimer
807 * tracking is broken for those devices but it has always been that
808 * way.
809 */
810 if (partno)
811 whole = bdget_disk(disk, 0);
812 else
813 whole = bdgrab(bdev);
814
Nick Piggincf342572010-05-26 01:50:21 +1000815 module_put(disk->fops->owner);
Tejun Heo6b4517a2010-04-07 18:53:59 +0900816 put_disk(disk);
817 if (!whole)
818 return ERR_PTR(-ENOMEM);
819
820 /* prepare to claim, if successful, mark claiming in progress */
821 spin_lock(&bdev_lock);
822
823 err = bd_prepare_to_claim(bdev, whole, holder);
824 if (err == 0) {
825 whole->bd_claiming = holder;
826 spin_unlock(&bdev_lock);
827 return whole;
828 } else {
829 spin_unlock(&bdev_lock);
830 bdput(whole);
831 return ERR_PTR(err);
832 }
833}
834
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800835#ifdef CONFIG_SYSFS
Tejun Heo49731ba2011-01-14 18:43:57 +0100836struct bd_holder_disk {
837 struct list_head list;
838 struct gendisk *disk;
839 int refcnt;
840};
841
842static struct bd_holder_disk *bd_find_holder_disk(struct block_device *bdev,
843 struct gendisk *disk)
844{
845 struct bd_holder_disk *holder;
846
847 list_for_each_entry(holder, &bdev->bd_holder_disks, list)
848 if (holder->disk == disk)
849 return holder;
850 return NULL;
851}
852
Andrew Morton4d7dd8f2006-09-29 01:58:56 -0700853static int add_symlink(struct kobject *from, struct kobject *to)
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800854{
Andrew Morton4d7dd8f2006-09-29 01:58:56 -0700855 return sysfs_create_link(from, to, kobject_name(to));
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800856}
857
858static void del_symlink(struct kobject *from, struct kobject *to)
859{
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800860 sysfs_remove_link(from, kobject_name(to));
861}
862
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800863/**
Tejun Heoe09b4572010-11-13 11:55:17 +0100864 * bd_link_disk_holder - create symlinks between holding disk and slave bdev
865 * @bdev: the claimed slave bdev
866 * @disk: the holding disk
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -0500867 *
Tejun Heo49731ba2011-01-14 18:43:57 +0100868 * DON'T USE THIS UNLESS YOU'RE ALREADY USING IT.
869 *
Tejun Heoe09b4572010-11-13 11:55:17 +0100870 * This functions creates the following sysfs symlinks.
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -0500871 *
Tejun Heoe09b4572010-11-13 11:55:17 +0100872 * - from "slaves" directory of the holder @disk to the claimed @bdev
873 * - from "holders" directory of the @bdev to the holder @disk
874 *
875 * For example, if /dev/dm-0 maps to /dev/sda and disk for dm-0 is
876 * passed to bd_link_disk_holder(), then:
877 *
878 * /sys/block/dm-0/slaves/sda --> /sys/block/sda
879 * /sys/block/sda/holders/dm-0 --> /sys/block/dm-0
880 *
881 * The caller must have claimed @bdev before calling this function and
882 * ensure that both @bdev and @disk are valid during the creation and
883 * lifetime of these symlinks.
884 *
885 * CONTEXT:
886 * Might sleep.
887 *
888 * RETURNS:
889 * 0 on success, -errno on failure.
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -0500890 */
Tejun Heoe09b4572010-11-13 11:55:17 +0100891int bd_link_disk_holder(struct block_device *bdev, struct gendisk *disk)
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -0500892{
Tejun Heo49731ba2011-01-14 18:43:57 +0100893 struct bd_holder_disk *holder;
Tejun Heoe09b4572010-11-13 11:55:17 +0100894 int ret = 0;
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800895
Peter Zijlstra2e7b6512006-12-08 02:36:13 -0800896 mutex_lock(&bdev->bd_mutex);
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -0500897
Tejun Heo49731ba2011-01-14 18:43:57 +0100898 WARN_ON_ONCE(!bdev->bd_holder);
Johannes Weiner4e916722007-07-15 23:41:25 -0700899
Tejun Heoe09b4572010-11-13 11:55:17 +0100900 /* FIXME: remove the following once add_disk() handles errors */
901 if (WARN_ON(!disk->slave_dir || !bdev->bd_part->holder_dir))
902 goto out_unlock;
Johannes Weiner4e916722007-07-15 23:41:25 -0700903
Tejun Heo49731ba2011-01-14 18:43:57 +0100904 holder = bd_find_holder_disk(bdev, disk);
905 if (holder) {
906 holder->refcnt++;
Tejun Heoe09b4572010-11-13 11:55:17 +0100907 goto out_unlock;
908 }
909
Tejun Heo49731ba2011-01-14 18:43:57 +0100910 holder = kzalloc(sizeof(*holder), GFP_KERNEL);
911 if (!holder) {
912 ret = -ENOMEM;
913 goto out_unlock;
914 }
915
916 INIT_LIST_HEAD(&holder->list);
917 holder->disk = disk;
918 holder->refcnt = 1;
919
920 ret = add_symlink(disk->slave_dir, &part_to_dev(bdev->bd_part)->kobj);
921 if (ret)
922 goto out_free;
923
924 ret = add_symlink(bdev->bd_part->holder_dir, &disk_to_dev(disk)->kobj);
925 if (ret)
926 goto out_del;
Tejun Heoe7407d12011-02-24 09:56:32 +0100927 /*
928 * bdev could be deleted beneath us which would implicitly destroy
929 * the holder directory. Hold on to it.
930 */
931 kobject_get(bdev->bd_part->holder_dir);
Tejun Heo49731ba2011-01-14 18:43:57 +0100932
933 list_add(&holder->list, &bdev->bd_holder_disks);
934 goto out_unlock;
935
936out_del:
937 del_symlink(disk->slave_dir, &part_to_dev(bdev->bd_part)->kobj);
938out_free:
939 kfree(holder);
Tejun Heoe09b4572010-11-13 11:55:17 +0100940out_unlock:
Jun'ichi Nomurab4cf1b72006-03-27 01:18:00 -0800941 mutex_unlock(&bdev->bd_mutex);
Tejun Heoe09b4572010-11-13 11:55:17 +0100942 return ret;
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800943}
Tejun Heoe09b4572010-11-13 11:55:17 +0100944EXPORT_SYMBOL_GPL(bd_link_disk_holder);
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800945
Tejun Heo49731ba2011-01-14 18:43:57 +0100946/**
947 * bd_unlink_disk_holder - destroy symlinks created by bd_link_disk_holder()
948 * @bdev: the calimed slave bdev
949 * @disk: the holding disk
950 *
951 * DON'T USE THIS UNLESS YOU'RE ALREADY USING IT.
952 *
953 * CONTEXT:
954 * Might sleep.
955 */
956void bd_unlink_disk_holder(struct block_device *bdev, struct gendisk *disk)
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800957{
Tejun Heo49731ba2011-01-14 18:43:57 +0100958 struct bd_holder_disk *holder;
Tejun Heoe09b4572010-11-13 11:55:17 +0100959
Tejun Heo49731ba2011-01-14 18:43:57 +0100960 mutex_lock(&bdev->bd_mutex);
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800961
Tejun Heo49731ba2011-01-14 18:43:57 +0100962 holder = bd_find_holder_disk(bdev, disk);
963
964 if (!WARN_ON_ONCE(holder == NULL) && !--holder->refcnt) {
965 del_symlink(disk->slave_dir, &part_to_dev(bdev->bd_part)->kobj);
966 del_symlink(bdev->bd_part->holder_dir,
967 &disk_to_dev(disk)->kobj);
Tejun Heoe7407d12011-02-24 09:56:32 +0100968 kobject_put(bdev->bd_part->holder_dir);
Tejun Heo49731ba2011-01-14 18:43:57 +0100969 list_del_init(&holder->list);
970 kfree(holder);
971 }
972
973 mutex_unlock(&bdev->bd_mutex);
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800974}
Tejun Heo49731ba2011-01-14 18:43:57 +0100975EXPORT_SYMBOL_GPL(bd_unlink_disk_holder);
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800976#endif
977
Andrew Patterson0c002c22008-09-04 14:27:20 -0600978/**
Andrew Patterson56ade442008-09-04 14:27:40 -0600979 * flush_disk - invalidates all buffer-cache entries on a disk
980 *
981 * @bdev: struct block device to be flushed
Randy Dunlape6eb5ce2011-02-26 10:54:00 -0800982 * @kill_dirty: flag to guide handling of dirty inodes
Andrew Patterson56ade442008-09-04 14:27:40 -0600983 *
984 * Invalidates all buffer-cache entries on a disk. It should be called
985 * when a disk has been changed -- either by a media change or online
986 * resize.
987 */
NeilBrown93b270f2011-02-24 17:25:47 +1100988static void flush_disk(struct block_device *bdev, bool kill_dirty)
Andrew Patterson56ade442008-09-04 14:27:40 -0600989{
NeilBrown93b270f2011-02-24 17:25:47 +1100990 if (__invalidate_device(bdev, kill_dirty)) {
Andrew Patterson56ade442008-09-04 14:27:40 -0600991 char name[BDEVNAME_SIZE] = "";
992
993 if (bdev->bd_disk)
994 disk_name(bdev->bd_disk, 0, name);
995 printk(KERN_WARNING "VFS: busy inodes on changed media or "
996 "resized disk %s\n", name);
997 }
998
999 if (!bdev->bd_disk)
1000 return;
Tejun Heod27769e2011-08-23 20:01:04 +02001001 if (disk_part_scan_enabled(bdev->bd_disk))
Andrew Patterson56ade442008-09-04 14:27:40 -06001002 bdev->bd_invalidated = 1;
1003}
1004
1005/**
Randy Dunlap57d1b532008-10-09 10:42:38 +02001006 * check_disk_size_change - checks for disk size change and adjusts bdev size.
Andrew Pattersonc3279d12008-09-04 14:27:25 -06001007 * @disk: struct gendisk to check
1008 * @bdev: struct bdev to adjust.
1009 *
1010 * This routine checks to see if the bdev size does not match the disk size
1011 * and adjusts it if it differs.
1012 */
1013void check_disk_size_change(struct gendisk *disk, struct block_device *bdev)
1014{
1015 loff_t disk_size, bdev_size;
1016
1017 disk_size = (loff_t)get_capacity(disk) << 9;
1018 bdev_size = i_size_read(bdev->bd_inode);
1019 if (disk_size != bdev_size) {
1020 char name[BDEVNAME_SIZE];
1021
1022 disk_name(disk, 0, name);
1023 printk(KERN_INFO
1024 "%s: detected capacity change from %lld to %lld\n",
1025 name, bdev_size, disk_size);
1026 i_size_write(bdev->bd_inode, disk_size);
NeilBrown93b270f2011-02-24 17:25:47 +11001027 flush_disk(bdev, false);
Andrew Pattersonc3279d12008-09-04 14:27:25 -06001028 }
1029}
1030EXPORT_SYMBOL(check_disk_size_change);
1031
1032/**
Randy Dunlap57d1b532008-10-09 10:42:38 +02001033 * revalidate_disk - wrapper for lower-level driver's revalidate_disk call-back
Andrew Patterson0c002c22008-09-04 14:27:20 -06001034 * @disk: struct gendisk to be revalidated
1035 *
1036 * This routine is a wrapper for lower-level driver's revalidate_disk
1037 * call-backs. It is used to do common pre and post operations needed
1038 * for all revalidate_disk operations.
1039 */
1040int revalidate_disk(struct gendisk *disk)
1041{
Andrew Pattersonc3279d12008-09-04 14:27:25 -06001042 struct block_device *bdev;
Andrew Patterson0c002c22008-09-04 14:27:20 -06001043 int ret = 0;
1044
1045 if (disk->fops->revalidate_disk)
1046 ret = disk->fops->revalidate_disk(disk);
1047
Andrew Pattersonc3279d12008-09-04 14:27:25 -06001048 bdev = bdget_disk(disk, 0);
1049 if (!bdev)
1050 return ret;
1051
1052 mutex_lock(&bdev->bd_mutex);
1053 check_disk_size_change(disk, bdev);
MITSUNARI Shigeo7630b662013-02-21 16:42:01 -08001054 bdev->bd_invalidated = 0;
Andrew Pattersonc3279d12008-09-04 14:27:25 -06001055 mutex_unlock(&bdev->bd_mutex);
1056 bdput(bdev);
Andrew Patterson0c002c22008-09-04 14:27:20 -06001057 return ret;
1058}
1059EXPORT_SYMBOL(revalidate_disk);
1060
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061/*
1062 * This routine checks whether a removable media has been changed,
1063 * and invalidates all buffer-cache-entries in that case. This
1064 * is a relatively slow routine, so we have to try to minimize using
1065 * it. Thus it is called only upon a 'mount' or 'open'. This
1066 * is the best way of combining speed and utility, I think.
1067 * People changing diskettes in the middle of an operation deserve
1068 * to lose :-)
1069 */
1070int check_disk_change(struct block_device *bdev)
1071{
1072 struct gendisk *disk = bdev->bd_disk;
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -07001073 const struct block_device_operations *bdops = disk->fops;
Tejun Heo77ea8872010-12-08 20:57:37 +01001074 unsigned int events;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075
Tejun Heo77ea8872010-12-08 20:57:37 +01001076 events = disk_clear_events(disk, DISK_EVENT_MEDIA_CHANGE |
1077 DISK_EVENT_EJECT_REQUEST);
1078 if (!(events & DISK_EVENT_MEDIA_CHANGE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 return 0;
1080
NeilBrown93b270f2011-02-24 17:25:47 +11001081 flush_disk(bdev, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 if (bdops->revalidate_disk)
1083 bdops->revalidate_disk(bdev->bd_disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 return 1;
1085}
1086
1087EXPORT_SYMBOL(check_disk_change);
1088
1089void bd_set_size(struct block_device *bdev, loff_t size)
1090{
Martin K. Petersene1defc42009-05-22 17:17:49 -04001091 unsigned bsize = bdev_logical_block_size(bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092
Guo Chaod646a022013-02-21 15:16:42 -08001093 mutex_lock(&bdev->bd_inode->i_mutex);
1094 i_size_write(bdev->bd_inode, size);
1095 mutex_unlock(&bdev->bd_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 while (bsize < PAGE_CACHE_SIZE) {
1097 if (size & bsize)
1098 break;
1099 bsize <<= 1;
1100 }
1101 bdev->bd_block_size = bsize;
1102 bdev->bd_inode->i_blkbits = blksize_bits(bsize);
1103}
1104EXPORT_SYMBOL(bd_set_size);
1105
Al Viro4385bab2013-05-05 22:11:03 -04001106static void __blkdev_put(struct block_device *bdev, fmode_t mode, int for_part);
NeilBrown37be4122006-12-08 02:36:16 -08001107
Peter Zijlstra6d740cd2007-02-20 13:58:18 -08001108/*
1109 * bd_mutex locking:
1110 *
1111 * mutex_lock(part->bd_mutex)
1112 * mutex_lock_nested(whole->bd_mutex, 1)
1113 */
1114
Al Viro572c4892007-10-08 13:24:05 -04001115static int __blkdev_get(struct block_device *bdev, fmode_t mode, int for_part)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 struct gendisk *disk;
Tejun Heo523e1d32011-10-19 14:31:07 +02001118 struct module *owner;
Pavel Emelyanov7db9cfd2008-06-05 22:46:27 -07001119 int ret;
Tejun Heocf771cb2008-09-03 09:01:09 +02001120 int partno;
Al Virofe6e9c12008-06-23 08:30:55 -04001121 int perm = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122
Al Viro572c4892007-10-08 13:24:05 -04001123 if (mode & FMODE_READ)
Al Virofe6e9c12008-06-23 08:30:55 -04001124 perm |= MAY_READ;
Al Viro572c4892007-10-08 13:24:05 -04001125 if (mode & FMODE_WRITE)
Al Virofe6e9c12008-06-23 08:30:55 -04001126 perm |= MAY_WRITE;
1127 /*
1128 * hooks: /n/, see "layering violations".
1129 */
Chris Wrightb7300b72010-08-10 18:02:55 -07001130 if (!for_part) {
1131 ret = devcgroup_inode_permission(bdev->bd_inode, perm);
1132 if (ret != 0) {
1133 bdput(bdev);
1134 return ret;
1135 }
Al Viro82666022008-08-01 05:32:04 -04001136 }
Pavel Emelyanov7db9cfd2008-06-05 22:46:27 -07001137
NeilBrownd3374822009-01-09 08:31:10 +11001138 restart:
Tejun Heo0762b8b2008-08-25 19:56:12 +09001139
Tejun Heo89f97492008-11-05 10:21:06 +01001140 ret = -ENXIO;
Tejun Heocf771cb2008-09-03 09:01:09 +02001141 disk = get_gendisk(bdev->bd_dev, &partno);
Tejun Heo0762b8b2008-08-25 19:56:12 +09001142 if (!disk)
Arnd Bergmann6e9624b2010-08-07 18:25:34 +02001143 goto out;
Tejun Heo523e1d32011-10-19 14:31:07 +02001144 owner = disk->fops->owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145
Tejun Heo69e02c52011-03-09 19:54:27 +01001146 disk_block_events(disk);
NeilBrown6796bf52006-12-08 02:36:16 -08001147 mutex_lock_nested(&bdev->bd_mutex, for_part);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 if (!bdev->bd_openers) {
1149 bdev->bd_disk = disk;
Andi Kleen87192a22012-01-12 17:20:34 -08001150 bdev->bd_queue = disk->queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 bdev->bd_contains = bdev;
Tejun Heocf771cb2008-09-03 09:01:09 +02001152 if (!partno) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 struct backing_dev_info *bdi;
Tejun Heo89f97492008-11-05 10:21:06 +01001154
1155 ret = -ENXIO;
1156 bdev->bd_part = disk_get_part(disk, partno);
1157 if (!bdev->bd_part)
1158 goto out_clear;
1159
Tejun Heo1196f8b2011-04-21 20:54:45 +02001160 ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 if (disk->fops->open) {
Al Viro572c4892007-10-08 13:24:05 -04001162 ret = disk->fops->open(bdev, mode);
NeilBrownd3374822009-01-09 08:31:10 +11001163 if (ret == -ERESTARTSYS) {
1164 /* Lost a race with 'disk' being
1165 * deleted, try again.
1166 * See md.c
1167 */
1168 disk_put_part(bdev->bd_part);
1169 bdev->bd_part = NULL;
NeilBrownd3374822009-01-09 08:31:10 +11001170 bdev->bd_disk = NULL;
Andi Kleen87192a22012-01-12 17:20:34 -08001171 bdev->bd_queue = NULL;
NeilBrownd3374822009-01-09 08:31:10 +11001172 mutex_unlock(&bdev->bd_mutex);
Tejun Heo69e02c52011-03-09 19:54:27 +01001173 disk_unblock_events(disk);
Tejun Heo69e02c52011-03-09 19:54:27 +01001174 put_disk(disk);
Tejun Heo523e1d32011-10-19 14:31:07 +02001175 module_put(owner);
NeilBrownd3374822009-01-09 08:31:10 +11001176 goto restart;
1177 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 }
Tejun Heo7e697232011-05-23 13:26:07 +02001179
Guo Chaode331272013-02-21 15:16:43 -08001180 if (!ret) {
Tejun Heo7e697232011-05-23 13:26:07 +02001181 bd_set_size(bdev,(loff_t)get_capacity(disk)<<9);
1182 bdi = blk_get_backing_dev_info(bdev);
Tejun Heo7e697232011-05-23 13:26:07 +02001183 bdev_inode_switch_bdi(bdev->bd_inode, bdi);
1184 }
1185
Tejun Heo1196f8b2011-04-21 20:54:45 +02001186 /*
1187 * If the device is invalidated, rescan partition
1188 * if open succeeded or failed with -ENOMEDIUM.
1189 * The latter is necessary to prevent ghost
1190 * partitions on a removed medium.
1191 */
Jun'ichi Nomurafe316bf2012-03-02 10:38:33 +01001192 if (bdev->bd_invalidated) {
1193 if (!ret)
1194 rescan_partitions(disk, bdev);
1195 else if (ret == -ENOMEDIUM)
1196 invalidate_partitions(disk, bdev);
1197 }
Tejun Heo1196f8b2011-04-21 20:54:45 +02001198 if (ret)
1199 goto out_clear;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 struct block_device *whole;
1202 whole = bdget_disk(disk, 0);
1203 ret = -ENOMEM;
1204 if (!whole)
Tejun Heo0762b8b2008-08-25 19:56:12 +09001205 goto out_clear;
NeilBrown37be4122006-12-08 02:36:16 -08001206 BUG_ON(for_part);
Al Viro572c4892007-10-08 13:24:05 -04001207 ret = __blkdev_get(whole, mode, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 if (ret)
Tejun Heo0762b8b2008-08-25 19:56:12 +09001209 goto out_clear;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 bdev->bd_contains = whole;
Dave Chinnera5491e02010-10-21 11:49:26 +11001211 bdev_inode_switch_bdi(bdev->bd_inode,
1212 whole->bd_inode->i_data.backing_dev_info);
Tejun Heo89f97492008-11-05 10:21:06 +01001213 bdev->bd_part = disk_get_part(disk, partno);
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001214 if (!(disk->flags & GENHD_FL_UP) ||
Tejun Heo89f97492008-11-05 10:21:06 +01001215 !bdev->bd_part || !bdev->bd_part->nr_sects) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 ret = -ENXIO;
Tejun Heo0762b8b2008-08-25 19:56:12 +09001217 goto out_clear;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 }
Tejun Heo89f97492008-11-05 10:21:06 +01001219 bd_set_size(bdev, (loff_t)bdev->bd_part->nr_sects << 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 }
1221 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 if (bdev->bd_contains == bdev) {
Tejun Heo1196f8b2011-04-21 20:54:45 +02001223 ret = 0;
1224 if (bdev->bd_disk->fops->open)
Al Viro572c4892007-10-08 13:24:05 -04001225 ret = bdev->bd_disk->fops->open(bdev, mode);
Tejun Heo1196f8b2011-04-21 20:54:45 +02001226 /* the same as first opener case, read comment there */
Jun'ichi Nomurafe316bf2012-03-02 10:38:33 +01001227 if (bdev->bd_invalidated) {
1228 if (!ret)
1229 rescan_partitions(bdev->bd_disk, bdev);
1230 else if (ret == -ENOMEDIUM)
1231 invalidate_partitions(bdev->bd_disk, bdev);
1232 }
Tejun Heo1196f8b2011-04-21 20:54:45 +02001233 if (ret)
1234 goto out_unlock_bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 }
Tejun Heo69e02c52011-03-09 19:54:27 +01001236 /* only one opener holds refs to the module and disk */
Tejun Heo69e02c52011-03-09 19:54:27 +01001237 put_disk(disk);
Tejun Heo523e1d32011-10-19 14:31:07 +02001238 module_put(owner);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 }
1240 bdev->bd_openers++;
NeilBrown37be4122006-12-08 02:36:16 -08001241 if (for_part)
1242 bdev->bd_part_count++;
Arjan van de Venc039e312006-03-23 03:00:28 -08001243 mutex_unlock(&bdev->bd_mutex);
Tejun Heo69e02c52011-03-09 19:54:27 +01001244 disk_unblock_events(disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 return 0;
1246
Tejun Heo0762b8b2008-08-25 19:56:12 +09001247 out_clear:
Tejun Heo89f97492008-11-05 10:21:06 +01001248 disk_put_part(bdev->bd_part);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 bdev->bd_disk = NULL;
Tejun Heo0762b8b2008-08-25 19:56:12 +09001250 bdev->bd_part = NULL;
Andi Kleen87192a22012-01-12 17:20:34 -08001251 bdev->bd_queue = NULL;
Dave Chinnera5491e02010-10-21 11:49:26 +11001252 bdev_inode_switch_bdi(bdev->bd_inode, &default_backing_dev_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 if (bdev != bdev->bd_contains)
Al Viro572c4892007-10-08 13:24:05 -04001254 __blkdev_put(bdev->bd_contains, mode, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 bdev->bd_contains = NULL;
Tejun Heo0762b8b2008-08-25 19:56:12 +09001256 out_unlock_bdev:
Arjan van de Venc039e312006-03-23 03:00:28 -08001257 mutex_unlock(&bdev->bd_mutex);
Tejun Heo69e02c52011-03-09 19:54:27 +01001258 disk_unblock_events(disk);
Tejun Heo0762b8b2008-08-25 19:56:12 +09001259 put_disk(disk);
Tejun Heo523e1d32011-10-19 14:31:07 +02001260 module_put(owner);
Dan Carpenter4345cab2011-03-19 13:53:31 +01001261 out:
Tejun Heo0762b8b2008-08-25 19:56:12 +09001262 bdput(bdev);
1263
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 return ret;
1265}
1266
Tejun Heod4d77622010-11-13 11:55:18 +01001267/**
1268 * blkdev_get - open a block device
1269 * @bdev: block_device to open
1270 * @mode: FMODE_* mask
1271 * @holder: exclusive holder identifier
1272 *
1273 * Open @bdev with @mode. If @mode includes %FMODE_EXCL, @bdev is
1274 * open with exclusive access. Specifying %FMODE_EXCL with %NULL
1275 * @holder is invalid. Exclusive opens may nest for the same @holder.
1276 *
1277 * On success, the reference count of @bdev is unchanged. On failure,
1278 * @bdev is put.
1279 *
1280 * CONTEXT:
1281 * Might sleep.
1282 *
1283 * RETURNS:
1284 * 0 on success, -errno on failure.
1285 */
Tejun Heoe525fd82010-11-13 11:55:17 +01001286int blkdev_get(struct block_device *bdev, fmode_t mode, void *holder)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287{
Tejun Heoe525fd82010-11-13 11:55:17 +01001288 struct block_device *whole = NULL;
1289 int res;
1290
1291 WARN_ON_ONCE((mode & FMODE_EXCL) && !holder);
1292
1293 if ((mode & FMODE_EXCL) && holder) {
1294 whole = bd_start_claiming(bdev, holder);
1295 if (IS_ERR(whole)) {
1296 bdput(bdev);
1297 return PTR_ERR(whole);
1298 }
1299 }
1300
1301 res = __blkdev_get(bdev, mode, 0);
1302
1303 if (whole) {
Tejun Heod4dc2102011-04-21 20:54:46 +02001304 struct gendisk *disk = whole->bd_disk;
1305
Tejun Heo6a027ef2010-11-13 11:55:17 +01001306 /* finish claiming */
Tejun Heo77ea8872010-12-08 20:57:37 +01001307 mutex_lock(&bdev->bd_mutex);
Tejun Heo6a027ef2010-11-13 11:55:17 +01001308 spin_lock(&bdev_lock);
1309
Tejun Heo77ea8872010-12-08 20:57:37 +01001310 if (!res) {
Tejun Heo6a027ef2010-11-13 11:55:17 +01001311 BUG_ON(!bd_may_claim(bdev, whole, holder));
1312 /*
1313 * Note that for a whole device bd_holders
1314 * will be incremented twice, and bd_holder
1315 * will be set to bd_may_claim before being
1316 * set to holder
1317 */
1318 whole->bd_holders++;
1319 whole->bd_holder = bd_may_claim;
1320 bdev->bd_holders++;
1321 bdev->bd_holder = holder;
1322 }
1323
1324 /* tell others that we're done */
1325 BUG_ON(whole->bd_claiming != holder);
1326 whole->bd_claiming = NULL;
1327 wake_up_bit(&whole->bd_claiming, 0);
1328
1329 spin_unlock(&bdev_lock);
Tejun Heo77ea8872010-12-08 20:57:37 +01001330
1331 /*
Tejun Heod4dc2102011-04-21 20:54:46 +02001332 * Block event polling for write claims if requested. Any
1333 * write holder makes the write_holder state stick until
1334 * all are released. This is good enough and tracking
1335 * individual writeable reference is too fragile given the
1336 * way @mode is used in blkdev_get/put().
Tejun Heo77ea8872010-12-08 20:57:37 +01001337 */
Tejun Heo4c49ff32011-06-01 08:27:41 +02001338 if (!res && (mode & FMODE_WRITE) && !bdev->bd_write_holder &&
1339 (disk->flags & GENHD_FL_BLOCK_EVENTS_ON_EXCL_WRITE)) {
Tejun Heo77ea8872010-12-08 20:57:37 +01001340 bdev->bd_write_holder = true;
Tejun Heod4dc2102011-04-21 20:54:46 +02001341 disk_block_events(disk);
Tejun Heo77ea8872010-12-08 20:57:37 +01001342 }
1343
1344 mutex_unlock(&bdev->bd_mutex);
Tejun Heo6a027ef2010-11-13 11:55:17 +01001345 bdput(whole);
Tejun Heoe525fd82010-11-13 11:55:17 +01001346 }
1347
1348 return res;
NeilBrown37be4122006-12-08 02:36:16 -08001349}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350EXPORT_SYMBOL(blkdev_get);
1351
Tejun Heod4d77622010-11-13 11:55:18 +01001352/**
1353 * blkdev_get_by_path - open a block device by name
1354 * @path: path to the block device to open
1355 * @mode: FMODE_* mask
1356 * @holder: exclusive holder identifier
1357 *
1358 * Open the blockdevice described by the device file at @path. @mode
1359 * and @holder are identical to blkdev_get().
1360 *
1361 * On success, the returned block_device has reference count of one.
1362 *
1363 * CONTEXT:
1364 * Might sleep.
1365 *
1366 * RETURNS:
1367 * Pointer to block_device on success, ERR_PTR(-errno) on failure.
1368 */
1369struct block_device *blkdev_get_by_path(const char *path, fmode_t mode,
1370 void *holder)
1371{
1372 struct block_device *bdev;
1373 int err;
1374
1375 bdev = lookup_bdev(path);
1376 if (IS_ERR(bdev))
1377 return bdev;
1378
1379 err = blkdev_get(bdev, mode, holder);
1380 if (err)
1381 return ERR_PTR(err);
1382
Chuck Ebberte51900f2011-02-16 18:11:53 -05001383 if ((mode & FMODE_WRITE) && bdev_read_only(bdev)) {
1384 blkdev_put(bdev, mode);
1385 return ERR_PTR(-EACCES);
1386 }
1387
Tejun Heod4d77622010-11-13 11:55:18 +01001388 return bdev;
1389}
1390EXPORT_SYMBOL(blkdev_get_by_path);
1391
1392/**
1393 * blkdev_get_by_dev - open a block device by device number
1394 * @dev: device number of block device to open
1395 * @mode: FMODE_* mask
1396 * @holder: exclusive holder identifier
1397 *
1398 * Open the blockdevice described by device number @dev. @mode and
1399 * @holder are identical to blkdev_get().
1400 *
1401 * Use it ONLY if you really do not have anything better - i.e. when
1402 * you are behind a truly sucky interface and all you are given is a
1403 * device number. _Never_ to be used for internal purposes. If you
1404 * ever need it - reconsider your API.
1405 *
1406 * On success, the returned block_device has reference count of one.
1407 *
1408 * CONTEXT:
1409 * Might sleep.
1410 *
1411 * RETURNS:
1412 * Pointer to block_device on success, ERR_PTR(-errno) on failure.
1413 */
1414struct block_device *blkdev_get_by_dev(dev_t dev, fmode_t mode, void *holder)
1415{
1416 struct block_device *bdev;
1417 int err;
1418
1419 bdev = bdget(dev);
1420 if (!bdev)
1421 return ERR_PTR(-ENOMEM);
1422
1423 err = blkdev_get(bdev, mode, holder);
1424 if (err)
1425 return ERR_PTR(err);
1426
1427 return bdev;
1428}
1429EXPORT_SYMBOL(blkdev_get_by_dev);
1430
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431static int blkdev_open(struct inode * inode, struct file * filp)
1432{
1433 struct block_device *bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434
1435 /*
1436 * Preserve backwards compatibility and allow large file access
1437 * even if userspace doesn't ask for it explicitly. Some mkfs
1438 * binary needs it. We might want to drop this workaround
1439 * during an unstable branch.
1440 */
1441 filp->f_flags |= O_LARGEFILE;
1442
Al Viro572c4892007-10-08 13:24:05 -04001443 if (filp->f_flags & O_NDELAY)
1444 filp->f_mode |= FMODE_NDELAY;
1445 if (filp->f_flags & O_EXCL)
1446 filp->f_mode |= FMODE_EXCL;
1447 if ((filp->f_flags & O_ACCMODE) == 3)
1448 filp->f_mode |= FMODE_WRITE_IOCTL;
1449
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 bdev = bd_acquire(inode);
Pavel Emelianov6a2aae02006-10-28 10:38:33 -07001451 if (bdev == NULL)
1452 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453
Al Viro572c4892007-10-08 13:24:05 -04001454 filp->f_mapping = bdev->bd_inode->i_mapping;
1455
Tejun Heoe525fd82010-11-13 11:55:17 +01001456 return blkdev_get(bdev, filp->f_mode, filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457}
1458
Al Viro4385bab2013-05-05 22:11:03 -04001459static void __blkdev_put(struct block_device *bdev, fmode_t mode, int for_part)
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001460{
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001461 struct gendisk *disk = bdev->bd_disk;
NeilBrown37be4122006-12-08 02:36:16 -08001462 struct block_device *victim = NULL;
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001463
NeilBrown6796bf52006-12-08 02:36:16 -08001464 mutex_lock_nested(&bdev->bd_mutex, for_part);
NeilBrown37be4122006-12-08 02:36:16 -08001465 if (for_part)
1466 bdev->bd_part_count--;
1467
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001468 if (!--bdev->bd_openers) {
Tejun Heo6a027ef2010-11-13 11:55:17 +01001469 WARN_ON_ONCE(bdev->bd_holders);
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001470 sync_blockdev(bdev);
1471 kill_bdev(bdev);
Christoph Hellwig564f00f2015-01-14 10:42:33 +01001472 /*
1473 * ->release can cause the queue to disappear, so flush all
1474 * dirty data before.
NeilBrown94007752011-09-10 17:20:21 +10001475 */
Christoph Hellwig564f00f2015-01-14 10:42:33 +01001476 bdev_write_inode(bdev->bd_inode);
NeilBrown94007752011-09-10 17:20:21 +10001477 bdev_inode_switch_bdi(bdev->bd_inode,
1478 &default_backing_dev_info);
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001479 }
1480 if (bdev->bd_contains == bdev) {
1481 if (disk->fops->release)
Al Virodb2a1442013-05-05 21:52:57 -04001482 disk->fops->release(disk, mode);
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001483 }
1484 if (!bdev->bd_openers) {
1485 struct module *owner = disk->fops->owner;
1486
Tejun Heo0762b8b2008-08-25 19:56:12 +09001487 disk_put_part(bdev->bd_part);
1488 bdev->bd_part = NULL;
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001489 bdev->bd_disk = NULL;
NeilBrown37be4122006-12-08 02:36:16 -08001490 if (bdev != bdev->bd_contains)
1491 victim = bdev->bd_contains;
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001492 bdev->bd_contains = NULL;
Tejun Heo523e1d32011-10-19 14:31:07 +02001493
1494 put_disk(disk);
1495 module_put(owner);
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001496 }
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001497 mutex_unlock(&bdev->bd_mutex);
1498 bdput(bdev);
NeilBrown37be4122006-12-08 02:36:16 -08001499 if (victim)
Al Viro9a1c3542008-02-22 20:40:24 -05001500 __blkdev_put(victim, mode, 1);
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001501}
1502
Al Viro4385bab2013-05-05 22:11:03 -04001503void blkdev_put(struct block_device *bdev, fmode_t mode)
NeilBrown37be4122006-12-08 02:36:16 -08001504{
Tejun Heo85ef06d2011-07-01 16:17:47 +02001505 mutex_lock(&bdev->bd_mutex);
1506
Tejun Heoe525fd82010-11-13 11:55:17 +01001507 if (mode & FMODE_EXCL) {
Tejun Heo6a027ef2010-11-13 11:55:17 +01001508 bool bdev_free;
1509
1510 /*
1511 * Release a claim on the device. The holder fields
1512 * are protected with bdev_lock. bd_mutex is to
1513 * synchronize disk_holder unlinking.
1514 */
Tejun Heo6a027ef2010-11-13 11:55:17 +01001515 spin_lock(&bdev_lock);
1516
1517 WARN_ON_ONCE(--bdev->bd_holders < 0);
1518 WARN_ON_ONCE(--bdev->bd_contains->bd_holders < 0);
1519
1520 /* bd_contains might point to self, check in a separate step */
1521 if ((bdev_free = !bdev->bd_holders))
1522 bdev->bd_holder = NULL;
1523 if (!bdev->bd_contains->bd_holders)
1524 bdev->bd_contains->bd_holder = NULL;
1525
1526 spin_unlock(&bdev_lock);
1527
Tejun Heo77ea8872010-12-08 20:57:37 +01001528 /*
1529 * If this was the last claim, remove holder link and
1530 * unblock evpoll if it was a write holder.
1531 */
Tejun Heo85ef06d2011-07-01 16:17:47 +02001532 if (bdev_free && bdev->bd_write_holder) {
1533 disk_unblock_events(bdev->bd_disk);
1534 bdev->bd_write_holder = false;
Tejun Heo77ea8872010-12-08 20:57:37 +01001535 }
Tejun Heo69362172011-03-09 19:54:27 +01001536 }
Tejun Heo77ea8872010-12-08 20:57:37 +01001537
Tejun Heo85ef06d2011-07-01 16:17:47 +02001538 /*
1539 * Trigger event checking and tell drivers to flush MEDIA_CHANGE
1540 * event. This is to ensure detection of media removal commanded
1541 * from userland - e.g. eject(1).
1542 */
1543 disk_flush_events(bdev->bd_disk, DISK_EVENT_MEDIA_CHANGE);
1544
1545 mutex_unlock(&bdev->bd_mutex);
1546
Al Viro4385bab2013-05-05 22:11:03 -04001547 __blkdev_put(bdev, mode, 0);
NeilBrown37be4122006-12-08 02:36:16 -08001548}
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001549EXPORT_SYMBOL(blkdev_put);
1550
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551static int blkdev_close(struct inode * inode, struct file * filp)
1552{
1553 struct block_device *bdev = I_BDEV(filp->f_mapping->host);
Al Viro4385bab2013-05-05 22:11:03 -04001554 blkdev_put(bdev, filp->f_mode);
1555 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556}
1557
Arnd Bergmannbb93e3a2005-06-23 00:10:15 -07001558static long block_ioctl(struct file *file, unsigned cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559{
Al Viro56b26ad2008-09-19 03:17:36 -04001560 struct block_device *bdev = I_BDEV(file->f_mapping->host);
1561 fmode_t mode = file->f_mode;
Christoph Hellwigfd4ce1a2008-11-05 14:58:42 +01001562
1563 /*
1564 * O_NDELAY can be altered using fcntl(.., F_SETFL, ..), so we have
1565 * to updated it before every ioctl.
1566 */
Al Viro56b26ad2008-09-19 03:17:36 -04001567 if (file->f_flags & O_NDELAY)
Christoph Hellwigfd4ce1a2008-11-05 14:58:42 +01001568 mode |= FMODE_NDELAY;
1569 else
1570 mode &= ~FMODE_NDELAY;
1571
Al Viro56b26ad2008-09-19 03:17:36 -04001572 return blkdev_ioctl(bdev, mode, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573}
1574
Theodore Ts'o87d8fe12009-01-03 09:47:09 -05001575/*
Christoph Hellwigeef99382009-08-20 17:43:41 +02001576 * Write data to the block device. Only intended for the block device itself
1577 * and the raw driver which basically is a fake block device.
1578 *
1579 * Does not take i_mutex for the write and thus is not for general purpose
1580 * use.
1581 */
Al Viro1456c0a2014-04-03 03:21:50 -04001582ssize_t blkdev_write_iter(struct kiocb *iocb, struct iov_iter *from)
Christoph Hellwigeef99382009-08-20 17:43:41 +02001583{
1584 struct file *file = iocb->ki_filp;
Jianpeng Ma53362a02012-08-02 09:50:39 +02001585 struct blk_plug plug;
Christoph Hellwigeef99382009-08-20 17:43:41 +02001586 ssize_t ret;
1587
Jianpeng Ma53362a02012-08-02 09:50:39 +02001588 blk_start_plug(&plug);
Al Viro1456c0a2014-04-03 03:21:50 -04001589 ret = __generic_file_write_iter(iocb, from);
Christoph Hellwig02afc272013-09-04 15:04:40 +02001590 if (ret > 0) {
Christoph Hellwigeef99382009-08-20 17:43:41 +02001591 ssize_t err;
Al Viro1456c0a2014-04-03 03:21:50 -04001592 err = generic_write_sync(file, iocb->ki_pos - ret, ret);
Dan Carpenter45d4f852014-04-03 14:47:17 -07001593 if (err < 0)
Christoph Hellwigeef99382009-08-20 17:43:41 +02001594 ret = err;
1595 }
Jianpeng Ma53362a02012-08-02 09:50:39 +02001596 blk_finish_plug(&plug);
Christoph Hellwigeef99382009-08-20 17:43:41 +02001597 return ret;
1598}
Al Viro1456c0a2014-04-03 03:21:50 -04001599EXPORT_SYMBOL_GPL(blkdev_write_iter);
Christoph Hellwigeef99382009-08-20 17:43:41 +02001600
David Jefferyb2de5252014-09-29 10:21:10 -04001601ssize_t blkdev_read_iter(struct kiocb *iocb, struct iov_iter *to)
Linus Torvalds684c9aa2012-12-07 16:48:39 -08001602{
1603 struct file *file = iocb->ki_filp;
1604 struct inode *bd_inode = file->f_mapping->host;
1605 loff_t size = i_size_read(bd_inode);
Al Viroa8860382014-04-02 20:02:21 -04001606 loff_t pos = iocb->ki_pos;
Linus Torvalds684c9aa2012-12-07 16:48:39 -08001607
1608 if (pos >= size)
1609 return 0;
1610
1611 size -= pos;
Al Viroa8860382014-04-02 20:02:21 -04001612 iov_iter_truncate(to, size);
1613 return generic_file_read_iter(iocb, to);
Linus Torvalds684c9aa2012-12-07 16:48:39 -08001614}
David Jefferyb2de5252014-09-29 10:21:10 -04001615EXPORT_SYMBOL_GPL(blkdev_read_iter);
Linus Torvalds684c9aa2012-12-07 16:48:39 -08001616
Christoph Hellwigeef99382009-08-20 17:43:41 +02001617/*
Theodore Ts'o87d8fe12009-01-03 09:47:09 -05001618 * Try to release a page associated with block device when the system
1619 * is under memory pressure.
1620 */
1621static int blkdev_releasepage(struct page *page, gfp_t wait)
1622{
1623 struct super_block *super = BDEV_I(page->mapping->host)->bdev.bd_super;
1624
1625 if (super && super->s_op->bdev_try_to_free_page)
1626 return super->s_op->bdev_try_to_free_page(super, page, wait);
1627
1628 return try_to_free_buffers(page);
1629}
1630
Adrian Bunk4c54ac62008-02-18 13:48:31 +01001631static const struct address_space_operations def_blk_aops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 .readpage = blkdev_readpage,
Akinobu Mita447f05b2014-10-09 15:26:58 -07001633 .readpages = blkdev_readpages,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 .writepage = blkdev_writepage,
Nick Piggin6272b5a2007-10-16 01:25:04 -07001635 .write_begin = blkdev_write_begin,
1636 .write_end = blkdev_write_end,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 .writepages = generic_writepages,
Theodore Ts'o87d8fe12009-01-03 09:47:09 -05001638 .releasepage = blkdev_releasepage,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 .direct_IO = blkdev_direct_IO,
Mel Gormanb4597222013-07-03 15:02:05 -07001640 .is_dirty_writeback = buffer_check_dirty_writeback,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641};
1642
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08001643const struct file_operations def_blk_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 .open = blkdev_open,
1645 .release = blkdev_close,
1646 .llseek = block_llseek,
Al Viroa8860382014-04-02 20:02:21 -04001647 .read = new_sync_read,
Al Viro1456c0a2014-04-03 03:21:50 -04001648 .write = new_sync_write,
Al Viroa8860382014-04-02 20:02:21 -04001649 .read_iter = blkdev_read_iter,
Al Viro1456c0a2014-04-03 03:21:50 -04001650 .write_iter = blkdev_write_iter,
Linus Torvalds1e8b3332012-11-29 10:49:50 -08001651 .mmap = generic_file_mmap,
Andrew Mortonb1dd3b22010-04-06 14:35:00 -07001652 .fsync = blkdev_fsync,
Arnd Bergmannbb93e3a2005-06-23 00:10:15 -07001653 .unlocked_ioctl = block_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654#ifdef CONFIG_COMPAT
1655 .compat_ioctl = compat_blkdev_ioctl,
1656#endif
Linus Torvalds1e8b3332012-11-29 10:49:50 -08001657 .splice_read = generic_file_splice_read,
Al Viro8d020762014-04-05 04:27:08 -04001658 .splice_write = iter_file_splice_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659};
1660
1661int ioctl_by_bdev(struct block_device *bdev, unsigned cmd, unsigned long arg)
1662{
1663 int res;
1664 mm_segment_t old_fs = get_fs();
1665 set_fs(KERNEL_DS);
Al Viro56b26ad2008-09-19 03:17:36 -04001666 res = blkdev_ioctl(bdev, 0, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 set_fs(old_fs);
1668 return res;
1669}
1670
1671EXPORT_SYMBOL(ioctl_by_bdev);
1672
1673/**
1674 * lookup_bdev - lookup a struct block_device by name
Randy Dunlap94e29592009-01-06 14:41:15 -08001675 * @pathname: special file representing the block device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 *
Randy Dunlap57d1b532008-10-09 10:42:38 +02001677 * Get a reference to the blockdevice at @pathname in the current
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 * namespace if possible and return it. Return ERR_PTR(error)
1679 * otherwise.
1680 */
Al Viro421748e2008-08-02 01:04:36 -04001681struct block_device *lookup_bdev(const char *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682{
1683 struct block_device *bdev;
1684 struct inode *inode;
Al Viro421748e2008-08-02 01:04:36 -04001685 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686 int error;
1687
Al Viro421748e2008-08-02 01:04:36 -04001688 if (!pathname || !*pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 return ERR_PTR(-EINVAL);
1690
Al Viro421748e2008-08-02 01:04:36 -04001691 error = kern_path(pathname, LOOKUP_FOLLOW, &path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 if (error)
1693 return ERR_PTR(error);
1694
Al Viro421748e2008-08-02 01:04:36 -04001695 inode = path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696 error = -ENOTBLK;
1697 if (!S_ISBLK(inode->i_mode))
1698 goto fail;
1699 error = -EACCES;
Al Viro421748e2008-08-02 01:04:36 -04001700 if (path.mnt->mnt_flags & MNT_NODEV)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 goto fail;
1702 error = -ENOMEM;
1703 bdev = bd_acquire(inode);
1704 if (!bdev)
1705 goto fail;
1706out:
Al Viro421748e2008-08-02 01:04:36 -04001707 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 return bdev;
1709fail:
1710 bdev = ERR_PTR(error);
1711 goto out;
1712}
Al Virod5686b42008-08-01 05:00:11 -04001713EXPORT_SYMBOL(lookup_bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714
NeilBrown93b270f2011-02-24 17:25:47 +11001715int __invalidate_device(struct block_device *bdev, bool kill_dirty)
David Howellsb71e8a42006-08-29 19:06:11 +01001716{
1717 struct super_block *sb = get_super(bdev);
1718 int res = 0;
1719
1720 if (sb) {
1721 /*
1722 * no need to lock the super, get_super holds the
1723 * read mutex so the filesystem cannot go away
1724 * under us (->put_super runs with the write lock
1725 * hold).
1726 */
1727 shrink_dcache_sb(sb);
NeilBrown93b270f2011-02-24 17:25:47 +11001728 res = invalidate_inodes(sb, kill_dirty);
David Howellsb71e8a42006-08-29 19:06:11 +01001729 drop_super(sb);
1730 }
Peter Zijlstraf98393a2007-05-06 14:49:54 -07001731 invalidate_bdev(bdev);
David Howellsb71e8a42006-08-29 19:06:11 +01001732 return res;
1733}
1734EXPORT_SYMBOL(__invalidate_device);
Jan Kara5c0d6b62012-07-03 16:45:31 +02001735
1736void iterate_bdevs(void (*func)(struct block_device *, void *), void *arg)
1737{
1738 struct inode *inode, *old_inode = NULL;
1739
1740 spin_lock(&inode_sb_list_lock);
1741 list_for_each_entry(inode, &blockdev_superblock->s_inodes, i_sb_list) {
1742 struct address_space *mapping = inode->i_mapping;
1743
1744 spin_lock(&inode->i_lock);
1745 if (inode->i_state & (I_FREEING|I_WILL_FREE|I_NEW) ||
1746 mapping->nrpages == 0) {
1747 spin_unlock(&inode->i_lock);
1748 continue;
1749 }
1750 __iget(inode);
1751 spin_unlock(&inode->i_lock);
1752 spin_unlock(&inode_sb_list_lock);
1753 /*
1754 * We hold a reference to 'inode' so it couldn't have been
1755 * removed from s_inodes list while we dropped the
1756 * inode_sb_list_lock. We cannot iput the inode now as we can
1757 * be holding the last reference and we cannot iput it under
1758 * inode_sb_list_lock. So we keep the reference and iput it
1759 * later.
1760 */
1761 iput(old_inode);
1762 old_inode = inode;
1763
1764 func(I_BDEV(inode), arg);
1765
1766 spin_lock(&inode_sb_list_lock);
1767 }
1768 spin_unlock(&inode_sb_list_lock);
1769 iput(old_inode);
1770}