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