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