blob: dad97e19bb1fd55e24d9e5510a281fcb6cf8e8d3 [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>
Tejun Heo66114ca2015-05-22 17:13:32 -040017#include <linux/backing-dev.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/module.h>
19#include <linux/blkpg.h>
Muthu Kumarb502bd12012-03-23 15:01:50 -070020#include <linux/magic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/buffer_head.h>
Al Viroff01bb42011-09-16 02:31:11 -040022#include <linux/swap.h>
Nick Piggin585d3bc2009-02-25 10:44:19 +010023#include <linux/pagevec.h>
David Howells811d7362006-08-29 19:06:09 +010024#include <linux/writeback.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/mpage.h>
26#include <linux/mount.h>
27#include <linux/uio.h>
28#include <linux/namei.h>
Vignesh Babu BM1368c4f2007-05-08 00:24:32 -070029#include <linux/log2.h>
Al Viroff01bb42011-09-16 02:31:11 -040030#include <linux/cleancache.h>
Matthew Wilcoxc94c2ac2015-09-08 14:58:40 -070031#include <linux/dax.h>
Dan Williamsacc93d32016-05-07 11:40:28 -070032#include <linux/badblocks.h>
Christoph Hellwig189ce2b2016-10-31 11:59:25 -060033#include <linux/task_io_accounting_ops.h>
Darrick J. Wong25f4c412016-10-11 13:51:11 -070034#include <linux/falloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <asm/uaccess.h>
David Howells07f3f052006-09-30 20:52:18 +020036#include "internal.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38struct bdev_inode {
39 struct block_device bdev;
40 struct inode vfs_inode;
41};
42
Adrian Bunk4c54ac62008-02-18 13:48:31 +010043static const struct address_space_operations def_blk_aops;
44
Linus Torvalds1da177e2005-04-16 15:20:36 -070045static inline struct bdev_inode *BDEV_I(struct inode *inode)
46{
47 return container_of(inode, struct bdev_inode, vfs_inode);
48}
49
Geert Uytterhoevenff5053f2015-06-26 13:58:32 +020050struct block_device *I_BDEV(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -070051{
52 return &BDEV_I(inode)->bdev;
53}
Linus Torvalds1da177e2005-04-16 15:20:36 -070054EXPORT_SYMBOL(I_BDEV);
55
Toshi Kani2af3a812016-05-10 10:23:52 -060056void __vfs_msg(struct super_block *sb, const char *prefix, const char *fmt, ...)
57{
58 struct va_format vaf;
59 va_list args;
60
61 va_start(args, fmt);
62 vaf.fmt = fmt;
63 vaf.va = &args;
64 printk_ratelimited("%sVFS (%s): %pV\n", prefix, sb->s_id, &vaf);
65 va_end(args);
66}
67
Vivek Goyaldbd3ca52015-11-09 09:23:40 -070068static void bdev_write_inode(struct block_device *bdev)
Christoph Hellwig564f00f2015-01-14 10:42:33 +010069{
Vivek Goyaldbd3ca52015-11-09 09:23:40 -070070 struct inode *inode = bdev->bd_inode;
71 int ret;
72
Christoph Hellwig564f00f2015-01-14 10:42:33 +010073 spin_lock(&inode->i_lock);
74 while (inode->i_state & I_DIRTY) {
75 spin_unlock(&inode->i_lock);
Vivek Goyaldbd3ca52015-11-09 09:23:40 -070076 ret = write_inode_now(inode, true);
77 if (ret) {
78 char name[BDEVNAME_SIZE];
79 pr_warn_ratelimited("VFS: Dirty inode writeback failed "
80 "for block device %s (err=%d).\n",
81 bdevname(bdev, name), ret);
82 }
Christoph Hellwig564f00f2015-01-14 10:42:33 +010083 spin_lock(&inode->i_lock);
84 }
85 spin_unlock(&inode->i_lock);
86}
87
Peter Zijlstraf9a14392007-05-06 14:49:55 -070088/* Kill _all_ buffers and pagecache , dirty or not.. */
Al Viroff01bb42011-09-16 02:31:11 -040089void kill_bdev(struct block_device *bdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070090{
Al Viroff01bb42011-09-16 02:31:11 -040091 struct address_space *mapping = bdev->bd_inode->i_mapping;
92
Ross Zwislerf9fe48b2016-01-22 15:10:40 -080093 if (mapping->nrpages == 0 && mapping->nrexceptional == 0)
Peter Zijlstraf9a14392007-05-06 14:49:55 -070094 return;
Al Viroff01bb42011-09-16 02:31:11 -040095
Peter Zijlstraf9a14392007-05-06 14:49:55 -070096 invalidate_bh_lrus();
Al Viroff01bb42011-09-16 02:31:11 -040097 truncate_inode_pages(mapping, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070098}
Al Viroff01bb42011-09-16 02:31:11 -040099EXPORT_SYMBOL(kill_bdev);
100
101/* Invalidate clean unused buffers and pagecache. */
102void invalidate_bdev(struct block_device *bdev)
103{
104 struct address_space *mapping = bdev->bd_inode->i_mapping;
105
106 if (mapping->nrpages == 0)
107 return;
108
109 invalidate_bh_lrus();
110 lru_add_drain_all(); /* make sure all lru add caches are flushed */
111 invalidate_mapping_pages(mapping, 0, -1);
112 /* 99% of the time, we don't need to flush the cleancache on the bdev.
113 * But, for the strange corners, lets be cautious
114 */
Dan Magenheimer31677602011-09-21 11:56:28 -0400115 cleancache_invalidate_inode(mapping);
Al Viroff01bb42011-09-16 02:31:11 -0400116}
117EXPORT_SYMBOL(invalidate_bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
119int set_blocksize(struct block_device *bdev, int size)
120{
121 /* Size must be a power of two, and between 512 and PAGE_SIZE */
Vignesh Babu BM1368c4f2007-05-08 00:24:32 -0700122 if (size > PAGE_SIZE || size < 512 || !is_power_of_2(size))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 return -EINVAL;
124
125 /* Size cannot be smaller than the size supported by the device */
Martin K. Petersene1defc42009-05-22 17:17:49 -0400126 if (size < bdev_logical_block_size(bdev))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 return -EINVAL;
128
129 /* Don't change the size if it is same as current */
130 if (bdev->bd_block_size != size) {
131 sync_blockdev(bdev);
132 bdev->bd_block_size = size;
133 bdev->bd_inode->i_blkbits = blksize_bits(size);
134 kill_bdev(bdev);
135 }
136 return 0;
137}
138
139EXPORT_SYMBOL(set_blocksize);
140
141int sb_set_blocksize(struct super_block *sb, int size)
142{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 if (set_blocksize(sb->s_bdev, size))
144 return 0;
145 /* If we get here, we know size is power of two
146 * and it's value is between 512 and PAGE_SIZE */
147 sb->s_blocksize = size;
Coywolf Qi Hunt38885bd2006-03-24 03:18:05 -0800148 sb->s_blocksize_bits = blksize_bits(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 return sb->s_blocksize;
150}
151
152EXPORT_SYMBOL(sb_set_blocksize);
153
154int sb_min_blocksize(struct super_block *sb, int size)
155{
Martin K. Petersene1defc42009-05-22 17:17:49 -0400156 int minsize = bdev_logical_block_size(sb->s_bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 if (size < minsize)
158 size = minsize;
159 return sb_set_blocksize(sb, size);
160}
161
162EXPORT_SYMBOL(sb_min_blocksize);
163
164static int
165blkdev_get_block(struct inode *inode, sector_t iblock,
166 struct buffer_head *bh, int create)
167{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 bh->b_bdev = I_BDEV(inode);
169 bh->b_blocknr = iblock;
170 set_buffer_mapped(bh);
171 return 0;
172}
173
Dan Williams4ebb16c2015-10-28 07:48:19 +0900174static struct inode *bdev_file_inode(struct file *file)
175{
176 return file->f_mapping->host;
177}
178
Christoph Hellwig189ce2b2016-10-31 11:59:25 -0600179#define DIO_INLINE_BIO_VECS 4
180
181static void blkdev_bio_end_io_simple(struct bio *bio)
182{
183 struct task_struct *waiter = bio->bi_private;
184
185 WRITE_ONCE(bio->bi_private, NULL);
186 wake_up_process(waiter);
187}
188
189static ssize_t
190__blkdev_direct_IO_simple(struct kiocb *iocb, struct iov_iter *iter,
191 int nr_pages)
192{
193 struct file *file = iocb->ki_filp;
194 struct block_device *bdev = I_BDEV(bdev_file_inode(file));
195 unsigned blkbits = blksize_bits(bdev_logical_block_size(bdev));
Jens Axboe72ecad22016-11-16 23:11:42 -0700196 struct bio_vec inline_vecs[DIO_INLINE_BIO_VECS], *vecs, *bvec;
Christoph Hellwig189ce2b2016-10-31 11:59:25 -0600197 loff_t pos = iocb->ki_pos;
198 bool should_dirty = false;
199 struct bio bio;
200 ssize_t ret;
201 blk_qc_t qc;
202 int i;
203
204 if ((pos | iov_iter_alignment(iter)) & ((1 << blkbits) - 1))
205 return -EINVAL;
206
Jens Axboe72ecad22016-11-16 23:11:42 -0700207 if (nr_pages <= DIO_INLINE_BIO_VECS)
208 vecs = inline_vecs;
209 else {
210 vecs = kmalloc(nr_pages * sizeof(struct bio_vec), GFP_KERNEL);
211 if (!vecs)
212 return -ENOMEM;
213 }
214
Christoph Hellwig189ce2b2016-10-31 11:59:25 -0600215 bio_init(&bio);
216 bio.bi_max_vecs = nr_pages;
Jens Axboe72ecad22016-11-16 23:11:42 -0700217 bio.bi_io_vec = vecs;
Christoph Hellwig189ce2b2016-10-31 11:59:25 -0600218 bio.bi_bdev = bdev;
219 bio.bi_iter.bi_sector = pos >> blkbits;
220 bio.bi_private = current;
221 bio.bi_end_io = blkdev_bio_end_io_simple;
222
223 ret = bio_iov_iter_get_pages(&bio, iter);
224 if (unlikely(ret))
225 return ret;
226 ret = bio.bi_iter.bi_size;
227
228 if (iov_iter_rw(iter) == READ) {
229 bio_set_op_attrs(&bio, REQ_OP_READ, 0);
230 if (iter_is_iovec(iter))
231 should_dirty = true;
232 } else {
233 bio_set_op_attrs(&bio, REQ_OP_WRITE, REQ_SYNC | REQ_IDLE);
234 task_io_account_write(ret);
235 }
236
237 qc = submit_bio(&bio);
238 for (;;) {
239 set_current_state(TASK_UNINTERRUPTIBLE);
240 if (!READ_ONCE(bio.bi_private))
241 break;
242 if (!(iocb->ki_flags & IOCB_HIPRI) ||
243 !blk_mq_poll(bdev_get_queue(bdev), qc))
244 io_schedule();
245 }
246 __set_current_state(TASK_RUNNING);
247
248 bio_for_each_segment_all(bvec, &bio, i) {
249 if (should_dirty && !PageCompound(bvec->bv_page))
250 set_page_dirty_lock(bvec->bv_page);
251 put_page(bvec->bv_page);
252 }
253
Jens Axboe72ecad22016-11-16 23:11:42 -0700254 if (vecs != inline_vecs)
255 kfree(vecs);
256
Christoph Hellwig189ce2b2016-10-31 11:59:25 -0600257 if (unlikely(bio.bi_error))
258 return bio.bi_error;
259 iocb->ki_pos += ret;
260 return ret;
261}
262
Andrew Mortonb2e895d2007-02-03 01:14:01 -0800263static ssize_t
Christoph Hellwigc8b8e322016-04-07 08:51:58 -0700264blkdev_direct_IO(struct kiocb *iocb, struct iov_iter *iter)
Andrew Mortonb2e895d2007-02-03 01:14:01 -0800265{
266 struct file *file = iocb->ki_filp;
Dan Williams4ebb16c2015-10-28 07:48:19 +0900267 struct inode *inode = bdev_file_inode(file);
Christoph Hellwig189ce2b2016-10-31 11:59:25 -0600268 int nr_pages;
Andrew Mortonb2e895d2007-02-03 01:14:01 -0800269
Jens Axboe72ecad22016-11-16 23:11:42 -0700270 nr_pages = iov_iter_npages(iter, BIO_MAX_PAGES + 1);
Christoph Hellwig189ce2b2016-10-31 11:59:25 -0600271 if (!nr_pages)
272 return 0;
Jens Axboe72ecad22016-11-16 23:11:42 -0700273 if (is_sync_kiocb(iocb) && nr_pages <= BIO_MAX_PAGES)
Christoph Hellwig189ce2b2016-10-31 11:59:25 -0600274 return __blkdev_direct_IO_simple(iocb, iter, nr_pages);
Christoph Hellwigc8b8e322016-04-07 08:51:58 -0700275 return __blockdev_direct_IO(iocb, inode, I_BDEV(inode), iter,
Jens Axboefe0f07d2015-04-15 17:05:48 -0600276 blkdev_get_block, NULL, NULL,
277 DIO_SKIP_DIO_COUNT);
Andrew Mortonb2e895d2007-02-03 01:14:01 -0800278}
279
Jan Kara5cee5812009-04-27 16:43:51 +0200280int __sync_blockdev(struct block_device *bdev, int wait)
281{
282 if (!bdev)
283 return 0;
284 if (!wait)
285 return filemap_flush(bdev->bd_inode->i_mapping);
286 return filemap_write_and_wait(bdev->bd_inode->i_mapping);
287}
288
Nick Piggin585d3bc2009-02-25 10:44:19 +0100289/*
290 * Write out and wait upon all the dirty data associated with a block
291 * device via its mapping. Does not take the superblock lock.
292 */
293int sync_blockdev(struct block_device *bdev)
294{
Jan Kara5cee5812009-04-27 16:43:51 +0200295 return __sync_blockdev(bdev, 1);
Nick Piggin585d3bc2009-02-25 10:44:19 +0100296}
297EXPORT_SYMBOL(sync_blockdev);
298
299/*
300 * Write out and wait upon all dirty data associated with this
301 * device. Filesystem data as well as the underlying block
302 * device. Takes the superblock lock.
303 */
304int fsync_bdev(struct block_device *bdev)
305{
306 struct super_block *sb = get_super(bdev);
307 if (sb) {
Jan Kara60b06802009-04-27 16:43:53 +0200308 int res = sync_filesystem(sb);
Nick Piggin585d3bc2009-02-25 10:44:19 +0100309 drop_super(sb);
310 return res;
311 }
312 return sync_blockdev(bdev);
313}
Al Viro47e44912009-04-01 07:07:16 -0400314EXPORT_SYMBOL(fsync_bdev);
Nick Piggin585d3bc2009-02-25 10:44:19 +0100315
316/**
317 * freeze_bdev -- lock a filesystem and force it into a consistent state
318 * @bdev: blockdevice to lock
319 *
Nick Piggin585d3bc2009-02-25 10:44:19 +0100320 * If a superblock is found on this device, we take the s_umount semaphore
321 * on it to make sure nobody unmounts until the snapshot creation is done.
322 * The reference counter (bd_fsfreeze_count) guarantees that only the last
323 * unfreeze process can unfreeze the frozen filesystem actually when multiple
324 * freeze requests arrive simultaneously. It counts up in freeze_bdev() and
325 * count down in thaw_bdev(). When it becomes 0, thaw_bdev() will unfreeze
326 * actually.
327 */
328struct super_block *freeze_bdev(struct block_device *bdev)
329{
330 struct super_block *sb;
331 int error = 0;
332
333 mutex_lock(&bdev->bd_fsfreeze_mutex);
Christoph Hellwig45042302009-08-03 23:28:35 +0200334 if (++bdev->bd_fsfreeze_count > 1) {
335 /*
336 * We don't even need to grab a reference - the first call
337 * to freeze_bdev grab an active reference and only the last
338 * thaw_bdev drops it.
339 */
Nick Piggin585d3bc2009-02-25 10:44:19 +0100340 sb = get_super(bdev);
Andrey Ryabinin5bb53c02016-08-23 18:55:31 +0300341 if (sb)
342 drop_super(sb);
Nick Piggin585d3bc2009-02-25 10:44:19 +0100343 mutex_unlock(&bdev->bd_fsfreeze_mutex);
344 return sb;
345 }
Nick Piggin585d3bc2009-02-25 10:44:19 +0100346
Christoph Hellwig45042302009-08-03 23:28:35 +0200347 sb = get_active_super(bdev);
348 if (!sb)
349 goto out;
Benjamin Marzinski48b6bca2014-11-13 20:42:03 -0600350 if (sb->s_op->freeze_super)
351 error = sb->s_op->freeze_super(sb);
352 else
353 error = freeze_super(sb);
Josef Bacik18e9e512010-03-23 10:34:56 -0400354 if (error) {
355 deactivate_super(sb);
356 bdev->bd_fsfreeze_count--;
Christoph Hellwig45042302009-08-03 23:28:35 +0200357 mutex_unlock(&bdev->bd_fsfreeze_mutex);
Josef Bacik18e9e512010-03-23 10:34:56 -0400358 return ERR_PTR(error);
Nick Piggin585d3bc2009-02-25 10:44:19 +0100359 }
Josef Bacik18e9e512010-03-23 10:34:56 -0400360 deactivate_super(sb);
Christoph Hellwig45042302009-08-03 23:28:35 +0200361 out:
Nick Piggin585d3bc2009-02-25 10:44:19 +0100362 sync_blockdev(bdev);
363 mutex_unlock(&bdev->bd_fsfreeze_mutex);
Christoph Hellwig4fadd7b2009-08-03 23:28:06 +0200364 return sb; /* thaw_bdev releases s->s_umount */
Nick Piggin585d3bc2009-02-25 10:44:19 +0100365}
366EXPORT_SYMBOL(freeze_bdev);
367
368/**
369 * thaw_bdev -- unlock filesystem
370 * @bdev: blockdevice to unlock
371 * @sb: associated superblock
372 *
373 * Unlocks the filesystem and marks it writeable again after freeze_bdev().
374 */
375int thaw_bdev(struct block_device *bdev, struct super_block *sb)
376{
Christoph Hellwig45042302009-08-03 23:28:35 +0200377 int error = -EINVAL;
Nick Piggin585d3bc2009-02-25 10:44:19 +0100378
379 mutex_lock(&bdev->bd_fsfreeze_mutex);
Christoph Hellwig45042302009-08-03 23:28:35 +0200380 if (!bdev->bd_fsfreeze_count)
Josef Bacik18e9e512010-03-23 10:34:56 -0400381 goto out;
Nick Piggin585d3bc2009-02-25 10:44:19 +0100382
Christoph Hellwig45042302009-08-03 23:28:35 +0200383 error = 0;
384 if (--bdev->bd_fsfreeze_count > 0)
Josef Bacik18e9e512010-03-23 10:34:56 -0400385 goto out;
Nick Piggin585d3bc2009-02-25 10:44:19 +0100386
Christoph Hellwig45042302009-08-03 23:28:35 +0200387 if (!sb)
Josef Bacik18e9e512010-03-23 10:34:56 -0400388 goto out;
Christoph Hellwig45042302009-08-03 23:28:35 +0200389
Benjamin Marzinski48b6bca2014-11-13 20:42:03 -0600390 if (sb->s_op->thaw_super)
391 error = sb->s_op->thaw_super(sb);
392 else
393 error = thaw_super(sb);
Pierre Morel997198b2016-10-04 10:53:40 +0200394 if (error)
Josef Bacik18e9e512010-03-23 10:34:56 -0400395 bdev->bd_fsfreeze_count++;
Josef Bacik18e9e512010-03-23 10:34:56 -0400396out:
Nick Piggin585d3bc2009-02-25 10:44:19 +0100397 mutex_unlock(&bdev->bd_fsfreeze_mutex);
Pierre Morel997198b2016-10-04 10:53:40 +0200398 return error;
Nick Piggin585d3bc2009-02-25 10:44:19 +0100399}
400EXPORT_SYMBOL(thaw_bdev);
401
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402static int blkdev_writepage(struct page *page, struct writeback_control *wbc)
403{
404 return block_write_full_page(page, blkdev_get_block, wbc);
405}
406
407static int blkdev_readpage(struct file * file, struct page * page)
408{
409 return block_read_full_page(page, blkdev_get_block);
410}
411
Akinobu Mita447f05b2014-10-09 15:26:58 -0700412static int blkdev_readpages(struct file *file, struct address_space *mapping,
413 struct list_head *pages, unsigned nr_pages)
414{
415 return mpage_readpages(mapping, pages, nr_pages, blkdev_get_block);
416}
417
Nick Piggin6272b5a2007-10-16 01:25:04 -0700418static int blkdev_write_begin(struct file *file, struct address_space *mapping,
419 loff_t pos, unsigned len, unsigned flags,
420 struct page **pagep, void **fsdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421{
Christoph Hellwig155130a2010-06-04 11:29:58 +0200422 return block_write_begin(mapping, pos, len, flags, pagep,
423 blkdev_get_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424}
425
Nick Piggin6272b5a2007-10-16 01:25:04 -0700426static int blkdev_write_end(struct file *file, struct address_space *mapping,
427 loff_t pos, unsigned len, unsigned copied,
428 struct page *page, void *fsdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429{
Nick Piggin6272b5a2007-10-16 01:25:04 -0700430 int ret;
431 ret = block_write_end(file, mapping, pos, len, copied, page, fsdata);
432
433 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300434 put_page(page);
Nick Piggin6272b5a2007-10-16 01:25:04 -0700435
436 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437}
438
439/*
440 * private llseek:
Al Viro496ad9a2013-01-23 17:07:38 -0500441 * for a block special file file_inode(file)->i_size is zero
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 * so we compute the size by hand (just as in block_read/write above)
443 */
Andrew Morton965c8e52012-12-17 15:59:39 -0800444static loff_t block_llseek(struct file *file, loff_t offset, int whence)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445{
Dan Williams4ebb16c2015-10-28 07:48:19 +0900446 struct inode *bd_inode = bdev_file_inode(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 loff_t retval;
448
Al Viro59551022016-01-22 15:40:57 -0500449 inode_lock(bd_inode);
Al Viro5d48f3a2013-06-23 21:34:45 +0400450 retval = fixed_size_llseek(file, offset, whence, i_size_read(bd_inode));
Al Viro59551022016-01-22 15:40:57 -0500451 inode_unlock(bd_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 return retval;
453}
454
Josef Bacik02c24a82011-07-16 20:44:56 -0400455int blkdev_fsync(struct file *filp, loff_t start, loff_t end, int datasync)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456{
Dan Williams4ebb16c2015-10-28 07:48:19 +0900457 struct inode *bd_inode = bdev_file_inode(filp);
Anton Blanchardb8af67e2010-04-23 13:18:06 -0400458 struct block_device *bdev = I_BDEV(bd_inode);
Christoph Hellwigab0a9732009-10-29 14:14:04 +0100459 int error;
Rafael J. Wysockida5aa862011-08-02 02:17:48 +0200460
461 error = filemap_write_and_wait_range(filp->f_mapping, start, end);
462 if (error)
463 return error;
Christoph Hellwigab0a9732009-10-29 14:14:04 +0100464
Anton Blanchardb8af67e2010-04-23 13:18:06 -0400465 /*
466 * There is no need to serialise calls to blkdev_issue_flush with
467 * i_mutex and doing so causes performance issues with concurrent
468 * O_SYNC writers to a block device.
469 */
Christoph Hellwigdd3932e2010-09-16 20:51:46 +0200470 error = blkdev_issue_flush(bdev, GFP_KERNEL, NULL);
Christoph Hellwigab0a9732009-10-29 14:14:04 +0100471 if (error == -EOPNOTSUPP)
472 error = 0;
Anton Blanchardb8af67e2010-04-23 13:18:06 -0400473
Christoph Hellwigab0a9732009-10-29 14:14:04 +0100474 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475}
Andrew Mortonb1dd3b22010-04-06 14:35:00 -0700476EXPORT_SYMBOL(blkdev_fsync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
Matthew Wilcox47a191f2014-06-04 16:07:46 -0700478/**
479 * bdev_read_page() - Start reading a page from a block device
480 * @bdev: The device to read the page from
481 * @sector: The offset on the device to read the page to (need not be aligned)
482 * @page: The page to read
483 *
484 * On entry, the page should be locked. It will be unlocked when the page
485 * has been read. If the block driver implements rw_page synchronously,
486 * that will be true on exit from this function, but it need not be.
487 *
488 * Errors returned by this function are usually "soft", eg out of memory, or
489 * queue full; callers should try a different route to read this page rather
490 * than propagate an error back up the stack.
491 *
492 * Return: negative errno if an error occurs, 0 if submission was successful.
493 */
494int bdev_read_page(struct block_device *bdev, sector_t sector,
495 struct page *page)
496{
497 const struct block_device_operations *ops = bdev->bd_disk->fops;
Dan Williams2e6edc952015-11-19 13:29:28 -0800498 int result = -EOPNOTSUPP;
499
Vishal Vermaf68eb1e2015-05-12 13:48:53 -0400500 if (!ops->rw_page || bdev_get_integrity(bdev))
Dan Williams2e6edc952015-11-19 13:29:28 -0800501 return result;
502
Christoph Hellwig6f3b0e82015-11-26 09:13:05 +0100503 result = blk_queue_enter(bdev->bd_queue, false);
Dan Williams2e6edc952015-11-19 13:29:28 -0800504 if (result)
505 return result;
Jens Axboec11f0c02016-08-05 08:11:04 -0600506 result = ops->rw_page(bdev, sector + get_start_sect(bdev), page, false);
Dan Williams2e6edc952015-11-19 13:29:28 -0800507 blk_queue_exit(bdev->bd_queue);
508 return result;
Matthew Wilcox47a191f2014-06-04 16:07:46 -0700509}
510EXPORT_SYMBOL_GPL(bdev_read_page);
511
512/**
513 * bdev_write_page() - Start writing a page to a block device
514 * @bdev: The device to write the page to
515 * @sector: The offset on the device to write the page to (need not be aligned)
516 * @page: The page to write
517 * @wbc: The writeback_control for the write
518 *
519 * On entry, the page should be locked and not currently under writeback.
520 * On exit, if the write started successfully, the page will be unlocked and
521 * under writeback. If the write failed already (eg the driver failed to
522 * queue the page to the device), the page will still be locked. If the
523 * caller is a ->writepage implementation, it will need to unlock the page.
524 *
525 * Errors returned by this function are usually "soft", eg out of memory, or
526 * queue full; callers should try a different route to write this page rather
527 * than propagate an error back up the stack.
528 *
529 * Return: negative errno if an error occurs, 0 if submission was successful.
530 */
531int bdev_write_page(struct block_device *bdev, sector_t sector,
532 struct page *page, struct writeback_control *wbc)
533{
534 int result;
Matthew Wilcox47a191f2014-06-04 16:07:46 -0700535 const struct block_device_operations *ops = bdev->bd_disk->fops;
Dan Williams2e6edc952015-11-19 13:29:28 -0800536
Vishal Vermaf68eb1e2015-05-12 13:48:53 -0400537 if (!ops->rw_page || bdev_get_integrity(bdev))
Matthew Wilcox47a191f2014-06-04 16:07:46 -0700538 return -EOPNOTSUPP;
Christoph Hellwig6f3b0e82015-11-26 09:13:05 +0100539 result = blk_queue_enter(bdev->bd_queue, false);
Dan Williams2e6edc952015-11-19 13:29:28 -0800540 if (result)
541 return result;
542
Matthew Wilcox47a191f2014-06-04 16:07:46 -0700543 set_page_writeback(page);
Jens Axboec11f0c02016-08-05 08:11:04 -0600544 result = ops->rw_page(bdev, sector + get_start_sect(bdev), page, true);
Matthew Wilcox47a191f2014-06-04 16:07:46 -0700545 if (result)
546 end_page_writeback(page);
547 else
548 unlock_page(page);
Dan Williams2e6edc952015-11-19 13:29:28 -0800549 blk_queue_exit(bdev->bd_queue);
Matthew Wilcox47a191f2014-06-04 16:07:46 -0700550 return result;
551}
552EXPORT_SYMBOL_GPL(bdev_write_page);
553
Matthew Wilcoxdd22f552015-01-07 18:05:34 +0200554/**
555 * bdev_direct_access() - Get the address for directly-accessibly memory
556 * @bdev: The device containing the memory
Dan Williamsb2e0d162016-01-15 16:55:59 -0800557 * @dax: control and output parameters for ->direct_access
Matthew Wilcoxdd22f552015-01-07 18:05:34 +0200558 *
559 * If a block device is made up of directly addressable memory, this function
560 * will tell the caller the PFN and the address of the memory. The address
561 * may be directly dereferenced within the kernel without the need to call
562 * ioremap(), kmap() or similar. The PFN is suitable for inserting into
563 * page tables.
564 *
565 * Return: negative errno if an error occurs, otherwise the number of bytes
566 * accessible at this address.
567 */
Dan Williamsb2e0d162016-01-15 16:55:59 -0800568long bdev_direct_access(struct block_device *bdev, struct blk_dax_ctl *dax)
Matthew Wilcoxdd22f552015-01-07 18:05:34 +0200569{
Dan Williamsb2e0d162016-01-15 16:55:59 -0800570 sector_t sector = dax->sector;
571 long avail, size = dax->size;
Matthew Wilcoxdd22f552015-01-07 18:05:34 +0200572 const struct block_device_operations *ops = bdev->bd_disk->fops;
573
Matthew Wilcox43c3dd02015-07-03 10:40:43 -0400574 /*
575 * The device driver is allowed to sleep, in order to make the
576 * memory directly accessible.
577 */
578 might_sleep();
579
Matthew Wilcoxdd22f552015-01-07 18:05:34 +0200580 if (size < 0)
581 return size;
Toshi Kani163d4ba2016-06-23 17:05:50 -0400582 if (!blk_queue_dax(bdev_get_queue(bdev)) || !ops->direct_access)
Matthew Wilcoxdd22f552015-01-07 18:05:34 +0200583 return -EOPNOTSUPP;
584 if ((sector + DIV_ROUND_UP(size, 512)) >
585 part_nr_sects_read(bdev->bd_part))
586 return -ERANGE;
587 sector += get_start_sect(bdev);
588 if (sector % (PAGE_SIZE / 512))
589 return -EINVAL;
Dan Williams0a70bd42016-02-24 14:02:11 -0800590 avail = ops->direct_access(bdev, sector, &dax->addr, &dax->pfn, size);
Matthew Wilcoxdd22f552015-01-07 18:05:34 +0200591 if (!avail)
592 return -ERANGE;
Dan Williamsfe683ad2016-01-15 16:55:56 -0800593 if (avail > 0 && avail & ~PAGE_MASK)
594 return -ENXIO;
Matthew Wilcoxdd22f552015-01-07 18:05:34 +0200595 return min(avail, size);
596}
597EXPORT_SYMBOL_GPL(bdev_direct_access);
598
Toshi Kani2d96afc2016-05-10 10:23:53 -0600599/**
600 * bdev_dax_supported() - Check if the device supports dax for filesystem
601 * @sb: The superblock of the device
602 * @blocksize: The block size of the device
603 *
604 * This is a library function for filesystems to check if the block device
605 * can be mounted with dax option.
606 *
607 * Return: negative errno if unsupported, 0 if supported.
608 */
609int bdev_dax_supported(struct super_block *sb, int blocksize)
610{
611 struct blk_dax_ctl dax = {
612 .sector = 0,
613 .size = PAGE_SIZE,
614 };
615 int err;
616
617 if (blocksize != PAGE_SIZE) {
618 vfs_msg(sb, KERN_ERR, "error: unsupported blocksize for dax");
619 return -EINVAL;
620 }
621
622 err = bdev_direct_access(sb->s_bdev, &dax);
623 if (err < 0) {
624 switch (err) {
625 case -EOPNOTSUPP:
626 vfs_msg(sb, KERN_ERR,
627 "error: device does not support dax");
628 break;
629 case -EINVAL:
630 vfs_msg(sb, KERN_ERR,
631 "error: unaligned partition for dax");
632 break;
633 default:
634 vfs_msg(sb, KERN_ERR,
635 "error: dax access failed (%d)", err);
636 }
637 return err;
638 }
639
640 return 0;
641}
642EXPORT_SYMBOL_GPL(bdev_dax_supported);
643
Toshi Kania8078b12016-05-10 10:23:57 -0600644/**
645 * bdev_dax_capable() - Return if the raw device is capable for dax
646 * @bdev: The device for raw block device access
647 */
648bool bdev_dax_capable(struct block_device *bdev)
649{
Toshi Kania8078b12016-05-10 10:23:57 -0600650 struct blk_dax_ctl dax = {
651 .size = PAGE_SIZE,
652 };
653
654 if (!IS_ENABLED(CONFIG_FS_DAX))
655 return false;
656
657 dax.sector = 0;
658 if (bdev_direct_access(bdev, &dax) < 0)
659 return false;
660
661 dax.sector = bdev->bd_part->nr_sects - (PAGE_SIZE / 512);
662 if (bdev_direct_access(bdev, &dax) < 0)
663 return false;
664
Toshi Kania8078b12016-05-10 10:23:57 -0600665 return true;
666}
667
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668/*
669 * pseudo-fs
670 */
671
672static __cacheline_aligned_in_smp DEFINE_SPINLOCK(bdev_lock);
Christoph Lametere18b8902006-12-06 20:33:20 -0800673static struct kmem_cache * bdev_cachep __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674
675static struct inode *bdev_alloc_inode(struct super_block *sb)
676{
Christoph Lametere94b1762006-12-06 20:33:17 -0800677 struct bdev_inode *ei = kmem_cache_alloc(bdev_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 if (!ei)
679 return NULL;
680 return &ei->vfs_inode;
681}
682
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100683static void bdev_i_callback(struct rcu_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684{
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100685 struct inode *inode = container_of(head, struct inode, i_rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 struct bdev_inode *bdi = BDEV_I(inode);
687
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 kmem_cache_free(bdev_cachep, bdi);
689}
690
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100691static void bdev_destroy_inode(struct inode *inode)
692{
693 call_rcu(&inode->i_rcu, bdev_i_callback);
694}
695
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700696static void init_once(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697{
698 struct bdev_inode *ei = (struct bdev_inode *) foo;
699 struct block_device *bdev = &ei->bdev;
700
Christoph Lametera35afb82007-05-16 22:10:57 -0700701 memset(bdev, 0, sizeof(*bdev));
702 mutex_init(&bdev->bd_mutex);
Christoph Lametera35afb82007-05-16 22:10:57 -0700703 INIT_LIST_HEAD(&bdev->bd_list);
Tejun Heo49731ba2011-01-14 18:43:57 +0100704#ifdef CONFIG_SYSFS
705 INIT_LIST_HEAD(&bdev->bd_holder_disks);
706#endif
Christoph Lametera35afb82007-05-16 22:10:57 -0700707 inode_init_once(&ei->vfs_inode);
Takashi Satofcccf502009-01-09 16:40:59 -0800708 /* Initialize mutex for freeze. */
709 mutex_init(&bdev->bd_fsfreeze_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710}
711
Al Virob57922d2010-06-07 14:34:48 -0400712static void bdev_evict_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713{
714 struct block_device *bdev = &BDEV_I(inode)->bdev;
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700715 truncate_inode_pages_final(&inode->i_data);
Al Virob57922d2010-06-07 14:34:48 -0400716 invalidate_inode_buffers(inode); /* is it needed here? */
Jan Karadbd57682012-05-03 14:48:02 +0200717 clear_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 spin_lock(&bdev_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 list_del_init(&bdev->bd_list);
720 spin_unlock(&bdev_lock);
721}
722
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800723static const struct super_operations bdev_sops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 .statfs = simple_statfs,
725 .alloc_inode = bdev_alloc_inode,
726 .destroy_inode = bdev_destroy_inode,
727 .drop_inode = generic_delete_inode,
Al Virob57922d2010-06-07 14:34:48 -0400728 .evict_inode = bdev_evict_inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729};
730
Al Viro51139ad2010-07-25 23:47:46 +0400731static struct dentry *bd_mount(struct file_system_type *fs_type,
732 int flags, const char *dev_name, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733{
Shaohua Li3684aa72016-02-22 15:27:40 -0700734 struct dentry *dent;
735 dent = mount_pseudo(fs_type, "bdev:", &bdev_sops, NULL, BDEVFS_MAGIC);
Vegard Nossume9e5e3f2016-08-22 12:47:43 +0200736 if (!IS_ERR(dent))
Shaohua Li3684aa72016-02-22 15:27:40 -0700737 dent->d_sb->s_iflags |= SB_I_CGROUPWB;
738 return dent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739}
740
741static struct file_system_type bd_type = {
742 .name = "bdev",
Al Viro51139ad2010-07-25 23:47:46 +0400743 .mount = bd_mount,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 .kill_sb = kill_anon_super,
745};
746
Tejun Heoa212b102015-05-22 17:13:33 -0400747struct super_block *blockdev_superblock __read_mostly;
748EXPORT_SYMBOL_GPL(blockdev_superblock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749
750void __init bdev_cache_init(void)
751{
752 int err;
Sergey Senozhatskyace85772012-01-10 02:43:59 +0300753 static struct vfsmount *bd_mnt;
Denis ChengRqc2acf7b2008-12-01 14:34:56 -0800754
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 bdev_cachep = kmem_cache_create("bdev_cache", sizeof(struct bdev_inode),
Paul Jacksonfffb60f2006-03-24 03:16:06 -0800756 0, (SLAB_HWCACHE_ALIGN|SLAB_RECLAIM_ACCOUNT|
Vladimir Davydov5d097052016-01-14 15:18:21 -0800757 SLAB_MEM_SPREAD|SLAB_ACCOUNT|SLAB_PANIC),
Paul Mundt20c2df82007-07-20 10:11:58 +0900758 init_once);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 err = register_filesystem(&bd_type);
760 if (err)
761 panic("Cannot register bdev pseudo-fs");
762 bd_mnt = kern_mount(&bd_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 if (IS_ERR(bd_mnt))
764 panic("Cannot create bdev pseudo-fs");
Sergey Senozhatskyace85772012-01-10 02:43:59 +0300765 blockdev_superblock = bd_mnt->mnt_sb; /* For writeback */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766}
767
768/*
769 * Most likely _very_ bad one - but then it's hardly critical for small
770 * /dev and can be fixed when somebody will need really large one.
771 * Keep in mind that it will be fed through icache hash function too.
772 */
773static inline unsigned long hash(dev_t dev)
774{
775 return MAJOR(dev)+MINOR(dev);
776}
777
778static int bdev_test(struct inode *inode, void *data)
779{
780 return BDEV_I(inode)->bdev.bd_dev == *(dev_t *)data;
781}
782
783static int bdev_set(struct inode *inode, void *data)
784{
785 BDEV_I(inode)->bdev.bd_dev = *(dev_t *)data;
786 return 0;
787}
788
789static LIST_HEAD(all_bdevs);
790
791struct block_device *bdget(dev_t dev)
792{
793 struct block_device *bdev;
794 struct inode *inode;
795
Denis ChengRqc2acf7b2008-12-01 14:34:56 -0800796 inode = iget5_locked(blockdev_superblock, hash(dev),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 bdev_test, bdev_set, &dev);
798
799 if (!inode)
800 return NULL;
801
802 bdev = &BDEV_I(inode)->bdev;
803
804 if (inode->i_state & I_NEW) {
805 bdev->bd_contains = NULL;
Lachlan McIlroy782b94c2011-06-30 11:01:45 +1000806 bdev->bd_super = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 bdev->bd_inode = inode;
808 bdev->bd_block_size = (1 << inode->i_blkbits);
809 bdev->bd_part_count = 0;
810 bdev->bd_invalidated = 0;
811 inode->i_mode = S_IFBLK;
812 inode->i_rdev = dev;
813 inode->i_bdev = bdev;
814 inode->i_data.a_ops = &def_blk_aops;
815 mapping_set_gfp_mask(&inode->i_data, GFP_USER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 spin_lock(&bdev_lock);
817 list_add(&bdev->bd_list, &all_bdevs);
818 spin_unlock(&bdev_lock);
819 unlock_new_inode(inode);
820 }
821 return bdev;
822}
823
824EXPORT_SYMBOL(bdget);
825
Alan Jenkinsdddac6a2009-07-29 21:07:55 +0200826/**
827 * bdgrab -- Grab a reference to an already referenced block device
828 * @bdev: Block device to grab a reference to.
829 */
830struct block_device *bdgrab(struct block_device *bdev)
831{
Al Viro7de9c6ee2010-10-23 11:11:40 -0400832 ihold(bdev->bd_inode);
Alan Jenkinsdddac6a2009-07-29 21:07:55 +0200833 return bdev;
834}
Anatol Pomozovc1681bf2013-04-01 09:47:56 -0700835EXPORT_SYMBOL(bdgrab);
Alan Jenkinsdddac6a2009-07-29 21:07:55 +0200836
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837long nr_blockdev_pages(void)
838{
Matthias Kaehlcke203a2932007-07-15 23:40:23 -0700839 struct block_device *bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 long ret = 0;
841 spin_lock(&bdev_lock);
Matthias Kaehlcke203a2932007-07-15 23:40:23 -0700842 list_for_each_entry(bdev, &all_bdevs, bd_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 ret += bdev->bd_inode->i_mapping->nrpages;
844 }
845 spin_unlock(&bdev_lock);
846 return ret;
847}
848
849void bdput(struct block_device *bdev)
850{
851 iput(bdev->bd_inode);
852}
853
854EXPORT_SYMBOL(bdput);
855
856static struct block_device *bd_acquire(struct inode *inode)
857{
858 struct block_device *bdev;
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700859
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 spin_lock(&bdev_lock);
861 bdev = inode->i_bdev;
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700862 if (bdev) {
Ilya Dryomoved8a9d2c2015-11-20 22:18:43 +0100863 bdgrab(bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 spin_unlock(&bdev_lock);
865 return bdev;
866 }
867 spin_unlock(&bdev_lock);
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700868
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 bdev = bdget(inode->i_rdev);
870 if (bdev) {
871 spin_lock(&bdev_lock);
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700872 if (!inode->i_bdev) {
873 /*
Al Viro7de9c6ee2010-10-23 11:11:40 -0400874 * We take an additional reference to bd_inode,
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700875 * and it's released in clear_inode() of inode.
876 * So, we can access it via ->i_mapping always
877 * without igrab().
878 */
Ilya Dryomoved8a9d2c2015-11-20 22:18:43 +0100879 bdgrab(bdev);
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700880 inode->i_bdev = bdev;
881 inode->i_mapping = bdev->bd_inode->i_mapping;
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700882 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 spin_unlock(&bdev_lock);
884 }
885 return bdev;
886}
887
888/* Call when you free inode */
889
890void bd_forget(struct inode *inode)
891{
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700892 struct block_device *bdev = NULL;
893
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 spin_lock(&bdev_lock);
Yan Hongb4ea2ea2013-04-30 15:26:47 -0700895 if (!sb_is_blkdev_sb(inode->i_sb))
896 bdev = inode->i_bdev;
Al Viroa4a4f942016-07-19 13:16:52 -0400897 inode->i_bdev = NULL;
898 inode->i_mapping = &inode->i_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 spin_unlock(&bdev_lock);
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700900
901 if (bdev)
Ilya Dryomoved8a9d2c2015-11-20 22:18:43 +0100902 bdput(bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903}
904
Tejun Heo1a3cbbc2010-04-07 18:52:29 +0900905/**
906 * bd_may_claim - test whether a block device can be claimed
907 * @bdev: block device of interest
908 * @whole: whole block device containing @bdev, may equal @bdev
909 * @holder: holder trying to claim @bdev
910 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300911 * Test whether @bdev can be claimed by @holder.
Tejun Heo1a3cbbc2010-04-07 18:52:29 +0900912 *
913 * CONTEXT:
914 * spin_lock(&bdev_lock).
915 *
916 * RETURNS:
917 * %true if @bdev can be claimed, %false otherwise.
918 */
919static bool bd_may_claim(struct block_device *bdev, struct block_device *whole,
920 void *holder)
921{
922 if (bdev->bd_holder == holder)
923 return true; /* already a holder */
924 else if (bdev->bd_holder != NULL)
925 return false; /* held by someone else */
926 else if (bdev->bd_contains == bdev)
927 return true; /* is a whole device which isn't held */
928
Tejun Heoe525fd82010-11-13 11:55:17 +0100929 else if (whole->bd_holder == bd_may_claim)
Tejun Heo1a3cbbc2010-04-07 18:52:29 +0900930 return true; /* is a partition of a device that is being partitioned */
931 else if (whole->bd_holder != NULL)
932 return false; /* is a partition of a held device */
933 else
934 return true; /* is a partition of an un-held device */
935}
936
937/**
Tejun Heo6b4517a2010-04-07 18:53:59 +0900938 * bd_prepare_to_claim - prepare to claim a block device
939 * @bdev: block device of interest
940 * @whole: the whole device containing @bdev, may equal @bdev
941 * @holder: holder trying to claim @bdev
942 *
943 * Prepare to claim @bdev. This function fails if @bdev is already
944 * claimed by another holder and waits if another claiming is in
945 * progress. This function doesn't actually claim. On successful
946 * return, the caller has ownership of bd_claiming and bd_holder[s].
947 *
948 * CONTEXT:
949 * spin_lock(&bdev_lock). Might release bdev_lock, sleep and regrab
950 * it multiple times.
951 *
952 * RETURNS:
953 * 0 if @bdev can be claimed, -EBUSY otherwise.
954 */
955static int bd_prepare_to_claim(struct block_device *bdev,
956 struct block_device *whole, void *holder)
957{
958retry:
959 /* if someone else claimed, fail */
960 if (!bd_may_claim(bdev, whole, holder))
961 return -EBUSY;
962
Tejun Heoe75aa852010-08-04 17:59:39 +0200963 /* if claiming is already in progress, wait for it to finish */
964 if (whole->bd_claiming) {
Tejun Heo6b4517a2010-04-07 18:53:59 +0900965 wait_queue_head_t *wq = bit_waitqueue(&whole->bd_claiming, 0);
966 DEFINE_WAIT(wait);
967
968 prepare_to_wait(wq, &wait, TASK_UNINTERRUPTIBLE);
969 spin_unlock(&bdev_lock);
970 schedule();
971 finish_wait(wq, &wait);
972 spin_lock(&bdev_lock);
973 goto retry;
974 }
975
976 /* yay, all mine */
977 return 0;
978}
979
980/**
981 * bd_start_claiming - start claiming a block device
982 * @bdev: block device of interest
983 * @holder: holder trying to claim @bdev
984 *
985 * @bdev is about to be opened exclusively. Check @bdev can be opened
986 * exclusively and mark that an exclusive open is in progress. Each
987 * successful call to this function must be matched with a call to
Nick Pigginb0018362010-05-26 01:51:19 +1000988 * either bd_finish_claiming() or bd_abort_claiming() (which do not
989 * fail).
990 *
991 * This function is used to gain exclusive access to the block device
992 * without actually causing other exclusive open attempts to fail. It
993 * should be used when the open sequence itself requires exclusive
994 * access but may subsequently fail.
Tejun Heo6b4517a2010-04-07 18:53:59 +0900995 *
996 * CONTEXT:
997 * Might sleep.
998 *
999 * RETURNS:
1000 * Pointer to the block device containing @bdev on success, ERR_PTR()
1001 * value on failure.
1002 */
1003static struct block_device *bd_start_claiming(struct block_device *bdev,
1004 void *holder)
1005{
1006 struct gendisk *disk;
1007 struct block_device *whole;
1008 int partno, err;
1009
1010 might_sleep();
1011
1012 /*
1013 * @bdev might not have been initialized properly yet, look up
1014 * and grab the outer block device the hard way.
1015 */
1016 disk = get_gendisk(bdev->bd_dev, &partno);
1017 if (!disk)
1018 return ERR_PTR(-ENXIO);
1019
Tejun Heod4c208b2011-06-13 12:45:48 +02001020 /*
1021 * Normally, @bdev should equal what's returned from bdget_disk()
1022 * if partno is 0; however, some drivers (floppy) use multiple
1023 * bdev's for the same physical device and @bdev may be one of the
1024 * aliases. Keep @bdev if partno is 0. This means claimer
1025 * tracking is broken for those devices but it has always been that
1026 * way.
1027 */
1028 if (partno)
1029 whole = bdget_disk(disk, 0);
1030 else
1031 whole = bdgrab(bdev);
1032
Nick Piggincf342572010-05-26 01:50:21 +10001033 module_put(disk->fops->owner);
Tejun Heo6b4517a2010-04-07 18:53:59 +09001034 put_disk(disk);
1035 if (!whole)
1036 return ERR_PTR(-ENOMEM);
1037
1038 /* prepare to claim, if successful, mark claiming in progress */
1039 spin_lock(&bdev_lock);
1040
1041 err = bd_prepare_to_claim(bdev, whole, holder);
1042 if (err == 0) {
1043 whole->bd_claiming = holder;
1044 spin_unlock(&bdev_lock);
1045 return whole;
1046 } else {
1047 spin_unlock(&bdev_lock);
1048 bdput(whole);
1049 return ERR_PTR(err);
1050 }
1051}
1052
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001053#ifdef CONFIG_SYSFS
Tejun Heo49731ba2011-01-14 18:43:57 +01001054struct bd_holder_disk {
1055 struct list_head list;
1056 struct gendisk *disk;
1057 int refcnt;
1058};
1059
1060static struct bd_holder_disk *bd_find_holder_disk(struct block_device *bdev,
1061 struct gendisk *disk)
1062{
1063 struct bd_holder_disk *holder;
1064
1065 list_for_each_entry(holder, &bdev->bd_holder_disks, list)
1066 if (holder->disk == disk)
1067 return holder;
1068 return NULL;
1069}
1070
Andrew Morton4d7dd8fd2006-09-29 01:58:56 -07001071static int add_symlink(struct kobject *from, struct kobject *to)
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001072{
Andrew Morton4d7dd8fd2006-09-29 01:58:56 -07001073 return sysfs_create_link(from, to, kobject_name(to));
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001074}
1075
1076static void del_symlink(struct kobject *from, struct kobject *to)
1077{
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001078 sysfs_remove_link(from, kobject_name(to));
1079}
1080
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001081/**
Tejun Heoe09b4572010-11-13 11:55:17 +01001082 * bd_link_disk_holder - create symlinks between holding disk and slave bdev
1083 * @bdev: the claimed slave bdev
1084 * @disk: the holding disk
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -05001085 *
Tejun Heo49731ba2011-01-14 18:43:57 +01001086 * DON'T USE THIS UNLESS YOU'RE ALREADY USING IT.
1087 *
Tejun Heoe09b4572010-11-13 11:55:17 +01001088 * This functions creates the following sysfs symlinks.
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -05001089 *
Tejun Heoe09b4572010-11-13 11:55:17 +01001090 * - from "slaves" directory of the holder @disk to the claimed @bdev
1091 * - from "holders" directory of the @bdev to the holder @disk
1092 *
1093 * For example, if /dev/dm-0 maps to /dev/sda and disk for dm-0 is
1094 * passed to bd_link_disk_holder(), then:
1095 *
1096 * /sys/block/dm-0/slaves/sda --> /sys/block/sda
1097 * /sys/block/sda/holders/dm-0 --> /sys/block/dm-0
1098 *
1099 * The caller must have claimed @bdev before calling this function and
1100 * ensure that both @bdev and @disk are valid during the creation and
1101 * lifetime of these symlinks.
1102 *
1103 * CONTEXT:
1104 * Might sleep.
1105 *
1106 * RETURNS:
1107 * 0 on success, -errno on failure.
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -05001108 */
Tejun Heoe09b4572010-11-13 11:55:17 +01001109int bd_link_disk_holder(struct block_device *bdev, struct gendisk *disk)
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -05001110{
Tejun Heo49731ba2011-01-14 18:43:57 +01001111 struct bd_holder_disk *holder;
Tejun Heoe09b4572010-11-13 11:55:17 +01001112 int ret = 0;
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001113
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001114 mutex_lock(&bdev->bd_mutex);
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -05001115
Tejun Heo49731ba2011-01-14 18:43:57 +01001116 WARN_ON_ONCE(!bdev->bd_holder);
Johannes Weiner4e916722007-07-15 23:41:25 -07001117
Tejun Heoe09b4572010-11-13 11:55:17 +01001118 /* FIXME: remove the following once add_disk() handles errors */
1119 if (WARN_ON(!disk->slave_dir || !bdev->bd_part->holder_dir))
1120 goto out_unlock;
Johannes Weiner4e916722007-07-15 23:41:25 -07001121
Tejun Heo49731ba2011-01-14 18:43:57 +01001122 holder = bd_find_holder_disk(bdev, disk);
1123 if (holder) {
1124 holder->refcnt++;
Tejun Heoe09b4572010-11-13 11:55:17 +01001125 goto out_unlock;
1126 }
1127
Tejun Heo49731ba2011-01-14 18:43:57 +01001128 holder = kzalloc(sizeof(*holder), GFP_KERNEL);
1129 if (!holder) {
1130 ret = -ENOMEM;
1131 goto out_unlock;
1132 }
1133
1134 INIT_LIST_HEAD(&holder->list);
1135 holder->disk = disk;
1136 holder->refcnt = 1;
1137
1138 ret = add_symlink(disk->slave_dir, &part_to_dev(bdev->bd_part)->kobj);
1139 if (ret)
1140 goto out_free;
1141
1142 ret = add_symlink(bdev->bd_part->holder_dir, &disk_to_dev(disk)->kobj);
1143 if (ret)
1144 goto out_del;
Tejun Heoe7407d12011-02-24 09:56:32 +01001145 /*
1146 * bdev could be deleted beneath us which would implicitly destroy
1147 * the holder directory. Hold on to it.
1148 */
1149 kobject_get(bdev->bd_part->holder_dir);
Tejun Heo49731ba2011-01-14 18:43:57 +01001150
1151 list_add(&holder->list, &bdev->bd_holder_disks);
1152 goto out_unlock;
1153
1154out_del:
1155 del_symlink(disk->slave_dir, &part_to_dev(bdev->bd_part)->kobj);
1156out_free:
1157 kfree(holder);
Tejun Heoe09b4572010-11-13 11:55:17 +01001158out_unlock:
Jun'ichi Nomurab4cf1b72006-03-27 01:18:00 -08001159 mutex_unlock(&bdev->bd_mutex);
Tejun Heoe09b4572010-11-13 11:55:17 +01001160 return ret;
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001161}
Tejun Heoe09b4572010-11-13 11:55:17 +01001162EXPORT_SYMBOL_GPL(bd_link_disk_holder);
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001163
Tejun Heo49731ba2011-01-14 18:43:57 +01001164/**
1165 * bd_unlink_disk_holder - destroy symlinks created by bd_link_disk_holder()
1166 * @bdev: the calimed slave bdev
1167 * @disk: the holding disk
1168 *
1169 * DON'T USE THIS UNLESS YOU'RE ALREADY USING IT.
1170 *
1171 * CONTEXT:
1172 * Might sleep.
1173 */
1174void bd_unlink_disk_holder(struct block_device *bdev, struct gendisk *disk)
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001175{
Tejun Heo49731ba2011-01-14 18:43:57 +01001176 struct bd_holder_disk *holder;
Tejun Heoe09b4572010-11-13 11:55:17 +01001177
Tejun Heo49731ba2011-01-14 18:43:57 +01001178 mutex_lock(&bdev->bd_mutex);
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001179
Tejun Heo49731ba2011-01-14 18:43:57 +01001180 holder = bd_find_holder_disk(bdev, disk);
1181
1182 if (!WARN_ON_ONCE(holder == NULL) && !--holder->refcnt) {
1183 del_symlink(disk->slave_dir, &part_to_dev(bdev->bd_part)->kobj);
1184 del_symlink(bdev->bd_part->holder_dir,
1185 &disk_to_dev(disk)->kobj);
Tejun Heoe7407d12011-02-24 09:56:32 +01001186 kobject_put(bdev->bd_part->holder_dir);
Tejun Heo49731ba2011-01-14 18:43:57 +01001187 list_del_init(&holder->list);
1188 kfree(holder);
1189 }
1190
1191 mutex_unlock(&bdev->bd_mutex);
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001192}
Tejun Heo49731ba2011-01-14 18:43:57 +01001193EXPORT_SYMBOL_GPL(bd_unlink_disk_holder);
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001194#endif
1195
Andrew Patterson0c002c22008-09-04 14:27:20 -06001196/**
Andrew Patterson56ade442008-09-04 14:27:40 -06001197 * flush_disk - invalidates all buffer-cache entries on a disk
1198 *
1199 * @bdev: struct block device to be flushed
Randy Dunlape6eb5ce2011-02-26 10:54:00 -08001200 * @kill_dirty: flag to guide handling of dirty inodes
Andrew Patterson56ade442008-09-04 14:27:40 -06001201 *
1202 * Invalidates all buffer-cache entries on a disk. It should be called
1203 * when a disk has been changed -- either by a media change or online
1204 * resize.
1205 */
NeilBrown93b270f2011-02-24 17:25:47 +11001206static void flush_disk(struct block_device *bdev, bool kill_dirty)
Andrew Patterson56ade442008-09-04 14:27:40 -06001207{
NeilBrown93b270f2011-02-24 17:25:47 +11001208 if (__invalidate_device(bdev, kill_dirty)) {
Andrew Patterson56ade442008-09-04 14:27:40 -06001209 printk(KERN_WARNING "VFS: busy inodes on changed media or "
Dmitry Monakhov424081f2015-04-13 16:31:34 +04001210 "resized disk %s\n",
1211 bdev->bd_disk ? bdev->bd_disk->disk_name : "");
Andrew Patterson56ade442008-09-04 14:27:40 -06001212 }
1213
1214 if (!bdev->bd_disk)
1215 return;
Tejun Heod27769e2011-08-23 20:01:04 +02001216 if (disk_part_scan_enabled(bdev->bd_disk))
Andrew Patterson56ade442008-09-04 14:27:40 -06001217 bdev->bd_invalidated = 1;
1218}
1219
1220/**
Randy Dunlap57d1b532008-10-09 10:42:38 +02001221 * check_disk_size_change - checks for disk size change and adjusts bdev size.
Andrew Pattersonc3279d12008-09-04 14:27:25 -06001222 * @disk: struct gendisk to check
1223 * @bdev: struct bdev to adjust.
1224 *
1225 * This routine checks to see if the bdev size does not match the disk size
1226 * and adjusts it if it differs.
1227 */
1228void check_disk_size_change(struct gendisk *disk, struct block_device *bdev)
1229{
1230 loff_t disk_size, bdev_size;
1231
1232 disk_size = (loff_t)get_capacity(disk) << 9;
1233 bdev_size = i_size_read(bdev->bd_inode);
1234 if (disk_size != bdev_size) {
Andrew Pattersonc3279d12008-09-04 14:27:25 -06001235 printk(KERN_INFO
1236 "%s: detected capacity change from %lld to %lld\n",
Dmitry Monakhov424081f2015-04-13 16:31:34 +04001237 disk->disk_name, bdev_size, disk_size);
Andrew Pattersonc3279d12008-09-04 14:27:25 -06001238 i_size_write(bdev->bd_inode, disk_size);
NeilBrown93b270f2011-02-24 17:25:47 +11001239 flush_disk(bdev, false);
Andrew Pattersonc3279d12008-09-04 14:27:25 -06001240 }
1241}
1242EXPORT_SYMBOL(check_disk_size_change);
1243
1244/**
Randy Dunlap57d1b532008-10-09 10:42:38 +02001245 * revalidate_disk - wrapper for lower-level driver's revalidate_disk call-back
Andrew Patterson0c002c22008-09-04 14:27:20 -06001246 * @disk: struct gendisk to be revalidated
1247 *
1248 * This routine is a wrapper for lower-level driver's revalidate_disk
1249 * call-backs. It is used to do common pre and post operations needed
1250 * for all revalidate_disk operations.
1251 */
1252int revalidate_disk(struct gendisk *disk)
1253{
Andrew Pattersonc3279d12008-09-04 14:27:25 -06001254 struct block_device *bdev;
Andrew Patterson0c002c22008-09-04 14:27:20 -06001255 int ret = 0;
1256
1257 if (disk->fops->revalidate_disk)
1258 ret = disk->fops->revalidate_disk(disk);
Martin K. Petersen25520d52015-10-21 13:19:49 -04001259 blk_integrity_revalidate(disk);
Andrew Pattersonc3279d12008-09-04 14:27:25 -06001260 bdev = bdget_disk(disk, 0);
1261 if (!bdev)
1262 return ret;
1263
1264 mutex_lock(&bdev->bd_mutex);
1265 check_disk_size_change(disk, bdev);
MITSUNARI Shigeo7630b662013-02-21 16:42:01 -08001266 bdev->bd_invalidated = 0;
Andrew Pattersonc3279d12008-09-04 14:27:25 -06001267 mutex_unlock(&bdev->bd_mutex);
1268 bdput(bdev);
Andrew Patterson0c002c22008-09-04 14:27:20 -06001269 return ret;
1270}
1271EXPORT_SYMBOL(revalidate_disk);
1272
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273/*
1274 * This routine checks whether a removable media has been changed,
1275 * and invalidates all buffer-cache-entries in that case. This
1276 * is a relatively slow routine, so we have to try to minimize using
1277 * it. Thus it is called only upon a 'mount' or 'open'. This
1278 * is the best way of combining speed and utility, I think.
1279 * People changing diskettes in the middle of an operation deserve
1280 * to lose :-)
1281 */
1282int check_disk_change(struct block_device *bdev)
1283{
1284 struct gendisk *disk = bdev->bd_disk;
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -07001285 const struct block_device_operations *bdops = disk->fops;
Tejun Heo77ea8872010-12-08 20:57:37 +01001286 unsigned int events;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287
Tejun Heo77ea8872010-12-08 20:57:37 +01001288 events = disk_clear_events(disk, DISK_EVENT_MEDIA_CHANGE |
1289 DISK_EVENT_EJECT_REQUEST);
1290 if (!(events & DISK_EVENT_MEDIA_CHANGE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 return 0;
1292
NeilBrown93b270f2011-02-24 17:25:47 +11001293 flush_disk(bdev, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 if (bdops->revalidate_disk)
1295 bdops->revalidate_disk(bdev->bd_disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 return 1;
1297}
1298
1299EXPORT_SYMBOL(check_disk_change);
1300
1301void bd_set_size(struct block_device *bdev, loff_t size)
1302{
Martin K. Petersene1defc42009-05-22 17:17:49 -04001303 unsigned bsize = bdev_logical_block_size(bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304
Al Viro59551022016-01-22 15:40:57 -05001305 inode_lock(bdev->bd_inode);
Guo Chaod646a022013-02-21 15:16:42 -08001306 i_size_write(bdev->bd_inode, size);
Al Viro59551022016-01-22 15:40:57 -05001307 inode_unlock(bdev->bd_inode);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001308 while (bsize < PAGE_SIZE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 if (size & bsize)
1310 break;
1311 bsize <<= 1;
1312 }
1313 bdev->bd_block_size = bsize;
1314 bdev->bd_inode->i_blkbits = blksize_bits(bsize);
1315}
1316EXPORT_SYMBOL(bd_set_size);
1317
Al Viro4385bab2013-05-05 22:11:03 -04001318static void __blkdev_put(struct block_device *bdev, fmode_t mode, int for_part);
NeilBrown37be4122006-12-08 02:36:16 -08001319
Peter Zijlstra6d740cd2007-02-20 13:58:18 -08001320/*
1321 * bd_mutex locking:
1322 *
1323 * mutex_lock(part->bd_mutex)
1324 * mutex_lock_nested(whole->bd_mutex, 1)
1325 */
1326
Al Viro572c4892007-10-08 13:24:05 -04001327static int __blkdev_get(struct block_device *bdev, fmode_t mode, int for_part)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 struct gendisk *disk;
Tejun Heo523e1d32011-10-19 14:31:07 +02001330 struct module *owner;
Pavel Emelyanov7db9cfd2008-06-05 22:46:27 -07001331 int ret;
Tejun Heocf771cb2008-09-03 09:01:09 +02001332 int partno;
Al Virofe6e9c12008-06-23 08:30:55 -04001333 int perm = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334
Al Viro572c4892007-10-08 13:24:05 -04001335 if (mode & FMODE_READ)
Al Virofe6e9c12008-06-23 08:30:55 -04001336 perm |= MAY_READ;
Al Viro572c4892007-10-08 13:24:05 -04001337 if (mode & FMODE_WRITE)
Al Virofe6e9c12008-06-23 08:30:55 -04001338 perm |= MAY_WRITE;
1339 /*
1340 * hooks: /n/, see "layering violations".
1341 */
Chris Wrightb7300b72010-08-10 18:02:55 -07001342 if (!for_part) {
1343 ret = devcgroup_inode_permission(bdev->bd_inode, perm);
1344 if (ret != 0) {
1345 bdput(bdev);
1346 return ret;
1347 }
Al Viro82666022008-08-01 05:32:04 -04001348 }
Pavel Emelyanov7db9cfd2008-06-05 22:46:27 -07001349
NeilBrownd3374822009-01-09 08:31:10 +11001350 restart:
Tejun Heo0762b8b2008-08-25 19:56:12 +09001351
Tejun Heo89f97492008-11-05 10:21:06 +01001352 ret = -ENXIO;
Tejun Heocf771cb2008-09-03 09:01:09 +02001353 disk = get_gendisk(bdev->bd_dev, &partno);
Tejun Heo0762b8b2008-08-25 19:56:12 +09001354 if (!disk)
Arnd Bergmann6e9624b2010-08-07 18:25:34 +02001355 goto out;
Tejun Heo523e1d32011-10-19 14:31:07 +02001356 owner = disk->fops->owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357
Tejun Heo69e02c52011-03-09 19:54:27 +01001358 disk_block_events(disk);
NeilBrown6796bf52006-12-08 02:36:16 -08001359 mutex_lock_nested(&bdev->bd_mutex, for_part);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 if (!bdev->bd_openers) {
1361 bdev->bd_disk = disk;
Andi Kleen87192a22012-01-12 17:20:34 -08001362 bdev->bd_queue = disk->queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 bdev->bd_contains = bdev;
Dan Williams03cdadb2016-02-26 15:19:43 -08001364
Tejun Heocf771cb2008-09-03 09:01:09 +02001365 if (!partno) {
Tejun Heo89f97492008-11-05 10:21:06 +01001366 ret = -ENXIO;
1367 bdev->bd_part = disk_get_part(disk, partno);
1368 if (!bdev->bd_part)
1369 goto out_clear;
1370
Tejun Heo1196f8b2011-04-21 20:54:45 +02001371 ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 if (disk->fops->open) {
Al Viro572c4892007-10-08 13:24:05 -04001373 ret = disk->fops->open(bdev, mode);
NeilBrownd3374822009-01-09 08:31:10 +11001374 if (ret == -ERESTARTSYS) {
1375 /* Lost a race with 'disk' being
1376 * deleted, try again.
1377 * See md.c
1378 */
1379 disk_put_part(bdev->bd_part);
1380 bdev->bd_part = NULL;
NeilBrownd3374822009-01-09 08:31:10 +11001381 bdev->bd_disk = NULL;
Andi Kleen87192a22012-01-12 17:20:34 -08001382 bdev->bd_queue = NULL;
NeilBrownd3374822009-01-09 08:31:10 +11001383 mutex_unlock(&bdev->bd_mutex);
Tejun Heo69e02c52011-03-09 19:54:27 +01001384 disk_unblock_events(disk);
Tejun Heo69e02c52011-03-09 19:54:27 +01001385 put_disk(disk);
Tejun Heo523e1d32011-10-19 14:31:07 +02001386 module_put(owner);
NeilBrownd3374822009-01-09 08:31:10 +11001387 goto restart;
1388 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 }
Tejun Heo7e697232011-05-23 13:26:07 +02001390
Christoph Hellwig22375702016-09-14 11:56:13 +02001391 if (!ret)
Tejun Heo7e697232011-05-23 13:26:07 +02001392 bd_set_size(bdev,(loff_t)get_capacity(disk)<<9);
Tejun Heo7e697232011-05-23 13:26:07 +02001393
Tejun Heo1196f8b2011-04-21 20:54:45 +02001394 /*
1395 * If the device is invalidated, rescan partition
1396 * if open succeeded or failed with -ENOMEDIUM.
1397 * The latter is necessary to prevent ghost
1398 * partitions on a removed medium.
1399 */
Jun'ichi Nomurafe316bf2012-03-02 10:38:33 +01001400 if (bdev->bd_invalidated) {
1401 if (!ret)
1402 rescan_partitions(disk, bdev);
1403 else if (ret == -ENOMEDIUM)
1404 invalidate_partitions(disk, bdev);
1405 }
Dan Williams5a023cd2015-11-30 10:20:29 -08001406
Tejun Heo1196f8b2011-04-21 20:54:45 +02001407 if (ret)
1408 goto out_clear;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 struct block_device *whole;
1411 whole = bdget_disk(disk, 0);
1412 ret = -ENOMEM;
1413 if (!whole)
Tejun Heo0762b8b2008-08-25 19:56:12 +09001414 goto out_clear;
NeilBrown37be4122006-12-08 02:36:16 -08001415 BUG_ON(for_part);
Al Viro572c4892007-10-08 13:24:05 -04001416 ret = __blkdev_get(whole, mode, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 if (ret)
Tejun Heo0762b8b2008-08-25 19:56:12 +09001418 goto out_clear;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 bdev->bd_contains = whole;
Tejun Heo89f97492008-11-05 10:21:06 +01001420 bdev->bd_part = disk_get_part(disk, partno);
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001421 if (!(disk->flags & GENHD_FL_UP) ||
Tejun Heo89f97492008-11-05 10:21:06 +01001422 !bdev->bd_part || !bdev->bd_part->nr_sects) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 ret = -ENXIO;
Tejun Heo0762b8b2008-08-25 19:56:12 +09001424 goto out_clear;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 }
Tejun Heo89f97492008-11-05 10:21:06 +01001426 bd_set_size(bdev, (loff_t)bdev->bd_part->nr_sects << 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 }
1428 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 if (bdev->bd_contains == bdev) {
Tejun Heo1196f8b2011-04-21 20:54:45 +02001430 ret = 0;
1431 if (bdev->bd_disk->fops->open)
Al Viro572c4892007-10-08 13:24:05 -04001432 ret = bdev->bd_disk->fops->open(bdev, mode);
Tejun Heo1196f8b2011-04-21 20:54:45 +02001433 /* the same as first opener case, read comment there */
Jun'ichi Nomurafe316bf2012-03-02 10:38:33 +01001434 if (bdev->bd_invalidated) {
1435 if (!ret)
1436 rescan_partitions(bdev->bd_disk, bdev);
1437 else if (ret == -ENOMEDIUM)
1438 invalidate_partitions(bdev->bd_disk, bdev);
1439 }
Tejun Heo1196f8b2011-04-21 20:54:45 +02001440 if (ret)
1441 goto out_unlock_bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 }
Tejun Heo69e02c52011-03-09 19:54:27 +01001443 /* only one opener holds refs to the module and disk */
Tejun Heo69e02c52011-03-09 19:54:27 +01001444 put_disk(disk);
Tejun Heo523e1d32011-10-19 14:31:07 +02001445 module_put(owner);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 }
1447 bdev->bd_openers++;
NeilBrown37be4122006-12-08 02:36:16 -08001448 if (for_part)
1449 bdev->bd_part_count++;
Arjan van de Venc039e312006-03-23 03:00:28 -08001450 mutex_unlock(&bdev->bd_mutex);
Tejun Heo69e02c52011-03-09 19:54:27 +01001451 disk_unblock_events(disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 return 0;
1453
Tejun Heo0762b8b2008-08-25 19:56:12 +09001454 out_clear:
Tejun Heo89f97492008-11-05 10:21:06 +01001455 disk_put_part(bdev->bd_part);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 bdev->bd_disk = NULL;
Tejun Heo0762b8b2008-08-25 19:56:12 +09001457 bdev->bd_part = NULL;
Andi Kleen87192a22012-01-12 17:20:34 -08001458 bdev->bd_queue = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 if (bdev != bdev->bd_contains)
Al Viro572c4892007-10-08 13:24:05 -04001460 __blkdev_put(bdev->bd_contains, mode, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 bdev->bd_contains = NULL;
Tejun Heo0762b8b2008-08-25 19:56:12 +09001462 out_unlock_bdev:
Arjan van de Venc039e312006-03-23 03:00:28 -08001463 mutex_unlock(&bdev->bd_mutex);
Tejun Heo69e02c52011-03-09 19:54:27 +01001464 disk_unblock_events(disk);
Tejun Heo0762b8b2008-08-25 19:56:12 +09001465 put_disk(disk);
Tejun Heo523e1d32011-10-19 14:31:07 +02001466 module_put(owner);
Dan Carpenter4345cab2011-03-19 13:53:31 +01001467 out:
Tejun Heo0762b8b2008-08-25 19:56:12 +09001468 bdput(bdev);
1469
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 return ret;
1471}
1472
Tejun Heod4d77622010-11-13 11:55:18 +01001473/**
1474 * blkdev_get - open a block device
1475 * @bdev: block_device to open
1476 * @mode: FMODE_* mask
1477 * @holder: exclusive holder identifier
1478 *
1479 * Open @bdev with @mode. If @mode includes %FMODE_EXCL, @bdev is
1480 * open with exclusive access. Specifying %FMODE_EXCL with %NULL
1481 * @holder is invalid. Exclusive opens may nest for the same @holder.
1482 *
1483 * On success, the reference count of @bdev is unchanged. On failure,
1484 * @bdev is put.
1485 *
1486 * CONTEXT:
1487 * Might sleep.
1488 *
1489 * RETURNS:
1490 * 0 on success, -errno on failure.
1491 */
Tejun Heoe525fd82010-11-13 11:55:17 +01001492int blkdev_get(struct block_device *bdev, fmode_t mode, void *holder)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493{
Tejun Heoe525fd82010-11-13 11:55:17 +01001494 struct block_device *whole = NULL;
1495 int res;
1496
1497 WARN_ON_ONCE((mode & FMODE_EXCL) && !holder);
1498
1499 if ((mode & FMODE_EXCL) && holder) {
1500 whole = bd_start_claiming(bdev, holder);
1501 if (IS_ERR(whole)) {
1502 bdput(bdev);
1503 return PTR_ERR(whole);
1504 }
1505 }
1506
1507 res = __blkdev_get(bdev, mode, 0);
1508
1509 if (whole) {
Tejun Heod4dc2102011-04-21 20:54:46 +02001510 struct gendisk *disk = whole->bd_disk;
1511
Tejun Heo6a027ef2010-11-13 11:55:17 +01001512 /* finish claiming */
Tejun Heo77ea8872010-12-08 20:57:37 +01001513 mutex_lock(&bdev->bd_mutex);
Tejun Heo6a027ef2010-11-13 11:55:17 +01001514 spin_lock(&bdev_lock);
1515
Tejun Heo77ea8872010-12-08 20:57:37 +01001516 if (!res) {
Tejun Heo6a027ef2010-11-13 11:55:17 +01001517 BUG_ON(!bd_may_claim(bdev, whole, holder));
1518 /*
1519 * Note that for a whole device bd_holders
1520 * will be incremented twice, and bd_holder
1521 * will be set to bd_may_claim before being
1522 * set to holder
1523 */
1524 whole->bd_holders++;
1525 whole->bd_holder = bd_may_claim;
1526 bdev->bd_holders++;
1527 bdev->bd_holder = holder;
1528 }
1529
1530 /* tell others that we're done */
1531 BUG_ON(whole->bd_claiming != holder);
1532 whole->bd_claiming = NULL;
1533 wake_up_bit(&whole->bd_claiming, 0);
1534
1535 spin_unlock(&bdev_lock);
Tejun Heo77ea8872010-12-08 20:57:37 +01001536
1537 /*
Tejun Heod4dc2102011-04-21 20:54:46 +02001538 * Block event polling for write claims if requested. Any
1539 * write holder makes the write_holder state stick until
1540 * all are released. This is good enough and tracking
1541 * individual writeable reference is too fragile given the
1542 * way @mode is used in blkdev_get/put().
Tejun Heo77ea8872010-12-08 20:57:37 +01001543 */
Tejun Heo4c49ff32011-06-01 08:27:41 +02001544 if (!res && (mode & FMODE_WRITE) && !bdev->bd_write_holder &&
1545 (disk->flags & GENHD_FL_BLOCK_EVENTS_ON_EXCL_WRITE)) {
Tejun Heo77ea8872010-12-08 20:57:37 +01001546 bdev->bd_write_holder = true;
Tejun Heod4dc2102011-04-21 20:54:46 +02001547 disk_block_events(disk);
Tejun Heo77ea8872010-12-08 20:57:37 +01001548 }
1549
1550 mutex_unlock(&bdev->bd_mutex);
Tejun Heo6a027ef2010-11-13 11:55:17 +01001551 bdput(whole);
Tejun Heoe525fd82010-11-13 11:55:17 +01001552 }
1553
1554 return res;
NeilBrown37be4122006-12-08 02:36:16 -08001555}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556EXPORT_SYMBOL(blkdev_get);
1557
Tejun Heod4d77622010-11-13 11:55:18 +01001558/**
1559 * blkdev_get_by_path - open a block device by name
1560 * @path: path to the block device to open
1561 * @mode: FMODE_* mask
1562 * @holder: exclusive holder identifier
1563 *
1564 * Open the blockdevice described by the device file at @path. @mode
1565 * and @holder are identical to blkdev_get().
1566 *
1567 * On success, the returned block_device has reference count of one.
1568 *
1569 * CONTEXT:
1570 * Might sleep.
1571 *
1572 * RETURNS:
1573 * Pointer to block_device on success, ERR_PTR(-errno) on failure.
1574 */
1575struct block_device *blkdev_get_by_path(const char *path, fmode_t mode,
1576 void *holder)
1577{
1578 struct block_device *bdev;
1579 int err;
1580
1581 bdev = lookup_bdev(path);
1582 if (IS_ERR(bdev))
1583 return bdev;
1584
1585 err = blkdev_get(bdev, mode, holder);
1586 if (err)
1587 return ERR_PTR(err);
1588
Chuck Ebberte51900f2011-02-16 18:11:53 -05001589 if ((mode & FMODE_WRITE) && bdev_read_only(bdev)) {
1590 blkdev_put(bdev, mode);
1591 return ERR_PTR(-EACCES);
1592 }
1593
Tejun Heod4d77622010-11-13 11:55:18 +01001594 return bdev;
1595}
1596EXPORT_SYMBOL(blkdev_get_by_path);
1597
1598/**
1599 * blkdev_get_by_dev - open a block device by device number
1600 * @dev: device number of block device to open
1601 * @mode: FMODE_* mask
1602 * @holder: exclusive holder identifier
1603 *
1604 * Open the blockdevice described by device number @dev. @mode and
1605 * @holder are identical to blkdev_get().
1606 *
1607 * Use it ONLY if you really do not have anything better - i.e. when
1608 * you are behind a truly sucky interface and all you are given is a
1609 * device number. _Never_ to be used for internal purposes. If you
1610 * ever need it - reconsider your API.
1611 *
1612 * On success, the returned block_device has reference count of one.
1613 *
1614 * CONTEXT:
1615 * Might sleep.
1616 *
1617 * RETURNS:
1618 * Pointer to block_device on success, ERR_PTR(-errno) on failure.
1619 */
1620struct block_device *blkdev_get_by_dev(dev_t dev, fmode_t mode, void *holder)
1621{
1622 struct block_device *bdev;
1623 int err;
1624
1625 bdev = bdget(dev);
1626 if (!bdev)
1627 return ERR_PTR(-ENOMEM);
1628
1629 err = blkdev_get(bdev, mode, holder);
1630 if (err)
1631 return ERR_PTR(err);
1632
1633 return bdev;
1634}
1635EXPORT_SYMBOL(blkdev_get_by_dev);
1636
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637static int blkdev_open(struct inode * inode, struct file * filp)
1638{
1639 struct block_device *bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640
1641 /*
1642 * Preserve backwards compatibility and allow large file access
1643 * even if userspace doesn't ask for it explicitly. Some mkfs
1644 * binary needs it. We might want to drop this workaround
1645 * during an unstable branch.
1646 */
1647 filp->f_flags |= O_LARGEFILE;
1648
Al Viro572c4892007-10-08 13:24:05 -04001649 if (filp->f_flags & O_NDELAY)
1650 filp->f_mode |= FMODE_NDELAY;
1651 if (filp->f_flags & O_EXCL)
1652 filp->f_mode |= FMODE_EXCL;
1653 if ((filp->f_flags & O_ACCMODE) == 3)
1654 filp->f_mode |= FMODE_WRITE_IOCTL;
1655
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 bdev = bd_acquire(inode);
Pavel Emelianov6a2aae02006-10-28 10:38:33 -07001657 if (bdev == NULL)
1658 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659
Al Viro572c4892007-10-08 13:24:05 -04001660 filp->f_mapping = bdev->bd_inode->i_mapping;
1661
Tejun Heoe525fd82010-11-13 11:55:17 +01001662 return blkdev_get(bdev, filp->f_mode, filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663}
1664
Al Viro4385bab2013-05-05 22:11:03 -04001665static void __blkdev_put(struct block_device *bdev, fmode_t mode, int for_part)
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001666{
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001667 struct gendisk *disk = bdev->bd_disk;
NeilBrown37be4122006-12-08 02:36:16 -08001668 struct block_device *victim = NULL;
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001669
NeilBrown6796bf52006-12-08 02:36:16 -08001670 mutex_lock_nested(&bdev->bd_mutex, for_part);
NeilBrown37be4122006-12-08 02:36:16 -08001671 if (for_part)
1672 bdev->bd_part_count--;
1673
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001674 if (!--bdev->bd_openers) {
Tejun Heo6a027ef2010-11-13 11:55:17 +01001675 WARN_ON_ONCE(bdev->bd_holders);
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001676 sync_blockdev(bdev);
1677 kill_bdev(bdev);
Ilya Dryomov43d1c0e2015-11-20 22:22:34 +01001678
Vivek Goyaldbd3ca52015-11-09 09:23:40 -07001679 bdev_write_inode(bdev);
Ilya Dryomov43d1c0e2015-11-20 22:22:34 +01001680 /*
1681 * Detaching bdev inode from its wb in __destroy_inode()
1682 * is too late: the queue which embeds its bdi (along with
1683 * root wb) can be gone as soon as we put_disk() below.
1684 */
1685 inode_detach_wb(bdev->bd_inode);
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001686 }
1687 if (bdev->bd_contains == bdev) {
1688 if (disk->fops->release)
Al Virodb2a1442013-05-05 21:52:57 -04001689 disk->fops->release(disk, mode);
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001690 }
1691 if (!bdev->bd_openers) {
1692 struct module *owner = disk->fops->owner;
1693
Tejun Heo0762b8b2008-08-25 19:56:12 +09001694 disk_put_part(bdev->bd_part);
1695 bdev->bd_part = NULL;
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001696 bdev->bd_disk = NULL;
NeilBrown37be4122006-12-08 02:36:16 -08001697 if (bdev != bdev->bd_contains)
1698 victim = bdev->bd_contains;
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001699 bdev->bd_contains = NULL;
Tejun Heo523e1d32011-10-19 14:31:07 +02001700
1701 put_disk(disk);
1702 module_put(owner);
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001703 }
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001704 mutex_unlock(&bdev->bd_mutex);
1705 bdput(bdev);
NeilBrown37be4122006-12-08 02:36:16 -08001706 if (victim)
Al Viro9a1c3542008-02-22 20:40:24 -05001707 __blkdev_put(victim, mode, 1);
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001708}
1709
Al Viro4385bab2013-05-05 22:11:03 -04001710void blkdev_put(struct block_device *bdev, fmode_t mode)
NeilBrown37be4122006-12-08 02:36:16 -08001711{
Tejun Heo85ef06d2011-07-01 16:17:47 +02001712 mutex_lock(&bdev->bd_mutex);
1713
Tejun Heoe525fd82010-11-13 11:55:17 +01001714 if (mode & FMODE_EXCL) {
Tejun Heo6a027ef2010-11-13 11:55:17 +01001715 bool bdev_free;
1716
1717 /*
1718 * Release a claim on the device. The holder fields
1719 * are protected with bdev_lock. bd_mutex is to
1720 * synchronize disk_holder unlinking.
1721 */
Tejun Heo6a027ef2010-11-13 11:55:17 +01001722 spin_lock(&bdev_lock);
1723
1724 WARN_ON_ONCE(--bdev->bd_holders < 0);
1725 WARN_ON_ONCE(--bdev->bd_contains->bd_holders < 0);
1726
1727 /* bd_contains might point to self, check in a separate step */
1728 if ((bdev_free = !bdev->bd_holders))
1729 bdev->bd_holder = NULL;
1730 if (!bdev->bd_contains->bd_holders)
1731 bdev->bd_contains->bd_holder = NULL;
1732
1733 spin_unlock(&bdev_lock);
1734
Tejun Heo77ea8872010-12-08 20:57:37 +01001735 /*
1736 * If this was the last claim, remove holder link and
1737 * unblock evpoll if it was a write holder.
1738 */
Tejun Heo85ef06d2011-07-01 16:17:47 +02001739 if (bdev_free && bdev->bd_write_holder) {
1740 disk_unblock_events(bdev->bd_disk);
1741 bdev->bd_write_holder = false;
Tejun Heo77ea8872010-12-08 20:57:37 +01001742 }
Tejun Heo69362172011-03-09 19:54:27 +01001743 }
Tejun Heo77ea8872010-12-08 20:57:37 +01001744
Tejun Heo85ef06d2011-07-01 16:17:47 +02001745 /*
1746 * Trigger event checking and tell drivers to flush MEDIA_CHANGE
1747 * event. This is to ensure detection of media removal commanded
1748 * from userland - e.g. eject(1).
1749 */
1750 disk_flush_events(bdev->bd_disk, DISK_EVENT_MEDIA_CHANGE);
1751
1752 mutex_unlock(&bdev->bd_mutex);
1753
Al Viro4385bab2013-05-05 22:11:03 -04001754 __blkdev_put(bdev, mode, 0);
NeilBrown37be4122006-12-08 02:36:16 -08001755}
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001756EXPORT_SYMBOL(blkdev_put);
1757
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758static int blkdev_close(struct inode * inode, struct file * filp)
1759{
Dan Williams4ebb16c2015-10-28 07:48:19 +09001760 struct block_device *bdev = I_BDEV(bdev_file_inode(filp));
Al Viro4385bab2013-05-05 22:11:03 -04001761 blkdev_put(bdev, filp->f_mode);
1762 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763}
1764
Arnd Bergmannbb93e3a2005-06-23 00:10:15 -07001765static long block_ioctl(struct file *file, unsigned cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766{
Dan Williams4ebb16c2015-10-28 07:48:19 +09001767 struct block_device *bdev = I_BDEV(bdev_file_inode(file));
Al Viro56b26ad2008-09-19 03:17:36 -04001768 fmode_t mode = file->f_mode;
Christoph Hellwigfd4ce1a2008-11-05 14:58:42 +01001769
1770 /*
1771 * O_NDELAY can be altered using fcntl(.., F_SETFL, ..), so we have
1772 * to updated it before every ioctl.
1773 */
Al Viro56b26ad2008-09-19 03:17:36 -04001774 if (file->f_flags & O_NDELAY)
Christoph Hellwigfd4ce1a2008-11-05 14:58:42 +01001775 mode |= FMODE_NDELAY;
1776 else
1777 mode &= ~FMODE_NDELAY;
1778
Al Viro56b26ad2008-09-19 03:17:36 -04001779 return blkdev_ioctl(bdev, mode, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780}
1781
Theodore Ts'o87d8fe12009-01-03 09:47:09 -05001782/*
Christoph Hellwigeef99382009-08-20 17:43:41 +02001783 * Write data to the block device. Only intended for the block device itself
1784 * and the raw driver which basically is a fake block device.
1785 *
1786 * Does not take i_mutex for the write and thus is not for general purpose
1787 * use.
1788 */
Al Viro1456c0a2014-04-03 03:21:50 -04001789ssize_t blkdev_write_iter(struct kiocb *iocb, struct iov_iter *from)
Christoph Hellwigeef99382009-08-20 17:43:41 +02001790{
1791 struct file *file = iocb->ki_filp;
Dan Williams4ebb16c2015-10-28 07:48:19 +09001792 struct inode *bd_inode = bdev_file_inode(file);
Al Viro7ec7b942015-04-07 11:35:14 -04001793 loff_t size = i_size_read(bd_inode);
Jianpeng Ma53362a02012-08-02 09:50:39 +02001794 struct blk_plug plug;
Christoph Hellwigeef99382009-08-20 17:43:41 +02001795 ssize_t ret;
Al Viro5f380c72015-04-07 11:28:12 -04001796
Al Viro7ec7b942015-04-07 11:35:14 -04001797 if (bdev_read_only(I_BDEV(bd_inode)))
1798 return -EPERM;
Al Viro5f380c72015-04-07 11:28:12 -04001799
Al Viro7ec7b942015-04-07 11:35:14 -04001800 if (!iov_iter_count(from))
Al Viro5f380c72015-04-07 11:28:12 -04001801 return 0;
1802
Al Viro7ec7b942015-04-07 11:35:14 -04001803 if (iocb->ki_pos >= size)
1804 return -ENOSPC;
1805
1806 iov_iter_truncate(from, size - iocb->ki_pos);
Christoph Hellwigeef99382009-08-20 17:43:41 +02001807
Jianpeng Ma53362a02012-08-02 09:50:39 +02001808 blk_start_plug(&plug);
Al Viro1456c0a2014-04-03 03:21:50 -04001809 ret = __generic_file_write_iter(iocb, from);
Christoph Hellwige2592212016-04-07 08:52:01 -07001810 if (ret > 0)
1811 ret = generic_write_sync(iocb, ret);
Jianpeng Ma53362a02012-08-02 09:50:39 +02001812 blk_finish_plug(&plug);
Christoph Hellwigeef99382009-08-20 17:43:41 +02001813 return ret;
1814}
Al Viro1456c0a2014-04-03 03:21:50 -04001815EXPORT_SYMBOL_GPL(blkdev_write_iter);
Christoph Hellwigeef99382009-08-20 17:43:41 +02001816
David Jefferyb2de5252014-09-29 10:21:10 -04001817ssize_t blkdev_read_iter(struct kiocb *iocb, struct iov_iter *to)
Linus Torvalds684c9aa2012-12-07 16:48:39 -08001818{
1819 struct file *file = iocb->ki_filp;
Dan Williams4ebb16c2015-10-28 07:48:19 +09001820 struct inode *bd_inode = bdev_file_inode(file);
Linus Torvalds684c9aa2012-12-07 16:48:39 -08001821 loff_t size = i_size_read(bd_inode);
Al Viroa8860382014-04-02 20:02:21 -04001822 loff_t pos = iocb->ki_pos;
Linus Torvalds684c9aa2012-12-07 16:48:39 -08001823
1824 if (pos >= size)
1825 return 0;
1826
1827 size -= pos;
Al Viroa8860382014-04-02 20:02:21 -04001828 iov_iter_truncate(to, size);
1829 return generic_file_read_iter(iocb, to);
Linus Torvalds684c9aa2012-12-07 16:48:39 -08001830}
David Jefferyb2de5252014-09-29 10:21:10 -04001831EXPORT_SYMBOL_GPL(blkdev_read_iter);
Linus Torvalds684c9aa2012-12-07 16:48:39 -08001832
Christoph Hellwigeef99382009-08-20 17:43:41 +02001833/*
Theodore Ts'o87d8fe12009-01-03 09:47:09 -05001834 * Try to release a page associated with block device when the system
1835 * is under memory pressure.
1836 */
1837static int blkdev_releasepage(struct page *page, gfp_t wait)
1838{
1839 struct super_block *super = BDEV_I(page->mapping->host)->bdev.bd_super;
1840
1841 if (super && super->s_op->bdev_try_to_free_page)
1842 return super->s_op->bdev_try_to_free_page(super, page, wait);
1843
1844 return try_to_free_buffers(page);
1845}
1846
Ross Zwisler7f6d5b52016-02-26 15:19:55 -08001847static int blkdev_writepages(struct address_space *mapping,
1848 struct writeback_control *wbc)
1849{
1850 if (dax_mapping(mapping)) {
1851 struct block_device *bdev = I_BDEV(mapping->host);
1852
1853 return dax_writeback_mapping_range(mapping, bdev, wbc);
1854 }
1855 return generic_writepages(mapping, wbc);
1856}
1857
Adrian Bunk4c54ac62008-02-18 13:48:31 +01001858static const struct address_space_operations def_blk_aops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859 .readpage = blkdev_readpage,
Akinobu Mita447f05b2014-10-09 15:26:58 -07001860 .readpages = blkdev_readpages,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 .writepage = blkdev_writepage,
Nick Piggin6272b5a2007-10-16 01:25:04 -07001862 .write_begin = blkdev_write_begin,
1863 .write_end = blkdev_write_end,
Ross Zwisler7f6d5b52016-02-26 15:19:55 -08001864 .writepages = blkdev_writepages,
Theodore Ts'o87d8fe12009-01-03 09:47:09 -05001865 .releasepage = blkdev_releasepage,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 .direct_IO = blkdev_direct_IO,
Mel Gormanb4597222013-07-03 15:02:05 -07001867 .is_dirty_writeback = buffer_check_dirty_writeback,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868};
1869
Darrick J. Wong25f4c412016-10-11 13:51:11 -07001870#define BLKDEV_FALLOC_FL_SUPPORTED \
1871 (FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE | \
1872 FALLOC_FL_ZERO_RANGE | FALLOC_FL_NO_HIDE_STALE)
1873
1874static long blkdev_fallocate(struct file *file, int mode, loff_t start,
1875 loff_t len)
1876{
1877 struct block_device *bdev = I_BDEV(bdev_file_inode(file));
1878 struct request_queue *q = bdev_get_queue(bdev);
1879 struct address_space *mapping;
1880 loff_t end = start + len - 1;
1881 loff_t isize;
1882 int error;
1883
1884 /* Fail if we don't recognize the flags. */
1885 if (mode & ~BLKDEV_FALLOC_FL_SUPPORTED)
1886 return -EOPNOTSUPP;
1887
1888 /* Don't go off the end of the device. */
1889 isize = i_size_read(bdev->bd_inode);
1890 if (start >= isize)
1891 return -EINVAL;
1892 if (end >= isize) {
1893 if (mode & FALLOC_FL_KEEP_SIZE) {
1894 len = isize - start;
1895 end = start + len - 1;
1896 } else
1897 return -EINVAL;
1898 }
1899
1900 /*
1901 * Don't allow IO that isn't aligned to logical block size.
1902 */
1903 if ((start | len) & (bdev_logical_block_size(bdev) - 1))
1904 return -EINVAL;
1905
1906 /* Invalidate the page cache, including dirty pages. */
1907 mapping = bdev->bd_inode->i_mapping;
1908 truncate_inode_pages_range(mapping, start, end);
1909
1910 switch (mode) {
1911 case FALLOC_FL_ZERO_RANGE:
1912 case FALLOC_FL_ZERO_RANGE | FALLOC_FL_KEEP_SIZE:
1913 error = blkdev_issue_zeroout(bdev, start >> 9, len >> 9,
1914 GFP_KERNEL, false);
1915 break;
1916 case FALLOC_FL_PUNCH_HOLE | FALLOC_FL_KEEP_SIZE:
1917 /* Only punch if the device can do zeroing discard. */
1918 if (!blk_queue_discard(q) || !q->limits.discard_zeroes_data)
1919 return -EOPNOTSUPP;
1920 error = blkdev_issue_discard(bdev, start >> 9, len >> 9,
1921 GFP_KERNEL, 0);
1922 break;
1923 case FALLOC_FL_PUNCH_HOLE | FALLOC_FL_KEEP_SIZE | FALLOC_FL_NO_HIDE_STALE:
1924 if (!blk_queue_discard(q))
1925 return -EOPNOTSUPP;
1926 error = blkdev_issue_discard(bdev, start >> 9, len >> 9,
1927 GFP_KERNEL, 0);
1928 break;
1929 default:
1930 return -EOPNOTSUPP;
1931 }
1932 if (error)
1933 return error;
1934
1935 /*
1936 * Invalidate again; if someone wandered in and dirtied a page,
1937 * the caller will be given -EBUSY. The third argument is
1938 * inclusive, so the rounding here is safe.
1939 */
1940 return invalidate_inode_pages2_range(mapping,
1941 start >> PAGE_SHIFT,
1942 end >> PAGE_SHIFT);
1943}
1944
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08001945const struct file_operations def_blk_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 .open = blkdev_open,
1947 .release = blkdev_close,
1948 .llseek = block_llseek,
Al Viroa8860382014-04-02 20:02:21 -04001949 .read_iter = blkdev_read_iter,
Al Viro1456c0a2014-04-03 03:21:50 -04001950 .write_iter = blkdev_write_iter,
Dan Williamsacc93d32016-05-07 11:40:28 -07001951 .mmap = generic_file_mmap,
Andrew Mortonb1dd3b22010-04-06 14:35:00 -07001952 .fsync = blkdev_fsync,
Arnd Bergmannbb93e3a2005-06-23 00:10:15 -07001953 .unlocked_ioctl = block_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954#ifdef CONFIG_COMPAT
1955 .compat_ioctl = compat_blkdev_ioctl,
1956#endif
Linus Torvalds1e8b3332012-11-29 10:49:50 -08001957 .splice_read = generic_file_splice_read,
Al Viro8d020762014-04-05 04:27:08 -04001958 .splice_write = iter_file_splice_write,
Darrick J. Wong25f4c412016-10-11 13:51:11 -07001959 .fallocate = blkdev_fallocate,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960};
1961
1962int ioctl_by_bdev(struct block_device *bdev, unsigned cmd, unsigned long arg)
1963{
1964 int res;
1965 mm_segment_t old_fs = get_fs();
1966 set_fs(KERNEL_DS);
Al Viro56b26ad2008-09-19 03:17:36 -04001967 res = blkdev_ioctl(bdev, 0, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968 set_fs(old_fs);
1969 return res;
1970}
1971
1972EXPORT_SYMBOL(ioctl_by_bdev);
1973
1974/**
1975 * lookup_bdev - lookup a struct block_device by name
Randy Dunlap94e29592009-01-06 14:41:15 -08001976 * @pathname: special file representing the block device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977 *
Randy Dunlap57d1b532008-10-09 10:42:38 +02001978 * Get a reference to the blockdevice at @pathname in the current
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979 * namespace if possible and return it. Return ERR_PTR(error)
1980 * otherwise.
1981 */
Al Viro421748e2008-08-02 01:04:36 -04001982struct block_device *lookup_bdev(const char *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983{
1984 struct block_device *bdev;
1985 struct inode *inode;
Al Viro421748e2008-08-02 01:04:36 -04001986 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987 int error;
1988
Al Viro421748e2008-08-02 01:04:36 -04001989 if (!pathname || !*pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990 return ERR_PTR(-EINVAL);
1991
Al Viro421748e2008-08-02 01:04:36 -04001992 error = kern_path(pathname, LOOKUP_FOLLOW, &path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993 if (error)
1994 return ERR_PTR(error);
1995
David Howellsbb6687342015-03-17 22:26:21 +00001996 inode = d_backing_inode(path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 error = -ENOTBLK;
1998 if (!S_ISBLK(inode->i_mode))
1999 goto fail;
2000 error = -EACCES;
Eric W. Biedermana2982cc2016-06-09 15:34:02 -05002001 if (!may_open_dev(&path))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 goto fail;
2003 error = -ENOMEM;
2004 bdev = bd_acquire(inode);
2005 if (!bdev)
2006 goto fail;
2007out:
Al Viro421748e2008-08-02 01:04:36 -04002008 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009 return bdev;
2010fail:
2011 bdev = ERR_PTR(error);
2012 goto out;
2013}
Al Virod5686b42008-08-01 05:00:11 -04002014EXPORT_SYMBOL(lookup_bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015
NeilBrown93b270f2011-02-24 17:25:47 +11002016int __invalidate_device(struct block_device *bdev, bool kill_dirty)
David Howellsb71e8a42006-08-29 19:06:11 +01002017{
2018 struct super_block *sb = get_super(bdev);
2019 int res = 0;
2020
2021 if (sb) {
2022 /*
2023 * no need to lock the super, get_super holds the
2024 * read mutex so the filesystem cannot go away
2025 * under us (->put_super runs with the write lock
2026 * hold).
2027 */
2028 shrink_dcache_sb(sb);
NeilBrown93b270f2011-02-24 17:25:47 +11002029 res = invalidate_inodes(sb, kill_dirty);
David Howellsb71e8a42006-08-29 19:06:11 +01002030 drop_super(sb);
2031 }
Peter Zijlstraf98393a2007-05-06 14:49:54 -07002032 invalidate_bdev(bdev);
David Howellsb71e8a42006-08-29 19:06:11 +01002033 return res;
2034}
2035EXPORT_SYMBOL(__invalidate_device);
Jan Kara5c0d6b62012-07-03 16:45:31 +02002036
2037void iterate_bdevs(void (*func)(struct block_device *, void *), void *arg)
2038{
2039 struct inode *inode, *old_inode = NULL;
2040
Dave Chinner74278da2015-03-04 12:37:22 -05002041 spin_lock(&blockdev_superblock->s_inode_list_lock);
Jan Kara5c0d6b62012-07-03 16:45:31 +02002042 list_for_each_entry(inode, &blockdev_superblock->s_inodes, i_sb_list) {
2043 struct address_space *mapping = inode->i_mapping;
2044
2045 spin_lock(&inode->i_lock);
2046 if (inode->i_state & (I_FREEING|I_WILL_FREE|I_NEW) ||
2047 mapping->nrpages == 0) {
2048 spin_unlock(&inode->i_lock);
2049 continue;
2050 }
2051 __iget(inode);
2052 spin_unlock(&inode->i_lock);
Dave Chinner74278da2015-03-04 12:37:22 -05002053 spin_unlock(&blockdev_superblock->s_inode_list_lock);
Jan Kara5c0d6b62012-07-03 16:45:31 +02002054 /*
2055 * We hold a reference to 'inode' so it couldn't have been
2056 * removed from s_inodes list while we dropped the
Dave Chinner74278da2015-03-04 12:37:22 -05002057 * s_inode_list_lock We cannot iput the inode now as we can
Jan Kara5c0d6b62012-07-03 16:45:31 +02002058 * be holding the last reference and we cannot iput it under
Dave Chinner74278da2015-03-04 12:37:22 -05002059 * s_inode_list_lock. So we keep the reference and iput it
Jan Kara5c0d6b62012-07-03 16:45:31 +02002060 * later.
2061 */
2062 iput(old_inode);
2063 old_inode = inode;
2064
2065 func(I_BDEV(inode), arg);
2066
Dave Chinner74278da2015-03-04 12:37:22 -05002067 spin_lock(&blockdev_superblock->s_inode_list_lock);
Jan Kara5c0d6b62012-07-03 16:45:31 +02002068 }
Dave Chinner74278da2015-03-04 12:37:22 -05002069 spin_unlock(&blockdev_superblock->s_inode_list_lock);
Jan Kara5c0d6b62012-07-03 16:45:31 +02002070 iput(old_inode);
2071}