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" |
Nathan Scott | a844f45 | 2005-11-02 14:38:42 +1100 | [diff] [blame] | 22 | #include "xfs_bit.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | #include "xfs_log.h" |
Nathan Scott | a844f45 | 2005-11-02 14:38:42 +1100 | [diff] [blame] | 24 | #include "xfs_inum.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | #include "xfs_trans.h" |
| 26 | #include "xfs_sb.h" |
| 27 | #include "xfs_ag.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | #include "xfs_mount.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | #include "xfs_bmap_btree.h" |
Nathan Scott | a844f45 | 2005-11-02 14:38:42 +1100 | [diff] [blame] | 30 | #include "xfs_alloc_btree.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | #include "xfs_ialloc_btree.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | #include "xfs_dinode.h" |
| 33 | #include "xfs_inode.h" |
Nathan Scott | a844f45 | 2005-11-02 14:38:42 +1100 | [diff] [blame] | 34 | #include "xfs_btree.h" |
| 35 | #include "xfs_ialloc.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | #include "xfs_quota.h" |
| 37 | #include "xfs_utils.h" |
David Chinner | 783a2f6 | 2008-10-30 17:39:58 +1100 | [diff] [blame] | 38 | #include "xfs_trans_priv.h" |
| 39 | #include "xfs_inode_item.h" |
Christoph Hellwig | 24f211b | 2008-11-28 14:23:42 +1100 | [diff] [blame] | 40 | #include "xfs_bmap.h" |
| 41 | #include "xfs_btree_trace.h" |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 42 | #include "xfs_trace.h" |
Christoph Hellwig | 24f211b | 2008-11-28 14:23:42 +1100 | [diff] [blame] | 43 | |
| 44 | |
| 45 | /* |
| 46 | * Allocate and initialise an xfs_inode. |
| 47 | */ |
| 48 | STATIC struct xfs_inode * |
| 49 | xfs_inode_alloc( |
| 50 | struct xfs_mount *mp, |
| 51 | xfs_ino_t ino) |
| 52 | { |
| 53 | struct xfs_inode *ip; |
| 54 | |
| 55 | /* |
| 56 | * if this didn't occur in transactions, we could use |
| 57 | * KM_MAYFAIL and return NULL here on ENOMEM. Set the |
| 58 | * code up to do this anyway. |
| 59 | */ |
| 60 | ip = kmem_zone_alloc(xfs_inode_zone, KM_SLEEP); |
| 61 | if (!ip) |
| 62 | return NULL; |
Christoph Hellwig | 54e3462 | 2009-08-07 14:38:25 -0300 | [diff] [blame] | 63 | if (inode_init_always(mp->m_super, VFS_I(ip))) { |
| 64 | kmem_zone_free(xfs_inode_zone, ip); |
| 65 | return NULL; |
| 66 | } |
Christoph Hellwig | 24f211b | 2008-11-28 14:23:42 +1100 | [diff] [blame] | 67 | |
| 68 | ASSERT(atomic_read(&ip->i_iocount) == 0); |
| 69 | ASSERT(atomic_read(&ip->i_pincount) == 0); |
| 70 | ASSERT(!spin_is_locked(&ip->i_flags_lock)); |
| 71 | ASSERT(completion_done(&ip->i_flush)); |
Christoph Hellwig | 033da48 | 2009-10-19 04:05:26 +0000 | [diff] [blame] | 72 | |
| 73 | mrlock_init(&ip->i_iolock, MRLOCK_BARRIER, "xfsio", ip->i_ino); |
Christoph Hellwig | 24f211b | 2008-11-28 14:23:42 +1100 | [diff] [blame] | 74 | |
Christoph Hellwig | 24f211b | 2008-11-28 14:23:42 +1100 | [diff] [blame] | 75 | /* initialise the xfs inode */ |
| 76 | ip->i_ino = ino; |
| 77 | ip->i_mount = mp; |
| 78 | memset(&ip->i_imap, 0, sizeof(struct xfs_imap)); |
| 79 | ip->i_afp = NULL; |
| 80 | memset(&ip->i_df, 0, sizeof(xfs_ifork_t)); |
| 81 | ip->i_flags = 0; |
| 82 | ip->i_update_core = 0; |
Christoph Hellwig | 24f211b | 2008-11-28 14:23:42 +1100 | [diff] [blame] | 83 | ip->i_delayed_blks = 0; |
| 84 | memset(&ip->i_d, 0, sizeof(xfs_icdinode_t)); |
| 85 | ip->i_size = 0; |
| 86 | ip->i_new_size = 0; |
| 87 | |
Dave Chinner | 705db3f | 2009-04-06 18:40:17 +0200 | [diff] [blame] | 88 | /* prevent anyone from using this yet */ |
Christoph Hellwig | eaff807 | 2009-12-17 14:25:01 +0100 | [diff] [blame] | 89 | VFS_I(ip)->i_state = I_NEW; |
Christoph Hellwig | 24f211b | 2008-11-28 14:23:42 +1100 | [diff] [blame] | 90 | |
| 91 | return ip; |
| 92 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | |
Christoph Hellwig | b36ec04 | 2009-08-07 14:38:34 -0300 | [diff] [blame] | 94 | STATIC void |
| 95 | xfs_inode_free( |
| 96 | struct xfs_inode *ip) |
| 97 | { |
| 98 | switch (ip->i_d.di_mode & S_IFMT) { |
| 99 | case S_IFREG: |
| 100 | case S_IFDIR: |
| 101 | case S_IFLNK: |
| 102 | xfs_idestroy_fork(ip, XFS_DATA_FORK); |
| 103 | break; |
| 104 | } |
| 105 | |
| 106 | if (ip->i_afp) |
| 107 | xfs_idestroy_fork(ip, XFS_ATTR_FORK); |
| 108 | |
Christoph Hellwig | b36ec04 | 2009-08-07 14:38:34 -0300 | [diff] [blame] | 109 | if (ip->i_itemp) { |
| 110 | /* |
| 111 | * Only if we are shutting down the fs will we see an |
| 112 | * inode still in the AIL. If it is there, we should remove |
| 113 | * it to prevent a use-after-free from occurring. |
| 114 | */ |
| 115 | xfs_log_item_t *lip = &ip->i_itemp->ili_item; |
| 116 | struct xfs_ail *ailp = lip->li_ailp; |
| 117 | |
| 118 | ASSERT(((lip->li_flags & XFS_LI_IN_AIL) == 0) || |
| 119 | XFS_FORCED_SHUTDOWN(ip->i_mount)); |
| 120 | if (lip->li_flags & XFS_LI_IN_AIL) { |
| 121 | spin_lock(&ailp->xa_lock); |
| 122 | if (lip->li_flags & XFS_LI_IN_AIL) |
| 123 | xfs_trans_ail_delete(ailp, lip); |
| 124 | else |
| 125 | spin_unlock(&ailp->xa_lock); |
| 126 | } |
| 127 | xfs_inode_item_destroy(ip); |
| 128 | ip->i_itemp = NULL; |
| 129 | } |
| 130 | |
| 131 | /* asserts to verify all state is correct here */ |
| 132 | ASSERT(atomic_read(&ip->i_iocount) == 0); |
| 133 | ASSERT(atomic_read(&ip->i_pincount) == 0); |
| 134 | ASSERT(!spin_is_locked(&ip->i_flags_lock)); |
| 135 | ASSERT(completion_done(&ip->i_flush)); |
| 136 | |
| 137 | kmem_zone_free(xfs_inode_zone, ip); |
| 138 | } |
| 139 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 140 | /* |
David Chinner | 6441e54 | 2008-10-30 17:21:19 +1100 | [diff] [blame] | 141 | * Check the validity of the inode we just found it the cache |
| 142 | */ |
| 143 | static int |
| 144 | xfs_iget_cache_hit( |
David Chinner | 6441e54 | 2008-10-30 17:21:19 +1100 | [diff] [blame] | 145 | struct xfs_perag *pag, |
| 146 | struct xfs_inode *ip, |
| 147 | int flags, |
| 148 | int lock_flags) __releases(pag->pag_ici_lock) |
| 149 | { |
Christoph Hellwig | bc990f5 | 2009-08-16 20:36:34 -0400 | [diff] [blame] | 150 | struct inode *inode = VFS_I(ip); |
David Chinner | 6441e54 | 2008-10-30 17:21:19 +1100 | [diff] [blame] | 151 | struct xfs_mount *mp = ip->i_mount; |
Christoph Hellwig | bc990f5 | 2009-08-16 20:36:34 -0400 | [diff] [blame] | 152 | int error; |
| 153 | |
| 154 | spin_lock(&ip->i_flags_lock); |
David Chinner | 6441e54 | 2008-10-30 17:21:19 +1100 | [diff] [blame] | 155 | |
| 156 | /* |
Christoph Hellwig | bc990f5 | 2009-08-16 20:36:34 -0400 | [diff] [blame] | 157 | * If we are racing with another cache hit that is currently |
| 158 | * instantiating this inode or currently recycling it out of |
| 159 | * reclaimabe state, wait for the initialisation to complete |
| 160 | * before continuing. |
| 161 | * |
| 162 | * XXX(hch): eventually we should do something equivalent to |
| 163 | * wait_on_inode to wait for these flags to be cleared |
| 164 | * instead of polling for it. |
David Chinner | 6441e54 | 2008-10-30 17:21:19 +1100 | [diff] [blame] | 165 | */ |
Christoph Hellwig | bc990f5 | 2009-08-16 20:36:34 -0400 | [diff] [blame] | 166 | if (ip->i_flags & (XFS_INEW|XFS_IRECLAIM)) { |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 167 | trace_xfs_iget_skip(ip); |
David Chinner | 6441e54 | 2008-10-30 17:21:19 +1100 | [diff] [blame] | 168 | XFS_STATS_INC(xs_ig_frecycle); |
Christoph Hellwig | bc990f5 | 2009-08-16 20:36:34 -0400 | [diff] [blame] | 169 | error = EAGAIN; |
David Chinner | 6441e54 | 2008-10-30 17:21:19 +1100 | [diff] [blame] | 170 | goto out_error; |
| 171 | } |
| 172 | |
Christoph Hellwig | bc990f5 | 2009-08-16 20:36:34 -0400 | [diff] [blame] | 173 | /* |
| 174 | * If lookup is racing with unlink return an error immediately. |
| 175 | */ |
| 176 | if (ip->i_d.di_mode == 0 && !(flags & XFS_IGET_CREATE)) { |
| 177 | error = ENOENT; |
| 178 | goto out_error; |
| 179 | } |
David Chinner | 6441e54 | 2008-10-30 17:21:19 +1100 | [diff] [blame] | 180 | |
Christoph Hellwig | bc990f5 | 2009-08-16 20:36:34 -0400 | [diff] [blame] | 181 | /* |
| 182 | * If IRECLAIMABLE is set, we've torn down the VFS inode already. |
| 183 | * Need to carefully get it back into useable state. |
| 184 | */ |
| 185 | if (ip->i_flags & XFS_IRECLAIMABLE) { |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 186 | trace_xfs_iget_reclaim(ip); |
David Chinner | 6441e54 | 2008-10-30 17:21:19 +1100 | [diff] [blame] | 187 | |
David Chinner | bf90424 | 2008-10-30 17:36:14 +1100 | [diff] [blame] | 188 | /* |
Christoph Hellwig | f1f724e | 2010-03-01 11:30:31 +0000 | [diff] [blame] | 189 | * We need to set XFS_IRECLAIM to prevent xfs_reclaim_inode |
| 190 | * from stomping over us while we recycle the inode. We can't |
| 191 | * clear the radix tree reclaimable tag yet as it requires |
| 192 | * pag_ici_lock to be held exclusive. |
David Chinner | bf90424 | 2008-10-30 17:36:14 +1100 | [diff] [blame] | 193 | */ |
Christoph Hellwig | f1f724e | 2010-03-01 11:30:31 +0000 | [diff] [blame] | 194 | ip->i_flags |= XFS_IRECLAIM; |
Christoph Hellwig | bc990f5 | 2009-08-16 20:36:34 -0400 | [diff] [blame] | 195 | |
| 196 | spin_unlock(&ip->i_flags_lock); |
| 197 | read_unlock(&pag->pag_ici_lock); |
| 198 | |
| 199 | error = -inode_init_always(mp->m_super, inode); |
| 200 | if (error) { |
| 201 | /* |
| 202 | * Re-initializing the inode failed, and we are in deep |
| 203 | * trouble. Try to re-add it to the reclaim list. |
| 204 | */ |
| 205 | read_lock(&pag->pag_ici_lock); |
| 206 | spin_lock(&ip->i_flags_lock); |
| 207 | |
| 208 | ip->i_flags &= ~XFS_INEW; |
| 209 | ip->i_flags |= XFS_IRECLAIMABLE; |
| 210 | __xfs_inode_set_reclaim_tag(pag, ip); |
Christoph Hellwig | d2e078c | 2010-06-24 11:50:22 +1000 | [diff] [blame^] | 211 | trace_xfs_iget_reclaim_fail(ip); |
Christoph Hellwig | bc990f5 | 2009-08-16 20:36:34 -0400 | [diff] [blame] | 212 | goto out_error; |
| 213 | } |
Christoph Hellwig | f1f724e | 2010-03-01 11:30:31 +0000 | [diff] [blame] | 214 | |
| 215 | write_lock(&pag->pag_ici_lock); |
| 216 | spin_lock(&ip->i_flags_lock); |
| 217 | ip->i_flags &= ~(XFS_IRECLAIMABLE | XFS_IRECLAIM); |
| 218 | ip->i_flags |= XFS_INEW; |
| 219 | __xfs_inode_clear_reclaim_tag(mp, pag, ip); |
Christoph Hellwig | eaff807 | 2009-12-17 14:25:01 +0100 | [diff] [blame] | 220 | inode->i_state = I_NEW; |
Christoph Hellwig | f1f724e | 2010-03-01 11:30:31 +0000 | [diff] [blame] | 221 | spin_unlock(&ip->i_flags_lock); |
| 222 | write_unlock(&pag->pag_ici_lock); |
Christoph Hellwig | bc990f5 | 2009-08-16 20:36:34 -0400 | [diff] [blame] | 223 | } else { |
| 224 | /* If the VFS inode is being torn down, pause and try again. */ |
| 225 | if (!igrab(inode)) { |
Christoph Hellwig | d2e078c | 2010-06-24 11:50:22 +1000 | [diff] [blame^] | 226 | trace_xfs_iget_skip(ip); |
Christoph Hellwig | bc990f5 | 2009-08-16 20:36:34 -0400 | [diff] [blame] | 227 | error = EAGAIN; |
David Chinner | bf90424 | 2008-10-30 17:36:14 +1100 | [diff] [blame] | 228 | goto out_error; |
| 229 | } |
David Chinner | 6bfb3d0 | 2008-10-30 18:32:43 +1100 | [diff] [blame] | 230 | |
Christoph Hellwig | bc990f5 | 2009-08-16 20:36:34 -0400 | [diff] [blame] | 231 | /* We've got a live one. */ |
| 232 | spin_unlock(&ip->i_flags_lock); |
| 233 | read_unlock(&pag->pag_ici_lock); |
Christoph Hellwig | d2e078c | 2010-06-24 11:50:22 +1000 | [diff] [blame^] | 234 | trace_xfs_iget_hit(ip); |
David Chinner | 6441e54 | 2008-10-30 17:21:19 +1100 | [diff] [blame] | 235 | } |
| 236 | |
David Chinner | 6441e54 | 2008-10-30 17:21:19 +1100 | [diff] [blame] | 237 | if (lock_flags != 0) |
| 238 | xfs_ilock(ip, lock_flags); |
| 239 | |
| 240 | xfs_iflags_clear(ip, XFS_ISTALE); |
David Chinner | 6441e54 | 2008-10-30 17:21:19 +1100 | [diff] [blame] | 241 | XFS_STATS_INC(xs_ig_found); |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 242 | |
David Chinner | 6441e54 | 2008-10-30 17:21:19 +1100 | [diff] [blame] | 243 | return 0; |
| 244 | |
| 245 | out_error: |
Christoph Hellwig | bc990f5 | 2009-08-16 20:36:34 -0400 | [diff] [blame] | 246 | spin_unlock(&ip->i_flags_lock); |
David Chinner | 6441e54 | 2008-10-30 17:21:19 +1100 | [diff] [blame] | 247 | read_unlock(&pag->pag_ici_lock); |
David Chinner | 6441e54 | 2008-10-30 17:21:19 +1100 | [diff] [blame] | 248 | return error; |
| 249 | } |
| 250 | |
| 251 | |
| 252 | static int |
| 253 | xfs_iget_cache_miss( |
| 254 | struct xfs_mount *mp, |
| 255 | struct xfs_perag *pag, |
| 256 | xfs_trans_t *tp, |
| 257 | xfs_ino_t ino, |
| 258 | struct xfs_inode **ipp, |
David Chinner | 6441e54 | 2008-10-30 17:21:19 +1100 | [diff] [blame] | 259 | int flags, |
Christoph Hellwig | 0c3dc2b | 2009-11-14 16:17:23 +0000 | [diff] [blame] | 260 | int lock_flags) |
David Chinner | 6441e54 | 2008-10-30 17:21:19 +1100 | [diff] [blame] | 261 | { |
| 262 | struct xfs_inode *ip; |
| 263 | int error; |
| 264 | unsigned long first_index, mask; |
| 265 | xfs_agino_t agino = XFS_INO_TO_AGINO(mp, ino); |
| 266 | |
Christoph Hellwig | 24f211b | 2008-11-28 14:23:42 +1100 | [diff] [blame] | 267 | ip = xfs_inode_alloc(mp, ino); |
| 268 | if (!ip) |
| 269 | return ENOMEM; |
| 270 | |
Dave Chinner | 7b6259e | 2010-06-24 11:35:17 +1000 | [diff] [blame] | 271 | error = xfs_iread(mp, tp, ip, flags); |
David Chinner | 6441e54 | 2008-10-30 17:21:19 +1100 | [diff] [blame] | 272 | if (error) |
Christoph Hellwig | 24f211b | 2008-11-28 14:23:42 +1100 | [diff] [blame] | 273 | goto out_destroy; |
David Chinner | 6441e54 | 2008-10-30 17:21:19 +1100 | [diff] [blame] | 274 | |
Christoph Hellwig | d2e078c | 2010-06-24 11:50:22 +1000 | [diff] [blame^] | 275 | trace_xfs_iget_miss(ip); |
David Chinner | 6441e54 | 2008-10-30 17:21:19 +1100 | [diff] [blame] | 276 | |
| 277 | if ((ip->i_d.di_mode == 0) && !(flags & XFS_IGET_CREATE)) { |
| 278 | error = ENOENT; |
| 279 | goto out_destroy; |
| 280 | } |
| 281 | |
| 282 | /* |
| 283 | * Preload the radix tree so we can insert safely under the |
David Chinner | 56e73ec | 2008-10-30 17:55:27 +1100 | [diff] [blame] | 284 | * write spinlock. Note that we cannot sleep inside the preload |
| 285 | * region. |
David Chinner | 6441e54 | 2008-10-30 17:21:19 +1100 | [diff] [blame] | 286 | */ |
| 287 | if (radix_tree_preload(GFP_KERNEL)) { |
| 288 | error = EAGAIN; |
Christoph Hellwig | ed93ec3 | 2009-03-03 14:48:35 -0500 | [diff] [blame] | 289 | goto out_destroy; |
| 290 | } |
| 291 | |
| 292 | /* |
| 293 | * Because the inode hasn't been added to the radix-tree yet it can't |
| 294 | * be found by another thread, so we can do the non-sleeping lock here. |
| 295 | */ |
| 296 | if (lock_flags) { |
| 297 | if (!xfs_ilock_nowait(ip, lock_flags)) |
| 298 | BUG(); |
David Chinner | 6441e54 | 2008-10-30 17:21:19 +1100 | [diff] [blame] | 299 | } |
| 300 | |
David Chinner | 6441e54 | 2008-10-30 17:21:19 +1100 | [diff] [blame] | 301 | mask = ~(((XFS_INODE_CLUSTER_SIZE(mp) >> mp->m_sb.sb_inodelog)) - 1); |
| 302 | first_index = agino & mask; |
| 303 | write_lock(&pag->pag_ici_lock); |
| 304 | |
| 305 | /* insert the new inode */ |
| 306 | error = radix_tree_insert(&pag->pag_ici_root, agino, ip); |
| 307 | if (unlikely(error)) { |
| 308 | WARN_ON(error != -EEXIST); |
| 309 | XFS_STATS_INC(xs_ig_dup); |
| 310 | error = EAGAIN; |
David Chinner | 56e73ec | 2008-10-30 17:55:27 +1100 | [diff] [blame] | 311 | goto out_preload_end; |
David Chinner | 6441e54 | 2008-10-30 17:21:19 +1100 | [diff] [blame] | 312 | } |
| 313 | |
| 314 | /* These values _must_ be set before releasing the radix tree lock! */ |
| 315 | ip->i_udquot = ip->i_gdquot = NULL; |
| 316 | xfs_iflags_set(ip, XFS_INEW); |
| 317 | |
| 318 | write_unlock(&pag->pag_ici_lock); |
| 319 | radix_tree_preload_end(); |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 320 | |
David Chinner | 6441e54 | 2008-10-30 17:21:19 +1100 | [diff] [blame] | 321 | *ipp = ip; |
| 322 | return 0; |
| 323 | |
David Chinner | 56e73ec | 2008-10-30 17:55:27 +1100 | [diff] [blame] | 324 | out_preload_end: |
David Chinner | 6441e54 | 2008-10-30 17:21:19 +1100 | [diff] [blame] | 325 | write_unlock(&pag->pag_ici_lock); |
| 326 | radix_tree_preload_end(); |
David Chinner | 56e73ec | 2008-10-30 17:55:27 +1100 | [diff] [blame] | 327 | if (lock_flags) |
| 328 | xfs_iunlock(ip, lock_flags); |
David Chinner | 6441e54 | 2008-10-30 17:21:19 +1100 | [diff] [blame] | 329 | out_destroy: |
Christoph Hellwig | b36ec04 | 2009-08-07 14:38:34 -0300 | [diff] [blame] | 330 | __destroy_inode(VFS_I(ip)); |
| 331 | xfs_inode_free(ip); |
David Chinner | 6441e54 | 2008-10-30 17:21:19 +1100 | [diff] [blame] | 332 | return error; |
| 333 | } |
| 334 | |
| 335 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 336 | * Look up an inode by number in the given file system. |
David Chinner | da353b0 | 2007-08-28 14:00:13 +1000 | [diff] [blame] | 337 | * The inode is looked up in the cache held in each AG. |
David Chinner | bf90424 | 2008-10-30 17:36:14 +1100 | [diff] [blame] | 338 | * If the inode is found in the cache, initialise the vfs inode |
| 339 | * if necessary. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 340 | * |
David Chinner | da353b0 | 2007-08-28 14:00:13 +1000 | [diff] [blame] | 341 | * 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] | 342 | * add it to the cache and initialise the vfs inode. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 343 | * |
| 344 | * The inode is locked according to the value of the lock_flags parameter. |
| 345 | * This flag parameter indicates how and if the inode's IO lock and inode lock |
| 346 | * should be taken. |
| 347 | * |
| 348 | * mp -- the mount point structure for the current file system. It points |
| 349 | * to the inode hash table. |
| 350 | * tp -- a pointer to the current transaction if there is one. This is |
| 351 | * simply passed through to the xfs_iread() call. |
| 352 | * ino -- the number of the inode desired. This is the unique identifier |
| 353 | * within the file system for the inode being requested. |
| 354 | * lock_flags -- flags indicating how to lock the inode. See the comment |
| 355 | * for xfs_ilock() for a list of valid values. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 356 | */ |
David Chinner | bf90424 | 2008-10-30 17:36:14 +1100 | [diff] [blame] | 357 | int |
| 358 | xfs_iget( |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 359 | xfs_mount_t *mp, |
| 360 | xfs_trans_t *tp, |
| 361 | xfs_ino_t ino, |
| 362 | uint flags, |
| 363 | uint lock_flags, |
Dave Chinner | 7b6259e | 2010-06-24 11:35:17 +1000 | [diff] [blame] | 364 | xfs_inode_t **ipp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 365 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 366 | xfs_inode_t *ip; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 367 | int error; |
David Chinner | da353b0 | 2007-08-28 14:00:13 +1000 | [diff] [blame] | 368 | xfs_perag_t *pag; |
| 369 | xfs_agino_t agino; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 370 | |
David Chinner | da353b0 | 2007-08-28 14:00:13 +1000 | [diff] [blame] | 371 | /* the radix tree exists only in inode capable AGs */ |
| 372 | if (XFS_INO_TO_AGNO(mp, ino) >= mp->m_maxagi) |
| 373 | return EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 374 | |
David Chinner | da353b0 | 2007-08-28 14:00:13 +1000 | [diff] [blame] | 375 | /* get the perag structure and ensure that it's inode capable */ |
Dave Chinner | 5017e97 | 2010-01-11 11:47:40 +0000 | [diff] [blame] | 376 | pag = xfs_perag_get(mp, XFS_INO_TO_AGNO(mp, ino)); |
David Chinner | da353b0 | 2007-08-28 14:00:13 +1000 | [diff] [blame] | 377 | agino = XFS_INO_TO_AGINO(mp, ino); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 378 | |
| 379 | again: |
David Chinner | 6441e54 | 2008-10-30 17:21:19 +1100 | [diff] [blame] | 380 | error = 0; |
David Chinner | da353b0 | 2007-08-28 14:00:13 +1000 | [diff] [blame] | 381 | read_lock(&pag->pag_ici_lock); |
| 382 | ip = radix_tree_lookup(&pag->pag_ici_root, agino); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 383 | |
David Chinner | 6441e54 | 2008-10-30 17:21:19 +1100 | [diff] [blame] | 384 | if (ip) { |
David Chinner | bf90424 | 2008-10-30 17:36:14 +1100 | [diff] [blame] | 385 | error = xfs_iget_cache_hit(pag, ip, flags, lock_flags); |
David Chinner | 6441e54 | 2008-10-30 17:21:19 +1100 | [diff] [blame] | 386 | if (error) |
| 387 | goto out_error_or_again; |
| 388 | } else { |
David Chinner | da353b0 | 2007-08-28 14:00:13 +1000 | [diff] [blame] | 389 | read_unlock(&pag->pag_ici_lock); |
David Chinner | 6441e54 | 2008-10-30 17:21:19 +1100 | [diff] [blame] | 390 | XFS_STATS_INC(xs_ig_missed); |
David Chinner | da353b0 | 2007-08-28 14:00:13 +1000 | [diff] [blame] | 391 | |
Dave Chinner | 7b6259e | 2010-06-24 11:35:17 +1000 | [diff] [blame] | 392 | error = xfs_iget_cache_miss(mp, pag, tp, ino, &ip, |
David Chinner | 6441e54 | 2008-10-30 17:21:19 +1100 | [diff] [blame] | 393 | flags, lock_flags); |
| 394 | if (error) |
| 395 | goto out_error_or_again; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 396 | } |
Dave Chinner | 5017e97 | 2010-01-11 11:47:40 +0000 | [diff] [blame] | 397 | xfs_perag_put(pag); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 398 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 399 | *ipp = ip; |
| 400 | |
David Chinner | bf90424 | 2008-10-30 17:36:14 +1100 | [diff] [blame] | 401 | ASSERT(ip->i_df.if_ext_max == |
| 402 | XFS_IFORK_DSIZE(ip) / sizeof(xfs_bmbt_rec_t)); |
Christoph Hellwig | 41be8be | 2008-08-13 16:23:13 +1000 | [diff] [blame] | 403 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 404 | * If we have a real type for an on-disk inode, we can set ops(&unlock) |
| 405 | * now. If it's a new inode being created, xfs_ialloc will handle it. |
| 406 | */ |
David Chinner | bf90424 | 2008-10-30 17:36:14 +1100 | [diff] [blame] | 407 | 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] | 408 | xfs_setup_inode(ip); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 409 | return 0; |
David Chinner | 6441e54 | 2008-10-30 17:21:19 +1100 | [diff] [blame] | 410 | |
| 411 | out_error_or_again: |
| 412 | if (error == EAGAIN) { |
| 413 | delay(1); |
| 414 | goto again; |
| 415 | } |
Dave Chinner | 5017e97 | 2010-01-11 11:47:40 +0000 | [diff] [blame] | 416 | xfs_perag_put(pag); |
David Chinner | 6441e54 | 2008-10-30 17:21:19 +1100 | [diff] [blame] | 417 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 418 | } |
| 419 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 420 | /* |
| 421 | * Decrement reference count of an inode structure and unlock it. |
| 422 | * |
| 423 | * ip -- the inode being released |
| 424 | * lock_flags -- this parameter indicates the inode's locks to be |
| 425 | * to be released. See the comment on xfs_iunlock() for a list |
| 426 | * of valid values. |
| 427 | */ |
| 428 | void |
| 429 | xfs_iput(xfs_inode_t *ip, |
| 430 | uint lock_flags) |
| 431 | { |
Lachlan McIlroy | cf441ee | 2008-02-07 16:42:19 +1100 | [diff] [blame] | 432 | xfs_itrace_entry(ip); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 433 | xfs_iunlock(ip, lock_flags); |
Christoph Hellwig | 10090be | 2007-10-11 18:11:03 +1000 | [diff] [blame] | 434 | IRELE(ip); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 435 | } |
| 436 | |
| 437 | /* |
| 438 | * Special iput for brand-new inodes that are still locked |
| 439 | */ |
| 440 | void |
David Chinner | 0165164 | 2008-08-13 15:45:15 +1000 | [diff] [blame] | 441 | xfs_iput_new( |
| 442 | xfs_inode_t *ip, |
| 443 | uint lock_flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 444 | { |
David Chinner | 0165164 | 2008-08-13 15:45:15 +1000 | [diff] [blame] | 445 | struct inode *inode = VFS_I(ip); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 446 | |
Lachlan McIlroy | cf441ee | 2008-02-07 16:42:19 +1100 | [diff] [blame] | 447 | xfs_itrace_entry(ip); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 448 | |
| 449 | if ((ip->i_d.di_mode == 0)) { |
David Chinner | 7a18c38 | 2006-11-11 18:04:54 +1100 | [diff] [blame] | 450 | ASSERT(!xfs_iflags_test(ip, XFS_IRECLAIMABLE)); |
Christoph Hellwig | 10090be | 2007-10-11 18:11:03 +1000 | [diff] [blame] | 451 | make_bad_inode(inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 452 | } |
| 453 | if (inode->i_state & I_NEW) |
| 454 | unlock_new_inode(inode); |
| 455 | if (lock_flags) |
| 456 | xfs_iunlock(ip, lock_flags); |
Christoph Hellwig | 10090be | 2007-10-11 18:11:03 +1000 | [diff] [blame] | 457 | IRELE(ip); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 458 | } |
| 459 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 460 | /* |
Christoph Hellwig | 5cafdeb | 2008-12-03 12:20:25 +0100 | [diff] [blame] | 461 | * This is called free all the memory associated with an inode. |
| 462 | * It must free the inode itself and any buffers allocated for |
| 463 | * if_extents/if_data and if_broot. It must also free the lock |
| 464 | * associated with the inode. |
| 465 | * |
| 466 | * Note: because we don't initialise everything on reallocation out |
| 467 | * of the zone, we must ensure we nullify everything correctly before |
| 468 | * freeing the structure. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 469 | */ |
| 470 | void |
Christoph Hellwig | 5cafdeb | 2008-12-03 12:20:25 +0100 | [diff] [blame] | 471 | xfs_ireclaim( |
| 472 | struct xfs_inode *ip) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 473 | { |
Christoph Hellwig | 5cafdeb | 2008-12-03 12:20:25 +0100 | [diff] [blame] | 474 | struct xfs_mount *mp = ip->i_mount; |
| 475 | struct xfs_perag *pag; |
Christoph Hellwig | b44b112 | 2009-12-01 18:12:29 +0000 | [diff] [blame] | 476 | xfs_agino_t agino = XFS_INO_TO_AGINO(mp, ip->i_ino); |
Christoph Hellwig | 5cafdeb | 2008-12-03 12:20:25 +0100 | [diff] [blame] | 477 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 478 | XFS_STATS_INC(xs_ig_reclaims); |
| 479 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 480 | /* |
Christoph Hellwig | b44b112 | 2009-12-01 18:12:29 +0000 | [diff] [blame] | 481 | * Remove the inode from the per-AG radix tree. |
| 482 | * |
| 483 | * Because radix_tree_delete won't complain even if the item was never |
| 484 | * added to the tree assert that it's been there before to catch |
| 485 | * problems with the inode life time early on. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 486 | */ |
Dave Chinner | 5017e97 | 2010-01-11 11:47:40 +0000 | [diff] [blame] | 487 | pag = xfs_perag_get(mp, XFS_INO_TO_AGNO(mp, ip->i_ino)); |
David Chinner | da353b0 | 2007-08-28 14:00:13 +1000 | [diff] [blame] | 488 | write_lock(&pag->pag_ici_lock); |
Christoph Hellwig | b44b112 | 2009-12-01 18:12:29 +0000 | [diff] [blame] | 489 | if (!radix_tree_delete(&pag->pag_ici_root, agino)) |
| 490 | ASSERT(0); |
David Chinner | da353b0 | 2007-08-28 14:00:13 +1000 | [diff] [blame] | 491 | write_unlock(&pag->pag_ici_lock); |
Dave Chinner | 5017e97 | 2010-01-11 11:47:40 +0000 | [diff] [blame] | 492 | xfs_perag_put(pag); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 493 | |
Christoph Hellwig | 5cafdeb | 2008-12-03 12:20:25 +0100 | [diff] [blame] | 494 | /* |
| 495 | * Here we do an (almost) spurious inode lock in order to coordinate |
| 496 | * with inode cache radix tree lookups. This is because the lookup |
| 497 | * can reference the inodes in the cache without taking references. |
| 498 | * |
| 499 | * We make that OK here by ensuring that we wait until the inode is |
| 500 | * unlocked after the lookup before we go ahead and free it. We get |
| 501 | * both the ilock and the iolock because the code may need to drop the |
| 502 | * ilock one but will still hold the iolock. |
| 503 | */ |
| 504 | xfs_ilock(ip, XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL); |
Christoph Hellwig | 7d09525 | 2009-06-08 15:33:32 +0200 | [diff] [blame] | 505 | xfs_qm_dqdetach(ip); |
Christoph Hellwig | 5cafdeb | 2008-12-03 12:20:25 +0100 | [diff] [blame] | 506 | xfs_iunlock(ip, XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL); |
| 507 | |
Christoph Hellwig | b36ec04 | 2009-08-07 14:38:34 -0300 | [diff] [blame] | 508 | xfs_inode_free(ip); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 509 | } |
| 510 | |
| 511 | /* |
| 512 | * This is a wrapper routine around the xfs_ilock() routine |
| 513 | * used to centralize some grungy code. It is used in places |
| 514 | * that wish to lock the inode solely for reading the extents. |
| 515 | * The reason these places can't just call xfs_ilock(SHARED) |
| 516 | * is that the inode lock also guards to bringing in of the |
| 517 | * extents from disk for a file in b-tree format. If the inode |
| 518 | * is in b-tree format, then we need to lock the inode exclusively |
| 519 | * until the extents are read in. Locking it exclusively all |
| 520 | * the time would limit our parallelism unnecessarily, though. |
| 521 | * What we do instead is check to see if the extents have been |
| 522 | * read in yet, and only lock the inode exclusively if they |
| 523 | * have not. |
| 524 | * |
| 525 | * The function returns a value which should be given to the |
| 526 | * corresponding xfs_iunlock_map_shared(). This value is |
| 527 | * the mode in which the lock was actually taken. |
| 528 | */ |
| 529 | uint |
| 530 | xfs_ilock_map_shared( |
| 531 | xfs_inode_t *ip) |
| 532 | { |
| 533 | uint lock_mode; |
| 534 | |
| 535 | if ((ip->i_d.di_format == XFS_DINODE_FMT_BTREE) && |
| 536 | ((ip->i_df.if_flags & XFS_IFEXTENTS) == 0)) { |
| 537 | lock_mode = XFS_ILOCK_EXCL; |
| 538 | } else { |
| 539 | lock_mode = XFS_ILOCK_SHARED; |
| 540 | } |
| 541 | |
| 542 | xfs_ilock(ip, lock_mode); |
| 543 | |
| 544 | return lock_mode; |
| 545 | } |
| 546 | |
| 547 | /* |
| 548 | * This is simply the unlock routine to go with xfs_ilock_map_shared(). |
| 549 | * All it does is call xfs_iunlock() with the given lock_mode. |
| 550 | */ |
| 551 | void |
| 552 | xfs_iunlock_map_shared( |
| 553 | xfs_inode_t *ip, |
| 554 | unsigned int lock_mode) |
| 555 | { |
| 556 | xfs_iunlock(ip, lock_mode); |
| 557 | } |
| 558 | |
| 559 | /* |
| 560 | * The xfs inode contains 2 locks: a multi-reader lock called the |
| 561 | * i_iolock and a multi-reader lock called the i_lock. This routine |
| 562 | * allows either or both of the locks to be obtained. |
| 563 | * |
| 564 | * The 2 locks should always be ordered so that the IO lock is |
| 565 | * obtained first in order to prevent deadlock. |
| 566 | * |
| 567 | * ip -- the inode being locked |
| 568 | * lock_flags -- this parameter indicates the inode's locks |
| 569 | * to be locked. It can be: |
| 570 | * XFS_IOLOCK_SHARED, |
| 571 | * XFS_IOLOCK_EXCL, |
| 572 | * XFS_ILOCK_SHARED, |
| 573 | * XFS_ILOCK_EXCL, |
| 574 | * XFS_IOLOCK_SHARED | XFS_ILOCK_SHARED, |
| 575 | * XFS_IOLOCK_SHARED | XFS_ILOCK_EXCL, |
| 576 | * XFS_IOLOCK_EXCL | XFS_ILOCK_SHARED, |
| 577 | * XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL |
| 578 | */ |
| 579 | void |
Christoph Hellwig | 579aa9c | 2008-04-22 17:34:00 +1000 | [diff] [blame] | 580 | xfs_ilock( |
| 581 | xfs_inode_t *ip, |
| 582 | uint lock_flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 583 | { |
| 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 | |
Christoph Hellwig | 579aa9c | 2008-04-22 17:34:00 +1000 | [diff] [blame] | 595 | if (lock_flags & XFS_IOLOCK_EXCL) |
Lachlan McIlroy | f7c66ce | 2007-05-08 13:50:19 +1000 | [diff] [blame] | 596 | mrupdate_nested(&ip->i_iolock, XFS_IOLOCK_DEP(lock_flags)); |
Christoph Hellwig | 579aa9c | 2008-04-22 17:34:00 +1000 | [diff] [blame] | 597 | else if (lock_flags & XFS_IOLOCK_SHARED) |
Lachlan McIlroy | f7c66ce | 2007-05-08 13:50:19 +1000 | [diff] [blame] | 598 | mraccess_nested(&ip->i_iolock, XFS_IOLOCK_DEP(lock_flags)); |
Christoph Hellwig | 579aa9c | 2008-04-22 17:34:00 +1000 | [diff] [blame] | 599 | |
| 600 | if (lock_flags & XFS_ILOCK_EXCL) |
Lachlan McIlroy | f7c66ce | 2007-05-08 13:50:19 +1000 | [diff] [blame] | 601 | mrupdate_nested(&ip->i_lock, XFS_ILOCK_DEP(lock_flags)); |
Christoph Hellwig | 579aa9c | 2008-04-22 17:34:00 +1000 | [diff] [blame] | 602 | else if (lock_flags & XFS_ILOCK_SHARED) |
Lachlan McIlroy | f7c66ce | 2007-05-08 13:50:19 +1000 | [diff] [blame] | 603 | mraccess_nested(&ip->i_lock, XFS_ILOCK_DEP(lock_flags)); |
Christoph Hellwig | 579aa9c | 2008-04-22 17:34:00 +1000 | [diff] [blame] | 604 | |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 605 | trace_xfs_ilock(ip, lock_flags, _RET_IP_); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 606 | } |
| 607 | |
| 608 | /* |
| 609 | * This is just like xfs_ilock(), except that the caller |
| 610 | * is guaranteed not to sleep. It returns 1 if it gets |
| 611 | * the requested locks and 0 otherwise. If the IO lock is |
| 612 | * obtained but the inode lock cannot be, then the IO lock |
| 613 | * is dropped before returning. |
| 614 | * |
| 615 | * ip -- the inode being locked |
| 616 | * lock_flags -- this parameter indicates the inode's locks to be |
| 617 | * to be locked. See the comment for xfs_ilock() for a list |
| 618 | * of valid values. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 619 | */ |
| 620 | int |
Christoph Hellwig | 579aa9c | 2008-04-22 17:34:00 +1000 | [diff] [blame] | 621 | xfs_ilock_nowait( |
| 622 | xfs_inode_t *ip, |
| 623 | uint lock_flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 624 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 625 | /* |
| 626 | * You can't set both SHARED and EXCL for the same lock, |
| 627 | * and only XFS_IOLOCK_SHARED, XFS_IOLOCK_EXCL, XFS_ILOCK_SHARED, |
| 628 | * and XFS_ILOCK_EXCL are valid values to set in lock_flags. |
| 629 | */ |
| 630 | ASSERT((lock_flags & (XFS_IOLOCK_SHARED | XFS_IOLOCK_EXCL)) != |
| 631 | (XFS_IOLOCK_SHARED | XFS_IOLOCK_EXCL)); |
| 632 | ASSERT((lock_flags & (XFS_ILOCK_SHARED | XFS_ILOCK_EXCL)) != |
| 633 | (XFS_ILOCK_SHARED | XFS_ILOCK_EXCL)); |
Lachlan McIlroy | f7c66ce | 2007-05-08 13:50:19 +1000 | [diff] [blame] | 634 | ASSERT((lock_flags & ~(XFS_LOCK_MASK | XFS_LOCK_DEP_MASK)) == 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 635 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 636 | if (lock_flags & XFS_IOLOCK_EXCL) { |
Christoph Hellwig | 579aa9c | 2008-04-22 17:34:00 +1000 | [diff] [blame] | 637 | if (!mrtryupdate(&ip->i_iolock)) |
| 638 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 639 | } else if (lock_flags & XFS_IOLOCK_SHARED) { |
Christoph Hellwig | 579aa9c | 2008-04-22 17:34:00 +1000 | [diff] [blame] | 640 | if (!mrtryaccess(&ip->i_iolock)) |
| 641 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 642 | } |
| 643 | if (lock_flags & XFS_ILOCK_EXCL) { |
Christoph Hellwig | 579aa9c | 2008-04-22 17:34:00 +1000 | [diff] [blame] | 644 | if (!mrtryupdate(&ip->i_lock)) |
| 645 | goto out_undo_iolock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 646 | } else if (lock_flags & XFS_ILOCK_SHARED) { |
Christoph Hellwig | 579aa9c | 2008-04-22 17:34:00 +1000 | [diff] [blame] | 647 | if (!mrtryaccess(&ip->i_lock)) |
| 648 | goto out_undo_iolock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 649 | } |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 650 | trace_xfs_ilock_nowait(ip, lock_flags, _RET_IP_); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 651 | return 1; |
Christoph Hellwig | 579aa9c | 2008-04-22 17:34:00 +1000 | [diff] [blame] | 652 | |
| 653 | out_undo_iolock: |
| 654 | if (lock_flags & XFS_IOLOCK_EXCL) |
| 655 | mrunlock_excl(&ip->i_iolock); |
| 656 | else if (lock_flags & XFS_IOLOCK_SHARED) |
| 657 | mrunlock_shared(&ip->i_iolock); |
| 658 | out: |
| 659 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 660 | } |
| 661 | |
| 662 | /* |
| 663 | * xfs_iunlock() is used to drop the inode locks acquired with |
| 664 | * xfs_ilock() and xfs_ilock_nowait(). The caller must pass |
| 665 | * in the flags given to xfs_ilock() or xfs_ilock_nowait() so |
| 666 | * that we know which locks to drop. |
| 667 | * |
| 668 | * ip -- the inode being unlocked |
| 669 | * lock_flags -- this parameter indicates the inode's locks to be |
| 670 | * to be unlocked. See the comment for xfs_ilock() for a list |
| 671 | * of valid values for this parameter. |
| 672 | * |
| 673 | */ |
| 674 | void |
Christoph Hellwig | 579aa9c | 2008-04-22 17:34:00 +1000 | [diff] [blame] | 675 | xfs_iunlock( |
| 676 | xfs_inode_t *ip, |
| 677 | uint lock_flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 678 | { |
| 679 | /* |
| 680 | * You can't set both SHARED and EXCL for the same lock, |
| 681 | * and only XFS_IOLOCK_SHARED, XFS_IOLOCK_EXCL, XFS_ILOCK_SHARED, |
| 682 | * and XFS_ILOCK_EXCL are valid values to set in lock_flags. |
| 683 | */ |
| 684 | ASSERT((lock_flags & (XFS_IOLOCK_SHARED | XFS_IOLOCK_EXCL)) != |
| 685 | (XFS_IOLOCK_SHARED | XFS_IOLOCK_EXCL)); |
| 686 | ASSERT((lock_flags & (XFS_ILOCK_SHARED | XFS_ILOCK_EXCL)) != |
| 687 | (XFS_ILOCK_SHARED | XFS_ILOCK_EXCL)); |
Lachlan McIlroy | f7c66ce | 2007-05-08 13:50:19 +1000 | [diff] [blame] | 688 | ASSERT((lock_flags & ~(XFS_LOCK_MASK | XFS_IUNLOCK_NONOTIFY | |
| 689 | XFS_LOCK_DEP_MASK)) == 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 690 | ASSERT(lock_flags != 0); |
| 691 | |
Christoph Hellwig | 579aa9c | 2008-04-22 17:34:00 +1000 | [diff] [blame] | 692 | if (lock_flags & XFS_IOLOCK_EXCL) |
| 693 | mrunlock_excl(&ip->i_iolock); |
| 694 | else if (lock_flags & XFS_IOLOCK_SHARED) |
| 695 | mrunlock_shared(&ip->i_iolock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 696 | |
Christoph Hellwig | 579aa9c | 2008-04-22 17:34:00 +1000 | [diff] [blame] | 697 | if (lock_flags & XFS_ILOCK_EXCL) |
| 698 | mrunlock_excl(&ip->i_lock); |
| 699 | else if (lock_flags & XFS_ILOCK_SHARED) |
| 700 | mrunlock_shared(&ip->i_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 701 | |
Christoph Hellwig | 579aa9c | 2008-04-22 17:34:00 +1000 | [diff] [blame] | 702 | if ((lock_flags & (XFS_ILOCK_SHARED | XFS_ILOCK_EXCL)) && |
| 703 | !(lock_flags & XFS_IUNLOCK_NONOTIFY) && ip->i_itemp) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 704 | /* |
| 705 | * Let the AIL know that this item has been unlocked in case |
| 706 | * it is in the AIL and anyone is waiting on it. Don't do |
| 707 | * this if the caller has asked us not to. |
| 708 | */ |
David Chinner | 783a2f6 | 2008-10-30 17:39:58 +1100 | [diff] [blame] | 709 | xfs_trans_unlocked_item(ip->i_itemp->ili_item.li_ailp, |
Christoph Hellwig | 579aa9c | 2008-04-22 17:34:00 +1000 | [diff] [blame] | 710 | (xfs_log_item_t*)(ip->i_itemp)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 711 | } |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 712 | trace_xfs_iunlock(ip, lock_flags, _RET_IP_); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 713 | } |
| 714 | |
| 715 | /* |
| 716 | * give up write locks. the i/o lock cannot be held nested |
| 717 | * if it is being demoted. |
| 718 | */ |
| 719 | void |
Christoph Hellwig | 579aa9c | 2008-04-22 17:34:00 +1000 | [diff] [blame] | 720 | xfs_ilock_demote( |
| 721 | xfs_inode_t *ip, |
| 722 | uint lock_flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 723 | { |
| 724 | ASSERT(lock_flags & (XFS_IOLOCK_EXCL|XFS_ILOCK_EXCL)); |
| 725 | ASSERT((lock_flags & ~(XFS_IOLOCK_EXCL|XFS_ILOCK_EXCL)) == 0); |
| 726 | |
Christoph Hellwig | 579aa9c | 2008-04-22 17:34:00 +1000 | [diff] [blame] | 727 | if (lock_flags & XFS_ILOCK_EXCL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 728 | mrdemote(&ip->i_lock); |
Christoph Hellwig | 579aa9c | 2008-04-22 17:34:00 +1000 | [diff] [blame] | 729 | if (lock_flags & XFS_IOLOCK_EXCL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 730 | mrdemote(&ip->i_iolock); |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 731 | |
| 732 | trace_xfs_ilock_demote(ip, lock_flags, _RET_IP_); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 733 | } |
| 734 | |
Christoph Hellwig | 579aa9c | 2008-04-22 17:34:00 +1000 | [diff] [blame] | 735 | #ifdef DEBUG |
Christoph Hellwig | 579aa9c | 2008-04-22 17:34:00 +1000 | [diff] [blame] | 736 | int |
| 737 | xfs_isilocked( |
| 738 | xfs_inode_t *ip, |
| 739 | uint lock_flags) |
| 740 | { |
Christoph Hellwig | f936972 | 2010-06-03 16:22:29 +1000 | [diff] [blame] | 741 | if (lock_flags & (XFS_ILOCK_EXCL|XFS_ILOCK_SHARED)) { |
| 742 | if (!(lock_flags & XFS_ILOCK_SHARED)) |
| 743 | return !!ip->i_lock.mr_writer; |
| 744 | return rwsem_is_locked(&ip->i_lock.mr_lock); |
Christoph Hellwig | 579aa9c | 2008-04-22 17:34:00 +1000 | [diff] [blame] | 745 | } |
| 746 | |
Christoph Hellwig | f936972 | 2010-06-03 16:22:29 +1000 | [diff] [blame] | 747 | if (lock_flags & (XFS_IOLOCK_EXCL|XFS_IOLOCK_SHARED)) { |
| 748 | if (!(lock_flags & XFS_IOLOCK_SHARED)) |
| 749 | return !!ip->i_iolock.mr_writer; |
| 750 | return rwsem_is_locked(&ip->i_iolock.mr_lock); |
Christoph Hellwig | 579aa9c | 2008-04-22 17:34:00 +1000 | [diff] [blame] | 751 | } |
| 752 | |
Christoph Hellwig | f936972 | 2010-06-03 16:22:29 +1000 | [diff] [blame] | 753 | ASSERT(0); |
| 754 | return 0; |
Christoph Hellwig | 579aa9c | 2008-04-22 17:34:00 +1000 | [diff] [blame] | 755 | } |
| 756 | #endif |