blob: 06d31e459048adb86659f004b27154140c4089f9 [file] [log] [blame]
Thomas Gleixner457c8992019-05-19 13:08:55 +01001// SPDX-License-Identifier: GPL-2.0-only
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
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
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#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>
Pavel Emelyanov7db9cfd2008-06-05 22:46:27 -070015#include <linux/device_cgroup.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/highmem.h>
17#include <linux/blkdev.h>
Tejun Heo66114ca2015-05-22 17:13:32 -040018#include <linux/backing-dev.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/module.h>
20#include <linux/blkpg.h>
Muthu Kumarb502bd12012-03-23 15:01:50 -070021#include <linux/magic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/buffer_head.h>
Al Viroff01bb42011-09-16 02:31:11 -040023#include <linux/swap.h>
Nick Piggin585d3bc2009-02-25 10:44:19 +010024#include <linux/pagevec.h>
David Howells811d7362006-08-29 19:06:09 +010025#include <linux/writeback.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/mpage.h>
27#include <linux/mount.h>
David Howells9030d162019-03-25 16:38:23 +000028#include <linux/pseudo_fs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/uio.h>
30#include <linux/namei.h>
Vignesh Babu BM1368c4f2007-05-08 00:24:32 -070031#include <linux/log2.h>
Al Viroff01bb42011-09-16 02:31:11 -040032#include <linux/cleancache.h>
Christoph Hellwig189ce2b2016-10-31 11:59:25 -060033#include <linux/task_io_accounting_ops.h>
Darrick J. Wong25f4c412016-10-11 13:51:11 -070034#include <linux/falloc.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080035#include <linux/uaccess.h>
Domenico Andreoli56939e02020-03-23 08:22:15 -070036#include <linux/suspend.h>
David Howells07f3f052006-09-30 20:52:18 +020037#include "internal.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
39struct bdev_inode {
40 struct block_device bdev;
41 struct inode vfs_inode;
42};
43
Adrian Bunk4c54ac62008-02-18 13:48:31 +010044static const struct address_space_operations def_blk_aops;
45
Linus Torvalds1da177e2005-04-16 15:20:36 -070046static inline struct bdev_inode *BDEV_I(struct inode *inode)
47{
48 return container_of(inode, struct bdev_inode, vfs_inode);
49}
50
Geert Uytterhoevenff5053f2015-06-26 13:58:32 +020051struct block_device *I_BDEV(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -070052{
53 return &BDEV_I(inode)->bdev;
54}
Linus Torvalds1da177e2005-04-16 15:20:36 -070055EXPORT_SYMBOL(I_BDEV);
56
Vivek Goyaldbd3ca52015-11-09 09:23:40 -070057static void bdev_write_inode(struct block_device *bdev)
Christoph Hellwig564f00f2015-01-14 10:42:33 +010058{
Vivek Goyaldbd3ca52015-11-09 09:23:40 -070059 struct inode *inode = bdev->bd_inode;
60 int ret;
61
Christoph Hellwig564f00f2015-01-14 10:42:33 +010062 spin_lock(&inode->i_lock);
63 while (inode->i_state & I_DIRTY) {
64 spin_unlock(&inode->i_lock);
Vivek Goyaldbd3ca52015-11-09 09:23:40 -070065 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 }
Christoph Hellwig564f00f2015-01-14 10:42:33 +010072 spin_lock(&inode->i_lock);
73 }
74 spin_unlock(&inode->i_lock);
75}
76
Peter Zijlstraf9a14392007-05-06 14:49:55 -070077/* Kill _all_ buffers and pagecache , dirty or not.. */
Zheng Bin3373a342020-06-18 12:21:38 +080078static void kill_bdev(struct block_device *bdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070079{
Al Viroff01bb42011-09-16 02:31:11 -040080 struct address_space *mapping = bdev->bd_inode->i_mapping;
81
Ross Zwislerf9fe48b2016-01-22 15:10:40 -080082 if (mapping->nrpages == 0 && mapping->nrexceptional == 0)
Peter Zijlstraf9a14392007-05-06 14:49:55 -070083 return;
Al Viroff01bb42011-09-16 02:31:11 -040084
Peter Zijlstraf9a14392007-05-06 14:49:55 -070085 invalidate_bh_lrus();
Al Viroff01bb42011-09-16 02:31:11 -040086 truncate_inode_pages(mapping, 0);
Zheng Bin3373a342020-06-18 12:21:38 +080087}
Al Viroff01bb42011-09-16 02:31:11 -040088
89/* Invalidate clean unused buffers and pagecache. */
90void invalidate_bdev(struct block_device *bdev)
91{
92 struct address_space *mapping = bdev->bd_inode->i_mapping;
93
Andrey Ryabinina5f6a6a2017-05-03 14:56:02 -070094 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 }
Al Viroff01bb42011-09-16 02:31:11 -040099 /* 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 */
Dan Magenheimer31677602011-09-21 11:56:28 -0400102 cleancache_invalidate_inode(mapping);
Al Viroff01bb42011-09-16 02:31:11 -0400103}
104EXPORT_SYMBOL(invalidate_bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
Jan Kara04906b22019-01-14 09:48:10 +0100106static void set_init_blocksize(struct block_device *bdev)
107{
Christoph Hellwig6b7b1812020-06-26 10:01:55 +0200108 bdev->bd_inode->i_blkbits = blksize_bits(bdev_logical_block_size(bdev));
Jan Kara04906b22019-01-14 09:48:10 +0100109}
110
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111int set_blocksize(struct block_device *bdev, int size)
112{
113 /* Size must be a power of two, and between 512 and PAGE_SIZE */
Vignesh Babu BM1368c4f2007-05-08 00:24:32 -0700114 if (size > PAGE_SIZE || size < 512 || !is_power_of_2(size))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 return -EINVAL;
116
117 /* Size cannot be smaller than the size supported by the device */
Martin K. Petersene1defc42009-05-22 17:17:49 -0400118 if (size < bdev_logical_block_size(bdev))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 return -EINVAL;
120
121 /* Don't change the size if it is same as current */
Christoph Hellwig6b7b1812020-06-26 10:01:55 +0200122 if (bdev->bd_inode->i_blkbits != blksize_bits(size)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 sync_blockdev(bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 bdev->bd_inode->i_blkbits = blksize_bits(size);
125 kill_bdev(bdev);
126 }
127 return 0;
128}
129
130EXPORT_SYMBOL(set_blocksize);
131
132int sb_set_blocksize(struct super_block *sb, int size)
133{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 if (set_blocksize(sb->s_bdev, size))
135 return 0;
136 /* If we get here, we know size is power of two
137 * and it's value is between 512 and PAGE_SIZE */
138 sb->s_blocksize = size;
Coywolf Qi Hunt38885bd2006-03-24 03:18:05 -0800139 sb->s_blocksize_bits = blksize_bits(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 return sb->s_blocksize;
141}
142
143EXPORT_SYMBOL(sb_set_blocksize);
144
145int sb_min_blocksize(struct super_block *sb, int size)
146{
Martin K. Petersene1defc42009-05-22 17:17:49 -0400147 int minsize = bdev_logical_block_size(sb->s_bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 if (size < minsize)
149 size = minsize;
150 return sb_set_blocksize(sb, size);
151}
152
153EXPORT_SYMBOL(sb_min_blocksize);
154
155static int
156blkdev_get_block(struct inode *inode, sector_t iblock,
157 struct buffer_head *bh, int create)
158{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 bh->b_bdev = I_BDEV(inode);
160 bh->b_blocknr = iblock;
161 set_buffer_mapped(bh);
162 return 0;
163}
164
Dan Williams4ebb16c2015-10-28 07:48:19 +0900165static struct inode *bdev_file_inode(struct file *file)
166{
167 return file->f_mapping->host;
168}
169
Jens Axboe78250c02016-11-17 17:50:47 +0100170static unsigned int dio_bio_write_op(struct kiocb *iocb)
171{
172 unsigned int op = REQ_OP_WRITE | REQ_SYNC | REQ_IDLE;
173
174 /* avoid the need for a I/O completion work item */
175 if (iocb->ki_flags & IOCB_DSYNC)
176 op |= REQ_FUA;
177 return op;
178}
179
Christoph Hellwig189ce2b2016-10-31 11:59:25 -0600180#define DIO_INLINE_BIO_VECS 4
181
182static void blkdev_bio_end_io_simple(struct bio *bio)
183{
184 struct task_struct *waiter = bio->bi_private;
185
186 WRITE_ONCE(bio->bi_private, NULL);
Jens Axboe06193172018-11-13 21:16:54 -0700187 blk_wake_io_task(waiter);
Christoph Hellwig189ce2b2016-10-31 11:59:25 -0600188}
189
190static ssize_t
191__blkdev_direct_IO_simple(struct kiocb *iocb, struct iov_iter *iter,
192 int nr_pages)
193{
194 struct file *file = iocb->ki_filp;
195 struct block_device *bdev = I_BDEV(bdev_file_inode(file));
Christoph Hellwig9fec4a22019-06-26 15:49:26 +0200196 struct bio_vec inline_vecs[DIO_INLINE_BIO_VECS], *vecs;
Christoph Hellwig189ce2b2016-10-31 11:59:25 -0600197 loff_t pos = iocb->ki_pos;
198 bool should_dirty = false;
199 struct bio bio;
200 ssize_t ret;
201 blk_qc_t qc;
Christoph Hellwig189ce2b2016-10-31 11:59:25 -0600202
Jens Axboe9a794fb2016-11-22 08:12:39 -0700203 if ((pos | iov_iter_alignment(iter)) &
204 (bdev_logical_block_size(bdev) - 1))
Christoph Hellwig189ce2b2016-10-31 11:59:25 -0600205 return -EINVAL;
206
Jens Axboe72ecad22016-11-16 23:11:42 -0700207 if (nr_pages <= DIO_INLINE_BIO_VECS)
208 vecs = inline_vecs;
209 else {
Kees Cook6da2ec52018-06-12 13:55:00 -0700210 vecs = kmalloc_array(nr_pages, sizeof(struct bio_vec),
211 GFP_KERNEL);
Jens Axboe72ecad22016-11-16 23:11:42 -0700212 if (!vecs)
213 return -ENOMEM;
214 }
215
Ming Lei3a83f462016-11-22 08:57:21 -0700216 bio_init(&bio, vecs, nr_pages);
Christoph Hellwig74d46992017-08-23 19:10:32 +0200217 bio_set_dev(&bio, bdev);
Damien Le Moal4d1a4762016-11-22 15:38:49 +0900218 bio.bi_iter.bi_sector = pos >> 9;
Jens Axboe45d06cf2017-06-27 11:01:22 -0600219 bio.bi_write_hint = iocb->ki_hint;
Christoph Hellwig189ce2b2016-10-31 11:59:25 -0600220 bio.bi_private = current;
221 bio.bi_end_io = blkdev_bio_end_io_simple;
Adam Manzanares074111c2018-05-22 10:52:20 -0700222 bio.bi_ioprio = iocb->ki_ioprio;
Christoph Hellwig189ce2b2016-10-31 11:59:25 -0600223
224 ret = bio_iov_iter_get_pages(&bio, iter);
225 if (unlikely(ret))
Martin Wilck9362dd12018-07-25 23:15:08 +0200226 goto out;
Christoph Hellwig189ce2b2016-10-31 11:59:25 -0600227 ret = bio.bi_iter.bi_size;
228
229 if (iov_iter_rw(iter) == READ) {
Jens Axboe78250c02016-11-17 17:50:47 +0100230 bio.bi_opf = REQ_OP_READ;
Christoph Hellwig189ce2b2016-10-31 11:59:25 -0600231 if (iter_is_iovec(iter))
232 should_dirty = true;
233 } else {
Jens Axboe78250c02016-11-17 17:50:47 +0100234 bio.bi_opf = dio_bio_write_op(iocb);
Christoph Hellwig189ce2b2016-10-31 11:59:25 -0600235 task_io_account_write(ret);
236 }
Jens Axboed1e36282018-08-29 10:36:56 -0600237 if (iocb->ki_flags & IOCB_HIPRI)
Jens Axboe0bbb2802018-12-21 09:10:46 -0700238 bio_set_polled(&bio, iocb);
Christoph Hellwig189ce2b2016-10-31 11:59:25 -0600239
240 qc = submit_bio(&bio);
241 for (;;) {
Linus Torvalds1ac5cd42019-01-02 10:46:03 -0800242 set_current_state(TASK_UNINTERRUPTIBLE);
Christoph Hellwig189ce2b2016-10-31 11:59:25 -0600243 if (!READ_ONCE(bio.bi_private))
244 break;
245 if (!(iocb->ki_flags & IOCB_HIPRI) ||
Jens Axboe0a1b8b82018-11-26 08:24:43 -0700246 !blk_poll(bdev_get_queue(bdev), qc, true))
Ming Leie6249cd2020-05-03 09:54:22 +0800247 blk_io_schedule();
Christoph Hellwig189ce2b2016-10-31 11:59:25 -0600248 }
249 __set_current_state(TASK_RUNNING);
250
Christoph Hellwig9fec4a22019-06-26 15:49:26 +0200251 bio_release_pages(&bio, should_dirty);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200252 if (unlikely(bio.bi_status))
Linus Torvaldsc6b1e362017-07-03 10:34:51 -0700253 ret = blk_status_to_errno(bio.bi_status);
Jens Axboe9ae3b3f52017-06-28 15:30:13 -0600254
Martin Wilck9362dd12018-07-25 23:15:08 +0200255out:
256 if (vecs != inline_vecs)
257 kfree(vecs);
258
Jens Axboe9ae3b3f52017-06-28 15:30:13 -0600259 bio_uninit(&bio);
260
Christoph Hellwig189ce2b2016-10-31 11:59:25 -0600261 return ret;
262}
263
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700264struct blkdev_dio {
265 union {
266 struct kiocb *iocb;
267 struct task_struct *waiter;
268 };
269 size_t size;
270 atomic_t ref;
271 bool multi_bio : 1;
272 bool should_dirty : 1;
273 bool is_sync : 1;
274 struct bio bio;
275};
276
Kent Overstreet52190f82018-05-20 18:25:55 -0400277static struct bio_set blkdev_dio_pool;
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700278
Christoph Hellwigeae83ce2018-11-30 08:31:52 -0700279static int blkdev_iopoll(struct kiocb *kiocb, bool wait)
280{
281 struct block_device *bdev = I_BDEV(kiocb->ki_filp->f_mapping->host);
282 struct request_queue *q = bdev_get_queue(bdev);
283
284 return blk_poll(q, READ_ONCE(kiocb->ki_cookie), wait);
285}
286
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700287static void blkdev_bio_end_io(struct bio *bio)
288{
289 struct blkdev_dio *dio = bio->bi_private;
290 bool should_dirty = dio->should_dirty;
291
Jason Yana89afe52019-04-12 10:09:16 +0800292 if (bio->bi_status && !dio->bio.bi_status)
293 dio->bio.bi_status = bio->bi_status;
294
295 if (!dio->multi_bio || atomic_dec_and_test(&dio->ref)) {
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700296 if (!dio->is_sync) {
297 struct kiocb *iocb = dio->iocb;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200298 ssize_t ret;
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700299
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200300 if (likely(!dio->bio.bi_status)) {
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700301 ret = dio->size;
302 iocb->ki_pos += ret;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200303 } else {
304 ret = blk_status_to_errno(dio->bio.bi_status);
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700305 }
306
307 dio->iocb->ki_complete(iocb, ret, 0);
Christoph Hellwig531724a2018-11-30 09:23:48 +0100308 if (dio->multi_bio)
309 bio_put(&dio->bio);
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700310 } else {
311 struct task_struct *waiter = dio->waiter;
312
313 WRITE_ONCE(dio->waiter, NULL);
Jens Axboe06193172018-11-13 21:16:54 -0700314 blk_wake_io_task(waiter);
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700315 }
316 }
317
318 if (should_dirty) {
319 bio_check_pages_dirty(bio);
320 } else {
Christoph Hellwig57dfe3c2019-06-26 15:49:25 +0200321 bio_release_pages(bio, false);
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700322 bio_put(bio);
323 }
324}
325
Andrew Mortonb2e895d2007-02-03 01:14:01 -0800326static ssize_t
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700327__blkdev_direct_IO(struct kiocb *iocb, struct iov_iter *iter, int nr_pages)
Andrew Mortonb2e895d2007-02-03 01:14:01 -0800328{
329 struct file *file = iocb->ki_filp;
Dan Williams4ebb16c2015-10-28 07:48:19 +0900330 struct inode *inode = bdev_file_inode(file);
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700331 struct block_device *bdev = I_BDEV(inode);
Christoph Hellwig64d656a2016-12-22 19:20:45 +0100332 struct blk_plug plug;
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700333 struct blkdev_dio *dio;
334 struct bio *bio;
Jens Axboecb700eb2018-11-15 19:56:53 -0700335 bool is_poll = (iocb->ki_flags & IOCB_HIPRI) != 0;
Christoph Hellwig690e5322017-01-24 14:50:19 +0100336 bool is_read = (iov_iter_rw(iter) == READ), is_sync;
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700337 loff_t pos = iocb->ki_pos;
338 blk_qc_t qc = BLK_QC_T_NONE;
Jens Axboe7b6620d2019-08-15 11:09:16 -0600339 int ret = 0;
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700340
Jens Axboe9a794fb2016-11-22 08:12:39 -0700341 if ((pos | iov_iter_alignment(iter)) &
342 (bdev_logical_block_size(bdev) - 1))
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700343 return -EINVAL;
344
Jens Axboe7b6620d2019-08-15 11:09:16 -0600345 bio = bio_alloc_bioset(GFP_KERNEL, nr_pages, &blkdev_dio_pool);
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700346
347 dio = container_of(bio, struct blkdev_dio, bio);
Christoph Hellwig690e5322017-01-24 14:50:19 +0100348 dio->is_sync = is_sync = is_sync_kiocb(iocb);
Christoph Hellwig531724a2018-11-30 09:23:48 +0100349 if (dio->is_sync) {
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700350 dio->waiter = current;
Christoph Hellwig531724a2018-11-30 09:23:48 +0100351 bio_get(bio);
352 } else {
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700353 dio->iocb = iocb;
Christoph Hellwig531724a2018-11-30 09:23:48 +0100354 }
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700355
356 dio->size = 0;
357 dio->multi_bio = false;
David Howells00e23702018-10-22 13:07:28 +0100358 dio->should_dirty = is_read && iter_is_iovec(iter);
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700359
Jens Axboecb700eb2018-11-15 19:56:53 -0700360 /*
361 * Don't plug for HIPRI/polled IO, as those should go straight
362 * to issue
363 */
364 if (!is_poll)
365 blk_start_plug(&plug);
366
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700367 for (;;) {
Christoph Hellwig74d46992017-08-23 19:10:32 +0200368 bio_set_dev(bio, bdev);
Damien Le Moal4d1a4762016-11-22 15:38:49 +0900369 bio->bi_iter.bi_sector = pos >> 9;
Jens Axboe45d06cf2017-06-27 11:01:22 -0600370 bio->bi_write_hint = iocb->ki_hint;
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700371 bio->bi_private = dio;
372 bio->bi_end_io = blkdev_bio_end_io;
Adam Manzanares074111c2018-05-22 10:52:20 -0700373 bio->bi_ioprio = iocb->ki_ioprio;
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700374
Jens Axboee15c2ff2019-08-06 13:34:31 -0600375 ret = bio_iov_iter_get_pages(bio, iter);
376 if (unlikely(ret)) {
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200377 bio->bi_status = BLK_STS_IOERR;
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700378 bio_endio(bio);
379 break;
380 }
381
382 if (is_read) {
383 bio->bi_opf = REQ_OP_READ;
384 if (dio->should_dirty)
385 bio_set_pages_dirty(bio);
386 } else {
387 bio->bi_opf = dio_bio_write_op(iocb);
388 task_io_account_write(bio->bi_iter.bi_size);
389 }
390
Jens Axboe7b6620d2019-08-15 11:09:16 -0600391 dio->size += bio->bi_iter.bi_size;
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700392 pos += bio->bi_iter.bi_size;
393
394 nr_pages = iov_iter_npages(iter, BIO_MAX_PAGES);
395 if (!nr_pages) {
Christoph Hellwigeae83ce2018-11-30 08:31:52 -0700396 bool polled = false;
397
398 if (iocb->ki_flags & IOCB_HIPRI) {
Jens Axboe0bbb2802018-12-21 09:10:46 -0700399 bio_set_polled(bio, iocb);
Christoph Hellwigeae83ce2018-11-30 08:31:52 -0700400 polled = true;
401 }
Jens Axboed34513d2018-11-06 14:29:11 -0700402
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700403 qc = submit_bio(bio);
Christoph Hellwigeae83ce2018-11-30 08:31:52 -0700404
405 if (polled)
406 WRITE_ONCE(iocb->ki_cookie, qc);
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700407 break;
408 }
409
410 if (!dio->multi_bio) {
Christoph Hellwig531724a2018-11-30 09:23:48 +0100411 /*
412 * AIO needs an extra reference to ensure the dio
413 * structure which is embedded into the first bio
414 * stays around.
415 */
416 if (!is_sync)
417 bio_get(bio);
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700418 dio->multi_bio = true;
419 atomic_set(&dio->ref, 2);
420 } else {
421 atomic_inc(&dio->ref);
422 }
423
Jens Axboe7b6620d2019-08-15 11:09:16 -0600424 submit_bio(bio);
425 bio = bio_alloc(GFP_KERNEL, nr_pages);
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700426 }
Jens Axboecb700eb2018-11-15 19:56:53 -0700427
428 if (!is_poll)
429 blk_finish_plug(&plug);
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700430
Christoph Hellwig690e5322017-01-24 14:50:19 +0100431 if (!is_sync)
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700432 return -EIOCBQUEUED;
433
434 for (;;) {
Linus Torvalds1ac5cd42019-01-02 10:46:03 -0800435 set_current_state(TASK_UNINTERRUPTIBLE);
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700436 if (!READ_ONCE(dio->waiter))
437 break;
438
439 if (!(iocb->ki_flags & IOCB_HIPRI) ||
Jens Axboe0a1b8b82018-11-26 08:24:43 -0700440 !blk_poll(bdev_get_queue(bdev), qc, true))
Ming Leie6249cd2020-05-03 09:54:22 +0800441 blk_io_schedule();
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700442 }
443 __set_current_state(TASK_RUNNING);
444
Christoph Hellwig36ffc6c2017-06-03 09:38:00 +0200445 if (!ret)
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200446 ret = blk_status_to_errno(dio->bio.bi_status);
Jens Axboee15c2ff2019-08-06 13:34:31 -0600447 if (likely(!ret))
448 ret = dio->size;
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700449
450 bio_put(&dio->bio);
451 return ret;
452}
453
454static ssize_t
455blkdev_direct_IO(struct kiocb *iocb, struct iov_iter *iter)
456{
Christoph Hellwig189ce2b2016-10-31 11:59:25 -0600457 int nr_pages;
Andrew Mortonb2e895d2007-02-03 01:14:01 -0800458
Jens Axboe72ecad22016-11-16 23:11:42 -0700459 nr_pages = iov_iter_npages(iter, BIO_MAX_PAGES + 1);
Christoph Hellwig189ce2b2016-10-31 11:59:25 -0600460 if (!nr_pages)
461 return 0;
Jens Axboe72ecad22016-11-16 23:11:42 -0700462 if (is_sync_kiocb(iocb) && nr_pages <= BIO_MAX_PAGES)
Christoph Hellwig189ce2b2016-10-31 11:59:25 -0600463 return __blkdev_direct_IO_simple(iocb, iter, nr_pages);
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700464
465 return __blkdev_direct_IO(iocb, iter, min(nr_pages, BIO_MAX_PAGES));
Andrew Mortonb2e895d2007-02-03 01:14:01 -0800466}
467
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700468static __init int blkdev_init(void)
469{
Kent Overstreet52190f82018-05-20 18:25:55 -0400470 return bioset_init(&blkdev_dio_pool, 4, offsetof(struct blkdev_dio, bio), BIOSET_NEED_BVECS);
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700471}
472module_init(blkdev_init);
473
Jan Kara5cee5812009-04-27 16:43:51 +0200474int __sync_blockdev(struct block_device *bdev, int wait)
475{
476 if (!bdev)
477 return 0;
478 if (!wait)
479 return filemap_flush(bdev->bd_inode->i_mapping);
480 return filemap_write_and_wait(bdev->bd_inode->i_mapping);
481}
482
Nick Piggin585d3bc2009-02-25 10:44:19 +0100483/*
484 * Write out and wait upon all the dirty data associated with a block
485 * device via its mapping. Does not take the superblock lock.
486 */
487int sync_blockdev(struct block_device *bdev)
488{
Jan Kara5cee5812009-04-27 16:43:51 +0200489 return __sync_blockdev(bdev, 1);
Nick Piggin585d3bc2009-02-25 10:44:19 +0100490}
491EXPORT_SYMBOL(sync_blockdev);
492
493/*
494 * Write out and wait upon all dirty data associated with this
495 * device. Filesystem data as well as the underlying block
496 * device. Takes the superblock lock.
497 */
498int fsync_bdev(struct block_device *bdev)
499{
500 struct super_block *sb = get_super(bdev);
501 if (sb) {
Jan Kara60b06802009-04-27 16:43:53 +0200502 int res = sync_filesystem(sb);
Nick Piggin585d3bc2009-02-25 10:44:19 +0100503 drop_super(sb);
504 return res;
505 }
506 return sync_blockdev(bdev);
507}
Al Viro47e44912009-04-01 07:07:16 -0400508EXPORT_SYMBOL(fsync_bdev);
Nick Piggin585d3bc2009-02-25 10:44:19 +0100509
510/**
511 * freeze_bdev -- lock a filesystem and force it into a consistent state
512 * @bdev: blockdevice to lock
513 *
Nick Piggin585d3bc2009-02-25 10:44:19 +0100514 * If a superblock is found on this device, we take the s_umount semaphore
515 * on it to make sure nobody unmounts until the snapshot creation is done.
516 * The reference counter (bd_fsfreeze_count) guarantees that only the last
517 * unfreeze process can unfreeze the frozen filesystem actually when multiple
518 * freeze requests arrive simultaneously. It counts up in freeze_bdev() and
519 * count down in thaw_bdev(). When it becomes 0, thaw_bdev() will unfreeze
520 * actually.
521 */
522struct super_block *freeze_bdev(struct block_device *bdev)
523{
524 struct super_block *sb;
525 int error = 0;
526
527 mutex_lock(&bdev->bd_fsfreeze_mutex);
Christoph Hellwig45042302009-08-03 23:28:35 +0200528 if (++bdev->bd_fsfreeze_count > 1) {
529 /*
530 * We don't even need to grab a reference - the first call
531 * to freeze_bdev grab an active reference and only the last
532 * thaw_bdev drops it.
533 */
Nick Piggin585d3bc2009-02-25 10:44:19 +0100534 sb = get_super(bdev);
Andrey Ryabinin5bb53c02016-08-23 18:55:31 +0300535 if (sb)
536 drop_super(sb);
Nick Piggin585d3bc2009-02-25 10:44:19 +0100537 mutex_unlock(&bdev->bd_fsfreeze_mutex);
538 return sb;
539 }
Nick Piggin585d3bc2009-02-25 10:44:19 +0100540
Christoph Hellwig45042302009-08-03 23:28:35 +0200541 sb = get_active_super(bdev);
542 if (!sb)
543 goto out;
Benjamin Marzinski48b6bca2014-11-13 20:42:03 -0600544 if (sb->s_op->freeze_super)
545 error = sb->s_op->freeze_super(sb);
546 else
547 error = freeze_super(sb);
Josef Bacik18e9e512010-03-23 10:34:56 -0400548 if (error) {
549 deactivate_super(sb);
550 bdev->bd_fsfreeze_count--;
Christoph Hellwig45042302009-08-03 23:28:35 +0200551 mutex_unlock(&bdev->bd_fsfreeze_mutex);
Josef Bacik18e9e512010-03-23 10:34:56 -0400552 return ERR_PTR(error);
Nick Piggin585d3bc2009-02-25 10:44:19 +0100553 }
Josef Bacik18e9e512010-03-23 10:34:56 -0400554 deactivate_super(sb);
Christoph Hellwig45042302009-08-03 23:28:35 +0200555 out:
Nick Piggin585d3bc2009-02-25 10:44:19 +0100556 sync_blockdev(bdev);
557 mutex_unlock(&bdev->bd_fsfreeze_mutex);
Christoph Hellwig4fadd7b2009-08-03 23:28:06 +0200558 return sb; /* thaw_bdev releases s->s_umount */
Nick Piggin585d3bc2009-02-25 10:44:19 +0100559}
560EXPORT_SYMBOL(freeze_bdev);
561
562/**
563 * thaw_bdev -- unlock filesystem
564 * @bdev: blockdevice to unlock
565 * @sb: associated superblock
566 *
567 * Unlocks the filesystem and marks it writeable again after freeze_bdev().
568 */
569int thaw_bdev(struct block_device *bdev, struct super_block *sb)
570{
Christoph Hellwig45042302009-08-03 23:28:35 +0200571 int error = -EINVAL;
Nick Piggin585d3bc2009-02-25 10:44:19 +0100572
573 mutex_lock(&bdev->bd_fsfreeze_mutex);
Christoph Hellwig45042302009-08-03 23:28:35 +0200574 if (!bdev->bd_fsfreeze_count)
Josef Bacik18e9e512010-03-23 10:34:56 -0400575 goto out;
Nick Piggin585d3bc2009-02-25 10:44:19 +0100576
Christoph Hellwig45042302009-08-03 23:28:35 +0200577 error = 0;
578 if (--bdev->bd_fsfreeze_count > 0)
Josef Bacik18e9e512010-03-23 10:34:56 -0400579 goto out;
Nick Piggin585d3bc2009-02-25 10:44:19 +0100580
Christoph Hellwig45042302009-08-03 23:28:35 +0200581 if (!sb)
Josef Bacik18e9e512010-03-23 10:34:56 -0400582 goto out;
Christoph Hellwig45042302009-08-03 23:28:35 +0200583
Benjamin Marzinski48b6bca2014-11-13 20:42:03 -0600584 if (sb->s_op->thaw_super)
585 error = sb->s_op->thaw_super(sb);
586 else
587 error = thaw_super(sb);
Pierre Morel997198b2016-10-04 10:53:40 +0200588 if (error)
Josef Bacik18e9e512010-03-23 10:34:56 -0400589 bdev->bd_fsfreeze_count++;
Josef Bacik18e9e512010-03-23 10:34:56 -0400590out:
Nick Piggin585d3bc2009-02-25 10:44:19 +0100591 mutex_unlock(&bdev->bd_fsfreeze_mutex);
Pierre Morel997198b2016-10-04 10:53:40 +0200592 return error;
Nick Piggin585d3bc2009-02-25 10:44:19 +0100593}
594EXPORT_SYMBOL(thaw_bdev);
595
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596static int blkdev_writepage(struct page *page, struct writeback_control *wbc)
597{
598 return block_write_full_page(page, blkdev_get_block, wbc);
599}
600
601static int blkdev_readpage(struct file * file, struct page * page)
602{
603 return block_read_full_page(page, blkdev_get_block);
604}
605
Matthew Wilcox (Oracle)d4388342020-06-01 21:47:02 -0700606static void blkdev_readahead(struct readahead_control *rac)
Akinobu Mita447f05b2014-10-09 15:26:58 -0700607{
Matthew Wilcox (Oracle)d4388342020-06-01 21:47:02 -0700608 mpage_readahead(rac, blkdev_get_block);
Akinobu Mita447f05b2014-10-09 15:26:58 -0700609}
610
Nick Piggin6272b5a2007-10-16 01:25:04 -0700611static int blkdev_write_begin(struct file *file, struct address_space *mapping,
612 loff_t pos, unsigned len, unsigned flags,
613 struct page **pagep, void **fsdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614{
Christoph Hellwig155130a2010-06-04 11:29:58 +0200615 return block_write_begin(mapping, pos, len, flags, pagep,
616 blkdev_get_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617}
618
Nick Piggin6272b5a2007-10-16 01:25:04 -0700619static int blkdev_write_end(struct file *file, struct address_space *mapping,
620 loff_t pos, unsigned len, unsigned copied,
621 struct page *page, void *fsdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622{
Nick Piggin6272b5a2007-10-16 01:25:04 -0700623 int ret;
624 ret = block_write_end(file, mapping, pos, len, copied, page, fsdata);
625
626 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300627 put_page(page);
Nick Piggin6272b5a2007-10-16 01:25:04 -0700628
629 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630}
631
632/*
633 * private llseek:
Al Viro496ad9a2013-01-23 17:07:38 -0500634 * for a block special file file_inode(file)->i_size is zero
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 * so we compute the size by hand (just as in block_read/write above)
636 */
Andrew Morton965c8e52012-12-17 15:59:39 -0800637static loff_t block_llseek(struct file *file, loff_t offset, int whence)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638{
Dan Williams4ebb16c2015-10-28 07:48:19 +0900639 struct inode *bd_inode = bdev_file_inode(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 loff_t retval;
641
Al Viro59551022016-01-22 15:40:57 -0500642 inode_lock(bd_inode);
Al Viro5d48f3a2013-06-23 21:34:45 +0400643 retval = fixed_size_llseek(file, offset, whence, i_size_read(bd_inode));
Al Viro59551022016-01-22 15:40:57 -0500644 inode_unlock(bd_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 return retval;
646}
647
Josef Bacik02c24a82011-07-16 20:44:56 -0400648int blkdev_fsync(struct file *filp, loff_t start, loff_t end, int datasync)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649{
Dan Williams4ebb16c2015-10-28 07:48:19 +0900650 struct inode *bd_inode = bdev_file_inode(filp);
Anton Blanchardb8af67e2010-04-23 13:18:06 -0400651 struct block_device *bdev = I_BDEV(bd_inode);
Christoph Hellwigab0a9732009-10-29 14:14:04 +0100652 int error;
Rafael J. Wysockida5aa862011-08-02 02:17:48 +0200653
Jeff Layton372cf242017-07-06 07:02:28 -0400654 error = file_write_and_wait_range(filp, start, end);
Rafael J. Wysockida5aa862011-08-02 02:17:48 +0200655 if (error)
656 return error;
Christoph Hellwigab0a9732009-10-29 14:14:04 +0100657
Anton Blanchardb8af67e2010-04-23 13:18:06 -0400658 /*
659 * There is no need to serialise calls to blkdev_issue_flush with
660 * i_mutex and doing so causes performance issues with concurrent
661 * O_SYNC writers to a block device.
662 */
Christoph Hellwig93985542020-05-13 14:36:00 +0200663 error = blkdev_issue_flush(bdev, GFP_KERNEL);
Christoph Hellwigab0a9732009-10-29 14:14:04 +0100664 if (error == -EOPNOTSUPP)
665 error = 0;
Anton Blanchardb8af67e2010-04-23 13:18:06 -0400666
Christoph Hellwigab0a9732009-10-29 14:14:04 +0100667 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668}
Andrew Mortonb1dd3b22010-04-06 14:35:00 -0700669EXPORT_SYMBOL(blkdev_fsync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670
Matthew Wilcox47a191f2014-06-04 16:07:46 -0700671/**
672 * bdev_read_page() - Start reading a page from a block device
673 * @bdev: The device to read the page from
674 * @sector: The offset on the device to read the page to (need not be aligned)
675 * @page: The page to read
676 *
677 * On entry, the page should be locked. It will be unlocked when the page
678 * has been read. If the block driver implements rw_page synchronously,
679 * that will be true on exit from this function, but it need not be.
680 *
681 * Errors returned by this function are usually "soft", eg out of memory, or
682 * queue full; callers should try a different route to read this page rather
683 * than propagate an error back up the stack.
684 *
685 * Return: negative errno if an error occurs, 0 if submission was successful.
686 */
687int bdev_read_page(struct block_device *bdev, sector_t sector,
688 struct page *page)
689{
690 const struct block_device_operations *ops = bdev->bd_disk->fops;
Dan Williams2e6edc952015-11-19 13:29:28 -0800691 int result = -EOPNOTSUPP;
692
Vishal Vermaf68eb1e2015-05-12 13:48:53 -0400693 if (!ops->rw_page || bdev_get_integrity(bdev))
Dan Williams2e6edc952015-11-19 13:29:28 -0800694 return result;
695
Bart Van Assche3a0a5292017-11-09 10:49:58 -0800696 result = blk_queue_enter(bdev->bd_queue, 0);
Dan Williams2e6edc952015-11-19 13:29:28 -0800697 if (result)
698 return result;
Tejun Heo3f289dc2018-07-18 04:47:36 -0700699 result = ops->rw_page(bdev, sector + get_start_sect(bdev), page,
700 REQ_OP_READ);
Dan Williams2e6edc952015-11-19 13:29:28 -0800701 blk_queue_exit(bdev->bd_queue);
702 return result;
Matthew Wilcox47a191f2014-06-04 16:07:46 -0700703}
Matthew Wilcox47a191f2014-06-04 16:07:46 -0700704
705/**
706 * bdev_write_page() - Start writing a page to a block device
707 * @bdev: The device to write the page to
708 * @sector: The offset on the device to write the page to (need not be aligned)
709 * @page: The page to write
710 * @wbc: The writeback_control for the write
711 *
712 * On entry, the page should be locked and not currently under writeback.
713 * On exit, if the write started successfully, the page will be unlocked and
714 * under writeback. If the write failed already (eg the driver failed to
715 * queue the page to the device), the page will still be locked. If the
716 * caller is a ->writepage implementation, it will need to unlock the page.
717 *
718 * Errors returned by this function are usually "soft", eg out of memory, or
719 * queue full; callers should try a different route to write this page rather
720 * than propagate an error back up the stack.
721 *
722 * Return: negative errno if an error occurs, 0 if submission was successful.
723 */
724int bdev_write_page(struct block_device *bdev, sector_t sector,
725 struct page *page, struct writeback_control *wbc)
726{
727 int result;
Matthew Wilcox47a191f2014-06-04 16:07:46 -0700728 const struct block_device_operations *ops = bdev->bd_disk->fops;
Dan Williams2e6edc952015-11-19 13:29:28 -0800729
Vishal Vermaf68eb1e2015-05-12 13:48:53 -0400730 if (!ops->rw_page || bdev_get_integrity(bdev))
Matthew Wilcox47a191f2014-06-04 16:07:46 -0700731 return -EOPNOTSUPP;
Bart Van Assche3a0a5292017-11-09 10:49:58 -0800732 result = blk_queue_enter(bdev->bd_queue, 0);
Dan Williams2e6edc952015-11-19 13:29:28 -0800733 if (result)
734 return result;
735
Matthew Wilcox47a191f2014-06-04 16:07:46 -0700736 set_page_writeback(page);
Tejun Heo3f289dc2018-07-18 04:47:36 -0700737 result = ops->rw_page(bdev, sector + get_start_sect(bdev), page,
738 REQ_OP_WRITE);
Matthew Wilcoxf8927602017-10-13 15:58:15 -0700739 if (result) {
Matthew Wilcox47a191f2014-06-04 16:07:46 -0700740 end_page_writeback(page);
Matthew Wilcoxf8927602017-10-13 15:58:15 -0700741 } else {
742 clean_page_buffers(page);
Matthew Wilcox47a191f2014-06-04 16:07:46 -0700743 unlock_page(page);
Matthew Wilcoxf8927602017-10-13 15:58:15 -0700744 }
Dan Williams2e6edc952015-11-19 13:29:28 -0800745 blk_queue_exit(bdev->bd_queue);
Matthew Wilcox47a191f2014-06-04 16:07:46 -0700746 return result;
747}
Matthew Wilcox47a191f2014-06-04 16:07:46 -0700748
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749/*
750 * pseudo-fs
751 */
752
753static __cacheline_aligned_in_smp DEFINE_SPINLOCK(bdev_lock);
Christoph Lametere18b8902006-12-06 20:33:20 -0800754static struct kmem_cache * bdev_cachep __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755
756static struct inode *bdev_alloc_inode(struct super_block *sb)
757{
Christoph Lametere94b1762006-12-06 20:33:17 -0800758 struct bdev_inode *ei = kmem_cache_alloc(bdev_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 if (!ei)
760 return NULL;
761 return &ei->vfs_inode;
762}
763
Al Viro41149cb2019-04-10 15:12:38 -0400764static void bdev_free_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765{
Al Viro41149cb2019-04-10 15:12:38 -0400766 kmem_cache_free(bdev_cachep, BDEV_I(inode));
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100767}
768
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700769static void init_once(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770{
771 struct bdev_inode *ei = (struct bdev_inode *) foo;
772 struct block_device *bdev = &ei->bdev;
773
Christoph Lametera35afb82007-05-16 22:10:57 -0700774 memset(bdev, 0, sizeof(*bdev));
775 mutex_init(&bdev->bd_mutex);
Christoph Lametera35afb82007-05-16 22:10:57 -0700776 INIT_LIST_HEAD(&bdev->bd_list);
Tejun Heo49731ba2011-01-14 18:43:57 +0100777#ifdef CONFIG_SYSFS
778 INIT_LIST_HEAD(&bdev->bd_holder_disks);
779#endif
Jan Karaa5a79d02017-03-02 16:50:13 +0100780 bdev->bd_bdi = &noop_backing_dev_info;
Christoph Lametera35afb82007-05-16 22:10:57 -0700781 inode_init_once(&ei->vfs_inode);
Takashi Satofcccf502009-01-09 16:40:59 -0800782 /* Initialize mutex for freeze. */
783 mutex_init(&bdev->bd_fsfreeze_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784}
785
Al Virob57922d2010-06-07 14:34:48 -0400786static void bdev_evict_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787{
788 struct block_device *bdev = &BDEV_I(inode)->bdev;
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700789 truncate_inode_pages_final(&inode->i_data);
Al Virob57922d2010-06-07 14:34:48 -0400790 invalidate_inode_buffers(inode); /* is it needed here? */
Jan Karadbd57682012-05-03 14:48:02 +0200791 clear_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 spin_lock(&bdev_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 list_del_init(&bdev->bd_list);
794 spin_unlock(&bdev_lock);
Jan Karaf7597412017-03-23 01:37:00 +0100795 /* Detach inode from wb early as bdi_put() may free bdi->wb */
796 inode_detach_wb(inode);
Jan Karaa5a79d02017-03-02 16:50:13 +0100797 if (bdev->bd_bdi != &noop_backing_dev_info) {
Jan Karab1d2dc562017-02-02 15:56:52 +0100798 bdi_put(bdev->bd_bdi);
Jan Karaa5a79d02017-03-02 16:50:13 +0100799 bdev->bd_bdi = &noop_backing_dev_info;
800 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801}
802
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800803static const struct super_operations bdev_sops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 .statfs = simple_statfs,
805 .alloc_inode = bdev_alloc_inode,
Al Viro41149cb2019-04-10 15:12:38 -0400806 .free_inode = bdev_free_inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 .drop_inode = generic_delete_inode,
Al Virob57922d2010-06-07 14:34:48 -0400808 .evict_inode = bdev_evict_inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809};
810
David Howells9030d162019-03-25 16:38:23 +0000811static int bd_init_fs_context(struct fs_context *fc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812{
David Howells9030d162019-03-25 16:38:23 +0000813 struct pseudo_fs_context *ctx = init_pseudo(fc, BDEVFS_MAGIC);
814 if (!ctx)
815 return -ENOMEM;
816 fc->s_iflags |= SB_I_CGROUPWB;
817 ctx->ops = &bdev_sops;
818 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819}
820
821static struct file_system_type bd_type = {
822 .name = "bdev",
David Howells9030d162019-03-25 16:38:23 +0000823 .init_fs_context = bd_init_fs_context,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 .kill_sb = kill_anon_super,
825};
826
Tejun Heoa212b102015-05-22 17:13:33 -0400827struct super_block *blockdev_superblock __read_mostly;
828EXPORT_SYMBOL_GPL(blockdev_superblock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829
830void __init bdev_cache_init(void)
831{
832 int err;
Sergey Senozhatskyace85772012-01-10 02:43:59 +0300833 static struct vfsmount *bd_mnt;
Denis ChengRqc2acf7b2008-12-01 14:34:56 -0800834
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 bdev_cachep = kmem_cache_create("bdev_cache", sizeof(struct bdev_inode),
Paul Jacksonfffb60f2006-03-24 03:16:06 -0800836 0, (SLAB_HWCACHE_ALIGN|SLAB_RECLAIM_ACCOUNT|
Vladimir Davydov5d097052016-01-14 15:18:21 -0800837 SLAB_MEM_SPREAD|SLAB_ACCOUNT|SLAB_PANIC),
Paul Mundt20c2df82007-07-20 10:11:58 +0900838 init_once);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 err = register_filesystem(&bd_type);
840 if (err)
841 panic("Cannot register bdev pseudo-fs");
842 bd_mnt = kern_mount(&bd_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 if (IS_ERR(bd_mnt))
844 panic("Cannot create bdev pseudo-fs");
Sergey Senozhatskyace85772012-01-10 02:43:59 +0300845 blockdev_superblock = bd_mnt->mnt_sb; /* For writeback */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846}
847
848/*
849 * Most likely _very_ bad one - but then it's hardly critical for small
850 * /dev and can be fixed when somebody will need really large one.
851 * Keep in mind that it will be fed through icache hash function too.
852 */
853static inline unsigned long hash(dev_t dev)
854{
855 return MAJOR(dev)+MINOR(dev);
856}
857
858static int bdev_test(struct inode *inode, void *data)
859{
860 return BDEV_I(inode)->bdev.bd_dev == *(dev_t *)data;
861}
862
863static int bdev_set(struct inode *inode, void *data)
864{
865 BDEV_I(inode)->bdev.bd_dev = *(dev_t *)data;
866 return 0;
867}
868
869static LIST_HEAD(all_bdevs);
870
871struct block_device *bdget(dev_t dev)
872{
873 struct block_device *bdev;
874 struct inode *inode;
875
Denis ChengRqc2acf7b2008-12-01 14:34:56 -0800876 inode = iget5_locked(blockdev_superblock, hash(dev),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 bdev_test, bdev_set, &dev);
878
879 if (!inode)
880 return NULL;
881
882 bdev = &BDEV_I(inode)->bdev;
883
884 if (inode->i_state & I_NEW) {
885 bdev->bd_contains = NULL;
Lachlan McIlroy782b94c2011-06-30 11:01:45 +1000886 bdev->bd_super = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 bdev->bd_inode = inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 bdev->bd_part_count = 0;
889 bdev->bd_invalidated = 0;
890 inode->i_mode = S_IFBLK;
891 inode->i_rdev = dev;
892 inode->i_bdev = bdev;
893 inode->i_data.a_ops = &def_blk_aops;
894 mapping_set_gfp_mask(&inode->i_data, GFP_USER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 spin_lock(&bdev_lock);
896 list_add(&bdev->bd_list, &all_bdevs);
897 spin_unlock(&bdev_lock);
898 unlock_new_inode(inode);
899 }
900 return bdev;
901}
902
903EXPORT_SYMBOL(bdget);
904
Alan Jenkinsdddac6a2009-07-29 21:07:55 +0200905/**
906 * bdgrab -- Grab a reference to an already referenced block device
907 * @bdev: Block device to grab a reference to.
908 */
909struct block_device *bdgrab(struct block_device *bdev)
910{
Al Viro7de9c6ee2010-10-23 11:11:40 -0400911 ihold(bdev->bd_inode);
Alan Jenkinsdddac6a2009-07-29 21:07:55 +0200912 return bdev;
913}
Anatol Pomozovc1681bf2013-04-01 09:47:56 -0700914EXPORT_SYMBOL(bdgrab);
Alan Jenkinsdddac6a2009-07-29 21:07:55 +0200915
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916long nr_blockdev_pages(void)
917{
Matthias Kaehlcke203a2932007-07-15 23:40:23 -0700918 struct block_device *bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 long ret = 0;
920 spin_lock(&bdev_lock);
Matthias Kaehlcke203a2932007-07-15 23:40:23 -0700921 list_for_each_entry(bdev, &all_bdevs, bd_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 ret += bdev->bd_inode->i_mapping->nrpages;
923 }
924 spin_unlock(&bdev_lock);
925 return ret;
926}
927
928void bdput(struct block_device *bdev)
929{
930 iput(bdev->bd_inode);
931}
932
933EXPORT_SYMBOL(bdput);
934
935static struct block_device *bd_acquire(struct inode *inode)
936{
937 struct block_device *bdev;
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700938
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 spin_lock(&bdev_lock);
940 bdev = inode->i_bdev;
Jan Karacccd9fb2017-02-21 18:09:48 +0100941 if (bdev && !inode_unhashed(bdev->bd_inode)) {
Ilya Dryomoved8a9d2c2015-11-20 22:18:43 +0100942 bdgrab(bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 spin_unlock(&bdev_lock);
944 return bdev;
945 }
946 spin_unlock(&bdev_lock);
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700947
Jan Karacccd9fb2017-02-21 18:09:48 +0100948 /*
949 * i_bdev references block device inode that was already shut down
950 * (corresponding device got removed). Remove the reference and look
951 * up block device inode again just in case new device got
952 * reestablished under the same device number.
953 */
954 if (bdev)
955 bd_forget(inode);
956
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 bdev = bdget(inode->i_rdev);
958 if (bdev) {
959 spin_lock(&bdev_lock);
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700960 if (!inode->i_bdev) {
961 /*
Al Viro7de9c6ee2010-10-23 11:11:40 -0400962 * We take an additional reference to bd_inode,
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700963 * and it's released in clear_inode() of inode.
964 * So, we can access it via ->i_mapping always
965 * without igrab().
966 */
Ilya Dryomoved8a9d2c2015-11-20 22:18:43 +0100967 bdgrab(bdev);
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700968 inode->i_bdev = bdev;
969 inode->i_mapping = bdev->bd_inode->i_mapping;
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700970 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 spin_unlock(&bdev_lock);
972 }
973 return bdev;
974}
975
976/* Call when you free inode */
977
978void bd_forget(struct inode *inode)
979{
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700980 struct block_device *bdev = NULL;
981
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 spin_lock(&bdev_lock);
Yan Hongb4ea2ea2013-04-30 15:26:47 -0700983 if (!sb_is_blkdev_sb(inode->i_sb))
984 bdev = inode->i_bdev;
Al Viroa4a4f942016-07-19 13:16:52 -0400985 inode->i_bdev = NULL;
986 inode->i_mapping = &inode->i_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 spin_unlock(&bdev_lock);
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700988
989 if (bdev)
Ilya Dryomoved8a9d2c2015-11-20 22:18:43 +0100990 bdput(bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991}
992
Tejun Heo1a3cbbc2010-04-07 18:52:29 +0900993/**
994 * bd_may_claim - test whether a block device can be claimed
995 * @bdev: block device of interest
996 * @whole: whole block device containing @bdev, may equal @bdev
997 * @holder: holder trying to claim @bdev
998 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300999 * Test whether @bdev can be claimed by @holder.
Tejun Heo1a3cbbc2010-04-07 18:52:29 +09001000 *
1001 * CONTEXT:
1002 * spin_lock(&bdev_lock).
1003 *
1004 * RETURNS:
1005 * %true if @bdev can be claimed, %false otherwise.
1006 */
1007static bool bd_may_claim(struct block_device *bdev, struct block_device *whole,
1008 void *holder)
1009{
1010 if (bdev->bd_holder == holder)
1011 return true; /* already a holder */
1012 else if (bdev->bd_holder != NULL)
1013 return false; /* held by someone else */
NeilBrownbcc7f5b2016-12-12 08:21:51 -07001014 else if (whole == bdev)
Tejun Heo1a3cbbc2010-04-07 18:52:29 +09001015 return true; /* is a whole device which isn't held */
1016
Tejun Heoe525fd82010-11-13 11:55:17 +01001017 else if (whole->bd_holder == bd_may_claim)
Tejun Heo1a3cbbc2010-04-07 18:52:29 +09001018 return true; /* is a partition of a device that is being partitioned */
1019 else if (whole->bd_holder != NULL)
1020 return false; /* is a partition of a held device */
1021 else
1022 return true; /* is a partition of an un-held device */
1023}
1024
1025/**
Tejun Heo6b4517a2010-04-07 18:53:59 +09001026 * bd_prepare_to_claim - prepare to claim a block device
1027 * @bdev: block device of interest
1028 * @whole: the whole device containing @bdev, may equal @bdev
1029 * @holder: holder trying to claim @bdev
1030 *
1031 * Prepare to claim @bdev. This function fails if @bdev is already
1032 * claimed by another holder and waits if another claiming is in
1033 * progress. This function doesn't actually claim. On successful
1034 * return, the caller has ownership of bd_claiming and bd_holder[s].
1035 *
1036 * CONTEXT:
1037 * spin_lock(&bdev_lock). Might release bdev_lock, sleep and regrab
1038 * it multiple times.
1039 *
1040 * RETURNS:
1041 * 0 if @bdev can be claimed, -EBUSY otherwise.
1042 */
1043static int bd_prepare_to_claim(struct block_device *bdev,
1044 struct block_device *whole, void *holder)
1045{
1046retry:
1047 /* if someone else claimed, fail */
1048 if (!bd_may_claim(bdev, whole, holder))
1049 return -EBUSY;
1050
Tejun Heoe75aa852010-08-04 17:59:39 +02001051 /* if claiming is already in progress, wait for it to finish */
1052 if (whole->bd_claiming) {
Tejun Heo6b4517a2010-04-07 18:53:59 +09001053 wait_queue_head_t *wq = bit_waitqueue(&whole->bd_claiming, 0);
1054 DEFINE_WAIT(wait);
1055
1056 prepare_to_wait(wq, &wait, TASK_UNINTERRUPTIBLE);
1057 spin_unlock(&bdev_lock);
1058 schedule();
1059 finish_wait(wq, &wait);
1060 spin_lock(&bdev_lock);
1061 goto retry;
1062 }
1063
1064 /* yay, all mine */
1065 return 0;
1066}
1067
Jan Kara560e7cb2018-02-26 13:01:42 +01001068static struct gendisk *bdev_get_gendisk(struct block_device *bdev, int *partno)
1069{
1070 struct gendisk *disk = get_gendisk(bdev->bd_dev, partno);
1071
1072 if (!disk)
1073 return NULL;
1074 /*
1075 * Now that we hold gendisk reference we make sure bdev we looked up is
1076 * not stale. If it is, it means device got removed and created before
1077 * we looked up gendisk and we fail open in such case. Associating
1078 * unhashed bdev with newly created gendisk could lead to two bdevs
1079 * (and thus two independent caches) being associated with one device
1080 * which is bad.
1081 */
1082 if (inode_unhashed(bdev->bd_inode)) {
1083 put_disk_and_module(disk);
1084 return NULL;
1085 }
1086 return disk;
1087}
1088
Tejun Heo6b4517a2010-04-07 18:53:59 +09001089/**
1090 * bd_start_claiming - start claiming a block device
1091 * @bdev: block device of interest
1092 * @holder: holder trying to claim @bdev
1093 *
1094 * @bdev is about to be opened exclusively. Check @bdev can be opened
1095 * exclusively and mark that an exclusive open is in progress. Each
1096 * successful call to this function must be matched with a call to
Nick Pigginb0018362010-05-26 01:51:19 +10001097 * either bd_finish_claiming() or bd_abort_claiming() (which do not
1098 * fail).
1099 *
1100 * This function is used to gain exclusive access to the block device
1101 * without actually causing other exclusive open attempts to fail. It
1102 * should be used when the open sequence itself requires exclusive
1103 * access but may subsequently fail.
Tejun Heo6b4517a2010-04-07 18:53:59 +09001104 *
1105 * CONTEXT:
1106 * Might sleep.
1107 *
1108 * RETURNS:
1109 * Pointer to the block device containing @bdev on success, ERR_PTR()
1110 * value on failure.
1111 */
Jan Kara89e524c02019-07-30 13:10:14 +02001112struct block_device *bd_start_claiming(struct block_device *bdev, void *holder)
Tejun Heo6b4517a2010-04-07 18:53:59 +09001113{
1114 struct gendisk *disk;
1115 struct block_device *whole;
1116 int partno, err;
1117
1118 might_sleep();
1119
1120 /*
1121 * @bdev might not have been initialized properly yet, look up
1122 * and grab the outer block device the hard way.
1123 */
Jan Kara560e7cb2018-02-26 13:01:42 +01001124 disk = bdev_get_gendisk(bdev, &partno);
Tejun Heo6b4517a2010-04-07 18:53:59 +09001125 if (!disk)
1126 return ERR_PTR(-ENXIO);
1127
Tejun Heod4c208b2011-06-13 12:45:48 +02001128 /*
1129 * Normally, @bdev should equal what's returned from bdget_disk()
1130 * if partno is 0; however, some drivers (floppy) use multiple
1131 * bdev's for the same physical device and @bdev may be one of the
1132 * aliases. Keep @bdev if partno is 0. This means claimer
1133 * tracking is broken for those devices but it has always been that
1134 * way.
1135 */
1136 if (partno)
1137 whole = bdget_disk(disk, 0);
1138 else
1139 whole = bdgrab(bdev);
1140
Jan Kara9df6c292018-02-26 13:01:39 +01001141 put_disk_and_module(disk);
Tejun Heo6b4517a2010-04-07 18:53:59 +09001142 if (!whole)
1143 return ERR_PTR(-ENOMEM);
1144
1145 /* prepare to claim, if successful, mark claiming in progress */
1146 spin_lock(&bdev_lock);
1147
1148 err = bd_prepare_to_claim(bdev, whole, holder);
1149 if (err == 0) {
1150 whole->bd_claiming = holder;
1151 spin_unlock(&bdev_lock);
1152 return whole;
1153 } else {
1154 spin_unlock(&bdev_lock);
1155 bdput(whole);
1156 return ERR_PTR(err);
1157 }
1158}
Jan Kara89e524c02019-07-30 13:10:14 +02001159EXPORT_SYMBOL(bd_start_claiming);
1160
1161static void bd_clear_claiming(struct block_device *whole, void *holder)
1162{
1163 lockdep_assert_held(&bdev_lock);
1164 /* tell others that we're done */
1165 BUG_ON(whole->bd_claiming != holder);
1166 whole->bd_claiming = NULL;
1167 wake_up_bit(&whole->bd_claiming, 0);
1168}
1169
1170/**
1171 * bd_finish_claiming - finish claiming of a block device
1172 * @bdev: block device of interest
1173 * @whole: whole block device (returned from bd_start_claiming())
1174 * @holder: holder that has claimed @bdev
1175 *
1176 * Finish exclusive open of a block device. Mark the device as exlusively
1177 * open by the holder and wake up all waiters for exclusive open to finish.
1178 */
Christoph Hellwig764b23b2020-06-20 09:16:36 +02001179static void bd_finish_claiming(struct block_device *bdev,
1180 struct block_device *whole, void *holder)
Jan Kara89e524c02019-07-30 13:10:14 +02001181{
1182 spin_lock(&bdev_lock);
1183 BUG_ON(!bd_may_claim(bdev, whole, holder));
1184 /*
1185 * Note that for a whole device bd_holders will be incremented twice,
1186 * and bd_holder will be set to bd_may_claim before being set to holder
1187 */
1188 whole->bd_holders++;
1189 whole->bd_holder = bd_may_claim;
1190 bdev->bd_holders++;
1191 bdev->bd_holder = holder;
1192 bd_clear_claiming(whole, holder);
1193 spin_unlock(&bdev_lock);
1194}
Jan Kara89e524c02019-07-30 13:10:14 +02001195
1196/**
1197 * bd_abort_claiming - abort claiming of a block device
1198 * @bdev: block device of interest
1199 * @whole: whole block device (returned from bd_start_claiming())
1200 * @holder: holder that has claimed @bdev
1201 *
1202 * Abort claiming of a block device when the exclusive open failed. This can be
1203 * also used when exclusive open is not actually desired and we just needed
1204 * to block other exclusive openers for a while.
1205 */
1206void bd_abort_claiming(struct block_device *bdev, struct block_device *whole,
1207 void *holder)
1208{
1209 spin_lock(&bdev_lock);
1210 bd_clear_claiming(whole, holder);
1211 spin_unlock(&bdev_lock);
1212}
1213EXPORT_SYMBOL(bd_abort_claiming);
Tejun Heo6b4517a2010-04-07 18:53:59 +09001214
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001215#ifdef CONFIG_SYSFS
Tejun Heo49731ba2011-01-14 18:43:57 +01001216struct bd_holder_disk {
1217 struct list_head list;
1218 struct gendisk *disk;
1219 int refcnt;
1220};
1221
1222static struct bd_holder_disk *bd_find_holder_disk(struct block_device *bdev,
1223 struct gendisk *disk)
1224{
1225 struct bd_holder_disk *holder;
1226
1227 list_for_each_entry(holder, &bdev->bd_holder_disks, list)
1228 if (holder->disk == disk)
1229 return holder;
1230 return NULL;
1231}
1232
Andrew Morton4d7dd8fd2006-09-29 01:58:56 -07001233static int add_symlink(struct kobject *from, struct kobject *to)
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001234{
Andrew Morton4d7dd8fd2006-09-29 01:58:56 -07001235 return sysfs_create_link(from, to, kobject_name(to));
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001236}
1237
1238static void del_symlink(struct kobject *from, struct kobject *to)
1239{
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001240 sysfs_remove_link(from, kobject_name(to));
1241}
1242
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001243/**
Tejun Heoe09b4572010-11-13 11:55:17 +01001244 * bd_link_disk_holder - create symlinks between holding disk and slave bdev
1245 * @bdev: the claimed slave bdev
1246 * @disk: the holding disk
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -05001247 *
Tejun Heo49731ba2011-01-14 18:43:57 +01001248 * DON'T USE THIS UNLESS YOU'RE ALREADY USING IT.
1249 *
Tejun Heoe09b4572010-11-13 11:55:17 +01001250 * This functions creates the following sysfs symlinks.
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -05001251 *
Tejun Heoe09b4572010-11-13 11:55:17 +01001252 * - from "slaves" directory of the holder @disk to the claimed @bdev
1253 * - from "holders" directory of the @bdev to the holder @disk
1254 *
1255 * For example, if /dev/dm-0 maps to /dev/sda and disk for dm-0 is
1256 * passed to bd_link_disk_holder(), then:
1257 *
1258 * /sys/block/dm-0/slaves/sda --> /sys/block/sda
1259 * /sys/block/sda/holders/dm-0 --> /sys/block/dm-0
1260 *
1261 * The caller must have claimed @bdev before calling this function and
1262 * ensure that both @bdev and @disk are valid during the creation and
1263 * lifetime of these symlinks.
1264 *
1265 * CONTEXT:
1266 * Might sleep.
1267 *
1268 * RETURNS:
1269 * 0 on success, -errno on failure.
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -05001270 */
Tejun Heoe09b4572010-11-13 11:55:17 +01001271int bd_link_disk_holder(struct block_device *bdev, struct gendisk *disk)
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -05001272{
Tejun Heo49731ba2011-01-14 18:43:57 +01001273 struct bd_holder_disk *holder;
Tejun Heoe09b4572010-11-13 11:55:17 +01001274 int ret = 0;
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001275
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001276 mutex_lock(&bdev->bd_mutex);
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -05001277
Tejun Heo49731ba2011-01-14 18:43:57 +01001278 WARN_ON_ONCE(!bdev->bd_holder);
Johannes Weiner4e916722007-07-15 23:41:25 -07001279
Tejun Heoe09b4572010-11-13 11:55:17 +01001280 /* FIXME: remove the following once add_disk() handles errors */
1281 if (WARN_ON(!disk->slave_dir || !bdev->bd_part->holder_dir))
1282 goto out_unlock;
Johannes Weiner4e916722007-07-15 23:41:25 -07001283
Tejun Heo49731ba2011-01-14 18:43:57 +01001284 holder = bd_find_holder_disk(bdev, disk);
1285 if (holder) {
1286 holder->refcnt++;
Tejun Heoe09b4572010-11-13 11:55:17 +01001287 goto out_unlock;
1288 }
1289
Tejun Heo49731ba2011-01-14 18:43:57 +01001290 holder = kzalloc(sizeof(*holder), GFP_KERNEL);
1291 if (!holder) {
1292 ret = -ENOMEM;
1293 goto out_unlock;
1294 }
1295
1296 INIT_LIST_HEAD(&holder->list);
1297 holder->disk = disk;
1298 holder->refcnt = 1;
1299
1300 ret = add_symlink(disk->slave_dir, &part_to_dev(bdev->bd_part)->kobj);
1301 if (ret)
1302 goto out_free;
1303
1304 ret = add_symlink(bdev->bd_part->holder_dir, &disk_to_dev(disk)->kobj);
1305 if (ret)
1306 goto out_del;
Tejun Heoe7407d12011-02-24 09:56:32 +01001307 /*
1308 * bdev could be deleted beneath us which would implicitly destroy
1309 * the holder directory. Hold on to it.
1310 */
1311 kobject_get(bdev->bd_part->holder_dir);
Tejun Heo49731ba2011-01-14 18:43:57 +01001312
1313 list_add(&holder->list, &bdev->bd_holder_disks);
1314 goto out_unlock;
1315
1316out_del:
1317 del_symlink(disk->slave_dir, &part_to_dev(bdev->bd_part)->kobj);
1318out_free:
1319 kfree(holder);
Tejun Heoe09b4572010-11-13 11:55:17 +01001320out_unlock:
Jun'ichi Nomurab4cf1b72006-03-27 01:18:00 -08001321 mutex_unlock(&bdev->bd_mutex);
Tejun Heoe09b4572010-11-13 11:55:17 +01001322 return ret;
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001323}
Tejun Heoe09b4572010-11-13 11:55:17 +01001324EXPORT_SYMBOL_GPL(bd_link_disk_holder);
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001325
Tejun Heo49731ba2011-01-14 18:43:57 +01001326/**
1327 * bd_unlink_disk_holder - destroy symlinks created by bd_link_disk_holder()
1328 * @bdev: the calimed slave bdev
1329 * @disk: the holding disk
1330 *
1331 * DON'T USE THIS UNLESS YOU'RE ALREADY USING IT.
1332 *
1333 * CONTEXT:
1334 * Might sleep.
1335 */
1336void bd_unlink_disk_holder(struct block_device *bdev, struct gendisk *disk)
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001337{
Tejun Heo49731ba2011-01-14 18:43:57 +01001338 struct bd_holder_disk *holder;
Tejun Heoe09b4572010-11-13 11:55:17 +01001339
Tejun Heo49731ba2011-01-14 18:43:57 +01001340 mutex_lock(&bdev->bd_mutex);
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001341
Tejun Heo49731ba2011-01-14 18:43:57 +01001342 holder = bd_find_holder_disk(bdev, disk);
1343
1344 if (!WARN_ON_ONCE(holder == NULL) && !--holder->refcnt) {
1345 del_symlink(disk->slave_dir, &part_to_dev(bdev->bd_part)->kobj);
1346 del_symlink(bdev->bd_part->holder_dir,
1347 &disk_to_dev(disk)->kobj);
Tejun Heoe7407d12011-02-24 09:56:32 +01001348 kobject_put(bdev->bd_part->holder_dir);
Tejun Heo49731ba2011-01-14 18:43:57 +01001349 list_del_init(&holder->list);
1350 kfree(holder);
1351 }
1352
1353 mutex_unlock(&bdev->bd_mutex);
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001354}
Tejun Heo49731ba2011-01-14 18:43:57 +01001355EXPORT_SYMBOL_GPL(bd_unlink_disk_holder);
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001356#endif
1357
Andrew Patterson0c002c22008-09-04 14:27:20 -06001358/**
Andrew Patterson56ade442008-09-04 14:27:40 -06001359 * flush_disk - invalidates all buffer-cache entries on a disk
1360 *
1361 * @bdev: struct block device to be flushed
Randy Dunlape6eb5ce2011-02-26 10:54:00 -08001362 * @kill_dirty: flag to guide handling of dirty inodes
Andrew Patterson56ade442008-09-04 14:27:40 -06001363 *
1364 * Invalidates all buffer-cache entries on a disk. It should be called
1365 * when a disk has been changed -- either by a media change or online
1366 * resize.
1367 */
NeilBrown93b270f2011-02-24 17:25:47 +11001368static void flush_disk(struct block_device *bdev, bool kill_dirty)
Andrew Patterson56ade442008-09-04 14:27:40 -06001369{
NeilBrown93b270f2011-02-24 17:25:47 +11001370 if (__invalidate_device(bdev, kill_dirty)) {
Andrew Patterson56ade442008-09-04 14:27:40 -06001371 printk(KERN_WARNING "VFS: busy inodes on changed media or "
Dmitry Monakhov424081f2015-04-13 16:31:34 +04001372 "resized disk %s\n",
1373 bdev->bd_disk ? bdev->bd_disk->disk_name : "");
Andrew Patterson56ade442008-09-04 14:27:40 -06001374 }
Jan Karacba22d82019-10-21 10:38:00 +02001375 bdev->bd_invalidated = 1;
Andrew Patterson56ade442008-09-04 14:27:40 -06001376}
1377
1378/**
Randy Dunlap57d1b532008-10-09 10:42:38 +02001379 * check_disk_size_change - checks for disk size change and adjusts bdev size.
Andrew Pattersonc3279d12008-09-04 14:27:25 -06001380 * @disk: struct gendisk to check
1381 * @bdev: struct bdev to adjust.
Christoph Hellwig5afb7832018-05-29 16:42:59 +02001382 * @verbose: if %true log a message about a size change if there is any
Andrew Pattersonc3279d12008-09-04 14:27:25 -06001383 *
1384 * This routine checks to see if the bdev size does not match the disk size
shunki-fujita849cf552018-04-05 16:20:07 -07001385 * and adjusts it if it differs. When shrinking the bdev size, its all caches
1386 * are freed.
Andrew Pattersonc3279d12008-09-04 14:27:25 -06001387 */
Christoph Hellwiga1548b62019-11-14 15:34:34 +01001388static void check_disk_size_change(struct gendisk *disk,
1389 struct block_device *bdev, bool verbose)
Andrew Pattersonc3279d12008-09-04 14:27:25 -06001390{
1391 loff_t disk_size, bdev_size;
1392
1393 disk_size = (loff_t)get_capacity(disk) << 9;
1394 bdev_size = i_size_read(bdev->bd_inode);
1395 if (disk_size != bdev_size) {
Christoph Hellwig5afb7832018-05-29 16:42:59 +02001396 if (verbose) {
1397 printk(KERN_INFO
1398 "%s: detected capacity change from %lld to %lld\n",
1399 disk->disk_name, bdev_size, disk_size);
1400 }
Andrew Pattersonc3279d12008-09-04 14:27:25 -06001401 i_size_write(bdev->bd_inode, disk_size);
shunki-fujita849cf552018-04-05 16:20:07 -07001402 if (bdev_size > disk_size)
1403 flush_disk(bdev, false);
Andrew Pattersonc3279d12008-09-04 14:27:25 -06001404 }
Christoph Hellwig979c690d2019-11-14 15:34:37 +01001405 bdev->bd_invalidated = 0;
Andrew Pattersonc3279d12008-09-04 14:27:25 -06001406}
Andrew Pattersonc3279d12008-09-04 14:27:25 -06001407
1408/**
Randy Dunlap57d1b532008-10-09 10:42:38 +02001409 * revalidate_disk - wrapper for lower-level driver's revalidate_disk call-back
Andrew Patterson0c002c22008-09-04 14:27:20 -06001410 * @disk: struct gendisk to be revalidated
1411 *
1412 * This routine is a wrapper for lower-level driver's revalidate_disk
1413 * call-backs. It is used to do common pre and post operations needed
1414 * for all revalidate_disk operations.
1415 */
1416int revalidate_disk(struct gendisk *disk)
1417{
1418 int ret = 0;
1419
1420 if (disk->fops->revalidate_disk)
1421 ret = disk->fops->revalidate_disk(disk);
Andrew Pattersonc3279d12008-09-04 14:27:25 -06001422
Jan Kara31cb1d62019-05-15 08:57:40 +02001423 /*
1424 * Hidden disks don't have associated bdev so there's no point in
1425 * revalidating it.
1426 */
1427 if (!(disk->flags & GENHD_FL_HIDDEN)) {
1428 struct block_device *bdev = bdget_disk(disk, 0);
1429
1430 if (!bdev)
1431 return ret;
1432
1433 mutex_lock(&bdev->bd_mutex);
1434 check_disk_size_change(disk, bdev, ret == 0);
Jan Kara31cb1d62019-05-15 08:57:40 +02001435 mutex_unlock(&bdev->bd_mutex);
1436 bdput(bdev);
1437 }
Andrew Patterson0c002c22008-09-04 14:27:20 -06001438 return ret;
1439}
1440EXPORT_SYMBOL(revalidate_disk);
1441
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442/*
1443 * This routine checks whether a removable media has been changed,
1444 * and invalidates all buffer-cache-entries in that case. This
1445 * is a relatively slow routine, so we have to try to minimize using
1446 * it. Thus it is called only upon a 'mount' or 'open'. This
1447 * is the best way of combining speed and utility, I think.
1448 * People changing diskettes in the middle of an operation deserve
1449 * to lose :-)
1450 */
1451int check_disk_change(struct block_device *bdev)
1452{
1453 struct gendisk *disk = bdev->bd_disk;
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -07001454 const struct block_device_operations *bdops = disk->fops;
Tejun Heo77ea8872010-12-08 20:57:37 +01001455 unsigned int events;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456
Tejun Heo77ea8872010-12-08 20:57:37 +01001457 events = disk_clear_events(disk, DISK_EVENT_MEDIA_CHANGE |
1458 DISK_EVENT_EJECT_REQUEST);
1459 if (!(events & DISK_EVENT_MEDIA_CHANGE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 return 0;
1461
NeilBrown93b270f2011-02-24 17:25:47 +11001462 flush_disk(bdev, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 if (bdops->revalidate_disk)
1464 bdops->revalidate_disk(bdev->bd_disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 return 1;
1466}
1467
1468EXPORT_SYMBOL(check_disk_change);
1469
1470void bd_set_size(struct block_device *bdev, loff_t size)
1471{
Al Viro59551022016-01-22 15:40:57 -05001472 inode_lock(bdev->bd_inode);
Guo Chaod646a022013-02-21 15:16:42 -08001473 i_size_write(bdev->bd_inode, size);
Al Viro59551022016-01-22 15:40:57 -05001474 inode_unlock(bdev->bd_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475}
1476EXPORT_SYMBOL(bd_set_size);
1477
Al Viro4385bab2013-05-05 22:11:03 -04001478static void __blkdev_put(struct block_device *bdev, fmode_t mode, int for_part);
NeilBrown37be4122006-12-08 02:36:16 -08001479
Christoph Hellwig142fe8f2019-11-14 15:34:35 +01001480int bdev_disk_changed(struct block_device *bdev, bool invalidate)
Christoph Hellwiga1548b62019-11-14 15:34:34 +01001481{
Christoph Hellwig142fe8f2019-11-14 15:34:35 +01001482 struct gendisk *disk = bdev->bd_disk;
Christoph Hellwiga1548b62019-11-14 15:34:34 +01001483 int ret;
1484
Christoph Hellwigf0b870d2019-11-14 15:34:36 +01001485 lockdep_assert_held(&bdev->bd_mutex);
1486
Christoph Hellwiga1548b62019-11-14 15:34:34 +01001487rescan:
Christoph Hellwigd46430b2020-04-14 09:28:57 +02001488 ret = blk_drop_partitions(bdev);
Christoph Hellwiga1548b62019-11-14 15:34:34 +01001489 if (ret)
1490 return ret;
1491
Christoph Hellwigd981cb52020-03-18 09:12:06 +01001492 /*
1493 * Historically we only set the capacity to zero for devices that
1494 * support partitions (independ of actually having partitions created).
1495 * Doing that is rather inconsistent, but changing it broke legacy
1496 * udisks polling for legacy ide-cdrom devices. Use the crude check
1497 * below to get the sane behavior for most device while not breaking
1498 * userspace for this particular setup.
1499 */
1500 if (invalidate) {
1501 if (disk_part_scan_enabled(disk) ||
1502 !(disk->flags & GENHD_FL_REMOVABLE))
1503 set_capacity(disk, 0);
1504 } else {
1505 if (disk->fops->revalidate_disk)
1506 disk->fops->revalidate_disk(disk);
1507 }
Christoph Hellwiga1548b62019-11-14 15:34:34 +01001508
1509 check_disk_size_change(disk, bdev, !invalidate);
Christoph Hellwiga1548b62019-11-14 15:34:34 +01001510
Christoph Hellwig142fe8f2019-11-14 15:34:35 +01001511 if (get_capacity(disk)) {
1512 ret = blk_add_partitions(disk, bdev);
1513 if (ret == -EAGAIN)
1514 goto rescan;
Eric Biggers490547c2019-12-02 10:21:34 -08001515 } else if (invalidate) {
Christoph Hellwiga1548b62019-11-14 15:34:34 +01001516 /*
1517 * Tell userspace that the media / partition table may have
1518 * changed.
1519 */
1520 kobject_uevent(&disk_to_dev(disk)->kobj, KOBJ_CHANGE);
Christoph Hellwiga1548b62019-11-14 15:34:34 +01001521 }
1522
Christoph Hellwiga1548b62019-11-14 15:34:34 +01001523 return ret;
1524}
Christoph Hellwigf0b870d2019-11-14 15:34:36 +01001525/*
1526 * Only exported for for loop and dasd for historic reasons. Don't use in new
1527 * code!
1528 */
1529EXPORT_SYMBOL_GPL(bdev_disk_changed);
Christoph Hellwiga1548b62019-11-14 15:34:34 +01001530
Peter Zijlstra6d740cd2007-02-20 13:58:18 -08001531/*
1532 * bd_mutex locking:
1533 *
1534 * mutex_lock(part->bd_mutex)
1535 * mutex_lock_nested(whole->bd_mutex, 1)
1536 */
1537
Al Viro572c4892007-10-08 13:24:05 -04001538static int __blkdev_get(struct block_device *bdev, fmode_t mode, int for_part)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 struct gendisk *disk;
Pavel Emelyanov7db9cfd2008-06-05 22:46:27 -07001541 int ret;
Tejun Heocf771cb2008-09-03 09:01:09 +02001542 int partno;
Al Virofe6e9c12008-06-23 08:30:55 -04001543 int perm = 0;
Jan Kara89736652018-02-26 13:01:40 +01001544 bool first_open = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545
Al Viro572c4892007-10-08 13:24:05 -04001546 if (mode & FMODE_READ)
Al Virofe6e9c12008-06-23 08:30:55 -04001547 perm |= MAY_READ;
Al Viro572c4892007-10-08 13:24:05 -04001548 if (mode & FMODE_WRITE)
Al Virofe6e9c12008-06-23 08:30:55 -04001549 perm |= MAY_WRITE;
1550 /*
1551 * hooks: /n/, see "layering violations".
1552 */
Chris Wrightb7300b72010-08-10 18:02:55 -07001553 if (!for_part) {
1554 ret = devcgroup_inode_permission(bdev->bd_inode, perm);
Jason Yan2d3a8e22020-06-16 20:16:55 +08001555 if (ret != 0)
Chris Wrightb7300b72010-08-10 18:02:55 -07001556 return ret;
Al Viro82666022008-08-01 05:32:04 -04001557 }
Pavel Emelyanov7db9cfd2008-06-05 22:46:27 -07001558
NeilBrownd3374822009-01-09 08:31:10 +11001559 restart:
Tejun Heo0762b8b2008-08-25 19:56:12 +09001560
Tejun Heo89f97492008-11-05 10:21:06 +01001561 ret = -ENXIO;
Jan Kara560e7cb2018-02-26 13:01:42 +01001562 disk = bdev_get_gendisk(bdev, &partno);
Tejun Heo0762b8b2008-08-25 19:56:12 +09001563 if (!disk)
Arnd Bergmann6e9624b2010-08-07 18:25:34 +02001564 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565
Tejun Heo69e02c52011-03-09 19:54:27 +01001566 disk_block_events(disk);
NeilBrown6796bf52006-12-08 02:36:16 -08001567 mutex_lock_nested(&bdev->bd_mutex, for_part);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 if (!bdev->bd_openers) {
Jan Kara89736652018-02-26 13:01:40 +01001569 first_open = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 bdev->bd_disk = disk;
Andi Kleen87192a22012-01-12 17:20:34 -08001571 bdev->bd_queue = disk->queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 bdev->bd_contains = bdev;
Christoph Hellwigc2ee0702017-08-23 19:10:31 +02001573 bdev->bd_partno = partno;
Dan Williams03cdadb2016-02-26 15:19:43 -08001574
Tejun Heocf771cb2008-09-03 09:01:09 +02001575 if (!partno) {
Tejun Heo89f97492008-11-05 10:21:06 +01001576 ret = -ENXIO;
1577 bdev->bd_part = disk_get_part(disk, partno);
1578 if (!bdev->bd_part)
1579 goto out_clear;
1580
Tejun Heo1196f8b2011-04-21 20:54:45 +02001581 ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 if (disk->fops->open) {
Al Viro572c4892007-10-08 13:24:05 -04001583 ret = disk->fops->open(bdev, mode);
NeilBrownd3374822009-01-09 08:31:10 +11001584 if (ret == -ERESTARTSYS) {
1585 /* Lost a race with 'disk' being
1586 * deleted, try again.
1587 * See md.c
1588 */
1589 disk_put_part(bdev->bd_part);
1590 bdev->bd_part = NULL;
NeilBrownd3374822009-01-09 08:31:10 +11001591 bdev->bd_disk = NULL;
Andi Kleen87192a22012-01-12 17:20:34 -08001592 bdev->bd_queue = NULL;
NeilBrownd3374822009-01-09 08:31:10 +11001593 mutex_unlock(&bdev->bd_mutex);
Tejun Heo69e02c52011-03-09 19:54:27 +01001594 disk_unblock_events(disk);
Jan Kara9df6c292018-02-26 13:01:39 +01001595 put_disk_and_module(disk);
NeilBrownd3374822009-01-09 08:31:10 +11001596 goto restart;
1597 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 }
Tejun Heo7e697232011-05-23 13:26:07 +02001599
Jan Kara04906b22019-01-14 09:48:10 +01001600 if (!ret) {
Tejun Heo7e697232011-05-23 13:26:07 +02001601 bd_set_size(bdev,(loff_t)get_capacity(disk)<<9);
Jan Kara04906b22019-01-14 09:48:10 +01001602 set_init_blocksize(bdev);
1603 }
Tejun Heo7e697232011-05-23 13:26:07 +02001604
Tejun Heo1196f8b2011-04-21 20:54:45 +02001605 /*
1606 * If the device is invalidated, rescan partition
1607 * if open succeeded or failed with -ENOMEDIUM.
1608 * The latter is necessary to prevent ghost
1609 * partitions on a removed medium.
1610 */
Jan Kara731dc482019-10-21 10:37:59 +02001611 if (bdev->bd_invalidated &&
1612 (!ret || ret == -ENOMEDIUM))
1613 bdev_disk_changed(bdev, ret == -ENOMEDIUM);
Dan Williams5a023cd2015-11-30 10:20:29 -08001614
Tejun Heo1196f8b2011-04-21 20:54:45 +02001615 if (ret)
1616 goto out_clear;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 struct block_device *whole;
1619 whole = bdget_disk(disk, 0);
1620 ret = -ENOMEM;
1621 if (!whole)
Tejun Heo0762b8b2008-08-25 19:56:12 +09001622 goto out_clear;
NeilBrown37be4122006-12-08 02:36:16 -08001623 BUG_ON(for_part);
Al Viro572c4892007-10-08 13:24:05 -04001624 ret = __blkdev_get(whole, mode, 1);
Jason Yan2d3a8e22020-06-16 20:16:55 +08001625 if (ret) {
1626 bdput(whole);
Tejun Heo0762b8b2008-08-25 19:56:12 +09001627 goto out_clear;
Jason Yan2d3a8e22020-06-16 20:16:55 +08001628 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 bdev->bd_contains = whole;
Tejun Heo89f97492008-11-05 10:21:06 +01001630 bdev->bd_part = disk_get_part(disk, partno);
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001631 if (!(disk->flags & GENHD_FL_UP) ||
Tejun Heo89f97492008-11-05 10:21:06 +01001632 !bdev->bd_part || !bdev->bd_part->nr_sects) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 ret = -ENXIO;
Tejun Heo0762b8b2008-08-25 19:56:12 +09001634 goto out_clear;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 }
Tejun Heo89f97492008-11-05 10:21:06 +01001636 bd_set_size(bdev, (loff_t)bdev->bd_part->nr_sects << 9);
Jan Kara04906b22019-01-14 09:48:10 +01001637 set_init_blocksize(bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 }
Jan Kara03e26272017-03-23 01:36:53 +01001639
1640 if (bdev->bd_bdi == &noop_backing_dev_info)
1641 bdev->bd_bdi = bdi_get(disk->queue->backing_dev_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 if (bdev->bd_contains == bdev) {
Tejun Heo1196f8b2011-04-21 20:54:45 +02001644 ret = 0;
1645 if (bdev->bd_disk->fops->open)
Al Viro572c4892007-10-08 13:24:05 -04001646 ret = bdev->bd_disk->fops->open(bdev, mode);
Tejun Heo1196f8b2011-04-21 20:54:45 +02001647 /* the same as first opener case, read comment there */
Jan Kara731dc482019-10-21 10:37:59 +02001648 if (bdev->bd_invalidated &&
1649 (!ret || ret == -ENOMEDIUM))
1650 bdev_disk_changed(bdev, ret == -ENOMEDIUM);
Tejun Heo1196f8b2011-04-21 20:54:45 +02001651 if (ret)
1652 goto out_unlock_bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 }
1654 }
1655 bdev->bd_openers++;
NeilBrown37be4122006-12-08 02:36:16 -08001656 if (for_part)
1657 bdev->bd_part_count++;
Arjan van de Venc039e312006-03-23 03:00:28 -08001658 mutex_unlock(&bdev->bd_mutex);
Tejun Heo69e02c52011-03-09 19:54:27 +01001659 disk_unblock_events(disk);
Jan Kara89736652018-02-26 13:01:40 +01001660 /* only one opener holds refs to the module and disk */
1661 if (!first_open)
1662 put_disk_and_module(disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663 return 0;
1664
Tejun Heo0762b8b2008-08-25 19:56:12 +09001665 out_clear:
Tejun Heo89f97492008-11-05 10:21:06 +01001666 disk_put_part(bdev->bd_part);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 bdev->bd_disk = NULL;
Tejun Heo0762b8b2008-08-25 19:56:12 +09001668 bdev->bd_part = NULL;
Andi Kleen87192a22012-01-12 17:20:34 -08001669 bdev->bd_queue = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 if (bdev != bdev->bd_contains)
Al Viro572c4892007-10-08 13:24:05 -04001671 __blkdev_put(bdev->bd_contains, mode, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 bdev->bd_contains = NULL;
Tejun Heo0762b8b2008-08-25 19:56:12 +09001673 out_unlock_bdev:
Arjan van de Venc039e312006-03-23 03:00:28 -08001674 mutex_unlock(&bdev->bd_mutex);
Tejun Heo69e02c52011-03-09 19:54:27 +01001675 disk_unblock_events(disk);
Jan Kara9df6c292018-02-26 13:01:39 +01001676 put_disk_and_module(disk);
Dan Carpenter4345cab2011-03-19 13:53:31 +01001677 out:
Tejun Heo0762b8b2008-08-25 19:56:12 +09001678
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679 return ret;
1680}
1681
Tejun Heod4d77622010-11-13 11:55:18 +01001682/**
1683 * blkdev_get - open a block device
1684 * @bdev: block_device to open
1685 * @mode: FMODE_* mask
1686 * @holder: exclusive holder identifier
1687 *
1688 * Open @bdev with @mode. If @mode includes %FMODE_EXCL, @bdev is
1689 * open with exclusive access. Specifying %FMODE_EXCL with %NULL
1690 * @holder is invalid. Exclusive opens may nest for the same @holder.
1691 *
1692 * On success, the reference count of @bdev is unchanged. On failure,
1693 * @bdev is put.
1694 *
1695 * CONTEXT:
1696 * Might sleep.
1697 *
1698 * RETURNS:
1699 * 0 on success, -errno on failure.
1700 */
Tejun Heoe525fd82010-11-13 11:55:17 +01001701int blkdev_get(struct block_device *bdev, fmode_t mode, void *holder)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702{
Tejun Heoe525fd82010-11-13 11:55:17 +01001703 struct block_device *whole = NULL;
1704 int res;
1705
1706 WARN_ON_ONCE((mode & FMODE_EXCL) && !holder);
1707
1708 if ((mode & FMODE_EXCL) && holder) {
1709 whole = bd_start_claiming(bdev, holder);
1710 if (IS_ERR(whole)) {
1711 bdput(bdev);
1712 return PTR_ERR(whole);
1713 }
1714 }
1715
1716 res = __blkdev_get(bdev, mode, 0);
1717
1718 if (whole) {
Tejun Heod4dc2102011-04-21 20:54:46 +02001719 struct gendisk *disk = whole->bd_disk;
1720
Tejun Heo6a027ef2010-11-13 11:55:17 +01001721 /* finish claiming */
Tejun Heo77ea8872010-12-08 20:57:37 +01001722 mutex_lock(&bdev->bd_mutex);
Jan Karae91455b2019-08-07 11:36:47 +02001723 if (!res)
1724 bd_finish_claiming(bdev, whole, holder);
1725 else
1726 bd_abort_claiming(bdev, whole, holder);
Tejun Heo77ea8872010-12-08 20:57:37 +01001727 /*
Tejun Heod4dc2102011-04-21 20:54:46 +02001728 * Block event polling for write claims if requested. Any
1729 * write holder makes the write_holder state stick until
1730 * all are released. This is good enough and tracking
1731 * individual writeable reference is too fragile given the
1732 * way @mode is used in blkdev_get/put().
Tejun Heo77ea8872010-12-08 20:57:37 +01001733 */
Tejun Heo4c49ff32011-06-01 08:27:41 +02001734 if (!res && (mode & FMODE_WRITE) && !bdev->bd_write_holder &&
1735 (disk->flags & GENHD_FL_BLOCK_EVENTS_ON_EXCL_WRITE)) {
Tejun Heo77ea8872010-12-08 20:57:37 +01001736 bdev->bd_write_holder = true;
Tejun Heod4dc2102011-04-21 20:54:46 +02001737 disk_block_events(disk);
Tejun Heo77ea8872010-12-08 20:57:37 +01001738 }
1739
1740 mutex_unlock(&bdev->bd_mutex);
Tejun Heo6a027ef2010-11-13 11:55:17 +01001741 bdput(whole);
Tejun Heoe525fd82010-11-13 11:55:17 +01001742 }
1743
Jason Yan2d3a8e22020-06-16 20:16:55 +08001744 if (res)
1745 bdput(bdev);
1746
Tejun Heoe525fd82010-11-13 11:55:17 +01001747 return res;
NeilBrown37be4122006-12-08 02:36:16 -08001748}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749EXPORT_SYMBOL(blkdev_get);
1750
Tejun Heod4d77622010-11-13 11:55:18 +01001751/**
1752 * blkdev_get_by_path - open a block device by name
1753 * @path: path to the block device to open
1754 * @mode: FMODE_* mask
1755 * @holder: exclusive holder identifier
1756 *
1757 * Open the blockdevice described by the device file at @path. @mode
1758 * and @holder are identical to blkdev_get().
1759 *
1760 * On success, the returned block_device has reference count of one.
1761 *
1762 * CONTEXT:
1763 * Might sleep.
1764 *
1765 * RETURNS:
1766 * Pointer to block_device on success, ERR_PTR(-errno) on failure.
1767 */
1768struct block_device *blkdev_get_by_path(const char *path, fmode_t mode,
1769 void *holder)
1770{
1771 struct block_device *bdev;
1772 int err;
1773
1774 bdev = lookup_bdev(path);
1775 if (IS_ERR(bdev))
1776 return bdev;
1777
1778 err = blkdev_get(bdev, mode, holder);
1779 if (err)
1780 return ERR_PTR(err);
1781
Chuck Ebberte51900f2011-02-16 18:11:53 -05001782 if ((mode & FMODE_WRITE) && bdev_read_only(bdev)) {
1783 blkdev_put(bdev, mode);
1784 return ERR_PTR(-EACCES);
1785 }
1786
Tejun Heod4d77622010-11-13 11:55:18 +01001787 return bdev;
1788}
1789EXPORT_SYMBOL(blkdev_get_by_path);
1790
1791/**
1792 * blkdev_get_by_dev - open a block device by device number
1793 * @dev: device number of block device to open
1794 * @mode: FMODE_* mask
1795 * @holder: exclusive holder identifier
1796 *
1797 * Open the blockdevice described by device number @dev. @mode and
1798 * @holder are identical to blkdev_get().
1799 *
1800 * Use it ONLY if you really do not have anything better - i.e. when
1801 * you are behind a truly sucky interface and all you are given is a
1802 * device number. _Never_ to be used for internal purposes. If you
1803 * ever need it - reconsider your API.
1804 *
1805 * On success, the returned block_device has reference count of one.
1806 *
1807 * CONTEXT:
1808 * Might sleep.
1809 *
1810 * RETURNS:
1811 * Pointer to block_device on success, ERR_PTR(-errno) on failure.
1812 */
1813struct block_device *blkdev_get_by_dev(dev_t dev, fmode_t mode, void *holder)
1814{
1815 struct block_device *bdev;
1816 int err;
1817
1818 bdev = bdget(dev);
1819 if (!bdev)
1820 return ERR_PTR(-ENOMEM);
1821
1822 err = blkdev_get(bdev, mode, holder);
1823 if (err)
1824 return ERR_PTR(err);
1825
1826 return bdev;
1827}
1828EXPORT_SYMBOL(blkdev_get_by_dev);
1829
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830static int blkdev_open(struct inode * inode, struct file * filp)
1831{
1832 struct block_device *bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833
1834 /*
1835 * Preserve backwards compatibility and allow large file access
1836 * even if userspace doesn't ask for it explicitly. Some mkfs
1837 * binary needs it. We might want to drop this workaround
1838 * during an unstable branch.
1839 */
1840 filp->f_flags |= O_LARGEFILE;
1841
Christoph Hellwigc35fc7a2017-08-29 16:13:21 +02001842 filp->f_mode |= FMODE_NOWAIT;
1843
Al Viro572c4892007-10-08 13:24:05 -04001844 if (filp->f_flags & O_NDELAY)
1845 filp->f_mode |= FMODE_NDELAY;
1846 if (filp->f_flags & O_EXCL)
1847 filp->f_mode |= FMODE_EXCL;
1848 if ((filp->f_flags & O_ACCMODE) == 3)
1849 filp->f_mode |= FMODE_WRITE_IOCTL;
1850
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 bdev = bd_acquire(inode);
Pavel Emelianov6a2aae02006-10-28 10:38:33 -07001852 if (bdev == NULL)
1853 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854
Al Viro572c4892007-10-08 13:24:05 -04001855 filp->f_mapping = bdev->bd_inode->i_mapping;
Jeff Layton5660e132017-07-06 07:02:25 -04001856 filp->f_wb_err = filemap_sample_wb_err(filp->f_mapping);
Al Viro572c4892007-10-08 13:24:05 -04001857
Tejun Heoe525fd82010-11-13 11:55:17 +01001858 return blkdev_get(bdev, filp->f_mode, filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859}
1860
Al Viro4385bab2013-05-05 22:11:03 -04001861static void __blkdev_put(struct block_device *bdev, fmode_t mode, int for_part)
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001862{
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001863 struct gendisk *disk = bdev->bd_disk;
NeilBrown37be4122006-12-08 02:36:16 -08001864 struct block_device *victim = NULL;
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001865
Douglas Andersonb849dd82020-03-24 14:48:27 -07001866 /*
1867 * Sync early if it looks like we're the last one. If someone else
1868 * opens the block device between now and the decrement of bd_openers
1869 * then we did a sync that we didn't need to, but that's not the end
1870 * of the world and we want to avoid long (could be several minute)
1871 * syncs while holding the mutex.
1872 */
1873 if (bdev->bd_openers == 1)
1874 sync_blockdev(bdev);
1875
NeilBrown6796bf52006-12-08 02:36:16 -08001876 mutex_lock_nested(&bdev->bd_mutex, for_part);
NeilBrown37be4122006-12-08 02:36:16 -08001877 if (for_part)
1878 bdev->bd_part_count--;
1879
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001880 if (!--bdev->bd_openers) {
Tejun Heo6a027ef2010-11-13 11:55:17 +01001881 WARN_ON_ONCE(bdev->bd_holders);
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001882 sync_blockdev(bdev);
1883 kill_bdev(bdev);
Ilya Dryomov43d1c0e2015-11-20 22:22:34 +01001884
Vivek Goyaldbd3ca52015-11-09 09:23:40 -07001885 bdev_write_inode(bdev);
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001886 }
1887 if (bdev->bd_contains == bdev) {
1888 if (disk->fops->release)
Al Virodb2a1442013-05-05 21:52:57 -04001889 disk->fops->release(disk, mode);
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001890 }
1891 if (!bdev->bd_openers) {
Tejun Heo0762b8b2008-08-25 19:56:12 +09001892 disk_put_part(bdev->bd_part);
1893 bdev->bd_part = NULL;
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001894 bdev->bd_disk = NULL;
NeilBrown37be4122006-12-08 02:36:16 -08001895 if (bdev != bdev->bd_contains)
1896 victim = bdev->bd_contains;
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001897 bdev->bd_contains = NULL;
Tejun Heo523e1d32011-10-19 14:31:07 +02001898
Jan Kara9df6c292018-02-26 13:01:39 +01001899 put_disk_and_module(disk);
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001900 }
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001901 mutex_unlock(&bdev->bd_mutex);
1902 bdput(bdev);
NeilBrown37be4122006-12-08 02:36:16 -08001903 if (victim)
Al Viro9a1c3542008-02-22 20:40:24 -05001904 __blkdev_put(victim, mode, 1);
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001905}
1906
Al Viro4385bab2013-05-05 22:11:03 -04001907void blkdev_put(struct block_device *bdev, fmode_t mode)
NeilBrown37be4122006-12-08 02:36:16 -08001908{
Tejun Heo85ef06d2011-07-01 16:17:47 +02001909 mutex_lock(&bdev->bd_mutex);
1910
Tejun Heoe525fd82010-11-13 11:55:17 +01001911 if (mode & FMODE_EXCL) {
Tejun Heo6a027ef2010-11-13 11:55:17 +01001912 bool bdev_free;
1913
1914 /*
1915 * Release a claim on the device. The holder fields
1916 * are protected with bdev_lock. bd_mutex is to
1917 * synchronize disk_holder unlinking.
1918 */
Tejun Heo6a027ef2010-11-13 11:55:17 +01001919 spin_lock(&bdev_lock);
1920
1921 WARN_ON_ONCE(--bdev->bd_holders < 0);
1922 WARN_ON_ONCE(--bdev->bd_contains->bd_holders < 0);
1923
1924 /* bd_contains might point to self, check in a separate step */
1925 if ((bdev_free = !bdev->bd_holders))
1926 bdev->bd_holder = NULL;
1927 if (!bdev->bd_contains->bd_holders)
1928 bdev->bd_contains->bd_holder = NULL;
1929
1930 spin_unlock(&bdev_lock);
1931
Tejun Heo77ea8872010-12-08 20:57:37 +01001932 /*
1933 * If this was the last claim, remove holder link and
1934 * unblock evpoll if it was a write holder.
1935 */
Tejun Heo85ef06d2011-07-01 16:17:47 +02001936 if (bdev_free && bdev->bd_write_holder) {
1937 disk_unblock_events(bdev->bd_disk);
1938 bdev->bd_write_holder = false;
Tejun Heo77ea8872010-12-08 20:57:37 +01001939 }
Tejun Heo69362172011-03-09 19:54:27 +01001940 }
Tejun Heo77ea8872010-12-08 20:57:37 +01001941
Tejun Heo85ef06d2011-07-01 16:17:47 +02001942 /*
1943 * Trigger event checking and tell drivers to flush MEDIA_CHANGE
1944 * event. This is to ensure detection of media removal commanded
1945 * from userland - e.g. eject(1).
1946 */
1947 disk_flush_events(bdev->bd_disk, DISK_EVENT_MEDIA_CHANGE);
1948
1949 mutex_unlock(&bdev->bd_mutex);
1950
Al Viro4385bab2013-05-05 22:11:03 -04001951 __blkdev_put(bdev, mode, 0);
NeilBrown37be4122006-12-08 02:36:16 -08001952}
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001953EXPORT_SYMBOL(blkdev_put);
1954
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955static int blkdev_close(struct inode * inode, struct file * filp)
1956{
Dan Williams4ebb16c2015-10-28 07:48:19 +09001957 struct block_device *bdev = I_BDEV(bdev_file_inode(filp));
Al Viro4385bab2013-05-05 22:11:03 -04001958 blkdev_put(bdev, filp->f_mode);
1959 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960}
1961
Arnd Bergmannbb93e3a2005-06-23 00:10:15 -07001962static long block_ioctl(struct file *file, unsigned cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963{
Dan Williams4ebb16c2015-10-28 07:48:19 +09001964 struct block_device *bdev = I_BDEV(bdev_file_inode(file));
Al Viro56b26ad2008-09-19 03:17:36 -04001965 fmode_t mode = file->f_mode;
Christoph Hellwigfd4ce1a2008-11-05 14:58:42 +01001966
1967 /*
1968 * O_NDELAY can be altered using fcntl(.., F_SETFL, ..), so we have
1969 * to updated it before every ioctl.
1970 */
Al Viro56b26ad2008-09-19 03:17:36 -04001971 if (file->f_flags & O_NDELAY)
Christoph Hellwigfd4ce1a2008-11-05 14:58:42 +01001972 mode |= FMODE_NDELAY;
1973 else
1974 mode &= ~FMODE_NDELAY;
1975
Al Viro56b26ad2008-09-19 03:17:36 -04001976 return blkdev_ioctl(bdev, mode, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977}
1978
Theodore Ts'o87d8fe12009-01-03 09:47:09 -05001979/*
Christoph Hellwigeef99382009-08-20 17:43:41 +02001980 * Write data to the block device. Only intended for the block device itself
1981 * and the raw driver which basically is a fake block device.
1982 *
1983 * Does not take i_mutex for the write and thus is not for general purpose
1984 * use.
1985 */
Al Viro1456c0a2014-04-03 03:21:50 -04001986ssize_t blkdev_write_iter(struct kiocb *iocb, struct iov_iter *from)
Christoph Hellwigeef99382009-08-20 17:43:41 +02001987{
1988 struct file *file = iocb->ki_filp;
Dan Williams4ebb16c2015-10-28 07:48:19 +09001989 struct inode *bd_inode = bdev_file_inode(file);
Al Viro7ec7b942015-04-07 11:35:14 -04001990 loff_t size = i_size_read(bd_inode);
Jianpeng Ma53362a02012-08-02 09:50:39 +02001991 struct blk_plug plug;
Christoph Hellwigeef99382009-08-20 17:43:41 +02001992 ssize_t ret;
Al Viro5f380c72015-04-07 11:28:12 -04001993
Al Viro7ec7b942015-04-07 11:35:14 -04001994 if (bdev_read_only(I_BDEV(bd_inode)))
1995 return -EPERM;
Al Viro5f380c72015-04-07 11:28:12 -04001996
Domenico Andreoliad1e4f72020-05-19 20:14:10 +02001997 if (IS_SWAPFILE(bd_inode) && !is_hibernate_resume_dev(bd_inode))
Darrick J. Wongdc617f22019-08-20 07:55:16 -07001998 return -ETXTBSY;
1999
Al Viro7ec7b942015-04-07 11:35:14 -04002000 if (!iov_iter_count(from))
Al Viro5f380c72015-04-07 11:28:12 -04002001 return 0;
2002
Al Viro7ec7b942015-04-07 11:35:14 -04002003 if (iocb->ki_pos >= size)
2004 return -ENOSPC;
2005
Christoph Hellwigc35fc7a2017-08-29 16:13:21 +02002006 if ((iocb->ki_flags & (IOCB_NOWAIT | IOCB_DIRECT)) == IOCB_NOWAIT)
2007 return -EOPNOTSUPP;
2008
Al Viro7ec7b942015-04-07 11:35:14 -04002009 iov_iter_truncate(from, size - iocb->ki_pos);
Christoph Hellwigeef99382009-08-20 17:43:41 +02002010
Jianpeng Ma53362a02012-08-02 09:50:39 +02002011 blk_start_plug(&plug);
Al Viro1456c0a2014-04-03 03:21:50 -04002012 ret = __generic_file_write_iter(iocb, from);
Christoph Hellwige2592212016-04-07 08:52:01 -07002013 if (ret > 0)
2014 ret = generic_write_sync(iocb, ret);
Jianpeng Ma53362a02012-08-02 09:50:39 +02002015 blk_finish_plug(&plug);
Christoph Hellwigeef99382009-08-20 17:43:41 +02002016 return ret;
2017}
Al Viro1456c0a2014-04-03 03:21:50 -04002018EXPORT_SYMBOL_GPL(blkdev_write_iter);
Christoph Hellwigeef99382009-08-20 17:43:41 +02002019
David Jefferyb2de5252014-09-29 10:21:10 -04002020ssize_t blkdev_read_iter(struct kiocb *iocb, struct iov_iter *to)
Linus Torvalds684c9aa2012-12-07 16:48:39 -08002021{
2022 struct file *file = iocb->ki_filp;
Dan Williams4ebb16c2015-10-28 07:48:19 +09002023 struct inode *bd_inode = bdev_file_inode(file);
Linus Torvalds684c9aa2012-12-07 16:48:39 -08002024 loff_t size = i_size_read(bd_inode);
Al Viroa8860382014-04-02 20:02:21 -04002025 loff_t pos = iocb->ki_pos;
Linus Torvalds684c9aa2012-12-07 16:48:39 -08002026
2027 if (pos >= size)
2028 return 0;
2029
2030 size -= pos;
Al Viroa8860382014-04-02 20:02:21 -04002031 iov_iter_truncate(to, size);
2032 return generic_file_read_iter(iocb, to);
Linus Torvalds684c9aa2012-12-07 16:48:39 -08002033}
David Jefferyb2de5252014-09-29 10:21:10 -04002034EXPORT_SYMBOL_GPL(blkdev_read_iter);
Linus Torvalds684c9aa2012-12-07 16:48:39 -08002035
Christoph Hellwigeef99382009-08-20 17:43:41 +02002036/*
Theodore Ts'o87d8fe12009-01-03 09:47:09 -05002037 * Try to release a page associated with block device when the system
2038 * is under memory pressure.
2039 */
2040static int blkdev_releasepage(struct page *page, gfp_t wait)
2041{
2042 struct super_block *super = BDEV_I(page->mapping->host)->bdev.bd_super;
2043
2044 if (super && super->s_op->bdev_try_to_free_page)
2045 return super->s_op->bdev_try_to_free_page(super, page, wait);
2046
2047 return try_to_free_buffers(page);
2048}
2049
Ross Zwisler7f6d5b52016-02-26 15:19:55 -08002050static int blkdev_writepages(struct address_space *mapping,
2051 struct writeback_control *wbc)
2052{
Ross Zwisler7f6d5b52016-02-26 15:19:55 -08002053 return generic_writepages(mapping, wbc);
2054}
2055
Adrian Bunk4c54ac62008-02-18 13:48:31 +01002056static const struct address_space_operations def_blk_aops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057 .readpage = blkdev_readpage,
Matthew Wilcox (Oracle)d4388342020-06-01 21:47:02 -07002058 .readahead = blkdev_readahead,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 .writepage = blkdev_writepage,
Nick Piggin6272b5a2007-10-16 01:25:04 -07002060 .write_begin = blkdev_write_begin,
2061 .write_end = blkdev_write_end,
Ross Zwisler7f6d5b52016-02-26 15:19:55 -08002062 .writepages = blkdev_writepages,
Theodore Ts'o87d8fe12009-01-03 09:47:09 -05002063 .releasepage = blkdev_releasepage,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064 .direct_IO = blkdev_direct_IO,
Jan Kara88dbcbb2018-12-28 00:39:16 -08002065 .migratepage = buffer_migrate_page_norefs,
Mel Gormanb4597222013-07-03 15:02:05 -07002066 .is_dirty_writeback = buffer_check_dirty_writeback,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067};
2068
Darrick J. Wong25f4c412016-10-11 13:51:11 -07002069#define BLKDEV_FALLOC_FL_SUPPORTED \
2070 (FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE | \
2071 FALLOC_FL_ZERO_RANGE | FALLOC_FL_NO_HIDE_STALE)
2072
2073static long blkdev_fallocate(struct file *file, int mode, loff_t start,
2074 loff_t len)
2075{
2076 struct block_device *bdev = I_BDEV(bdev_file_inode(file));
Darrick J. Wong25f4c412016-10-11 13:51:11 -07002077 struct address_space *mapping;
2078 loff_t end = start + len - 1;
2079 loff_t isize;
2080 int error;
2081
2082 /* Fail if we don't recognize the flags. */
2083 if (mode & ~BLKDEV_FALLOC_FL_SUPPORTED)
2084 return -EOPNOTSUPP;
2085
2086 /* Don't go off the end of the device. */
2087 isize = i_size_read(bdev->bd_inode);
2088 if (start >= isize)
2089 return -EINVAL;
2090 if (end >= isize) {
2091 if (mode & FALLOC_FL_KEEP_SIZE) {
2092 len = isize - start;
2093 end = start + len - 1;
2094 } else
2095 return -EINVAL;
2096 }
2097
2098 /*
2099 * Don't allow IO that isn't aligned to logical block size.
2100 */
2101 if ((start | len) & (bdev_logical_block_size(bdev) - 1))
2102 return -EINVAL;
2103
2104 /* Invalidate the page cache, including dirty pages. */
2105 mapping = bdev->bd_inode->i_mapping;
2106 truncate_inode_pages_range(mapping, start, end);
2107
2108 switch (mode) {
2109 case FALLOC_FL_ZERO_RANGE:
2110 case FALLOC_FL_ZERO_RANGE | FALLOC_FL_KEEP_SIZE:
2111 error = blkdev_issue_zeroout(bdev, start >> 9, len >> 9,
Christoph Hellwigee472d82017-04-05 19:21:08 +02002112 GFP_KERNEL, BLKDEV_ZERO_NOUNMAP);
Darrick J. Wong25f4c412016-10-11 13:51:11 -07002113 break;
2114 case FALLOC_FL_PUNCH_HOLE | FALLOC_FL_KEEP_SIZE:
Christoph Hellwig34045122017-04-05 19:21:11 +02002115 error = blkdev_issue_zeroout(bdev, start >> 9, len >> 9,
2116 GFP_KERNEL, BLKDEV_ZERO_NOFALLBACK);
Darrick J. Wong25f4c412016-10-11 13:51:11 -07002117 break;
2118 case FALLOC_FL_PUNCH_HOLE | FALLOC_FL_KEEP_SIZE | FALLOC_FL_NO_HIDE_STALE:
Darrick J. Wong25f4c412016-10-11 13:51:11 -07002119 error = blkdev_issue_discard(bdev, start >> 9, len >> 9,
2120 GFP_KERNEL, 0);
2121 break;
2122 default:
2123 return -EOPNOTSUPP;
2124 }
2125 if (error)
2126 return error;
2127
2128 /*
2129 * Invalidate again; if someone wandered in and dirtied a page,
2130 * the caller will be given -EBUSY. The third argument is
2131 * inclusive, so the rounding here is safe.
2132 */
2133 return invalidate_inode_pages2_range(mapping,
2134 start >> PAGE_SHIFT,
2135 end >> PAGE_SHIFT);
2136}
2137
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08002138const struct file_operations def_blk_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139 .open = blkdev_open,
2140 .release = blkdev_close,
2141 .llseek = block_llseek,
Al Viroa8860382014-04-02 20:02:21 -04002142 .read_iter = blkdev_read_iter,
Al Viro1456c0a2014-04-03 03:21:50 -04002143 .write_iter = blkdev_write_iter,
Christoph Hellwigeae83ce2018-11-30 08:31:52 -07002144 .iopoll = blkdev_iopoll,
Dan Williamsacc93d32016-05-07 11:40:28 -07002145 .mmap = generic_file_mmap,
Andrew Mortonb1dd3b22010-04-06 14:35:00 -07002146 .fsync = blkdev_fsync,
Arnd Bergmannbb93e3a2005-06-23 00:10:15 -07002147 .unlocked_ioctl = block_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148#ifdef CONFIG_COMPAT
2149 .compat_ioctl = compat_blkdev_ioctl,
2150#endif
Linus Torvalds1e8b3332012-11-29 10:49:50 -08002151 .splice_read = generic_file_splice_read,
Al Viro8d020762014-04-05 04:27:08 -04002152 .splice_write = iter_file_splice_write,
Darrick J. Wong25f4c412016-10-11 13:51:11 -07002153 .fallocate = blkdev_fallocate,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154};
2155
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156/**
2157 * lookup_bdev - lookup a struct block_device by name
Randy Dunlap94e29592009-01-06 14:41:15 -08002158 * @pathname: special file representing the block device
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159 *
Randy Dunlap57d1b532008-10-09 10:42:38 +02002160 * Get a reference to the blockdevice at @pathname in the current
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161 * namespace if possible and return it. Return ERR_PTR(error)
2162 * otherwise.
2163 */
Al Viro421748e2008-08-02 01:04:36 -04002164struct block_device *lookup_bdev(const char *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165{
2166 struct block_device *bdev;
2167 struct inode *inode;
Al Viro421748e2008-08-02 01:04:36 -04002168 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169 int error;
2170
Al Viro421748e2008-08-02 01:04:36 -04002171 if (!pathname || !*pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172 return ERR_PTR(-EINVAL);
2173
Al Viro421748e2008-08-02 01:04:36 -04002174 error = kern_path(pathname, LOOKUP_FOLLOW, &path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175 if (error)
2176 return ERR_PTR(error);
2177
David Howellsbb6687342015-03-17 22:26:21 +00002178 inode = d_backing_inode(path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179 error = -ENOTBLK;
2180 if (!S_ISBLK(inode->i_mode))
2181 goto fail;
2182 error = -EACCES;
Eric W. Biedermana2982cc2016-06-09 15:34:02 -05002183 if (!may_open_dev(&path))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184 goto fail;
2185 error = -ENOMEM;
2186 bdev = bd_acquire(inode);
2187 if (!bdev)
2188 goto fail;
2189out:
Al Viro421748e2008-08-02 01:04:36 -04002190 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191 return bdev;
2192fail:
2193 bdev = ERR_PTR(error);
2194 goto out;
2195}
Al Virod5686b42008-08-01 05:00:11 -04002196EXPORT_SYMBOL(lookup_bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197
NeilBrown93b270f2011-02-24 17:25:47 +11002198int __invalidate_device(struct block_device *bdev, bool kill_dirty)
David Howellsb71e8a42006-08-29 19:06:11 +01002199{
2200 struct super_block *sb = get_super(bdev);
2201 int res = 0;
2202
2203 if (sb) {
2204 /*
2205 * no need to lock the super, get_super holds the
2206 * read mutex so the filesystem cannot go away
2207 * under us (->put_super runs with the write lock
2208 * hold).
2209 */
2210 shrink_dcache_sb(sb);
NeilBrown93b270f2011-02-24 17:25:47 +11002211 res = invalidate_inodes(sb, kill_dirty);
David Howellsb71e8a42006-08-29 19:06:11 +01002212 drop_super(sb);
2213 }
Peter Zijlstraf98393a2007-05-06 14:49:54 -07002214 invalidate_bdev(bdev);
David Howellsb71e8a42006-08-29 19:06:11 +01002215 return res;
2216}
2217EXPORT_SYMBOL(__invalidate_device);
Jan Kara5c0d6b62012-07-03 16:45:31 +02002218
2219void iterate_bdevs(void (*func)(struct block_device *, void *), void *arg)
2220{
2221 struct inode *inode, *old_inode = NULL;
2222
Dave Chinner74278da2015-03-04 12:37:22 -05002223 spin_lock(&blockdev_superblock->s_inode_list_lock);
Jan Kara5c0d6b62012-07-03 16:45:31 +02002224 list_for_each_entry(inode, &blockdev_superblock->s_inodes, i_sb_list) {
2225 struct address_space *mapping = inode->i_mapping;
Rabin Vincentaf309222016-12-01 09:18:28 +01002226 struct block_device *bdev;
Jan Kara5c0d6b62012-07-03 16:45:31 +02002227
2228 spin_lock(&inode->i_lock);
2229 if (inode->i_state & (I_FREEING|I_WILL_FREE|I_NEW) ||
2230 mapping->nrpages == 0) {
2231 spin_unlock(&inode->i_lock);
2232 continue;
2233 }
2234 __iget(inode);
2235 spin_unlock(&inode->i_lock);
Dave Chinner74278da2015-03-04 12:37:22 -05002236 spin_unlock(&blockdev_superblock->s_inode_list_lock);
Jan Kara5c0d6b62012-07-03 16:45:31 +02002237 /*
2238 * We hold a reference to 'inode' so it couldn't have been
2239 * removed from s_inodes list while we dropped the
Dave Chinner74278da2015-03-04 12:37:22 -05002240 * s_inode_list_lock We cannot iput the inode now as we can
Jan Kara5c0d6b62012-07-03 16:45:31 +02002241 * be holding the last reference and we cannot iput it under
Dave Chinner74278da2015-03-04 12:37:22 -05002242 * s_inode_list_lock. So we keep the reference and iput it
Jan Kara5c0d6b62012-07-03 16:45:31 +02002243 * later.
2244 */
2245 iput(old_inode);
2246 old_inode = inode;
Rabin Vincentaf309222016-12-01 09:18:28 +01002247 bdev = I_BDEV(inode);
Jan Kara5c0d6b62012-07-03 16:45:31 +02002248
Rabin Vincentaf309222016-12-01 09:18:28 +01002249 mutex_lock(&bdev->bd_mutex);
2250 if (bdev->bd_openers)
2251 func(bdev, arg);
2252 mutex_unlock(&bdev->bd_mutex);
Jan Kara5c0d6b62012-07-03 16:45:31 +02002253
Dave Chinner74278da2015-03-04 12:37:22 -05002254 spin_lock(&blockdev_superblock->s_inode_list_lock);
Jan Kara5c0d6b62012-07-03 16:45:31 +02002255 }
Dave Chinner74278da2015-03-04 12:37:22 -05002256 spin_unlock(&blockdev_superblock->s_inode_list_lock);
Jan Kara5c0d6b62012-07-03 16:45:31 +02002257 iput(old_inode);
2258}