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