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