1 // SPDX-License-Identifier: GPL-2.0-only
5 * Copyright (C) 1991, 1992 Linus Torvalds
6 * Copyright (C) 2001 Andrea Arcangeli <andrea@suse.de> SuSE
9 #include <linux/init.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/dax.h>
23 #include <linux/buffer_head.h>
24 #include <linux/swap.h>
25 #include <linux/pagevec.h>
26 #include <linux/writeback.h>
27 #include <linux/mpage.h>
28 #include <linux/mount.h>
29 #include <linux/pseudo_fs.h>
30 #include <linux/uio.h>
31 #include <linux/namei.h>
32 #include <linux/log2.h>
33 #include <linux/cleancache.h>
34 #include <linux/task_io_accounting_ops.h>
35 #include <linux/falloc.h>
36 #include <linux/uaccess.h>
37 #include <linux/suspend.h>
41 struct block_device bdev
;
42 struct inode vfs_inode
;
45 static const struct address_space_operations def_blk_aops
;
47 static inline struct bdev_inode
*BDEV_I(struct inode
*inode
)
49 return container_of(inode
, struct bdev_inode
, vfs_inode
);
52 struct block_device
*I_BDEV(struct inode
*inode
)
54 return &BDEV_I(inode
)->bdev
;
56 EXPORT_SYMBOL(I_BDEV
);
58 static void bdev_write_inode(struct block_device
*bdev
)
60 struct inode
*inode
= bdev
->bd_inode
;
63 spin_lock(&inode
->i_lock
);
64 while (inode
->i_state
& I_DIRTY
) {
65 spin_unlock(&inode
->i_lock
);
66 ret
= write_inode_now(inode
, true);
68 char name
[BDEVNAME_SIZE
];
69 pr_warn_ratelimited("VFS: Dirty inode writeback failed "
70 "for block device %s (err=%d).\n",
71 bdevname(bdev
, name
), ret
);
73 spin_lock(&inode
->i_lock
);
75 spin_unlock(&inode
->i_lock
);
78 /* Kill _all_ buffers and pagecache , dirty or not.. */
79 void kill_bdev(struct block_device
*bdev
)
81 struct address_space
*mapping
= bdev
->bd_inode
->i_mapping
;
83 if (mapping
->nrpages
== 0 && mapping
->nrexceptional
== 0)
87 truncate_inode_pages(mapping
, 0);
89 EXPORT_SYMBOL(kill_bdev
);
91 /* Invalidate clean unused buffers and pagecache. */
92 void invalidate_bdev(struct block_device
*bdev
)
94 struct address_space
*mapping
= bdev
->bd_inode
->i_mapping
;
96 if (mapping
->nrpages
) {
98 lru_add_drain_all(); /* make sure all lru add caches are flushed */
99 invalidate_mapping_pages(mapping
, 0, -1);
101 /* 99% of the time, we don't need to flush the cleancache on the bdev.
102 * But, for the strange corners, lets be cautious
104 cleancache_invalidate_inode(mapping
);
106 EXPORT_SYMBOL(invalidate_bdev
);
108 static void set_init_blocksize(struct block_device
*bdev
)
110 unsigned bsize
= bdev_logical_block_size(bdev
);
111 loff_t size
= i_size_read(bdev
->bd_inode
);
113 while (bsize
< PAGE_SIZE
) {
118 bdev
->bd_block_size
= bsize
;
119 bdev
->bd_inode
->i_blkbits
= blksize_bits(bsize
);
122 int set_blocksize(struct block_device
*bdev
, int size
)
124 /* Size must be a power of two, and between 512 and PAGE_SIZE */
125 if (size
> PAGE_SIZE
|| size
< 512 || !is_power_of_2(size
))
128 /* Size cannot be smaller than the size supported by the device */
129 if (size
< bdev_logical_block_size(bdev
))
132 /* Don't change the size if it is same as current */
133 if (bdev
->bd_block_size
!= size
) {
135 bdev
->bd_block_size
= size
;
136 bdev
->bd_inode
->i_blkbits
= blksize_bits(size
);
142 EXPORT_SYMBOL(set_blocksize
);
144 int sb_set_blocksize(struct super_block
*sb
, int size
)
146 if (set_blocksize(sb
->s_bdev
, size
))
148 /* If we get here, we know size is power of two
149 * and it's value is between 512 and PAGE_SIZE */
150 sb
->s_blocksize
= size
;
151 sb
->s_blocksize_bits
= blksize_bits(size
);
152 return sb
->s_blocksize
;
155 EXPORT_SYMBOL(sb_set_blocksize
);
157 int sb_min_blocksize(struct super_block
*sb
, int size
)
159 int minsize
= bdev_logical_block_size(sb
->s_bdev
);
162 return sb_set_blocksize(sb
, size
);
165 EXPORT_SYMBOL(sb_min_blocksize
);
168 blkdev_get_block(struct inode
*inode
, sector_t iblock
,
169 struct buffer_head
*bh
, int create
)
171 bh
->b_bdev
= I_BDEV(inode
);
172 bh
->b_blocknr
= iblock
;
173 set_buffer_mapped(bh
);
177 static struct inode
*bdev_file_inode(struct file
*file
)
179 return file
->f_mapping
->host
;
182 static unsigned int dio_bio_write_op(struct kiocb
*iocb
)
184 unsigned int op
= REQ_OP_WRITE
| REQ_SYNC
| REQ_IDLE
;
186 /* avoid the need for a I/O completion work item */
187 if (iocb
->ki_flags
& IOCB_DSYNC
)
192 #define DIO_INLINE_BIO_VECS 4
194 static void blkdev_bio_end_io_simple(struct bio
*bio
)
196 struct task_struct
*waiter
= bio
->bi_private
;
198 WRITE_ONCE(bio
->bi_private
, NULL
);
199 blk_wake_io_task(waiter
);
203 __blkdev_direct_IO_simple(struct kiocb
*iocb
, struct iov_iter
*iter
,
206 struct file
*file
= iocb
->ki_filp
;
207 struct block_device
*bdev
= I_BDEV(bdev_file_inode(file
));
208 struct bio_vec inline_vecs
[DIO_INLINE_BIO_VECS
], *vecs
;
209 loff_t pos
= iocb
->ki_pos
;
210 bool should_dirty
= false;
215 if ((pos
| iov_iter_alignment(iter
)) &
216 (bdev_logical_block_size(bdev
) - 1))
219 if (nr_pages
<= DIO_INLINE_BIO_VECS
)
222 vecs
= kmalloc_array(nr_pages
, sizeof(struct bio_vec
),
228 bio_init(&bio
, vecs
, nr_pages
);
229 bio_set_dev(&bio
, bdev
);
230 bio
.bi_iter
.bi_sector
= pos
>> 9;
231 bio
.bi_write_hint
= iocb
->ki_hint
;
232 bio
.bi_private
= current
;
233 bio
.bi_end_io
= blkdev_bio_end_io_simple
;
234 bio
.bi_ioprio
= iocb
->ki_ioprio
;
236 ret
= bio_iov_iter_get_pages(&bio
, iter
);
239 ret
= bio
.bi_iter
.bi_size
;
241 if (iov_iter_rw(iter
) == READ
) {
242 bio
.bi_opf
= REQ_OP_READ
;
243 if (iter_is_iovec(iter
))
246 bio
.bi_opf
= dio_bio_write_op(iocb
);
247 task_io_account_write(ret
);
249 if (iocb
->ki_flags
& IOCB_HIPRI
)
250 bio_set_polled(&bio
, iocb
);
252 qc
= submit_bio(&bio
);
254 set_current_state(TASK_UNINTERRUPTIBLE
);
255 if (!READ_ONCE(bio
.bi_private
))
257 if (!(iocb
->ki_flags
& IOCB_HIPRI
) ||
258 !blk_poll(bdev_get_queue(bdev
), qc
, true))
261 __set_current_state(TASK_RUNNING
);
263 bio_release_pages(&bio
, should_dirty
);
264 if (unlikely(bio
.bi_status
))
265 ret
= blk_status_to_errno(bio
.bi_status
);
268 if (vecs
!= inline_vecs
)
279 struct task_struct
*waiter
;
284 bool should_dirty
: 1;
289 static struct bio_set blkdev_dio_pool
;
291 static int blkdev_iopoll(struct kiocb
*kiocb
, bool wait
)
293 struct block_device
*bdev
= I_BDEV(kiocb
->ki_filp
->f_mapping
->host
);
294 struct request_queue
*q
= bdev_get_queue(bdev
);
296 return blk_poll(q
, READ_ONCE(kiocb
->ki_cookie
), wait
);
299 static void blkdev_bio_end_io(struct bio
*bio
)
301 struct blkdev_dio
*dio
= bio
->bi_private
;
302 bool should_dirty
= dio
->should_dirty
;
304 if (bio
->bi_status
&& !dio
->bio
.bi_status
)
305 dio
->bio
.bi_status
= bio
->bi_status
;
307 if (!dio
->multi_bio
|| atomic_dec_and_test(&dio
->ref
)) {
309 struct kiocb
*iocb
= dio
->iocb
;
312 if (likely(!dio
->bio
.bi_status
)) {
316 ret
= blk_status_to_errno(dio
->bio
.bi_status
);
319 dio
->iocb
->ki_complete(iocb
, ret
, 0);
323 struct task_struct
*waiter
= dio
->waiter
;
325 WRITE_ONCE(dio
->waiter
, NULL
);
326 blk_wake_io_task(waiter
);
331 bio_check_pages_dirty(bio
);
333 bio_release_pages(bio
, false);
339 __blkdev_direct_IO(struct kiocb
*iocb
, struct iov_iter
*iter
, int nr_pages
)
341 struct file
*file
= iocb
->ki_filp
;
342 struct inode
*inode
= bdev_file_inode(file
);
343 struct block_device
*bdev
= I_BDEV(inode
);
344 struct blk_plug plug
;
345 struct blkdev_dio
*dio
;
347 bool is_poll
= (iocb
->ki_flags
& IOCB_HIPRI
) != 0;
348 bool is_read
= (iov_iter_rw(iter
) == READ
), is_sync
;
349 loff_t pos
= iocb
->ki_pos
;
350 blk_qc_t qc
= BLK_QC_T_NONE
;
353 if ((pos
| iov_iter_alignment(iter
)) &
354 (bdev_logical_block_size(bdev
) - 1))
357 bio
= bio_alloc_bioset(GFP_KERNEL
, nr_pages
, &blkdev_dio_pool
);
359 dio
= container_of(bio
, struct blkdev_dio
, bio
);
360 dio
->is_sync
= is_sync
= is_sync_kiocb(iocb
);
362 dio
->waiter
= current
;
369 dio
->multi_bio
= false;
370 dio
->should_dirty
= is_read
&& iter_is_iovec(iter
);
373 * Don't plug for HIPRI/polled IO, as those should go straight
377 blk_start_plug(&plug
);
380 bio_set_dev(bio
, bdev
);
381 bio
->bi_iter
.bi_sector
= pos
>> 9;
382 bio
->bi_write_hint
= iocb
->ki_hint
;
383 bio
->bi_private
= dio
;
384 bio
->bi_end_io
= blkdev_bio_end_io
;
385 bio
->bi_ioprio
= iocb
->ki_ioprio
;
387 ret
= bio_iov_iter_get_pages(bio
, iter
);
389 bio
->bi_status
= BLK_STS_IOERR
;
395 bio
->bi_opf
= REQ_OP_READ
;
396 if (dio
->should_dirty
)
397 bio_set_pages_dirty(bio
);
399 bio
->bi_opf
= dio_bio_write_op(iocb
);
400 task_io_account_write(bio
->bi_iter
.bi_size
);
403 dio
->size
+= bio
->bi_iter
.bi_size
;
404 pos
+= bio
->bi_iter
.bi_size
;
406 nr_pages
= iov_iter_npages(iter
, BIO_MAX_PAGES
);
410 if (iocb
->ki_flags
& IOCB_HIPRI
) {
411 bio_set_polled(bio
, iocb
);
415 qc
= submit_bio(bio
);
418 WRITE_ONCE(iocb
->ki_cookie
, qc
);
422 if (!dio
->multi_bio
) {
424 * AIO needs an extra reference to ensure the dio
425 * structure which is embedded into the first bio
430 dio
->multi_bio
= true;
431 atomic_set(&dio
->ref
, 2);
433 atomic_inc(&dio
->ref
);
437 bio
= bio_alloc(GFP_KERNEL
, nr_pages
);
441 blk_finish_plug(&plug
);
447 set_current_state(TASK_UNINTERRUPTIBLE
);
448 if (!READ_ONCE(dio
->waiter
))
451 if (!(iocb
->ki_flags
& IOCB_HIPRI
) ||
452 !blk_poll(bdev_get_queue(bdev
), qc
, true))
455 __set_current_state(TASK_RUNNING
);
458 ret
= blk_status_to_errno(dio
->bio
.bi_status
);
467 blkdev_direct_IO(struct kiocb
*iocb
, struct iov_iter
*iter
)
471 nr_pages
= iov_iter_npages(iter
, BIO_MAX_PAGES
+ 1);
474 if (is_sync_kiocb(iocb
) && nr_pages
<= BIO_MAX_PAGES
)
475 return __blkdev_direct_IO_simple(iocb
, iter
, nr_pages
);
477 return __blkdev_direct_IO(iocb
, iter
, min(nr_pages
, BIO_MAX_PAGES
));
480 static __init
int blkdev_init(void)
482 return bioset_init(&blkdev_dio_pool
, 4, offsetof(struct blkdev_dio
, bio
), BIOSET_NEED_BVECS
);
484 module_init(blkdev_init
);
486 int __sync_blockdev(struct block_device
*bdev
, int wait
)
491 return filemap_flush(bdev
->bd_inode
->i_mapping
);
492 return filemap_write_and_wait(bdev
->bd_inode
->i_mapping
);
496 * Write out and wait upon all the dirty data associated with a block
497 * device via its mapping. Does not take the superblock lock.
499 int sync_blockdev(struct block_device
*bdev
)
501 return __sync_blockdev(bdev
, 1);
503 EXPORT_SYMBOL(sync_blockdev
);
506 * Write out and wait upon all dirty data associated with this
507 * device. Filesystem data as well as the underlying block
508 * device. Takes the superblock lock.
510 int fsync_bdev(struct block_device
*bdev
)
512 struct super_block
*sb
= get_super(bdev
);
514 int res
= sync_filesystem(sb
);
518 return sync_blockdev(bdev
);
520 EXPORT_SYMBOL(fsync_bdev
);
523 * freeze_bdev -- lock a filesystem and force it into a consistent state
524 * @bdev: blockdevice to lock
526 * If a superblock is found on this device, we take the s_umount semaphore
527 * on it to make sure nobody unmounts until the snapshot creation is done.
528 * The reference counter (bd_fsfreeze_count) guarantees that only the last
529 * unfreeze process can unfreeze the frozen filesystem actually when multiple
530 * freeze requests arrive simultaneously. It counts up in freeze_bdev() and
531 * count down in thaw_bdev(). When it becomes 0, thaw_bdev() will unfreeze
534 struct super_block
*freeze_bdev(struct block_device
*bdev
)
536 struct super_block
*sb
;
539 mutex_lock(&bdev
->bd_fsfreeze_mutex
);
540 if (++bdev
->bd_fsfreeze_count
> 1) {
542 * We don't even need to grab a reference - the first call
543 * to freeze_bdev grab an active reference and only the last
544 * thaw_bdev drops it.
546 sb
= get_super(bdev
);
549 mutex_unlock(&bdev
->bd_fsfreeze_mutex
);
553 sb
= get_active_super(bdev
);
556 if (sb
->s_op
->freeze_super
)
557 error
= sb
->s_op
->freeze_super(sb
);
559 error
= freeze_super(sb
);
561 deactivate_super(sb
);
562 bdev
->bd_fsfreeze_count
--;
563 mutex_unlock(&bdev
->bd_fsfreeze_mutex
);
564 return ERR_PTR(error
);
566 deactivate_super(sb
);
569 mutex_unlock(&bdev
->bd_fsfreeze_mutex
);
570 return sb
; /* thaw_bdev releases s->s_umount */
572 EXPORT_SYMBOL(freeze_bdev
);
575 * thaw_bdev -- unlock filesystem
576 * @bdev: blockdevice to unlock
577 * @sb: associated superblock
579 * Unlocks the filesystem and marks it writeable again after freeze_bdev().
581 int thaw_bdev(struct block_device
*bdev
, struct super_block
*sb
)
585 mutex_lock(&bdev
->bd_fsfreeze_mutex
);
586 if (!bdev
->bd_fsfreeze_count
)
590 if (--bdev
->bd_fsfreeze_count
> 0)
596 if (sb
->s_op
->thaw_super
)
597 error
= sb
->s_op
->thaw_super(sb
);
599 error
= thaw_super(sb
);
601 bdev
->bd_fsfreeze_count
++;
603 mutex_unlock(&bdev
->bd_fsfreeze_mutex
);
606 EXPORT_SYMBOL(thaw_bdev
);
608 static int blkdev_writepage(struct page
*page
, struct writeback_control
*wbc
)
610 return block_write_full_page(page
, blkdev_get_block
, wbc
);
613 static int blkdev_readpage(struct file
* file
, struct page
* page
)
615 return block_read_full_page(page
, blkdev_get_block
);
618 static int blkdev_readpages(struct file
*file
, struct address_space
*mapping
,
619 struct list_head
*pages
, unsigned nr_pages
)
621 return mpage_readpages(mapping
, pages
, nr_pages
, blkdev_get_block
);
624 static int blkdev_write_begin(struct file
*file
, struct address_space
*mapping
,
625 loff_t pos
, unsigned len
, unsigned flags
,
626 struct page
**pagep
, void **fsdata
)
628 return block_write_begin(mapping
, pos
, len
, flags
, pagep
,
632 static int blkdev_write_end(struct file
*file
, struct address_space
*mapping
,
633 loff_t pos
, unsigned len
, unsigned copied
,
634 struct page
*page
, void *fsdata
)
637 ret
= block_write_end(file
, mapping
, pos
, len
, copied
, page
, fsdata
);
647 * for a block special file file_inode(file)->i_size is zero
648 * so we compute the size by hand (just as in block_read/write above)
650 static loff_t
block_llseek(struct file
*file
, loff_t offset
, int whence
)
652 struct inode
*bd_inode
= bdev_file_inode(file
);
655 inode_lock(bd_inode
);
656 retval
= fixed_size_llseek(file
, offset
, whence
, i_size_read(bd_inode
));
657 inode_unlock(bd_inode
);
661 int blkdev_fsync(struct file
*filp
, loff_t start
, loff_t end
, int datasync
)
663 struct inode
*bd_inode
= bdev_file_inode(filp
);
664 struct block_device
*bdev
= I_BDEV(bd_inode
);
667 error
= file_write_and_wait_range(filp
, start
, end
);
672 * There is no need to serialise calls to blkdev_issue_flush with
673 * i_mutex and doing so causes performance issues with concurrent
674 * O_SYNC writers to a block device.
676 error
= blkdev_issue_flush(bdev
, GFP_KERNEL
, NULL
);
677 if (error
== -EOPNOTSUPP
)
682 EXPORT_SYMBOL(blkdev_fsync
);
685 * bdev_read_page() - Start reading a page from a block device
686 * @bdev: The device to read the page from
687 * @sector: The offset on the device to read the page to (need not be aligned)
688 * @page: The page to read
690 * On entry, the page should be locked. It will be unlocked when the page
691 * has been read. If the block driver implements rw_page synchronously,
692 * that will be true on exit from this function, but it need not be.
694 * Errors returned by this function are usually "soft", eg out of memory, or
695 * queue full; callers should try a different route to read this page rather
696 * than propagate an error back up the stack.
698 * Return: negative errno if an error occurs, 0 if submission was successful.
700 int bdev_read_page(struct block_device
*bdev
, sector_t sector
,
703 const struct block_device_operations
*ops
= bdev
->bd_disk
->fops
;
704 int result
= -EOPNOTSUPP
;
706 if (!ops
->rw_page
|| bdev_get_integrity(bdev
))
709 result
= blk_queue_enter(bdev
->bd_queue
, 0);
712 result
= ops
->rw_page(bdev
, sector
+ get_start_sect(bdev
), page
,
714 blk_queue_exit(bdev
->bd_queue
);
717 EXPORT_SYMBOL_GPL(bdev_read_page
);
720 * bdev_write_page() - Start writing a page to a block device
721 * @bdev: The device to write the page to
722 * @sector: The offset on the device to write the page to (need not be aligned)
723 * @page: The page to write
724 * @wbc: The writeback_control for the write
726 * On entry, the page should be locked and not currently under writeback.
727 * On exit, if the write started successfully, the page will be unlocked and
728 * under writeback. If the write failed already (eg the driver failed to
729 * queue the page to the device), the page will still be locked. If the
730 * caller is a ->writepage implementation, it will need to unlock the page.
732 * Errors returned by this function are usually "soft", eg out of memory, or
733 * queue full; callers should try a different route to write this page rather
734 * than propagate an error back up the stack.
736 * Return: negative errno if an error occurs, 0 if submission was successful.
738 int bdev_write_page(struct block_device
*bdev
, sector_t sector
,
739 struct page
*page
, struct writeback_control
*wbc
)
742 const struct block_device_operations
*ops
= bdev
->bd_disk
->fops
;
744 if (!ops
->rw_page
|| bdev_get_integrity(bdev
))
746 result
= blk_queue_enter(bdev
->bd_queue
, 0);
750 set_page_writeback(page
);
751 result
= ops
->rw_page(bdev
, sector
+ get_start_sect(bdev
), page
,
754 end_page_writeback(page
);
756 clean_page_buffers(page
);
759 blk_queue_exit(bdev
->bd_queue
);
762 EXPORT_SYMBOL_GPL(bdev_write_page
);
768 static __cacheline_aligned_in_smp
DEFINE_SPINLOCK(bdev_lock
);
769 static struct kmem_cache
* bdev_cachep __read_mostly
;
771 static struct inode
*bdev_alloc_inode(struct super_block
*sb
)
773 struct bdev_inode
*ei
= kmem_cache_alloc(bdev_cachep
, GFP_KERNEL
);
776 return &ei
->vfs_inode
;
779 static void bdev_free_inode(struct inode
*inode
)
781 kmem_cache_free(bdev_cachep
, BDEV_I(inode
));
784 static void init_once(void *foo
)
786 struct bdev_inode
*ei
= (struct bdev_inode
*) foo
;
787 struct block_device
*bdev
= &ei
->bdev
;
789 memset(bdev
, 0, sizeof(*bdev
));
790 mutex_init(&bdev
->bd_mutex
);
791 INIT_LIST_HEAD(&bdev
->bd_list
);
793 INIT_LIST_HEAD(&bdev
->bd_holder_disks
);
795 bdev
->bd_bdi
= &noop_backing_dev_info
;
796 inode_init_once(&ei
->vfs_inode
);
797 /* Initialize mutex for freeze. */
798 mutex_init(&bdev
->bd_fsfreeze_mutex
);
801 static void bdev_evict_inode(struct inode
*inode
)
803 struct block_device
*bdev
= &BDEV_I(inode
)->bdev
;
804 truncate_inode_pages_final(&inode
->i_data
);
805 invalidate_inode_buffers(inode
); /* is it needed here? */
807 spin_lock(&bdev_lock
);
808 list_del_init(&bdev
->bd_list
);
809 spin_unlock(&bdev_lock
);
810 /* Detach inode from wb early as bdi_put() may free bdi->wb */
811 inode_detach_wb(inode
);
812 if (bdev
->bd_bdi
!= &noop_backing_dev_info
) {
813 bdi_put(bdev
->bd_bdi
);
814 bdev
->bd_bdi
= &noop_backing_dev_info
;
818 static const struct super_operations bdev_sops
= {
819 .statfs
= simple_statfs
,
820 .alloc_inode
= bdev_alloc_inode
,
821 .free_inode
= bdev_free_inode
,
822 .drop_inode
= generic_delete_inode
,
823 .evict_inode
= bdev_evict_inode
,
826 static int bd_init_fs_context(struct fs_context
*fc
)
828 struct pseudo_fs_context
*ctx
= init_pseudo(fc
, BDEVFS_MAGIC
);
831 fc
->s_iflags
|= SB_I_CGROUPWB
;
832 ctx
->ops
= &bdev_sops
;
836 static struct file_system_type bd_type
= {
838 .init_fs_context
= bd_init_fs_context
,
839 .kill_sb
= kill_anon_super
,
842 struct super_block
*blockdev_superblock __read_mostly
;
843 EXPORT_SYMBOL_GPL(blockdev_superblock
);
845 void __init
bdev_cache_init(void)
848 static struct vfsmount
*bd_mnt
;
850 bdev_cachep
= kmem_cache_create("bdev_cache", sizeof(struct bdev_inode
),
851 0, (SLAB_HWCACHE_ALIGN
|SLAB_RECLAIM_ACCOUNT
|
852 SLAB_MEM_SPREAD
|SLAB_ACCOUNT
|SLAB_PANIC
),
854 err
= register_filesystem(&bd_type
);
856 panic("Cannot register bdev pseudo-fs");
857 bd_mnt
= kern_mount(&bd_type
);
859 panic("Cannot create bdev pseudo-fs");
860 blockdev_superblock
= bd_mnt
->mnt_sb
; /* For writeback */
864 * Most likely _very_ bad one - but then it's hardly critical for small
865 * /dev and can be fixed when somebody will need really large one.
866 * Keep in mind that it will be fed through icache hash function too.
868 static inline unsigned long hash(dev_t dev
)
870 return MAJOR(dev
)+MINOR(dev
);
873 static int bdev_test(struct inode
*inode
, void *data
)
875 return BDEV_I(inode
)->bdev
.bd_dev
== *(dev_t
*)data
;
878 static int bdev_set(struct inode
*inode
, void *data
)
880 BDEV_I(inode
)->bdev
.bd_dev
= *(dev_t
*)data
;
884 static LIST_HEAD(all_bdevs
);
887 * If there is a bdev inode for this device, unhash it so that it gets evicted
888 * as soon as last inode reference is dropped.
890 void bdev_unhash_inode(dev_t dev
)
894 inode
= ilookup5(blockdev_superblock
, hash(dev
), bdev_test
, &dev
);
896 remove_inode_hash(inode
);
901 struct block_device
*bdget(dev_t dev
)
903 struct block_device
*bdev
;
906 inode
= iget5_locked(blockdev_superblock
, hash(dev
),
907 bdev_test
, bdev_set
, &dev
);
912 bdev
= &BDEV_I(inode
)->bdev
;
914 if (inode
->i_state
& I_NEW
) {
915 bdev
->bd_contains
= NULL
;
916 bdev
->bd_super
= NULL
;
917 bdev
->bd_inode
= inode
;
918 bdev
->bd_block_size
= i_blocksize(inode
);
919 bdev
->bd_part_count
= 0;
920 bdev
->bd_invalidated
= 0;
921 inode
->i_mode
= S_IFBLK
;
923 inode
->i_bdev
= bdev
;
924 inode
->i_data
.a_ops
= &def_blk_aops
;
925 mapping_set_gfp_mask(&inode
->i_data
, GFP_USER
);
926 spin_lock(&bdev_lock
);
927 list_add(&bdev
->bd_list
, &all_bdevs
);
928 spin_unlock(&bdev_lock
);
929 unlock_new_inode(inode
);
934 EXPORT_SYMBOL(bdget
);
937 * bdgrab -- Grab a reference to an already referenced block device
938 * @bdev: Block device to grab a reference to.
940 struct block_device
*bdgrab(struct block_device
*bdev
)
942 ihold(bdev
->bd_inode
);
945 EXPORT_SYMBOL(bdgrab
);
947 long nr_blockdev_pages(void)
949 struct block_device
*bdev
;
951 spin_lock(&bdev_lock
);
952 list_for_each_entry(bdev
, &all_bdevs
, bd_list
) {
953 ret
+= bdev
->bd_inode
->i_mapping
->nrpages
;
955 spin_unlock(&bdev_lock
);
959 void bdput(struct block_device
*bdev
)
961 iput(bdev
->bd_inode
);
964 EXPORT_SYMBOL(bdput
);
966 static struct block_device
*bd_acquire(struct inode
*inode
)
968 struct block_device
*bdev
;
970 spin_lock(&bdev_lock
);
971 bdev
= inode
->i_bdev
;
972 if (bdev
&& !inode_unhashed(bdev
->bd_inode
)) {
974 spin_unlock(&bdev_lock
);
977 spin_unlock(&bdev_lock
);
980 * i_bdev references block device inode that was already shut down
981 * (corresponding device got removed). Remove the reference and look
982 * up block device inode again just in case new device got
983 * reestablished under the same device number.
988 bdev
= bdget(inode
->i_rdev
);
990 spin_lock(&bdev_lock
);
991 if (!inode
->i_bdev
) {
993 * We take an additional reference to bd_inode,
994 * and it's released in clear_inode() of inode.
995 * So, we can access it via ->i_mapping always
999 inode
->i_bdev
= bdev
;
1000 inode
->i_mapping
= bdev
->bd_inode
->i_mapping
;
1002 spin_unlock(&bdev_lock
);
1007 /* Call when you free inode */
1009 void bd_forget(struct inode
*inode
)
1011 struct block_device
*bdev
= NULL
;
1013 spin_lock(&bdev_lock
);
1014 if (!sb_is_blkdev_sb(inode
->i_sb
))
1015 bdev
= inode
->i_bdev
;
1016 inode
->i_bdev
= NULL
;
1017 inode
->i_mapping
= &inode
->i_data
;
1018 spin_unlock(&bdev_lock
);
1025 * bd_may_claim - test whether a block device can be claimed
1026 * @bdev: block device of interest
1027 * @whole: whole block device containing @bdev, may equal @bdev
1028 * @holder: holder trying to claim @bdev
1030 * Test whether @bdev can be claimed by @holder.
1033 * spin_lock(&bdev_lock).
1036 * %true if @bdev can be claimed, %false otherwise.
1038 static bool bd_may_claim(struct block_device
*bdev
, struct block_device
*whole
,
1041 if (bdev
->bd_holder
== holder
)
1042 return true; /* already a holder */
1043 else if (bdev
->bd_holder
!= NULL
)
1044 return false; /* held by someone else */
1045 else if (whole
== bdev
)
1046 return true; /* is a whole device which isn't held */
1048 else if (whole
->bd_holder
== bd_may_claim
)
1049 return true; /* is a partition of a device that is being partitioned */
1050 else if (whole
->bd_holder
!= NULL
)
1051 return false; /* is a partition of a held device */
1053 return true; /* is a partition of an un-held device */
1057 * bd_prepare_to_claim - prepare to claim a block device
1058 * @bdev: block device of interest
1059 * @whole: the whole device containing @bdev, may equal @bdev
1060 * @holder: holder trying to claim @bdev
1062 * Prepare to claim @bdev. This function fails if @bdev is already
1063 * claimed by another holder and waits if another claiming is in
1064 * progress. This function doesn't actually claim. On successful
1065 * return, the caller has ownership of bd_claiming and bd_holder[s].
1068 * spin_lock(&bdev_lock). Might release bdev_lock, sleep and regrab
1069 * it multiple times.
1072 * 0 if @bdev can be claimed, -EBUSY otherwise.
1074 static int bd_prepare_to_claim(struct block_device
*bdev
,
1075 struct block_device
*whole
, void *holder
)
1078 /* if someone else claimed, fail */
1079 if (!bd_may_claim(bdev
, whole
, holder
))
1082 /* if claiming is already in progress, wait for it to finish */
1083 if (whole
->bd_claiming
) {
1084 wait_queue_head_t
*wq
= bit_waitqueue(&whole
->bd_claiming
, 0);
1087 prepare_to_wait(wq
, &wait
, TASK_UNINTERRUPTIBLE
);
1088 spin_unlock(&bdev_lock
);
1090 finish_wait(wq
, &wait
);
1091 spin_lock(&bdev_lock
);
1099 static struct gendisk
*bdev_get_gendisk(struct block_device
*bdev
, int *partno
)
1101 struct gendisk
*disk
= get_gendisk(bdev
->bd_dev
, partno
);
1106 * Now that we hold gendisk reference we make sure bdev we looked up is
1107 * not stale. If it is, it means device got removed and created before
1108 * we looked up gendisk and we fail open in such case. Associating
1109 * unhashed bdev with newly created gendisk could lead to two bdevs
1110 * (and thus two independent caches) being associated with one device
1113 if (inode_unhashed(bdev
->bd_inode
)) {
1114 put_disk_and_module(disk
);
1121 * bd_start_claiming - start claiming a block device
1122 * @bdev: block device of interest
1123 * @holder: holder trying to claim @bdev
1125 * @bdev is about to be opened exclusively. Check @bdev can be opened
1126 * exclusively and mark that an exclusive open is in progress. Each
1127 * successful call to this function must be matched with a call to
1128 * either bd_finish_claiming() or bd_abort_claiming() (which do not
1131 * This function is used to gain exclusive access to the block device
1132 * without actually causing other exclusive open attempts to fail. It
1133 * should be used when the open sequence itself requires exclusive
1134 * access but may subsequently fail.
1140 * Pointer to the block device containing @bdev on success, ERR_PTR()
1143 struct block_device
*bd_start_claiming(struct block_device
*bdev
, void *holder
)
1145 struct gendisk
*disk
;
1146 struct block_device
*whole
;
1152 * @bdev might not have been initialized properly yet, look up
1153 * and grab the outer block device the hard way.
1155 disk
= bdev_get_gendisk(bdev
, &partno
);
1157 return ERR_PTR(-ENXIO
);
1160 * Normally, @bdev should equal what's returned from bdget_disk()
1161 * if partno is 0; however, some drivers (floppy) use multiple
1162 * bdev's for the same physical device and @bdev may be one of the
1163 * aliases. Keep @bdev if partno is 0. This means claimer
1164 * tracking is broken for those devices but it has always been that
1168 whole
= bdget_disk(disk
, 0);
1170 whole
= bdgrab(bdev
);
1172 put_disk_and_module(disk
);
1174 return ERR_PTR(-ENOMEM
);
1176 /* prepare to claim, if successful, mark claiming in progress */
1177 spin_lock(&bdev_lock
);
1179 err
= bd_prepare_to_claim(bdev
, whole
, holder
);
1181 whole
->bd_claiming
= holder
;
1182 spin_unlock(&bdev_lock
);
1185 spin_unlock(&bdev_lock
);
1187 return ERR_PTR(err
);
1190 EXPORT_SYMBOL(bd_start_claiming
);
1192 static void bd_clear_claiming(struct block_device
*whole
, void *holder
)
1194 lockdep_assert_held(&bdev_lock
);
1195 /* tell others that we're done */
1196 BUG_ON(whole
->bd_claiming
!= holder
);
1197 whole
->bd_claiming
= NULL
;
1198 wake_up_bit(&whole
->bd_claiming
, 0);
1202 * bd_finish_claiming - finish claiming of a block device
1203 * @bdev: block device of interest
1204 * @whole: whole block device (returned from bd_start_claiming())
1205 * @holder: holder that has claimed @bdev
1207 * Finish exclusive open of a block device. Mark the device as exlusively
1208 * open by the holder and wake up all waiters for exclusive open to finish.
1210 void bd_finish_claiming(struct block_device
*bdev
, struct block_device
*whole
,
1213 spin_lock(&bdev_lock
);
1214 BUG_ON(!bd_may_claim(bdev
, whole
, holder
));
1216 * Note that for a whole device bd_holders will be incremented twice,
1217 * and bd_holder will be set to bd_may_claim before being set to holder
1219 whole
->bd_holders
++;
1220 whole
->bd_holder
= bd_may_claim
;
1222 bdev
->bd_holder
= holder
;
1223 bd_clear_claiming(whole
, holder
);
1224 spin_unlock(&bdev_lock
);
1226 EXPORT_SYMBOL(bd_finish_claiming
);
1229 * bd_abort_claiming - abort claiming of a block device
1230 * @bdev: block device of interest
1231 * @whole: whole block device (returned from bd_start_claiming())
1232 * @holder: holder that has claimed @bdev
1234 * Abort claiming of a block device when the exclusive open failed. This can be
1235 * also used when exclusive open is not actually desired and we just needed
1236 * to block other exclusive openers for a while.
1238 void bd_abort_claiming(struct block_device
*bdev
, struct block_device
*whole
,
1241 spin_lock(&bdev_lock
);
1242 bd_clear_claiming(whole
, holder
);
1243 spin_unlock(&bdev_lock
);
1245 EXPORT_SYMBOL(bd_abort_claiming
);
1248 struct bd_holder_disk
{
1249 struct list_head list
;
1250 struct gendisk
*disk
;
1254 static struct bd_holder_disk
*bd_find_holder_disk(struct block_device
*bdev
,
1255 struct gendisk
*disk
)
1257 struct bd_holder_disk
*holder
;
1259 list_for_each_entry(holder
, &bdev
->bd_holder_disks
, list
)
1260 if (holder
->disk
== disk
)
1265 static int add_symlink(struct kobject
*from
, struct kobject
*to
)
1267 return sysfs_create_link(from
, to
, kobject_name(to
));
1270 static void del_symlink(struct kobject
*from
, struct kobject
*to
)
1272 sysfs_remove_link(from
, kobject_name(to
));
1276 * bd_link_disk_holder - create symlinks between holding disk and slave bdev
1277 * @bdev: the claimed slave bdev
1278 * @disk: the holding disk
1280 * DON'T USE THIS UNLESS YOU'RE ALREADY USING IT.
1282 * This functions creates the following sysfs symlinks.
1284 * - from "slaves" directory of the holder @disk to the claimed @bdev
1285 * - from "holders" directory of the @bdev to the holder @disk
1287 * For example, if /dev/dm-0 maps to /dev/sda and disk for dm-0 is
1288 * passed to bd_link_disk_holder(), then:
1290 * /sys/block/dm-0/slaves/sda --> /sys/block/sda
1291 * /sys/block/sda/holders/dm-0 --> /sys/block/dm-0
1293 * The caller must have claimed @bdev before calling this function and
1294 * ensure that both @bdev and @disk are valid during the creation and
1295 * lifetime of these symlinks.
1301 * 0 on success, -errno on failure.
1303 int bd_link_disk_holder(struct block_device
*bdev
, struct gendisk
*disk
)
1305 struct bd_holder_disk
*holder
;
1308 mutex_lock(&bdev
->bd_mutex
);
1310 WARN_ON_ONCE(!bdev
->bd_holder
);
1312 /* FIXME: remove the following once add_disk() handles errors */
1313 if (WARN_ON(!disk
->slave_dir
|| !bdev
->bd_part
->holder_dir
))
1316 holder
= bd_find_holder_disk(bdev
, disk
);
1322 holder
= kzalloc(sizeof(*holder
), GFP_KERNEL
);
1328 INIT_LIST_HEAD(&holder
->list
);
1329 holder
->disk
= disk
;
1332 ret
= add_symlink(disk
->slave_dir
, &part_to_dev(bdev
->bd_part
)->kobj
);
1336 ret
= add_symlink(bdev
->bd_part
->holder_dir
, &disk_to_dev(disk
)->kobj
);
1340 * bdev could be deleted beneath us which would implicitly destroy
1341 * the holder directory. Hold on to it.
1343 kobject_get(bdev
->bd_part
->holder_dir
);
1345 list_add(&holder
->list
, &bdev
->bd_holder_disks
);
1349 del_symlink(disk
->slave_dir
, &part_to_dev(bdev
->bd_part
)->kobj
);
1353 mutex_unlock(&bdev
->bd_mutex
);
1356 EXPORT_SYMBOL_GPL(bd_link_disk_holder
);
1359 * bd_unlink_disk_holder - destroy symlinks created by bd_link_disk_holder()
1360 * @bdev: the calimed slave bdev
1361 * @disk: the holding disk
1363 * DON'T USE THIS UNLESS YOU'RE ALREADY USING IT.
1368 void bd_unlink_disk_holder(struct block_device
*bdev
, struct gendisk
*disk
)
1370 struct bd_holder_disk
*holder
;
1372 mutex_lock(&bdev
->bd_mutex
);
1374 holder
= bd_find_holder_disk(bdev
, disk
);
1376 if (!WARN_ON_ONCE(holder
== NULL
) && !--holder
->refcnt
) {
1377 del_symlink(disk
->slave_dir
, &part_to_dev(bdev
->bd_part
)->kobj
);
1378 del_symlink(bdev
->bd_part
->holder_dir
,
1379 &disk_to_dev(disk
)->kobj
);
1380 kobject_put(bdev
->bd_part
->holder_dir
);
1381 list_del_init(&holder
->list
);
1385 mutex_unlock(&bdev
->bd_mutex
);
1387 EXPORT_SYMBOL_GPL(bd_unlink_disk_holder
);
1391 * flush_disk - invalidates all buffer-cache entries on a disk
1393 * @bdev: struct block device to be flushed
1394 * @kill_dirty: flag to guide handling of dirty inodes
1396 * Invalidates all buffer-cache entries on a disk. It should be called
1397 * when a disk has been changed -- either by a media change or online
1400 static void flush_disk(struct block_device
*bdev
, bool kill_dirty
)
1402 if (__invalidate_device(bdev
, kill_dirty
)) {
1403 printk(KERN_WARNING
"VFS: busy inodes on changed media or "
1404 "resized disk %s\n",
1405 bdev
->bd_disk
? bdev
->bd_disk
->disk_name
: "");
1407 bdev
->bd_invalidated
= 1;
1411 * check_disk_size_change - checks for disk size change and adjusts bdev size.
1412 * @disk: struct gendisk to check
1413 * @bdev: struct bdev to adjust.
1414 * @verbose: if %true log a message about a size change if there is any
1416 * This routine checks to see if the bdev size does not match the disk size
1417 * and adjusts it if it differs. When shrinking the bdev size, its all caches
1420 void check_disk_size_change(struct gendisk
*disk
, struct block_device
*bdev
,
1423 loff_t disk_size
, bdev_size
;
1425 disk_size
= (loff_t
)get_capacity(disk
) << 9;
1426 bdev_size
= i_size_read(bdev
->bd_inode
);
1427 if (disk_size
!= bdev_size
) {
1430 "%s: detected capacity change from %lld to %lld\n",
1431 disk
->disk_name
, bdev_size
, disk_size
);
1433 i_size_write(bdev
->bd_inode
, disk_size
);
1434 if (bdev_size
> disk_size
)
1435 flush_disk(bdev
, false);
1440 * revalidate_disk - wrapper for lower-level driver's revalidate_disk call-back
1441 * @disk: struct gendisk to be revalidated
1443 * This routine is a wrapper for lower-level driver's revalidate_disk
1444 * call-backs. It is used to do common pre and post operations needed
1445 * for all revalidate_disk operations.
1447 int revalidate_disk(struct gendisk
*disk
)
1451 if (disk
->fops
->revalidate_disk
)
1452 ret
= disk
->fops
->revalidate_disk(disk
);
1455 * Hidden disks don't have associated bdev so there's no point in
1458 if (!(disk
->flags
& GENHD_FL_HIDDEN
)) {
1459 struct block_device
*bdev
= bdget_disk(disk
, 0);
1464 mutex_lock(&bdev
->bd_mutex
);
1465 check_disk_size_change(disk
, bdev
, ret
== 0);
1466 bdev
->bd_invalidated
= 0;
1467 mutex_unlock(&bdev
->bd_mutex
);
1472 EXPORT_SYMBOL(revalidate_disk
);
1475 * This routine checks whether a removable media has been changed,
1476 * and invalidates all buffer-cache-entries in that case. This
1477 * is a relatively slow routine, so we have to try to minimize using
1478 * it. Thus it is called only upon a 'mount' or 'open'. This
1479 * is the best way of combining speed and utility, I think.
1480 * People changing diskettes in the middle of an operation deserve
1483 int check_disk_change(struct block_device
*bdev
)
1485 struct gendisk
*disk
= bdev
->bd_disk
;
1486 const struct block_device_operations
*bdops
= disk
->fops
;
1487 unsigned int events
;
1489 events
= disk_clear_events(disk
, DISK_EVENT_MEDIA_CHANGE
|
1490 DISK_EVENT_EJECT_REQUEST
);
1491 if (!(events
& DISK_EVENT_MEDIA_CHANGE
))
1494 flush_disk(bdev
, true);
1495 if (bdops
->revalidate_disk
)
1496 bdops
->revalidate_disk(bdev
->bd_disk
);
1500 EXPORT_SYMBOL(check_disk_change
);
1502 void bd_set_size(struct block_device
*bdev
, loff_t size
)
1504 inode_lock(bdev
->bd_inode
);
1505 i_size_write(bdev
->bd_inode
, size
);
1506 inode_unlock(bdev
->bd_inode
);
1508 EXPORT_SYMBOL(bd_set_size
);
1510 static void __blkdev_put(struct block_device
*bdev
, fmode_t mode
, int for_part
);
1512 static void bdev_disk_changed(struct block_device
*bdev
, bool invalidate
)
1514 if (disk_part_scan_enabled(bdev
->bd_disk
)) {
1516 invalidate_partitions(bdev
->bd_disk
, bdev
);
1518 rescan_partitions(bdev
->bd_disk
, bdev
);
1520 check_disk_size_change(bdev
->bd_disk
, bdev
, !invalidate
);
1521 bdev
->bd_invalidated
= 0;
1528 * mutex_lock(part->bd_mutex)
1529 * mutex_lock_nested(whole->bd_mutex, 1)
1532 static int __blkdev_get(struct block_device
*bdev
, fmode_t mode
, int for_part
)
1534 struct gendisk
*disk
;
1538 bool first_open
= false;
1540 if (mode
& FMODE_READ
)
1542 if (mode
& FMODE_WRITE
)
1545 * hooks: /n/, see "layering violations".
1548 ret
= devcgroup_inode_permission(bdev
->bd_inode
, perm
);
1556 disk
= bdev_get_gendisk(bdev
, &partno
);
1560 disk_block_events(disk
);
1561 mutex_lock_nested(&bdev
->bd_mutex
, for_part
);
1562 if (!bdev
->bd_openers
) {
1564 bdev
->bd_disk
= disk
;
1565 bdev
->bd_queue
= disk
->queue
;
1566 bdev
->bd_contains
= bdev
;
1567 bdev
->bd_partno
= partno
;
1571 bdev
->bd_part
= disk_get_part(disk
, partno
);
1576 if (disk
->fops
->open
) {
1577 ret
= disk
->fops
->open(bdev
, mode
);
1578 if (ret
== -ERESTARTSYS
) {
1579 /* Lost a race with 'disk' being
1580 * deleted, try again.
1583 disk_put_part(bdev
->bd_part
);
1584 bdev
->bd_part
= NULL
;
1585 bdev
->bd_disk
= NULL
;
1586 bdev
->bd_queue
= NULL
;
1587 mutex_unlock(&bdev
->bd_mutex
);
1588 disk_unblock_events(disk
);
1589 put_disk_and_module(disk
);
1595 bd_set_size(bdev
,(loff_t
)get_capacity(disk
)<<9);
1596 set_init_blocksize(bdev
);
1600 * If the device is invalidated, rescan partition
1601 * if open succeeded or failed with -ENOMEDIUM.
1602 * The latter is necessary to prevent ghost
1603 * partitions on a removed medium.
1605 if (bdev
->bd_invalidated
&&
1606 (!ret
|| ret
== -ENOMEDIUM
))
1607 bdev_disk_changed(bdev
, ret
== -ENOMEDIUM
);
1612 struct block_device
*whole
;
1613 whole
= bdget_disk(disk
, 0);
1618 ret
= __blkdev_get(whole
, mode
, 1);
1623 bdev
->bd_contains
= whole
;
1624 bdev
->bd_part
= disk_get_part(disk
, partno
);
1625 if (!(disk
->flags
& GENHD_FL_UP
) ||
1626 !bdev
->bd_part
|| !bdev
->bd_part
->nr_sects
) {
1630 bd_set_size(bdev
, (loff_t
)bdev
->bd_part
->nr_sects
<< 9);
1631 set_init_blocksize(bdev
);
1634 if (bdev
->bd_bdi
== &noop_backing_dev_info
)
1635 bdev
->bd_bdi
= bdi_get(disk
->queue
->backing_dev_info
);
1637 if (bdev
->bd_contains
== bdev
) {
1639 if (bdev
->bd_disk
->fops
->open
)
1640 ret
= bdev
->bd_disk
->fops
->open(bdev
, mode
);
1641 /* the same as first opener case, read comment there */
1642 if (bdev
->bd_invalidated
&&
1643 (!ret
|| ret
== -ENOMEDIUM
))
1644 bdev_disk_changed(bdev
, ret
== -ENOMEDIUM
);
1646 goto out_unlock_bdev
;
1651 bdev
->bd_part_count
++;
1652 mutex_unlock(&bdev
->bd_mutex
);
1653 disk_unblock_events(disk
);
1654 /* only one opener holds refs to the module and disk */
1656 put_disk_and_module(disk
);
1660 disk_put_part(bdev
->bd_part
);
1661 bdev
->bd_disk
= NULL
;
1662 bdev
->bd_part
= NULL
;
1663 bdev
->bd_queue
= NULL
;
1664 if (bdev
!= bdev
->bd_contains
)
1665 __blkdev_put(bdev
->bd_contains
, mode
, 1);
1666 bdev
->bd_contains
= NULL
;
1668 mutex_unlock(&bdev
->bd_mutex
);
1669 disk_unblock_events(disk
);
1670 put_disk_and_module(disk
);
1677 * blkdev_get - open a block device
1678 * @bdev: block_device to open
1679 * @mode: FMODE_* mask
1680 * @holder: exclusive holder identifier
1682 * Open @bdev with @mode. If @mode includes %FMODE_EXCL, @bdev is
1683 * open with exclusive access. Specifying %FMODE_EXCL with %NULL
1684 * @holder is invalid. Exclusive opens may nest for the same @holder.
1686 * On success, the reference count of @bdev is unchanged. On failure,
1693 * 0 on success, -errno on failure.
1695 int blkdev_get(struct block_device
*bdev
, fmode_t mode
, void *holder
)
1697 struct block_device
*whole
= NULL
;
1700 WARN_ON_ONCE((mode
& FMODE_EXCL
) && !holder
);
1702 if ((mode
& FMODE_EXCL
) && holder
) {
1703 whole
= bd_start_claiming(bdev
, holder
);
1704 if (IS_ERR(whole
)) {
1706 return PTR_ERR(whole
);
1710 res
= __blkdev_get(bdev
, mode
, 0);
1713 struct gendisk
*disk
= whole
->bd_disk
;
1715 /* finish claiming */
1716 mutex_lock(&bdev
->bd_mutex
);
1718 bd_finish_claiming(bdev
, whole
, holder
);
1720 bd_abort_claiming(bdev
, whole
, holder
);
1722 * Block event polling for write claims if requested. Any
1723 * write holder makes the write_holder state stick until
1724 * all are released. This is good enough and tracking
1725 * individual writeable reference is too fragile given the
1726 * way @mode is used in blkdev_get/put().
1728 if (!res
&& (mode
& FMODE_WRITE
) && !bdev
->bd_write_holder
&&
1729 (disk
->flags
& GENHD_FL_BLOCK_EVENTS_ON_EXCL_WRITE
)) {
1730 bdev
->bd_write_holder
= true;
1731 disk_block_events(disk
);
1734 mutex_unlock(&bdev
->bd_mutex
);
1743 EXPORT_SYMBOL(blkdev_get
);
1746 * blkdev_get_by_path - open a block device by name
1747 * @path: path to the block device to open
1748 * @mode: FMODE_* mask
1749 * @holder: exclusive holder identifier
1751 * Open the blockdevice described by the device file at @path. @mode
1752 * and @holder are identical to blkdev_get().
1754 * On success, the returned block_device has reference count of one.
1760 * Pointer to block_device on success, ERR_PTR(-errno) on failure.
1762 struct block_device
*blkdev_get_by_path(const char *path
, fmode_t mode
,
1765 struct block_device
*bdev
;
1768 bdev
= lookup_bdev(path
);
1772 err
= blkdev_get(bdev
, mode
, holder
);
1774 return ERR_PTR(err
);
1776 if ((mode
& FMODE_WRITE
) && bdev_read_only(bdev
)) {
1777 blkdev_put(bdev
, mode
);
1778 return ERR_PTR(-EACCES
);
1783 EXPORT_SYMBOL(blkdev_get_by_path
);
1786 * blkdev_get_by_dev - open a block device by device number
1787 * @dev: device number of block device to open
1788 * @mode: FMODE_* mask
1789 * @holder: exclusive holder identifier
1791 * Open the blockdevice described by device number @dev. @mode and
1792 * @holder are identical to blkdev_get().
1794 * Use it ONLY if you really do not have anything better - i.e. when
1795 * you are behind a truly sucky interface and all you are given is a
1796 * device number. _Never_ to be used for internal purposes. If you
1797 * ever need it - reconsider your API.
1799 * On success, the returned block_device has reference count of one.
1805 * Pointer to block_device on success, ERR_PTR(-errno) on failure.
1807 struct block_device
*blkdev_get_by_dev(dev_t dev
, fmode_t mode
, void *holder
)
1809 struct block_device
*bdev
;
1814 return ERR_PTR(-ENOMEM
);
1816 err
= blkdev_get(bdev
, mode
, holder
);
1818 return ERR_PTR(err
);
1822 EXPORT_SYMBOL(blkdev_get_by_dev
);
1824 static int blkdev_open(struct inode
* inode
, struct file
* filp
)
1826 struct block_device
*bdev
;
1829 * Preserve backwards compatibility and allow large file access
1830 * even if userspace doesn't ask for it explicitly. Some mkfs
1831 * binary needs it. We might want to drop this workaround
1832 * during an unstable branch.
1834 filp
->f_flags
|= O_LARGEFILE
;
1836 filp
->f_mode
|= FMODE_NOWAIT
;
1838 if (filp
->f_flags
& O_NDELAY
)
1839 filp
->f_mode
|= FMODE_NDELAY
;
1840 if (filp
->f_flags
& O_EXCL
)
1841 filp
->f_mode
|= FMODE_EXCL
;
1842 if ((filp
->f_flags
& O_ACCMODE
) == 3)
1843 filp
->f_mode
|= FMODE_WRITE_IOCTL
;
1845 bdev
= bd_acquire(inode
);
1849 filp
->f_mapping
= bdev
->bd_inode
->i_mapping
;
1850 filp
->f_wb_err
= filemap_sample_wb_err(filp
->f_mapping
);
1852 return blkdev_get(bdev
, filp
->f_mode
, filp
);
1855 static void __blkdev_put(struct block_device
*bdev
, fmode_t mode
, int for_part
)
1857 struct gendisk
*disk
= bdev
->bd_disk
;
1858 struct block_device
*victim
= NULL
;
1860 mutex_lock_nested(&bdev
->bd_mutex
, for_part
);
1862 bdev
->bd_part_count
--;
1864 if (!--bdev
->bd_openers
) {
1865 WARN_ON_ONCE(bdev
->bd_holders
);
1866 sync_blockdev(bdev
);
1869 bdev_write_inode(bdev
);
1871 if (bdev
->bd_contains
== bdev
) {
1872 if (disk
->fops
->release
)
1873 disk
->fops
->release(disk
, mode
);
1875 if (!bdev
->bd_openers
) {
1876 disk_put_part(bdev
->bd_part
);
1877 bdev
->bd_part
= NULL
;
1878 bdev
->bd_disk
= NULL
;
1879 if (bdev
!= bdev
->bd_contains
)
1880 victim
= bdev
->bd_contains
;
1881 bdev
->bd_contains
= NULL
;
1883 put_disk_and_module(disk
);
1885 mutex_unlock(&bdev
->bd_mutex
);
1888 __blkdev_put(victim
, mode
, 1);
1891 void blkdev_put(struct block_device
*bdev
, fmode_t mode
)
1893 mutex_lock(&bdev
->bd_mutex
);
1895 if (mode
& FMODE_EXCL
) {
1899 * Release a claim on the device. The holder fields
1900 * are protected with bdev_lock. bd_mutex is to
1901 * synchronize disk_holder unlinking.
1903 spin_lock(&bdev_lock
);
1905 WARN_ON_ONCE(--bdev
->bd_holders
< 0);
1906 WARN_ON_ONCE(--bdev
->bd_contains
->bd_holders
< 0);
1908 /* bd_contains might point to self, check in a separate step */
1909 if ((bdev_free
= !bdev
->bd_holders
))
1910 bdev
->bd_holder
= NULL
;
1911 if (!bdev
->bd_contains
->bd_holders
)
1912 bdev
->bd_contains
->bd_holder
= NULL
;
1914 spin_unlock(&bdev_lock
);
1917 * If this was the last claim, remove holder link and
1918 * unblock evpoll if it was a write holder.
1920 if (bdev_free
&& bdev
->bd_write_holder
) {
1921 disk_unblock_events(bdev
->bd_disk
);
1922 bdev
->bd_write_holder
= false;
1927 * Trigger event checking and tell drivers to flush MEDIA_CHANGE
1928 * event. This is to ensure detection of media removal commanded
1929 * from userland - e.g. eject(1).
1931 disk_flush_events(bdev
->bd_disk
, DISK_EVENT_MEDIA_CHANGE
);
1933 mutex_unlock(&bdev
->bd_mutex
);
1935 __blkdev_put(bdev
, mode
, 0);
1937 EXPORT_SYMBOL(blkdev_put
);
1939 static int blkdev_close(struct inode
* inode
, struct file
* filp
)
1941 struct block_device
*bdev
= I_BDEV(bdev_file_inode(filp
));
1942 blkdev_put(bdev
, filp
->f_mode
);
1946 static long block_ioctl(struct file
*file
, unsigned cmd
, unsigned long arg
)
1948 struct block_device
*bdev
= I_BDEV(bdev_file_inode(file
));
1949 fmode_t mode
= file
->f_mode
;
1952 * O_NDELAY can be altered using fcntl(.., F_SETFL, ..), so we have
1953 * to updated it before every ioctl.
1955 if (file
->f_flags
& O_NDELAY
)
1956 mode
|= FMODE_NDELAY
;
1958 mode
&= ~FMODE_NDELAY
;
1960 return blkdev_ioctl(bdev
, mode
, cmd
, arg
);
1964 * Write data to the block device. Only intended for the block device itself
1965 * and the raw driver which basically is a fake block device.
1967 * Does not take i_mutex for the write and thus is not for general purpose
1970 ssize_t
blkdev_write_iter(struct kiocb
*iocb
, struct iov_iter
*from
)
1972 struct file
*file
= iocb
->ki_filp
;
1973 struct inode
*bd_inode
= bdev_file_inode(file
);
1974 loff_t size
= i_size_read(bd_inode
);
1975 struct blk_plug plug
;
1978 if (bdev_read_only(I_BDEV(bd_inode
)))
1981 /* uswsusp needs write permission to the swap */
1982 if (IS_SWAPFILE(bd_inode
) && !hibernation_available())
1985 if (!iov_iter_count(from
))
1988 if (iocb
->ki_pos
>= size
)
1991 if ((iocb
->ki_flags
& (IOCB_NOWAIT
| IOCB_DIRECT
)) == IOCB_NOWAIT
)
1994 iov_iter_truncate(from
, size
- iocb
->ki_pos
);
1996 blk_start_plug(&plug
);
1997 ret
= __generic_file_write_iter(iocb
, from
);
1999 ret
= generic_write_sync(iocb
, ret
);
2000 blk_finish_plug(&plug
);
2003 EXPORT_SYMBOL_GPL(blkdev_write_iter
);
2005 ssize_t
blkdev_read_iter(struct kiocb
*iocb
, struct iov_iter
*to
)
2007 struct file
*file
= iocb
->ki_filp
;
2008 struct inode
*bd_inode
= bdev_file_inode(file
);
2009 loff_t size
= i_size_read(bd_inode
);
2010 loff_t pos
= iocb
->ki_pos
;
2016 iov_iter_truncate(to
, size
);
2017 return generic_file_read_iter(iocb
, to
);
2019 EXPORT_SYMBOL_GPL(blkdev_read_iter
);
2022 * Try to release a page associated with block device when the system
2023 * is under memory pressure.
2025 static int blkdev_releasepage(struct page
*page
, gfp_t wait
)
2027 struct super_block
*super
= BDEV_I(page
->mapping
->host
)->bdev
.bd_super
;
2029 if (super
&& super
->s_op
->bdev_try_to_free_page
)
2030 return super
->s_op
->bdev_try_to_free_page(super
, page
, wait
);
2032 return try_to_free_buffers(page
);
2035 static int blkdev_writepages(struct address_space
*mapping
,
2036 struct writeback_control
*wbc
)
2038 return generic_writepages(mapping
, wbc
);
2041 static const struct address_space_operations def_blk_aops
= {
2042 .readpage
= blkdev_readpage
,
2043 .readpages
= blkdev_readpages
,
2044 .writepage
= blkdev_writepage
,
2045 .write_begin
= blkdev_write_begin
,
2046 .write_end
= blkdev_write_end
,
2047 .writepages
= blkdev_writepages
,
2048 .releasepage
= blkdev_releasepage
,
2049 .direct_IO
= blkdev_direct_IO
,
2050 .migratepage
= buffer_migrate_page_norefs
,
2051 .is_dirty_writeback
= buffer_check_dirty_writeback
,
2054 #define BLKDEV_FALLOC_FL_SUPPORTED \
2055 (FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE | \
2056 FALLOC_FL_ZERO_RANGE | FALLOC_FL_NO_HIDE_STALE)
2058 static long blkdev_fallocate(struct file
*file
, int mode
, loff_t start
,
2061 struct block_device
*bdev
= I_BDEV(bdev_file_inode(file
));
2062 struct address_space
*mapping
;
2063 loff_t end
= start
+ len
- 1;
2067 /* Fail if we don't recognize the flags. */
2068 if (mode
& ~BLKDEV_FALLOC_FL_SUPPORTED
)
2071 /* Don't go off the end of the device. */
2072 isize
= i_size_read(bdev
->bd_inode
);
2076 if (mode
& FALLOC_FL_KEEP_SIZE
) {
2077 len
= isize
- start
;
2078 end
= start
+ len
- 1;
2084 * Don't allow IO that isn't aligned to logical block size.
2086 if ((start
| len
) & (bdev_logical_block_size(bdev
) - 1))
2089 /* Invalidate the page cache, including dirty pages. */
2090 mapping
= bdev
->bd_inode
->i_mapping
;
2091 truncate_inode_pages_range(mapping
, start
, end
);
2094 case FALLOC_FL_ZERO_RANGE
:
2095 case FALLOC_FL_ZERO_RANGE
| FALLOC_FL_KEEP_SIZE
:
2096 error
= blkdev_issue_zeroout(bdev
, start
>> 9, len
>> 9,
2097 GFP_KERNEL
, BLKDEV_ZERO_NOUNMAP
);
2099 case FALLOC_FL_PUNCH_HOLE
| FALLOC_FL_KEEP_SIZE
:
2100 error
= blkdev_issue_zeroout(bdev
, start
>> 9, len
>> 9,
2101 GFP_KERNEL
, BLKDEV_ZERO_NOFALLBACK
);
2103 case FALLOC_FL_PUNCH_HOLE
| FALLOC_FL_KEEP_SIZE
| FALLOC_FL_NO_HIDE_STALE
:
2104 error
= blkdev_issue_discard(bdev
, start
>> 9, len
>> 9,
2114 * Invalidate again; if someone wandered in and dirtied a page,
2115 * the caller will be given -EBUSY. The third argument is
2116 * inclusive, so the rounding here is safe.
2118 return invalidate_inode_pages2_range(mapping
,
2119 start
>> PAGE_SHIFT
,
2123 const struct file_operations def_blk_fops
= {
2124 .open
= blkdev_open
,
2125 .release
= blkdev_close
,
2126 .llseek
= block_llseek
,
2127 .read_iter
= blkdev_read_iter
,
2128 .write_iter
= blkdev_write_iter
,
2129 .iopoll
= blkdev_iopoll
,
2130 .mmap
= generic_file_mmap
,
2131 .fsync
= blkdev_fsync
,
2132 .unlocked_ioctl
= block_ioctl
,
2133 #ifdef CONFIG_COMPAT
2134 .compat_ioctl
= compat_blkdev_ioctl
,
2136 .splice_read
= generic_file_splice_read
,
2137 .splice_write
= iter_file_splice_write
,
2138 .fallocate
= blkdev_fallocate
,
2141 int ioctl_by_bdev(struct block_device
*bdev
, unsigned cmd
, unsigned long arg
)
2144 mm_segment_t old_fs
= get_fs();
2146 res
= blkdev_ioctl(bdev
, 0, cmd
, arg
);
2151 EXPORT_SYMBOL(ioctl_by_bdev
);
2154 * lookup_bdev - lookup a struct block_device by name
2155 * @pathname: special file representing the block device
2157 * Get a reference to the blockdevice at @pathname in the current
2158 * namespace if possible and return it. Return ERR_PTR(error)
2161 struct block_device
*lookup_bdev(const char *pathname
)
2163 struct block_device
*bdev
;
2164 struct inode
*inode
;
2168 if (!pathname
|| !*pathname
)
2169 return ERR_PTR(-EINVAL
);
2171 error
= kern_path(pathname
, LOOKUP_FOLLOW
, &path
);
2173 return ERR_PTR(error
);
2175 inode
= d_backing_inode(path
.dentry
);
2177 if (!S_ISBLK(inode
->i_mode
))
2180 if (!may_open_dev(&path
))
2183 bdev
= bd_acquire(inode
);
2190 bdev
= ERR_PTR(error
);
2193 EXPORT_SYMBOL(lookup_bdev
);
2195 int __invalidate_device(struct block_device
*bdev
, bool kill_dirty
)
2197 struct super_block
*sb
= get_super(bdev
);
2202 * no need to lock the super, get_super holds the
2203 * read mutex so the filesystem cannot go away
2204 * under us (->put_super runs with the write lock
2207 shrink_dcache_sb(sb
);
2208 res
= invalidate_inodes(sb
, kill_dirty
);
2211 invalidate_bdev(bdev
);
2214 EXPORT_SYMBOL(__invalidate_device
);
2216 void iterate_bdevs(void (*func
)(struct block_device
*, void *), void *arg
)
2218 struct inode
*inode
, *old_inode
= NULL
;
2220 spin_lock(&blockdev_superblock
->s_inode_list_lock
);
2221 list_for_each_entry(inode
, &blockdev_superblock
->s_inodes
, i_sb_list
) {
2222 struct address_space
*mapping
= inode
->i_mapping
;
2223 struct block_device
*bdev
;
2225 spin_lock(&inode
->i_lock
);
2226 if (inode
->i_state
& (I_FREEING
|I_WILL_FREE
|I_NEW
) ||
2227 mapping
->nrpages
== 0) {
2228 spin_unlock(&inode
->i_lock
);
2232 spin_unlock(&inode
->i_lock
);
2233 spin_unlock(&blockdev_superblock
->s_inode_list_lock
);
2235 * We hold a reference to 'inode' so it couldn't have been
2236 * removed from s_inodes list while we dropped the
2237 * s_inode_list_lock We cannot iput the inode now as we can
2238 * be holding the last reference and we cannot iput it under
2239 * s_inode_list_lock. So we keep the reference and iput it
2244 bdev
= I_BDEV(inode
);
2246 mutex_lock(&bdev
->bd_mutex
);
2247 if (bdev
->bd_openers
)
2249 mutex_unlock(&bdev
->bd_mutex
);
2251 spin_lock(&blockdev_superblock
->s_inode_list_lock
);
2253 spin_unlock(&blockdev_superblock
->s_inode_list_lock
);