]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - fs/block_dev.c
can: can_dropped_invalid_skb(): ensure an initialized headroom in outgoing CAN sk_buffs
[mirror_ubuntu-bionic-kernel.git] / fs / block_dev.c
CommitLineData
1da177e4
LT
1/*
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
1da177e4
LT
8#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>
7db9cfd3 14#include <linux/device_cgroup.h>
1da177e4
LT
15#include <linux/highmem.h>
16#include <linux/blkdev.h>
66114cad 17#include <linux/backing-dev.h>
1da177e4
LT
18#include <linux/module.h>
19#include <linux/blkpg.h>
b502bd11 20#include <linux/magic.h>
b0686260 21#include <linux/dax.h>
1da177e4 22#include <linux/buffer_head.h>
ff01bb48 23#include <linux/swap.h>
585d3bc0 24#include <linux/pagevec.h>
811d736f 25#include <linux/writeback.h>
1da177e4
LT
26#include <linux/mpage.h>
27#include <linux/mount.h>
28#include <linux/uio.h>
29#include <linux/namei.h>
1368c4f2 30#include <linux/log2.h>
ff01bb48 31#include <linux/cleancache.h>
c94c2acf 32#include <linux/dax.h>
acc93d30 33#include <linux/badblocks.h>
189ce2b9 34#include <linux/task_io_accounting_ops.h>
25f4c414 35#include <linux/falloc.h>
7c0f6ba6 36#include <linux/uaccess.h>
07f3f05c 37#include "internal.h"
1da177e4
LT
38
39struct bdev_inode {
40 struct block_device bdev;
41 struct inode vfs_inode;
42};
43
4c54ac62
AB
44static const struct address_space_operations def_blk_aops;
45
1da177e4
LT
46static inline struct bdev_inode *BDEV_I(struct inode *inode)
47{
48 return container_of(inode, struct bdev_inode, vfs_inode);
49}
50
ff5053f6 51struct block_device *I_BDEV(struct inode *inode)
1da177e4
LT
52{
53 return &BDEV_I(inode)->bdev;
54}
1da177e4
LT
55EXPORT_SYMBOL(I_BDEV);
56
dbd3ca50 57static void bdev_write_inode(struct block_device *bdev)
564f00f6 58{
dbd3ca50
VG
59 struct inode *inode = bdev->bd_inode;
60 int ret;
61
564f00f6
CH
62 spin_lock(&inode->i_lock);
63 while (inode->i_state & I_DIRTY) {
64 spin_unlock(&inode->i_lock);
dbd3ca50
VG
65 ret = write_inode_now(inode, true);
66 if (ret) {
67 char name[BDEVNAME_SIZE];
68 pr_warn_ratelimited("VFS: Dirty inode writeback failed "
69 "for block device %s (err=%d).\n",
70 bdevname(bdev, name), ret);
71 }
564f00f6
CH
72 spin_lock(&inode->i_lock);
73 }
74 spin_unlock(&inode->i_lock);
75}
76
f9a14399 77/* Kill _all_ buffers and pagecache , dirty or not.. */
ff01bb48 78void kill_bdev(struct block_device *bdev)
1da177e4 79{
ff01bb48
AV
80 struct address_space *mapping = bdev->bd_inode->i_mapping;
81
f9fe48be 82 if (mapping->nrpages == 0 && mapping->nrexceptional == 0)
f9a14399 83 return;
ff01bb48 84
f9a14399 85 invalidate_bh_lrus();
ff01bb48 86 truncate_inode_pages(mapping, 0);
1da177e4 87}
ff01bb48
AV
88EXPORT_SYMBOL(kill_bdev);
89
90/* Invalidate clean unused buffers and pagecache. */
91void invalidate_bdev(struct block_device *bdev)
92{
93 struct address_space *mapping = bdev->bd_inode->i_mapping;
94
a5f6a6a9
AR
95 if (mapping->nrpages) {
96 invalidate_bh_lrus();
97 lru_add_drain_all(); /* make sure all lru add caches are flushed */
98 invalidate_mapping_pages(mapping, 0, -1);
99 }
ff01bb48
AV
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 */
3167760f 103 cleancache_invalidate_inode(mapping);
ff01bb48
AV
104}
105EXPORT_SYMBOL(invalidate_bdev);
1da177e4 106
c30974a1
JK
107static void set_init_blocksize(struct block_device *bdev)
108{
109 unsigned bsize = bdev_logical_block_size(bdev);
110 loff_t size = i_size_read(bdev->bd_inode);
111
112 while (bsize < PAGE_SIZE) {
113 if (size & bsize)
114 break;
115 bsize <<= 1;
116 }
117 bdev->bd_block_size = bsize;
118 bdev->bd_inode->i_blkbits = blksize_bits(bsize);
119}
120
1da177e4
LT
121int set_blocksize(struct block_device *bdev, int size)
122{
123 /* Size must be a power of two, and between 512 and PAGE_SIZE */
1368c4f2 124 if (size > PAGE_SIZE || size < 512 || !is_power_of_2(size))
1da177e4
LT
125 return -EINVAL;
126
127 /* Size cannot be smaller than the size supported by the device */
e1defc4f 128 if (size < bdev_logical_block_size(bdev))
1da177e4
LT
129 return -EINVAL;
130
131 /* Don't change the size if it is same as current */
132 if (bdev->bd_block_size != size) {
133 sync_blockdev(bdev);
134 bdev->bd_block_size = size;
135 bdev->bd_inode->i_blkbits = blksize_bits(size);
136 kill_bdev(bdev);
137 }
138 return 0;
139}
140
141EXPORT_SYMBOL(set_blocksize);
142
143int sb_set_blocksize(struct super_block *sb, int size)
144{
1da177e4
LT
145 if (set_blocksize(sb->s_bdev, size))
146 return 0;
147 /* If we get here, we know size is power of two
148 * and it's value is between 512 and PAGE_SIZE */
149 sb->s_blocksize = size;
38885bd4 150 sb->s_blocksize_bits = blksize_bits(size);
1da177e4
LT
151 return sb->s_blocksize;
152}
153
154EXPORT_SYMBOL(sb_set_blocksize);
155
156int sb_min_blocksize(struct super_block *sb, int size)
157{
e1defc4f 158 int minsize = bdev_logical_block_size(sb->s_bdev);
1da177e4
LT
159 if (size < minsize)
160 size = minsize;
161 return sb_set_blocksize(sb, size);
162}
163
164EXPORT_SYMBOL(sb_min_blocksize);
165
166static int
167blkdev_get_block(struct inode *inode, sector_t iblock,
168 struct buffer_head *bh, int create)
169{
1da177e4
LT
170 bh->b_bdev = I_BDEV(inode);
171 bh->b_blocknr = iblock;
172 set_buffer_mapped(bh);
173 return 0;
174}
175
4ebb16ca
DW
176static struct inode *bdev_file_inode(struct file *file)
177{
178 return file->f_mapping->host;
179}
180
78250c02
JA
181static unsigned int dio_bio_write_op(struct kiocb *iocb)
182{
183 unsigned int op = REQ_OP_WRITE | REQ_SYNC | REQ_IDLE;
184
185 /* avoid the need for a I/O completion work item */
186 if (iocb->ki_flags & IOCB_DSYNC)
187 op |= REQ_FUA;
188 return op;
189}
190
189ce2b9
CH
191#define DIO_INLINE_BIO_VECS 4
192
193static void blkdev_bio_end_io_simple(struct bio *bio)
194{
195 struct task_struct *waiter = bio->bi_private;
196
197 WRITE_ONCE(bio->bi_private, NULL);
198 wake_up_process(waiter);
199}
200
201static ssize_t
202__blkdev_direct_IO_simple(struct kiocb *iocb, struct iov_iter *iter,
203 int nr_pages)
204{
205 struct file *file = iocb->ki_filp;
206 struct block_device *bdev = I_BDEV(bdev_file_inode(file));
72ecad22 207 struct bio_vec inline_vecs[DIO_INLINE_BIO_VECS], *vecs, *bvec;
189ce2b9
CH
208 loff_t pos = iocb->ki_pos;
209 bool should_dirty = false;
210 struct bio bio;
211 ssize_t ret;
212 blk_qc_t qc;
213 int i;
214
9a794fb9
JA
215 if ((pos | iov_iter_alignment(iter)) &
216 (bdev_logical_block_size(bdev) - 1))
189ce2b9
CH
217 return -EINVAL;
218
72ecad22
JA
219 if (nr_pages <= DIO_INLINE_BIO_VECS)
220 vecs = inline_vecs;
221 else {
222 vecs = kmalloc(nr_pages * sizeof(struct bio_vec), GFP_KERNEL);
223 if (!vecs)
224 return -ENOMEM;
225 }
226
3a83f467 227 bio_init(&bio, vecs, nr_pages);
74d46992 228 bio_set_dev(&bio, bdev);
4d1a4765 229 bio.bi_iter.bi_sector = pos >> 9;
45d06cf7 230 bio.bi_write_hint = iocb->ki_hint;
189ce2b9
CH
231 bio.bi_private = current;
232 bio.bi_end_io = blkdev_bio_end_io_simple;
233
234 ret = bio_iov_iter_get_pages(&bio, iter);
235 if (unlikely(ret))
ba0a2578 236 goto out;
189ce2b9
CH
237 ret = bio.bi_iter.bi_size;
238
239 if (iov_iter_rw(iter) == READ) {
78250c02 240 bio.bi_opf = REQ_OP_READ;
189ce2b9
CH
241 if (iter_is_iovec(iter))
242 should_dirty = true;
243 } else {
78250c02 244 bio.bi_opf = dio_bio_write_op(iocb);
189ce2b9
CH
245 task_io_account_write(ret);
246 }
247
248 qc = submit_bio(&bio);
249 for (;;) {
250 set_current_state(TASK_UNINTERRUPTIBLE);
251 if (!READ_ONCE(bio.bi_private))
252 break;
253 if (!(iocb->ki_flags & IOCB_HIPRI) ||
ea435e1b 254 !blk_poll(bdev_get_queue(bdev), qc))
189ce2b9
CH
255 io_schedule();
256 }
257 __set_current_state(TASK_RUNNING);
258
259 bio_for_each_segment_all(bvec, &bio, i) {
260 if (should_dirty && !PageCompound(bvec->bv_page))
261 set_page_dirty_lock(bvec->bv_page);
262 put_page(bvec->bv_page);
263 }
264
4e4cbee9 265 if (unlikely(bio.bi_status))
c6b1e36c 266 ret = blk_status_to_errno(bio.bi_status);
9ae3b3f5 267
ba0a2578
MW
268out:
269 if (vecs != inline_vecs)
270 kfree(vecs);
271
9ae3b3f5
JA
272 bio_uninit(&bio);
273
189ce2b9
CH
274 return ret;
275}
276
542ff7bf
CH
277struct blkdev_dio {
278 union {
279 struct kiocb *iocb;
280 struct task_struct *waiter;
281 };
282 size_t size;
283 atomic_t ref;
284 bool multi_bio : 1;
285 bool should_dirty : 1;
286 bool is_sync : 1;
287 struct bio bio;
288};
289
290static struct bio_set *blkdev_dio_pool __read_mostly;
291
292static void blkdev_bio_end_io(struct bio *bio)
293{
294 struct blkdev_dio *dio = bio->bi_private;
295 bool should_dirty = dio->should_dirty;
296
d536099e
JY
297 if (bio->bi_status && !dio->bio.bi_status)
298 dio->bio.bi_status = bio->bi_status;
299
300 if (!dio->multi_bio || atomic_dec_and_test(&dio->ref)) {
542ff7bf
CH
301 if (!dio->is_sync) {
302 struct kiocb *iocb = dio->iocb;
4e4cbee9 303 ssize_t ret;
542ff7bf 304
4e4cbee9 305 if (likely(!dio->bio.bi_status)) {
542ff7bf
CH
306 ret = dio->size;
307 iocb->ki_pos += ret;
4e4cbee9
CH
308 } else {
309 ret = blk_status_to_errno(dio->bio.bi_status);
542ff7bf
CH
310 }
311
312 dio->iocb->ki_complete(iocb, ret, 0);
313 bio_put(&dio->bio);
314 } else {
315 struct task_struct *waiter = dio->waiter;
316
317 WRITE_ONCE(dio->waiter, NULL);
318 wake_up_process(waiter);
319 }
320 }
321
322 if (should_dirty) {
323 bio_check_pages_dirty(bio);
324 } else {
325 struct bio_vec *bvec;
326 int i;
327
328 bio_for_each_segment_all(bvec, bio, i)
329 put_page(bvec->bv_page);
330 bio_put(bio);
331 }
332}
333
b2e895db 334static ssize_t
542ff7bf 335__blkdev_direct_IO(struct kiocb *iocb, struct iov_iter *iter, int nr_pages)
b2e895db
AM
336{
337 struct file *file = iocb->ki_filp;
4ebb16ca 338 struct inode *inode = bdev_file_inode(file);
542ff7bf 339 struct block_device *bdev = I_BDEV(inode);
64d656a1 340 struct blk_plug plug;
542ff7bf
CH
341 struct blkdev_dio *dio;
342 struct bio *bio;
690e5325 343 bool is_read = (iov_iter_rw(iter) == READ), is_sync;
542ff7bf
CH
344 loff_t pos = iocb->ki_pos;
345 blk_qc_t qc = BLK_QC_T_NONE;
36ffc6c1 346 int ret = 0;
542ff7bf 347
9a794fb9
JA
348 if ((pos | iov_iter_alignment(iter)) &
349 (bdev_logical_block_size(bdev) - 1))
542ff7bf
CH
350 return -EINVAL;
351
352 bio = bio_alloc_bioset(GFP_KERNEL, nr_pages, blkdev_dio_pool);
353 bio_get(bio); /* extra ref for the completion handler */
354
355 dio = container_of(bio, struct blkdev_dio, bio);
690e5325 356 dio->is_sync = is_sync = is_sync_kiocb(iocb);
542ff7bf
CH
357 if (dio->is_sync)
358 dio->waiter = current;
359 else
360 dio->iocb = iocb;
361
362 dio->size = 0;
363 dio->multi_bio = false;
364 dio->should_dirty = is_read && (iter->type == ITER_IOVEC);
365
64d656a1 366 blk_start_plug(&plug);
542ff7bf 367 for (;;) {
74d46992 368 bio_set_dev(bio, bdev);
4d1a4765 369 bio->bi_iter.bi_sector = pos >> 9;
45d06cf7 370 bio->bi_write_hint = iocb->ki_hint;
542ff7bf
CH
371 bio->bi_private = dio;
372 bio->bi_end_io = blkdev_bio_end_io;
373
374 ret = bio_iov_iter_get_pages(bio, iter);
375 if (unlikely(ret)) {
4e4cbee9 376 bio->bi_status = BLK_STS_IOERR;
542ff7bf
CH
377 bio_endio(bio);
378 break;
379 }
380
381 if (is_read) {
382 bio->bi_opf = REQ_OP_READ;
383 if (dio->should_dirty)
384 bio_set_pages_dirty(bio);
385 } else {
386 bio->bi_opf = dio_bio_write_op(iocb);
387 task_io_account_write(bio->bi_iter.bi_size);
388 }
389
390 dio->size += bio->bi_iter.bi_size;
391 pos += bio->bi_iter.bi_size;
392
393 nr_pages = iov_iter_npages(iter, BIO_MAX_PAGES);
394 if (!nr_pages) {
395 qc = submit_bio(bio);
396 break;
397 }
398
399 if (!dio->multi_bio) {
400 dio->multi_bio = true;
401 atomic_set(&dio->ref, 2);
402 } else {
403 atomic_inc(&dio->ref);
404 }
405
406 submit_bio(bio);
407 bio = bio_alloc(GFP_KERNEL, nr_pages);
408 }
64d656a1 409 blk_finish_plug(&plug);
542ff7bf 410
690e5325 411 if (!is_sync)
542ff7bf
CH
412 return -EIOCBQUEUED;
413
414 for (;;) {
415 set_current_state(TASK_UNINTERRUPTIBLE);
416 if (!READ_ONCE(dio->waiter))
417 break;
418
419 if (!(iocb->ki_flags & IOCB_HIPRI) ||
ea435e1b 420 !blk_poll(bdev_get_queue(bdev), qc))
542ff7bf
CH
421 io_schedule();
422 }
423 __set_current_state(TASK_RUNNING);
424
36ffc6c1 425 if (!ret)
4e4cbee9 426 ret = blk_status_to_errno(dio->bio.bi_status);
7a62a523 427 if (likely(!ret))
542ff7bf 428 ret = dio->size;
542ff7bf
CH
429
430 bio_put(&dio->bio);
431 return ret;
432}
433
434static ssize_t
435blkdev_direct_IO(struct kiocb *iocb, struct iov_iter *iter)
436{
189ce2b9 437 int nr_pages;
b2e895db 438
72ecad22 439 nr_pages = iov_iter_npages(iter, BIO_MAX_PAGES + 1);
189ce2b9
CH
440 if (!nr_pages)
441 return 0;
72ecad22 442 if (is_sync_kiocb(iocb) && nr_pages <= BIO_MAX_PAGES)
189ce2b9 443 return __blkdev_direct_IO_simple(iocb, iter, nr_pages);
542ff7bf
CH
444
445 return __blkdev_direct_IO(iocb, iter, min(nr_pages, BIO_MAX_PAGES));
446}
447
448static __init int blkdev_init(void)
449{
011067b0 450 blkdev_dio_pool = bioset_create(4, offsetof(struct blkdev_dio, bio), BIOSET_NEED_BVECS);
542ff7bf
CH
451 if (!blkdev_dio_pool)
452 return -ENOMEM;
453 return 0;
b2e895db 454}
542ff7bf 455module_init(blkdev_init);
b2e895db 456
5cee5815
JK
457int __sync_blockdev(struct block_device *bdev, int wait)
458{
459 if (!bdev)
460 return 0;
461 if (!wait)
462 return filemap_flush(bdev->bd_inode->i_mapping);
463 return filemap_write_and_wait(bdev->bd_inode->i_mapping);
464}
465
585d3bc0
NP
466/*
467 * Write out and wait upon all the dirty data associated with a block
468 * device via its mapping. Does not take the superblock lock.
469 */
470int sync_blockdev(struct block_device *bdev)
471{
5cee5815 472 return __sync_blockdev(bdev, 1);
585d3bc0
NP
473}
474EXPORT_SYMBOL(sync_blockdev);
475
476/*
477 * Write out and wait upon all dirty data associated with this
478 * device. Filesystem data as well as the underlying block
479 * device. Takes the superblock lock.
480 */
481int fsync_bdev(struct block_device *bdev)
482{
483 struct super_block *sb = get_super(bdev);
484 if (sb) {
60b0680f 485 int res = sync_filesystem(sb);
585d3bc0
NP
486 drop_super(sb);
487 return res;
488 }
489 return sync_blockdev(bdev);
490}
47e4491b 491EXPORT_SYMBOL(fsync_bdev);
585d3bc0
NP
492
493/**
494 * freeze_bdev -- lock a filesystem and force it into a consistent state
495 * @bdev: blockdevice to lock
496 *
585d3bc0
NP
497 * If a superblock is found on this device, we take the s_umount semaphore
498 * on it to make sure nobody unmounts until the snapshot creation is done.
499 * The reference counter (bd_fsfreeze_count) guarantees that only the last
500 * unfreeze process can unfreeze the frozen filesystem actually when multiple
501 * freeze requests arrive simultaneously. It counts up in freeze_bdev() and
502 * count down in thaw_bdev(). When it becomes 0, thaw_bdev() will unfreeze
503 * actually.
504 */
505struct super_block *freeze_bdev(struct block_device *bdev)
506{
507 struct super_block *sb;
508 int error = 0;
509
510 mutex_lock(&bdev->bd_fsfreeze_mutex);
4504230a
CH
511 if (++bdev->bd_fsfreeze_count > 1) {
512 /*
513 * We don't even need to grab a reference - the first call
514 * to freeze_bdev grab an active reference and only the last
515 * thaw_bdev drops it.
516 */
585d3bc0 517 sb = get_super(bdev);
5bb53c0f
AR
518 if (sb)
519 drop_super(sb);
4504230a
CH
520 mutex_unlock(&bdev->bd_fsfreeze_mutex);
521 return sb;
522 }
523
524 sb = get_active_super(bdev);
525 if (!sb)
526 goto out;
48b6bca6
BM
527 if (sb->s_op->freeze_super)
528 error = sb->s_op->freeze_super(sb);
529 else
530 error = freeze_super(sb);
18e9e510
JB
531 if (error) {
532 deactivate_super(sb);
533 bdev->bd_fsfreeze_count--;
585d3bc0 534 mutex_unlock(&bdev->bd_fsfreeze_mutex);
18e9e510 535 return ERR_PTR(error);
585d3bc0 536 }
18e9e510 537 deactivate_super(sb);
4504230a 538 out:
585d3bc0
NP
539 sync_blockdev(bdev);
540 mutex_unlock(&bdev->bd_fsfreeze_mutex);
4fadd7bb 541 return sb; /* thaw_bdev releases s->s_umount */
585d3bc0
NP
542}
543EXPORT_SYMBOL(freeze_bdev);
544
545/**
546 * thaw_bdev -- unlock filesystem
547 * @bdev: blockdevice to unlock
548 * @sb: associated superblock
549 *
550 * Unlocks the filesystem and marks it writeable again after freeze_bdev().
551 */
552int thaw_bdev(struct block_device *bdev, struct super_block *sb)
553{
4504230a 554 int error = -EINVAL;
585d3bc0
NP
555
556 mutex_lock(&bdev->bd_fsfreeze_mutex);
4504230a 557 if (!bdev->bd_fsfreeze_count)
18e9e510 558 goto out;
4504230a
CH
559
560 error = 0;
561 if (--bdev->bd_fsfreeze_count > 0)
18e9e510 562 goto out;
4504230a
CH
563
564 if (!sb)
18e9e510 565 goto out;
4504230a 566
48b6bca6
BM
567 if (sb->s_op->thaw_super)
568 error = sb->s_op->thaw_super(sb);
569 else
570 error = thaw_super(sb);
997198ba 571 if (error)
18e9e510 572 bdev->bd_fsfreeze_count++;
18e9e510 573out:
585d3bc0 574 mutex_unlock(&bdev->bd_fsfreeze_mutex);
997198ba 575 return error;
585d3bc0
NP
576}
577EXPORT_SYMBOL(thaw_bdev);
578
1da177e4
LT
579static int blkdev_writepage(struct page *page, struct writeback_control *wbc)
580{
581 return block_write_full_page(page, blkdev_get_block, wbc);
582}
583
584static int blkdev_readpage(struct file * file, struct page * page)
585{
586 return block_read_full_page(page, blkdev_get_block);
587}
588
447f05bb
AM
589static int blkdev_readpages(struct file *file, struct address_space *mapping,
590 struct list_head *pages, unsigned nr_pages)
591{
592 return mpage_readpages(mapping, pages, nr_pages, blkdev_get_block);
593}
594
6272b5a5
NP
595static int blkdev_write_begin(struct file *file, struct address_space *mapping,
596 loff_t pos, unsigned len, unsigned flags,
597 struct page **pagep, void **fsdata)
1da177e4 598{
155130a4
CH
599 return block_write_begin(mapping, pos, len, flags, pagep,
600 blkdev_get_block);
1da177e4
LT
601}
602
6272b5a5
NP
603static int blkdev_write_end(struct file *file, struct address_space *mapping,
604 loff_t pos, unsigned len, unsigned copied,
605 struct page *page, void *fsdata)
1da177e4 606{
6272b5a5
NP
607 int ret;
608 ret = block_write_end(file, mapping, pos, len, copied, page, fsdata);
609
610 unlock_page(page);
09cbfeaf 611 put_page(page);
6272b5a5
NP
612
613 return ret;
1da177e4
LT
614}
615
616/*
617 * private llseek:
496ad9aa 618 * for a block special file file_inode(file)->i_size is zero
1da177e4
LT
619 * so we compute the size by hand (just as in block_read/write above)
620 */
965c8e59 621static loff_t block_llseek(struct file *file, loff_t offset, int whence)
1da177e4 622{
4ebb16ca 623 struct inode *bd_inode = bdev_file_inode(file);
1da177e4
LT
624 loff_t retval;
625
5955102c 626 inode_lock(bd_inode);
5d48f3a2 627 retval = fixed_size_llseek(file, offset, whence, i_size_read(bd_inode));
5955102c 628 inode_unlock(bd_inode);
1da177e4
LT
629 return retval;
630}
631
02c24a82 632int blkdev_fsync(struct file *filp, loff_t start, loff_t end, int datasync)
1da177e4 633{
4ebb16ca 634 struct inode *bd_inode = bdev_file_inode(filp);
b8af67e2 635 struct block_device *bdev = I_BDEV(bd_inode);
ab0a9735 636 int error;
da5aa861 637
372cf243 638 error = file_write_and_wait_range(filp, start, end);
da5aa861
RW
639 if (error)
640 return error;
ab0a9735 641
b8af67e2
AB
642 /*
643 * There is no need to serialise calls to blkdev_issue_flush with
644 * i_mutex and doing so causes performance issues with concurrent
645 * O_SYNC writers to a block device.
646 */
dd3932ed 647 error = blkdev_issue_flush(bdev, GFP_KERNEL, NULL);
ab0a9735
CH
648 if (error == -EOPNOTSUPP)
649 error = 0;
b8af67e2 650
ab0a9735 651 return error;
1da177e4 652}
b1dd3b28 653EXPORT_SYMBOL(blkdev_fsync);
1da177e4 654
47a191fd
MW
655/**
656 * bdev_read_page() - Start reading a page from a block device
657 * @bdev: The device to read the page from
658 * @sector: The offset on the device to read the page to (need not be aligned)
659 * @page: The page to read
660 *
661 * On entry, the page should be locked. It will be unlocked when the page
662 * has been read. If the block driver implements rw_page synchronously,
663 * that will be true on exit from this function, but it need not be.
664 *
665 * Errors returned by this function are usually "soft", eg out of memory, or
666 * queue full; callers should try a different route to read this page rather
667 * than propagate an error back up the stack.
668 *
669 * Return: negative errno if an error occurs, 0 if submission was successful.
670 */
671int bdev_read_page(struct block_device *bdev, sector_t sector,
672 struct page *page)
673{
674 const struct block_device_operations *ops = bdev->bd_disk->fops;
2e6edc95
DW
675 int result = -EOPNOTSUPP;
676
f68eb1e7 677 if (!ops->rw_page || bdev_get_integrity(bdev))
2e6edc95
DW
678 return result;
679
3a0a5299 680 result = blk_queue_enter(bdev->bd_queue, 0);
2e6edc95
DW
681 if (result)
682 return result;
c11f0c0b 683 result = ops->rw_page(bdev, sector + get_start_sect(bdev), page, false);
2e6edc95
DW
684 blk_queue_exit(bdev->bd_queue);
685 return result;
47a191fd
MW
686}
687EXPORT_SYMBOL_GPL(bdev_read_page);
688
689/**
690 * bdev_write_page() - Start writing a page to a block device
691 * @bdev: The device to write the page to
692 * @sector: The offset on the device to write the page to (need not be aligned)
693 * @page: The page to write
694 * @wbc: The writeback_control for the write
695 *
696 * On entry, the page should be locked and not currently under writeback.
697 * On exit, if the write started successfully, the page will be unlocked and
698 * under writeback. If the write failed already (eg the driver failed to
699 * queue the page to the device), the page will still be locked. If the
700 * caller is a ->writepage implementation, it will need to unlock the page.
701 *
702 * Errors returned by this function are usually "soft", eg out of memory, or
703 * queue full; callers should try a different route to write this page rather
704 * than propagate an error back up the stack.
705 *
706 * Return: negative errno if an error occurs, 0 if submission was successful.
707 */
708int bdev_write_page(struct block_device *bdev, sector_t sector,
709 struct page *page, struct writeback_control *wbc)
710{
711 int result;
47a191fd 712 const struct block_device_operations *ops = bdev->bd_disk->fops;
2e6edc95 713
f68eb1e7 714 if (!ops->rw_page || bdev_get_integrity(bdev))
47a191fd 715 return -EOPNOTSUPP;
3a0a5299 716 result = blk_queue_enter(bdev->bd_queue, 0);
2e6edc95
DW
717 if (result)
718 return result;
719
47a191fd 720 set_page_writeback(page);
c11f0c0b 721 result = ops->rw_page(bdev, sector + get_start_sect(bdev), page, true);
f892760a 722 if (result) {
47a191fd 723 end_page_writeback(page);
f892760a
MW
724 } else {
725 clean_page_buffers(page);
47a191fd 726 unlock_page(page);
f892760a 727 }
2e6edc95 728 blk_queue_exit(bdev->bd_queue);
47a191fd
MW
729 return result;
730}
731EXPORT_SYMBOL_GPL(bdev_write_page);
732
1da177e4
LT
733/*
734 * pseudo-fs
735 */
736
737static __cacheline_aligned_in_smp DEFINE_SPINLOCK(bdev_lock);
e18b890b 738static struct kmem_cache * bdev_cachep __read_mostly;
1da177e4
LT
739
740static struct inode *bdev_alloc_inode(struct super_block *sb)
741{
e94b1766 742 struct bdev_inode *ei = kmem_cache_alloc(bdev_cachep, GFP_KERNEL);
1da177e4
LT
743 if (!ei)
744 return NULL;
745 return &ei->vfs_inode;
746}
747
fa0d7e3d 748static void bdev_i_callback(struct rcu_head *head)
1da177e4 749{
fa0d7e3d 750 struct inode *inode = container_of(head, struct inode, i_rcu);
1da177e4
LT
751 struct bdev_inode *bdi = BDEV_I(inode);
752
1da177e4
LT
753 kmem_cache_free(bdev_cachep, bdi);
754}
755
fa0d7e3d
NP
756static void bdev_destroy_inode(struct inode *inode)
757{
758 call_rcu(&inode->i_rcu, bdev_i_callback);
759}
760
51cc5068 761static void init_once(void *foo)
1da177e4
LT
762{
763 struct bdev_inode *ei = (struct bdev_inode *) foo;
764 struct block_device *bdev = &ei->bdev;
765
a35afb83
CL
766 memset(bdev, 0, sizeof(*bdev));
767 mutex_init(&bdev->bd_mutex);
a35afb83 768 INIT_LIST_HEAD(&bdev->bd_list);
49731baa
TH
769#ifdef CONFIG_SYSFS
770 INIT_LIST_HEAD(&bdev->bd_holder_disks);
771#endif
a5a79d00 772 bdev->bd_bdi = &noop_backing_dev_info;
a35afb83 773 inode_init_once(&ei->vfs_inode);
fcccf502
TS
774 /* Initialize mutex for freeze. */
775 mutex_init(&bdev->bd_fsfreeze_mutex);
1da177e4
LT
776}
777
b57922d9 778static void bdev_evict_inode(struct inode *inode)
1da177e4
LT
779{
780 struct block_device *bdev = &BDEV_I(inode)->bdev;
91b0abe3 781 truncate_inode_pages_final(&inode->i_data);
b57922d9 782 invalidate_inode_buffers(inode); /* is it needed here? */
dbd5768f 783 clear_inode(inode);
1da177e4 784 spin_lock(&bdev_lock);
1da177e4
LT
785 list_del_init(&bdev->bd_list);
786 spin_unlock(&bdev_lock);
f759741d
JK
787 /* Detach inode from wb early as bdi_put() may free bdi->wb */
788 inode_detach_wb(inode);
a5a79d00 789 if (bdev->bd_bdi != &noop_backing_dev_info) {
b1d2dc56 790 bdi_put(bdev->bd_bdi);
a5a79d00
JK
791 bdev->bd_bdi = &noop_backing_dev_info;
792 }
1da177e4
LT
793}
794
ee9b6d61 795static const struct super_operations bdev_sops = {
1da177e4
LT
796 .statfs = simple_statfs,
797 .alloc_inode = bdev_alloc_inode,
798 .destroy_inode = bdev_destroy_inode,
799 .drop_inode = generic_delete_inode,
b57922d9 800 .evict_inode = bdev_evict_inode,
1da177e4
LT
801};
802
51139ada
AV
803static struct dentry *bd_mount(struct file_system_type *fs_type,
804 int flags, const char *dev_name, void *data)
1da177e4 805{
3684aa70
SL
806 struct dentry *dent;
807 dent = mount_pseudo(fs_type, "bdev:", &bdev_sops, NULL, BDEVFS_MAGIC);
e9e5e3fa 808 if (!IS_ERR(dent))
3684aa70
SL
809 dent->d_sb->s_iflags |= SB_I_CGROUPWB;
810 return dent;
1da177e4
LT
811}
812
813static struct file_system_type bd_type = {
814 .name = "bdev",
51139ada 815 .mount = bd_mount,
1da177e4
LT
816 .kill_sb = kill_anon_super,
817};
818
a212b105
TH
819struct super_block *blockdev_superblock __read_mostly;
820EXPORT_SYMBOL_GPL(blockdev_superblock);
1da177e4
LT
821
822void __init bdev_cache_init(void)
823{
824 int err;
ace8577a 825 static struct vfsmount *bd_mnt;
c2acf7b9 826
1da177e4 827 bdev_cachep = kmem_cache_create("bdev_cache", sizeof(struct bdev_inode),
fffb60f9 828 0, (SLAB_HWCACHE_ALIGN|SLAB_RECLAIM_ACCOUNT|
5d097056 829 SLAB_MEM_SPREAD|SLAB_ACCOUNT|SLAB_PANIC),
20c2df83 830 init_once);
1da177e4
LT
831 err = register_filesystem(&bd_type);
832 if (err)
833 panic("Cannot register bdev pseudo-fs");
834 bd_mnt = kern_mount(&bd_type);
1da177e4
LT
835 if (IS_ERR(bd_mnt))
836 panic("Cannot create bdev pseudo-fs");
ace8577a 837 blockdev_superblock = bd_mnt->mnt_sb; /* For writeback */
1da177e4
LT
838}
839
840/*
841 * Most likely _very_ bad one - but then it's hardly critical for small
842 * /dev and can be fixed when somebody will need really large one.
843 * Keep in mind that it will be fed through icache hash function too.
844 */
845static inline unsigned long hash(dev_t dev)
846{
847 return MAJOR(dev)+MINOR(dev);
848}
849
850static int bdev_test(struct inode *inode, void *data)
851{
852 return BDEV_I(inode)->bdev.bd_dev == *(dev_t *)data;
853}
854
855static int bdev_set(struct inode *inode, void *data)
856{
857 BDEV_I(inode)->bdev.bd_dev = *(dev_t *)data;
858 return 0;
859}
860
861static LIST_HEAD(all_bdevs);
862
f44f1ab5
JK
863/*
864 * If there is a bdev inode for this device, unhash it so that it gets evicted
865 * as soon as last inode reference is dropped.
866 */
867void bdev_unhash_inode(dev_t dev)
868{
869 struct inode *inode;
870
871 inode = ilookup5(blockdev_superblock, hash(dev), bdev_test, &dev);
872 if (inode) {
873 remove_inode_hash(inode);
874 iput(inode);
875 }
876}
877
1da177e4
LT
878struct block_device *bdget(dev_t dev)
879{
880 struct block_device *bdev;
881 struct inode *inode;
882
c2acf7b9 883 inode = iget5_locked(blockdev_superblock, hash(dev),
1da177e4
LT
884 bdev_test, bdev_set, &dev);
885
886 if (!inode)
887 return NULL;
888
889 bdev = &BDEV_I(inode)->bdev;
890
891 if (inode->i_state & I_NEW) {
892 bdev->bd_contains = NULL;
782b94cd 893 bdev->bd_super = NULL;
1da177e4 894 bdev->bd_inode = inode;
93407472 895 bdev->bd_block_size = i_blocksize(inode);
1da177e4
LT
896 bdev->bd_part_count = 0;
897 bdev->bd_invalidated = 0;
898 inode->i_mode = S_IFBLK;
899 inode->i_rdev = dev;
900 inode->i_bdev = bdev;
901 inode->i_data.a_ops = &def_blk_aops;
902 mapping_set_gfp_mask(&inode->i_data, GFP_USER);
1da177e4
LT
903 spin_lock(&bdev_lock);
904 list_add(&bdev->bd_list, &all_bdevs);
905 spin_unlock(&bdev_lock);
906 unlock_new_inode(inode);
907 }
908 return bdev;
909}
910
911EXPORT_SYMBOL(bdget);
912
dddac6a7
AJ
913/**
914 * bdgrab -- Grab a reference to an already referenced block device
915 * @bdev: Block device to grab a reference to.
916 */
917struct block_device *bdgrab(struct block_device *bdev)
918{
7de9c6ee 919 ihold(bdev->bd_inode);
dddac6a7
AJ
920 return bdev;
921}
c1681bf8 922EXPORT_SYMBOL(bdgrab);
dddac6a7 923
1da177e4
LT
924long nr_blockdev_pages(void)
925{
203a2935 926 struct block_device *bdev;
1da177e4
LT
927 long ret = 0;
928 spin_lock(&bdev_lock);
203a2935 929 list_for_each_entry(bdev, &all_bdevs, bd_list) {
1da177e4
LT
930 ret += bdev->bd_inode->i_mapping->nrpages;
931 }
932 spin_unlock(&bdev_lock);
933 return ret;
934}
935
936void bdput(struct block_device *bdev)
937{
938 iput(bdev->bd_inode);
939}
940
941EXPORT_SYMBOL(bdput);
942
943static struct block_device *bd_acquire(struct inode *inode)
944{
945 struct block_device *bdev;
09d967c6 946
1da177e4
LT
947 spin_lock(&bdev_lock);
948 bdev = inode->i_bdev;
cccd9fb9 949 if (bdev && !inode_unhashed(bdev->bd_inode)) {
ed8a9d2c 950 bdgrab(bdev);
1da177e4
LT
951 spin_unlock(&bdev_lock);
952 return bdev;
953 }
954 spin_unlock(&bdev_lock);
09d967c6 955
cccd9fb9
JK
956 /*
957 * i_bdev references block device inode that was already shut down
958 * (corresponding device got removed). Remove the reference and look
959 * up block device inode again just in case new device got
960 * reestablished under the same device number.
961 */
962 if (bdev)
963 bd_forget(inode);
964
1da177e4
LT
965 bdev = bdget(inode->i_rdev);
966 if (bdev) {
967 spin_lock(&bdev_lock);
09d967c6
OH
968 if (!inode->i_bdev) {
969 /*
7de9c6ee 970 * We take an additional reference to bd_inode,
09d967c6
OH
971 * and it's released in clear_inode() of inode.
972 * So, we can access it via ->i_mapping always
973 * without igrab().
974 */
ed8a9d2c 975 bdgrab(bdev);
09d967c6
OH
976 inode->i_bdev = bdev;
977 inode->i_mapping = bdev->bd_inode->i_mapping;
09d967c6 978 }
1da177e4
LT
979 spin_unlock(&bdev_lock);
980 }
981 return bdev;
982}
983
984/* Call when you free inode */
985
986void bd_forget(struct inode *inode)
987{
09d967c6
OH
988 struct block_device *bdev = NULL;
989
1da177e4 990 spin_lock(&bdev_lock);
b4ea2eaa
YH
991 if (!sb_is_blkdev_sb(inode->i_sb))
992 bdev = inode->i_bdev;
a4a4f943
AV
993 inode->i_bdev = NULL;
994 inode->i_mapping = &inode->i_data;
1da177e4 995 spin_unlock(&bdev_lock);
09d967c6
OH
996
997 if (bdev)
ed8a9d2c 998 bdput(bdev);
1da177e4
LT
999}
1000
1a3cbbc5
TH
1001/**
1002 * bd_may_claim - test whether a block device can be claimed
1003 * @bdev: block device of interest
1004 * @whole: whole block device containing @bdev, may equal @bdev
1005 * @holder: holder trying to claim @bdev
1006 *
25985edc 1007 * Test whether @bdev can be claimed by @holder.
1a3cbbc5
TH
1008 *
1009 * CONTEXT:
1010 * spin_lock(&bdev_lock).
1011 *
1012 * RETURNS:
1013 * %true if @bdev can be claimed, %false otherwise.
1014 */
1015static bool bd_may_claim(struct block_device *bdev, struct block_device *whole,
1016 void *holder)
1da177e4 1017{
1da177e4 1018 if (bdev->bd_holder == holder)
1a3cbbc5 1019 return true; /* already a holder */
1da177e4 1020 else if (bdev->bd_holder != NULL)
1a3cbbc5 1021 return false; /* held by someone else */
bcc7f5b4 1022 else if (whole == bdev)
1a3cbbc5 1023 return true; /* is a whole device which isn't held */
1da177e4 1024
e525fd89 1025 else if (whole->bd_holder == bd_may_claim)
1a3cbbc5
TH
1026 return true; /* is a partition of a device that is being partitioned */
1027 else if (whole->bd_holder != NULL)
1028 return false; /* is a partition of a held device */
1da177e4 1029 else
1a3cbbc5
TH
1030 return true; /* is a partition of an un-held device */
1031}
1032
6b4517a7
TH
1033/**
1034 * bd_prepare_to_claim - prepare to claim a block device
1035 * @bdev: block device of interest
1036 * @whole: the whole device containing @bdev, may equal @bdev
1037 * @holder: holder trying to claim @bdev
1038 *
1039 * Prepare to claim @bdev. This function fails if @bdev is already
1040 * claimed by another holder and waits if another claiming is in
1041 * progress. This function doesn't actually claim. On successful
1042 * return, the caller has ownership of bd_claiming and bd_holder[s].
1043 *
1044 * CONTEXT:
1045 * spin_lock(&bdev_lock). Might release bdev_lock, sleep and regrab
1046 * it multiple times.
1047 *
1048 * RETURNS:
1049 * 0 if @bdev can be claimed, -EBUSY otherwise.
1050 */
1051static int bd_prepare_to_claim(struct block_device *bdev,
1052 struct block_device *whole, void *holder)
1053{
1054retry:
1055 /* if someone else claimed, fail */
1056 if (!bd_may_claim(bdev, whole, holder))
1057 return -EBUSY;
1058
e75aa858
TH
1059 /* if claiming is already in progress, wait for it to finish */
1060 if (whole->bd_claiming) {
6b4517a7
TH
1061 wait_queue_head_t *wq = bit_waitqueue(&whole->bd_claiming, 0);
1062 DEFINE_WAIT(wait);
1063
1064 prepare_to_wait(wq, &wait, TASK_UNINTERRUPTIBLE);
1065 spin_unlock(&bdev_lock);
1066 schedule();
1067 finish_wait(wq, &wait);
1068 spin_lock(&bdev_lock);
1069 goto retry;
1070 }
1071
1072 /* yay, all mine */
1073 return 0;
1074}
1075
1076/**
1077 * bd_start_claiming - start claiming a block device
1078 * @bdev: block device of interest
1079 * @holder: holder trying to claim @bdev
1080 *
1081 * @bdev is about to be opened exclusively. Check @bdev can be opened
1082 * exclusively and mark that an exclusive open is in progress. Each
1083 * successful call to this function must be matched with a call to
b0018361
NP
1084 * either bd_finish_claiming() or bd_abort_claiming() (which do not
1085 * fail).
1086 *
1087 * This function is used to gain exclusive access to the block device
1088 * without actually causing other exclusive open attempts to fail. It
1089 * should be used when the open sequence itself requires exclusive
1090 * access but may subsequently fail.
6b4517a7
TH
1091 *
1092 * CONTEXT:
1093 * Might sleep.
1094 *
1095 * RETURNS:
1096 * Pointer to the block device containing @bdev on success, ERR_PTR()
1097 * value on failure.
1098 */
1099static struct block_device *bd_start_claiming(struct block_device *bdev,
1100 void *holder)
1101{
1102 struct gendisk *disk;
1103 struct block_device *whole;
1104 int partno, err;
1105
1106 might_sleep();
1107
1108 /*
1109 * @bdev might not have been initialized properly yet, look up
1110 * and grab the outer block device the hard way.
1111 */
1112 disk = get_gendisk(bdev->bd_dev, &partno);
1113 if (!disk)
1114 return ERR_PTR(-ENXIO);
1115
d4c208b8
TH
1116 /*
1117 * Normally, @bdev should equal what's returned from bdget_disk()
1118 * if partno is 0; however, some drivers (floppy) use multiple
1119 * bdev's for the same physical device and @bdev may be one of the
1120 * aliases. Keep @bdev if partno is 0. This means claimer
1121 * tracking is broken for those devices but it has always been that
1122 * way.
1123 */
1124 if (partno)
1125 whole = bdget_disk(disk, 0);
1126 else
1127 whole = bdgrab(bdev);
1128
cf342570 1129 module_put(disk->fops->owner);
6b4517a7
TH
1130 put_disk(disk);
1131 if (!whole)
1132 return ERR_PTR(-ENOMEM);
1133
1134 /* prepare to claim, if successful, mark claiming in progress */
1135 spin_lock(&bdev_lock);
1136
1137 err = bd_prepare_to_claim(bdev, whole, holder);
1138 if (err == 0) {
1139 whole->bd_claiming = holder;
1140 spin_unlock(&bdev_lock);
1141 return whole;
1142 } else {
1143 spin_unlock(&bdev_lock);
1144 bdput(whole);
1145 return ERR_PTR(err);
1146 }
1147}
1148
641dc636 1149#ifdef CONFIG_SYSFS
49731baa
TH
1150struct bd_holder_disk {
1151 struct list_head list;
1152 struct gendisk *disk;
1153 int refcnt;
1154};
1155
1156static struct bd_holder_disk *bd_find_holder_disk(struct block_device *bdev,
1157 struct gendisk *disk)
1158{
1159 struct bd_holder_disk *holder;
1160
1161 list_for_each_entry(holder, &bdev->bd_holder_disks, list)
1162 if (holder->disk == disk)
1163 return holder;
1164 return NULL;
1165}
1166
4d7dd8fd 1167static int add_symlink(struct kobject *from, struct kobject *to)
641dc636 1168{
4d7dd8fd 1169 return sysfs_create_link(from, to, kobject_name(to));
641dc636
JN
1170}
1171
1172static void del_symlink(struct kobject *from, struct kobject *to)
1173{
641dc636
JN
1174 sysfs_remove_link(from, kobject_name(to));
1175}
1176
df6c0cd9 1177/**
e09b457b
TH
1178 * bd_link_disk_holder - create symlinks between holding disk and slave bdev
1179 * @bdev: the claimed slave bdev
1180 * @disk: the holding disk
df6c0cd9 1181 *
49731baa
TH
1182 * DON'T USE THIS UNLESS YOU'RE ALREADY USING IT.
1183 *
e09b457b 1184 * This functions creates the following sysfs symlinks.
641dc636 1185 *
e09b457b
TH
1186 * - from "slaves" directory of the holder @disk to the claimed @bdev
1187 * - from "holders" directory of the @bdev to the holder @disk
641dc636 1188 *
e09b457b
TH
1189 * For example, if /dev/dm-0 maps to /dev/sda and disk for dm-0 is
1190 * passed to bd_link_disk_holder(), then:
641dc636 1191 *
e09b457b
TH
1192 * /sys/block/dm-0/slaves/sda --> /sys/block/sda
1193 * /sys/block/sda/holders/dm-0 --> /sys/block/dm-0
641dc636 1194 *
e09b457b
TH
1195 * The caller must have claimed @bdev before calling this function and
1196 * ensure that both @bdev and @disk are valid during the creation and
1197 * lifetime of these symlinks.
641dc636 1198 *
e09b457b
TH
1199 * CONTEXT:
1200 * Might sleep.
641dc636 1201 *
e09b457b
TH
1202 * RETURNS:
1203 * 0 on success, -errno on failure.
641dc636 1204 */
e09b457b 1205int bd_link_disk_holder(struct block_device *bdev, struct gendisk *disk)
641dc636 1206{
49731baa 1207 struct bd_holder_disk *holder;
e09b457b 1208 int ret = 0;
641dc636 1209
2e7b651d 1210 mutex_lock(&bdev->bd_mutex);
df6c0cd9 1211
49731baa 1212 WARN_ON_ONCE(!bdev->bd_holder);
4e91672c 1213
e09b457b
TH
1214 /* FIXME: remove the following once add_disk() handles errors */
1215 if (WARN_ON(!disk->slave_dir || !bdev->bd_part->holder_dir))
1216 goto out_unlock;
4e91672c 1217
49731baa
TH
1218 holder = bd_find_holder_disk(bdev, disk);
1219 if (holder) {
1220 holder->refcnt++;
e09b457b 1221 goto out_unlock;
49731baa 1222 }
641dc636 1223
49731baa
TH
1224 holder = kzalloc(sizeof(*holder), GFP_KERNEL);
1225 if (!holder) {
1226 ret = -ENOMEM;
e09b457b
TH
1227 goto out_unlock;
1228 }
641dc636 1229
49731baa
TH
1230 INIT_LIST_HEAD(&holder->list);
1231 holder->disk = disk;
1232 holder->refcnt = 1;
1233
1234 ret = add_symlink(disk->slave_dir, &part_to_dev(bdev->bd_part)->kobj);
1235 if (ret)
1236 goto out_free;
1237
1238 ret = add_symlink(bdev->bd_part->holder_dir, &disk_to_dev(disk)->kobj);
1239 if (ret)
1240 goto out_del;
e7407d16
TH
1241 /*
1242 * bdev could be deleted beneath us which would implicitly destroy
1243 * the holder directory. Hold on to it.
1244 */
1245 kobject_get(bdev->bd_part->holder_dir);
49731baa
TH
1246
1247 list_add(&holder->list, &bdev->bd_holder_disks);
1248 goto out_unlock;
1249
1250out_del:
1251 del_symlink(disk->slave_dir, &part_to_dev(bdev->bd_part)->kobj);
1252out_free:
1253 kfree(holder);
e09b457b 1254out_unlock:
b4cf1b72 1255 mutex_unlock(&bdev->bd_mutex);
e09b457b 1256 return ret;
641dc636 1257}
e09b457b 1258EXPORT_SYMBOL_GPL(bd_link_disk_holder);
641dc636 1259
49731baa
TH
1260/**
1261 * bd_unlink_disk_holder - destroy symlinks created by bd_link_disk_holder()
1262 * @bdev: the calimed slave bdev
1263 * @disk: the holding disk
1264 *
1265 * DON'T USE THIS UNLESS YOU'RE ALREADY USING IT.
1266 *
1267 * CONTEXT:
1268 * Might sleep.
1269 */
1270void bd_unlink_disk_holder(struct block_device *bdev, struct gendisk *disk)
641dc636 1271{
49731baa 1272 struct bd_holder_disk *holder;
641dc636 1273
49731baa 1274 mutex_lock(&bdev->bd_mutex);
641dc636 1275
49731baa
TH
1276 holder = bd_find_holder_disk(bdev, disk);
1277
1278 if (!WARN_ON_ONCE(holder == NULL) && !--holder->refcnt) {
1279 del_symlink(disk->slave_dir, &part_to_dev(bdev->bd_part)->kobj);
1280 del_symlink(bdev->bd_part->holder_dir,
1281 &disk_to_dev(disk)->kobj);
e7407d16 1282 kobject_put(bdev->bd_part->holder_dir);
49731baa
TH
1283 list_del_init(&holder->list);
1284 kfree(holder);
1285 }
1286
1287 mutex_unlock(&bdev->bd_mutex);
1da177e4 1288}
49731baa 1289EXPORT_SYMBOL_GPL(bd_unlink_disk_holder);
641dc636 1290#endif
1da177e4 1291
56ade44b
AP
1292/**
1293 * flush_disk - invalidates all buffer-cache entries on a disk
1294 *
1295 * @bdev: struct block device to be flushed
e6eb5ce1 1296 * @kill_dirty: flag to guide handling of dirty inodes
56ade44b
AP
1297 *
1298 * Invalidates all buffer-cache entries on a disk. It should be called
1299 * when a disk has been changed -- either by a media change or online
1300 * resize.
1301 */
93b270f7 1302static void flush_disk(struct block_device *bdev, bool kill_dirty)
56ade44b 1303{
93b270f7 1304 if (__invalidate_device(bdev, kill_dirty)) {
56ade44b 1305 printk(KERN_WARNING "VFS: busy inodes on changed media or "
424081f3
DM
1306 "resized disk %s\n",
1307 bdev->bd_disk ? bdev->bd_disk->disk_name : "");
56ade44b 1308 }
87a71bb6 1309 bdev->bd_invalidated = 1;
56ade44b
AP
1310}
1311
c3279d14 1312/**
57d1b536 1313 * check_disk_size_change - checks for disk size change and adjusts bdev size.
c3279d14
AP
1314 * @disk: struct gendisk to check
1315 * @bdev: struct bdev to adjust.
1316 *
1317 * This routine checks to see if the bdev size does not match the disk size
1318 * and adjusts it if it differs.
1319 */
1320void check_disk_size_change(struct gendisk *disk, struct block_device *bdev)
1321{
1322 loff_t disk_size, bdev_size;
1323
1324 disk_size = (loff_t)get_capacity(disk) << 9;
1325 bdev_size = i_size_read(bdev->bd_inode);
1326 if (disk_size != bdev_size) {
c3279d14
AP
1327 printk(KERN_INFO
1328 "%s: detected capacity change from %lld to %lld\n",
424081f3 1329 disk->disk_name, bdev_size, disk_size);
c3279d14 1330 i_size_write(bdev->bd_inode, disk_size);
93b270f7 1331 flush_disk(bdev, false);
c3279d14
AP
1332 }
1333}
1334EXPORT_SYMBOL(check_disk_size_change);
1335
0c002c2f 1336/**
57d1b536 1337 * revalidate_disk - wrapper for lower-level driver's revalidate_disk call-back
0c002c2f
AP
1338 * @disk: struct gendisk to be revalidated
1339 *
1340 * This routine is a wrapper for lower-level driver's revalidate_disk
1341 * call-backs. It is used to do common pre and post operations needed
1342 * for all revalidate_disk operations.
1343 */
1344int revalidate_disk(struct gendisk *disk)
1345{
c3279d14 1346 struct block_device *bdev;
0c002c2f
AP
1347 int ret = 0;
1348
1349 if (disk->fops->revalidate_disk)
1350 ret = disk->fops->revalidate_disk(disk);
c3279d14
AP
1351 bdev = bdget_disk(disk, 0);
1352 if (!bdev)
1353 return ret;
1354
1355 mutex_lock(&bdev->bd_mutex);
1356 check_disk_size_change(disk, bdev);
7630b661 1357 bdev->bd_invalidated = 0;
c3279d14
AP
1358 mutex_unlock(&bdev->bd_mutex);
1359 bdput(bdev);
0c002c2f
AP
1360 return ret;
1361}
1362EXPORT_SYMBOL(revalidate_disk);
1363
1da177e4
LT
1364/*
1365 * This routine checks whether a removable media has been changed,
1366 * and invalidates all buffer-cache-entries in that case. This
1367 * is a relatively slow routine, so we have to try to minimize using
1368 * it. Thus it is called only upon a 'mount' or 'open'. This
1369 * is the best way of combining speed and utility, I think.
1370 * People changing diskettes in the middle of an operation deserve
1371 * to lose :-)
1372 */
1373int check_disk_change(struct block_device *bdev)
1374{
1375 struct gendisk *disk = bdev->bd_disk;
83d5cde4 1376 const struct block_device_operations *bdops = disk->fops;
77ea887e 1377 unsigned int events;
1da177e4 1378
77ea887e
TH
1379 events = disk_clear_events(disk, DISK_EVENT_MEDIA_CHANGE |
1380 DISK_EVENT_EJECT_REQUEST);
1381 if (!(events & DISK_EVENT_MEDIA_CHANGE))
1da177e4
LT
1382 return 0;
1383
93b270f7 1384 flush_disk(bdev, true);
1da177e4
LT
1385 if (bdops->revalidate_disk)
1386 bdops->revalidate_disk(bdev->bd_disk);
1da177e4
LT
1387 return 1;
1388}
1389
1390EXPORT_SYMBOL(check_disk_change);
1391
1392void bd_set_size(struct block_device *bdev, loff_t size)
1393{
5955102c 1394 inode_lock(bdev->bd_inode);
d646a02a 1395 i_size_write(bdev->bd_inode, size);
5955102c 1396 inode_unlock(bdev->bd_inode);
1da177e4
LT
1397}
1398EXPORT_SYMBOL(bd_set_size);
1399
4385bab1 1400static void __blkdev_put(struct block_device *bdev, fmode_t mode, int for_part);
37be4124 1401
369c8c51
JK
1402static void bdev_disk_changed(struct block_device *bdev, bool invalidate)
1403{
87a71bb6
JK
1404 if (disk_part_scan_enabled(bdev->bd_disk)) {
1405 if (invalidate)
1406 invalidate_partitions(bdev->bd_disk, bdev);
1407 else
1408 rescan_partitions(bdev->bd_disk, bdev);
1409 } else {
1410 check_disk_size_change(bdev->bd_disk, bdev);
1411 bdev->bd_invalidated = 0;
1412 }
369c8c51
JK
1413}
1414
6d740cd5
PZ
1415/*
1416 * bd_mutex locking:
1417 *
1418 * mutex_lock(part->bd_mutex)
1419 * mutex_lock_nested(whole->bd_mutex, 1)
1420 */
1421
572c4892 1422static int __blkdev_get(struct block_device *bdev, fmode_t mode, int for_part)
1da177e4 1423{
1da177e4 1424 struct gendisk *disk;
523e1d39 1425 struct module *owner;
7db9cfd3 1426 int ret;
cf771cb5 1427 int partno;
fe6e9c1f
AV
1428 int perm = 0;
1429
572c4892 1430 if (mode & FMODE_READ)
fe6e9c1f 1431 perm |= MAY_READ;
572c4892 1432 if (mode & FMODE_WRITE)
fe6e9c1f
AV
1433 perm |= MAY_WRITE;
1434 /*
1435 * hooks: /n/, see "layering violations".
1436 */
b7300b78
CW
1437 if (!for_part) {
1438 ret = devcgroup_inode_permission(bdev->bd_inode, perm);
1439 if (ret != 0) {
1440 bdput(bdev);
1441 return ret;
1442 }
82666020 1443 }
7db9cfd3 1444
d3374825 1445 restart:
0762b8bd 1446
89f97496 1447 ret = -ENXIO;
cf771cb5 1448 disk = get_gendisk(bdev->bd_dev, &partno);
0762b8bd 1449 if (!disk)
6e9624b8 1450 goto out;
523e1d39 1451 owner = disk->fops->owner;
1da177e4 1452
69e02c59 1453 disk_block_events(disk);
6796bf54 1454 mutex_lock_nested(&bdev->bd_mutex, for_part);
1da177e4
LT
1455 if (!bdev->bd_openers) {
1456 bdev->bd_disk = disk;
87192a2a 1457 bdev->bd_queue = disk->queue;
1da177e4 1458 bdev->bd_contains = bdev;
c2ee070f 1459 bdev->bd_partno = partno;
03cdadb0 1460
cf771cb5 1461 if (!partno) {
89f97496
TH
1462 ret = -ENXIO;
1463 bdev->bd_part = disk_get_part(disk, partno);
1464 if (!bdev->bd_part)
1465 goto out_clear;
1466
1196f8b8 1467 ret = 0;
1da177e4 1468 if (disk->fops->open) {
572c4892 1469 ret = disk->fops->open(bdev, mode);
d3374825
N
1470 if (ret == -ERESTARTSYS) {
1471 /* Lost a race with 'disk' being
1472 * deleted, try again.
1473 * See md.c
1474 */
1475 disk_put_part(bdev->bd_part);
1476 bdev->bd_part = NULL;
d3374825 1477 bdev->bd_disk = NULL;
87192a2a 1478 bdev->bd_queue = NULL;
d3374825 1479 mutex_unlock(&bdev->bd_mutex);
69e02c59 1480 disk_unblock_events(disk);
69e02c59 1481 put_disk(disk);
523e1d39 1482 module_put(owner);
d3374825
N
1483 goto restart;
1484 }
1da177e4 1485 }
7e69723f 1486
c30974a1 1487 if (!ret) {
7e69723f 1488 bd_set_size(bdev,(loff_t)get_capacity(disk)<<9);
c30974a1
JK
1489 set_init_blocksize(bdev);
1490 }
7e69723f 1491
1196f8b8
TH
1492 /*
1493 * If the device is invalidated, rescan partition
1494 * if open succeeded or failed with -ENOMEDIUM.
1495 * The latter is necessary to prevent ghost
1496 * partitions on a removed medium.
1497 */
369c8c51
JK
1498 if (bdev->bd_invalidated &&
1499 (!ret || ret == -ENOMEDIUM))
1500 bdev_disk_changed(bdev, ret == -ENOMEDIUM);
5a023cdb 1501
1196f8b8
TH
1502 if (ret)
1503 goto out_clear;
1da177e4 1504 } else {
1da177e4
LT
1505 struct block_device *whole;
1506 whole = bdget_disk(disk, 0);
1507 ret = -ENOMEM;
1508 if (!whole)
0762b8bd 1509 goto out_clear;
37be4124 1510 BUG_ON(for_part);
572c4892 1511 ret = __blkdev_get(whole, mode, 1);
1da177e4 1512 if (ret)
0762b8bd 1513 goto out_clear;
1da177e4 1514 bdev->bd_contains = whole;
89f97496 1515 bdev->bd_part = disk_get_part(disk, partno);
e71bf0d0 1516 if (!(disk->flags & GENHD_FL_UP) ||
89f97496 1517 !bdev->bd_part || !bdev->bd_part->nr_sects) {
1da177e4 1518 ret = -ENXIO;
0762b8bd 1519 goto out_clear;
1da177e4 1520 }
89f97496 1521 bd_set_size(bdev, (loff_t)bdev->bd_part->nr_sects << 9);
c30974a1 1522 set_init_blocksize(bdev);
1da177e4 1523 }
03e26279
JK
1524
1525 if (bdev->bd_bdi == &noop_backing_dev_info)
1526 bdev->bd_bdi = bdi_get(disk->queue->backing_dev_info);
1da177e4 1527 } else {
1da177e4 1528 if (bdev->bd_contains == bdev) {
1196f8b8
TH
1529 ret = 0;
1530 if (bdev->bd_disk->fops->open)
572c4892 1531 ret = bdev->bd_disk->fops->open(bdev, mode);
1196f8b8 1532 /* the same as first opener case, read comment there */
369c8c51
JK
1533 if (bdev->bd_invalidated &&
1534 (!ret || ret == -ENOMEDIUM))
1535 bdev_disk_changed(bdev, ret == -ENOMEDIUM);
1196f8b8
TH
1536 if (ret)
1537 goto out_unlock_bdev;
1da177e4 1538 }
69e02c59 1539 /* only one opener holds refs to the module and disk */
69e02c59 1540 put_disk(disk);
523e1d39 1541 module_put(owner);
1da177e4
LT
1542 }
1543 bdev->bd_openers++;
37be4124
N
1544 if (for_part)
1545 bdev->bd_part_count++;
c039e313 1546 mutex_unlock(&bdev->bd_mutex);
69e02c59 1547 disk_unblock_events(disk);
1da177e4
LT
1548 return 0;
1549
0762b8bd 1550 out_clear:
89f97496 1551 disk_put_part(bdev->bd_part);
1da177e4 1552 bdev->bd_disk = NULL;
0762b8bd 1553 bdev->bd_part = NULL;
87192a2a 1554 bdev->bd_queue = NULL;
1da177e4 1555 if (bdev != bdev->bd_contains)
572c4892 1556 __blkdev_put(bdev->bd_contains, mode, 1);
1da177e4 1557 bdev->bd_contains = NULL;
0762b8bd 1558 out_unlock_bdev:
c039e313 1559 mutex_unlock(&bdev->bd_mutex);
69e02c59 1560 disk_unblock_events(disk);
0762b8bd 1561 put_disk(disk);
523e1d39 1562 module_put(owner);
4345caba 1563 out:
0762b8bd
TH
1564 bdput(bdev);
1565
1da177e4
LT
1566 return ret;
1567}
1568
d4d77629
TH
1569/**
1570 * blkdev_get - open a block device
1571 * @bdev: block_device to open
1572 * @mode: FMODE_* mask
1573 * @holder: exclusive holder identifier
1574 *
1575 * Open @bdev with @mode. If @mode includes %FMODE_EXCL, @bdev is
1576 * open with exclusive access. Specifying %FMODE_EXCL with %NULL
1577 * @holder is invalid. Exclusive opens may nest for the same @holder.
1578 *
1579 * On success, the reference count of @bdev is unchanged. On failure,
1580 * @bdev is put.
1581 *
1582 * CONTEXT:
1583 * Might sleep.
1584 *
1585 * RETURNS:
1586 * 0 on success, -errno on failure.
1587 */
e525fd89 1588int blkdev_get(struct block_device *bdev, fmode_t mode, void *holder)
1da177e4 1589{
e525fd89
TH
1590 struct block_device *whole = NULL;
1591 int res;
1592
1593 WARN_ON_ONCE((mode & FMODE_EXCL) && !holder);
1594
1595 if ((mode & FMODE_EXCL) && holder) {
1596 whole = bd_start_claiming(bdev, holder);
1597 if (IS_ERR(whole)) {
1598 bdput(bdev);
1599 return PTR_ERR(whole);
1600 }
1601 }
1602
1603 res = __blkdev_get(bdev, mode, 0);
1604
1605 if (whole) {
d4dc210f
TH
1606 struct gendisk *disk = whole->bd_disk;
1607
6a027eff 1608 /* finish claiming */
77ea887e 1609 mutex_lock(&bdev->bd_mutex);
6a027eff
TH
1610 spin_lock(&bdev_lock);
1611
77ea887e 1612 if (!res) {
6a027eff
TH
1613 BUG_ON(!bd_may_claim(bdev, whole, holder));
1614 /*
1615 * Note that for a whole device bd_holders
1616 * will be incremented twice, and bd_holder
1617 * will be set to bd_may_claim before being
1618 * set to holder
1619 */
1620 whole->bd_holders++;
1621 whole->bd_holder = bd_may_claim;
1622 bdev->bd_holders++;
1623 bdev->bd_holder = holder;
1624 }
1625
1626 /* tell others that we're done */
1627 BUG_ON(whole->bd_claiming != holder);
1628 whole->bd_claiming = NULL;
1629 wake_up_bit(&whole->bd_claiming, 0);
1630
1631 spin_unlock(&bdev_lock);
77ea887e
TH
1632
1633 /*
d4dc210f
TH
1634 * Block event polling for write claims if requested. Any
1635 * write holder makes the write_holder state stick until
1636 * all are released. This is good enough and tracking
1637 * individual writeable reference is too fragile given the
1638 * way @mode is used in blkdev_get/put().
77ea887e 1639 */
4c49ff3f
TH
1640 if (!res && (mode & FMODE_WRITE) && !bdev->bd_write_holder &&
1641 (disk->flags & GENHD_FL_BLOCK_EVENTS_ON_EXCL_WRITE)) {
77ea887e 1642 bdev->bd_write_holder = true;
d4dc210f 1643 disk_block_events(disk);
77ea887e
TH
1644 }
1645
1646 mutex_unlock(&bdev->bd_mutex);
6a027eff 1647 bdput(whole);
e525fd89
TH
1648 }
1649
1650 return res;
37be4124 1651}
1da177e4
LT
1652EXPORT_SYMBOL(blkdev_get);
1653
d4d77629
TH
1654/**
1655 * blkdev_get_by_path - open a block device by name
1656 * @path: path to the block device to open
1657 * @mode: FMODE_* mask
1658 * @holder: exclusive holder identifier
1659 *
1660 * Open the blockdevice described by the device file at @path. @mode
1661 * and @holder are identical to blkdev_get().
1662 *
1663 * On success, the returned block_device has reference count of one.
1664 *
1665 * CONTEXT:
1666 * Might sleep.
1667 *
1668 * RETURNS:
1669 * Pointer to block_device on success, ERR_PTR(-errno) on failure.
1670 */
1671struct block_device *blkdev_get_by_path(const char *path, fmode_t mode,
1672 void *holder)
1673{
1674 struct block_device *bdev;
b77dabf4 1675 int perm = 0;
d4d77629
TH
1676 int err;
1677
b77dabf4
SF
1678 if (mode & FMODE_READ)
1679 perm |= MAY_READ;
1680 if (mode & FMODE_WRITE)
1681 perm |= MAY_WRITE;
1682 bdev = lookup_bdev(path, perm);
d4d77629
TH
1683 if (IS_ERR(bdev))
1684 return bdev;
1685
1686 err = blkdev_get(bdev, mode, holder);
1687 if (err)
1688 return ERR_PTR(err);
1689
e51900f7
CE
1690 if ((mode & FMODE_WRITE) && bdev_read_only(bdev)) {
1691 blkdev_put(bdev, mode);
1692 return ERR_PTR(-EACCES);
1693 }
1694
d4d77629
TH
1695 return bdev;
1696}
1697EXPORT_SYMBOL(blkdev_get_by_path);
1698
1699/**
1700 * blkdev_get_by_dev - open a block device by device number
1701 * @dev: device number of block device to open
1702 * @mode: FMODE_* mask
1703 * @holder: exclusive holder identifier
1704 *
1705 * Open the blockdevice described by device number @dev. @mode and
1706 * @holder are identical to blkdev_get().
1707 *
1708 * Use it ONLY if you really do not have anything better - i.e. when
1709 * you are behind a truly sucky interface and all you are given is a
1710 * device number. _Never_ to be used for internal purposes. If you
1711 * ever need it - reconsider your API.
1712 *
1713 * On success, the returned block_device has reference count of one.
1714 *
1715 * CONTEXT:
1716 * Might sleep.
1717 *
1718 * RETURNS:
1719 * Pointer to block_device on success, ERR_PTR(-errno) on failure.
1720 */
1721struct block_device *blkdev_get_by_dev(dev_t dev, fmode_t mode, void *holder)
1722{
1723 struct block_device *bdev;
1724 int err;
1725
1726 bdev = bdget(dev);
1727 if (!bdev)
1728 return ERR_PTR(-ENOMEM);
1729
1730 err = blkdev_get(bdev, mode, holder);
1731 if (err)
1732 return ERR_PTR(err);
1733
1734 return bdev;
1735}
1736EXPORT_SYMBOL(blkdev_get_by_dev);
1737
1da177e4
LT
1738static int blkdev_open(struct inode * inode, struct file * filp)
1739{
1740 struct block_device *bdev;
1da177e4
LT
1741
1742 /*
1743 * Preserve backwards compatibility and allow large file access
1744 * even if userspace doesn't ask for it explicitly. Some mkfs
1745 * binary needs it. We might want to drop this workaround
1746 * during an unstable branch.
1747 */
1748 filp->f_flags |= O_LARGEFILE;
1749
c35fc7a5
CH
1750 filp->f_mode |= FMODE_NOWAIT;
1751
572c4892
AV
1752 if (filp->f_flags & O_NDELAY)
1753 filp->f_mode |= FMODE_NDELAY;
1754 if (filp->f_flags & O_EXCL)
1755 filp->f_mode |= FMODE_EXCL;
1756 if ((filp->f_flags & O_ACCMODE) == 3)
1757 filp->f_mode |= FMODE_WRITE_IOCTL;
1758
1da177e4 1759 bdev = bd_acquire(inode);
6a2aae06
PE
1760 if (bdev == NULL)
1761 return -ENOMEM;
1da177e4 1762
dbf2d0a4
SF
1763 /*
1764 * A negative i_writecount for bdev->bd_inode means that the bdev
1765 * or one of its paritions is mounted in a user namespace. Deny
1766 * writing for non-root in this case, otherwise an unprivileged
1767 * user can attack the kernel by modifying the backing store of a
1768 * mounted filesystem.
1769 */
1770 if ((filp->f_mode & FMODE_WRITE) &&
1771 !file_ns_capable(filp, &init_user_ns, CAP_SYS_ADMIN) &&
1772 !atomic_inc_unless_negative(&bdev->bd_inode->i_writecount)) {
1773 bdput(bdev);
1774 return -EBUSY;
1775 }
1776
572c4892 1777 filp->f_mapping = bdev->bd_inode->i_mapping;
5660e13d 1778 filp->f_wb_err = filemap_sample_wb_err(filp->f_mapping);
572c4892 1779
e525fd89 1780 return blkdev_get(bdev, filp->f_mode, filp);
1da177e4
LT
1781}
1782
4385bab1 1783static void __blkdev_put(struct block_device *bdev, fmode_t mode, int for_part)
2e7b651d 1784{
2e7b651d 1785 struct gendisk *disk = bdev->bd_disk;
37be4124 1786 struct block_device *victim = NULL;
2e7b651d 1787
6796bf54 1788 mutex_lock_nested(&bdev->bd_mutex, for_part);
37be4124
N
1789 if (for_part)
1790 bdev->bd_part_count--;
1791
2e7b651d 1792 if (!--bdev->bd_openers) {
6a027eff 1793 WARN_ON_ONCE(bdev->bd_holders);
2e7b651d
PZ
1794 sync_blockdev(bdev);
1795 kill_bdev(bdev);
43d1c0eb
ID
1796
1797 bdev_write_inode(bdev);
2e7b651d
PZ
1798 }
1799 if (bdev->bd_contains == bdev) {
1800 if (disk->fops->release)
db2a144b 1801 disk->fops->release(disk, mode);
2e7b651d
PZ
1802 }
1803 if (!bdev->bd_openers) {
1804 struct module *owner = disk->fops->owner;
1805
0762b8bd
TH
1806 disk_put_part(bdev->bd_part);
1807 bdev->bd_part = NULL;
2e7b651d 1808 bdev->bd_disk = NULL;
37be4124
N
1809 if (bdev != bdev->bd_contains)
1810 victim = bdev->bd_contains;
2e7b651d 1811 bdev->bd_contains = NULL;
523e1d39
TH
1812
1813 put_disk(disk);
1814 module_put(owner);
2e7b651d 1815 }
2e7b651d
PZ
1816 mutex_unlock(&bdev->bd_mutex);
1817 bdput(bdev);
37be4124 1818 if (victim)
9a1c3542 1819 __blkdev_put(victim, mode, 1);
2e7b651d
PZ
1820}
1821
4385bab1 1822void blkdev_put(struct block_device *bdev, fmode_t mode)
37be4124 1823{
85ef06d1
TH
1824 mutex_lock(&bdev->bd_mutex);
1825
e525fd89 1826 if (mode & FMODE_EXCL) {
6a027eff
TH
1827 bool bdev_free;
1828
1829 /*
1830 * Release a claim on the device. The holder fields
1831 * are protected with bdev_lock. bd_mutex is to
1832 * synchronize disk_holder unlinking.
1833 */
6a027eff
TH
1834 spin_lock(&bdev_lock);
1835
1836 WARN_ON_ONCE(--bdev->bd_holders < 0);
1837 WARN_ON_ONCE(--bdev->bd_contains->bd_holders < 0);
1838
1839 /* bd_contains might point to self, check in a separate step */
1840 if ((bdev_free = !bdev->bd_holders))
1841 bdev->bd_holder = NULL;
1842 if (!bdev->bd_contains->bd_holders)
1843 bdev->bd_contains->bd_holder = NULL;
1844
1845 spin_unlock(&bdev_lock);
1846
77ea887e
TH
1847 /*
1848 * If this was the last claim, remove holder link and
1849 * unblock evpoll if it was a write holder.
1850 */
85ef06d1
TH
1851 if (bdev_free && bdev->bd_write_holder) {
1852 disk_unblock_events(bdev->bd_disk);
1853 bdev->bd_write_holder = false;
77ea887e 1854 }
6936217c 1855 }
77ea887e 1856
85ef06d1
TH
1857 /*
1858 * Trigger event checking and tell drivers to flush MEDIA_CHANGE
1859 * event. This is to ensure detection of media removal commanded
1860 * from userland - e.g. eject(1).
1861 */
1862 disk_flush_events(bdev->bd_disk, DISK_EVENT_MEDIA_CHANGE);
1863
1864 mutex_unlock(&bdev->bd_mutex);
1865
4385bab1 1866 __blkdev_put(bdev, mode, 0);
37be4124 1867}
2e7b651d
PZ
1868EXPORT_SYMBOL(blkdev_put);
1869
1da177e4
LT
1870static int blkdev_close(struct inode * inode, struct file * filp)
1871{
4ebb16ca 1872 struct block_device *bdev = I_BDEV(bdev_file_inode(filp));
dbf2d0a4
SF
1873 if (filp->f_mode & FMODE_WRITE &&
1874 !file_ns_capable(filp, &init_user_ns, CAP_SYS_ADMIN))
1875 atomic_dec(&bdev->bd_inode->i_writecount);
4385bab1
AV
1876 blkdev_put(bdev, filp->f_mode);
1877 return 0;
1da177e4
LT
1878}
1879
bb93e3a5 1880static long block_ioctl(struct file *file, unsigned cmd, unsigned long arg)
1da177e4 1881{
4ebb16ca 1882 struct block_device *bdev = I_BDEV(bdev_file_inode(file));
56b26add 1883 fmode_t mode = file->f_mode;
fd4ce1ac
CH
1884
1885 /*
1886 * O_NDELAY can be altered using fcntl(.., F_SETFL, ..), so we have
1887 * to updated it before every ioctl.
1888 */
56b26add 1889 if (file->f_flags & O_NDELAY)
fd4ce1ac
CH
1890 mode |= FMODE_NDELAY;
1891 else
1892 mode &= ~FMODE_NDELAY;
1893
56b26add 1894 return blkdev_ioctl(bdev, mode, cmd, arg);
1da177e4
LT
1895}
1896
eef99380
CH
1897/*
1898 * Write data to the block device. Only intended for the block device itself
1899 * and the raw driver which basically is a fake block device.
1900 *
1901 * Does not take i_mutex for the write and thus is not for general purpose
1902 * use.
1903 */
1456c0a8 1904ssize_t blkdev_write_iter(struct kiocb *iocb, struct iov_iter *from)
eef99380
CH
1905{
1906 struct file *file = iocb->ki_filp;
4ebb16ca 1907 struct inode *bd_inode = bdev_file_inode(file);
7ec7b94a 1908 loff_t size = i_size_read(bd_inode);
53362a05 1909 struct blk_plug plug;
eef99380 1910 ssize_t ret;
5f380c7f 1911
7ec7b94a
AV
1912 if (bdev_read_only(I_BDEV(bd_inode)))
1913 return -EPERM;
5f380c7f 1914
7ec7b94a 1915 if (!iov_iter_count(from))
5f380c7f
AV
1916 return 0;
1917
7ec7b94a
AV
1918 if (iocb->ki_pos >= size)
1919 return -ENOSPC;
1920
c35fc7a5
CH
1921 if ((iocb->ki_flags & (IOCB_NOWAIT | IOCB_DIRECT)) == IOCB_NOWAIT)
1922 return -EOPNOTSUPP;
1923
7ec7b94a 1924 iov_iter_truncate(from, size - iocb->ki_pos);
eef99380 1925
53362a05 1926 blk_start_plug(&plug);
1456c0a8 1927 ret = __generic_file_write_iter(iocb, from);
e2592217
CH
1928 if (ret > 0)
1929 ret = generic_write_sync(iocb, ret);
53362a05 1930 blk_finish_plug(&plug);
eef99380
CH
1931 return ret;
1932}
1456c0a8 1933EXPORT_SYMBOL_GPL(blkdev_write_iter);
eef99380 1934
b2de525f 1935ssize_t blkdev_read_iter(struct kiocb *iocb, struct iov_iter *to)
684c9aae
LT
1936{
1937 struct file *file = iocb->ki_filp;
4ebb16ca 1938 struct inode *bd_inode = bdev_file_inode(file);
684c9aae 1939 loff_t size = i_size_read(bd_inode);
a886038b 1940 loff_t pos = iocb->ki_pos;
684c9aae
LT
1941
1942 if (pos >= size)
1943 return 0;
1944
1945 size -= pos;
a886038b
AV
1946 iov_iter_truncate(to, size);
1947 return generic_file_read_iter(iocb, to);
684c9aae 1948}
b2de525f 1949EXPORT_SYMBOL_GPL(blkdev_read_iter);
684c9aae 1950
87d8fe1e
TT
1951/*
1952 * Try to release a page associated with block device when the system
1953 * is under memory pressure.
1954 */
1955static int blkdev_releasepage(struct page *page, gfp_t wait)
1956{
1957 struct super_block *super = BDEV_I(page->mapping->host)->bdev.bd_super;
1958
1959 if (super && super->s_op->bdev_try_to_free_page)
1960 return super->s_op->bdev_try_to_free_page(super, page, wait);
1961
1962 return try_to_free_buffers(page);
1963}
1964
7f6d5b52
RZ
1965static int blkdev_writepages(struct address_space *mapping,
1966 struct writeback_control *wbc)
1967{
1968 if (dax_mapping(mapping)) {
1969 struct block_device *bdev = I_BDEV(mapping->host);
1970
1971 return dax_writeback_mapping_range(mapping, bdev, wbc);
1972 }
1973 return generic_writepages(mapping, wbc);
1974}
1975
4c54ac62 1976static const struct address_space_operations def_blk_aops = {
1da177e4 1977 .readpage = blkdev_readpage,
447f05bb 1978 .readpages = blkdev_readpages,
1da177e4 1979 .writepage = blkdev_writepage,
6272b5a5
NP
1980 .write_begin = blkdev_write_begin,
1981 .write_end = blkdev_write_end,
7f6d5b52 1982 .writepages = blkdev_writepages,
87d8fe1e 1983 .releasepage = blkdev_releasepage,
1da177e4 1984 .direct_IO = blkdev_direct_IO,
b4597226 1985 .is_dirty_writeback = buffer_check_dirty_writeback,
1da177e4
LT
1986};
1987
25f4c414
DW
1988#define BLKDEV_FALLOC_FL_SUPPORTED \
1989 (FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE | \
1990 FALLOC_FL_ZERO_RANGE | FALLOC_FL_NO_HIDE_STALE)
1991
1992static long blkdev_fallocate(struct file *file, int mode, loff_t start,
1993 loff_t len)
1994{
1995 struct block_device *bdev = I_BDEV(bdev_file_inode(file));
25f4c414
DW
1996 struct address_space *mapping;
1997 loff_t end = start + len - 1;
1998 loff_t isize;
1999 int error;
2000
2001 /* Fail if we don't recognize the flags. */
2002 if (mode & ~BLKDEV_FALLOC_FL_SUPPORTED)
2003 return -EOPNOTSUPP;
2004
2005 /* Don't go off the end of the device. */
2006 isize = i_size_read(bdev->bd_inode);
2007 if (start >= isize)
2008 return -EINVAL;
2009 if (end >= isize) {
2010 if (mode & FALLOC_FL_KEEP_SIZE) {
2011 len = isize - start;
2012 end = start + len - 1;
2013 } else
2014 return -EINVAL;
2015 }
2016
2017 /*
2018 * Don't allow IO that isn't aligned to logical block size.
2019 */
2020 if ((start | len) & (bdev_logical_block_size(bdev) - 1))
2021 return -EINVAL;
2022
2023 /* Invalidate the page cache, including dirty pages. */
2024 mapping = bdev->bd_inode->i_mapping;
2025 truncate_inode_pages_range(mapping, start, end);
2026
2027 switch (mode) {
2028 case FALLOC_FL_ZERO_RANGE:
2029 case FALLOC_FL_ZERO_RANGE | FALLOC_FL_KEEP_SIZE:
2030 error = blkdev_issue_zeroout(bdev, start >> 9, len >> 9,
ee472d83 2031 GFP_KERNEL, BLKDEV_ZERO_NOUNMAP);
25f4c414
DW
2032 break;
2033 case FALLOC_FL_PUNCH_HOLE | FALLOC_FL_KEEP_SIZE:
34045129
CH
2034 error = blkdev_issue_zeroout(bdev, start >> 9, len >> 9,
2035 GFP_KERNEL, BLKDEV_ZERO_NOFALLBACK);
25f4c414
DW
2036 break;
2037 case FALLOC_FL_PUNCH_HOLE | FALLOC_FL_KEEP_SIZE | FALLOC_FL_NO_HIDE_STALE:
25f4c414
DW
2038 error = blkdev_issue_discard(bdev, start >> 9, len >> 9,
2039 GFP_KERNEL, 0);
2040 break;
2041 default:
2042 return -EOPNOTSUPP;
2043 }
2044 if (error)
2045 return error;
2046
2047 /*
2048 * Invalidate again; if someone wandered in and dirtied a page,
2049 * the caller will be given -EBUSY. The third argument is
2050 * inclusive, so the rounding here is safe.
2051 */
2052 return invalidate_inode_pages2_range(mapping,
2053 start >> PAGE_SHIFT,
2054 end >> PAGE_SHIFT);
2055}
2056
4b6f5d20 2057const struct file_operations def_blk_fops = {
1da177e4
LT
2058 .open = blkdev_open,
2059 .release = blkdev_close,
2060 .llseek = block_llseek,
a886038b 2061 .read_iter = blkdev_read_iter,
1456c0a8 2062 .write_iter = blkdev_write_iter,
acc93d30 2063 .mmap = generic_file_mmap,
b1dd3b28 2064 .fsync = blkdev_fsync,
bb93e3a5 2065 .unlocked_ioctl = block_ioctl,
1da177e4
LT
2066#ifdef CONFIG_COMPAT
2067 .compat_ioctl = compat_blkdev_ioctl,
2068#endif
1e8b3332 2069 .splice_read = generic_file_splice_read,
8d020765 2070 .splice_write = iter_file_splice_write,
25f4c414 2071 .fallocate = blkdev_fallocate,
1da177e4
LT
2072};
2073
2074int ioctl_by_bdev(struct block_device *bdev, unsigned cmd, unsigned long arg)
2075{
2076 int res;
2077 mm_segment_t old_fs = get_fs();
2078 set_fs(KERNEL_DS);
56b26add 2079 res = blkdev_ioctl(bdev, 0, cmd, arg);
1da177e4
LT
2080 set_fs(old_fs);
2081 return res;
2082}
2083
2084EXPORT_SYMBOL(ioctl_by_bdev);
2085
2086/**
2087 * lookup_bdev - lookup a struct block_device by name
94e2959e 2088 * @pathname: special file representing the block device
6bdf7d68 2089 * @mask: rights to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
1da177e4 2090 *
57d1b536 2091 * Get a reference to the blockdevice at @pathname in the current
1da177e4 2092 * namespace if possible and return it. Return ERR_PTR(error)
6bdf7d68
SF
2093 * otherwise. If @mask is non-zero, check for access rights to the
2094 * inode at @pathname.
1da177e4 2095 */
6bdf7d68 2096struct block_device *lookup_bdev(const char *pathname, int mask)
1da177e4
LT
2097{
2098 struct block_device *bdev;
2099 struct inode *inode;
421748ec 2100 struct path path;
1da177e4
LT
2101 int error;
2102
421748ec 2103 if (!pathname || !*pathname)
1da177e4
LT
2104 return ERR_PTR(-EINVAL);
2105
421748ec 2106 error = kern_path(pathname, LOOKUP_FOLLOW, &path);
1da177e4
LT
2107 if (error)
2108 return ERR_PTR(error);
2109
bb668734 2110 inode = d_backing_inode(path.dentry);
6bdf7d68
SF
2111 if (mask != 0 && !capable(CAP_SYS_ADMIN)) {
2112 error = __inode_permission(inode, mask);
2113 if (error)
2114 goto fail;
2115 }
1da177e4
LT
2116 error = -ENOTBLK;
2117 if (!S_ISBLK(inode->i_mode))
2118 goto fail;
2119 error = -EACCES;
a2982cc9 2120 if (!may_open_dev(&path))
1da177e4
LT
2121 goto fail;
2122 error = -ENOMEM;
2123 bdev = bd_acquire(inode);
2124 if (!bdev)
2125 goto fail;
2126out:
421748ec 2127 path_put(&path);
1da177e4
LT
2128 return bdev;
2129fail:
2130 bdev = ERR_PTR(error);
2131 goto out;
2132}
d5686b44 2133EXPORT_SYMBOL(lookup_bdev);
1da177e4 2134
93b270f7 2135int __invalidate_device(struct block_device *bdev, bool kill_dirty)
b71e8a4c
DH
2136{
2137 struct super_block *sb = get_super(bdev);
2138 int res = 0;
2139
2140 if (sb) {
2141 /*
2142 * no need to lock the super, get_super holds the
2143 * read mutex so the filesystem cannot go away
2144 * under us (->put_super runs with the write lock
2145 * hold).
2146 */
2147 shrink_dcache_sb(sb);
93b270f7 2148 res = invalidate_inodes(sb, kill_dirty);
b71e8a4c
DH
2149 drop_super(sb);
2150 }
f98393a6 2151 invalidate_bdev(bdev);
b71e8a4c
DH
2152 return res;
2153}
2154EXPORT_SYMBOL(__invalidate_device);
5c0d6b60
JK
2155
2156void iterate_bdevs(void (*func)(struct block_device *, void *), void *arg)
2157{
2158 struct inode *inode, *old_inode = NULL;
2159
74278da9 2160 spin_lock(&blockdev_superblock->s_inode_list_lock);
5c0d6b60
JK
2161 list_for_each_entry(inode, &blockdev_superblock->s_inodes, i_sb_list) {
2162 struct address_space *mapping = inode->i_mapping;
af309226 2163 struct block_device *bdev;
5c0d6b60
JK
2164
2165 spin_lock(&inode->i_lock);
2166 if (inode->i_state & (I_FREEING|I_WILL_FREE|I_NEW) ||
2167 mapping->nrpages == 0) {
2168 spin_unlock(&inode->i_lock);
2169 continue;
2170 }
2171 __iget(inode);
2172 spin_unlock(&inode->i_lock);
74278da9 2173 spin_unlock(&blockdev_superblock->s_inode_list_lock);
5c0d6b60
JK
2174 /*
2175 * We hold a reference to 'inode' so it couldn't have been
2176 * removed from s_inodes list while we dropped the
74278da9 2177 * s_inode_list_lock We cannot iput the inode now as we can
5c0d6b60 2178 * be holding the last reference and we cannot iput it under
74278da9 2179 * s_inode_list_lock. So we keep the reference and iput it
5c0d6b60
JK
2180 * later.
2181 */
2182 iput(old_inode);
2183 old_inode = inode;
af309226 2184 bdev = I_BDEV(inode);
5c0d6b60 2185
af309226
RV
2186 mutex_lock(&bdev->bd_mutex);
2187 if (bdev->bd_openers)
2188 func(bdev, arg);
2189 mutex_unlock(&bdev->bd_mutex);
5c0d6b60 2190
74278da9 2191 spin_lock(&blockdev_superblock->s_inode_list_lock);
5c0d6b60 2192 }
74278da9 2193 spin_unlock(&blockdev_superblock->s_inode_list_lock);
5c0d6b60
JK
2194 iput(old_inode);
2195}