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