Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * linux/fs/block_dev.c |
| 3 | * |
| 4 | * Copyright (C) 1991, 1992 Linus Torvalds |
| 5 | * Copyright (C) 2001 Andrea Arcangeli <andrea@suse.de> SuSE |
| 6 | */ |
| 7 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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> |
Pavel Emelyanov | 7db9cfd | 2008-06-05 22:46:27 -0700 | [diff] [blame] | 14 | #include <linux/device_cgroup.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | #include <linux/highmem.h> |
| 16 | #include <linux/blkdev.h> |
| 17 | #include <linux/module.h> |
| 18 | #include <linux/blkpg.h> |
Muthu Kumar | b502bd1 | 2012-03-23 15:01:50 -0700 | [diff] [blame] | 19 | #include <linux/magic.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | #include <linux/buffer_head.h> |
Al Viro | ff01bb48 | 2011-09-16 02:31:11 -0400 | [diff] [blame] | 21 | #include <linux/swap.h> |
Nick Piggin | 585d3bc | 2009-02-25 10:44:19 +0100 | [diff] [blame] | 22 | #include <linux/pagevec.h> |
David Howells | 811d736 | 2006-08-29 19:06:09 +0100 | [diff] [blame] | 23 | #include <linux/writeback.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | #include <linux/mpage.h> |
| 25 | #include <linux/mount.h> |
| 26 | #include <linux/uio.h> |
| 27 | #include <linux/namei.h> |
Vignesh Babu BM | 1368c4f | 2007-05-08 00:24:32 -0700 | [diff] [blame] | 28 | #include <linux/log2.h> |
Al Viro | ff01bb48 | 2011-09-16 02:31:11 -0400 | [diff] [blame] | 29 | #include <linux/cleancache.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | #include <asm/uaccess.h> |
David Howells | 07f3f05 | 2006-09-30 20:52:18 +0200 | [diff] [blame] | 31 | #include "internal.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | |
| 33 | struct bdev_inode { |
| 34 | struct block_device bdev; |
| 35 | struct inode vfs_inode; |
| 36 | }; |
| 37 | |
Adrian Bunk | 4c54ac6 | 2008-02-18 13:48:31 +0100 | [diff] [blame] | 38 | static const struct address_space_operations def_blk_aops; |
| 39 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | static inline struct bdev_inode *BDEV_I(struct inode *inode) |
| 41 | { |
| 42 | return container_of(inode, struct bdev_inode, vfs_inode); |
| 43 | } |
| 44 | |
| 45 | inline struct block_device *I_BDEV(struct inode *inode) |
| 46 | { |
| 47 | return &BDEV_I(inode)->bdev; |
| 48 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | EXPORT_SYMBOL(I_BDEV); |
| 50 | |
Dave Chinner | a5491e0 | 2010-10-21 11:49:26 +1100 | [diff] [blame] | 51 | /* |
Christoph Hellwig | f758eea | 2011-04-21 18:19:44 -0600 | [diff] [blame] | 52 | * Move the inode from its current bdi to a new bdi. If the inode is dirty we |
| 53 | * need to move it onto the dirty list of @dst so that the inode is always on |
| 54 | * the right list. |
Dave Chinner | a5491e0 | 2010-10-21 11:49:26 +1100 | [diff] [blame] | 55 | */ |
| 56 | static void bdev_inode_switch_bdi(struct inode *inode, |
| 57 | struct backing_dev_info *dst) |
| 58 | { |
Christoph Hellwig | f758eea | 2011-04-21 18:19:44 -0600 | [diff] [blame] | 59 | struct backing_dev_info *old = inode->i_data.backing_dev_info; |
| 60 | |
| 61 | if (unlikely(dst == old)) /* deadlock avoidance */ |
| 62 | return; |
| 63 | bdi_lock_two(&old->wb, &dst->wb); |
Dave Chinner | 250df6e | 2011-03-22 22:23:36 +1100 | [diff] [blame] | 64 | spin_lock(&inode->i_lock); |
Dave Chinner | a5491e0 | 2010-10-21 11:49:26 +1100 | [diff] [blame] | 65 | inode->i_data.backing_dev_info = dst; |
| 66 | if (inode->i_state & I_DIRTY) |
Nick Piggin | 7ccf19a | 2010-10-21 11:49:30 +1100 | [diff] [blame] | 67 | list_move(&inode->i_wb_list, &dst->wb.b_dirty); |
Dave Chinner | 250df6e | 2011-03-22 22:23:36 +1100 | [diff] [blame] | 68 | spin_unlock(&inode->i_lock); |
Christoph Hellwig | f758eea | 2011-04-21 18:19:44 -0600 | [diff] [blame] | 69 | spin_unlock(&old->wb.list_lock); |
| 70 | spin_unlock(&dst->wb.list_lock); |
Dave Chinner | a5491e0 | 2010-10-21 11:49:26 +1100 | [diff] [blame] | 71 | } |
| 72 | |
Peter Zijlstra | f9a1439 | 2007-05-06 14:49:55 -0700 | [diff] [blame] | 73 | /* Kill _all_ buffers and pagecache , dirty or not.. */ |
Al Viro | ff01bb48 | 2011-09-16 02:31:11 -0400 | [diff] [blame] | 74 | void kill_bdev(struct block_device *bdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | { |
Al Viro | ff01bb48 | 2011-09-16 02:31:11 -0400 | [diff] [blame] | 76 | struct address_space *mapping = bdev->bd_inode->i_mapping; |
| 77 | |
| 78 | if (mapping->nrpages == 0) |
Peter Zijlstra | f9a1439 | 2007-05-06 14:49:55 -0700 | [diff] [blame] | 79 | return; |
Al Viro | ff01bb48 | 2011-09-16 02:31:11 -0400 | [diff] [blame] | 80 | |
Peter Zijlstra | f9a1439 | 2007-05-06 14:49:55 -0700 | [diff] [blame] | 81 | invalidate_bh_lrus(); |
Al Viro | ff01bb48 | 2011-09-16 02:31:11 -0400 | [diff] [blame] | 82 | truncate_inode_pages(mapping, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | } |
Al Viro | ff01bb48 | 2011-09-16 02:31:11 -0400 | [diff] [blame] | 84 | EXPORT_SYMBOL(kill_bdev); |
| 85 | |
| 86 | /* Invalidate clean unused buffers and pagecache. */ |
| 87 | void invalidate_bdev(struct block_device *bdev) |
| 88 | { |
| 89 | struct address_space *mapping = bdev->bd_inode->i_mapping; |
| 90 | |
| 91 | if (mapping->nrpages == 0) |
| 92 | return; |
| 93 | |
| 94 | invalidate_bh_lrus(); |
| 95 | lru_add_drain_all(); /* make sure all lru add caches are flushed */ |
| 96 | invalidate_mapping_pages(mapping, 0, -1); |
| 97 | /* 99% of the time, we don't need to flush the cleancache on the bdev. |
| 98 | * But, for the strange corners, lets be cautious |
| 99 | */ |
Dan Magenheimer | 3167760 | 2011-09-21 11:56:28 -0400 | [diff] [blame] | 100 | cleancache_invalidate_inode(mapping); |
Al Viro | ff01bb48 | 2011-09-16 02:31:11 -0400 | [diff] [blame] | 101 | } |
| 102 | EXPORT_SYMBOL(invalidate_bdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | |
| 104 | int set_blocksize(struct block_device *bdev, int size) |
| 105 | { |
| 106 | /* Size must be a power of two, and between 512 and PAGE_SIZE */ |
Vignesh Babu BM | 1368c4f | 2007-05-08 00:24:32 -0700 | [diff] [blame] | 107 | if (size > PAGE_SIZE || size < 512 || !is_power_of_2(size)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | return -EINVAL; |
| 109 | |
| 110 | /* Size cannot be smaller than the size supported by the device */ |
Martin K. Petersen | e1defc4 | 2009-05-22 17:17:49 -0400 | [diff] [blame] | 111 | if (size < bdev_logical_block_size(bdev)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | return -EINVAL; |
| 113 | |
| 114 | /* Don't change the size if it is same as current */ |
| 115 | if (bdev->bd_block_size != size) { |
| 116 | sync_blockdev(bdev); |
| 117 | bdev->bd_block_size = size; |
| 118 | bdev->bd_inode->i_blkbits = blksize_bits(size); |
| 119 | kill_bdev(bdev); |
| 120 | } |
| 121 | return 0; |
| 122 | } |
| 123 | |
| 124 | EXPORT_SYMBOL(set_blocksize); |
| 125 | |
| 126 | int sb_set_blocksize(struct super_block *sb, int size) |
| 127 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | if (set_blocksize(sb->s_bdev, size)) |
| 129 | return 0; |
| 130 | /* If we get here, we know size is power of two |
| 131 | * and it's value is between 512 and PAGE_SIZE */ |
| 132 | sb->s_blocksize = size; |
Coywolf Qi Hunt | 38885bd | 2006-03-24 03:18:05 -0800 | [diff] [blame] | 133 | sb->s_blocksize_bits = blksize_bits(size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | return sb->s_blocksize; |
| 135 | } |
| 136 | |
| 137 | EXPORT_SYMBOL(sb_set_blocksize); |
| 138 | |
| 139 | int sb_min_blocksize(struct super_block *sb, int size) |
| 140 | { |
Martin K. Petersen | e1defc4 | 2009-05-22 17:17:49 -0400 | [diff] [blame] | 141 | int minsize = bdev_logical_block_size(sb->s_bdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | if (size < minsize) |
| 143 | size = minsize; |
| 144 | return sb_set_blocksize(sb, size); |
| 145 | } |
| 146 | |
| 147 | EXPORT_SYMBOL(sb_min_blocksize); |
| 148 | |
| 149 | static int |
| 150 | blkdev_get_block(struct inode *inode, sector_t iblock, |
| 151 | struct buffer_head *bh, int create) |
| 152 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | bh->b_bdev = I_BDEV(inode); |
| 154 | bh->b_blocknr = iblock; |
| 155 | set_buffer_mapped(bh); |
| 156 | return 0; |
| 157 | } |
| 158 | |
Andrew Morton | b2e895d | 2007-02-03 01:14:01 -0800 | [diff] [blame] | 159 | static ssize_t |
| 160 | blkdev_direct_IO(int rw, struct kiocb *iocb, const struct iovec *iov, |
| 161 | loff_t offset, unsigned long nr_segs) |
| 162 | { |
| 163 | struct file *file = iocb->ki_filp; |
| 164 | struct inode *inode = file->f_mapping->host; |
| 165 | |
Christoph Hellwig | eafdc7d | 2010-06-04 11:29:53 +0200 | [diff] [blame] | 166 | return __blockdev_direct_IO(rw, iocb, inode, I_BDEV(inode), iov, offset, |
Linus Torvalds | bbec0270 | 2012-11-29 12:31:52 -0800 | [diff] [blame] | 167 | nr_segs, blkdev_get_block, NULL, NULL, 0); |
Andrew Morton | b2e895d | 2007-02-03 01:14:01 -0800 | [diff] [blame] | 168 | } |
| 169 | |
Jan Kara | 5cee581 | 2009-04-27 16:43:51 +0200 | [diff] [blame] | 170 | int __sync_blockdev(struct block_device *bdev, int wait) |
| 171 | { |
| 172 | if (!bdev) |
| 173 | return 0; |
| 174 | if (!wait) |
| 175 | return filemap_flush(bdev->bd_inode->i_mapping); |
| 176 | return filemap_write_and_wait(bdev->bd_inode->i_mapping); |
| 177 | } |
| 178 | |
Nick Piggin | 585d3bc | 2009-02-25 10:44:19 +0100 | [diff] [blame] | 179 | /* |
| 180 | * Write out and wait upon all the dirty data associated with a block |
| 181 | * device via its mapping. Does not take the superblock lock. |
| 182 | */ |
| 183 | int sync_blockdev(struct block_device *bdev) |
| 184 | { |
Jan Kara | 5cee581 | 2009-04-27 16:43:51 +0200 | [diff] [blame] | 185 | return __sync_blockdev(bdev, 1); |
Nick Piggin | 585d3bc | 2009-02-25 10:44:19 +0100 | [diff] [blame] | 186 | } |
| 187 | EXPORT_SYMBOL(sync_blockdev); |
| 188 | |
| 189 | /* |
| 190 | * Write out and wait upon all dirty data associated with this |
| 191 | * device. Filesystem data as well as the underlying block |
| 192 | * device. Takes the superblock lock. |
| 193 | */ |
| 194 | int fsync_bdev(struct block_device *bdev) |
| 195 | { |
| 196 | struct super_block *sb = get_super(bdev); |
| 197 | if (sb) { |
Jan Kara | 60b0680 | 2009-04-27 16:43:53 +0200 | [diff] [blame] | 198 | int res = sync_filesystem(sb); |
Nick Piggin | 585d3bc | 2009-02-25 10:44:19 +0100 | [diff] [blame] | 199 | drop_super(sb); |
| 200 | return res; |
| 201 | } |
| 202 | return sync_blockdev(bdev); |
| 203 | } |
Al Viro | 47e4491 | 2009-04-01 07:07:16 -0400 | [diff] [blame] | 204 | EXPORT_SYMBOL(fsync_bdev); |
Nick Piggin | 585d3bc | 2009-02-25 10:44:19 +0100 | [diff] [blame] | 205 | |
| 206 | /** |
| 207 | * freeze_bdev -- lock a filesystem and force it into a consistent state |
| 208 | * @bdev: blockdevice to lock |
| 209 | * |
Nick Piggin | 585d3bc | 2009-02-25 10:44:19 +0100 | [diff] [blame] | 210 | * If a superblock is found on this device, we take the s_umount semaphore |
| 211 | * on it to make sure nobody unmounts until the snapshot creation is done. |
| 212 | * The reference counter (bd_fsfreeze_count) guarantees that only the last |
| 213 | * unfreeze process can unfreeze the frozen filesystem actually when multiple |
| 214 | * freeze requests arrive simultaneously. It counts up in freeze_bdev() and |
| 215 | * count down in thaw_bdev(). When it becomes 0, thaw_bdev() will unfreeze |
| 216 | * actually. |
| 217 | */ |
| 218 | struct super_block *freeze_bdev(struct block_device *bdev) |
| 219 | { |
| 220 | struct super_block *sb; |
| 221 | int error = 0; |
| 222 | |
| 223 | mutex_lock(&bdev->bd_fsfreeze_mutex); |
Christoph Hellwig | 4504230 | 2009-08-03 23:28:35 +0200 | [diff] [blame] | 224 | if (++bdev->bd_fsfreeze_count > 1) { |
| 225 | /* |
| 226 | * We don't even need to grab a reference - the first call |
| 227 | * to freeze_bdev grab an active reference and only the last |
| 228 | * thaw_bdev drops it. |
| 229 | */ |
Nick Piggin | 585d3bc | 2009-02-25 10:44:19 +0100 | [diff] [blame] | 230 | sb = get_super(bdev); |
Christoph Hellwig | 4504230 | 2009-08-03 23:28:35 +0200 | [diff] [blame] | 231 | drop_super(sb); |
Nick Piggin | 585d3bc | 2009-02-25 10:44:19 +0100 | [diff] [blame] | 232 | mutex_unlock(&bdev->bd_fsfreeze_mutex); |
| 233 | return sb; |
| 234 | } |
Nick Piggin | 585d3bc | 2009-02-25 10:44:19 +0100 | [diff] [blame] | 235 | |
Christoph Hellwig | 4504230 | 2009-08-03 23:28:35 +0200 | [diff] [blame] | 236 | sb = get_active_super(bdev); |
| 237 | if (!sb) |
| 238 | goto out; |
Josef Bacik | 18e9e51 | 2010-03-23 10:34:56 -0400 | [diff] [blame] | 239 | error = freeze_super(sb); |
| 240 | if (error) { |
| 241 | deactivate_super(sb); |
| 242 | bdev->bd_fsfreeze_count--; |
Christoph Hellwig | 4504230 | 2009-08-03 23:28:35 +0200 | [diff] [blame] | 243 | mutex_unlock(&bdev->bd_fsfreeze_mutex); |
Josef Bacik | 18e9e51 | 2010-03-23 10:34:56 -0400 | [diff] [blame] | 244 | return ERR_PTR(error); |
Nick Piggin | 585d3bc | 2009-02-25 10:44:19 +0100 | [diff] [blame] | 245 | } |
Josef Bacik | 18e9e51 | 2010-03-23 10:34:56 -0400 | [diff] [blame] | 246 | deactivate_super(sb); |
Christoph Hellwig | 4504230 | 2009-08-03 23:28:35 +0200 | [diff] [blame] | 247 | out: |
Nick Piggin | 585d3bc | 2009-02-25 10:44:19 +0100 | [diff] [blame] | 248 | sync_blockdev(bdev); |
| 249 | mutex_unlock(&bdev->bd_fsfreeze_mutex); |
Christoph Hellwig | 4fadd7b | 2009-08-03 23:28:06 +0200 | [diff] [blame] | 250 | return sb; /* thaw_bdev releases s->s_umount */ |
Nick Piggin | 585d3bc | 2009-02-25 10:44:19 +0100 | [diff] [blame] | 251 | } |
| 252 | EXPORT_SYMBOL(freeze_bdev); |
| 253 | |
| 254 | /** |
| 255 | * thaw_bdev -- unlock filesystem |
| 256 | * @bdev: blockdevice to unlock |
| 257 | * @sb: associated superblock |
| 258 | * |
| 259 | * Unlocks the filesystem and marks it writeable again after freeze_bdev(). |
| 260 | */ |
| 261 | int thaw_bdev(struct block_device *bdev, struct super_block *sb) |
| 262 | { |
Christoph Hellwig | 4504230 | 2009-08-03 23:28:35 +0200 | [diff] [blame] | 263 | int error = -EINVAL; |
Nick Piggin | 585d3bc | 2009-02-25 10:44:19 +0100 | [diff] [blame] | 264 | |
| 265 | mutex_lock(&bdev->bd_fsfreeze_mutex); |
Christoph Hellwig | 4504230 | 2009-08-03 23:28:35 +0200 | [diff] [blame] | 266 | if (!bdev->bd_fsfreeze_count) |
Josef Bacik | 18e9e51 | 2010-03-23 10:34:56 -0400 | [diff] [blame] | 267 | goto out; |
Nick Piggin | 585d3bc | 2009-02-25 10:44:19 +0100 | [diff] [blame] | 268 | |
Christoph Hellwig | 4504230 | 2009-08-03 23:28:35 +0200 | [diff] [blame] | 269 | error = 0; |
| 270 | if (--bdev->bd_fsfreeze_count > 0) |
Josef Bacik | 18e9e51 | 2010-03-23 10:34:56 -0400 | [diff] [blame] | 271 | goto out; |
Nick Piggin | 585d3bc | 2009-02-25 10:44:19 +0100 | [diff] [blame] | 272 | |
Christoph Hellwig | 4504230 | 2009-08-03 23:28:35 +0200 | [diff] [blame] | 273 | if (!sb) |
Josef Bacik | 18e9e51 | 2010-03-23 10:34:56 -0400 | [diff] [blame] | 274 | goto out; |
Christoph Hellwig | 4504230 | 2009-08-03 23:28:35 +0200 | [diff] [blame] | 275 | |
Josef Bacik | 18e9e51 | 2010-03-23 10:34:56 -0400 | [diff] [blame] | 276 | error = thaw_super(sb); |
| 277 | if (error) { |
| 278 | bdev->bd_fsfreeze_count++; |
| 279 | mutex_unlock(&bdev->bd_fsfreeze_mutex); |
| 280 | return error; |
Nick Piggin | 585d3bc | 2009-02-25 10:44:19 +0100 | [diff] [blame] | 281 | } |
Josef Bacik | 18e9e51 | 2010-03-23 10:34:56 -0400 | [diff] [blame] | 282 | out: |
Nick Piggin | 585d3bc | 2009-02-25 10:44:19 +0100 | [diff] [blame] | 283 | mutex_unlock(&bdev->bd_fsfreeze_mutex); |
| 284 | return 0; |
| 285 | } |
| 286 | EXPORT_SYMBOL(thaw_bdev); |
| 287 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 288 | static int blkdev_writepage(struct page *page, struct writeback_control *wbc) |
| 289 | { |
| 290 | return block_write_full_page(page, blkdev_get_block, wbc); |
| 291 | } |
| 292 | |
| 293 | static int blkdev_readpage(struct file * file, struct page * page) |
| 294 | { |
| 295 | return block_read_full_page(page, blkdev_get_block); |
| 296 | } |
| 297 | |
Nick Piggin | 6272b5a | 2007-10-16 01:25:04 -0700 | [diff] [blame] | 298 | static int blkdev_write_begin(struct file *file, struct address_space *mapping, |
| 299 | loff_t pos, unsigned len, unsigned flags, |
| 300 | struct page **pagep, void **fsdata) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 301 | { |
Christoph Hellwig | 155130a | 2010-06-04 11:29:58 +0200 | [diff] [blame] | 302 | return block_write_begin(mapping, pos, len, flags, pagep, |
| 303 | blkdev_get_block); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 304 | } |
| 305 | |
Nick Piggin | 6272b5a | 2007-10-16 01:25:04 -0700 | [diff] [blame] | 306 | static int blkdev_write_end(struct file *file, struct address_space *mapping, |
| 307 | loff_t pos, unsigned len, unsigned copied, |
| 308 | struct page *page, void *fsdata) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 309 | { |
Nick Piggin | 6272b5a | 2007-10-16 01:25:04 -0700 | [diff] [blame] | 310 | int ret; |
| 311 | ret = block_write_end(file, mapping, pos, len, copied, page, fsdata); |
| 312 | |
| 313 | unlock_page(page); |
| 314 | page_cache_release(page); |
| 315 | |
| 316 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 317 | } |
| 318 | |
| 319 | /* |
| 320 | * private llseek: |
Josef "Jeff" Sipek | 0f7fc9e | 2006-12-08 02:36:35 -0800 | [diff] [blame] | 321 | * for a block special file file->f_path.dentry->d_inode->i_size is zero |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | * so we compute the size by hand (just as in block_read/write above) |
| 323 | */ |
Andrew Morton | 965c8e5 | 2012-12-17 15:59:39 -0800 | [diff] [blame] | 324 | static loff_t block_llseek(struct file *file, loff_t offset, int whence) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 325 | { |
| 326 | struct inode *bd_inode = file->f_mapping->host; |
| 327 | loff_t size; |
| 328 | loff_t retval; |
| 329 | |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 330 | mutex_lock(&bd_inode->i_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 331 | size = i_size_read(bd_inode); |
| 332 | |
Josef Bacik | 06222e4 | 2011-07-18 13:21:38 -0400 | [diff] [blame] | 333 | retval = -EINVAL; |
Andrew Morton | 965c8e5 | 2012-12-17 15:59:39 -0800 | [diff] [blame] | 334 | switch (whence) { |
Josef Bacik | 06222e4 | 2011-07-18 13:21:38 -0400 | [diff] [blame] | 335 | case SEEK_END: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 336 | offset += size; |
| 337 | break; |
Josef Bacik | 06222e4 | 2011-07-18 13:21:38 -0400 | [diff] [blame] | 338 | case SEEK_CUR: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 339 | offset += file->f_pos; |
Josef Bacik | 06222e4 | 2011-07-18 13:21:38 -0400 | [diff] [blame] | 340 | case SEEK_SET: |
| 341 | break; |
| 342 | default: |
| 343 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 344 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 345 | if (offset >= 0 && offset <= size) { |
| 346 | if (offset != file->f_pos) { |
| 347 | file->f_pos = offset; |
| 348 | } |
| 349 | retval = offset; |
| 350 | } |
Josef Bacik | 06222e4 | 2011-07-18 13:21:38 -0400 | [diff] [blame] | 351 | out: |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 352 | mutex_unlock(&bd_inode->i_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 353 | return retval; |
| 354 | } |
| 355 | |
Josef Bacik | 02c24a8 | 2011-07-16 20:44:56 -0400 | [diff] [blame] | 356 | int blkdev_fsync(struct file *filp, loff_t start, loff_t end, int datasync) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 357 | { |
Anton Blanchard | b8af67e | 2010-04-23 13:18:06 -0400 | [diff] [blame] | 358 | struct inode *bd_inode = filp->f_mapping->host; |
| 359 | struct block_device *bdev = I_BDEV(bd_inode); |
Christoph Hellwig | ab0a973 | 2009-10-29 14:14:04 +0100 | [diff] [blame] | 360 | int error; |
Rafael J. Wysocki | da5aa86 | 2011-08-02 02:17:48 +0200 | [diff] [blame] | 361 | |
| 362 | error = filemap_write_and_wait_range(filp->f_mapping, start, end); |
| 363 | if (error) |
| 364 | return error; |
Christoph Hellwig | ab0a973 | 2009-10-29 14:14:04 +0100 | [diff] [blame] | 365 | |
Anton Blanchard | b8af67e | 2010-04-23 13:18:06 -0400 | [diff] [blame] | 366 | /* |
| 367 | * There is no need to serialise calls to blkdev_issue_flush with |
| 368 | * i_mutex and doing so causes performance issues with concurrent |
| 369 | * O_SYNC writers to a block device. |
| 370 | */ |
Christoph Hellwig | dd3932e | 2010-09-16 20:51:46 +0200 | [diff] [blame] | 371 | error = blkdev_issue_flush(bdev, GFP_KERNEL, NULL); |
Christoph Hellwig | ab0a973 | 2009-10-29 14:14:04 +0100 | [diff] [blame] | 372 | if (error == -EOPNOTSUPP) |
| 373 | error = 0; |
Anton Blanchard | b8af67e | 2010-04-23 13:18:06 -0400 | [diff] [blame] | 374 | |
Christoph Hellwig | ab0a973 | 2009-10-29 14:14:04 +0100 | [diff] [blame] | 375 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 376 | } |
Andrew Morton | b1dd3b2 | 2010-04-06 14:35:00 -0700 | [diff] [blame] | 377 | EXPORT_SYMBOL(blkdev_fsync); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 378 | |
| 379 | /* |
| 380 | * pseudo-fs |
| 381 | */ |
| 382 | |
| 383 | static __cacheline_aligned_in_smp DEFINE_SPINLOCK(bdev_lock); |
Christoph Lameter | e18b890 | 2006-12-06 20:33:20 -0800 | [diff] [blame] | 384 | static struct kmem_cache * bdev_cachep __read_mostly; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 385 | |
| 386 | static struct inode *bdev_alloc_inode(struct super_block *sb) |
| 387 | { |
Christoph Lameter | e94b176 | 2006-12-06 20:33:17 -0800 | [diff] [blame] | 388 | struct bdev_inode *ei = kmem_cache_alloc(bdev_cachep, GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 389 | if (!ei) |
| 390 | return NULL; |
| 391 | return &ei->vfs_inode; |
| 392 | } |
| 393 | |
Nick Piggin | fa0d7e3d | 2011-01-07 17:49:49 +1100 | [diff] [blame] | 394 | static void bdev_i_callback(struct rcu_head *head) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 395 | { |
Nick Piggin | fa0d7e3d | 2011-01-07 17:49:49 +1100 | [diff] [blame] | 396 | struct inode *inode = container_of(head, struct inode, i_rcu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 397 | struct bdev_inode *bdi = BDEV_I(inode); |
| 398 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 399 | kmem_cache_free(bdev_cachep, bdi); |
| 400 | } |
| 401 | |
Nick Piggin | fa0d7e3d | 2011-01-07 17:49:49 +1100 | [diff] [blame] | 402 | static void bdev_destroy_inode(struct inode *inode) |
| 403 | { |
| 404 | call_rcu(&inode->i_rcu, bdev_i_callback); |
| 405 | } |
| 406 | |
Alexey Dobriyan | 51cc506 | 2008-07-25 19:45:34 -0700 | [diff] [blame] | 407 | static void init_once(void *foo) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 408 | { |
| 409 | struct bdev_inode *ei = (struct bdev_inode *) foo; |
| 410 | struct block_device *bdev = &ei->bdev; |
| 411 | |
Christoph Lameter | a35afb8 | 2007-05-16 22:10:57 -0700 | [diff] [blame] | 412 | memset(bdev, 0, sizeof(*bdev)); |
| 413 | mutex_init(&bdev->bd_mutex); |
Christoph Lameter | a35afb8 | 2007-05-16 22:10:57 -0700 | [diff] [blame] | 414 | INIT_LIST_HEAD(&bdev->bd_inodes); |
| 415 | INIT_LIST_HEAD(&bdev->bd_list); |
Tejun Heo | 49731ba | 2011-01-14 18:43:57 +0100 | [diff] [blame] | 416 | #ifdef CONFIG_SYSFS |
| 417 | INIT_LIST_HEAD(&bdev->bd_holder_disks); |
| 418 | #endif |
Christoph Lameter | a35afb8 | 2007-05-16 22:10:57 -0700 | [diff] [blame] | 419 | inode_init_once(&ei->vfs_inode); |
Takashi Sato | fcccf50 | 2009-01-09 16:40:59 -0800 | [diff] [blame] | 420 | /* Initialize mutex for freeze. */ |
| 421 | mutex_init(&bdev->bd_fsfreeze_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 422 | } |
| 423 | |
| 424 | static inline void __bd_forget(struct inode *inode) |
| 425 | { |
| 426 | list_del_init(&inode->i_devices); |
| 427 | inode->i_bdev = NULL; |
| 428 | inode->i_mapping = &inode->i_data; |
| 429 | } |
| 430 | |
Al Viro | b57922d | 2010-06-07 14:34:48 -0400 | [diff] [blame] | 431 | static void bdev_evict_inode(struct inode *inode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 432 | { |
| 433 | struct block_device *bdev = &BDEV_I(inode)->bdev; |
| 434 | struct list_head *p; |
Al Viro | b57922d | 2010-06-07 14:34:48 -0400 | [diff] [blame] | 435 | truncate_inode_pages(&inode->i_data, 0); |
| 436 | invalidate_inode_buffers(inode); /* is it needed here? */ |
Jan Kara | dbd5768 | 2012-05-03 14:48:02 +0200 | [diff] [blame] | 437 | clear_inode(inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 438 | spin_lock(&bdev_lock); |
| 439 | while ( (p = bdev->bd_inodes.next) != &bdev->bd_inodes ) { |
| 440 | __bd_forget(list_entry(p, struct inode, i_devices)); |
| 441 | } |
| 442 | list_del_init(&bdev->bd_list); |
| 443 | spin_unlock(&bdev_lock); |
| 444 | } |
| 445 | |
Josef 'Jeff' Sipek | ee9b6d6 | 2007-02-12 00:55:41 -0800 | [diff] [blame] | 446 | static const struct super_operations bdev_sops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 447 | .statfs = simple_statfs, |
| 448 | .alloc_inode = bdev_alloc_inode, |
| 449 | .destroy_inode = bdev_destroy_inode, |
| 450 | .drop_inode = generic_delete_inode, |
Al Viro | b57922d | 2010-06-07 14:34:48 -0400 | [diff] [blame] | 451 | .evict_inode = bdev_evict_inode, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 452 | }; |
| 453 | |
Al Viro | 51139ad | 2010-07-25 23:47:46 +0400 | [diff] [blame] | 454 | static struct dentry *bd_mount(struct file_system_type *fs_type, |
| 455 | int flags, const char *dev_name, void *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 456 | { |
Muthu Kumar | b502bd1 | 2012-03-23 15:01:50 -0700 | [diff] [blame] | 457 | return mount_pseudo(fs_type, "bdev:", &bdev_sops, NULL, BDEVFS_MAGIC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 458 | } |
| 459 | |
| 460 | static struct file_system_type bd_type = { |
| 461 | .name = "bdev", |
Al Viro | 51139ad | 2010-07-25 23:47:46 +0400 | [diff] [blame] | 462 | .mount = bd_mount, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 463 | .kill_sb = kill_anon_super, |
| 464 | }; |
| 465 | |
Al Viro | f47ec3f | 2011-11-21 21:15:42 -0500 | [diff] [blame] | 466 | static struct super_block *blockdev_superblock __read_mostly; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 467 | |
| 468 | void __init bdev_cache_init(void) |
| 469 | { |
| 470 | int err; |
Sergey Senozhatsky | ace8577 | 2012-01-10 02:43:59 +0300 | [diff] [blame] | 471 | static struct vfsmount *bd_mnt; |
Denis ChengRq | c2acf7b | 2008-12-01 14:34:56 -0800 | [diff] [blame] | 472 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 473 | bdev_cachep = kmem_cache_create("bdev_cache", sizeof(struct bdev_inode), |
Paul Jackson | fffb60f | 2006-03-24 03:16:06 -0800 | [diff] [blame] | 474 | 0, (SLAB_HWCACHE_ALIGN|SLAB_RECLAIM_ACCOUNT| |
| 475 | SLAB_MEM_SPREAD|SLAB_PANIC), |
Paul Mundt | 20c2df8 | 2007-07-20 10:11:58 +0900 | [diff] [blame] | 476 | init_once); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 477 | err = register_filesystem(&bd_type); |
| 478 | if (err) |
| 479 | panic("Cannot register bdev pseudo-fs"); |
| 480 | bd_mnt = kern_mount(&bd_type); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 481 | if (IS_ERR(bd_mnt)) |
| 482 | panic("Cannot create bdev pseudo-fs"); |
Sergey Senozhatsky | ace8577 | 2012-01-10 02:43:59 +0300 | [diff] [blame] | 483 | blockdev_superblock = bd_mnt->mnt_sb; /* For writeback */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 484 | } |
| 485 | |
| 486 | /* |
| 487 | * Most likely _very_ bad one - but then it's hardly critical for small |
| 488 | * /dev and can be fixed when somebody will need really large one. |
| 489 | * Keep in mind that it will be fed through icache hash function too. |
| 490 | */ |
| 491 | static inline unsigned long hash(dev_t dev) |
| 492 | { |
| 493 | return MAJOR(dev)+MINOR(dev); |
| 494 | } |
| 495 | |
| 496 | static int bdev_test(struct inode *inode, void *data) |
| 497 | { |
| 498 | return BDEV_I(inode)->bdev.bd_dev == *(dev_t *)data; |
| 499 | } |
| 500 | |
| 501 | static int bdev_set(struct inode *inode, void *data) |
| 502 | { |
| 503 | BDEV_I(inode)->bdev.bd_dev = *(dev_t *)data; |
| 504 | return 0; |
| 505 | } |
| 506 | |
| 507 | static LIST_HEAD(all_bdevs); |
| 508 | |
| 509 | struct block_device *bdget(dev_t dev) |
| 510 | { |
| 511 | struct block_device *bdev; |
| 512 | struct inode *inode; |
| 513 | |
Denis ChengRq | c2acf7b | 2008-12-01 14:34:56 -0800 | [diff] [blame] | 514 | inode = iget5_locked(blockdev_superblock, hash(dev), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 515 | bdev_test, bdev_set, &dev); |
| 516 | |
| 517 | if (!inode) |
| 518 | return NULL; |
| 519 | |
| 520 | bdev = &BDEV_I(inode)->bdev; |
| 521 | |
| 522 | if (inode->i_state & I_NEW) { |
| 523 | bdev->bd_contains = NULL; |
Lachlan McIlroy | 782b94c | 2011-06-30 11:01:45 +1000 | [diff] [blame] | 524 | bdev->bd_super = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 525 | bdev->bd_inode = inode; |
| 526 | bdev->bd_block_size = (1 << inode->i_blkbits); |
| 527 | bdev->bd_part_count = 0; |
| 528 | bdev->bd_invalidated = 0; |
| 529 | inode->i_mode = S_IFBLK; |
| 530 | inode->i_rdev = dev; |
| 531 | inode->i_bdev = bdev; |
| 532 | inode->i_data.a_ops = &def_blk_aops; |
| 533 | mapping_set_gfp_mask(&inode->i_data, GFP_USER); |
| 534 | inode->i_data.backing_dev_info = &default_backing_dev_info; |
| 535 | spin_lock(&bdev_lock); |
| 536 | list_add(&bdev->bd_list, &all_bdevs); |
| 537 | spin_unlock(&bdev_lock); |
| 538 | unlock_new_inode(inode); |
| 539 | } |
| 540 | return bdev; |
| 541 | } |
| 542 | |
| 543 | EXPORT_SYMBOL(bdget); |
| 544 | |
Alan Jenkins | dddac6a | 2009-07-29 21:07:55 +0200 | [diff] [blame] | 545 | /** |
| 546 | * bdgrab -- Grab a reference to an already referenced block device |
| 547 | * @bdev: Block device to grab a reference to. |
| 548 | */ |
| 549 | struct block_device *bdgrab(struct block_device *bdev) |
| 550 | { |
Al Viro | 7de9c6ee | 2010-10-23 11:11:40 -0400 | [diff] [blame] | 551 | ihold(bdev->bd_inode); |
Alan Jenkins | dddac6a | 2009-07-29 21:07:55 +0200 | [diff] [blame] | 552 | return bdev; |
| 553 | } |
| 554 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 555 | long nr_blockdev_pages(void) |
| 556 | { |
Matthias Kaehlcke | 203a293 | 2007-07-15 23:40:23 -0700 | [diff] [blame] | 557 | struct block_device *bdev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 558 | long ret = 0; |
| 559 | spin_lock(&bdev_lock); |
Matthias Kaehlcke | 203a293 | 2007-07-15 23:40:23 -0700 | [diff] [blame] | 560 | list_for_each_entry(bdev, &all_bdevs, bd_list) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 561 | ret += bdev->bd_inode->i_mapping->nrpages; |
| 562 | } |
| 563 | spin_unlock(&bdev_lock); |
| 564 | return ret; |
| 565 | } |
| 566 | |
| 567 | void bdput(struct block_device *bdev) |
| 568 | { |
| 569 | iput(bdev->bd_inode); |
| 570 | } |
| 571 | |
| 572 | EXPORT_SYMBOL(bdput); |
| 573 | |
| 574 | static struct block_device *bd_acquire(struct inode *inode) |
| 575 | { |
| 576 | struct block_device *bdev; |
OGAWA Hirofumi | 09d967c | 2006-06-22 14:47:21 -0700 | [diff] [blame] | 577 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 578 | spin_lock(&bdev_lock); |
| 579 | bdev = inode->i_bdev; |
OGAWA Hirofumi | 09d967c | 2006-06-22 14:47:21 -0700 | [diff] [blame] | 580 | if (bdev) { |
Al Viro | 7de9c6ee | 2010-10-23 11:11:40 -0400 | [diff] [blame] | 581 | ihold(bdev->bd_inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 582 | spin_unlock(&bdev_lock); |
| 583 | return bdev; |
| 584 | } |
| 585 | spin_unlock(&bdev_lock); |
OGAWA Hirofumi | 09d967c | 2006-06-22 14:47:21 -0700 | [diff] [blame] | 586 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 587 | bdev = bdget(inode->i_rdev); |
| 588 | if (bdev) { |
| 589 | spin_lock(&bdev_lock); |
OGAWA Hirofumi | 09d967c | 2006-06-22 14:47:21 -0700 | [diff] [blame] | 590 | if (!inode->i_bdev) { |
| 591 | /* |
Al Viro | 7de9c6ee | 2010-10-23 11:11:40 -0400 | [diff] [blame] | 592 | * We take an additional reference to bd_inode, |
OGAWA Hirofumi | 09d967c | 2006-06-22 14:47:21 -0700 | [diff] [blame] | 593 | * and it's released in clear_inode() of inode. |
| 594 | * So, we can access it via ->i_mapping always |
| 595 | * without igrab(). |
| 596 | */ |
Al Viro | 7de9c6ee | 2010-10-23 11:11:40 -0400 | [diff] [blame] | 597 | ihold(bdev->bd_inode); |
OGAWA Hirofumi | 09d967c | 2006-06-22 14:47:21 -0700 | [diff] [blame] | 598 | inode->i_bdev = bdev; |
| 599 | inode->i_mapping = bdev->bd_inode->i_mapping; |
| 600 | list_add(&inode->i_devices, &bdev->bd_inodes); |
| 601 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 602 | spin_unlock(&bdev_lock); |
| 603 | } |
| 604 | return bdev; |
| 605 | } |
| 606 | |
Al Viro | f47ec3f | 2011-11-21 21:15:42 -0500 | [diff] [blame] | 607 | static inline int sb_is_blkdev_sb(struct super_block *sb) |
| 608 | { |
| 609 | return sb == blockdev_superblock; |
| 610 | } |
| 611 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 612 | /* Call when you free inode */ |
| 613 | |
| 614 | void bd_forget(struct inode *inode) |
| 615 | { |
OGAWA Hirofumi | 09d967c | 2006-06-22 14:47:21 -0700 | [diff] [blame] | 616 | struct block_device *bdev = NULL; |
| 617 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 618 | spin_lock(&bdev_lock); |
OGAWA Hirofumi | 09d967c | 2006-06-22 14:47:21 -0700 | [diff] [blame] | 619 | if (inode->i_bdev) { |
Denis ChengRq | c2acf7b | 2008-12-01 14:34:56 -0800 | [diff] [blame] | 620 | if (!sb_is_blkdev_sb(inode->i_sb)) |
OGAWA Hirofumi | 09d967c | 2006-06-22 14:47:21 -0700 | [diff] [blame] | 621 | bdev = inode->i_bdev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 622 | __bd_forget(inode); |
OGAWA Hirofumi | 09d967c | 2006-06-22 14:47:21 -0700 | [diff] [blame] | 623 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 624 | spin_unlock(&bdev_lock); |
OGAWA Hirofumi | 09d967c | 2006-06-22 14:47:21 -0700 | [diff] [blame] | 625 | |
| 626 | if (bdev) |
| 627 | iput(bdev->bd_inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 628 | } |
| 629 | |
Tejun Heo | 1a3cbbc | 2010-04-07 18:52:29 +0900 | [diff] [blame] | 630 | /** |
| 631 | * bd_may_claim - test whether a block device can be claimed |
| 632 | * @bdev: block device of interest |
| 633 | * @whole: whole block device containing @bdev, may equal @bdev |
| 634 | * @holder: holder trying to claim @bdev |
| 635 | * |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 636 | * Test whether @bdev can be claimed by @holder. |
Tejun Heo | 1a3cbbc | 2010-04-07 18:52:29 +0900 | [diff] [blame] | 637 | * |
| 638 | * CONTEXT: |
| 639 | * spin_lock(&bdev_lock). |
| 640 | * |
| 641 | * RETURNS: |
| 642 | * %true if @bdev can be claimed, %false otherwise. |
| 643 | */ |
| 644 | static bool bd_may_claim(struct block_device *bdev, struct block_device *whole, |
| 645 | void *holder) |
| 646 | { |
| 647 | if (bdev->bd_holder == holder) |
| 648 | return true; /* already a holder */ |
| 649 | else if (bdev->bd_holder != NULL) |
| 650 | return false; /* held by someone else */ |
| 651 | else if (bdev->bd_contains == bdev) |
| 652 | return true; /* is a whole device which isn't held */ |
| 653 | |
Tejun Heo | e525fd8 | 2010-11-13 11:55:17 +0100 | [diff] [blame] | 654 | else if (whole->bd_holder == bd_may_claim) |
Tejun Heo | 1a3cbbc | 2010-04-07 18:52:29 +0900 | [diff] [blame] | 655 | return true; /* is a partition of a device that is being partitioned */ |
| 656 | else if (whole->bd_holder != NULL) |
| 657 | return false; /* is a partition of a held device */ |
| 658 | else |
| 659 | return true; /* is a partition of an un-held device */ |
| 660 | } |
| 661 | |
| 662 | /** |
Tejun Heo | 6b4517a | 2010-04-07 18:53:59 +0900 | [diff] [blame] | 663 | * bd_prepare_to_claim - prepare to claim a block device |
| 664 | * @bdev: block device of interest |
| 665 | * @whole: the whole device containing @bdev, may equal @bdev |
| 666 | * @holder: holder trying to claim @bdev |
| 667 | * |
| 668 | * Prepare to claim @bdev. This function fails if @bdev is already |
| 669 | * claimed by another holder and waits if another claiming is in |
| 670 | * progress. This function doesn't actually claim. On successful |
| 671 | * return, the caller has ownership of bd_claiming and bd_holder[s]. |
| 672 | * |
| 673 | * CONTEXT: |
| 674 | * spin_lock(&bdev_lock). Might release bdev_lock, sleep and regrab |
| 675 | * it multiple times. |
| 676 | * |
| 677 | * RETURNS: |
| 678 | * 0 if @bdev can be claimed, -EBUSY otherwise. |
| 679 | */ |
| 680 | static int bd_prepare_to_claim(struct block_device *bdev, |
| 681 | struct block_device *whole, void *holder) |
| 682 | { |
| 683 | retry: |
| 684 | /* if someone else claimed, fail */ |
| 685 | if (!bd_may_claim(bdev, whole, holder)) |
| 686 | return -EBUSY; |
| 687 | |
Tejun Heo | e75aa85 | 2010-08-04 17:59:39 +0200 | [diff] [blame] | 688 | /* if claiming is already in progress, wait for it to finish */ |
| 689 | if (whole->bd_claiming) { |
Tejun Heo | 6b4517a | 2010-04-07 18:53:59 +0900 | [diff] [blame] | 690 | wait_queue_head_t *wq = bit_waitqueue(&whole->bd_claiming, 0); |
| 691 | DEFINE_WAIT(wait); |
| 692 | |
| 693 | prepare_to_wait(wq, &wait, TASK_UNINTERRUPTIBLE); |
| 694 | spin_unlock(&bdev_lock); |
| 695 | schedule(); |
| 696 | finish_wait(wq, &wait); |
| 697 | spin_lock(&bdev_lock); |
| 698 | goto retry; |
| 699 | } |
| 700 | |
| 701 | /* yay, all mine */ |
| 702 | return 0; |
| 703 | } |
| 704 | |
| 705 | /** |
| 706 | * bd_start_claiming - start claiming a block device |
| 707 | * @bdev: block device of interest |
| 708 | * @holder: holder trying to claim @bdev |
| 709 | * |
| 710 | * @bdev is about to be opened exclusively. Check @bdev can be opened |
| 711 | * exclusively and mark that an exclusive open is in progress. Each |
| 712 | * successful call to this function must be matched with a call to |
Nick Piggin | b001836 | 2010-05-26 01:51:19 +1000 | [diff] [blame] | 713 | * either bd_finish_claiming() or bd_abort_claiming() (which do not |
| 714 | * fail). |
| 715 | * |
| 716 | * This function is used to gain exclusive access to the block device |
| 717 | * without actually causing other exclusive open attempts to fail. It |
| 718 | * should be used when the open sequence itself requires exclusive |
| 719 | * access but may subsequently fail. |
Tejun Heo | 6b4517a | 2010-04-07 18:53:59 +0900 | [diff] [blame] | 720 | * |
| 721 | * CONTEXT: |
| 722 | * Might sleep. |
| 723 | * |
| 724 | * RETURNS: |
| 725 | * Pointer to the block device containing @bdev on success, ERR_PTR() |
| 726 | * value on failure. |
| 727 | */ |
| 728 | static struct block_device *bd_start_claiming(struct block_device *bdev, |
| 729 | void *holder) |
| 730 | { |
| 731 | struct gendisk *disk; |
| 732 | struct block_device *whole; |
| 733 | int partno, err; |
| 734 | |
| 735 | might_sleep(); |
| 736 | |
| 737 | /* |
| 738 | * @bdev might not have been initialized properly yet, look up |
| 739 | * and grab the outer block device the hard way. |
| 740 | */ |
| 741 | disk = get_gendisk(bdev->bd_dev, &partno); |
| 742 | if (!disk) |
| 743 | return ERR_PTR(-ENXIO); |
| 744 | |
Tejun Heo | d4c208b | 2011-06-13 12:45:48 +0200 | [diff] [blame] | 745 | /* |
| 746 | * Normally, @bdev should equal what's returned from bdget_disk() |
| 747 | * if partno is 0; however, some drivers (floppy) use multiple |
| 748 | * bdev's for the same physical device and @bdev may be one of the |
| 749 | * aliases. Keep @bdev if partno is 0. This means claimer |
| 750 | * tracking is broken for those devices but it has always been that |
| 751 | * way. |
| 752 | */ |
| 753 | if (partno) |
| 754 | whole = bdget_disk(disk, 0); |
| 755 | else |
| 756 | whole = bdgrab(bdev); |
| 757 | |
Nick Piggin | cf34257 | 2010-05-26 01:50:21 +1000 | [diff] [blame] | 758 | module_put(disk->fops->owner); |
Tejun Heo | 6b4517a | 2010-04-07 18:53:59 +0900 | [diff] [blame] | 759 | put_disk(disk); |
| 760 | if (!whole) |
| 761 | return ERR_PTR(-ENOMEM); |
| 762 | |
| 763 | /* prepare to claim, if successful, mark claiming in progress */ |
| 764 | spin_lock(&bdev_lock); |
| 765 | |
| 766 | err = bd_prepare_to_claim(bdev, whole, holder); |
| 767 | if (err == 0) { |
| 768 | whole->bd_claiming = holder; |
| 769 | spin_unlock(&bdev_lock); |
| 770 | return whole; |
| 771 | } else { |
| 772 | spin_unlock(&bdev_lock); |
| 773 | bdput(whole); |
| 774 | return ERR_PTR(err); |
| 775 | } |
| 776 | } |
| 777 | |
Jun'ichi Nomura | 641dc63 | 2006-03-27 01:17:57 -0800 | [diff] [blame] | 778 | #ifdef CONFIG_SYSFS |
Tejun Heo | 49731ba | 2011-01-14 18:43:57 +0100 | [diff] [blame] | 779 | struct bd_holder_disk { |
| 780 | struct list_head list; |
| 781 | struct gendisk *disk; |
| 782 | int refcnt; |
| 783 | }; |
| 784 | |
| 785 | static struct bd_holder_disk *bd_find_holder_disk(struct block_device *bdev, |
| 786 | struct gendisk *disk) |
| 787 | { |
| 788 | struct bd_holder_disk *holder; |
| 789 | |
| 790 | list_for_each_entry(holder, &bdev->bd_holder_disks, list) |
| 791 | if (holder->disk == disk) |
| 792 | return holder; |
| 793 | return NULL; |
| 794 | } |
| 795 | |
Andrew Morton | 4d7dd8f | 2006-09-29 01:58:56 -0700 | [diff] [blame] | 796 | static int add_symlink(struct kobject *from, struct kobject *to) |
Jun'ichi Nomura | 641dc63 | 2006-03-27 01:17:57 -0800 | [diff] [blame] | 797 | { |
Andrew Morton | 4d7dd8f | 2006-09-29 01:58:56 -0700 | [diff] [blame] | 798 | return sysfs_create_link(from, to, kobject_name(to)); |
Jun'ichi Nomura | 641dc63 | 2006-03-27 01:17:57 -0800 | [diff] [blame] | 799 | } |
| 800 | |
| 801 | static void del_symlink(struct kobject *from, struct kobject *to) |
| 802 | { |
Jun'ichi Nomura | 641dc63 | 2006-03-27 01:17:57 -0800 | [diff] [blame] | 803 | sysfs_remove_link(from, kobject_name(to)); |
| 804 | } |
| 805 | |
Jun'ichi Nomura | 641dc63 | 2006-03-27 01:17:57 -0800 | [diff] [blame] | 806 | /** |
Tejun Heo | e09b457 | 2010-11-13 11:55:17 +0100 | [diff] [blame] | 807 | * bd_link_disk_holder - create symlinks between holding disk and slave bdev |
| 808 | * @bdev: the claimed slave bdev |
| 809 | * @disk: the holding disk |
Jun'ichi Nomura | df6c0cd | 2006-10-30 16:23:56 -0500 | [diff] [blame] | 810 | * |
Tejun Heo | 49731ba | 2011-01-14 18:43:57 +0100 | [diff] [blame] | 811 | * DON'T USE THIS UNLESS YOU'RE ALREADY USING IT. |
| 812 | * |
Tejun Heo | e09b457 | 2010-11-13 11:55:17 +0100 | [diff] [blame] | 813 | * This functions creates the following sysfs symlinks. |
Jun'ichi Nomura | df6c0cd | 2006-10-30 16:23:56 -0500 | [diff] [blame] | 814 | * |
Tejun Heo | e09b457 | 2010-11-13 11:55:17 +0100 | [diff] [blame] | 815 | * - from "slaves" directory of the holder @disk to the claimed @bdev |
| 816 | * - from "holders" directory of the @bdev to the holder @disk |
| 817 | * |
| 818 | * For example, if /dev/dm-0 maps to /dev/sda and disk for dm-0 is |
| 819 | * passed to bd_link_disk_holder(), then: |
| 820 | * |
| 821 | * /sys/block/dm-0/slaves/sda --> /sys/block/sda |
| 822 | * /sys/block/sda/holders/dm-0 --> /sys/block/dm-0 |
| 823 | * |
| 824 | * The caller must have claimed @bdev before calling this function and |
| 825 | * ensure that both @bdev and @disk are valid during the creation and |
| 826 | * lifetime of these symlinks. |
| 827 | * |
| 828 | * CONTEXT: |
| 829 | * Might sleep. |
| 830 | * |
| 831 | * RETURNS: |
| 832 | * 0 on success, -errno on failure. |
Jun'ichi Nomura | df6c0cd | 2006-10-30 16:23:56 -0500 | [diff] [blame] | 833 | */ |
Tejun Heo | e09b457 | 2010-11-13 11:55:17 +0100 | [diff] [blame] | 834 | int bd_link_disk_holder(struct block_device *bdev, struct gendisk *disk) |
Jun'ichi Nomura | df6c0cd | 2006-10-30 16:23:56 -0500 | [diff] [blame] | 835 | { |
Tejun Heo | 49731ba | 2011-01-14 18:43:57 +0100 | [diff] [blame] | 836 | struct bd_holder_disk *holder; |
Tejun Heo | e09b457 | 2010-11-13 11:55:17 +0100 | [diff] [blame] | 837 | int ret = 0; |
Jun'ichi Nomura | 641dc63 | 2006-03-27 01:17:57 -0800 | [diff] [blame] | 838 | |
Peter Zijlstra | 2e7b651 | 2006-12-08 02:36:13 -0800 | [diff] [blame] | 839 | mutex_lock(&bdev->bd_mutex); |
Jun'ichi Nomura | df6c0cd | 2006-10-30 16:23:56 -0500 | [diff] [blame] | 840 | |
Tejun Heo | 49731ba | 2011-01-14 18:43:57 +0100 | [diff] [blame] | 841 | WARN_ON_ONCE(!bdev->bd_holder); |
Johannes Weiner | 4e91672 | 2007-07-15 23:41:25 -0700 | [diff] [blame] | 842 | |
Tejun Heo | e09b457 | 2010-11-13 11:55:17 +0100 | [diff] [blame] | 843 | /* FIXME: remove the following once add_disk() handles errors */ |
| 844 | if (WARN_ON(!disk->slave_dir || !bdev->bd_part->holder_dir)) |
| 845 | goto out_unlock; |
Johannes Weiner | 4e91672 | 2007-07-15 23:41:25 -0700 | [diff] [blame] | 846 | |
Tejun Heo | 49731ba | 2011-01-14 18:43:57 +0100 | [diff] [blame] | 847 | holder = bd_find_holder_disk(bdev, disk); |
| 848 | if (holder) { |
| 849 | holder->refcnt++; |
Tejun Heo | e09b457 | 2010-11-13 11:55:17 +0100 | [diff] [blame] | 850 | goto out_unlock; |
| 851 | } |
| 852 | |
Tejun Heo | 49731ba | 2011-01-14 18:43:57 +0100 | [diff] [blame] | 853 | holder = kzalloc(sizeof(*holder), GFP_KERNEL); |
| 854 | if (!holder) { |
| 855 | ret = -ENOMEM; |
| 856 | goto out_unlock; |
| 857 | } |
| 858 | |
| 859 | INIT_LIST_HEAD(&holder->list); |
| 860 | holder->disk = disk; |
| 861 | holder->refcnt = 1; |
| 862 | |
| 863 | ret = add_symlink(disk->slave_dir, &part_to_dev(bdev->bd_part)->kobj); |
| 864 | if (ret) |
| 865 | goto out_free; |
| 866 | |
| 867 | ret = add_symlink(bdev->bd_part->holder_dir, &disk_to_dev(disk)->kobj); |
| 868 | if (ret) |
| 869 | goto out_del; |
Tejun Heo | e7407d1 | 2011-02-24 09:56:32 +0100 | [diff] [blame] | 870 | /* |
| 871 | * bdev could be deleted beneath us which would implicitly destroy |
| 872 | * the holder directory. Hold on to it. |
| 873 | */ |
| 874 | kobject_get(bdev->bd_part->holder_dir); |
Tejun Heo | 49731ba | 2011-01-14 18:43:57 +0100 | [diff] [blame] | 875 | |
| 876 | list_add(&holder->list, &bdev->bd_holder_disks); |
| 877 | goto out_unlock; |
| 878 | |
| 879 | out_del: |
| 880 | del_symlink(disk->slave_dir, &part_to_dev(bdev->bd_part)->kobj); |
| 881 | out_free: |
| 882 | kfree(holder); |
Tejun Heo | e09b457 | 2010-11-13 11:55:17 +0100 | [diff] [blame] | 883 | out_unlock: |
Jun'ichi Nomura | b4cf1b7 | 2006-03-27 01:18:00 -0800 | [diff] [blame] | 884 | mutex_unlock(&bdev->bd_mutex); |
Tejun Heo | e09b457 | 2010-11-13 11:55:17 +0100 | [diff] [blame] | 885 | return ret; |
Jun'ichi Nomura | 641dc63 | 2006-03-27 01:17:57 -0800 | [diff] [blame] | 886 | } |
Tejun Heo | e09b457 | 2010-11-13 11:55:17 +0100 | [diff] [blame] | 887 | EXPORT_SYMBOL_GPL(bd_link_disk_holder); |
Jun'ichi Nomura | 641dc63 | 2006-03-27 01:17:57 -0800 | [diff] [blame] | 888 | |
Tejun Heo | 49731ba | 2011-01-14 18:43:57 +0100 | [diff] [blame] | 889 | /** |
| 890 | * bd_unlink_disk_holder - destroy symlinks created by bd_link_disk_holder() |
| 891 | * @bdev: the calimed slave bdev |
| 892 | * @disk: the holding disk |
| 893 | * |
| 894 | * DON'T USE THIS UNLESS YOU'RE ALREADY USING IT. |
| 895 | * |
| 896 | * CONTEXT: |
| 897 | * Might sleep. |
| 898 | */ |
| 899 | void bd_unlink_disk_holder(struct block_device *bdev, struct gendisk *disk) |
Jun'ichi Nomura | 641dc63 | 2006-03-27 01:17:57 -0800 | [diff] [blame] | 900 | { |
Tejun Heo | 49731ba | 2011-01-14 18:43:57 +0100 | [diff] [blame] | 901 | struct bd_holder_disk *holder; |
Tejun Heo | e09b457 | 2010-11-13 11:55:17 +0100 | [diff] [blame] | 902 | |
Tejun Heo | 49731ba | 2011-01-14 18:43:57 +0100 | [diff] [blame] | 903 | mutex_lock(&bdev->bd_mutex); |
Jun'ichi Nomura | 641dc63 | 2006-03-27 01:17:57 -0800 | [diff] [blame] | 904 | |
Tejun Heo | 49731ba | 2011-01-14 18:43:57 +0100 | [diff] [blame] | 905 | holder = bd_find_holder_disk(bdev, disk); |
| 906 | |
| 907 | if (!WARN_ON_ONCE(holder == NULL) && !--holder->refcnt) { |
| 908 | del_symlink(disk->slave_dir, &part_to_dev(bdev->bd_part)->kobj); |
| 909 | del_symlink(bdev->bd_part->holder_dir, |
| 910 | &disk_to_dev(disk)->kobj); |
Tejun Heo | e7407d1 | 2011-02-24 09:56:32 +0100 | [diff] [blame] | 911 | kobject_put(bdev->bd_part->holder_dir); |
Tejun Heo | 49731ba | 2011-01-14 18:43:57 +0100 | [diff] [blame] | 912 | list_del_init(&holder->list); |
| 913 | kfree(holder); |
| 914 | } |
| 915 | |
| 916 | mutex_unlock(&bdev->bd_mutex); |
Jun'ichi Nomura | 641dc63 | 2006-03-27 01:17:57 -0800 | [diff] [blame] | 917 | } |
Tejun Heo | 49731ba | 2011-01-14 18:43:57 +0100 | [diff] [blame] | 918 | EXPORT_SYMBOL_GPL(bd_unlink_disk_holder); |
Jun'ichi Nomura | 641dc63 | 2006-03-27 01:17:57 -0800 | [diff] [blame] | 919 | #endif |
| 920 | |
Andrew Patterson | 0c002c2 | 2008-09-04 14:27:20 -0600 | [diff] [blame] | 921 | /** |
Andrew Patterson | 56ade44 | 2008-09-04 14:27:40 -0600 | [diff] [blame] | 922 | * flush_disk - invalidates all buffer-cache entries on a disk |
| 923 | * |
| 924 | * @bdev: struct block device to be flushed |
Randy Dunlap | e6eb5ce | 2011-02-26 10:54:00 -0800 | [diff] [blame] | 925 | * @kill_dirty: flag to guide handling of dirty inodes |
Andrew Patterson | 56ade44 | 2008-09-04 14:27:40 -0600 | [diff] [blame] | 926 | * |
| 927 | * Invalidates all buffer-cache entries on a disk. It should be called |
| 928 | * when a disk has been changed -- either by a media change or online |
| 929 | * resize. |
| 930 | */ |
NeilBrown | 93b270f | 2011-02-24 17:25:47 +1100 | [diff] [blame] | 931 | static void flush_disk(struct block_device *bdev, bool kill_dirty) |
Andrew Patterson | 56ade44 | 2008-09-04 14:27:40 -0600 | [diff] [blame] | 932 | { |
NeilBrown | 93b270f | 2011-02-24 17:25:47 +1100 | [diff] [blame] | 933 | if (__invalidate_device(bdev, kill_dirty)) { |
Andrew Patterson | 56ade44 | 2008-09-04 14:27:40 -0600 | [diff] [blame] | 934 | char name[BDEVNAME_SIZE] = ""; |
| 935 | |
| 936 | if (bdev->bd_disk) |
| 937 | disk_name(bdev->bd_disk, 0, name); |
| 938 | printk(KERN_WARNING "VFS: busy inodes on changed media or " |
| 939 | "resized disk %s\n", name); |
| 940 | } |
| 941 | |
| 942 | if (!bdev->bd_disk) |
| 943 | return; |
Tejun Heo | d27769e | 2011-08-23 20:01:04 +0200 | [diff] [blame] | 944 | if (disk_part_scan_enabled(bdev->bd_disk)) |
Andrew Patterson | 56ade44 | 2008-09-04 14:27:40 -0600 | [diff] [blame] | 945 | bdev->bd_invalidated = 1; |
| 946 | } |
| 947 | |
| 948 | /** |
Randy Dunlap | 57d1b53 | 2008-10-09 10:42:38 +0200 | [diff] [blame] | 949 | * check_disk_size_change - checks for disk size change and adjusts bdev size. |
Andrew Patterson | c3279d1 | 2008-09-04 14:27:25 -0600 | [diff] [blame] | 950 | * @disk: struct gendisk to check |
| 951 | * @bdev: struct bdev to adjust. |
| 952 | * |
| 953 | * This routine checks to see if the bdev size does not match the disk size |
| 954 | * and adjusts it if it differs. |
| 955 | */ |
| 956 | void check_disk_size_change(struct gendisk *disk, struct block_device *bdev) |
| 957 | { |
| 958 | loff_t disk_size, bdev_size; |
| 959 | |
| 960 | disk_size = (loff_t)get_capacity(disk) << 9; |
| 961 | bdev_size = i_size_read(bdev->bd_inode); |
| 962 | if (disk_size != bdev_size) { |
| 963 | char name[BDEVNAME_SIZE]; |
| 964 | |
| 965 | disk_name(disk, 0, name); |
| 966 | printk(KERN_INFO |
| 967 | "%s: detected capacity change from %lld to %lld\n", |
| 968 | name, bdev_size, disk_size); |
| 969 | i_size_write(bdev->bd_inode, disk_size); |
NeilBrown | 93b270f | 2011-02-24 17:25:47 +1100 | [diff] [blame] | 970 | flush_disk(bdev, false); |
Andrew Patterson | c3279d1 | 2008-09-04 14:27:25 -0600 | [diff] [blame] | 971 | } |
| 972 | } |
| 973 | EXPORT_SYMBOL(check_disk_size_change); |
| 974 | |
| 975 | /** |
Randy Dunlap | 57d1b53 | 2008-10-09 10:42:38 +0200 | [diff] [blame] | 976 | * revalidate_disk - wrapper for lower-level driver's revalidate_disk call-back |
Andrew Patterson | 0c002c2 | 2008-09-04 14:27:20 -0600 | [diff] [blame] | 977 | * @disk: struct gendisk to be revalidated |
| 978 | * |
| 979 | * This routine is a wrapper for lower-level driver's revalidate_disk |
| 980 | * call-backs. It is used to do common pre and post operations needed |
| 981 | * for all revalidate_disk operations. |
| 982 | */ |
| 983 | int revalidate_disk(struct gendisk *disk) |
| 984 | { |
Andrew Patterson | c3279d1 | 2008-09-04 14:27:25 -0600 | [diff] [blame] | 985 | struct block_device *bdev; |
Andrew Patterson | 0c002c2 | 2008-09-04 14:27:20 -0600 | [diff] [blame] | 986 | int ret = 0; |
| 987 | |
| 988 | if (disk->fops->revalidate_disk) |
| 989 | ret = disk->fops->revalidate_disk(disk); |
| 990 | |
Andrew Patterson | c3279d1 | 2008-09-04 14:27:25 -0600 | [diff] [blame] | 991 | bdev = bdget_disk(disk, 0); |
| 992 | if (!bdev) |
| 993 | return ret; |
| 994 | |
| 995 | mutex_lock(&bdev->bd_mutex); |
| 996 | check_disk_size_change(disk, bdev); |
| 997 | mutex_unlock(&bdev->bd_mutex); |
| 998 | bdput(bdev); |
Andrew Patterson | 0c002c2 | 2008-09-04 14:27:20 -0600 | [diff] [blame] | 999 | return ret; |
| 1000 | } |
| 1001 | EXPORT_SYMBOL(revalidate_disk); |
| 1002 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1003 | /* |
| 1004 | * This routine checks whether a removable media has been changed, |
| 1005 | * and invalidates all buffer-cache-entries in that case. This |
| 1006 | * is a relatively slow routine, so we have to try to minimize using |
| 1007 | * it. Thus it is called only upon a 'mount' or 'open'. This |
| 1008 | * is the best way of combining speed and utility, I think. |
| 1009 | * People changing diskettes in the middle of an operation deserve |
| 1010 | * to lose :-) |
| 1011 | */ |
| 1012 | int check_disk_change(struct block_device *bdev) |
| 1013 | { |
| 1014 | struct gendisk *disk = bdev->bd_disk; |
Alexey Dobriyan | 83d5cde | 2009-09-21 17:01:13 -0700 | [diff] [blame] | 1015 | const struct block_device_operations *bdops = disk->fops; |
Tejun Heo | 77ea887 | 2010-12-08 20:57:37 +0100 | [diff] [blame] | 1016 | unsigned int events; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1017 | |
Tejun Heo | 77ea887 | 2010-12-08 20:57:37 +0100 | [diff] [blame] | 1018 | events = disk_clear_events(disk, DISK_EVENT_MEDIA_CHANGE | |
| 1019 | DISK_EVENT_EJECT_REQUEST); |
| 1020 | if (!(events & DISK_EVENT_MEDIA_CHANGE)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1021 | return 0; |
| 1022 | |
NeilBrown | 93b270f | 2011-02-24 17:25:47 +1100 | [diff] [blame] | 1023 | flush_disk(bdev, true); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1024 | if (bdops->revalidate_disk) |
| 1025 | bdops->revalidate_disk(bdev->bd_disk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1026 | return 1; |
| 1027 | } |
| 1028 | |
| 1029 | EXPORT_SYMBOL(check_disk_change); |
| 1030 | |
| 1031 | void bd_set_size(struct block_device *bdev, loff_t size) |
| 1032 | { |
Martin K. Petersen | e1defc4 | 2009-05-22 17:17:49 -0400 | [diff] [blame] | 1033 | unsigned bsize = bdev_logical_block_size(bdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1034 | |
| 1035 | bdev->bd_inode->i_size = size; |
| 1036 | while (bsize < PAGE_CACHE_SIZE) { |
| 1037 | if (size & bsize) |
| 1038 | break; |
| 1039 | bsize <<= 1; |
| 1040 | } |
| 1041 | bdev->bd_block_size = bsize; |
| 1042 | bdev->bd_inode->i_blkbits = blksize_bits(bsize); |
| 1043 | } |
| 1044 | EXPORT_SYMBOL(bd_set_size); |
| 1045 | |
Al Viro | 9a1c354 | 2008-02-22 20:40:24 -0500 | [diff] [blame] | 1046 | static int __blkdev_put(struct block_device *bdev, fmode_t mode, int for_part); |
NeilBrown | 37be412 | 2006-12-08 02:36:16 -0800 | [diff] [blame] | 1047 | |
Peter Zijlstra | 6d740cd | 2007-02-20 13:58:18 -0800 | [diff] [blame] | 1048 | /* |
| 1049 | * bd_mutex locking: |
| 1050 | * |
| 1051 | * mutex_lock(part->bd_mutex) |
| 1052 | * mutex_lock_nested(whole->bd_mutex, 1) |
| 1053 | */ |
| 1054 | |
Al Viro | 572c489 | 2007-10-08 13:24:05 -0400 | [diff] [blame] | 1055 | static int __blkdev_get(struct block_device *bdev, fmode_t mode, int for_part) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1056 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1057 | struct gendisk *disk; |
Tejun Heo | 523e1d3 | 2011-10-19 14:31:07 +0200 | [diff] [blame] | 1058 | struct module *owner; |
Pavel Emelyanov | 7db9cfd | 2008-06-05 22:46:27 -0700 | [diff] [blame] | 1059 | int ret; |
Tejun Heo | cf771cb | 2008-09-03 09:01:09 +0200 | [diff] [blame] | 1060 | int partno; |
Al Viro | fe6e9c1 | 2008-06-23 08:30:55 -0400 | [diff] [blame] | 1061 | int perm = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1062 | |
Al Viro | 572c489 | 2007-10-08 13:24:05 -0400 | [diff] [blame] | 1063 | if (mode & FMODE_READ) |
Al Viro | fe6e9c1 | 2008-06-23 08:30:55 -0400 | [diff] [blame] | 1064 | perm |= MAY_READ; |
Al Viro | 572c489 | 2007-10-08 13:24:05 -0400 | [diff] [blame] | 1065 | if (mode & FMODE_WRITE) |
Al Viro | fe6e9c1 | 2008-06-23 08:30:55 -0400 | [diff] [blame] | 1066 | perm |= MAY_WRITE; |
| 1067 | /* |
| 1068 | * hooks: /n/, see "layering violations". |
| 1069 | */ |
Chris Wright | b7300b7 | 2010-08-10 18:02:55 -0700 | [diff] [blame] | 1070 | if (!for_part) { |
| 1071 | ret = devcgroup_inode_permission(bdev->bd_inode, perm); |
| 1072 | if (ret != 0) { |
| 1073 | bdput(bdev); |
| 1074 | return ret; |
| 1075 | } |
Al Viro | 8266602 | 2008-08-01 05:32:04 -0400 | [diff] [blame] | 1076 | } |
Pavel Emelyanov | 7db9cfd | 2008-06-05 22:46:27 -0700 | [diff] [blame] | 1077 | |
NeilBrown | d337482 | 2009-01-09 08:31:10 +1100 | [diff] [blame] | 1078 | restart: |
Tejun Heo | 0762b8b | 2008-08-25 19:56:12 +0900 | [diff] [blame] | 1079 | |
Tejun Heo | 89f9749 | 2008-11-05 10:21:06 +0100 | [diff] [blame] | 1080 | ret = -ENXIO; |
Tejun Heo | cf771cb | 2008-09-03 09:01:09 +0200 | [diff] [blame] | 1081 | disk = get_gendisk(bdev->bd_dev, &partno); |
Tejun Heo | 0762b8b | 2008-08-25 19:56:12 +0900 | [diff] [blame] | 1082 | if (!disk) |
Arnd Bergmann | 6e9624b | 2010-08-07 18:25:34 +0200 | [diff] [blame] | 1083 | goto out; |
Tejun Heo | 523e1d3 | 2011-10-19 14:31:07 +0200 | [diff] [blame] | 1084 | owner = disk->fops->owner; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1085 | |
Tejun Heo | 69e02c5 | 2011-03-09 19:54:27 +0100 | [diff] [blame] | 1086 | disk_block_events(disk); |
NeilBrown | 6796bf5 | 2006-12-08 02:36:16 -0800 | [diff] [blame] | 1087 | mutex_lock_nested(&bdev->bd_mutex, for_part); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1088 | if (!bdev->bd_openers) { |
| 1089 | bdev->bd_disk = disk; |
Andi Kleen | 87192a2 | 2012-01-12 17:20:34 -0800 | [diff] [blame] | 1090 | bdev->bd_queue = disk->queue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1091 | bdev->bd_contains = bdev; |
Tejun Heo | cf771cb | 2008-09-03 09:01:09 +0200 | [diff] [blame] | 1092 | if (!partno) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1093 | struct backing_dev_info *bdi; |
Tejun Heo | 89f9749 | 2008-11-05 10:21:06 +0100 | [diff] [blame] | 1094 | |
| 1095 | ret = -ENXIO; |
| 1096 | bdev->bd_part = disk_get_part(disk, partno); |
| 1097 | if (!bdev->bd_part) |
| 1098 | goto out_clear; |
| 1099 | |
Tejun Heo | 1196f8b | 2011-04-21 20:54:45 +0200 | [diff] [blame] | 1100 | ret = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1101 | if (disk->fops->open) { |
Al Viro | 572c489 | 2007-10-08 13:24:05 -0400 | [diff] [blame] | 1102 | ret = disk->fops->open(bdev, mode); |
NeilBrown | d337482 | 2009-01-09 08:31:10 +1100 | [diff] [blame] | 1103 | if (ret == -ERESTARTSYS) { |
| 1104 | /* Lost a race with 'disk' being |
| 1105 | * deleted, try again. |
| 1106 | * See md.c |
| 1107 | */ |
| 1108 | disk_put_part(bdev->bd_part); |
| 1109 | bdev->bd_part = NULL; |
NeilBrown | d337482 | 2009-01-09 08:31:10 +1100 | [diff] [blame] | 1110 | bdev->bd_disk = NULL; |
Andi Kleen | 87192a2 | 2012-01-12 17:20:34 -0800 | [diff] [blame] | 1111 | bdev->bd_queue = NULL; |
NeilBrown | d337482 | 2009-01-09 08:31:10 +1100 | [diff] [blame] | 1112 | mutex_unlock(&bdev->bd_mutex); |
Tejun Heo | 69e02c5 | 2011-03-09 19:54:27 +0100 | [diff] [blame] | 1113 | disk_unblock_events(disk); |
Tejun Heo | 69e02c5 | 2011-03-09 19:54:27 +0100 | [diff] [blame] | 1114 | put_disk(disk); |
Tejun Heo | 523e1d3 | 2011-10-19 14:31:07 +0200 | [diff] [blame] | 1115 | module_put(owner); |
NeilBrown | d337482 | 2009-01-09 08:31:10 +1100 | [diff] [blame] | 1116 | goto restart; |
| 1117 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1118 | } |
Tejun Heo | 7e69723 | 2011-05-23 13:26:07 +0200 | [diff] [blame] | 1119 | |
| 1120 | if (!ret && !bdev->bd_openers) { |
| 1121 | bd_set_size(bdev,(loff_t)get_capacity(disk)<<9); |
| 1122 | bdi = blk_get_backing_dev_info(bdev); |
| 1123 | if (bdi == NULL) |
| 1124 | bdi = &default_backing_dev_info; |
| 1125 | bdev_inode_switch_bdi(bdev->bd_inode, bdi); |
| 1126 | } |
| 1127 | |
Tejun Heo | 1196f8b | 2011-04-21 20:54:45 +0200 | [diff] [blame] | 1128 | /* |
| 1129 | * If the device is invalidated, rescan partition |
| 1130 | * if open succeeded or failed with -ENOMEDIUM. |
| 1131 | * The latter is necessary to prevent ghost |
| 1132 | * partitions on a removed medium. |
| 1133 | */ |
Jun'ichi Nomura | fe316bf | 2012-03-02 10:38:33 +0100 | [diff] [blame] | 1134 | if (bdev->bd_invalidated) { |
| 1135 | if (!ret) |
| 1136 | rescan_partitions(disk, bdev); |
| 1137 | else if (ret == -ENOMEDIUM) |
| 1138 | invalidate_partitions(disk, bdev); |
| 1139 | } |
Tejun Heo | 1196f8b | 2011-04-21 20:54:45 +0200 | [diff] [blame] | 1140 | if (ret) |
| 1141 | goto out_clear; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1142 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1143 | struct block_device *whole; |
| 1144 | whole = bdget_disk(disk, 0); |
| 1145 | ret = -ENOMEM; |
| 1146 | if (!whole) |
Tejun Heo | 0762b8b | 2008-08-25 19:56:12 +0900 | [diff] [blame] | 1147 | goto out_clear; |
NeilBrown | 37be412 | 2006-12-08 02:36:16 -0800 | [diff] [blame] | 1148 | BUG_ON(for_part); |
Al Viro | 572c489 | 2007-10-08 13:24:05 -0400 | [diff] [blame] | 1149 | ret = __blkdev_get(whole, mode, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1150 | if (ret) |
Tejun Heo | 0762b8b | 2008-08-25 19:56:12 +0900 | [diff] [blame] | 1151 | goto out_clear; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1152 | bdev->bd_contains = whole; |
Dave Chinner | a5491e0 | 2010-10-21 11:49:26 +1100 | [diff] [blame] | 1153 | bdev_inode_switch_bdi(bdev->bd_inode, |
| 1154 | whole->bd_inode->i_data.backing_dev_info); |
Tejun Heo | 89f9749 | 2008-11-05 10:21:06 +0100 | [diff] [blame] | 1155 | bdev->bd_part = disk_get_part(disk, partno); |
Tejun Heo | e71bf0d | 2008-09-03 09:03:02 +0200 | [diff] [blame] | 1156 | if (!(disk->flags & GENHD_FL_UP) || |
Tejun Heo | 89f9749 | 2008-11-05 10:21:06 +0100 | [diff] [blame] | 1157 | !bdev->bd_part || !bdev->bd_part->nr_sects) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1158 | ret = -ENXIO; |
Tejun Heo | 0762b8b | 2008-08-25 19:56:12 +0900 | [diff] [blame] | 1159 | goto out_clear; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1160 | } |
Tejun Heo | 89f9749 | 2008-11-05 10:21:06 +0100 | [diff] [blame] | 1161 | bd_set_size(bdev, (loff_t)bdev->bd_part->nr_sects << 9); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1162 | } |
| 1163 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1164 | if (bdev->bd_contains == bdev) { |
Tejun Heo | 1196f8b | 2011-04-21 20:54:45 +0200 | [diff] [blame] | 1165 | ret = 0; |
| 1166 | if (bdev->bd_disk->fops->open) |
Al Viro | 572c489 | 2007-10-08 13:24:05 -0400 | [diff] [blame] | 1167 | ret = bdev->bd_disk->fops->open(bdev, mode); |
Tejun Heo | 1196f8b | 2011-04-21 20:54:45 +0200 | [diff] [blame] | 1168 | /* the same as first opener case, read comment there */ |
Jun'ichi Nomura | fe316bf | 2012-03-02 10:38:33 +0100 | [diff] [blame] | 1169 | if (bdev->bd_invalidated) { |
| 1170 | if (!ret) |
| 1171 | rescan_partitions(bdev->bd_disk, bdev); |
| 1172 | else if (ret == -ENOMEDIUM) |
| 1173 | invalidate_partitions(bdev->bd_disk, bdev); |
| 1174 | } |
Tejun Heo | 1196f8b | 2011-04-21 20:54:45 +0200 | [diff] [blame] | 1175 | if (ret) |
| 1176 | goto out_unlock_bdev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1177 | } |
Tejun Heo | 69e02c5 | 2011-03-09 19:54:27 +0100 | [diff] [blame] | 1178 | /* only one opener holds refs to the module and disk */ |
Tejun Heo | 69e02c5 | 2011-03-09 19:54:27 +0100 | [diff] [blame] | 1179 | put_disk(disk); |
Tejun Heo | 523e1d3 | 2011-10-19 14:31:07 +0200 | [diff] [blame] | 1180 | module_put(owner); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1181 | } |
| 1182 | bdev->bd_openers++; |
NeilBrown | 37be412 | 2006-12-08 02:36:16 -0800 | [diff] [blame] | 1183 | if (for_part) |
| 1184 | bdev->bd_part_count++; |
Arjan van de Ven | c039e31 | 2006-03-23 03:00:28 -0800 | [diff] [blame] | 1185 | mutex_unlock(&bdev->bd_mutex); |
Tejun Heo | 69e02c5 | 2011-03-09 19:54:27 +0100 | [diff] [blame] | 1186 | disk_unblock_events(disk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1187 | return 0; |
| 1188 | |
Tejun Heo | 0762b8b | 2008-08-25 19:56:12 +0900 | [diff] [blame] | 1189 | out_clear: |
Tejun Heo | 89f9749 | 2008-11-05 10:21:06 +0100 | [diff] [blame] | 1190 | disk_put_part(bdev->bd_part); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1191 | bdev->bd_disk = NULL; |
Tejun Heo | 0762b8b | 2008-08-25 19:56:12 +0900 | [diff] [blame] | 1192 | bdev->bd_part = NULL; |
Andi Kleen | 87192a2 | 2012-01-12 17:20:34 -0800 | [diff] [blame] | 1193 | bdev->bd_queue = NULL; |
Dave Chinner | a5491e0 | 2010-10-21 11:49:26 +1100 | [diff] [blame] | 1194 | bdev_inode_switch_bdi(bdev->bd_inode, &default_backing_dev_info); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1195 | if (bdev != bdev->bd_contains) |
Al Viro | 572c489 | 2007-10-08 13:24:05 -0400 | [diff] [blame] | 1196 | __blkdev_put(bdev->bd_contains, mode, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1197 | bdev->bd_contains = NULL; |
Tejun Heo | 0762b8b | 2008-08-25 19:56:12 +0900 | [diff] [blame] | 1198 | out_unlock_bdev: |
Arjan van de Ven | c039e31 | 2006-03-23 03:00:28 -0800 | [diff] [blame] | 1199 | mutex_unlock(&bdev->bd_mutex); |
Tejun Heo | 69e02c5 | 2011-03-09 19:54:27 +0100 | [diff] [blame] | 1200 | disk_unblock_events(disk); |
Tejun Heo | 0762b8b | 2008-08-25 19:56:12 +0900 | [diff] [blame] | 1201 | put_disk(disk); |
Tejun Heo | 523e1d3 | 2011-10-19 14:31:07 +0200 | [diff] [blame] | 1202 | module_put(owner); |
Dan Carpenter | 4345cab | 2011-03-19 13:53:31 +0100 | [diff] [blame] | 1203 | out: |
Tejun Heo | 0762b8b | 2008-08-25 19:56:12 +0900 | [diff] [blame] | 1204 | bdput(bdev); |
| 1205 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1206 | return ret; |
| 1207 | } |
| 1208 | |
Tejun Heo | d4d7762 | 2010-11-13 11:55:18 +0100 | [diff] [blame] | 1209 | /** |
| 1210 | * blkdev_get - open a block device |
| 1211 | * @bdev: block_device to open |
| 1212 | * @mode: FMODE_* mask |
| 1213 | * @holder: exclusive holder identifier |
| 1214 | * |
| 1215 | * Open @bdev with @mode. If @mode includes %FMODE_EXCL, @bdev is |
| 1216 | * open with exclusive access. Specifying %FMODE_EXCL with %NULL |
| 1217 | * @holder is invalid. Exclusive opens may nest for the same @holder. |
| 1218 | * |
| 1219 | * On success, the reference count of @bdev is unchanged. On failure, |
| 1220 | * @bdev is put. |
| 1221 | * |
| 1222 | * CONTEXT: |
| 1223 | * Might sleep. |
| 1224 | * |
| 1225 | * RETURNS: |
| 1226 | * 0 on success, -errno on failure. |
| 1227 | */ |
Tejun Heo | e525fd8 | 2010-11-13 11:55:17 +0100 | [diff] [blame] | 1228 | int blkdev_get(struct block_device *bdev, fmode_t mode, void *holder) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1229 | { |
Tejun Heo | e525fd8 | 2010-11-13 11:55:17 +0100 | [diff] [blame] | 1230 | struct block_device *whole = NULL; |
| 1231 | int res; |
| 1232 | |
| 1233 | WARN_ON_ONCE((mode & FMODE_EXCL) && !holder); |
| 1234 | |
| 1235 | if ((mode & FMODE_EXCL) && holder) { |
| 1236 | whole = bd_start_claiming(bdev, holder); |
| 1237 | if (IS_ERR(whole)) { |
| 1238 | bdput(bdev); |
| 1239 | return PTR_ERR(whole); |
| 1240 | } |
| 1241 | } |
| 1242 | |
| 1243 | res = __blkdev_get(bdev, mode, 0); |
| 1244 | |
| 1245 | if (whole) { |
Tejun Heo | d4dc210 | 2011-04-21 20:54:46 +0200 | [diff] [blame] | 1246 | struct gendisk *disk = whole->bd_disk; |
| 1247 | |
Tejun Heo | 6a027ef | 2010-11-13 11:55:17 +0100 | [diff] [blame] | 1248 | /* finish claiming */ |
Tejun Heo | 77ea887 | 2010-12-08 20:57:37 +0100 | [diff] [blame] | 1249 | mutex_lock(&bdev->bd_mutex); |
Tejun Heo | 6a027ef | 2010-11-13 11:55:17 +0100 | [diff] [blame] | 1250 | spin_lock(&bdev_lock); |
| 1251 | |
Tejun Heo | 77ea887 | 2010-12-08 20:57:37 +0100 | [diff] [blame] | 1252 | if (!res) { |
Tejun Heo | 6a027ef | 2010-11-13 11:55:17 +0100 | [diff] [blame] | 1253 | BUG_ON(!bd_may_claim(bdev, whole, holder)); |
| 1254 | /* |
| 1255 | * Note that for a whole device bd_holders |
| 1256 | * will be incremented twice, and bd_holder |
| 1257 | * will be set to bd_may_claim before being |
| 1258 | * set to holder |
| 1259 | */ |
| 1260 | whole->bd_holders++; |
| 1261 | whole->bd_holder = bd_may_claim; |
| 1262 | bdev->bd_holders++; |
| 1263 | bdev->bd_holder = holder; |
| 1264 | } |
| 1265 | |
| 1266 | /* tell others that we're done */ |
| 1267 | BUG_ON(whole->bd_claiming != holder); |
| 1268 | whole->bd_claiming = NULL; |
| 1269 | wake_up_bit(&whole->bd_claiming, 0); |
| 1270 | |
| 1271 | spin_unlock(&bdev_lock); |
Tejun Heo | 77ea887 | 2010-12-08 20:57:37 +0100 | [diff] [blame] | 1272 | |
| 1273 | /* |
Tejun Heo | d4dc210 | 2011-04-21 20:54:46 +0200 | [diff] [blame] | 1274 | * Block event polling for write claims if requested. Any |
| 1275 | * write holder makes the write_holder state stick until |
| 1276 | * all are released. This is good enough and tracking |
| 1277 | * individual writeable reference is too fragile given the |
| 1278 | * way @mode is used in blkdev_get/put(). |
Tejun Heo | 77ea887 | 2010-12-08 20:57:37 +0100 | [diff] [blame] | 1279 | */ |
Tejun Heo | 4c49ff3 | 2011-06-01 08:27:41 +0200 | [diff] [blame] | 1280 | if (!res && (mode & FMODE_WRITE) && !bdev->bd_write_holder && |
| 1281 | (disk->flags & GENHD_FL_BLOCK_EVENTS_ON_EXCL_WRITE)) { |
Tejun Heo | 77ea887 | 2010-12-08 20:57:37 +0100 | [diff] [blame] | 1282 | bdev->bd_write_holder = true; |
Tejun Heo | d4dc210 | 2011-04-21 20:54:46 +0200 | [diff] [blame] | 1283 | disk_block_events(disk); |
Tejun Heo | 77ea887 | 2010-12-08 20:57:37 +0100 | [diff] [blame] | 1284 | } |
| 1285 | |
| 1286 | mutex_unlock(&bdev->bd_mutex); |
Tejun Heo | 6a027ef | 2010-11-13 11:55:17 +0100 | [diff] [blame] | 1287 | bdput(whole); |
Tejun Heo | e525fd8 | 2010-11-13 11:55:17 +0100 | [diff] [blame] | 1288 | } |
| 1289 | |
| 1290 | return res; |
NeilBrown | 37be412 | 2006-12-08 02:36:16 -0800 | [diff] [blame] | 1291 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1292 | EXPORT_SYMBOL(blkdev_get); |
| 1293 | |
Tejun Heo | d4d7762 | 2010-11-13 11:55:18 +0100 | [diff] [blame] | 1294 | /** |
| 1295 | * blkdev_get_by_path - open a block device by name |
| 1296 | * @path: path to the block device to open |
| 1297 | * @mode: FMODE_* mask |
| 1298 | * @holder: exclusive holder identifier |
| 1299 | * |
| 1300 | * Open the blockdevice described by the device file at @path. @mode |
| 1301 | * and @holder are identical to blkdev_get(). |
| 1302 | * |
| 1303 | * On success, the returned block_device has reference count of one. |
| 1304 | * |
| 1305 | * CONTEXT: |
| 1306 | * Might sleep. |
| 1307 | * |
| 1308 | * RETURNS: |
| 1309 | * Pointer to block_device on success, ERR_PTR(-errno) on failure. |
| 1310 | */ |
| 1311 | struct block_device *blkdev_get_by_path(const char *path, fmode_t mode, |
| 1312 | void *holder) |
| 1313 | { |
| 1314 | struct block_device *bdev; |
| 1315 | int err; |
| 1316 | |
| 1317 | bdev = lookup_bdev(path); |
| 1318 | if (IS_ERR(bdev)) |
| 1319 | return bdev; |
| 1320 | |
| 1321 | err = blkdev_get(bdev, mode, holder); |
| 1322 | if (err) |
| 1323 | return ERR_PTR(err); |
| 1324 | |
Chuck Ebbert | e51900f | 2011-02-16 18:11:53 -0500 | [diff] [blame] | 1325 | if ((mode & FMODE_WRITE) && bdev_read_only(bdev)) { |
| 1326 | blkdev_put(bdev, mode); |
| 1327 | return ERR_PTR(-EACCES); |
| 1328 | } |
| 1329 | |
Tejun Heo | d4d7762 | 2010-11-13 11:55:18 +0100 | [diff] [blame] | 1330 | return bdev; |
| 1331 | } |
| 1332 | EXPORT_SYMBOL(blkdev_get_by_path); |
| 1333 | |
| 1334 | /** |
| 1335 | * blkdev_get_by_dev - open a block device by device number |
| 1336 | * @dev: device number of block device to open |
| 1337 | * @mode: FMODE_* mask |
| 1338 | * @holder: exclusive holder identifier |
| 1339 | * |
| 1340 | * Open the blockdevice described by device number @dev. @mode and |
| 1341 | * @holder are identical to blkdev_get(). |
| 1342 | * |
| 1343 | * Use it ONLY if you really do not have anything better - i.e. when |
| 1344 | * you are behind a truly sucky interface and all you are given is a |
| 1345 | * device number. _Never_ to be used for internal purposes. If you |
| 1346 | * ever need it - reconsider your API. |
| 1347 | * |
| 1348 | * On success, the returned block_device has reference count of one. |
| 1349 | * |
| 1350 | * CONTEXT: |
| 1351 | * Might sleep. |
| 1352 | * |
| 1353 | * RETURNS: |
| 1354 | * Pointer to block_device on success, ERR_PTR(-errno) on failure. |
| 1355 | */ |
| 1356 | struct block_device *blkdev_get_by_dev(dev_t dev, fmode_t mode, void *holder) |
| 1357 | { |
| 1358 | struct block_device *bdev; |
| 1359 | int err; |
| 1360 | |
| 1361 | bdev = bdget(dev); |
| 1362 | if (!bdev) |
| 1363 | return ERR_PTR(-ENOMEM); |
| 1364 | |
| 1365 | err = blkdev_get(bdev, mode, holder); |
| 1366 | if (err) |
| 1367 | return ERR_PTR(err); |
| 1368 | |
| 1369 | return bdev; |
| 1370 | } |
| 1371 | EXPORT_SYMBOL(blkdev_get_by_dev); |
| 1372 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1373 | static int blkdev_open(struct inode * inode, struct file * filp) |
| 1374 | { |
| 1375 | struct block_device *bdev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1376 | |
| 1377 | /* |
| 1378 | * Preserve backwards compatibility and allow large file access |
| 1379 | * even if userspace doesn't ask for it explicitly. Some mkfs |
| 1380 | * binary needs it. We might want to drop this workaround |
| 1381 | * during an unstable branch. |
| 1382 | */ |
| 1383 | filp->f_flags |= O_LARGEFILE; |
| 1384 | |
Al Viro | 572c489 | 2007-10-08 13:24:05 -0400 | [diff] [blame] | 1385 | if (filp->f_flags & O_NDELAY) |
| 1386 | filp->f_mode |= FMODE_NDELAY; |
| 1387 | if (filp->f_flags & O_EXCL) |
| 1388 | filp->f_mode |= FMODE_EXCL; |
| 1389 | if ((filp->f_flags & O_ACCMODE) == 3) |
| 1390 | filp->f_mode |= FMODE_WRITE_IOCTL; |
| 1391 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1392 | bdev = bd_acquire(inode); |
Pavel Emelianov | 6a2aae0 | 2006-10-28 10:38:33 -0700 | [diff] [blame] | 1393 | if (bdev == NULL) |
| 1394 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1395 | |
Al Viro | 572c489 | 2007-10-08 13:24:05 -0400 | [diff] [blame] | 1396 | filp->f_mapping = bdev->bd_inode->i_mapping; |
| 1397 | |
Tejun Heo | e525fd8 | 2010-11-13 11:55:17 +0100 | [diff] [blame] | 1398 | return blkdev_get(bdev, filp->f_mode, filp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1399 | } |
| 1400 | |
Al Viro | 9a1c354 | 2008-02-22 20:40:24 -0500 | [diff] [blame] | 1401 | static int __blkdev_put(struct block_device *bdev, fmode_t mode, int for_part) |
Peter Zijlstra | 2e7b651 | 2006-12-08 02:36:13 -0800 | [diff] [blame] | 1402 | { |
| 1403 | int ret = 0; |
Peter Zijlstra | 2e7b651 | 2006-12-08 02:36:13 -0800 | [diff] [blame] | 1404 | struct gendisk *disk = bdev->bd_disk; |
NeilBrown | 37be412 | 2006-12-08 02:36:16 -0800 | [diff] [blame] | 1405 | struct block_device *victim = NULL; |
Peter Zijlstra | 2e7b651 | 2006-12-08 02:36:13 -0800 | [diff] [blame] | 1406 | |
NeilBrown | 6796bf5 | 2006-12-08 02:36:16 -0800 | [diff] [blame] | 1407 | mutex_lock_nested(&bdev->bd_mutex, for_part); |
NeilBrown | 37be412 | 2006-12-08 02:36:16 -0800 | [diff] [blame] | 1408 | if (for_part) |
| 1409 | bdev->bd_part_count--; |
| 1410 | |
Peter Zijlstra | 2e7b651 | 2006-12-08 02:36:13 -0800 | [diff] [blame] | 1411 | if (!--bdev->bd_openers) { |
Tejun Heo | 6a027ef | 2010-11-13 11:55:17 +0100 | [diff] [blame] | 1412 | WARN_ON_ONCE(bdev->bd_holders); |
Peter Zijlstra | 2e7b651 | 2006-12-08 02:36:13 -0800 | [diff] [blame] | 1413 | sync_blockdev(bdev); |
| 1414 | kill_bdev(bdev); |
NeilBrown | 9400775 | 2011-09-10 17:20:21 +1000 | [diff] [blame] | 1415 | /* ->release can cause the old bdi to disappear, |
| 1416 | * so must switch it out first |
| 1417 | */ |
| 1418 | bdev_inode_switch_bdi(bdev->bd_inode, |
| 1419 | &default_backing_dev_info); |
Peter Zijlstra | 2e7b651 | 2006-12-08 02:36:13 -0800 | [diff] [blame] | 1420 | } |
| 1421 | if (bdev->bd_contains == bdev) { |
| 1422 | if (disk->fops->release) |
Al Viro | 9a1c354 | 2008-02-22 20:40:24 -0500 | [diff] [blame] | 1423 | ret = disk->fops->release(disk, mode); |
Peter Zijlstra | 2e7b651 | 2006-12-08 02:36:13 -0800 | [diff] [blame] | 1424 | } |
| 1425 | if (!bdev->bd_openers) { |
| 1426 | struct module *owner = disk->fops->owner; |
| 1427 | |
Tejun Heo | 0762b8b | 2008-08-25 19:56:12 +0900 | [diff] [blame] | 1428 | disk_put_part(bdev->bd_part); |
| 1429 | bdev->bd_part = NULL; |
Peter Zijlstra | 2e7b651 | 2006-12-08 02:36:13 -0800 | [diff] [blame] | 1430 | bdev->bd_disk = NULL; |
NeilBrown | 37be412 | 2006-12-08 02:36:16 -0800 | [diff] [blame] | 1431 | if (bdev != bdev->bd_contains) |
| 1432 | victim = bdev->bd_contains; |
Peter Zijlstra | 2e7b651 | 2006-12-08 02:36:13 -0800 | [diff] [blame] | 1433 | bdev->bd_contains = NULL; |
Tejun Heo | 523e1d3 | 2011-10-19 14:31:07 +0200 | [diff] [blame] | 1434 | |
| 1435 | put_disk(disk); |
| 1436 | module_put(owner); |
Peter Zijlstra | 2e7b651 | 2006-12-08 02:36:13 -0800 | [diff] [blame] | 1437 | } |
Peter Zijlstra | 2e7b651 | 2006-12-08 02:36:13 -0800 | [diff] [blame] | 1438 | mutex_unlock(&bdev->bd_mutex); |
| 1439 | bdput(bdev); |
NeilBrown | 37be412 | 2006-12-08 02:36:16 -0800 | [diff] [blame] | 1440 | if (victim) |
Al Viro | 9a1c354 | 2008-02-22 20:40:24 -0500 | [diff] [blame] | 1441 | __blkdev_put(victim, mode, 1); |
Peter Zijlstra | 2e7b651 | 2006-12-08 02:36:13 -0800 | [diff] [blame] | 1442 | return ret; |
| 1443 | } |
| 1444 | |
Al Viro | 9a1c354 | 2008-02-22 20:40:24 -0500 | [diff] [blame] | 1445 | int blkdev_put(struct block_device *bdev, fmode_t mode) |
NeilBrown | 37be412 | 2006-12-08 02:36:16 -0800 | [diff] [blame] | 1446 | { |
Tejun Heo | 85ef06d | 2011-07-01 16:17:47 +0200 | [diff] [blame] | 1447 | mutex_lock(&bdev->bd_mutex); |
| 1448 | |
Tejun Heo | e525fd8 | 2010-11-13 11:55:17 +0100 | [diff] [blame] | 1449 | if (mode & FMODE_EXCL) { |
Tejun Heo | 6a027ef | 2010-11-13 11:55:17 +0100 | [diff] [blame] | 1450 | bool bdev_free; |
| 1451 | |
| 1452 | /* |
| 1453 | * Release a claim on the device. The holder fields |
| 1454 | * are protected with bdev_lock. bd_mutex is to |
| 1455 | * synchronize disk_holder unlinking. |
| 1456 | */ |
Tejun Heo | 6a027ef | 2010-11-13 11:55:17 +0100 | [diff] [blame] | 1457 | spin_lock(&bdev_lock); |
| 1458 | |
| 1459 | WARN_ON_ONCE(--bdev->bd_holders < 0); |
| 1460 | WARN_ON_ONCE(--bdev->bd_contains->bd_holders < 0); |
| 1461 | |
| 1462 | /* bd_contains might point to self, check in a separate step */ |
| 1463 | if ((bdev_free = !bdev->bd_holders)) |
| 1464 | bdev->bd_holder = NULL; |
| 1465 | if (!bdev->bd_contains->bd_holders) |
| 1466 | bdev->bd_contains->bd_holder = NULL; |
| 1467 | |
| 1468 | spin_unlock(&bdev_lock); |
| 1469 | |
Tejun Heo | 77ea887 | 2010-12-08 20:57:37 +0100 | [diff] [blame] | 1470 | /* |
| 1471 | * If this was the last claim, remove holder link and |
| 1472 | * unblock evpoll if it was a write holder. |
| 1473 | */ |
Tejun Heo | 85ef06d | 2011-07-01 16:17:47 +0200 | [diff] [blame] | 1474 | if (bdev_free && bdev->bd_write_holder) { |
| 1475 | disk_unblock_events(bdev->bd_disk); |
| 1476 | bdev->bd_write_holder = false; |
Tejun Heo | 77ea887 | 2010-12-08 20:57:37 +0100 | [diff] [blame] | 1477 | } |
Tejun Heo | 6936217 | 2011-03-09 19:54:27 +0100 | [diff] [blame] | 1478 | } |
Tejun Heo | 77ea887 | 2010-12-08 20:57:37 +0100 | [diff] [blame] | 1479 | |
Tejun Heo | 85ef06d | 2011-07-01 16:17:47 +0200 | [diff] [blame] | 1480 | /* |
| 1481 | * Trigger event checking and tell drivers to flush MEDIA_CHANGE |
| 1482 | * event. This is to ensure detection of media removal commanded |
| 1483 | * from userland - e.g. eject(1). |
| 1484 | */ |
| 1485 | disk_flush_events(bdev->bd_disk, DISK_EVENT_MEDIA_CHANGE); |
| 1486 | |
| 1487 | mutex_unlock(&bdev->bd_mutex); |
| 1488 | |
Al Viro | 9a1c354 | 2008-02-22 20:40:24 -0500 | [diff] [blame] | 1489 | return __blkdev_put(bdev, mode, 0); |
NeilBrown | 37be412 | 2006-12-08 02:36:16 -0800 | [diff] [blame] | 1490 | } |
Peter Zijlstra | 2e7b651 | 2006-12-08 02:36:13 -0800 | [diff] [blame] | 1491 | EXPORT_SYMBOL(blkdev_put); |
| 1492 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1493 | static int blkdev_close(struct inode * inode, struct file * filp) |
| 1494 | { |
| 1495 | struct block_device *bdev = I_BDEV(filp->f_mapping->host); |
Tejun Heo | e525fd8 | 2010-11-13 11:55:17 +0100 | [diff] [blame] | 1496 | |
Al Viro | 9a1c354 | 2008-02-22 20:40:24 -0500 | [diff] [blame] | 1497 | return blkdev_put(bdev, filp->f_mode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1498 | } |
| 1499 | |
Arnd Bergmann | bb93e3a | 2005-06-23 00:10:15 -0700 | [diff] [blame] | 1500 | static long block_ioctl(struct file *file, unsigned cmd, unsigned long arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1501 | { |
Al Viro | 56b26ad | 2008-09-19 03:17:36 -0400 | [diff] [blame] | 1502 | struct block_device *bdev = I_BDEV(file->f_mapping->host); |
| 1503 | fmode_t mode = file->f_mode; |
Christoph Hellwig | fd4ce1a | 2008-11-05 14:58:42 +0100 | [diff] [blame] | 1504 | |
| 1505 | /* |
| 1506 | * O_NDELAY can be altered using fcntl(.., F_SETFL, ..), so we have |
| 1507 | * to updated it before every ioctl. |
| 1508 | */ |
Al Viro | 56b26ad | 2008-09-19 03:17:36 -0400 | [diff] [blame] | 1509 | if (file->f_flags & O_NDELAY) |
Christoph Hellwig | fd4ce1a | 2008-11-05 14:58:42 +0100 | [diff] [blame] | 1510 | mode |= FMODE_NDELAY; |
| 1511 | else |
| 1512 | mode &= ~FMODE_NDELAY; |
| 1513 | |
Al Viro | 56b26ad | 2008-09-19 03:17:36 -0400 | [diff] [blame] | 1514 | return blkdev_ioctl(bdev, mode, cmd, arg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1515 | } |
| 1516 | |
Theodore Ts'o | 87d8fe1 | 2009-01-03 09:47:09 -0500 | [diff] [blame] | 1517 | /* |
Christoph Hellwig | eef9938 | 2009-08-20 17:43:41 +0200 | [diff] [blame] | 1518 | * Write data to the block device. Only intended for the block device itself |
| 1519 | * and the raw driver which basically is a fake block device. |
| 1520 | * |
| 1521 | * Does not take i_mutex for the write and thus is not for general purpose |
| 1522 | * use. |
| 1523 | */ |
| 1524 | ssize_t blkdev_aio_write(struct kiocb *iocb, const struct iovec *iov, |
| 1525 | unsigned long nr_segs, loff_t pos) |
| 1526 | { |
| 1527 | struct file *file = iocb->ki_filp; |
Jianpeng Ma | 53362a0 | 2012-08-02 09:50:39 +0200 | [diff] [blame] | 1528 | struct blk_plug plug; |
Christoph Hellwig | eef9938 | 2009-08-20 17:43:41 +0200 | [diff] [blame] | 1529 | ssize_t ret; |
| 1530 | |
| 1531 | BUG_ON(iocb->ki_pos != pos); |
| 1532 | |
Jianpeng Ma | 53362a0 | 2012-08-02 09:50:39 +0200 | [diff] [blame] | 1533 | blk_start_plug(&plug); |
Christoph Hellwig | eef9938 | 2009-08-20 17:43:41 +0200 | [diff] [blame] | 1534 | ret = __generic_file_aio_write(iocb, iov, nr_segs, &iocb->ki_pos); |
| 1535 | if (ret > 0 || ret == -EIOCBQUEUED) { |
| 1536 | ssize_t err; |
| 1537 | |
| 1538 | err = generic_write_sync(file, pos, ret); |
| 1539 | if (err < 0 && ret > 0) |
| 1540 | ret = err; |
| 1541 | } |
Jianpeng Ma | 53362a0 | 2012-08-02 09:50:39 +0200 | [diff] [blame] | 1542 | blk_finish_plug(&plug); |
Christoph Hellwig | eef9938 | 2009-08-20 17:43:41 +0200 | [diff] [blame] | 1543 | return ret; |
| 1544 | } |
| 1545 | EXPORT_SYMBOL_GPL(blkdev_aio_write); |
| 1546 | |
Linus Torvalds | 684c9aa | 2012-12-07 16:48:39 -0800 | [diff] [blame] | 1547 | static ssize_t blkdev_aio_read(struct kiocb *iocb, const struct iovec *iov, |
| 1548 | unsigned long nr_segs, loff_t pos) |
| 1549 | { |
| 1550 | struct file *file = iocb->ki_filp; |
| 1551 | struct inode *bd_inode = file->f_mapping->host; |
| 1552 | loff_t size = i_size_read(bd_inode); |
| 1553 | |
| 1554 | if (pos >= size) |
| 1555 | return 0; |
| 1556 | |
| 1557 | size -= pos; |
| 1558 | if (size < INT_MAX) |
| 1559 | nr_segs = iov_shorten((struct iovec *)iov, nr_segs, size); |
| 1560 | return generic_file_aio_read(iocb, iov, nr_segs, pos); |
| 1561 | } |
| 1562 | |
Christoph Hellwig | eef9938 | 2009-08-20 17:43:41 +0200 | [diff] [blame] | 1563 | /* |
Theodore Ts'o | 87d8fe1 | 2009-01-03 09:47:09 -0500 | [diff] [blame] | 1564 | * Try to release a page associated with block device when the system |
| 1565 | * is under memory pressure. |
| 1566 | */ |
| 1567 | static int blkdev_releasepage(struct page *page, gfp_t wait) |
| 1568 | { |
| 1569 | struct super_block *super = BDEV_I(page->mapping->host)->bdev.bd_super; |
| 1570 | |
| 1571 | if (super && super->s_op->bdev_try_to_free_page) |
| 1572 | return super->s_op->bdev_try_to_free_page(super, page, wait); |
| 1573 | |
| 1574 | return try_to_free_buffers(page); |
| 1575 | } |
| 1576 | |
Adrian Bunk | 4c54ac6 | 2008-02-18 13:48:31 +0100 | [diff] [blame] | 1577 | static const struct address_space_operations def_blk_aops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1578 | .readpage = blkdev_readpage, |
| 1579 | .writepage = blkdev_writepage, |
Nick Piggin | 6272b5a | 2007-10-16 01:25:04 -0700 | [diff] [blame] | 1580 | .write_begin = blkdev_write_begin, |
| 1581 | .write_end = blkdev_write_end, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1582 | .writepages = generic_writepages, |
Theodore Ts'o | 87d8fe1 | 2009-01-03 09:47:09 -0500 | [diff] [blame] | 1583 | .releasepage = blkdev_releasepage, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1584 | .direct_IO = blkdev_direct_IO, |
| 1585 | }; |
| 1586 | |
Arjan van de Ven | 4b6f5d2 | 2006-03-28 01:56:42 -0800 | [diff] [blame] | 1587 | const struct file_operations def_blk_fops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1588 | .open = blkdev_open, |
| 1589 | .release = blkdev_close, |
| 1590 | .llseek = block_llseek, |
Badari Pulavarty | 543ade1 | 2006-09-30 23:28:48 -0700 | [diff] [blame] | 1591 | .read = do_sync_read, |
| 1592 | .write = do_sync_write, |
Linus Torvalds | 684c9aa | 2012-12-07 16:48:39 -0800 | [diff] [blame] | 1593 | .aio_read = blkdev_aio_read, |
Christoph Hellwig | eef9938 | 2009-08-20 17:43:41 +0200 | [diff] [blame] | 1594 | .aio_write = blkdev_aio_write, |
Linus Torvalds | 1e8b333 | 2012-11-29 10:49:50 -0800 | [diff] [blame] | 1595 | .mmap = generic_file_mmap, |
Andrew Morton | b1dd3b2 | 2010-04-06 14:35:00 -0700 | [diff] [blame] | 1596 | .fsync = blkdev_fsync, |
Arnd Bergmann | bb93e3a | 2005-06-23 00:10:15 -0700 | [diff] [blame] | 1597 | .unlocked_ioctl = block_ioctl, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1598 | #ifdef CONFIG_COMPAT |
| 1599 | .compat_ioctl = compat_blkdev_ioctl, |
| 1600 | #endif |
Linus Torvalds | 1e8b333 | 2012-11-29 10:49:50 -0800 | [diff] [blame] | 1601 | .splice_read = generic_file_splice_read, |
| 1602 | .splice_write = generic_file_splice_write, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1603 | }; |
| 1604 | |
| 1605 | int ioctl_by_bdev(struct block_device *bdev, unsigned cmd, unsigned long arg) |
| 1606 | { |
| 1607 | int res; |
| 1608 | mm_segment_t old_fs = get_fs(); |
| 1609 | set_fs(KERNEL_DS); |
Al Viro | 56b26ad | 2008-09-19 03:17:36 -0400 | [diff] [blame] | 1610 | res = blkdev_ioctl(bdev, 0, cmd, arg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1611 | set_fs(old_fs); |
| 1612 | return res; |
| 1613 | } |
| 1614 | |
| 1615 | EXPORT_SYMBOL(ioctl_by_bdev); |
| 1616 | |
| 1617 | /** |
| 1618 | * lookup_bdev - lookup a struct block_device by name |
Randy Dunlap | 94e2959 | 2009-01-06 14:41:15 -0800 | [diff] [blame] | 1619 | * @pathname: special file representing the block device |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1620 | * |
Randy Dunlap | 57d1b53 | 2008-10-09 10:42:38 +0200 | [diff] [blame] | 1621 | * Get a reference to the blockdevice at @pathname in the current |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1622 | * namespace if possible and return it. Return ERR_PTR(error) |
| 1623 | * otherwise. |
| 1624 | */ |
Al Viro | 421748e | 2008-08-02 01:04:36 -0400 | [diff] [blame] | 1625 | struct block_device *lookup_bdev(const char *pathname) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1626 | { |
| 1627 | struct block_device *bdev; |
| 1628 | struct inode *inode; |
Al Viro | 421748e | 2008-08-02 01:04:36 -0400 | [diff] [blame] | 1629 | struct path path; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1630 | int error; |
| 1631 | |
Al Viro | 421748e | 2008-08-02 01:04:36 -0400 | [diff] [blame] | 1632 | if (!pathname || !*pathname) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1633 | return ERR_PTR(-EINVAL); |
| 1634 | |
Al Viro | 421748e | 2008-08-02 01:04:36 -0400 | [diff] [blame] | 1635 | error = kern_path(pathname, LOOKUP_FOLLOW, &path); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1636 | if (error) |
| 1637 | return ERR_PTR(error); |
| 1638 | |
Al Viro | 421748e | 2008-08-02 01:04:36 -0400 | [diff] [blame] | 1639 | inode = path.dentry->d_inode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1640 | error = -ENOTBLK; |
| 1641 | if (!S_ISBLK(inode->i_mode)) |
| 1642 | goto fail; |
| 1643 | error = -EACCES; |
Al Viro | 421748e | 2008-08-02 01:04:36 -0400 | [diff] [blame] | 1644 | if (path.mnt->mnt_flags & MNT_NODEV) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1645 | goto fail; |
| 1646 | error = -ENOMEM; |
| 1647 | bdev = bd_acquire(inode); |
| 1648 | if (!bdev) |
| 1649 | goto fail; |
| 1650 | out: |
Al Viro | 421748e | 2008-08-02 01:04:36 -0400 | [diff] [blame] | 1651 | path_put(&path); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1652 | return bdev; |
| 1653 | fail: |
| 1654 | bdev = ERR_PTR(error); |
| 1655 | goto out; |
| 1656 | } |
Al Viro | d5686b4 | 2008-08-01 05:00:11 -0400 | [diff] [blame] | 1657 | EXPORT_SYMBOL(lookup_bdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1658 | |
NeilBrown | 93b270f | 2011-02-24 17:25:47 +1100 | [diff] [blame] | 1659 | int __invalidate_device(struct block_device *bdev, bool kill_dirty) |
David Howells | b71e8a4 | 2006-08-29 19:06:11 +0100 | [diff] [blame] | 1660 | { |
| 1661 | struct super_block *sb = get_super(bdev); |
| 1662 | int res = 0; |
| 1663 | |
| 1664 | if (sb) { |
| 1665 | /* |
| 1666 | * no need to lock the super, get_super holds the |
| 1667 | * read mutex so the filesystem cannot go away |
| 1668 | * under us (->put_super runs with the write lock |
| 1669 | * hold). |
| 1670 | */ |
| 1671 | shrink_dcache_sb(sb); |
NeilBrown | 93b270f | 2011-02-24 17:25:47 +1100 | [diff] [blame] | 1672 | res = invalidate_inodes(sb, kill_dirty); |
David Howells | b71e8a4 | 2006-08-29 19:06:11 +0100 | [diff] [blame] | 1673 | drop_super(sb); |
| 1674 | } |
Peter Zijlstra | f98393a | 2007-05-06 14:49:54 -0700 | [diff] [blame] | 1675 | invalidate_bdev(bdev); |
David Howells | b71e8a4 | 2006-08-29 19:06:11 +0100 | [diff] [blame] | 1676 | return res; |
| 1677 | } |
| 1678 | EXPORT_SYMBOL(__invalidate_device); |
Jan Kara | 5c0d6b6 | 2012-07-03 16:45:31 +0200 | [diff] [blame] | 1679 | |
| 1680 | void iterate_bdevs(void (*func)(struct block_device *, void *), void *arg) |
| 1681 | { |
| 1682 | struct inode *inode, *old_inode = NULL; |
| 1683 | |
| 1684 | spin_lock(&inode_sb_list_lock); |
| 1685 | list_for_each_entry(inode, &blockdev_superblock->s_inodes, i_sb_list) { |
| 1686 | struct address_space *mapping = inode->i_mapping; |
| 1687 | |
| 1688 | spin_lock(&inode->i_lock); |
| 1689 | if (inode->i_state & (I_FREEING|I_WILL_FREE|I_NEW) || |
| 1690 | mapping->nrpages == 0) { |
| 1691 | spin_unlock(&inode->i_lock); |
| 1692 | continue; |
| 1693 | } |
| 1694 | __iget(inode); |
| 1695 | spin_unlock(&inode->i_lock); |
| 1696 | spin_unlock(&inode_sb_list_lock); |
| 1697 | /* |
| 1698 | * We hold a reference to 'inode' so it couldn't have been |
| 1699 | * removed from s_inodes list while we dropped the |
| 1700 | * inode_sb_list_lock. We cannot iput the inode now as we can |
| 1701 | * be holding the last reference and we cannot iput it under |
| 1702 | * inode_sb_list_lock. So we keep the reference and iput it |
| 1703 | * later. |
| 1704 | */ |
| 1705 | iput(old_inode); |
| 1706 | old_inode = inode; |
| 1707 | |
| 1708 | func(I_BDEV(inode), arg); |
| 1709 | |
| 1710 | spin_lock(&inode_sb_list_lock); |
| 1711 | } |
| 1712 | spin_unlock(&inode_sb_list_lock); |
| 1713 | iput(old_inode); |
| 1714 | } |