blob: 08c87db3a92bd93479fedf5852f1ee4bdbf87a74 [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.. */
Al Viroff01bb42011-09-16 02:31:11 -040078void 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087}
Al Viroff01bb42011-09-16 02:31:11 -040088EXPORT_SYMBOL(kill_bdev);
89
90/* Invalidate clean unused buffers and pagecache. */
91void invalidate_bdev(struct block_device *bdev)
92{
93 struct address_space *mapping = bdev->bd_inode->i_mapping;
94
Andrey Ryabinina5f6a6a2017-05-03 14:56:02 -070095 if (mapping->nrpages) {
96 invalidate_bh_lrus();
97 lru_add_drain_all(); /* make sure all lru add caches are flushed */
98 invalidate_mapping_pages(mapping, 0, -1);
99 }
Al Viroff01bb42011-09-16 02:31:11 -0400100 /* 99% of the time, we don't need to flush the cleancache on the bdev.
101 * But, for the strange corners, lets be cautious
102 */
Dan Magenheimer31677602011-09-21 11:56:28 -0400103 cleancache_invalidate_inode(mapping);
Al Viroff01bb42011-09-16 02:31:11 -0400104}
105EXPORT_SYMBOL(invalidate_bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
Jan Kara04906b22019-01-14 09:48:10 +0100107static void set_init_blocksize(struct block_device *bdev)
108{
109 unsigned bsize = bdev_logical_block_size(bdev);
110 loff_t size = i_size_read(bdev->bd_inode);
111
112 while (bsize < PAGE_SIZE) {
113 if (size & bsize)
114 break;
115 bsize <<= 1;
116 }
117 bdev->bd_block_size = bsize;
118 bdev->bd_inode->i_blkbits = blksize_bits(bsize);
119}
120
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121int set_blocksize(struct block_device *bdev, int size)
122{
123 /* Size must be a power of two, and between 512 and PAGE_SIZE */
Vignesh Babu BM1368c4f2007-05-08 00:24:32 -0700124 if (size > PAGE_SIZE || size < 512 || !is_power_of_2(size))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 return -EINVAL;
126
127 /* Size cannot be smaller than the size supported by the device */
Martin K. Petersene1defc42009-05-22 17:17:49 -0400128 if (size < bdev_logical_block_size(bdev))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 return -EINVAL;
130
131 /* Don't change the size if it is same as current */
132 if (bdev->bd_block_size != size) {
133 sync_blockdev(bdev);
134 bdev->bd_block_size = size;
135 bdev->bd_inode->i_blkbits = blksize_bits(size);
136 kill_bdev(bdev);
137 }
138 return 0;
139}
140
141EXPORT_SYMBOL(set_blocksize);
142
143int sb_set_blocksize(struct super_block *sb, int size)
144{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 if (set_blocksize(sb->s_bdev, size))
146 return 0;
147 /* If we get here, we know size is power of two
148 * and it's value is between 512 and PAGE_SIZE */
149 sb->s_blocksize = size;
Coywolf Qi Hunt38885bd2006-03-24 03:18:05 -0800150 sb->s_blocksize_bits = blksize_bits(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 return sb->s_blocksize;
152}
153
154EXPORT_SYMBOL(sb_set_blocksize);
155
156int sb_min_blocksize(struct super_block *sb, int size)
157{
Martin K. Petersene1defc42009-05-22 17:17:49 -0400158 int minsize = bdev_logical_block_size(sb->s_bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 if (size < minsize)
160 size = minsize;
161 return sb_set_blocksize(sb, size);
162}
163
164EXPORT_SYMBOL(sb_min_blocksize);
165
166static int
167blkdev_get_block(struct inode *inode, sector_t iblock,
168 struct buffer_head *bh, int create)
169{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 bh->b_bdev = I_BDEV(inode);
171 bh->b_blocknr = iblock;
172 set_buffer_mapped(bh);
173 return 0;
174}
175
Dan Williams4ebb16c2015-10-28 07:48:19 +0900176static struct inode *bdev_file_inode(struct file *file)
177{
178 return file->f_mapping->host;
179}
180
Jens Axboe78250c02016-11-17 17:50:47 +0100181static unsigned int dio_bio_write_op(struct kiocb *iocb)
182{
183 unsigned int op = REQ_OP_WRITE | REQ_SYNC | REQ_IDLE;
184
185 /* avoid the need for a I/O completion work item */
186 if (iocb->ki_flags & IOCB_DSYNC)
187 op |= REQ_FUA;
188 return op;
189}
190
Christoph Hellwig189ce2b2016-10-31 11:59:25 -0600191#define DIO_INLINE_BIO_VECS 4
192
193static void blkdev_bio_end_io_simple(struct bio *bio)
194{
195 struct task_struct *waiter = bio->bi_private;
196
197 WRITE_ONCE(bio->bi_private, NULL);
Jens Axboe06193172018-11-13 21:16:54 -0700198 blk_wake_io_task(waiter);
Christoph Hellwig189ce2b2016-10-31 11:59:25 -0600199}
200
201static ssize_t
202__blkdev_direct_IO_simple(struct kiocb *iocb, struct iov_iter *iter,
203 int nr_pages)
204{
205 struct file *file = iocb->ki_filp;
206 struct block_device *bdev = I_BDEV(bdev_file_inode(file));
Christoph Hellwig9fec4a22019-06-26 15:49:26 +0200207 struct bio_vec inline_vecs[DIO_INLINE_BIO_VECS], *vecs;
Christoph Hellwig189ce2b2016-10-31 11:59:25 -0600208 loff_t pos = iocb->ki_pos;
209 bool should_dirty = false;
210 struct bio bio;
211 ssize_t ret;
212 blk_qc_t qc;
Christoph Hellwig189ce2b2016-10-31 11:59:25 -0600213
Jens Axboe9a794fb2016-11-22 08:12:39 -0700214 if ((pos | iov_iter_alignment(iter)) &
215 (bdev_logical_block_size(bdev) - 1))
Christoph Hellwig189ce2b2016-10-31 11:59:25 -0600216 return -EINVAL;
217
Jens Axboe72ecad22016-11-16 23:11:42 -0700218 if (nr_pages <= DIO_INLINE_BIO_VECS)
219 vecs = inline_vecs;
220 else {
Kees Cook6da2ec52018-06-12 13:55:00 -0700221 vecs = kmalloc_array(nr_pages, sizeof(struct bio_vec),
222 GFP_KERNEL);
Jens Axboe72ecad22016-11-16 23:11:42 -0700223 if (!vecs)
224 return -ENOMEM;
225 }
226
Ming Lei3a83f462016-11-22 08:57:21 -0700227 bio_init(&bio, vecs, nr_pages);
Christoph Hellwig74d46992017-08-23 19:10:32 +0200228 bio_set_dev(&bio, bdev);
Damien Le Moal4d1a4762016-11-22 15:38:49 +0900229 bio.bi_iter.bi_sector = pos >> 9;
Jens Axboe45d06cf2017-06-27 11:01:22 -0600230 bio.bi_write_hint = iocb->ki_hint;
Christoph Hellwig189ce2b2016-10-31 11:59:25 -0600231 bio.bi_private = current;
232 bio.bi_end_io = blkdev_bio_end_io_simple;
Adam Manzanares074111c2018-05-22 10:52:20 -0700233 bio.bi_ioprio = iocb->ki_ioprio;
Christoph Hellwig189ce2b2016-10-31 11:59:25 -0600234
235 ret = bio_iov_iter_get_pages(&bio, iter);
236 if (unlikely(ret))
Martin Wilck9362dd12018-07-25 23:15:08 +0200237 goto out;
Christoph Hellwig189ce2b2016-10-31 11:59:25 -0600238 ret = bio.bi_iter.bi_size;
239
240 if (iov_iter_rw(iter) == READ) {
Jens Axboe78250c02016-11-17 17:50:47 +0100241 bio.bi_opf = REQ_OP_READ;
Christoph Hellwig189ce2b2016-10-31 11:59:25 -0600242 if (iter_is_iovec(iter))
243 should_dirty = true;
244 } else {
Jens Axboe78250c02016-11-17 17:50:47 +0100245 bio.bi_opf = dio_bio_write_op(iocb);
Christoph Hellwig189ce2b2016-10-31 11:59:25 -0600246 task_io_account_write(ret);
247 }
Jens Axboed1e36282018-08-29 10:36:56 -0600248 if (iocb->ki_flags & IOCB_HIPRI)
Jens Axboe0bbb2802018-12-21 09:10:46 -0700249 bio_set_polled(&bio, iocb);
Christoph Hellwig189ce2b2016-10-31 11:59:25 -0600250
251 qc = submit_bio(&bio);
252 for (;;) {
Linus Torvalds1ac5cd42019-01-02 10:46:03 -0800253 set_current_state(TASK_UNINTERRUPTIBLE);
Christoph Hellwig189ce2b2016-10-31 11:59:25 -0600254 if (!READ_ONCE(bio.bi_private))
255 break;
256 if (!(iocb->ki_flags & IOCB_HIPRI) ||
Jens Axboe0a1b8b82018-11-26 08:24:43 -0700257 !blk_poll(bdev_get_queue(bdev), qc, true))
Ming Leie6249cd2020-05-03 09:54:22 +0800258 blk_io_schedule();
Christoph Hellwig189ce2b2016-10-31 11:59:25 -0600259 }
260 __set_current_state(TASK_RUNNING);
261
Christoph Hellwig9fec4a22019-06-26 15:49:26 +0200262 bio_release_pages(&bio, should_dirty);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200263 if (unlikely(bio.bi_status))
Linus Torvaldsc6b1e362017-07-03 10:34:51 -0700264 ret = blk_status_to_errno(bio.bi_status);
Jens Axboe9ae3b3f52017-06-28 15:30:13 -0600265
Martin Wilck9362dd12018-07-25 23:15:08 +0200266out:
267 if (vecs != inline_vecs)
268 kfree(vecs);
269
Jens Axboe9ae3b3f52017-06-28 15:30:13 -0600270 bio_uninit(&bio);
271
Christoph Hellwig189ce2b2016-10-31 11:59:25 -0600272 return ret;
273}
274
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700275struct blkdev_dio {
276 union {
277 struct kiocb *iocb;
278 struct task_struct *waiter;
279 };
280 size_t size;
281 atomic_t ref;
282 bool multi_bio : 1;
283 bool should_dirty : 1;
284 bool is_sync : 1;
285 struct bio bio;
286};
287
Kent Overstreet52190f82018-05-20 18:25:55 -0400288static struct bio_set blkdev_dio_pool;
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700289
Christoph Hellwigeae83ce2018-11-30 08:31:52 -0700290static int blkdev_iopoll(struct kiocb *kiocb, bool wait)
291{
292 struct block_device *bdev = I_BDEV(kiocb->ki_filp->f_mapping->host);
293 struct request_queue *q = bdev_get_queue(bdev);
294
295 return blk_poll(q, READ_ONCE(kiocb->ki_cookie), wait);
296}
297
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700298static void blkdev_bio_end_io(struct bio *bio)
299{
300 struct blkdev_dio *dio = bio->bi_private;
301 bool should_dirty = dio->should_dirty;
302
Jason Yana89afe52019-04-12 10:09:16 +0800303 if (bio->bi_status && !dio->bio.bi_status)
304 dio->bio.bi_status = bio->bi_status;
305
306 if (!dio->multi_bio || atomic_dec_and_test(&dio->ref)) {
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700307 if (!dio->is_sync) {
308 struct kiocb *iocb = dio->iocb;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200309 ssize_t ret;
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700310
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200311 if (likely(!dio->bio.bi_status)) {
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700312 ret = dio->size;
313 iocb->ki_pos += ret;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200314 } else {
315 ret = blk_status_to_errno(dio->bio.bi_status);
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700316 }
317
318 dio->iocb->ki_complete(iocb, ret, 0);
Christoph Hellwig531724a2018-11-30 09:23:48 +0100319 if (dio->multi_bio)
320 bio_put(&dio->bio);
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700321 } else {
322 struct task_struct *waiter = dio->waiter;
323
324 WRITE_ONCE(dio->waiter, NULL);
Jens Axboe06193172018-11-13 21:16:54 -0700325 blk_wake_io_task(waiter);
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700326 }
327 }
328
329 if (should_dirty) {
330 bio_check_pages_dirty(bio);
331 } else {
Christoph Hellwig57dfe3c2019-06-26 15:49:25 +0200332 bio_release_pages(bio, false);
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700333 bio_put(bio);
334 }
335}
336
Andrew Mortonb2e895d2007-02-03 01:14:01 -0800337static ssize_t
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700338__blkdev_direct_IO(struct kiocb *iocb, struct iov_iter *iter, int nr_pages)
Andrew Mortonb2e895d2007-02-03 01:14:01 -0800339{
340 struct file *file = iocb->ki_filp;
Dan Williams4ebb16c2015-10-28 07:48:19 +0900341 struct inode *inode = bdev_file_inode(file);
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700342 struct block_device *bdev = I_BDEV(inode);
Christoph Hellwig64d656a2016-12-22 19:20:45 +0100343 struct blk_plug plug;
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700344 struct blkdev_dio *dio;
345 struct bio *bio;
Jens Axboecb700eb2018-11-15 19:56:53 -0700346 bool is_poll = (iocb->ki_flags & IOCB_HIPRI) != 0;
Christoph Hellwig690e5322017-01-24 14:50:19 +0100347 bool is_read = (iov_iter_rw(iter) == READ), is_sync;
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700348 loff_t pos = iocb->ki_pos;
349 blk_qc_t qc = BLK_QC_T_NONE;
Jens Axboe7b6620d2019-08-15 11:09:16 -0600350 int ret = 0;
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700351
Jens Axboe9a794fb2016-11-22 08:12:39 -0700352 if ((pos | iov_iter_alignment(iter)) &
353 (bdev_logical_block_size(bdev) - 1))
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700354 return -EINVAL;
355
Jens Axboe7b6620d2019-08-15 11:09:16 -0600356 bio = bio_alloc_bioset(GFP_KERNEL, nr_pages, &blkdev_dio_pool);
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700357
358 dio = container_of(bio, struct blkdev_dio, bio);
Christoph Hellwig690e5322017-01-24 14:50:19 +0100359 dio->is_sync = is_sync = is_sync_kiocb(iocb);
Christoph Hellwig531724a2018-11-30 09:23:48 +0100360 if (dio->is_sync) {
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700361 dio->waiter = current;
Christoph Hellwig531724a2018-11-30 09:23:48 +0100362 bio_get(bio);
363 } else {
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700364 dio->iocb = iocb;
Christoph Hellwig531724a2018-11-30 09:23:48 +0100365 }
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700366
367 dio->size = 0;
368 dio->multi_bio = false;
David Howells00e23702018-10-22 13:07:28 +0100369 dio->should_dirty = is_read && iter_is_iovec(iter);
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700370
Jens Axboecb700eb2018-11-15 19:56:53 -0700371 /*
372 * Don't plug for HIPRI/polled IO, as those should go straight
373 * to issue
374 */
375 if (!is_poll)
376 blk_start_plug(&plug);
377
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700378 for (;;) {
Christoph Hellwig74d46992017-08-23 19:10:32 +0200379 bio_set_dev(bio, bdev);
Damien Le Moal4d1a4762016-11-22 15:38:49 +0900380 bio->bi_iter.bi_sector = pos >> 9;
Jens Axboe45d06cf2017-06-27 11:01:22 -0600381 bio->bi_write_hint = iocb->ki_hint;
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700382 bio->bi_private = dio;
383 bio->bi_end_io = blkdev_bio_end_io;
Adam Manzanares074111c2018-05-22 10:52:20 -0700384 bio->bi_ioprio = iocb->ki_ioprio;
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700385
Jens Axboee15c2ff2019-08-06 13:34:31 -0600386 ret = bio_iov_iter_get_pages(bio, iter);
387 if (unlikely(ret)) {
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200388 bio->bi_status = BLK_STS_IOERR;
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700389 bio_endio(bio);
390 break;
391 }
392
393 if (is_read) {
394 bio->bi_opf = REQ_OP_READ;
395 if (dio->should_dirty)
396 bio_set_pages_dirty(bio);
397 } else {
398 bio->bi_opf = dio_bio_write_op(iocb);
399 task_io_account_write(bio->bi_iter.bi_size);
400 }
401
Jens Axboe7b6620d2019-08-15 11:09:16 -0600402 dio->size += bio->bi_iter.bi_size;
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700403 pos += bio->bi_iter.bi_size;
404
405 nr_pages = iov_iter_npages(iter, BIO_MAX_PAGES);
406 if (!nr_pages) {
Christoph Hellwigeae83ce2018-11-30 08:31:52 -0700407 bool polled = false;
408
409 if (iocb->ki_flags & IOCB_HIPRI) {
Jens Axboe0bbb2802018-12-21 09:10:46 -0700410 bio_set_polled(bio, iocb);
Christoph Hellwigeae83ce2018-11-30 08:31:52 -0700411 polled = true;
412 }
Jens Axboed34513d2018-11-06 14:29:11 -0700413
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700414 qc = submit_bio(bio);
Christoph Hellwigeae83ce2018-11-30 08:31:52 -0700415
416 if (polled)
417 WRITE_ONCE(iocb->ki_cookie, qc);
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700418 break;
419 }
420
421 if (!dio->multi_bio) {
Christoph Hellwig531724a2018-11-30 09:23:48 +0100422 /*
423 * AIO needs an extra reference to ensure the dio
424 * structure which is embedded into the first bio
425 * stays around.
426 */
427 if (!is_sync)
428 bio_get(bio);
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700429 dio->multi_bio = true;
430 atomic_set(&dio->ref, 2);
431 } else {
432 atomic_inc(&dio->ref);
433 }
434
Jens Axboe7b6620d2019-08-15 11:09:16 -0600435 submit_bio(bio);
436 bio = bio_alloc(GFP_KERNEL, nr_pages);
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700437 }
Jens Axboecb700eb2018-11-15 19:56:53 -0700438
439 if (!is_poll)
440 blk_finish_plug(&plug);
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700441
Christoph Hellwig690e5322017-01-24 14:50:19 +0100442 if (!is_sync)
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700443 return -EIOCBQUEUED;
444
445 for (;;) {
Linus Torvalds1ac5cd42019-01-02 10:46:03 -0800446 set_current_state(TASK_UNINTERRUPTIBLE);
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700447 if (!READ_ONCE(dio->waiter))
448 break;
449
450 if (!(iocb->ki_flags & IOCB_HIPRI) ||
Jens Axboe0a1b8b82018-11-26 08:24:43 -0700451 !blk_poll(bdev_get_queue(bdev), qc, true))
Ming Leie6249cd2020-05-03 09:54:22 +0800452 blk_io_schedule();
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700453 }
454 __set_current_state(TASK_RUNNING);
455
Christoph Hellwig36ffc6c2017-06-03 09:38:00 +0200456 if (!ret)
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200457 ret = blk_status_to_errno(dio->bio.bi_status);
Jens Axboee15c2ff2019-08-06 13:34:31 -0600458 if (likely(!ret))
459 ret = dio->size;
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700460
461 bio_put(&dio->bio);
462 return ret;
463}
464
465static ssize_t
466blkdev_direct_IO(struct kiocb *iocb, struct iov_iter *iter)
467{
Christoph Hellwig189ce2b2016-10-31 11:59:25 -0600468 int nr_pages;
Andrew Mortonb2e895d2007-02-03 01:14:01 -0800469
Jens Axboe72ecad22016-11-16 23:11:42 -0700470 nr_pages = iov_iter_npages(iter, BIO_MAX_PAGES + 1);
Christoph Hellwig189ce2b2016-10-31 11:59:25 -0600471 if (!nr_pages)
472 return 0;
Jens Axboe72ecad22016-11-16 23:11:42 -0700473 if (is_sync_kiocb(iocb) && nr_pages <= BIO_MAX_PAGES)
Christoph Hellwig189ce2b2016-10-31 11:59:25 -0600474 return __blkdev_direct_IO_simple(iocb, iter, nr_pages);
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700475
476 return __blkdev_direct_IO(iocb, iter, min(nr_pages, BIO_MAX_PAGES));
Andrew Mortonb2e895d2007-02-03 01:14:01 -0800477}
478
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700479static __init int blkdev_init(void)
480{
Kent Overstreet52190f82018-05-20 18:25:55 -0400481 return bioset_init(&blkdev_dio_pool, 4, offsetof(struct blkdev_dio, bio), BIOSET_NEED_BVECS);
Christoph Hellwig542ff7b2016-11-16 23:14:22 -0700482}
483module_init(blkdev_init);
484
Jan Kara5cee5812009-04-27 16:43:51 +0200485int __sync_blockdev(struct block_device *bdev, int wait)
486{
487 if (!bdev)
488 return 0;
489 if (!wait)
490 return filemap_flush(bdev->bd_inode->i_mapping);
491 return filemap_write_and_wait(bdev->bd_inode->i_mapping);
492}
493
Nick Piggin585d3bc2009-02-25 10:44:19 +0100494/*
495 * Write out and wait upon all the dirty data associated with a block
496 * device via its mapping. Does not take the superblock lock.
497 */
498int sync_blockdev(struct block_device *bdev)
499{
Jan Kara5cee5812009-04-27 16:43:51 +0200500 return __sync_blockdev(bdev, 1);
Nick Piggin585d3bc2009-02-25 10:44:19 +0100501}
502EXPORT_SYMBOL(sync_blockdev);
503
504/*
505 * Write out and wait upon all dirty data associated with this
506 * device. Filesystem data as well as the underlying block
507 * device. Takes the superblock lock.
508 */
509int fsync_bdev(struct block_device *bdev)
510{
511 struct super_block *sb = get_super(bdev);
512 if (sb) {
Jan Kara60b06802009-04-27 16:43:53 +0200513 int res = sync_filesystem(sb);
Nick Piggin585d3bc2009-02-25 10:44:19 +0100514 drop_super(sb);
515 return res;
516 }
517 return sync_blockdev(bdev);
518}
Al Viro47e44912009-04-01 07:07:16 -0400519EXPORT_SYMBOL(fsync_bdev);
Nick Piggin585d3bc2009-02-25 10:44:19 +0100520
521/**
522 * freeze_bdev -- lock a filesystem and force it into a consistent state
523 * @bdev: blockdevice to lock
524 *
Nick Piggin585d3bc2009-02-25 10:44:19 +0100525 * If a superblock is found on this device, we take the s_umount semaphore
526 * on it to make sure nobody unmounts until the snapshot creation is done.
527 * The reference counter (bd_fsfreeze_count) guarantees that only the last
528 * unfreeze process can unfreeze the frozen filesystem actually when multiple
529 * freeze requests arrive simultaneously. It counts up in freeze_bdev() and
530 * count down in thaw_bdev(). When it becomes 0, thaw_bdev() will unfreeze
531 * actually.
532 */
533struct super_block *freeze_bdev(struct block_device *bdev)
534{
535 struct super_block *sb;
536 int error = 0;
537
538 mutex_lock(&bdev->bd_fsfreeze_mutex);
Christoph Hellwig45042302009-08-03 23:28:35 +0200539 if (++bdev->bd_fsfreeze_count > 1) {
540 /*
541 * We don't even need to grab a reference - the first call
542 * to freeze_bdev grab an active reference and only the last
543 * thaw_bdev drops it.
544 */
Nick Piggin585d3bc2009-02-25 10:44:19 +0100545 sb = get_super(bdev);
Andrey Ryabinin5bb53c02016-08-23 18:55:31 +0300546 if (sb)
547 drop_super(sb);
Nick Piggin585d3bc2009-02-25 10:44:19 +0100548 mutex_unlock(&bdev->bd_fsfreeze_mutex);
549 return sb;
550 }
Nick Piggin585d3bc2009-02-25 10:44:19 +0100551
Christoph Hellwig45042302009-08-03 23:28:35 +0200552 sb = get_active_super(bdev);
553 if (!sb)
554 goto out;
Benjamin Marzinski48b6bca2014-11-13 20:42:03 -0600555 if (sb->s_op->freeze_super)
556 error = sb->s_op->freeze_super(sb);
557 else
558 error = freeze_super(sb);
Josef Bacik18e9e512010-03-23 10:34:56 -0400559 if (error) {
560 deactivate_super(sb);
561 bdev->bd_fsfreeze_count--;
Christoph Hellwig45042302009-08-03 23:28:35 +0200562 mutex_unlock(&bdev->bd_fsfreeze_mutex);
Josef Bacik18e9e512010-03-23 10:34:56 -0400563 return ERR_PTR(error);
Nick Piggin585d3bc2009-02-25 10:44:19 +0100564 }
Josef Bacik18e9e512010-03-23 10:34:56 -0400565 deactivate_super(sb);
Christoph Hellwig45042302009-08-03 23:28:35 +0200566 out:
Nick Piggin585d3bc2009-02-25 10:44:19 +0100567 sync_blockdev(bdev);
568 mutex_unlock(&bdev->bd_fsfreeze_mutex);
Christoph Hellwig4fadd7b2009-08-03 23:28:06 +0200569 return sb; /* thaw_bdev releases s->s_umount */
Nick Piggin585d3bc2009-02-25 10:44:19 +0100570}
571EXPORT_SYMBOL(freeze_bdev);
572
573/**
574 * thaw_bdev -- unlock filesystem
575 * @bdev: blockdevice to unlock
576 * @sb: associated superblock
577 *
578 * Unlocks the filesystem and marks it writeable again after freeze_bdev().
579 */
580int thaw_bdev(struct block_device *bdev, struct super_block *sb)
581{
Christoph Hellwig45042302009-08-03 23:28:35 +0200582 int error = -EINVAL;
Nick Piggin585d3bc2009-02-25 10:44:19 +0100583
584 mutex_lock(&bdev->bd_fsfreeze_mutex);
Christoph Hellwig45042302009-08-03 23:28:35 +0200585 if (!bdev->bd_fsfreeze_count)
Josef Bacik18e9e512010-03-23 10:34:56 -0400586 goto out;
Nick Piggin585d3bc2009-02-25 10:44:19 +0100587
Christoph Hellwig45042302009-08-03 23:28:35 +0200588 error = 0;
589 if (--bdev->bd_fsfreeze_count > 0)
Josef Bacik18e9e512010-03-23 10:34:56 -0400590 goto out;
Nick Piggin585d3bc2009-02-25 10:44:19 +0100591
Christoph Hellwig45042302009-08-03 23:28:35 +0200592 if (!sb)
Josef Bacik18e9e512010-03-23 10:34:56 -0400593 goto out;
Christoph Hellwig45042302009-08-03 23:28:35 +0200594
Benjamin Marzinski48b6bca2014-11-13 20:42:03 -0600595 if (sb->s_op->thaw_super)
596 error = sb->s_op->thaw_super(sb);
597 else
598 error = thaw_super(sb);
Pierre Morel997198b2016-10-04 10:53:40 +0200599 if (error)
Josef Bacik18e9e512010-03-23 10:34:56 -0400600 bdev->bd_fsfreeze_count++;
Josef Bacik18e9e512010-03-23 10:34:56 -0400601out:
Nick Piggin585d3bc2009-02-25 10:44:19 +0100602 mutex_unlock(&bdev->bd_fsfreeze_mutex);
Pierre Morel997198b2016-10-04 10:53:40 +0200603 return error;
Nick Piggin585d3bc2009-02-25 10:44:19 +0100604}
605EXPORT_SYMBOL(thaw_bdev);
606
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607static int blkdev_writepage(struct page *page, struct writeback_control *wbc)
608{
609 return block_write_full_page(page, blkdev_get_block, wbc);
610}
611
612static int blkdev_readpage(struct file * file, struct page * page)
613{
614 return block_read_full_page(page, blkdev_get_block);
615}
616
Matthew Wilcox (Oracle)d4388342020-06-01 21:47:02 -0700617static void blkdev_readahead(struct readahead_control *rac)
Akinobu Mita447f05b2014-10-09 15:26:58 -0700618{
Matthew Wilcox (Oracle)d4388342020-06-01 21:47:02 -0700619 mpage_readahead(rac, blkdev_get_block);
Akinobu Mita447f05b2014-10-09 15:26:58 -0700620}
621
Nick Piggin6272b5a2007-10-16 01:25:04 -0700622static int blkdev_write_begin(struct file *file, struct address_space *mapping,
623 loff_t pos, unsigned len, unsigned flags,
624 struct page **pagep, void **fsdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625{
Christoph Hellwig155130a2010-06-04 11:29:58 +0200626 return block_write_begin(mapping, pos, len, flags, pagep,
627 blkdev_get_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628}
629
Nick Piggin6272b5a2007-10-16 01:25:04 -0700630static int blkdev_write_end(struct file *file, struct address_space *mapping,
631 loff_t pos, unsigned len, unsigned copied,
632 struct page *page, void *fsdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633{
Nick Piggin6272b5a2007-10-16 01:25:04 -0700634 int ret;
635 ret = block_write_end(file, mapping, pos, len, copied, page, fsdata);
636
637 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300638 put_page(page);
Nick Piggin6272b5a2007-10-16 01:25:04 -0700639
640 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641}
642
643/*
644 * private llseek:
Al Viro496ad9a2013-01-23 17:07:38 -0500645 * for a block special file file_inode(file)->i_size is zero
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 * so we compute the size by hand (just as in block_read/write above)
647 */
Andrew Morton965c8e52012-12-17 15:59:39 -0800648static loff_t block_llseek(struct file *file, loff_t offset, int whence)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649{
Dan Williams4ebb16c2015-10-28 07:48:19 +0900650 struct inode *bd_inode = bdev_file_inode(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 loff_t retval;
652
Al Viro59551022016-01-22 15:40:57 -0500653 inode_lock(bd_inode);
Al Viro5d48f3a2013-06-23 21:34:45 +0400654 retval = fixed_size_llseek(file, offset, whence, i_size_read(bd_inode));
Al Viro59551022016-01-22 15:40:57 -0500655 inode_unlock(bd_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 return retval;
657}
658
Josef Bacik02c24a82011-07-16 20:44:56 -0400659int blkdev_fsync(struct file *filp, loff_t start, loff_t end, int datasync)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660{
Dan Williams4ebb16c2015-10-28 07:48:19 +0900661 struct inode *bd_inode = bdev_file_inode(filp);
Anton Blanchardb8af67e2010-04-23 13:18:06 -0400662 struct block_device *bdev = I_BDEV(bd_inode);
Christoph Hellwigab0a9732009-10-29 14:14:04 +0100663 int error;
Rafael J. Wysockida5aa862011-08-02 02:17:48 +0200664
Jeff Layton372cf242017-07-06 07:02:28 -0400665 error = file_write_and_wait_range(filp, start, end);
Rafael J. Wysockida5aa862011-08-02 02:17:48 +0200666 if (error)
667 return error;
Christoph Hellwigab0a9732009-10-29 14:14:04 +0100668
Anton Blanchardb8af67e2010-04-23 13:18:06 -0400669 /*
670 * There is no need to serialise calls to blkdev_issue_flush with
671 * i_mutex and doing so causes performance issues with concurrent
672 * O_SYNC writers to a block device.
673 */
Christoph Hellwig93985542020-05-13 14:36:00 +0200674 error = blkdev_issue_flush(bdev, GFP_KERNEL);
Christoph Hellwigab0a9732009-10-29 14:14:04 +0100675 if (error == -EOPNOTSUPP)
676 error = 0;
Anton Blanchardb8af67e2010-04-23 13:18:06 -0400677
Christoph Hellwigab0a9732009-10-29 14:14:04 +0100678 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679}
Andrew Mortonb1dd3b22010-04-06 14:35:00 -0700680EXPORT_SYMBOL(blkdev_fsync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681
Matthew Wilcox47a191f2014-06-04 16:07:46 -0700682/**
683 * bdev_read_page() - Start reading a page from a block device
684 * @bdev: The device to read the page from
685 * @sector: The offset on the device to read the page to (need not be aligned)
686 * @page: The page to read
687 *
688 * On entry, the page should be locked. It will be unlocked when the page
689 * has been read. If the block driver implements rw_page synchronously,
690 * that will be true on exit from this function, but it need not be.
691 *
692 * Errors returned by this function are usually "soft", eg out of memory, or
693 * queue full; callers should try a different route to read this page rather
694 * than propagate an error back up the stack.
695 *
696 * Return: negative errno if an error occurs, 0 if submission was successful.
697 */
698int bdev_read_page(struct block_device *bdev, sector_t sector,
699 struct page *page)
700{
701 const struct block_device_operations *ops = bdev->bd_disk->fops;
Dan Williams2e6edc952015-11-19 13:29:28 -0800702 int result = -EOPNOTSUPP;
703
Vishal Vermaf68eb1e2015-05-12 13:48:53 -0400704 if (!ops->rw_page || bdev_get_integrity(bdev))
Dan Williams2e6edc952015-11-19 13:29:28 -0800705 return result;
706
Bart Van Assche3a0a5292017-11-09 10:49:58 -0800707 result = blk_queue_enter(bdev->bd_queue, 0);
Dan Williams2e6edc952015-11-19 13:29:28 -0800708 if (result)
709 return result;
Tejun Heo3f289dc2018-07-18 04:47:36 -0700710 result = ops->rw_page(bdev, sector + get_start_sect(bdev), page,
711 REQ_OP_READ);
Dan Williams2e6edc952015-11-19 13:29:28 -0800712 blk_queue_exit(bdev->bd_queue);
713 return result;
Matthew Wilcox47a191f2014-06-04 16:07:46 -0700714}
Matthew Wilcox47a191f2014-06-04 16:07:46 -0700715
716/**
717 * bdev_write_page() - Start writing a page to a block device
718 * @bdev: The device to write the page to
719 * @sector: The offset on the device to write the page to (need not be aligned)
720 * @page: The page to write
721 * @wbc: The writeback_control for the write
722 *
723 * On entry, the page should be locked and not currently under writeback.
724 * On exit, if the write started successfully, the page will be unlocked and
725 * under writeback. If the write failed already (eg the driver failed to
726 * queue the page to the device), the page will still be locked. If the
727 * caller is a ->writepage implementation, it will need to unlock the page.
728 *
729 * Errors returned by this function are usually "soft", eg out of memory, or
730 * queue full; callers should try a different route to write this page rather
731 * than propagate an error back up the stack.
732 *
733 * Return: negative errno if an error occurs, 0 if submission was successful.
734 */
735int bdev_write_page(struct block_device *bdev, sector_t sector,
736 struct page *page, struct writeback_control *wbc)
737{
738 int result;
Matthew Wilcox47a191f2014-06-04 16:07:46 -0700739 const struct block_device_operations *ops = bdev->bd_disk->fops;
Dan Williams2e6edc952015-11-19 13:29:28 -0800740
Vishal Vermaf68eb1e2015-05-12 13:48:53 -0400741 if (!ops->rw_page || bdev_get_integrity(bdev))
Matthew Wilcox47a191f2014-06-04 16:07:46 -0700742 return -EOPNOTSUPP;
Bart Van Assche3a0a5292017-11-09 10:49:58 -0800743 result = blk_queue_enter(bdev->bd_queue, 0);
Dan Williams2e6edc952015-11-19 13:29:28 -0800744 if (result)
745 return result;
746
Matthew Wilcox47a191f2014-06-04 16:07:46 -0700747 set_page_writeback(page);
Tejun Heo3f289dc2018-07-18 04:47:36 -0700748 result = ops->rw_page(bdev, sector + get_start_sect(bdev), page,
749 REQ_OP_WRITE);
Matthew Wilcoxf8927602017-10-13 15:58:15 -0700750 if (result) {
Matthew Wilcox47a191f2014-06-04 16:07:46 -0700751 end_page_writeback(page);
Matthew Wilcoxf8927602017-10-13 15:58:15 -0700752 } else {
753 clean_page_buffers(page);
Matthew Wilcox47a191f2014-06-04 16:07:46 -0700754 unlock_page(page);
Matthew Wilcoxf8927602017-10-13 15:58:15 -0700755 }
Dan Williams2e6edc952015-11-19 13:29:28 -0800756 blk_queue_exit(bdev->bd_queue);
Matthew Wilcox47a191f2014-06-04 16:07:46 -0700757 return result;
758}
Matthew Wilcox47a191f2014-06-04 16:07:46 -0700759
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760/*
761 * pseudo-fs
762 */
763
764static __cacheline_aligned_in_smp DEFINE_SPINLOCK(bdev_lock);
Christoph Lametere18b8902006-12-06 20:33:20 -0800765static struct kmem_cache * bdev_cachep __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766
767static struct inode *bdev_alloc_inode(struct super_block *sb)
768{
Christoph Lametere94b1762006-12-06 20:33:17 -0800769 struct bdev_inode *ei = kmem_cache_alloc(bdev_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 if (!ei)
771 return NULL;
772 return &ei->vfs_inode;
773}
774
Al Viro41149cb2019-04-10 15:12:38 -0400775static void bdev_free_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776{
Al Viro41149cb2019-04-10 15:12:38 -0400777 kmem_cache_free(bdev_cachep, BDEV_I(inode));
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100778}
779
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700780static void init_once(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781{
782 struct bdev_inode *ei = (struct bdev_inode *) foo;
783 struct block_device *bdev = &ei->bdev;
784
Christoph Lametera35afb82007-05-16 22:10:57 -0700785 memset(bdev, 0, sizeof(*bdev));
786 mutex_init(&bdev->bd_mutex);
Christoph Lametera35afb82007-05-16 22:10:57 -0700787 INIT_LIST_HEAD(&bdev->bd_list);
Tejun Heo49731ba2011-01-14 18:43:57 +0100788#ifdef CONFIG_SYSFS
789 INIT_LIST_HEAD(&bdev->bd_holder_disks);
790#endif
Jan Karaa5a79d02017-03-02 16:50:13 +0100791 bdev->bd_bdi = &noop_backing_dev_info;
Christoph Lametera35afb82007-05-16 22:10:57 -0700792 inode_init_once(&ei->vfs_inode);
Takashi Satofcccf502009-01-09 16:40:59 -0800793 /* Initialize mutex for freeze. */
794 mutex_init(&bdev->bd_fsfreeze_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795}
796
Al Virob57922d2010-06-07 14:34:48 -0400797static void bdev_evict_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798{
799 struct block_device *bdev = &BDEV_I(inode)->bdev;
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700800 truncate_inode_pages_final(&inode->i_data);
Al Virob57922d2010-06-07 14:34:48 -0400801 invalidate_inode_buffers(inode); /* is it needed here? */
Jan Karadbd57682012-05-03 14:48:02 +0200802 clear_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 spin_lock(&bdev_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 list_del_init(&bdev->bd_list);
805 spin_unlock(&bdev_lock);
Jan Karaf7597412017-03-23 01:37:00 +0100806 /* Detach inode from wb early as bdi_put() may free bdi->wb */
807 inode_detach_wb(inode);
Jan Karaa5a79d02017-03-02 16:50:13 +0100808 if (bdev->bd_bdi != &noop_backing_dev_info) {
Jan Karab1d2dc562017-02-02 15:56:52 +0100809 bdi_put(bdev->bd_bdi);
Jan Karaa5a79d02017-03-02 16:50:13 +0100810 bdev->bd_bdi = &noop_backing_dev_info;
811 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812}
813
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800814static const struct super_operations bdev_sops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 .statfs = simple_statfs,
816 .alloc_inode = bdev_alloc_inode,
Al Viro41149cb2019-04-10 15:12:38 -0400817 .free_inode = bdev_free_inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 .drop_inode = generic_delete_inode,
Al Virob57922d2010-06-07 14:34:48 -0400819 .evict_inode = bdev_evict_inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820};
821
David Howells9030d162019-03-25 16:38:23 +0000822static int bd_init_fs_context(struct fs_context *fc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823{
David Howells9030d162019-03-25 16:38:23 +0000824 struct pseudo_fs_context *ctx = init_pseudo(fc, BDEVFS_MAGIC);
825 if (!ctx)
826 return -ENOMEM;
827 fc->s_iflags |= SB_I_CGROUPWB;
828 ctx->ops = &bdev_sops;
829 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830}
831
832static struct file_system_type bd_type = {
833 .name = "bdev",
David Howells9030d162019-03-25 16:38:23 +0000834 .init_fs_context = bd_init_fs_context,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 .kill_sb = kill_anon_super,
836};
837
Tejun Heoa212b102015-05-22 17:13:33 -0400838struct super_block *blockdev_superblock __read_mostly;
839EXPORT_SYMBOL_GPL(blockdev_superblock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840
841void __init bdev_cache_init(void)
842{
843 int err;
Sergey Senozhatskyace85772012-01-10 02:43:59 +0300844 static struct vfsmount *bd_mnt;
Denis ChengRqc2acf7b2008-12-01 14:34:56 -0800845
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 bdev_cachep = kmem_cache_create("bdev_cache", sizeof(struct bdev_inode),
Paul Jacksonfffb60f2006-03-24 03:16:06 -0800847 0, (SLAB_HWCACHE_ALIGN|SLAB_RECLAIM_ACCOUNT|
Vladimir Davydov5d097052016-01-14 15:18:21 -0800848 SLAB_MEM_SPREAD|SLAB_ACCOUNT|SLAB_PANIC),
Paul Mundt20c2df82007-07-20 10:11:58 +0900849 init_once);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 err = register_filesystem(&bd_type);
851 if (err)
852 panic("Cannot register bdev pseudo-fs");
853 bd_mnt = kern_mount(&bd_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 if (IS_ERR(bd_mnt))
855 panic("Cannot create bdev pseudo-fs");
Sergey Senozhatskyace85772012-01-10 02:43:59 +0300856 blockdev_superblock = bd_mnt->mnt_sb; /* For writeback */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857}
858
859/*
860 * Most likely _very_ bad one - but then it's hardly critical for small
861 * /dev and can be fixed when somebody will need really large one.
862 * Keep in mind that it will be fed through icache hash function too.
863 */
864static inline unsigned long hash(dev_t dev)
865{
866 return MAJOR(dev)+MINOR(dev);
867}
868
869static int bdev_test(struct inode *inode, void *data)
870{
871 return BDEV_I(inode)->bdev.bd_dev == *(dev_t *)data;
872}
873
874static int bdev_set(struct inode *inode, void *data)
875{
876 BDEV_I(inode)->bdev.bd_dev = *(dev_t *)data;
877 return 0;
878}
879
880static LIST_HEAD(all_bdevs);
881
882struct block_device *bdget(dev_t dev)
883{
884 struct block_device *bdev;
885 struct inode *inode;
886
Denis ChengRqc2acf7b2008-12-01 14:34:56 -0800887 inode = iget5_locked(blockdev_superblock, hash(dev),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 bdev_test, bdev_set, &dev);
889
890 if (!inode)
891 return NULL;
892
893 bdev = &BDEV_I(inode)->bdev;
894
895 if (inode->i_state & I_NEW) {
896 bdev->bd_contains = NULL;
Lachlan McIlroy782b94c2011-06-30 11:01:45 +1000897 bdev->bd_super = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 bdev->bd_inode = inode;
Fabian Frederick93407472017-02-27 14:28:32 -0800899 bdev->bd_block_size = i_blocksize(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 bdev->bd_part_count = 0;
901 bdev->bd_invalidated = 0;
902 inode->i_mode = S_IFBLK;
903 inode->i_rdev = dev;
904 inode->i_bdev = bdev;
905 inode->i_data.a_ops = &def_blk_aops;
906 mapping_set_gfp_mask(&inode->i_data, GFP_USER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 spin_lock(&bdev_lock);
908 list_add(&bdev->bd_list, &all_bdevs);
909 spin_unlock(&bdev_lock);
910 unlock_new_inode(inode);
911 }
912 return bdev;
913}
914
915EXPORT_SYMBOL(bdget);
916
Alan Jenkinsdddac6a2009-07-29 21:07:55 +0200917/**
918 * bdgrab -- Grab a reference to an already referenced block device
919 * @bdev: Block device to grab a reference to.
920 */
921struct block_device *bdgrab(struct block_device *bdev)
922{
Al Viro7de9c6ee2010-10-23 11:11:40 -0400923 ihold(bdev->bd_inode);
Alan Jenkinsdddac6a2009-07-29 21:07:55 +0200924 return bdev;
925}
Anatol Pomozovc1681bf2013-04-01 09:47:56 -0700926EXPORT_SYMBOL(bdgrab);
Alan Jenkinsdddac6a2009-07-29 21:07:55 +0200927
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928long nr_blockdev_pages(void)
929{
Matthias Kaehlcke203a2932007-07-15 23:40:23 -0700930 struct block_device *bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 long ret = 0;
932 spin_lock(&bdev_lock);
Matthias Kaehlcke203a2932007-07-15 23:40:23 -0700933 list_for_each_entry(bdev, &all_bdevs, bd_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 ret += bdev->bd_inode->i_mapping->nrpages;
935 }
936 spin_unlock(&bdev_lock);
937 return ret;
938}
939
940void bdput(struct block_device *bdev)
941{
942 iput(bdev->bd_inode);
943}
944
945EXPORT_SYMBOL(bdput);
946
947static struct block_device *bd_acquire(struct inode *inode)
948{
949 struct block_device *bdev;
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700950
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 spin_lock(&bdev_lock);
952 bdev = inode->i_bdev;
Jan Karacccd9fb2017-02-21 18:09:48 +0100953 if (bdev && !inode_unhashed(bdev->bd_inode)) {
Ilya Dryomoved8a9d2c2015-11-20 22:18:43 +0100954 bdgrab(bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 spin_unlock(&bdev_lock);
956 return bdev;
957 }
958 spin_unlock(&bdev_lock);
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700959
Jan Karacccd9fb2017-02-21 18:09:48 +0100960 /*
961 * i_bdev references block device inode that was already shut down
962 * (corresponding device got removed). Remove the reference and look
963 * up block device inode again just in case new device got
964 * reestablished under the same device number.
965 */
966 if (bdev)
967 bd_forget(inode);
968
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 bdev = bdget(inode->i_rdev);
970 if (bdev) {
971 spin_lock(&bdev_lock);
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700972 if (!inode->i_bdev) {
973 /*
Al Viro7de9c6ee2010-10-23 11:11:40 -0400974 * We take an additional reference to bd_inode,
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700975 * and it's released in clear_inode() of inode.
976 * So, we can access it via ->i_mapping always
977 * without igrab().
978 */
Ilya Dryomoved8a9d2c2015-11-20 22:18:43 +0100979 bdgrab(bdev);
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700980 inode->i_bdev = bdev;
981 inode->i_mapping = bdev->bd_inode->i_mapping;
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700982 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 spin_unlock(&bdev_lock);
984 }
985 return bdev;
986}
987
988/* Call when you free inode */
989
990void bd_forget(struct inode *inode)
991{
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700992 struct block_device *bdev = NULL;
993
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 spin_lock(&bdev_lock);
Yan Hongb4ea2ea2013-04-30 15:26:47 -0700995 if (!sb_is_blkdev_sb(inode->i_sb))
996 bdev = inode->i_bdev;
Al Viroa4a4f942016-07-19 13:16:52 -0400997 inode->i_bdev = NULL;
998 inode->i_mapping = &inode->i_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 spin_unlock(&bdev_lock);
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -07001000
1001 if (bdev)
Ilya Dryomoved8a9d2c2015-11-20 22:18:43 +01001002 bdput(bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003}
1004
Tejun Heo1a3cbbc2010-04-07 18:52:29 +09001005/**
1006 * bd_may_claim - test whether a block device can be claimed
1007 * @bdev: block device of interest
1008 * @whole: whole block device containing @bdev, may equal @bdev
1009 * @holder: holder trying to claim @bdev
1010 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001011 * Test whether @bdev can be claimed by @holder.
Tejun Heo1a3cbbc2010-04-07 18:52:29 +09001012 *
1013 * CONTEXT:
1014 * spin_lock(&bdev_lock).
1015 *
1016 * RETURNS:
1017 * %true if @bdev can be claimed, %false otherwise.
1018 */
1019static bool bd_may_claim(struct block_device *bdev, struct block_device *whole,
1020 void *holder)
1021{
1022 if (bdev->bd_holder == holder)
1023 return true; /* already a holder */
1024 else if (bdev->bd_holder != NULL)
1025 return false; /* held by someone else */
NeilBrownbcc7f5b2016-12-12 08:21:51 -07001026 else if (whole == bdev)
Tejun Heo1a3cbbc2010-04-07 18:52:29 +09001027 return true; /* is a whole device which isn't held */
1028
Tejun Heoe525fd82010-11-13 11:55:17 +01001029 else if (whole->bd_holder == bd_may_claim)
Tejun Heo1a3cbbc2010-04-07 18:52:29 +09001030 return true; /* is a partition of a device that is being partitioned */
1031 else if (whole->bd_holder != NULL)
1032 return false; /* is a partition of a held device */
1033 else
1034 return true; /* is a partition of an un-held device */
1035}
1036
1037/**
Tejun Heo6b4517a2010-04-07 18:53:59 +09001038 * bd_prepare_to_claim - prepare to claim a block device
1039 * @bdev: block device of interest
1040 * @whole: the whole device containing @bdev, may equal @bdev
1041 * @holder: holder trying to claim @bdev
1042 *
1043 * Prepare to claim @bdev. This function fails if @bdev is already
1044 * claimed by another holder and waits if another claiming is in
1045 * progress. This function doesn't actually claim. On successful
1046 * return, the caller has ownership of bd_claiming and bd_holder[s].
1047 *
1048 * CONTEXT:
1049 * spin_lock(&bdev_lock). Might release bdev_lock, sleep and regrab
1050 * it multiple times.
1051 *
1052 * RETURNS:
1053 * 0 if @bdev can be claimed, -EBUSY otherwise.
1054 */
1055static int bd_prepare_to_claim(struct block_device *bdev,
1056 struct block_device *whole, void *holder)
1057{
1058retry:
1059 /* if someone else claimed, fail */
1060 if (!bd_may_claim(bdev, whole, holder))
1061 return -EBUSY;
1062
Tejun Heoe75aa852010-08-04 17:59:39 +02001063 /* if claiming is already in progress, wait for it to finish */
1064 if (whole->bd_claiming) {
Tejun Heo6b4517a2010-04-07 18:53:59 +09001065 wait_queue_head_t *wq = bit_waitqueue(&whole->bd_claiming, 0);
1066 DEFINE_WAIT(wait);
1067
1068 prepare_to_wait(wq, &wait, TASK_UNINTERRUPTIBLE);
1069 spin_unlock(&bdev_lock);
1070 schedule();
1071 finish_wait(wq, &wait);
1072 spin_lock(&bdev_lock);
1073 goto retry;
1074 }
1075
1076 /* yay, all mine */
1077 return 0;
1078}
1079
Jan Kara560e7cb2018-02-26 13:01:42 +01001080static struct gendisk *bdev_get_gendisk(struct block_device *bdev, int *partno)
1081{
1082 struct gendisk *disk = get_gendisk(bdev->bd_dev, partno);
1083
1084 if (!disk)
1085 return NULL;
1086 /*
1087 * Now that we hold gendisk reference we make sure bdev we looked up is
1088 * not stale. If it is, it means device got removed and created before
1089 * we looked up gendisk and we fail open in such case. Associating
1090 * unhashed bdev with newly created gendisk could lead to two bdevs
1091 * (and thus two independent caches) being associated with one device
1092 * which is bad.
1093 */
1094 if (inode_unhashed(bdev->bd_inode)) {
1095 put_disk_and_module(disk);
1096 return NULL;
1097 }
1098 return disk;
1099}
1100
Tejun Heo6b4517a2010-04-07 18:53:59 +09001101/**
1102 * bd_start_claiming - start claiming a block device
1103 * @bdev: block device of interest
1104 * @holder: holder trying to claim @bdev
1105 *
1106 * @bdev is about to be opened exclusively. Check @bdev can be opened
1107 * exclusively and mark that an exclusive open is in progress. Each
1108 * successful call to this function must be matched with a call to
Nick Pigginb0018362010-05-26 01:51:19 +10001109 * either bd_finish_claiming() or bd_abort_claiming() (which do not
1110 * fail).
1111 *
1112 * This function is used to gain exclusive access to the block device
1113 * without actually causing other exclusive open attempts to fail. It
1114 * should be used when the open sequence itself requires exclusive
1115 * access but may subsequently fail.
Tejun Heo6b4517a2010-04-07 18:53:59 +09001116 *
1117 * CONTEXT:
1118 * Might sleep.
1119 *
1120 * RETURNS:
1121 * Pointer to the block device containing @bdev on success, ERR_PTR()
1122 * value on failure.
1123 */
Jan Kara89e524c02019-07-30 13:10:14 +02001124struct block_device *bd_start_claiming(struct block_device *bdev, void *holder)
Tejun Heo6b4517a2010-04-07 18:53:59 +09001125{
1126 struct gendisk *disk;
1127 struct block_device *whole;
1128 int partno, err;
1129
1130 might_sleep();
1131
1132 /*
1133 * @bdev might not have been initialized properly yet, look up
1134 * and grab the outer block device the hard way.
1135 */
Jan Kara560e7cb2018-02-26 13:01:42 +01001136 disk = bdev_get_gendisk(bdev, &partno);
Tejun Heo6b4517a2010-04-07 18:53:59 +09001137 if (!disk)
1138 return ERR_PTR(-ENXIO);
1139
Tejun Heod4c208b2011-06-13 12:45:48 +02001140 /*
1141 * Normally, @bdev should equal what's returned from bdget_disk()
1142 * if partno is 0; however, some drivers (floppy) use multiple
1143 * bdev's for the same physical device and @bdev may be one of the
1144 * aliases. Keep @bdev if partno is 0. This means claimer
1145 * tracking is broken for those devices but it has always been that
1146 * way.
1147 */
1148 if (partno)
1149 whole = bdget_disk(disk, 0);
1150 else
1151 whole = bdgrab(bdev);
1152
Jan Kara9df6c292018-02-26 13:01:39 +01001153 put_disk_and_module(disk);
Tejun Heo6b4517a2010-04-07 18:53:59 +09001154 if (!whole)
1155 return ERR_PTR(-ENOMEM);
1156
1157 /* prepare to claim, if successful, mark claiming in progress */
1158 spin_lock(&bdev_lock);
1159
1160 err = bd_prepare_to_claim(bdev, whole, holder);
1161 if (err == 0) {
1162 whole->bd_claiming = holder;
1163 spin_unlock(&bdev_lock);
1164 return whole;
1165 } else {
1166 spin_unlock(&bdev_lock);
1167 bdput(whole);
1168 return ERR_PTR(err);
1169 }
1170}
Jan Kara89e524c02019-07-30 13:10:14 +02001171EXPORT_SYMBOL(bd_start_claiming);
1172
1173static void bd_clear_claiming(struct block_device *whole, void *holder)
1174{
1175 lockdep_assert_held(&bdev_lock);
1176 /* tell others that we're done */
1177 BUG_ON(whole->bd_claiming != holder);
1178 whole->bd_claiming = NULL;
1179 wake_up_bit(&whole->bd_claiming, 0);
1180}
1181
1182/**
1183 * bd_finish_claiming - finish claiming of a block device
1184 * @bdev: block device of interest
1185 * @whole: whole block device (returned from bd_start_claiming())
1186 * @holder: holder that has claimed @bdev
1187 *
1188 * Finish exclusive open of a block device. Mark the device as exlusively
1189 * open by the holder and wake up all waiters for exclusive open to finish.
1190 */
1191void bd_finish_claiming(struct block_device *bdev, struct block_device *whole,
1192 void *holder)
1193{
1194 spin_lock(&bdev_lock);
1195 BUG_ON(!bd_may_claim(bdev, whole, holder));
1196 /*
1197 * Note that for a whole device bd_holders will be incremented twice,
1198 * and bd_holder will be set to bd_may_claim before being set to holder
1199 */
1200 whole->bd_holders++;
1201 whole->bd_holder = bd_may_claim;
1202 bdev->bd_holders++;
1203 bdev->bd_holder = holder;
1204 bd_clear_claiming(whole, holder);
1205 spin_unlock(&bdev_lock);
1206}
1207EXPORT_SYMBOL(bd_finish_claiming);
1208
1209/**
1210 * bd_abort_claiming - abort claiming of a block device
1211 * @bdev: block device of interest
1212 * @whole: whole block device (returned from bd_start_claiming())
1213 * @holder: holder that has claimed @bdev
1214 *
1215 * Abort claiming of a block device when the exclusive open failed. This can be
1216 * also used when exclusive open is not actually desired and we just needed
1217 * to block other exclusive openers for a while.
1218 */
1219void bd_abort_claiming(struct block_device *bdev, struct block_device *whole,
1220 void *holder)
1221{
1222 spin_lock(&bdev_lock);
1223 bd_clear_claiming(whole, holder);
1224 spin_unlock(&bdev_lock);
1225}
1226EXPORT_SYMBOL(bd_abort_claiming);
Tejun Heo6b4517a2010-04-07 18:53:59 +09001227
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001228#ifdef CONFIG_SYSFS
Tejun Heo49731ba2011-01-14 18:43:57 +01001229struct bd_holder_disk {
1230 struct list_head list;
1231 struct gendisk *disk;
1232 int refcnt;
1233};
1234
1235static struct bd_holder_disk *bd_find_holder_disk(struct block_device *bdev,
1236 struct gendisk *disk)
1237{
1238 struct bd_holder_disk *holder;
1239
1240 list_for_each_entry(holder, &bdev->bd_holder_disks, list)
1241 if (holder->disk == disk)
1242 return holder;
1243 return NULL;
1244}
1245
Andrew Morton4d7dd8fd2006-09-29 01:58:56 -07001246static int add_symlink(struct kobject *from, struct kobject *to)
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001247{
Andrew Morton4d7dd8fd2006-09-29 01:58:56 -07001248 return sysfs_create_link(from, to, kobject_name(to));
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001249}
1250
1251static void del_symlink(struct kobject *from, struct kobject *to)
1252{
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001253 sysfs_remove_link(from, kobject_name(to));
1254}
1255
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001256/**
Tejun Heoe09b4572010-11-13 11:55:17 +01001257 * bd_link_disk_holder - create symlinks between holding disk and slave bdev
1258 * @bdev: the claimed slave bdev
1259 * @disk: the holding disk
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -05001260 *
Tejun Heo49731ba2011-01-14 18:43:57 +01001261 * DON'T USE THIS UNLESS YOU'RE ALREADY USING IT.
1262 *
Tejun Heoe09b4572010-11-13 11:55:17 +01001263 * This functions creates the following sysfs symlinks.
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -05001264 *
Tejun Heoe09b4572010-11-13 11:55:17 +01001265 * - from "slaves" directory of the holder @disk to the claimed @bdev
1266 * - from "holders" directory of the @bdev to the holder @disk
1267 *
1268 * For example, if /dev/dm-0 maps to /dev/sda and disk for dm-0 is
1269 * passed to bd_link_disk_holder(), then:
1270 *
1271 * /sys/block/dm-0/slaves/sda --> /sys/block/sda
1272 * /sys/block/sda/holders/dm-0 --> /sys/block/dm-0
1273 *
1274 * The caller must have claimed @bdev before calling this function and
1275 * ensure that both @bdev and @disk are valid during the creation and
1276 * lifetime of these symlinks.
1277 *
1278 * CONTEXT:
1279 * Might sleep.
1280 *
1281 * RETURNS:
1282 * 0 on success, -errno on failure.
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -05001283 */
Tejun Heoe09b4572010-11-13 11:55:17 +01001284int bd_link_disk_holder(struct block_device *bdev, struct gendisk *disk)
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -05001285{
Tejun Heo49731ba2011-01-14 18:43:57 +01001286 struct bd_holder_disk *holder;
Tejun Heoe09b4572010-11-13 11:55:17 +01001287 int ret = 0;
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001288
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001289 mutex_lock(&bdev->bd_mutex);
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -05001290
Tejun Heo49731ba2011-01-14 18:43:57 +01001291 WARN_ON_ONCE(!bdev->bd_holder);
Johannes Weiner4e916722007-07-15 23:41:25 -07001292
Tejun Heoe09b4572010-11-13 11:55:17 +01001293 /* FIXME: remove the following once add_disk() handles errors */
1294 if (WARN_ON(!disk->slave_dir || !bdev->bd_part->holder_dir))
1295 goto out_unlock;
Johannes Weiner4e916722007-07-15 23:41:25 -07001296
Tejun Heo49731ba2011-01-14 18:43:57 +01001297 holder = bd_find_holder_disk(bdev, disk);
1298 if (holder) {
1299 holder->refcnt++;
Tejun Heoe09b4572010-11-13 11:55:17 +01001300 goto out_unlock;
1301 }
1302
Tejun Heo49731ba2011-01-14 18:43:57 +01001303 holder = kzalloc(sizeof(*holder), GFP_KERNEL);
1304 if (!holder) {
1305 ret = -ENOMEM;
1306 goto out_unlock;
1307 }
1308
1309 INIT_LIST_HEAD(&holder->list);
1310 holder->disk = disk;
1311 holder->refcnt = 1;
1312
1313 ret = add_symlink(disk->slave_dir, &part_to_dev(bdev->bd_part)->kobj);
1314 if (ret)
1315 goto out_free;
1316
1317 ret = add_symlink(bdev->bd_part->holder_dir, &disk_to_dev(disk)->kobj);
1318 if (ret)
1319 goto out_del;
Tejun Heoe7407d12011-02-24 09:56:32 +01001320 /*
1321 * bdev could be deleted beneath us which would implicitly destroy
1322 * the holder directory. Hold on to it.
1323 */
1324 kobject_get(bdev->bd_part->holder_dir);
Tejun Heo49731ba2011-01-14 18:43:57 +01001325
1326 list_add(&holder->list, &bdev->bd_holder_disks);
1327 goto out_unlock;
1328
1329out_del:
1330 del_symlink(disk->slave_dir, &part_to_dev(bdev->bd_part)->kobj);
1331out_free:
1332 kfree(holder);
Tejun Heoe09b4572010-11-13 11:55:17 +01001333out_unlock:
Jun'ichi Nomurab4cf1b72006-03-27 01:18:00 -08001334 mutex_unlock(&bdev->bd_mutex);
Tejun Heoe09b4572010-11-13 11:55:17 +01001335 return ret;
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001336}
Tejun Heoe09b4572010-11-13 11:55:17 +01001337EXPORT_SYMBOL_GPL(bd_link_disk_holder);
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001338
Tejun Heo49731ba2011-01-14 18:43:57 +01001339/**
1340 * bd_unlink_disk_holder - destroy symlinks created by bd_link_disk_holder()
1341 * @bdev: the calimed slave bdev
1342 * @disk: the holding disk
1343 *
1344 * DON'T USE THIS UNLESS YOU'RE ALREADY USING IT.
1345 *
1346 * CONTEXT:
1347 * Might sleep.
1348 */
1349void bd_unlink_disk_holder(struct block_device *bdev, struct gendisk *disk)
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001350{
Tejun Heo49731ba2011-01-14 18:43:57 +01001351 struct bd_holder_disk *holder;
Tejun Heoe09b4572010-11-13 11:55:17 +01001352
Tejun Heo49731ba2011-01-14 18:43:57 +01001353 mutex_lock(&bdev->bd_mutex);
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001354
Tejun Heo49731ba2011-01-14 18:43:57 +01001355 holder = bd_find_holder_disk(bdev, disk);
1356
1357 if (!WARN_ON_ONCE(holder == NULL) && !--holder->refcnt) {
1358 del_symlink(disk->slave_dir, &part_to_dev(bdev->bd_part)->kobj);
1359 del_symlink(bdev->bd_part->holder_dir,
1360 &disk_to_dev(disk)->kobj);
Tejun Heoe7407d12011-02-24 09:56:32 +01001361 kobject_put(bdev->bd_part->holder_dir);
Tejun Heo49731ba2011-01-14 18:43:57 +01001362 list_del_init(&holder->list);
1363 kfree(holder);
1364 }
1365
1366 mutex_unlock(&bdev->bd_mutex);
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001367}
Tejun Heo49731ba2011-01-14 18:43:57 +01001368EXPORT_SYMBOL_GPL(bd_unlink_disk_holder);
Jun'ichi Nomura641dc632006-03-27 01:17:57 -08001369#endif
1370
Andrew Patterson0c002c22008-09-04 14:27:20 -06001371/**
Andrew Patterson56ade442008-09-04 14:27:40 -06001372 * flush_disk - invalidates all buffer-cache entries on a disk
1373 *
1374 * @bdev: struct block device to be flushed
Randy Dunlape6eb5ce2011-02-26 10:54:00 -08001375 * @kill_dirty: flag to guide handling of dirty inodes
Andrew Patterson56ade442008-09-04 14:27:40 -06001376 *
1377 * Invalidates all buffer-cache entries on a disk. It should be called
1378 * when a disk has been changed -- either by a media change or online
1379 * resize.
1380 */
NeilBrown93b270f2011-02-24 17:25:47 +11001381static void flush_disk(struct block_device *bdev, bool kill_dirty)
Andrew Patterson56ade442008-09-04 14:27:40 -06001382{
NeilBrown93b270f2011-02-24 17:25:47 +11001383 if (__invalidate_device(bdev, kill_dirty)) {
Andrew Patterson56ade442008-09-04 14:27:40 -06001384 printk(KERN_WARNING "VFS: busy inodes on changed media or "
Dmitry Monakhov424081f2015-04-13 16:31:34 +04001385 "resized disk %s\n",
1386 bdev->bd_disk ? bdev->bd_disk->disk_name : "");
Andrew Patterson56ade442008-09-04 14:27:40 -06001387 }
Jan Karacba22d82019-10-21 10:38:00 +02001388 bdev->bd_invalidated = 1;
Andrew Patterson56ade442008-09-04 14:27:40 -06001389}
1390
1391/**
Randy Dunlap57d1b532008-10-09 10:42:38 +02001392 * check_disk_size_change - checks for disk size change and adjusts bdev size.
Andrew Pattersonc3279d12008-09-04 14:27:25 -06001393 * @disk: struct gendisk to check
1394 * @bdev: struct bdev to adjust.
Christoph Hellwig5afb7832018-05-29 16:42:59 +02001395 * @verbose: if %true log a message about a size change if there is any
Andrew Pattersonc3279d12008-09-04 14:27:25 -06001396 *
1397 * This routine checks to see if the bdev size does not match the disk size
shunki-fujita849cf552018-04-05 16:20:07 -07001398 * and adjusts it if it differs. When shrinking the bdev size, its all caches
1399 * are freed.
Andrew Pattersonc3279d12008-09-04 14:27:25 -06001400 */
Christoph Hellwiga1548b62019-11-14 15:34:34 +01001401static void check_disk_size_change(struct gendisk *disk,
1402 struct block_device *bdev, bool verbose)
Andrew Pattersonc3279d12008-09-04 14:27:25 -06001403{
1404 loff_t disk_size, bdev_size;
1405
1406 disk_size = (loff_t)get_capacity(disk) << 9;
1407 bdev_size = i_size_read(bdev->bd_inode);
1408 if (disk_size != bdev_size) {
Christoph Hellwig5afb7832018-05-29 16:42:59 +02001409 if (verbose) {
1410 printk(KERN_INFO
1411 "%s: detected capacity change from %lld to %lld\n",
1412 disk->disk_name, bdev_size, disk_size);
1413 }
Andrew Pattersonc3279d12008-09-04 14:27:25 -06001414 i_size_write(bdev->bd_inode, disk_size);
shunki-fujita849cf552018-04-05 16:20:07 -07001415 if (bdev_size > disk_size)
1416 flush_disk(bdev, false);
Andrew Pattersonc3279d12008-09-04 14:27:25 -06001417 }
Christoph Hellwig979c690d2019-11-14 15:34:37 +01001418 bdev->bd_invalidated = 0;
Andrew Pattersonc3279d12008-09-04 14:27:25 -06001419}
Andrew Pattersonc3279d12008-09-04 14:27:25 -06001420
1421/**
Randy Dunlap57d1b532008-10-09 10:42:38 +02001422 * revalidate_disk - wrapper for lower-level driver's revalidate_disk call-back
Andrew Patterson0c002c22008-09-04 14:27:20 -06001423 * @disk: struct gendisk to be revalidated
1424 *
1425 * This routine is a wrapper for lower-level driver's revalidate_disk
1426 * call-backs. It is used to do common pre and post operations needed
1427 * for all revalidate_disk operations.
1428 */
1429int revalidate_disk(struct gendisk *disk)
1430{
1431 int ret = 0;
1432
1433 if (disk->fops->revalidate_disk)
1434 ret = disk->fops->revalidate_disk(disk);
Andrew Pattersonc3279d12008-09-04 14:27:25 -06001435
Jan Kara31cb1d62019-05-15 08:57:40 +02001436 /*
1437 * Hidden disks don't have associated bdev so there's no point in
1438 * revalidating it.
1439 */
1440 if (!(disk->flags & GENHD_FL_HIDDEN)) {
1441 struct block_device *bdev = bdget_disk(disk, 0);
1442
1443 if (!bdev)
1444 return ret;
1445
1446 mutex_lock(&bdev->bd_mutex);
1447 check_disk_size_change(disk, bdev, ret == 0);
Jan Kara31cb1d62019-05-15 08:57:40 +02001448 mutex_unlock(&bdev->bd_mutex);
1449 bdput(bdev);
1450 }
Andrew Patterson0c002c22008-09-04 14:27:20 -06001451 return ret;
1452}
1453EXPORT_SYMBOL(revalidate_disk);
1454
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455/*
1456 * This routine checks whether a removable media has been changed,
1457 * and invalidates all buffer-cache-entries in that case. This
1458 * is a relatively slow routine, so we have to try to minimize using
1459 * it. Thus it is called only upon a 'mount' or 'open'. This
1460 * is the best way of combining speed and utility, I think.
1461 * People changing diskettes in the middle of an operation deserve
1462 * to lose :-)
1463 */
1464int check_disk_change(struct block_device *bdev)
1465{
1466 struct gendisk *disk = bdev->bd_disk;
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -07001467 const struct block_device_operations *bdops = disk->fops;
Tejun Heo77ea8872010-12-08 20:57:37 +01001468 unsigned int events;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469
Tejun Heo77ea8872010-12-08 20:57:37 +01001470 events = disk_clear_events(disk, DISK_EVENT_MEDIA_CHANGE |
1471 DISK_EVENT_EJECT_REQUEST);
1472 if (!(events & DISK_EVENT_MEDIA_CHANGE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 return 0;
1474
NeilBrown93b270f2011-02-24 17:25:47 +11001475 flush_disk(bdev, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 if (bdops->revalidate_disk)
1477 bdops->revalidate_disk(bdev->bd_disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 return 1;
1479}
1480
1481EXPORT_SYMBOL(check_disk_change);
1482
1483void bd_set_size(struct block_device *bdev, loff_t size)
1484{
Al Viro59551022016-01-22 15:40:57 -05001485 inode_lock(bdev->bd_inode);
Guo Chaod646a022013-02-21 15:16:42 -08001486 i_size_write(bdev->bd_inode, size);
Al Viro59551022016-01-22 15:40:57 -05001487 inode_unlock(bdev->bd_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488}
1489EXPORT_SYMBOL(bd_set_size);
1490
Al Viro4385bab2013-05-05 22:11:03 -04001491static void __blkdev_put(struct block_device *bdev, fmode_t mode, int for_part);
NeilBrown37be4122006-12-08 02:36:16 -08001492
Christoph Hellwig142fe8f2019-11-14 15:34:35 +01001493int bdev_disk_changed(struct block_device *bdev, bool invalidate)
Christoph Hellwiga1548b62019-11-14 15:34:34 +01001494{
Christoph Hellwig142fe8f2019-11-14 15:34:35 +01001495 struct gendisk *disk = bdev->bd_disk;
Christoph Hellwiga1548b62019-11-14 15:34:34 +01001496 int ret;
1497
Christoph Hellwigf0b870d2019-11-14 15:34:36 +01001498 lockdep_assert_held(&bdev->bd_mutex);
1499
Christoph Hellwiga1548b62019-11-14 15:34:34 +01001500rescan:
Christoph Hellwigd46430b2020-04-14 09:28:57 +02001501 ret = blk_drop_partitions(bdev);
Christoph Hellwiga1548b62019-11-14 15:34:34 +01001502 if (ret)
1503 return ret;
1504
Christoph Hellwigd981cb52020-03-18 09:12:06 +01001505 /*
1506 * Historically we only set the capacity to zero for devices that
1507 * support partitions (independ of actually having partitions created).
1508 * Doing that is rather inconsistent, but changing it broke legacy
1509 * udisks polling for legacy ide-cdrom devices. Use the crude check
1510 * below to get the sane behavior for most device while not breaking
1511 * userspace for this particular setup.
1512 */
1513 if (invalidate) {
1514 if (disk_part_scan_enabled(disk) ||
1515 !(disk->flags & GENHD_FL_REMOVABLE))
1516 set_capacity(disk, 0);
1517 } else {
1518 if (disk->fops->revalidate_disk)
1519 disk->fops->revalidate_disk(disk);
1520 }
Christoph Hellwiga1548b62019-11-14 15:34:34 +01001521
1522 check_disk_size_change(disk, bdev, !invalidate);
Christoph Hellwiga1548b62019-11-14 15:34:34 +01001523
Christoph Hellwig142fe8f2019-11-14 15:34:35 +01001524 if (get_capacity(disk)) {
1525 ret = blk_add_partitions(disk, bdev);
1526 if (ret == -EAGAIN)
1527 goto rescan;
Eric Biggers490547c2019-12-02 10:21:34 -08001528 } else if (invalidate) {
Christoph Hellwiga1548b62019-11-14 15:34:34 +01001529 /*
1530 * Tell userspace that the media / partition table may have
1531 * changed.
1532 */
1533 kobject_uevent(&disk_to_dev(disk)->kobj, KOBJ_CHANGE);
Christoph Hellwiga1548b62019-11-14 15:34:34 +01001534 }
1535
Christoph Hellwiga1548b62019-11-14 15:34:34 +01001536 return ret;
1537}
Christoph Hellwigf0b870d2019-11-14 15:34:36 +01001538/*
1539 * Only exported for for loop and dasd for historic reasons. Don't use in new
1540 * code!
1541 */
1542EXPORT_SYMBOL_GPL(bdev_disk_changed);
Christoph Hellwiga1548b62019-11-14 15:34:34 +01001543
Peter Zijlstra6d740cd2007-02-20 13:58:18 -08001544/*
1545 * bd_mutex locking:
1546 *
1547 * mutex_lock(part->bd_mutex)
1548 * mutex_lock_nested(whole->bd_mutex, 1)
1549 */
1550
Al Viro572c4892007-10-08 13:24:05 -04001551static int __blkdev_get(struct block_device *bdev, fmode_t mode, int for_part)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 struct gendisk *disk;
Pavel Emelyanov7db9cfd2008-06-05 22:46:27 -07001554 int ret;
Tejun Heocf771cb2008-09-03 09:01:09 +02001555 int partno;
Al Virofe6e9c12008-06-23 08:30:55 -04001556 int perm = 0;
Jan Kara89736652018-02-26 13:01:40 +01001557 bool first_open = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558
Al Viro572c4892007-10-08 13:24:05 -04001559 if (mode & FMODE_READ)
Al Virofe6e9c12008-06-23 08:30:55 -04001560 perm |= MAY_READ;
Al Viro572c4892007-10-08 13:24:05 -04001561 if (mode & FMODE_WRITE)
Al Virofe6e9c12008-06-23 08:30:55 -04001562 perm |= MAY_WRITE;
1563 /*
1564 * hooks: /n/, see "layering violations".
1565 */
Chris Wrightb7300b72010-08-10 18:02:55 -07001566 if (!for_part) {
1567 ret = devcgroup_inode_permission(bdev->bd_inode, perm);
Jason Yan2d3a8e22020-06-16 20:16:55 +08001568 if (ret != 0)
Chris Wrightb7300b72010-08-10 18:02:55 -07001569 return ret;
Al Viro82666022008-08-01 05:32:04 -04001570 }
Pavel Emelyanov7db9cfd2008-06-05 22:46:27 -07001571
NeilBrownd3374822009-01-09 08:31:10 +11001572 restart:
Tejun Heo0762b8b2008-08-25 19:56:12 +09001573
Tejun Heo89f97492008-11-05 10:21:06 +01001574 ret = -ENXIO;
Jan Kara560e7cb2018-02-26 13:01:42 +01001575 disk = bdev_get_gendisk(bdev, &partno);
Tejun Heo0762b8b2008-08-25 19:56:12 +09001576 if (!disk)
Arnd Bergmann6e9624b2010-08-07 18:25:34 +02001577 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578
Tejun Heo69e02c52011-03-09 19:54:27 +01001579 disk_block_events(disk);
NeilBrown6796bf52006-12-08 02:36:16 -08001580 mutex_lock_nested(&bdev->bd_mutex, for_part);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 if (!bdev->bd_openers) {
Jan Kara89736652018-02-26 13:01:40 +01001582 first_open = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 bdev->bd_disk = disk;
Andi Kleen87192a22012-01-12 17:20:34 -08001584 bdev->bd_queue = disk->queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 bdev->bd_contains = bdev;
Christoph Hellwigc2ee0702017-08-23 19:10:31 +02001586 bdev->bd_partno = partno;
Dan Williams03cdadb2016-02-26 15:19:43 -08001587
Tejun Heocf771cb2008-09-03 09:01:09 +02001588 if (!partno) {
Tejun Heo89f97492008-11-05 10:21:06 +01001589 ret = -ENXIO;
1590 bdev->bd_part = disk_get_part(disk, partno);
1591 if (!bdev->bd_part)
1592 goto out_clear;
1593
Tejun Heo1196f8b2011-04-21 20:54:45 +02001594 ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 if (disk->fops->open) {
Al Viro572c4892007-10-08 13:24:05 -04001596 ret = disk->fops->open(bdev, mode);
NeilBrownd3374822009-01-09 08:31:10 +11001597 if (ret == -ERESTARTSYS) {
1598 /* Lost a race with 'disk' being
1599 * deleted, try again.
1600 * See md.c
1601 */
1602 disk_put_part(bdev->bd_part);
1603 bdev->bd_part = NULL;
NeilBrownd3374822009-01-09 08:31:10 +11001604 bdev->bd_disk = NULL;
Andi Kleen87192a22012-01-12 17:20:34 -08001605 bdev->bd_queue = NULL;
NeilBrownd3374822009-01-09 08:31:10 +11001606 mutex_unlock(&bdev->bd_mutex);
Tejun Heo69e02c52011-03-09 19:54:27 +01001607 disk_unblock_events(disk);
Jan Kara9df6c292018-02-26 13:01:39 +01001608 put_disk_and_module(disk);
NeilBrownd3374822009-01-09 08:31:10 +11001609 goto restart;
1610 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 }
Tejun Heo7e697232011-05-23 13:26:07 +02001612
Jan Kara04906b22019-01-14 09:48:10 +01001613 if (!ret) {
Tejun Heo7e697232011-05-23 13:26:07 +02001614 bd_set_size(bdev,(loff_t)get_capacity(disk)<<9);
Jan Kara04906b22019-01-14 09:48:10 +01001615 set_init_blocksize(bdev);
1616 }
Tejun Heo7e697232011-05-23 13:26:07 +02001617
Tejun Heo1196f8b2011-04-21 20:54:45 +02001618 /*
1619 * If the device is invalidated, rescan partition
1620 * if open succeeded or failed with -ENOMEDIUM.
1621 * The latter is necessary to prevent ghost
1622 * partitions on a removed medium.
1623 */
Jan Kara731dc482019-10-21 10:37:59 +02001624 if (bdev->bd_invalidated &&
1625 (!ret || ret == -ENOMEDIUM))
1626 bdev_disk_changed(bdev, ret == -ENOMEDIUM);
Dan Williams5a023cd2015-11-30 10:20:29 -08001627
Tejun Heo1196f8b2011-04-21 20:54:45 +02001628 if (ret)
1629 goto out_clear;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 struct block_device *whole;
1632 whole = bdget_disk(disk, 0);
1633 ret = -ENOMEM;
1634 if (!whole)
Tejun Heo0762b8b2008-08-25 19:56:12 +09001635 goto out_clear;
NeilBrown37be4122006-12-08 02:36:16 -08001636 BUG_ON(for_part);
Al Viro572c4892007-10-08 13:24:05 -04001637 ret = __blkdev_get(whole, mode, 1);
Jason Yan2d3a8e22020-06-16 20:16:55 +08001638 if (ret) {
1639 bdput(whole);
Tejun Heo0762b8b2008-08-25 19:56:12 +09001640 goto out_clear;
Jason Yan2d3a8e22020-06-16 20:16:55 +08001641 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 bdev->bd_contains = whole;
Tejun Heo89f97492008-11-05 10:21:06 +01001643 bdev->bd_part = disk_get_part(disk, partno);
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001644 if (!(disk->flags & GENHD_FL_UP) ||
Tejun Heo89f97492008-11-05 10:21:06 +01001645 !bdev->bd_part || !bdev->bd_part->nr_sects) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646 ret = -ENXIO;
Tejun Heo0762b8b2008-08-25 19:56:12 +09001647 goto out_clear;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 }
Tejun Heo89f97492008-11-05 10:21:06 +01001649 bd_set_size(bdev, (loff_t)bdev->bd_part->nr_sects << 9);
Jan Kara04906b22019-01-14 09:48:10 +01001650 set_init_blocksize(bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 }
Jan Kara03e26272017-03-23 01:36:53 +01001652
1653 if (bdev->bd_bdi == &noop_backing_dev_info)
1654 bdev->bd_bdi = bdi_get(disk->queue->backing_dev_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 if (bdev->bd_contains == bdev) {
Tejun Heo1196f8b2011-04-21 20:54:45 +02001657 ret = 0;
1658 if (bdev->bd_disk->fops->open)
Al Viro572c4892007-10-08 13:24:05 -04001659 ret = bdev->bd_disk->fops->open(bdev, mode);
Tejun Heo1196f8b2011-04-21 20:54:45 +02001660 /* the same as first opener case, read comment there */
Jan Kara731dc482019-10-21 10:37:59 +02001661 if (bdev->bd_invalidated &&
1662 (!ret || ret == -ENOMEDIUM))
1663 bdev_disk_changed(bdev, ret == -ENOMEDIUM);
Tejun Heo1196f8b2011-04-21 20:54:45 +02001664 if (ret)
1665 goto out_unlock_bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 }
1667 }
1668 bdev->bd_openers++;
NeilBrown37be4122006-12-08 02:36:16 -08001669 if (for_part)
1670 bdev->bd_part_count++;
Arjan van de Venc039e312006-03-23 03:00:28 -08001671 mutex_unlock(&bdev->bd_mutex);
Tejun Heo69e02c52011-03-09 19:54:27 +01001672 disk_unblock_events(disk);
Jan Kara89736652018-02-26 13:01:40 +01001673 /* only one opener holds refs to the module and disk */
1674 if (!first_open)
1675 put_disk_and_module(disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 return 0;
1677
Tejun Heo0762b8b2008-08-25 19:56:12 +09001678 out_clear:
Tejun Heo89f97492008-11-05 10:21:06 +01001679 disk_put_part(bdev->bd_part);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 bdev->bd_disk = NULL;
Tejun Heo0762b8b2008-08-25 19:56:12 +09001681 bdev->bd_part = NULL;
Andi Kleen87192a22012-01-12 17:20:34 -08001682 bdev->bd_queue = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 if (bdev != bdev->bd_contains)
Al Viro572c4892007-10-08 13:24:05 -04001684 __blkdev_put(bdev->bd_contains, mode, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 bdev->bd_contains = NULL;
Tejun Heo0762b8b2008-08-25 19:56:12 +09001686 out_unlock_bdev:
Arjan van de Venc039e312006-03-23 03:00:28 -08001687 mutex_unlock(&bdev->bd_mutex);
Tejun Heo69e02c52011-03-09 19:54:27 +01001688 disk_unblock_events(disk);
Jan Kara9df6c292018-02-26 13:01:39 +01001689 put_disk_and_module(disk);
Dan Carpenter4345cab2011-03-19 13:53:31 +01001690 out:
Tejun Heo0762b8b2008-08-25 19:56:12 +09001691
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 return ret;
1693}
1694
Tejun Heod4d77622010-11-13 11:55:18 +01001695/**
1696 * blkdev_get - open a block device
1697 * @bdev: block_device to open
1698 * @mode: FMODE_* mask
1699 * @holder: exclusive holder identifier
1700 *
1701 * Open @bdev with @mode. If @mode includes %FMODE_EXCL, @bdev is
1702 * open with exclusive access. Specifying %FMODE_EXCL with %NULL
1703 * @holder is invalid. Exclusive opens may nest for the same @holder.
1704 *
1705 * On success, the reference count of @bdev is unchanged. On failure,
1706 * @bdev is put.
1707 *
1708 * CONTEXT:
1709 * Might sleep.
1710 *
1711 * RETURNS:
1712 * 0 on success, -errno on failure.
1713 */
Tejun Heoe525fd82010-11-13 11:55:17 +01001714int blkdev_get(struct block_device *bdev, fmode_t mode, void *holder)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715{
Tejun Heoe525fd82010-11-13 11:55:17 +01001716 struct block_device *whole = NULL;
1717 int res;
1718
1719 WARN_ON_ONCE((mode & FMODE_EXCL) && !holder);
1720
1721 if ((mode & FMODE_EXCL) && holder) {
1722 whole = bd_start_claiming(bdev, holder);
1723 if (IS_ERR(whole)) {
1724 bdput(bdev);
1725 return PTR_ERR(whole);
1726 }
1727 }
1728
1729 res = __blkdev_get(bdev, mode, 0);
1730
1731 if (whole) {
Tejun Heod4dc2102011-04-21 20:54:46 +02001732 struct gendisk *disk = whole->bd_disk;
1733
Tejun Heo6a027ef2010-11-13 11:55:17 +01001734 /* finish claiming */
Tejun Heo77ea8872010-12-08 20:57:37 +01001735 mutex_lock(&bdev->bd_mutex);
Jan Karae91455b2019-08-07 11:36:47 +02001736 if (!res)
1737 bd_finish_claiming(bdev, whole, holder);
1738 else
1739 bd_abort_claiming(bdev, whole, holder);
Tejun Heo77ea8872010-12-08 20:57:37 +01001740 /*
Tejun Heod4dc2102011-04-21 20:54:46 +02001741 * Block event polling for write claims if requested. Any
1742 * write holder makes the write_holder state stick until
1743 * all are released. This is good enough and tracking
1744 * individual writeable reference is too fragile given the
1745 * way @mode is used in blkdev_get/put().
Tejun Heo77ea8872010-12-08 20:57:37 +01001746 */
Tejun Heo4c49ff32011-06-01 08:27:41 +02001747 if (!res && (mode & FMODE_WRITE) && !bdev->bd_write_holder &&
1748 (disk->flags & GENHD_FL_BLOCK_EVENTS_ON_EXCL_WRITE)) {
Tejun Heo77ea8872010-12-08 20:57:37 +01001749 bdev->bd_write_holder = true;
Tejun Heod4dc2102011-04-21 20:54:46 +02001750 disk_block_events(disk);
Tejun Heo77ea8872010-12-08 20:57:37 +01001751 }
1752
1753 mutex_unlock(&bdev->bd_mutex);
Tejun Heo6a027ef2010-11-13 11:55:17 +01001754 bdput(whole);
Tejun Heoe525fd82010-11-13 11:55:17 +01001755 }
1756
Jason Yan2d3a8e22020-06-16 20:16:55 +08001757 if (res)
1758 bdput(bdev);
1759
Tejun Heoe525fd82010-11-13 11:55:17 +01001760 return res;
NeilBrown37be4122006-12-08 02:36:16 -08001761}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762EXPORT_SYMBOL(blkdev_get);
1763
Tejun Heod4d77622010-11-13 11:55:18 +01001764/**
1765 * blkdev_get_by_path - open a block device by name
1766 * @path: path to the block device to open
1767 * @mode: FMODE_* mask
1768 * @holder: exclusive holder identifier
1769 *
1770 * Open the blockdevice described by the device file at @path. @mode
1771 * and @holder are identical to blkdev_get().
1772 *
1773 * On success, the returned block_device has reference count of one.
1774 *
1775 * CONTEXT:
1776 * Might sleep.
1777 *
1778 * RETURNS:
1779 * Pointer to block_device on success, ERR_PTR(-errno) on failure.
1780 */
1781struct block_device *blkdev_get_by_path(const char *path, fmode_t mode,
1782 void *holder)
1783{
1784 struct block_device *bdev;
1785 int err;
1786
1787 bdev = lookup_bdev(path);
1788 if (IS_ERR(bdev))
1789 return bdev;
1790
1791 err = blkdev_get(bdev, mode, holder);
1792 if (err)
1793 return ERR_PTR(err);
1794
Chuck Ebberte51900f2011-02-16 18:11:53 -05001795 if ((mode & FMODE_WRITE) && bdev_read_only(bdev)) {
1796 blkdev_put(bdev, mode);
1797 return ERR_PTR(-EACCES);
1798 }
1799
Tejun Heod4d77622010-11-13 11:55:18 +01001800 return bdev;
1801}
1802EXPORT_SYMBOL(blkdev_get_by_path);
1803
1804/**
1805 * blkdev_get_by_dev - open a block device by device number
1806 * @dev: device number of block device to open
1807 * @mode: FMODE_* mask
1808 * @holder: exclusive holder identifier
1809 *
1810 * Open the blockdevice described by device number @dev. @mode and
1811 * @holder are identical to blkdev_get().
1812 *
1813 * Use it ONLY if you really do not have anything better - i.e. when
1814 * you are behind a truly sucky interface and all you are given is a
1815 * device number. _Never_ to be used for internal purposes. If you
1816 * ever need it - reconsider your API.
1817 *
1818 * On success, the returned block_device has reference count of one.
1819 *
1820 * CONTEXT:
1821 * Might sleep.
1822 *
1823 * RETURNS:
1824 * Pointer to block_device on success, ERR_PTR(-errno) on failure.
1825 */
1826struct block_device *blkdev_get_by_dev(dev_t dev, fmode_t mode, void *holder)
1827{
1828 struct block_device *bdev;
1829 int err;
1830
1831 bdev = bdget(dev);
1832 if (!bdev)
1833 return ERR_PTR(-ENOMEM);
1834
1835 err = blkdev_get(bdev, mode, holder);
1836 if (err)
1837 return ERR_PTR(err);
1838
1839 return bdev;
1840}
1841EXPORT_SYMBOL(blkdev_get_by_dev);
1842
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843static int blkdev_open(struct inode * inode, struct file * filp)
1844{
1845 struct block_device *bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846
1847 /*
1848 * Preserve backwards compatibility and allow large file access
1849 * even if userspace doesn't ask for it explicitly. Some mkfs
1850 * binary needs it. We might want to drop this workaround
1851 * during an unstable branch.
1852 */
1853 filp->f_flags |= O_LARGEFILE;
1854
Christoph Hellwigc35fc7a2017-08-29 16:13:21 +02001855 filp->f_mode |= FMODE_NOWAIT;
1856
Al Viro572c4892007-10-08 13:24:05 -04001857 if (filp->f_flags & O_NDELAY)
1858 filp->f_mode |= FMODE_NDELAY;
1859 if (filp->f_flags & O_EXCL)
1860 filp->f_mode |= FMODE_EXCL;
1861 if ((filp->f_flags & O_ACCMODE) == 3)
1862 filp->f_mode |= FMODE_WRITE_IOCTL;
1863
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 bdev = bd_acquire(inode);
Pavel Emelianov6a2aae02006-10-28 10:38:33 -07001865 if (bdev == NULL)
1866 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867
Al Viro572c4892007-10-08 13:24:05 -04001868 filp->f_mapping = bdev->bd_inode->i_mapping;
Jeff Layton5660e132017-07-06 07:02:25 -04001869 filp->f_wb_err = filemap_sample_wb_err(filp->f_mapping);
Al Viro572c4892007-10-08 13:24:05 -04001870
Tejun Heoe525fd82010-11-13 11:55:17 +01001871 return blkdev_get(bdev, filp->f_mode, filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872}
1873
Al Viro4385bab2013-05-05 22:11:03 -04001874static void __blkdev_put(struct block_device *bdev, fmode_t mode, int for_part)
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001875{
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001876 struct gendisk *disk = bdev->bd_disk;
NeilBrown37be4122006-12-08 02:36:16 -08001877 struct block_device *victim = NULL;
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001878
Douglas Andersonb849dd82020-03-24 14:48:27 -07001879 /*
1880 * Sync early if it looks like we're the last one. If someone else
1881 * opens the block device between now and the decrement of bd_openers
1882 * then we did a sync that we didn't need to, but that's not the end
1883 * of the world and we want to avoid long (could be several minute)
1884 * syncs while holding the mutex.
1885 */
1886 if (bdev->bd_openers == 1)
1887 sync_blockdev(bdev);
1888
NeilBrown6796bf52006-12-08 02:36:16 -08001889 mutex_lock_nested(&bdev->bd_mutex, for_part);
NeilBrown37be4122006-12-08 02:36:16 -08001890 if (for_part)
1891 bdev->bd_part_count--;
1892
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001893 if (!--bdev->bd_openers) {
Tejun Heo6a027ef2010-11-13 11:55:17 +01001894 WARN_ON_ONCE(bdev->bd_holders);
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001895 sync_blockdev(bdev);
1896 kill_bdev(bdev);
Ilya Dryomov43d1c0e2015-11-20 22:22:34 +01001897
Vivek Goyaldbd3ca52015-11-09 09:23:40 -07001898 bdev_write_inode(bdev);
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001899 }
1900 if (bdev->bd_contains == bdev) {
1901 if (disk->fops->release)
Al Virodb2a1442013-05-05 21:52:57 -04001902 disk->fops->release(disk, mode);
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001903 }
1904 if (!bdev->bd_openers) {
Tejun Heo0762b8b2008-08-25 19:56:12 +09001905 disk_put_part(bdev->bd_part);
1906 bdev->bd_part = NULL;
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001907 bdev->bd_disk = NULL;
NeilBrown37be4122006-12-08 02:36:16 -08001908 if (bdev != bdev->bd_contains)
1909 victim = bdev->bd_contains;
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001910 bdev->bd_contains = NULL;
Tejun Heo523e1d32011-10-19 14:31:07 +02001911
Jan Kara9df6c292018-02-26 13:01:39 +01001912 put_disk_and_module(disk);
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001913 }
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001914 mutex_unlock(&bdev->bd_mutex);
1915 bdput(bdev);
NeilBrown37be4122006-12-08 02:36:16 -08001916 if (victim)
Al Viro9a1c3542008-02-22 20:40:24 -05001917 __blkdev_put(victim, mode, 1);
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001918}
1919
Al Viro4385bab2013-05-05 22:11:03 -04001920void blkdev_put(struct block_device *bdev, fmode_t mode)
NeilBrown37be4122006-12-08 02:36:16 -08001921{
Tejun Heo85ef06d2011-07-01 16:17:47 +02001922 mutex_lock(&bdev->bd_mutex);
1923
Tejun Heoe525fd82010-11-13 11:55:17 +01001924 if (mode & FMODE_EXCL) {
Tejun Heo6a027ef2010-11-13 11:55:17 +01001925 bool bdev_free;
1926
1927 /*
1928 * Release a claim on the device. The holder fields
1929 * are protected with bdev_lock. bd_mutex is to
1930 * synchronize disk_holder unlinking.
1931 */
Tejun Heo6a027ef2010-11-13 11:55:17 +01001932 spin_lock(&bdev_lock);
1933
1934 WARN_ON_ONCE(--bdev->bd_holders < 0);
1935 WARN_ON_ONCE(--bdev->bd_contains->bd_holders < 0);
1936
1937 /* bd_contains might point to self, check in a separate step */
1938 if ((bdev_free = !bdev->bd_holders))
1939 bdev->bd_holder = NULL;
1940 if (!bdev->bd_contains->bd_holders)
1941 bdev->bd_contains->bd_holder = NULL;
1942
1943 spin_unlock(&bdev_lock);
1944
Tejun Heo77ea8872010-12-08 20:57:37 +01001945 /*
1946 * If this was the last claim, remove holder link and
1947 * unblock evpoll if it was a write holder.
1948 */
Tejun Heo85ef06d2011-07-01 16:17:47 +02001949 if (bdev_free && bdev->bd_write_holder) {
1950 disk_unblock_events(bdev->bd_disk);
1951 bdev->bd_write_holder = false;
Tejun Heo77ea8872010-12-08 20:57:37 +01001952 }
Tejun Heo69362172011-03-09 19:54:27 +01001953 }
Tejun Heo77ea8872010-12-08 20:57:37 +01001954
Tejun Heo85ef06d2011-07-01 16:17:47 +02001955 /*
1956 * Trigger event checking and tell drivers to flush MEDIA_CHANGE
1957 * event. This is to ensure detection of media removal commanded
1958 * from userland - e.g. eject(1).
1959 */
1960 disk_flush_events(bdev->bd_disk, DISK_EVENT_MEDIA_CHANGE);
1961
1962 mutex_unlock(&bdev->bd_mutex);
1963
Al Viro4385bab2013-05-05 22:11:03 -04001964 __blkdev_put(bdev, mode, 0);
NeilBrown37be4122006-12-08 02:36:16 -08001965}
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001966EXPORT_SYMBOL(blkdev_put);
1967
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968static int blkdev_close(struct inode * inode, struct file * filp)
1969{
Dan Williams4ebb16c2015-10-28 07:48:19 +09001970 struct block_device *bdev = I_BDEV(bdev_file_inode(filp));
Al Viro4385bab2013-05-05 22:11:03 -04001971 blkdev_put(bdev, filp->f_mode);
1972 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973}
1974
Arnd Bergmannbb93e3a2005-06-23 00:10:15 -07001975static long block_ioctl(struct file *file, unsigned cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976{
Dan Williams4ebb16c2015-10-28 07:48:19 +09001977 struct block_device *bdev = I_BDEV(bdev_file_inode(file));
Al Viro56b26ad2008-09-19 03:17:36 -04001978 fmode_t mode = file->f_mode;
Christoph Hellwigfd4ce1a2008-11-05 14:58:42 +01001979
1980 /*
1981 * O_NDELAY can be altered using fcntl(.., F_SETFL, ..), so we have
1982 * to updated it before every ioctl.
1983 */
Al Viro56b26ad2008-09-19 03:17:36 -04001984 if (file->f_flags & O_NDELAY)
Christoph Hellwigfd4ce1a2008-11-05 14:58:42 +01001985 mode |= FMODE_NDELAY;
1986 else
1987 mode &= ~FMODE_NDELAY;
1988
Al Viro56b26ad2008-09-19 03:17:36 -04001989 return blkdev_ioctl(bdev, mode, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990}
1991
Theodore Ts'o87d8fe12009-01-03 09:47:09 -05001992/*
Christoph Hellwigeef99382009-08-20 17:43:41 +02001993 * Write data to the block device. Only intended for the block device itself
1994 * and the raw driver which basically is a fake block device.
1995 *
1996 * Does not take i_mutex for the write and thus is not for general purpose
1997 * use.
1998 */
Al Viro1456c0a2014-04-03 03:21:50 -04001999ssize_t blkdev_write_iter(struct kiocb *iocb, struct iov_iter *from)
Christoph Hellwigeef99382009-08-20 17:43:41 +02002000{
2001 struct file *file = iocb->ki_filp;
Dan Williams4ebb16c2015-10-28 07:48:19 +09002002 struct inode *bd_inode = bdev_file_inode(file);
Al Viro7ec7b942015-04-07 11:35:14 -04002003 loff_t size = i_size_read(bd_inode);
Jianpeng Ma53362a02012-08-02 09:50:39 +02002004 struct blk_plug plug;
Christoph Hellwigeef99382009-08-20 17:43:41 +02002005 ssize_t ret;
Al Viro5f380c72015-04-07 11:28:12 -04002006
Al Viro7ec7b942015-04-07 11:35:14 -04002007 if (bdev_read_only(I_BDEV(bd_inode)))
2008 return -EPERM;
Al Viro5f380c72015-04-07 11:28:12 -04002009
Domenico Andreoliad1e4f72020-05-19 20:14:10 +02002010 if (IS_SWAPFILE(bd_inode) && !is_hibernate_resume_dev(bd_inode))
Darrick J. Wongdc617f22019-08-20 07:55:16 -07002011 return -ETXTBSY;
2012
Al Viro7ec7b942015-04-07 11:35:14 -04002013 if (!iov_iter_count(from))
Al Viro5f380c72015-04-07 11:28:12 -04002014 return 0;
2015
Al Viro7ec7b942015-04-07 11:35:14 -04002016 if (iocb->ki_pos >= size)
2017 return -ENOSPC;
2018
Christoph Hellwigc35fc7a2017-08-29 16:13:21 +02002019 if ((iocb->ki_flags & (IOCB_NOWAIT | IOCB_DIRECT)) == IOCB_NOWAIT)
2020 return -EOPNOTSUPP;
2021
Al Viro7ec7b942015-04-07 11:35:14 -04002022 iov_iter_truncate(from, size - iocb->ki_pos);
Christoph Hellwigeef99382009-08-20 17:43:41 +02002023
Jianpeng Ma53362a02012-08-02 09:50:39 +02002024 blk_start_plug(&plug);
Al Viro1456c0a2014-04-03 03:21:50 -04002025 ret = __generic_file_write_iter(iocb, from);
Christoph Hellwige2592212016-04-07 08:52:01 -07002026 if (ret > 0)
2027 ret = generic_write_sync(iocb, ret);
Jianpeng Ma53362a02012-08-02 09:50:39 +02002028 blk_finish_plug(&plug);
Christoph Hellwigeef99382009-08-20 17:43:41 +02002029 return ret;
2030}
Al Viro1456c0a2014-04-03 03:21:50 -04002031EXPORT_SYMBOL_GPL(blkdev_write_iter);
Christoph Hellwigeef99382009-08-20 17:43:41 +02002032
David Jefferyb2de5252014-09-29 10:21:10 -04002033ssize_t blkdev_read_iter(struct kiocb *iocb, struct iov_iter *to)
Linus Torvalds684c9aa2012-12-07 16:48:39 -08002034{
2035 struct file *file = iocb->ki_filp;
Dan Williams4ebb16c2015-10-28 07:48:19 +09002036 struct inode *bd_inode = bdev_file_inode(file);
Linus Torvalds684c9aa2012-12-07 16:48:39 -08002037 loff_t size = i_size_read(bd_inode);
Al Viroa8860382014-04-02 20:02:21 -04002038 loff_t pos = iocb->ki_pos;
Linus Torvalds684c9aa2012-12-07 16:48:39 -08002039
2040 if (pos >= size)
2041 return 0;
2042
2043 size -= pos;
Al Viroa8860382014-04-02 20:02:21 -04002044 iov_iter_truncate(to, size);
2045 return generic_file_read_iter(iocb, to);
Linus Torvalds684c9aa2012-12-07 16:48:39 -08002046}
David Jefferyb2de5252014-09-29 10:21:10 -04002047EXPORT_SYMBOL_GPL(blkdev_read_iter);
Linus Torvalds684c9aa2012-12-07 16:48:39 -08002048
Christoph Hellwigeef99382009-08-20 17:43:41 +02002049/*
Theodore Ts'o87d8fe12009-01-03 09:47:09 -05002050 * Try to release a page associated with block device when the system
2051 * is under memory pressure.
2052 */
2053static int blkdev_releasepage(struct page *page, gfp_t wait)
2054{
2055 struct super_block *super = BDEV_I(page->mapping->host)->bdev.bd_super;
2056
2057 if (super && super->s_op->bdev_try_to_free_page)
2058 return super->s_op->bdev_try_to_free_page(super, page, wait);
2059
2060 return try_to_free_buffers(page);
2061}
2062
Ross Zwisler7f6d5b52016-02-26 15:19:55 -08002063static int blkdev_writepages(struct address_space *mapping,
2064 struct writeback_control *wbc)
2065{
Ross Zwisler7f6d5b52016-02-26 15:19:55 -08002066 return generic_writepages(mapping, wbc);
2067}
2068
Adrian Bunk4c54ac62008-02-18 13:48:31 +01002069static const struct address_space_operations def_blk_aops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070 .readpage = blkdev_readpage,
Matthew Wilcox (Oracle)d4388342020-06-01 21:47:02 -07002071 .readahead = blkdev_readahead,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072 .writepage = blkdev_writepage,
Nick Piggin6272b5a2007-10-16 01:25:04 -07002073 .write_begin = blkdev_write_begin,
2074 .write_end = blkdev_write_end,
Ross Zwisler7f6d5b52016-02-26 15:19:55 -08002075 .writepages = blkdev_writepages,
Theodore Ts'o87d8fe12009-01-03 09:47:09 -05002076 .releasepage = blkdev_releasepage,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 .direct_IO = blkdev_direct_IO,
Jan Kara88dbcbb2018-12-28 00:39:16 -08002078 .migratepage = buffer_migrate_page_norefs,
Mel Gormanb4597222013-07-03 15:02:05 -07002079 .is_dirty_writeback = buffer_check_dirty_writeback,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080};
2081
Darrick J. Wong25f4c412016-10-11 13:51:11 -07002082#define BLKDEV_FALLOC_FL_SUPPORTED \
2083 (FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE | \
2084 FALLOC_FL_ZERO_RANGE | FALLOC_FL_NO_HIDE_STALE)
2085
2086static long blkdev_fallocate(struct file *file, int mode, loff_t start,
2087 loff_t len)
2088{
2089 struct block_device *bdev = I_BDEV(bdev_file_inode(file));
Darrick J. Wong25f4c412016-10-11 13:51:11 -07002090 struct address_space *mapping;
2091 loff_t end = start + len - 1;
2092 loff_t isize;
2093 int error;
2094
2095 /* Fail if we don't recognize the flags. */
2096 if (mode & ~BLKDEV_FALLOC_FL_SUPPORTED)
2097 return -EOPNOTSUPP;
2098
2099 /* Don't go off the end of the device. */
2100 isize = i_size_read(bdev->bd_inode);
2101 if (start >= isize)
2102 return -EINVAL;
2103 if (end >= isize) {
2104 if (mode & FALLOC_FL_KEEP_SIZE) {
2105 len = isize - start;
2106 end = start + len - 1;
2107 } else
2108 return -EINVAL;
2109 }
2110
2111 /*
2112 * Don't allow IO that isn't aligned to logical block size.
2113 */
2114 if ((start | len) & (bdev_logical_block_size(bdev) - 1))
2115 return -EINVAL;
2116
2117 /* Invalidate the page cache, including dirty pages. */
2118 mapping = bdev->bd_inode->i_mapping;
2119 truncate_inode_pages_range(mapping, start, end);
2120
2121 switch (mode) {
2122 case FALLOC_FL_ZERO_RANGE:
2123 case FALLOC_FL_ZERO_RANGE | FALLOC_FL_KEEP_SIZE:
2124 error = blkdev_issue_zeroout(bdev, start >> 9, len >> 9,
Christoph Hellwigee472d82017-04-05 19:21:08 +02002125 GFP_KERNEL, BLKDEV_ZERO_NOUNMAP);
Darrick J. Wong25f4c412016-10-11 13:51:11 -07002126 break;
2127 case FALLOC_FL_PUNCH_HOLE | FALLOC_FL_KEEP_SIZE:
Christoph Hellwig34045122017-04-05 19:21:11 +02002128 error = blkdev_issue_zeroout(bdev, start >> 9, len >> 9,
2129 GFP_KERNEL, BLKDEV_ZERO_NOFALLBACK);
Darrick J. Wong25f4c412016-10-11 13:51:11 -07002130 break;
2131 case FALLOC_FL_PUNCH_HOLE | FALLOC_FL_KEEP_SIZE | FALLOC_FL_NO_HIDE_STALE:
Darrick J. Wong25f4c412016-10-11 13:51:11 -07002132 error = blkdev_issue_discard(bdev, start >> 9, len >> 9,
2133 GFP_KERNEL, 0);
2134 break;
2135 default:
2136 return -EOPNOTSUPP;
2137 }
2138 if (error)
2139 return error;
2140
2141 /*
2142 * Invalidate again; if someone wandered in and dirtied a page,
2143 * the caller will be given -EBUSY. The third argument is
2144 * inclusive, so the rounding here is safe.
2145 */
2146 return invalidate_inode_pages2_range(mapping,
2147 start >> PAGE_SHIFT,
2148 end >> PAGE_SHIFT);
2149}
2150
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08002151const struct file_operations def_blk_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152 .open = blkdev_open,
2153 .release = blkdev_close,
2154 .llseek = block_llseek,
Al Viroa8860382014-04-02 20:02:21 -04002155 .read_iter = blkdev_read_iter,
Al Viro1456c0a2014-04-03 03:21:50 -04002156 .write_iter = blkdev_write_iter,
Christoph Hellwigeae83ce2018-11-30 08:31:52 -07002157 .iopoll = blkdev_iopoll,
Dan Williamsacc93d32016-05-07 11:40:28 -07002158 .mmap = generic_file_mmap,
Andrew Mortonb1dd3b22010-04-06 14:35:00 -07002159 .fsync = blkdev_fsync,
Arnd Bergmannbb93e3a2005-06-23 00:10:15 -07002160 .unlocked_ioctl = block_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161#ifdef CONFIG_COMPAT
2162 .compat_ioctl = compat_blkdev_ioctl,
2163#endif
Linus Torvalds1e8b3332012-11-29 10:49:50 -08002164 .splice_read = generic_file_splice_read,
Al Viro8d020762014-04-05 04:27:08 -04002165 .splice_write = iter_file_splice_write,
Darrick J. Wong25f4c412016-10-11 13:51:11 -07002166 .fallocate = blkdev_fallocate,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167};
2168
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169/**
2170 * lookup_bdev - lookup a struct block_device by name
Randy Dunlap94e29592009-01-06 14:41:15 -08002171 * @pathname: special file representing the block device
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172 *
Randy Dunlap57d1b532008-10-09 10:42:38 +02002173 * Get a reference to the blockdevice at @pathname in the current
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174 * namespace if possible and return it. Return ERR_PTR(error)
2175 * otherwise.
2176 */
Al Viro421748e2008-08-02 01:04:36 -04002177struct block_device *lookup_bdev(const char *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178{
2179 struct block_device *bdev;
2180 struct inode *inode;
Al Viro421748e2008-08-02 01:04:36 -04002181 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182 int error;
2183
Al Viro421748e2008-08-02 01:04:36 -04002184 if (!pathname || !*pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185 return ERR_PTR(-EINVAL);
2186
Al Viro421748e2008-08-02 01:04:36 -04002187 error = kern_path(pathname, LOOKUP_FOLLOW, &path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188 if (error)
2189 return ERR_PTR(error);
2190
David Howellsbb6687342015-03-17 22:26:21 +00002191 inode = d_backing_inode(path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192 error = -ENOTBLK;
2193 if (!S_ISBLK(inode->i_mode))
2194 goto fail;
2195 error = -EACCES;
Eric W. Biedermana2982cc2016-06-09 15:34:02 -05002196 if (!may_open_dev(&path))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197 goto fail;
2198 error = -ENOMEM;
2199 bdev = bd_acquire(inode);
2200 if (!bdev)
2201 goto fail;
2202out:
Al Viro421748e2008-08-02 01:04:36 -04002203 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204 return bdev;
2205fail:
2206 bdev = ERR_PTR(error);
2207 goto out;
2208}
Al Virod5686b42008-08-01 05:00:11 -04002209EXPORT_SYMBOL(lookup_bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210
NeilBrown93b270f2011-02-24 17:25:47 +11002211int __invalidate_device(struct block_device *bdev, bool kill_dirty)
David Howellsb71e8a42006-08-29 19:06:11 +01002212{
2213 struct super_block *sb = get_super(bdev);
2214 int res = 0;
2215
2216 if (sb) {
2217 /*
2218 * no need to lock the super, get_super holds the
2219 * read mutex so the filesystem cannot go away
2220 * under us (->put_super runs with the write lock
2221 * hold).
2222 */
2223 shrink_dcache_sb(sb);
NeilBrown93b270f2011-02-24 17:25:47 +11002224 res = invalidate_inodes(sb, kill_dirty);
David Howellsb71e8a42006-08-29 19:06:11 +01002225 drop_super(sb);
2226 }
Peter Zijlstraf98393a2007-05-06 14:49:54 -07002227 invalidate_bdev(bdev);
David Howellsb71e8a42006-08-29 19:06:11 +01002228 return res;
2229}
2230EXPORT_SYMBOL(__invalidate_device);
Jan Kara5c0d6b62012-07-03 16:45:31 +02002231
2232void iterate_bdevs(void (*func)(struct block_device *, void *), void *arg)
2233{
2234 struct inode *inode, *old_inode = NULL;
2235
Dave Chinner74278da2015-03-04 12:37:22 -05002236 spin_lock(&blockdev_superblock->s_inode_list_lock);
Jan Kara5c0d6b62012-07-03 16:45:31 +02002237 list_for_each_entry(inode, &blockdev_superblock->s_inodes, i_sb_list) {
2238 struct address_space *mapping = inode->i_mapping;
Rabin Vincentaf309222016-12-01 09:18:28 +01002239 struct block_device *bdev;
Jan Kara5c0d6b62012-07-03 16:45:31 +02002240
2241 spin_lock(&inode->i_lock);
2242 if (inode->i_state & (I_FREEING|I_WILL_FREE|I_NEW) ||
2243 mapping->nrpages == 0) {
2244 spin_unlock(&inode->i_lock);
2245 continue;
2246 }
2247 __iget(inode);
2248 spin_unlock(&inode->i_lock);
Dave Chinner74278da2015-03-04 12:37:22 -05002249 spin_unlock(&blockdev_superblock->s_inode_list_lock);
Jan Kara5c0d6b62012-07-03 16:45:31 +02002250 /*
2251 * We hold a reference to 'inode' so it couldn't have been
2252 * removed from s_inodes list while we dropped the
Dave Chinner74278da2015-03-04 12:37:22 -05002253 * s_inode_list_lock We cannot iput the inode now as we can
Jan Kara5c0d6b62012-07-03 16:45:31 +02002254 * be holding the last reference and we cannot iput it under
Dave Chinner74278da2015-03-04 12:37:22 -05002255 * s_inode_list_lock. So we keep the reference and iput it
Jan Kara5c0d6b62012-07-03 16:45:31 +02002256 * later.
2257 */
2258 iput(old_inode);
2259 old_inode = inode;
Rabin Vincentaf309222016-12-01 09:18:28 +01002260 bdev = I_BDEV(inode);
Jan Kara5c0d6b62012-07-03 16:45:31 +02002261
Rabin Vincentaf309222016-12-01 09:18:28 +01002262 mutex_lock(&bdev->bd_mutex);
2263 if (bdev->bd_openers)
2264 func(bdev, arg);
2265 mutex_unlock(&bdev->bd_mutex);
Jan Kara5c0d6b62012-07-03 16:45:31 +02002266
Dave Chinner74278da2015-03-04 12:37:22 -05002267 spin_lock(&blockdev_superblock->s_inode_list_lock);
Jan Kara5c0d6b62012-07-03 16:45:31 +02002268 }
Dave Chinner74278da2015-03-04 12:37:22 -05002269 spin_unlock(&blockdev_superblock->s_inode_list_lock);
Jan Kara5c0d6b62012-07-03 16:45:31 +02002270 iput(old_inode);
2271}