Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Nathan Scott | 7b71876 | 2005-11-02 14:58:39 +1100 | [diff] [blame] | 2 | * Copyright (c) 2000-2005 Silicon Graphics, Inc. |
| 3 | * All Rights Reserved. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | * |
Nathan Scott | 7b71876 | 2005-11-02 14:58:39 +1100 | [diff] [blame] | 5 | * This program is free software; you can redistribute it and/or |
| 6 | * modify it under the terms of the GNU General Public License as |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | * published by the Free Software Foundation. |
| 8 | * |
Nathan Scott | 7b71876 | 2005-11-02 14:58:39 +1100 | [diff] [blame] | 9 | * This program is distributed in the hope that it would be useful, |
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 | * GNU General Public License for more details. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | * |
Nathan Scott | 7b71876 | 2005-11-02 14:58:39 +1100 | [diff] [blame] | 14 | * You should have received a copy of the GNU General Public License |
| 15 | * along with this program; if not, write the Free Software Foundation, |
| 16 | * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | #include "xfs.h" |
Nathan Scott | a844f45 | 2005-11-02 14:38:42 +1100 | [diff] [blame] | 19 | #include "xfs_fs.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | #include "xfs_types.h" |
Christoph Hellwig | ef14f0c | 2009-06-10 17:07:47 +0200 | [diff] [blame] | 21 | #include "xfs_acl.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | #include "xfs_log.h" |
Nathan Scott | a844f45 | 2005-11-02 14:38:42 +1100 | [diff] [blame] | 23 | #include "xfs_inum.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | #include "xfs_trans.h" |
| 25 | #include "xfs_sb.h" |
| 26 | #include "xfs_ag.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | #include "xfs_mount.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | #include "xfs_bmap_btree.h" |
Nathan Scott | a844f45 | 2005-11-02 14:38:42 +1100 | [diff] [blame] | 29 | #include "xfs_alloc_btree.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | #include "xfs_ialloc_btree.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | #include "xfs_dinode.h" |
| 32 | #include "xfs_inode.h" |
Nathan Scott | a844f45 | 2005-11-02 14:38:42 +1100 | [diff] [blame] | 33 | #include "xfs_btree.h" |
| 34 | #include "xfs_ialloc.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | #include "xfs_quota.h" |
| 36 | #include "xfs_utils.h" |
David Chinner | 783a2f6 | 2008-10-30 17:39:58 +1100 | [diff] [blame] | 37 | #include "xfs_trans_priv.h" |
| 38 | #include "xfs_inode_item.h" |
Christoph Hellwig | 24f211b | 2008-11-28 14:23:42 +1100 | [diff] [blame] | 39 | #include "xfs_bmap.h" |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 40 | #include "xfs_trace.h" |
Christoph Hellwig | 24f211b | 2008-11-28 14:23:42 +1100 | [diff] [blame] | 41 | |
| 42 | |
| 43 | /* |
Dave Chinner | dcfcf20 | 2010-12-23 11:57:13 +1100 | [diff] [blame] | 44 | * Define xfs inode iolock lockdep classes. We need to ensure that all active |
| 45 | * inodes are considered the same for lockdep purposes, including inodes that |
| 46 | * are recycled through the XFS_IRECLAIMABLE state. This is the the only way to |
| 47 | * guarantee the locks are considered the same when there are multiple lock |
| 48 | * initialisation siteѕ. Also, define a reclaimable inode class so it is |
| 49 | * obvious in lockdep reports which class the report is against. |
| 50 | */ |
| 51 | static struct lock_class_key xfs_iolock_active; |
| 52 | struct lock_class_key xfs_iolock_reclaimable; |
| 53 | |
| 54 | /* |
Christoph Hellwig | 24f211b | 2008-11-28 14:23:42 +1100 | [diff] [blame] | 55 | * Allocate and initialise an xfs_inode. |
| 56 | */ |
| 57 | STATIC struct xfs_inode * |
| 58 | xfs_inode_alloc( |
| 59 | struct xfs_mount *mp, |
| 60 | xfs_ino_t ino) |
| 61 | { |
| 62 | struct xfs_inode *ip; |
| 63 | |
| 64 | /* |
| 65 | * if this didn't occur in transactions, we could use |
| 66 | * KM_MAYFAIL and return NULL here on ENOMEM. Set the |
| 67 | * code up to do this anyway. |
| 68 | */ |
| 69 | ip = kmem_zone_alloc(xfs_inode_zone, KM_SLEEP); |
| 70 | if (!ip) |
| 71 | return NULL; |
Christoph Hellwig | 54e3462 | 2009-08-07 14:38:25 -0300 | [diff] [blame] | 72 | if (inode_init_always(mp->m_super, VFS_I(ip))) { |
| 73 | kmem_zone_free(xfs_inode_zone, ip); |
| 74 | return NULL; |
| 75 | } |
Christoph Hellwig | 24f211b | 2008-11-28 14:23:42 +1100 | [diff] [blame] | 76 | |
Christoph Hellwig | 24f211b | 2008-11-28 14:23:42 +1100 | [diff] [blame] | 77 | ASSERT(atomic_read(&ip->i_pincount) == 0); |
| 78 | ASSERT(!spin_is_locked(&ip->i_flags_lock)); |
Christoph Hellwig | 474fce0 | 2011-12-18 20:00:09 +0000 | [diff] [blame] | 79 | ASSERT(!xfs_isiflocked(ip)); |
Dave Chinner | 1a3e8f3 | 2010-12-17 17:29:43 +1100 | [diff] [blame] | 80 | ASSERT(ip->i_ino == 0); |
Christoph Hellwig | 033da48 | 2009-10-19 04:05:26 +0000 | [diff] [blame] | 81 | |
| 82 | mrlock_init(&ip->i_iolock, MRLOCK_BARRIER, "xfsio", ip->i_ino); |
Dave Chinner | dcfcf20 | 2010-12-23 11:57:13 +1100 | [diff] [blame] | 83 | lockdep_set_class_and_name(&ip->i_iolock.mr_lock, |
| 84 | &xfs_iolock_active, "xfs_iolock_active"); |
Christoph Hellwig | 24f211b | 2008-11-28 14:23:42 +1100 | [diff] [blame] | 85 | |
Christoph Hellwig | 24f211b | 2008-11-28 14:23:42 +1100 | [diff] [blame] | 86 | /* initialise the xfs inode */ |
| 87 | ip->i_ino = ino; |
| 88 | ip->i_mount = mp; |
| 89 | memset(&ip->i_imap, 0, sizeof(struct xfs_imap)); |
| 90 | ip->i_afp = NULL; |
| 91 | memset(&ip->i_df, 0, sizeof(xfs_ifork_t)); |
| 92 | ip->i_flags = 0; |
Christoph Hellwig | 24f211b | 2008-11-28 14:23:42 +1100 | [diff] [blame] | 93 | ip->i_delayed_blks = 0; |
| 94 | memset(&ip->i_d, 0, sizeof(xfs_icdinode_t)); |
Christoph Hellwig | 24f211b | 2008-11-28 14:23:42 +1100 | [diff] [blame] | 95 | |
Christoph Hellwig | 24f211b | 2008-11-28 14:23:42 +1100 | [diff] [blame] | 96 | return ip; |
| 97 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | |
Nick Piggin | fa0d7e3d | 2011-01-07 17:49:49 +1100 | [diff] [blame] | 99 | STATIC void |
| 100 | xfs_inode_free_callback( |
| 101 | struct rcu_head *head) |
| 102 | { |
| 103 | struct inode *inode = container_of(head, struct inode, i_rcu); |
| 104 | struct xfs_inode *ip = XFS_I(inode); |
| 105 | |
Nick Piggin | fa0d7e3d | 2011-01-07 17:49:49 +1100 | [diff] [blame] | 106 | kmem_zone_free(xfs_inode_zone, ip); |
| 107 | } |
| 108 | |
Dave Chinner | 2f11fea | 2010-07-20 17:53:25 +1000 | [diff] [blame] | 109 | void |
Christoph Hellwig | b36ec04 | 2009-08-07 14:38:34 -0300 | [diff] [blame] | 110 | xfs_inode_free( |
| 111 | struct xfs_inode *ip) |
| 112 | { |
| 113 | switch (ip->i_d.di_mode & S_IFMT) { |
| 114 | case S_IFREG: |
| 115 | case S_IFDIR: |
| 116 | case S_IFLNK: |
| 117 | xfs_idestroy_fork(ip, XFS_DATA_FORK); |
| 118 | break; |
| 119 | } |
| 120 | |
| 121 | if (ip->i_afp) |
| 122 | xfs_idestroy_fork(ip, XFS_ATTR_FORK); |
| 123 | |
Christoph Hellwig | b36ec04 | 2009-08-07 14:38:34 -0300 | [diff] [blame] | 124 | if (ip->i_itemp) { |
Christoph Hellwig | 32ce90a | 2012-04-23 15:58:32 +1000 | [diff] [blame] | 125 | ASSERT(!(ip->i_itemp->ili_item.li_flags & XFS_LI_IN_AIL)); |
Christoph Hellwig | b36ec04 | 2009-08-07 14:38:34 -0300 | [diff] [blame] | 126 | xfs_inode_item_destroy(ip); |
| 127 | ip->i_itemp = NULL; |
| 128 | } |
| 129 | |
| 130 | /* asserts to verify all state is correct here */ |
Christoph Hellwig | b36ec04 | 2009-08-07 14:38:34 -0300 | [diff] [blame] | 131 | ASSERT(atomic_read(&ip->i_pincount) == 0); |
| 132 | ASSERT(!spin_is_locked(&ip->i_flags_lock)); |
Christoph Hellwig | 474fce0 | 2011-12-18 20:00:09 +0000 | [diff] [blame] | 133 | ASSERT(!xfs_isiflocked(ip)); |
Christoph Hellwig | b36ec04 | 2009-08-07 14:38:34 -0300 | [diff] [blame] | 134 | |
Dave Chinner | 1a3e8f3 | 2010-12-17 17:29:43 +1100 | [diff] [blame] | 135 | /* |
| 136 | * Because we use RCU freeing we need to ensure the inode always |
| 137 | * appears to be reclaimed with an invalid inode number when in the |
| 138 | * free state. The ip->i_flags_lock provides the barrier against lookup |
| 139 | * races. |
| 140 | */ |
| 141 | spin_lock(&ip->i_flags_lock); |
| 142 | ip->i_flags = XFS_IRECLAIM; |
| 143 | ip->i_ino = 0; |
| 144 | spin_unlock(&ip->i_flags_lock); |
Alex Elder | 92f1c00 | 2011-01-10 21:35:55 -0600 | [diff] [blame] | 145 | |
| 146 | call_rcu(&VFS_I(ip)->i_rcu, xfs_inode_free_callback); |
Christoph Hellwig | b36ec04 | 2009-08-07 14:38:34 -0300 | [diff] [blame] | 147 | } |
| 148 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | /* |
David Chinner | 6441e54 | 2008-10-30 17:21:19 +1100 | [diff] [blame] | 150 | * Check the validity of the inode we just found it the cache |
| 151 | */ |
| 152 | static int |
| 153 | xfs_iget_cache_hit( |
David Chinner | 6441e54 | 2008-10-30 17:21:19 +1100 | [diff] [blame] | 154 | struct xfs_perag *pag, |
| 155 | struct xfs_inode *ip, |
Dave Chinner | 1a3e8f3 | 2010-12-17 17:29:43 +1100 | [diff] [blame] | 156 | xfs_ino_t ino, |
David Chinner | 6441e54 | 2008-10-30 17:21:19 +1100 | [diff] [blame] | 157 | int flags, |
Dave Chinner | 1a3e8f3 | 2010-12-17 17:29:43 +1100 | [diff] [blame] | 158 | int lock_flags) __releases(RCU) |
David Chinner | 6441e54 | 2008-10-30 17:21:19 +1100 | [diff] [blame] | 159 | { |
Christoph Hellwig | bc990f5 | 2009-08-16 20:36:34 -0400 | [diff] [blame] | 160 | struct inode *inode = VFS_I(ip); |
David Chinner | 6441e54 | 2008-10-30 17:21:19 +1100 | [diff] [blame] | 161 | struct xfs_mount *mp = ip->i_mount; |
Christoph Hellwig | bc990f5 | 2009-08-16 20:36:34 -0400 | [diff] [blame] | 162 | int error; |
| 163 | |
Dave Chinner | 1a3e8f3 | 2010-12-17 17:29:43 +1100 | [diff] [blame] | 164 | /* |
| 165 | * check for re-use of an inode within an RCU grace period due to the |
| 166 | * radix tree nodes not being updated yet. We monitor for this by |
| 167 | * setting the inode number to zero before freeing the inode structure. |
| 168 | * If the inode has been reallocated and set up, then the inode number |
| 169 | * will not match, so check for that, too. |
| 170 | */ |
Christoph Hellwig | bc990f5 | 2009-08-16 20:36:34 -0400 | [diff] [blame] | 171 | spin_lock(&ip->i_flags_lock); |
Dave Chinner | 1a3e8f3 | 2010-12-17 17:29:43 +1100 | [diff] [blame] | 172 | if (ip->i_ino != ino) { |
| 173 | trace_xfs_iget_skip(ip); |
| 174 | XFS_STATS_INC(xs_ig_frecycle); |
| 175 | error = EAGAIN; |
| 176 | goto out_error; |
| 177 | } |
| 178 | |
David Chinner | 6441e54 | 2008-10-30 17:21:19 +1100 | [diff] [blame] | 179 | |
| 180 | /* |
Christoph Hellwig | bc990f5 | 2009-08-16 20:36:34 -0400 | [diff] [blame] | 181 | * If we are racing with another cache hit that is currently |
| 182 | * instantiating this inode or currently recycling it out of |
| 183 | * reclaimabe state, wait for the initialisation to complete |
| 184 | * before continuing. |
| 185 | * |
| 186 | * XXX(hch): eventually we should do something equivalent to |
| 187 | * wait_on_inode to wait for these flags to be cleared |
| 188 | * instead of polling for it. |
David Chinner | 6441e54 | 2008-10-30 17:21:19 +1100 | [diff] [blame] | 189 | */ |
Christoph Hellwig | bc990f5 | 2009-08-16 20:36:34 -0400 | [diff] [blame] | 190 | if (ip->i_flags & (XFS_INEW|XFS_IRECLAIM)) { |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 191 | trace_xfs_iget_skip(ip); |
David Chinner | 6441e54 | 2008-10-30 17:21:19 +1100 | [diff] [blame] | 192 | XFS_STATS_INC(xs_ig_frecycle); |
Christoph Hellwig | bc990f5 | 2009-08-16 20:36:34 -0400 | [diff] [blame] | 193 | error = EAGAIN; |
David Chinner | 6441e54 | 2008-10-30 17:21:19 +1100 | [diff] [blame] | 194 | goto out_error; |
| 195 | } |
| 196 | |
Christoph Hellwig | bc990f5 | 2009-08-16 20:36:34 -0400 | [diff] [blame] | 197 | /* |
| 198 | * If lookup is racing with unlink return an error immediately. |
| 199 | */ |
| 200 | if (ip->i_d.di_mode == 0 && !(flags & XFS_IGET_CREATE)) { |
| 201 | error = ENOENT; |
| 202 | goto out_error; |
| 203 | } |
David Chinner | 6441e54 | 2008-10-30 17:21:19 +1100 | [diff] [blame] | 204 | |
Christoph Hellwig | bc990f5 | 2009-08-16 20:36:34 -0400 | [diff] [blame] | 205 | /* |
| 206 | * If IRECLAIMABLE is set, we've torn down the VFS inode already. |
| 207 | * Need to carefully get it back into useable state. |
| 208 | */ |
| 209 | if (ip->i_flags & XFS_IRECLAIMABLE) { |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 210 | trace_xfs_iget_reclaim(ip); |
David Chinner | 6441e54 | 2008-10-30 17:21:19 +1100 | [diff] [blame] | 211 | |
David Chinner | bf90424 | 2008-10-30 17:36:14 +1100 | [diff] [blame] | 212 | /* |
Christoph Hellwig | f1f724e | 2010-03-01 11:30:31 +0000 | [diff] [blame] | 213 | * We need to set XFS_IRECLAIM to prevent xfs_reclaim_inode |
| 214 | * from stomping over us while we recycle the inode. We can't |
| 215 | * clear the radix tree reclaimable tag yet as it requires |
| 216 | * pag_ici_lock to be held exclusive. |
David Chinner | bf90424 | 2008-10-30 17:36:14 +1100 | [diff] [blame] | 217 | */ |
Christoph Hellwig | f1f724e | 2010-03-01 11:30:31 +0000 | [diff] [blame] | 218 | ip->i_flags |= XFS_IRECLAIM; |
Christoph Hellwig | bc990f5 | 2009-08-16 20:36:34 -0400 | [diff] [blame] | 219 | |
| 220 | spin_unlock(&ip->i_flags_lock); |
Dave Chinner | 1a3e8f3 | 2010-12-17 17:29:43 +1100 | [diff] [blame] | 221 | rcu_read_unlock(); |
Christoph Hellwig | bc990f5 | 2009-08-16 20:36:34 -0400 | [diff] [blame] | 222 | |
| 223 | error = -inode_init_always(mp->m_super, inode); |
| 224 | if (error) { |
| 225 | /* |
| 226 | * Re-initializing the inode failed, and we are in deep |
| 227 | * trouble. Try to re-add it to the reclaim list. |
| 228 | */ |
Dave Chinner | 1a3e8f3 | 2010-12-17 17:29:43 +1100 | [diff] [blame] | 229 | rcu_read_lock(); |
Christoph Hellwig | bc990f5 | 2009-08-16 20:36:34 -0400 | [diff] [blame] | 230 | spin_lock(&ip->i_flags_lock); |
| 231 | |
Dave Chinner | 778e24b | 2011-06-23 01:34:59 +0000 | [diff] [blame] | 232 | ip->i_flags &= ~(XFS_INEW | XFS_IRECLAIM); |
| 233 | ASSERT(ip->i_flags & XFS_IRECLAIMABLE); |
Christoph Hellwig | d2e078c | 2010-06-24 11:50:22 +1000 | [diff] [blame] | 234 | trace_xfs_iget_reclaim_fail(ip); |
Christoph Hellwig | bc990f5 | 2009-08-16 20:36:34 -0400 | [diff] [blame] | 235 | goto out_error; |
| 236 | } |
Christoph Hellwig | f1f724e | 2010-03-01 11:30:31 +0000 | [diff] [blame] | 237 | |
Dave Chinner | 1a427ab | 2010-12-16 17:08:41 +1100 | [diff] [blame] | 238 | spin_lock(&pag->pag_ici_lock); |
Christoph Hellwig | f1f724e | 2010-03-01 11:30:31 +0000 | [diff] [blame] | 239 | spin_lock(&ip->i_flags_lock); |
Dave Chinner | 778e24b | 2011-06-23 01:34:59 +0000 | [diff] [blame] | 240 | |
| 241 | /* |
| 242 | * Clear the per-lifetime state in the inode as we are now |
| 243 | * effectively a new inode and need to return to the initial |
| 244 | * state before reuse occurs. |
| 245 | */ |
| 246 | ip->i_flags &= ~XFS_IRECLAIM_RESET_FLAGS; |
Christoph Hellwig | f1f724e | 2010-03-01 11:30:31 +0000 | [diff] [blame] | 247 | ip->i_flags |= XFS_INEW; |
| 248 | __xfs_inode_clear_reclaim_tag(mp, pag, ip); |
Christoph Hellwig | eaff807 | 2009-12-17 14:25:01 +0100 | [diff] [blame] | 249 | inode->i_state = I_NEW; |
Dave Chinner | dcfcf20 | 2010-12-23 11:57:13 +1100 | [diff] [blame] | 250 | |
| 251 | ASSERT(!rwsem_is_locked(&ip->i_iolock.mr_lock)); |
| 252 | mrlock_init(&ip->i_iolock, MRLOCK_BARRIER, "xfsio", ip->i_ino); |
| 253 | lockdep_set_class_and_name(&ip->i_iolock.mr_lock, |
| 254 | &xfs_iolock_active, "xfs_iolock_active"); |
| 255 | |
Christoph Hellwig | f1f724e | 2010-03-01 11:30:31 +0000 | [diff] [blame] | 256 | spin_unlock(&ip->i_flags_lock); |
Dave Chinner | 1a427ab | 2010-12-16 17:08:41 +1100 | [diff] [blame] | 257 | spin_unlock(&pag->pag_ici_lock); |
Christoph Hellwig | bc990f5 | 2009-08-16 20:36:34 -0400 | [diff] [blame] | 258 | } else { |
| 259 | /* If the VFS inode is being torn down, pause and try again. */ |
| 260 | if (!igrab(inode)) { |
Christoph Hellwig | d2e078c | 2010-06-24 11:50:22 +1000 | [diff] [blame] | 261 | trace_xfs_iget_skip(ip); |
Christoph Hellwig | bc990f5 | 2009-08-16 20:36:34 -0400 | [diff] [blame] | 262 | error = EAGAIN; |
David Chinner | bf90424 | 2008-10-30 17:36:14 +1100 | [diff] [blame] | 263 | goto out_error; |
| 264 | } |
David Chinner | 6bfb3d0 | 2008-10-30 18:32:43 +1100 | [diff] [blame] | 265 | |
Christoph Hellwig | bc990f5 | 2009-08-16 20:36:34 -0400 | [diff] [blame] | 266 | /* We've got a live one. */ |
| 267 | spin_unlock(&ip->i_flags_lock); |
Dave Chinner | 1a3e8f3 | 2010-12-17 17:29:43 +1100 | [diff] [blame] | 268 | rcu_read_unlock(); |
Christoph Hellwig | d2e078c | 2010-06-24 11:50:22 +1000 | [diff] [blame] | 269 | trace_xfs_iget_hit(ip); |
David Chinner | 6441e54 | 2008-10-30 17:21:19 +1100 | [diff] [blame] | 270 | } |
| 271 | |
David Chinner | 6441e54 | 2008-10-30 17:21:19 +1100 | [diff] [blame] | 272 | if (lock_flags != 0) |
| 273 | xfs_ilock(ip, lock_flags); |
| 274 | |
Dave Chinner | 5132ba8 | 2012-03-22 05:15:10 +0000 | [diff] [blame] | 275 | xfs_iflags_clear(ip, XFS_ISTALE | XFS_IDONTCACHE); |
David Chinner | 6441e54 | 2008-10-30 17:21:19 +1100 | [diff] [blame] | 276 | XFS_STATS_INC(xs_ig_found); |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 277 | |
David Chinner | 6441e54 | 2008-10-30 17:21:19 +1100 | [diff] [blame] | 278 | return 0; |
| 279 | |
| 280 | out_error: |
Christoph Hellwig | bc990f5 | 2009-08-16 20:36:34 -0400 | [diff] [blame] | 281 | spin_unlock(&ip->i_flags_lock); |
Dave Chinner | 1a3e8f3 | 2010-12-17 17:29:43 +1100 | [diff] [blame] | 282 | rcu_read_unlock(); |
David Chinner | 6441e54 | 2008-10-30 17:21:19 +1100 | [diff] [blame] | 283 | return error; |
| 284 | } |
| 285 | |
| 286 | |
| 287 | static int |
| 288 | xfs_iget_cache_miss( |
| 289 | struct xfs_mount *mp, |
| 290 | struct xfs_perag *pag, |
| 291 | xfs_trans_t *tp, |
| 292 | xfs_ino_t ino, |
| 293 | struct xfs_inode **ipp, |
David Chinner | 6441e54 | 2008-10-30 17:21:19 +1100 | [diff] [blame] | 294 | int flags, |
Christoph Hellwig | 0c3dc2b | 2009-11-14 16:17:23 +0000 | [diff] [blame] | 295 | int lock_flags) |
David Chinner | 6441e54 | 2008-10-30 17:21:19 +1100 | [diff] [blame] | 296 | { |
| 297 | struct xfs_inode *ip; |
| 298 | int error; |
David Chinner | 6441e54 | 2008-10-30 17:21:19 +1100 | [diff] [blame] | 299 | xfs_agino_t agino = XFS_INO_TO_AGINO(mp, ino); |
Dave Chinner | 5132ba8 | 2012-03-22 05:15:10 +0000 | [diff] [blame] | 300 | int iflags; |
David Chinner | 6441e54 | 2008-10-30 17:21:19 +1100 | [diff] [blame] | 301 | |
Christoph Hellwig | 24f211b | 2008-11-28 14:23:42 +1100 | [diff] [blame] | 302 | ip = xfs_inode_alloc(mp, ino); |
| 303 | if (!ip) |
| 304 | return ENOMEM; |
| 305 | |
Dave Chinner | 7b6259e | 2010-06-24 11:35:17 +1000 | [diff] [blame] | 306 | error = xfs_iread(mp, tp, ip, flags); |
David Chinner | 6441e54 | 2008-10-30 17:21:19 +1100 | [diff] [blame] | 307 | if (error) |
Christoph Hellwig | 24f211b | 2008-11-28 14:23:42 +1100 | [diff] [blame] | 308 | goto out_destroy; |
David Chinner | 6441e54 | 2008-10-30 17:21:19 +1100 | [diff] [blame] | 309 | |
Christoph Hellwig | d2e078c | 2010-06-24 11:50:22 +1000 | [diff] [blame] | 310 | trace_xfs_iget_miss(ip); |
David Chinner | 6441e54 | 2008-10-30 17:21:19 +1100 | [diff] [blame] | 311 | |
| 312 | if ((ip->i_d.di_mode == 0) && !(flags & XFS_IGET_CREATE)) { |
| 313 | error = ENOENT; |
| 314 | goto out_destroy; |
| 315 | } |
| 316 | |
| 317 | /* |
| 318 | * Preload the radix tree so we can insert safely under the |
David Chinner | 56e73ec | 2008-10-30 17:55:27 +1100 | [diff] [blame] | 319 | * write spinlock. Note that we cannot sleep inside the preload |
Peter Watkins | 3ba3160 | 2012-05-07 16:11:37 -0400 | [diff] [blame] | 320 | * region. Since we can be called from transaction context, don't |
| 321 | * recurse into the file system. |
David Chinner | 6441e54 | 2008-10-30 17:21:19 +1100 | [diff] [blame] | 322 | */ |
Peter Watkins | 3ba3160 | 2012-05-07 16:11:37 -0400 | [diff] [blame] | 323 | if (radix_tree_preload(GFP_NOFS)) { |
David Chinner | 6441e54 | 2008-10-30 17:21:19 +1100 | [diff] [blame] | 324 | error = EAGAIN; |
Christoph Hellwig | ed93ec3 | 2009-03-03 14:48:35 -0500 | [diff] [blame] | 325 | goto out_destroy; |
| 326 | } |
| 327 | |
| 328 | /* |
| 329 | * Because the inode hasn't been added to the radix-tree yet it can't |
| 330 | * be found by another thread, so we can do the non-sleeping lock here. |
| 331 | */ |
| 332 | if (lock_flags) { |
| 333 | if (!xfs_ilock_nowait(ip, lock_flags)) |
| 334 | BUG(); |
David Chinner | 6441e54 | 2008-10-30 17:21:19 +1100 | [diff] [blame] | 335 | } |
| 336 | |
Dave Chinner | f30d500 | 2012-03-07 04:50:25 +0000 | [diff] [blame] | 337 | /* |
| 338 | * These values must be set before inserting the inode into the radix |
| 339 | * tree as the moment it is inserted a concurrent lookup (allowed by the |
| 340 | * RCU locking mechanism) can find it and that lookup must see that this |
| 341 | * is an inode currently under construction (i.e. that XFS_INEW is set). |
| 342 | * The ip->i_flags_lock that protects the XFS_INEW flag forms the |
| 343 | * memory barrier that ensures this detection works correctly at lookup |
| 344 | * time. |
| 345 | */ |
Dave Chinner | 5132ba8 | 2012-03-22 05:15:10 +0000 | [diff] [blame] | 346 | iflags = XFS_INEW; |
| 347 | if (flags & XFS_IGET_DONTCACHE) |
| 348 | iflags |= XFS_IDONTCACHE; |
Dave Chinner | f30d500 | 2012-03-07 04:50:25 +0000 | [diff] [blame] | 349 | ip->i_udquot = ip->i_gdquot = NULL; |
Dave Chinner | 5132ba8 | 2012-03-22 05:15:10 +0000 | [diff] [blame] | 350 | xfs_iflags_set(ip, iflags); |
David Chinner | 6441e54 | 2008-10-30 17:21:19 +1100 | [diff] [blame] | 351 | |
| 352 | /* insert the new inode */ |
Dave Chinner | f30d500 | 2012-03-07 04:50:25 +0000 | [diff] [blame] | 353 | spin_lock(&pag->pag_ici_lock); |
David Chinner | 6441e54 | 2008-10-30 17:21:19 +1100 | [diff] [blame] | 354 | error = radix_tree_insert(&pag->pag_ici_root, agino, ip); |
| 355 | if (unlikely(error)) { |
| 356 | WARN_ON(error != -EEXIST); |
| 357 | XFS_STATS_INC(xs_ig_dup); |
| 358 | error = EAGAIN; |
David Chinner | 56e73ec | 2008-10-30 17:55:27 +1100 | [diff] [blame] | 359 | goto out_preload_end; |
David Chinner | 6441e54 | 2008-10-30 17:21:19 +1100 | [diff] [blame] | 360 | } |
Dave Chinner | 1a427ab | 2010-12-16 17:08:41 +1100 | [diff] [blame] | 361 | spin_unlock(&pag->pag_ici_lock); |
David Chinner | 6441e54 | 2008-10-30 17:21:19 +1100 | [diff] [blame] | 362 | radix_tree_preload_end(); |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 363 | |
David Chinner | 6441e54 | 2008-10-30 17:21:19 +1100 | [diff] [blame] | 364 | *ipp = ip; |
| 365 | return 0; |
| 366 | |
David Chinner | 56e73ec | 2008-10-30 17:55:27 +1100 | [diff] [blame] | 367 | out_preload_end: |
Dave Chinner | 1a427ab | 2010-12-16 17:08:41 +1100 | [diff] [blame] | 368 | spin_unlock(&pag->pag_ici_lock); |
David Chinner | 6441e54 | 2008-10-30 17:21:19 +1100 | [diff] [blame] | 369 | radix_tree_preload_end(); |
David Chinner | 56e73ec | 2008-10-30 17:55:27 +1100 | [diff] [blame] | 370 | if (lock_flags) |
| 371 | xfs_iunlock(ip, lock_flags); |
David Chinner | 6441e54 | 2008-10-30 17:21:19 +1100 | [diff] [blame] | 372 | out_destroy: |
Christoph Hellwig | b36ec04 | 2009-08-07 14:38:34 -0300 | [diff] [blame] | 373 | __destroy_inode(VFS_I(ip)); |
| 374 | xfs_inode_free(ip); |
David Chinner | 6441e54 | 2008-10-30 17:21:19 +1100 | [diff] [blame] | 375 | return error; |
| 376 | } |
| 377 | |
| 378 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 379 | * Look up an inode by number in the given file system. |
David Chinner | da353b0 | 2007-08-28 14:00:13 +1000 | [diff] [blame] | 380 | * The inode is looked up in the cache held in each AG. |
David Chinner | bf90424 | 2008-10-30 17:36:14 +1100 | [diff] [blame] | 381 | * If the inode is found in the cache, initialise the vfs inode |
| 382 | * if necessary. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 383 | * |
David Chinner | da353b0 | 2007-08-28 14:00:13 +1000 | [diff] [blame] | 384 | * If it is not in core, read it in from the file system's device, |
David Chinner | bf90424 | 2008-10-30 17:36:14 +1100 | [diff] [blame] | 385 | * add it to the cache and initialise the vfs inode. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 386 | * |
| 387 | * The inode is locked according to the value of the lock_flags parameter. |
| 388 | * This flag parameter indicates how and if the inode's IO lock and inode lock |
| 389 | * should be taken. |
| 390 | * |
| 391 | * mp -- the mount point structure for the current file system. It points |
| 392 | * to the inode hash table. |
| 393 | * tp -- a pointer to the current transaction if there is one. This is |
| 394 | * simply passed through to the xfs_iread() call. |
| 395 | * ino -- the number of the inode desired. This is the unique identifier |
| 396 | * within the file system for the inode being requested. |
| 397 | * lock_flags -- flags indicating how to lock the inode. See the comment |
| 398 | * for xfs_ilock() for a list of valid values. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 399 | */ |
David Chinner | bf90424 | 2008-10-30 17:36:14 +1100 | [diff] [blame] | 400 | int |
| 401 | xfs_iget( |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 402 | xfs_mount_t *mp, |
| 403 | xfs_trans_t *tp, |
| 404 | xfs_ino_t ino, |
| 405 | uint flags, |
| 406 | uint lock_flags, |
Dave Chinner | 7b6259e | 2010-06-24 11:35:17 +1000 | [diff] [blame] | 407 | xfs_inode_t **ipp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 408 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 409 | xfs_inode_t *ip; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 410 | int error; |
David Chinner | da353b0 | 2007-08-28 14:00:13 +1000 | [diff] [blame] | 411 | xfs_perag_t *pag; |
| 412 | xfs_agino_t agino; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 413 | |
Alex Elder | ad637a1 | 2012-02-16 22:01:00 +0000 | [diff] [blame] | 414 | /* |
| 415 | * xfs_reclaim_inode() uses the ILOCK to ensure an inode |
| 416 | * doesn't get freed while it's being referenced during a |
| 417 | * radix tree traversal here. It assumes this function |
| 418 | * aqcuires only the ILOCK (and therefore it has no need to |
| 419 | * involve the IOLOCK in this synchronization). |
| 420 | */ |
| 421 | ASSERT((lock_flags & (XFS_IOLOCK_EXCL | XFS_IOLOCK_SHARED)) == 0); |
| 422 | |
Christoph Hellwig | d276734 | 2010-10-06 18:31:23 +0000 | [diff] [blame] | 423 | /* reject inode numbers outside existing AGs */ |
Dave Chinner | 1a3e8f3 | 2010-12-17 17:29:43 +1100 | [diff] [blame] | 424 | if (!ino || XFS_INO_TO_AGNO(mp, ino) >= mp->m_sb.sb_agcount) |
David Chinner | da353b0 | 2007-08-28 14:00:13 +1000 | [diff] [blame] | 425 | return EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 426 | |
David Chinner | da353b0 | 2007-08-28 14:00:13 +1000 | [diff] [blame] | 427 | /* get the perag structure and ensure that it's inode capable */ |
Dave Chinner | 5017e97 | 2010-01-11 11:47:40 +0000 | [diff] [blame] | 428 | pag = xfs_perag_get(mp, XFS_INO_TO_AGNO(mp, ino)); |
David Chinner | da353b0 | 2007-08-28 14:00:13 +1000 | [diff] [blame] | 429 | agino = XFS_INO_TO_AGINO(mp, ino); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 430 | |
| 431 | again: |
David Chinner | 6441e54 | 2008-10-30 17:21:19 +1100 | [diff] [blame] | 432 | error = 0; |
Dave Chinner | 1a3e8f3 | 2010-12-17 17:29:43 +1100 | [diff] [blame] | 433 | rcu_read_lock(); |
David Chinner | da353b0 | 2007-08-28 14:00:13 +1000 | [diff] [blame] | 434 | ip = radix_tree_lookup(&pag->pag_ici_root, agino); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 435 | |
David Chinner | 6441e54 | 2008-10-30 17:21:19 +1100 | [diff] [blame] | 436 | if (ip) { |
Dave Chinner | 1a3e8f3 | 2010-12-17 17:29:43 +1100 | [diff] [blame] | 437 | error = xfs_iget_cache_hit(pag, ip, ino, flags, lock_flags); |
David Chinner | 6441e54 | 2008-10-30 17:21:19 +1100 | [diff] [blame] | 438 | if (error) |
| 439 | goto out_error_or_again; |
| 440 | } else { |
Dave Chinner | 1a3e8f3 | 2010-12-17 17:29:43 +1100 | [diff] [blame] | 441 | rcu_read_unlock(); |
David Chinner | 6441e54 | 2008-10-30 17:21:19 +1100 | [diff] [blame] | 442 | XFS_STATS_INC(xs_ig_missed); |
David Chinner | da353b0 | 2007-08-28 14:00:13 +1000 | [diff] [blame] | 443 | |
Dave Chinner | 7b6259e | 2010-06-24 11:35:17 +1000 | [diff] [blame] | 444 | error = xfs_iget_cache_miss(mp, pag, tp, ino, &ip, |
David Chinner | 6441e54 | 2008-10-30 17:21:19 +1100 | [diff] [blame] | 445 | flags, lock_flags); |
| 446 | if (error) |
| 447 | goto out_error_or_again; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 448 | } |
Dave Chinner | 5017e97 | 2010-01-11 11:47:40 +0000 | [diff] [blame] | 449 | xfs_perag_put(pag); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 450 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 451 | *ipp = ip; |
| 452 | |
Christoph Hellwig | 41be8be | 2008-08-13 16:23:13 +1000 | [diff] [blame] | 453 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 454 | * If we have a real type for an on-disk inode, we can set ops(&unlock) |
| 455 | * now. If it's a new inode being created, xfs_ialloc will handle it. |
| 456 | */ |
David Chinner | bf90424 | 2008-10-30 17:36:14 +1100 | [diff] [blame] | 457 | if (xfs_iflags_test(ip, XFS_INEW) && ip->i_d.di_mode != 0) |
Christoph Hellwig | 41be8be | 2008-08-13 16:23:13 +1000 | [diff] [blame] | 458 | xfs_setup_inode(ip); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 459 | return 0; |
David Chinner | 6441e54 | 2008-10-30 17:21:19 +1100 | [diff] [blame] | 460 | |
| 461 | out_error_or_again: |
| 462 | if (error == EAGAIN) { |
| 463 | delay(1); |
| 464 | goto again; |
| 465 | } |
Dave Chinner | 5017e97 | 2010-01-11 11:47:40 +0000 | [diff] [blame] | 466 | xfs_perag_put(pag); |
David Chinner | 6441e54 | 2008-10-30 17:21:19 +1100 | [diff] [blame] | 467 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 468 | } |
| 469 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 470 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 471 | * This is a wrapper routine around the xfs_ilock() routine |
| 472 | * used to centralize some grungy code. It is used in places |
| 473 | * that wish to lock the inode solely for reading the extents. |
| 474 | * The reason these places can't just call xfs_ilock(SHARED) |
| 475 | * is that the inode lock also guards to bringing in of the |
| 476 | * extents from disk for a file in b-tree format. If the inode |
| 477 | * is in b-tree format, then we need to lock the inode exclusively |
| 478 | * until the extents are read in. Locking it exclusively all |
| 479 | * the time would limit our parallelism unnecessarily, though. |
| 480 | * What we do instead is check to see if the extents have been |
| 481 | * read in yet, and only lock the inode exclusively if they |
| 482 | * have not. |
| 483 | * |
| 484 | * The function returns a value which should be given to the |
| 485 | * corresponding xfs_iunlock_map_shared(). This value is |
| 486 | * the mode in which the lock was actually taken. |
| 487 | */ |
| 488 | uint |
| 489 | xfs_ilock_map_shared( |
| 490 | xfs_inode_t *ip) |
| 491 | { |
| 492 | uint lock_mode; |
| 493 | |
| 494 | if ((ip->i_d.di_format == XFS_DINODE_FMT_BTREE) && |
| 495 | ((ip->i_df.if_flags & XFS_IFEXTENTS) == 0)) { |
| 496 | lock_mode = XFS_ILOCK_EXCL; |
| 497 | } else { |
| 498 | lock_mode = XFS_ILOCK_SHARED; |
| 499 | } |
| 500 | |
| 501 | xfs_ilock(ip, lock_mode); |
| 502 | |
| 503 | return lock_mode; |
| 504 | } |
| 505 | |
| 506 | /* |
| 507 | * This is simply the unlock routine to go with xfs_ilock_map_shared(). |
| 508 | * All it does is call xfs_iunlock() with the given lock_mode. |
| 509 | */ |
| 510 | void |
| 511 | xfs_iunlock_map_shared( |
| 512 | xfs_inode_t *ip, |
| 513 | unsigned int lock_mode) |
| 514 | { |
| 515 | xfs_iunlock(ip, lock_mode); |
| 516 | } |
| 517 | |
| 518 | /* |
| 519 | * The xfs inode contains 2 locks: a multi-reader lock called the |
| 520 | * i_iolock and a multi-reader lock called the i_lock. This routine |
| 521 | * allows either or both of the locks to be obtained. |
| 522 | * |
| 523 | * The 2 locks should always be ordered so that the IO lock is |
| 524 | * obtained first in order to prevent deadlock. |
| 525 | * |
| 526 | * ip -- the inode being locked |
| 527 | * lock_flags -- this parameter indicates the inode's locks |
| 528 | * to be locked. It can be: |
| 529 | * XFS_IOLOCK_SHARED, |
| 530 | * XFS_IOLOCK_EXCL, |
| 531 | * XFS_ILOCK_SHARED, |
| 532 | * XFS_ILOCK_EXCL, |
| 533 | * XFS_IOLOCK_SHARED | XFS_ILOCK_SHARED, |
| 534 | * XFS_IOLOCK_SHARED | XFS_ILOCK_EXCL, |
| 535 | * XFS_IOLOCK_EXCL | XFS_ILOCK_SHARED, |
| 536 | * XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL |
| 537 | */ |
| 538 | void |
Christoph Hellwig | 579aa9c | 2008-04-22 17:34:00 +1000 | [diff] [blame] | 539 | xfs_ilock( |
| 540 | xfs_inode_t *ip, |
| 541 | uint lock_flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 542 | { |
| 543 | /* |
| 544 | * You can't set both SHARED and EXCL for the same lock, |
| 545 | * and only XFS_IOLOCK_SHARED, XFS_IOLOCK_EXCL, XFS_ILOCK_SHARED, |
| 546 | * and XFS_ILOCK_EXCL are valid values to set in lock_flags. |
| 547 | */ |
| 548 | ASSERT((lock_flags & (XFS_IOLOCK_SHARED | XFS_IOLOCK_EXCL)) != |
| 549 | (XFS_IOLOCK_SHARED | XFS_IOLOCK_EXCL)); |
| 550 | ASSERT((lock_flags & (XFS_ILOCK_SHARED | XFS_ILOCK_EXCL)) != |
| 551 | (XFS_ILOCK_SHARED | XFS_ILOCK_EXCL)); |
Lachlan McIlroy | f7c66ce | 2007-05-08 13:50:19 +1000 | [diff] [blame] | 552 | ASSERT((lock_flags & ~(XFS_LOCK_MASK | XFS_LOCK_DEP_MASK)) == 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 553 | |
Christoph Hellwig | 579aa9c | 2008-04-22 17:34:00 +1000 | [diff] [blame] | 554 | if (lock_flags & XFS_IOLOCK_EXCL) |
Lachlan McIlroy | f7c66ce | 2007-05-08 13:50:19 +1000 | [diff] [blame] | 555 | mrupdate_nested(&ip->i_iolock, XFS_IOLOCK_DEP(lock_flags)); |
Christoph Hellwig | 579aa9c | 2008-04-22 17:34:00 +1000 | [diff] [blame] | 556 | else if (lock_flags & XFS_IOLOCK_SHARED) |
Lachlan McIlroy | f7c66ce | 2007-05-08 13:50:19 +1000 | [diff] [blame] | 557 | mraccess_nested(&ip->i_iolock, XFS_IOLOCK_DEP(lock_flags)); |
Christoph Hellwig | 579aa9c | 2008-04-22 17:34:00 +1000 | [diff] [blame] | 558 | |
| 559 | if (lock_flags & XFS_ILOCK_EXCL) |
Lachlan McIlroy | f7c66ce | 2007-05-08 13:50:19 +1000 | [diff] [blame] | 560 | mrupdate_nested(&ip->i_lock, XFS_ILOCK_DEP(lock_flags)); |
Christoph Hellwig | 579aa9c | 2008-04-22 17:34:00 +1000 | [diff] [blame] | 561 | else if (lock_flags & XFS_ILOCK_SHARED) |
Lachlan McIlroy | f7c66ce | 2007-05-08 13:50:19 +1000 | [diff] [blame] | 562 | mraccess_nested(&ip->i_lock, XFS_ILOCK_DEP(lock_flags)); |
Christoph Hellwig | 579aa9c | 2008-04-22 17:34:00 +1000 | [diff] [blame] | 563 | |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 564 | trace_xfs_ilock(ip, lock_flags, _RET_IP_); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 565 | } |
| 566 | |
| 567 | /* |
| 568 | * This is just like xfs_ilock(), except that the caller |
| 569 | * is guaranteed not to sleep. It returns 1 if it gets |
| 570 | * the requested locks and 0 otherwise. If the IO lock is |
| 571 | * obtained but the inode lock cannot be, then the IO lock |
| 572 | * is dropped before returning. |
| 573 | * |
| 574 | * ip -- the inode being locked |
| 575 | * lock_flags -- this parameter indicates the inode's locks to be |
| 576 | * to be locked. See the comment for xfs_ilock() for a list |
| 577 | * of valid values. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 578 | */ |
| 579 | int |
Christoph Hellwig | 579aa9c | 2008-04-22 17:34:00 +1000 | [diff] [blame] | 580 | xfs_ilock_nowait( |
| 581 | xfs_inode_t *ip, |
| 582 | uint lock_flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 583 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 584 | /* |
| 585 | * You can't set both SHARED and EXCL for the same lock, |
| 586 | * and only XFS_IOLOCK_SHARED, XFS_IOLOCK_EXCL, XFS_ILOCK_SHARED, |
| 587 | * and XFS_ILOCK_EXCL are valid values to set in lock_flags. |
| 588 | */ |
| 589 | ASSERT((lock_flags & (XFS_IOLOCK_SHARED | XFS_IOLOCK_EXCL)) != |
| 590 | (XFS_IOLOCK_SHARED | XFS_IOLOCK_EXCL)); |
| 591 | ASSERT((lock_flags & (XFS_ILOCK_SHARED | XFS_ILOCK_EXCL)) != |
| 592 | (XFS_ILOCK_SHARED | XFS_ILOCK_EXCL)); |
Lachlan McIlroy | f7c66ce | 2007-05-08 13:50:19 +1000 | [diff] [blame] | 593 | ASSERT((lock_flags & ~(XFS_LOCK_MASK | XFS_LOCK_DEP_MASK)) == 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 594 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 595 | if (lock_flags & XFS_IOLOCK_EXCL) { |
Christoph Hellwig | 579aa9c | 2008-04-22 17:34:00 +1000 | [diff] [blame] | 596 | if (!mrtryupdate(&ip->i_iolock)) |
| 597 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 598 | } else if (lock_flags & XFS_IOLOCK_SHARED) { |
Christoph Hellwig | 579aa9c | 2008-04-22 17:34:00 +1000 | [diff] [blame] | 599 | if (!mrtryaccess(&ip->i_iolock)) |
| 600 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 601 | } |
| 602 | if (lock_flags & XFS_ILOCK_EXCL) { |
Christoph Hellwig | 579aa9c | 2008-04-22 17:34:00 +1000 | [diff] [blame] | 603 | if (!mrtryupdate(&ip->i_lock)) |
| 604 | goto out_undo_iolock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 605 | } else if (lock_flags & XFS_ILOCK_SHARED) { |
Christoph Hellwig | 579aa9c | 2008-04-22 17:34:00 +1000 | [diff] [blame] | 606 | if (!mrtryaccess(&ip->i_lock)) |
| 607 | goto out_undo_iolock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 608 | } |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 609 | trace_xfs_ilock_nowait(ip, lock_flags, _RET_IP_); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 610 | return 1; |
Christoph Hellwig | 579aa9c | 2008-04-22 17:34:00 +1000 | [diff] [blame] | 611 | |
| 612 | out_undo_iolock: |
| 613 | if (lock_flags & XFS_IOLOCK_EXCL) |
| 614 | mrunlock_excl(&ip->i_iolock); |
| 615 | else if (lock_flags & XFS_IOLOCK_SHARED) |
| 616 | mrunlock_shared(&ip->i_iolock); |
| 617 | out: |
| 618 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 619 | } |
| 620 | |
| 621 | /* |
| 622 | * xfs_iunlock() is used to drop the inode locks acquired with |
| 623 | * xfs_ilock() and xfs_ilock_nowait(). The caller must pass |
| 624 | * in the flags given to xfs_ilock() or xfs_ilock_nowait() so |
| 625 | * that we know which locks to drop. |
| 626 | * |
| 627 | * ip -- the inode being unlocked |
| 628 | * lock_flags -- this parameter indicates the inode's locks to be |
| 629 | * to be unlocked. See the comment for xfs_ilock() for a list |
| 630 | * of valid values for this parameter. |
| 631 | * |
| 632 | */ |
| 633 | void |
Christoph Hellwig | 579aa9c | 2008-04-22 17:34:00 +1000 | [diff] [blame] | 634 | xfs_iunlock( |
| 635 | xfs_inode_t *ip, |
| 636 | uint lock_flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 637 | { |
| 638 | /* |
| 639 | * You can't set both SHARED and EXCL for the same lock, |
| 640 | * and only XFS_IOLOCK_SHARED, XFS_IOLOCK_EXCL, XFS_ILOCK_SHARED, |
| 641 | * and XFS_ILOCK_EXCL are valid values to set in lock_flags. |
| 642 | */ |
| 643 | ASSERT((lock_flags & (XFS_IOLOCK_SHARED | XFS_IOLOCK_EXCL)) != |
| 644 | (XFS_IOLOCK_SHARED | XFS_IOLOCK_EXCL)); |
| 645 | ASSERT((lock_flags & (XFS_ILOCK_SHARED | XFS_ILOCK_EXCL)) != |
| 646 | (XFS_ILOCK_SHARED | XFS_ILOCK_EXCL)); |
Christoph Hellwig | 5b03ff1 | 2012-02-20 02:31:22 +0000 | [diff] [blame] | 647 | ASSERT((lock_flags & ~(XFS_LOCK_MASK | XFS_LOCK_DEP_MASK)) == 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 648 | ASSERT(lock_flags != 0); |
| 649 | |
Christoph Hellwig | 579aa9c | 2008-04-22 17:34:00 +1000 | [diff] [blame] | 650 | if (lock_flags & XFS_IOLOCK_EXCL) |
| 651 | mrunlock_excl(&ip->i_iolock); |
| 652 | else if (lock_flags & XFS_IOLOCK_SHARED) |
| 653 | mrunlock_shared(&ip->i_iolock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 654 | |
Christoph Hellwig | 579aa9c | 2008-04-22 17:34:00 +1000 | [diff] [blame] | 655 | if (lock_flags & XFS_ILOCK_EXCL) |
| 656 | mrunlock_excl(&ip->i_lock); |
| 657 | else if (lock_flags & XFS_ILOCK_SHARED) |
| 658 | mrunlock_shared(&ip->i_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 659 | |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 660 | trace_xfs_iunlock(ip, lock_flags, _RET_IP_); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 661 | } |
| 662 | |
| 663 | /* |
| 664 | * give up write locks. the i/o lock cannot be held nested |
| 665 | * if it is being demoted. |
| 666 | */ |
| 667 | void |
Christoph Hellwig | 579aa9c | 2008-04-22 17:34:00 +1000 | [diff] [blame] | 668 | xfs_ilock_demote( |
| 669 | xfs_inode_t *ip, |
| 670 | uint lock_flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 671 | { |
| 672 | ASSERT(lock_flags & (XFS_IOLOCK_EXCL|XFS_ILOCK_EXCL)); |
| 673 | ASSERT((lock_flags & ~(XFS_IOLOCK_EXCL|XFS_ILOCK_EXCL)) == 0); |
| 674 | |
Christoph Hellwig | 579aa9c | 2008-04-22 17:34:00 +1000 | [diff] [blame] | 675 | if (lock_flags & XFS_ILOCK_EXCL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 676 | mrdemote(&ip->i_lock); |
Christoph Hellwig | 579aa9c | 2008-04-22 17:34:00 +1000 | [diff] [blame] | 677 | if (lock_flags & XFS_IOLOCK_EXCL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 678 | mrdemote(&ip->i_iolock); |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 679 | |
| 680 | trace_xfs_ilock_demote(ip, lock_flags, _RET_IP_); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 681 | } |
| 682 | |
Christoph Hellwig | 579aa9c | 2008-04-22 17:34:00 +1000 | [diff] [blame] | 683 | #ifdef DEBUG |
Christoph Hellwig | 579aa9c | 2008-04-22 17:34:00 +1000 | [diff] [blame] | 684 | int |
| 685 | xfs_isilocked( |
| 686 | xfs_inode_t *ip, |
| 687 | uint lock_flags) |
| 688 | { |
Christoph Hellwig | f936972 | 2010-06-03 16:22:29 +1000 | [diff] [blame] | 689 | if (lock_flags & (XFS_ILOCK_EXCL|XFS_ILOCK_SHARED)) { |
| 690 | if (!(lock_flags & XFS_ILOCK_SHARED)) |
| 691 | return !!ip->i_lock.mr_writer; |
| 692 | return rwsem_is_locked(&ip->i_lock.mr_lock); |
Christoph Hellwig | 579aa9c | 2008-04-22 17:34:00 +1000 | [diff] [blame] | 693 | } |
| 694 | |
Christoph Hellwig | f936972 | 2010-06-03 16:22:29 +1000 | [diff] [blame] | 695 | if (lock_flags & (XFS_IOLOCK_EXCL|XFS_IOLOCK_SHARED)) { |
| 696 | if (!(lock_flags & XFS_IOLOCK_SHARED)) |
| 697 | return !!ip->i_iolock.mr_writer; |
| 698 | return rwsem_is_locked(&ip->i_iolock.mr_lock); |
Christoph Hellwig | 579aa9c | 2008-04-22 17:34:00 +1000 | [diff] [blame] | 699 | } |
| 700 | |
Christoph Hellwig | f936972 | 2010-06-03 16:22:29 +1000 | [diff] [blame] | 701 | ASSERT(0); |
| 702 | return 0; |
Christoph Hellwig | 579aa9c | 2008-04-22 17:34:00 +1000 | [diff] [blame] | 703 | } |
| 704 | #endif |
Christoph Hellwig | 474fce0 | 2011-12-18 20:00:09 +0000 | [diff] [blame] | 705 | |
| 706 | void |
| 707 | __xfs_iflock( |
| 708 | struct xfs_inode *ip) |
| 709 | { |
| 710 | wait_queue_head_t *wq = bit_waitqueue(&ip->i_flags, __XFS_IFLOCK_BIT); |
| 711 | DEFINE_WAIT_BIT(wait, &ip->i_flags, __XFS_IFLOCK_BIT); |
| 712 | |
| 713 | do { |
| 714 | prepare_to_wait_exclusive(wq, &wait.wait, TASK_UNINTERRUPTIBLE); |
| 715 | if (xfs_isiflocked(ip)) |
| 716 | io_schedule(); |
| 717 | } while (!xfs_iflock_nowait(ip)); |
| 718 | |
| 719 | finish_wait(wq, &wait.wait); |
| 720 | } |