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