| 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" | 
| Nathan Scott | a844f45 | 2005-11-02 14:38:42 +1100 | [diff] [blame] | 21 | #include "xfs_bit.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_dir2.h" | 
|  | 28 | #include "xfs_dmapi.h" | 
|  | 29 | #include "xfs_mount.h" | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | #include "xfs_bmap_btree.h" | 
| Nathan Scott | a844f45 | 2005-11-02 14:38:42 +1100 | [diff] [blame] | 31 | #include "xfs_alloc_btree.h" | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | #include "xfs_ialloc_btree.h" | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | #include "xfs_dir2_sf.h" | 
| Nathan Scott | a844f45 | 2005-11-02 14:38:42 +1100 | [diff] [blame] | 34 | #include "xfs_attr_sf.h" | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | #include "xfs_dinode.h" | 
|  | 36 | #include "xfs_inode.h" | 
| Nathan Scott | a844f45 | 2005-11-02 14:38:42 +1100 | [diff] [blame] | 37 | #include "xfs_btree.h" | 
|  | 38 | #include "xfs_ialloc.h" | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | #include "xfs_quota.h" | 
|  | 40 | #include "xfs_utils.h" | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 |  | 
|  | 42 | /* | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | * Look up an inode by number in the given file system. | 
| David Chinner | da353b0 | 2007-08-28 14:00:13 +1000 | [diff] [blame] | 44 | * The inode is looked up in the cache held in each AG. | 
|  | 45 | * If the inode is found in the cache, attach it to the provided | 
|  | 46 | * vnode. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | * | 
| David Chinner | da353b0 | 2007-08-28 14:00:13 +1000 | [diff] [blame] | 48 | * If it is not in core, read it in from the file system's device, | 
|  | 49 | * add it to the cache and attach the provided vnode. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | * | 
|  | 51 | * The inode is locked according to the value of the lock_flags parameter. | 
|  | 52 | * This flag parameter indicates how and if the inode's IO lock and inode lock | 
|  | 53 | * should be taken. | 
|  | 54 | * | 
|  | 55 | * mp -- the mount point structure for the current file system.  It points | 
|  | 56 | *       to the inode hash table. | 
|  | 57 | * tp -- a pointer to the current transaction if there is one.  This is | 
|  | 58 | *       simply passed through to the xfs_iread() call. | 
|  | 59 | * ino -- the number of the inode desired.  This is the unique identifier | 
|  | 60 | *        within the file system for the inode being requested. | 
|  | 61 | * lock_flags -- flags indicating how to lock the inode.  See the comment | 
|  | 62 | *		 for xfs_ilock() for a list of valid values. | 
|  | 63 | * bno -- the block number starting the buffer containing the inode, | 
|  | 64 | *	  if known (as by bulkstat), else 0. | 
|  | 65 | */ | 
|  | 66 | STATIC int | 
|  | 67 | xfs_iget_core( | 
| Nathan Scott | 67fcaa7 | 2006-06-09 17:00:52 +1000 | [diff] [blame] | 68 | bhv_vnode_t	*vp, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | xfs_mount_t	*mp, | 
|  | 70 | xfs_trans_t	*tp, | 
|  | 71 | xfs_ino_t	ino, | 
|  | 72 | uint		flags, | 
|  | 73 | uint		lock_flags, | 
|  | 74 | xfs_inode_t	**ipp, | 
|  | 75 | xfs_daddr_t	bno) | 
|  | 76 | { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | xfs_inode_t	*ip; | 
|  | 78 | xfs_inode_t	*iq; | 
| Nathan Scott | 67fcaa7 | 2006-06-09 17:00:52 +1000 | [diff] [blame] | 79 | bhv_vnode_t	*inode_vp; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | int		error; | 
| David Chinner | da353b0 | 2007-08-28 14:00:13 +1000 | [diff] [blame] | 81 | xfs_icluster_t	*icl, *new_icl = NULL; | 
|  | 82 | unsigned long	first_index, mask; | 
|  | 83 | xfs_perag_t	*pag; | 
|  | 84 | xfs_agino_t	agino; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 |  | 
| David Chinner | da353b0 | 2007-08-28 14:00:13 +1000 | [diff] [blame] | 86 | /* the radix tree exists only in inode capable AGs */ | 
|  | 87 | if (XFS_INO_TO_AGNO(mp, ino) >= mp->m_maxagi) | 
|  | 88 | return EINVAL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 |  | 
| David Chinner | da353b0 | 2007-08-28 14:00:13 +1000 | [diff] [blame] | 90 | /* get the perag structure and ensure that it's inode capable */ | 
|  | 91 | pag = xfs_get_perag(mp, ino); | 
|  | 92 | if (!pag->pagi_inodeok) | 
|  | 93 | return EINVAL; | 
|  | 94 | ASSERT(pag->pag_ici_init); | 
|  | 95 | agino = XFS_INO_TO_AGINO(mp, ino); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 |  | 
|  | 97 | again: | 
| David Chinner | da353b0 | 2007-08-28 14:00:13 +1000 | [diff] [blame] | 98 | read_lock(&pag->pag_ici_lock); | 
|  | 99 | ip = radix_tree_lookup(&pag->pag_ici_root, agino); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 |  | 
| David Chinner | da353b0 | 2007-08-28 14:00:13 +1000 | [diff] [blame] | 101 | if (ip != NULL) { | 
|  | 102 | /* | 
|  | 103 | * If INEW is set this inode is being set up | 
|  | 104 | * we need to pause and try again. | 
|  | 105 | */ | 
|  | 106 | if (xfs_iflags_test(ip, XFS_INEW)) { | 
|  | 107 | read_unlock(&pag->pag_ici_lock); | 
|  | 108 | delay(1); | 
|  | 109 | XFS_STATS_INC(xs_ig_frecycle); | 
|  | 110 |  | 
|  | 111 | goto again; | 
|  | 112 | } | 
|  | 113 |  | 
|  | 114 | inode_vp = XFS_ITOV_NULL(ip); | 
|  | 115 | if (inode_vp == NULL) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | /* | 
| David Chinner | da353b0 | 2007-08-28 14:00:13 +1000 | [diff] [blame] | 117 | * If IRECLAIM is set this inode is | 
|  | 118 | * on its way out of the system, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | * we need to pause and try again. | 
|  | 120 | */ | 
| David Chinner | da353b0 | 2007-08-28 14:00:13 +1000 | [diff] [blame] | 121 | if (xfs_iflags_test(ip, XFS_IRECLAIM)) { | 
|  | 122 | read_unlock(&pag->pag_ici_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | delay(1); | 
|  | 124 | XFS_STATS_INC(xs_ig_frecycle); | 
|  | 125 |  | 
|  | 126 | goto again; | 
|  | 127 | } | 
| David Chinner | da353b0 | 2007-08-28 14:00:13 +1000 | [diff] [blame] | 128 | ASSERT(xfs_iflags_test(ip, XFS_IRECLAIMABLE)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 |  | 
| David Chinner | da353b0 | 2007-08-28 14:00:13 +1000 | [diff] [blame] | 130 | /* | 
|  | 131 | * If lookup is racing with unlink, then we | 
|  | 132 | * should return an error immediately so we | 
|  | 133 | * don't remove it from the reclaim list and | 
|  | 134 | * potentially leak the inode. | 
|  | 135 | */ | 
|  | 136 | if ((ip->i_d.di_mode == 0) && | 
|  | 137 | !(flags & XFS_IGET_CREATE)) { | 
|  | 138 | read_unlock(&pag->pag_ici_lock); | 
|  | 139 | xfs_put_perag(mp, pag); | 
|  | 140 | return ENOENT; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | } | 
|  | 142 |  | 
| Nathan Scott | 71bce25 | 2005-05-05 13:23:27 -0700 | [diff] [blame] | 143 | /* | 
| David Chinner | da353b0 | 2007-08-28 14:00:13 +1000 | [diff] [blame] | 144 | * There may be transactions sitting in the | 
|  | 145 | * incore log buffers or being flushed to disk | 
|  | 146 | * at this time.  We can't clear the | 
|  | 147 | * XFS_IRECLAIMABLE flag until these | 
|  | 148 | * transactions have hit the disk, otherwise we | 
|  | 149 | * will void the guarantee the flag provides | 
|  | 150 | * xfs_iunpin() | 
| Nathan Scott | 71bce25 | 2005-05-05 13:23:27 -0700 | [diff] [blame] | 151 | */ | 
| David Chinner | da353b0 | 2007-08-28 14:00:13 +1000 | [diff] [blame] | 152 | if (xfs_ipincount(ip)) { | 
|  | 153 | read_unlock(&pag->pag_ici_lock); | 
|  | 154 | xfs_log_force(mp, 0, | 
|  | 155 | XFS_LOG_FORCE|XFS_LOG_SYNC); | 
|  | 156 | XFS_STATS_INC(xs_ig_frecycle); | 
|  | 157 | goto again; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 158 | } | 
| Nathan Scott | 745b1f47 | 2006-09-28 11:02:23 +1000 | [diff] [blame] | 159 |  | 
| Christoph Hellwig | 1543d79 | 2007-08-29 11:46:47 +1000 | [diff] [blame] | 160 | vn_trace_exit(ip, "xfs_iget.alloc", | 
| David Chinner | da353b0 | 2007-08-28 14:00:13 +1000 | [diff] [blame] | 161 | (inst_t *)__return_address); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 |  | 
| David Chinner | da353b0 | 2007-08-28 14:00:13 +1000 | [diff] [blame] | 163 | XFS_STATS_INC(xs_ig_found); | 
|  | 164 |  | 
|  | 165 | xfs_iflags_clear(ip, XFS_IRECLAIMABLE); | 
|  | 166 | read_unlock(&pag->pag_ici_lock); | 
|  | 167 |  | 
|  | 168 | XFS_MOUNT_ILOCK(mp); | 
|  | 169 | list_del_init(&ip->i_reclaim); | 
|  | 170 | XFS_MOUNT_IUNLOCK(mp); | 
|  | 171 |  | 
|  | 172 | goto finish_inode; | 
|  | 173 |  | 
|  | 174 | } else if (vp != inode_vp) { | 
|  | 175 | struct inode *inode = vn_to_inode(inode_vp); | 
|  | 176 |  | 
|  | 177 | /* The inode is being torn down, pause and | 
|  | 178 | * try again. | 
|  | 179 | */ | 
|  | 180 | if (inode->i_state & (I_FREEING | I_CLEAR)) { | 
|  | 181 | read_unlock(&pag->pag_ici_lock); | 
|  | 182 | delay(1); | 
|  | 183 | XFS_STATS_INC(xs_ig_frecycle); | 
|  | 184 |  | 
|  | 185 | goto again; | 
|  | 186 | } | 
|  | 187 | /* Chances are the other vnode (the one in the inode) is being torn | 
|  | 188 | * down right now, and we landed on top of it. Question is, what do | 
|  | 189 | * we do? Unhook the old inode and hook up the new one? | 
|  | 190 | */ | 
|  | 191 | cmn_err(CE_PANIC, | 
|  | 192 | "xfs_iget_core: ambiguous vns: vp/0x%p, invp/0x%p", | 
|  | 193 | inode_vp, vp); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 194 | } | 
| David Chinner | da353b0 | 2007-08-28 14:00:13 +1000 | [diff] [blame] | 195 |  | 
|  | 196 | /* | 
|  | 197 | * Inode cache hit | 
|  | 198 | */ | 
|  | 199 | read_unlock(&pag->pag_ici_lock); | 
|  | 200 | XFS_STATS_INC(xs_ig_found); | 
|  | 201 |  | 
|  | 202 | finish_inode: | 
|  | 203 | if (ip->i_d.di_mode == 0) { | 
|  | 204 | if (!(flags & XFS_IGET_CREATE)) { | 
|  | 205 | xfs_put_perag(mp, pag); | 
|  | 206 | return ENOENT; | 
|  | 207 | } | 
|  | 208 | xfs_iocore_inode_reinit(ip); | 
|  | 209 | } | 
|  | 210 |  | 
|  | 211 | if (lock_flags != 0) | 
|  | 212 | xfs_ilock(ip, lock_flags); | 
|  | 213 |  | 
|  | 214 | xfs_iflags_clear(ip, XFS_ISTALE); | 
| Christoph Hellwig | 1543d79 | 2007-08-29 11:46:47 +1000 | [diff] [blame] | 215 | vn_trace_exit(ip, "xfs_iget.found", | 
| David Chinner | da353b0 | 2007-08-28 14:00:13 +1000 | [diff] [blame] | 216 | (inst_t *)__return_address); | 
|  | 217 | goto return_ip; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 218 | } | 
|  | 219 |  | 
|  | 220 | /* | 
| David Chinner | da353b0 | 2007-08-28 14:00:13 +1000 | [diff] [blame] | 221 | * Inode cache miss | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 222 | */ | 
| David Chinner | da353b0 | 2007-08-28 14:00:13 +1000 | [diff] [blame] | 223 | read_unlock(&pag->pag_ici_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 | XFS_STATS_INC(xs_ig_missed); | 
|  | 225 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | /* | 
|  | 227 | * Read the disk inode attributes into a new inode structure and get | 
|  | 228 | * a new vnode for it. This should also initialize i_ino and i_mount. | 
|  | 229 | */ | 
| Nathan Scott | 745b1f47 | 2006-09-28 11:02:23 +1000 | [diff] [blame] | 230 | error = xfs_iread(mp, tp, ino, &ip, bno, | 
|  | 231 | (flags & XFS_IGET_BULKSTAT) ? XFS_IMAP_BULKSTAT : 0); | 
| David Chinner | da353b0 | 2007-08-28 14:00:13 +1000 | [diff] [blame] | 232 | if (error) { | 
|  | 233 | xfs_put_perag(mp, pag); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | return error; | 
| David Chinner | da353b0 | 2007-08-28 14:00:13 +1000 | [diff] [blame] | 235 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 |  | 
| Christoph Hellwig | 1543d79 | 2007-08-29 11:46:47 +1000 | [diff] [blame] | 237 | vn_trace_exit(ip, "xfs_iget.alloc", (inst_t *)__return_address); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 238 |  | 
|  | 239 | xfs_inode_lock_init(ip, vp); | 
|  | 240 | xfs_iocore_inode_init(ip); | 
| Nathan Scott | 745b1f47 | 2006-09-28 11:02:23 +1000 | [diff] [blame] | 241 | if (lock_flags) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 242 | xfs_ilock(ip, lock_flags); | 
| Nathan Scott | 745b1f47 | 2006-09-28 11:02:23 +1000 | [diff] [blame] | 243 |  | 
|  | 244 | if ((ip->i_d.di_mode == 0) && !(flags & XFS_IGET_CREATE)) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 245 | xfs_idestroy(ip); | 
| David Chinner | da353b0 | 2007-08-28 14:00:13 +1000 | [diff] [blame] | 246 | xfs_put_perag(mp, pag); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 247 | return ENOENT; | 
|  | 248 | } | 
|  | 249 |  | 
|  | 250 | /* | 
| David Chinner | da353b0 | 2007-08-28 14:00:13 +1000 | [diff] [blame] | 251 | * This is a bit messy - we preallocate everything we _might_ | 
|  | 252 | * need before we pick up the ici lock. That way we don't have to | 
|  | 253 | * juggle locks and go all the way back to the start. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 254 | */ | 
| David Chinner | da353b0 | 2007-08-28 14:00:13 +1000 | [diff] [blame] | 255 | new_icl = kmem_zone_alloc(xfs_icluster_zone, KM_SLEEP); | 
|  | 256 | if (radix_tree_preload(GFP_KERNEL)) { | 
|  | 257 | delay(1); | 
|  | 258 | goto again; | 
|  | 259 | } | 
|  | 260 | mask = ~(((XFS_INODE_CLUSTER_SIZE(mp) >> mp->m_sb.sb_inodelog)) - 1); | 
|  | 261 | first_index = agino & mask; | 
|  | 262 | write_lock(&pag->pag_ici_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 263 |  | 
| David Chinner | da353b0 | 2007-08-28 14:00:13 +1000 | [diff] [blame] | 264 | /* | 
|  | 265 | * Find the cluster if it exists | 
|  | 266 | */ | 
|  | 267 | icl = NULL; | 
|  | 268 | if (radix_tree_gang_lookup(&pag->pag_ici_root, (void**)&iq, | 
|  | 269 | first_index, 1)) { | 
| David Chinner | a7430847 | 2007-11-23 16:30:23 +1100 | [diff] [blame] | 270 | if ((XFS_INO_TO_AGINO(mp, iq->i_ino) & mask) == first_index) | 
| David Chinner | da353b0 | 2007-08-28 14:00:13 +1000 | [diff] [blame] | 271 | icl = iq->i_cluster; | 
|  | 272 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 |  | 
| David Chinner | da353b0 | 2007-08-28 14:00:13 +1000 | [diff] [blame] | 274 | /* | 
|  | 275 | * insert the new inode | 
|  | 276 | */ | 
|  | 277 | error = radix_tree_insert(&pag->pag_ici_root, agino, ip); | 
|  | 278 | if (unlikely(error)) { | 
|  | 279 | BUG_ON(error != -EEXIST); | 
|  | 280 | write_unlock(&pag->pag_ici_lock); | 
|  | 281 | radix_tree_preload_end(); | 
|  | 282 | xfs_idestroy(ip); | 
|  | 283 | XFS_STATS_INC(xs_ig_dup); | 
|  | 284 | goto again; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 285 | } | 
|  | 286 |  | 
|  | 287 | /* | 
|  | 288 | * These values _must_ be set before releasing ihlock! | 
|  | 289 | */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | ip->i_udquot = ip->i_gdquot = NULL; | 
| David Chinner | 7a18c38 | 2006-11-11 18:04:54 +1100 | [diff] [blame] | 291 | xfs_iflags_set(ip, XFS_INEW); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 292 |  | 
| David Chinner | da353b0 | 2007-08-28 14:00:13 +1000 | [diff] [blame] | 293 | ASSERT(ip->i_cluster == NULL); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 294 |  | 
| David Chinner | da353b0 | 2007-08-28 14:00:13 +1000 | [diff] [blame] | 295 | if (!icl) { | 
|  | 296 | spin_lock_init(&new_icl->icl_lock); | 
|  | 297 | INIT_HLIST_HEAD(&new_icl->icl_inodes); | 
|  | 298 | icl = new_icl; | 
|  | 299 | new_icl = NULL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 300 | } else { | 
| David Chinner | da353b0 | 2007-08-28 14:00:13 +1000 | [diff] [blame] | 301 | ASSERT(!hlist_empty(&icl->icl_inodes)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 302 | } | 
| David Chinner | da353b0 | 2007-08-28 14:00:13 +1000 | [diff] [blame] | 303 | spin_lock(&icl->icl_lock); | 
|  | 304 | hlist_add_head(&ip->i_cnode, &icl->icl_inodes); | 
|  | 305 | ip->i_cluster = icl; | 
|  | 306 | spin_unlock(&icl->icl_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 307 |  | 
| David Chinner | da353b0 | 2007-08-28 14:00:13 +1000 | [diff] [blame] | 308 | write_unlock(&pag->pag_ici_lock); | 
|  | 309 | radix_tree_preload_end(); | 
|  | 310 | if (new_icl) | 
|  | 311 | kmem_zone_free(xfs_icluster_zone, new_icl); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 |  | 
|  | 313 | /* | 
|  | 314 | * Link ip to its mount and thread it on the mount's inode list. | 
|  | 315 | */ | 
|  | 316 | XFS_MOUNT_ILOCK(mp); | 
|  | 317 | if ((iq = mp->m_inodes)) { | 
|  | 318 | ASSERT(iq->i_mprev->i_mnext == iq); | 
|  | 319 | ip->i_mprev = iq->i_mprev; | 
|  | 320 | iq->i_mprev->i_mnext = ip; | 
|  | 321 | iq->i_mprev = ip; | 
|  | 322 | ip->i_mnext = iq; | 
|  | 323 | } else { | 
|  | 324 | ip->i_mnext = ip; | 
|  | 325 | ip->i_mprev = ip; | 
|  | 326 | } | 
|  | 327 | mp->m_inodes = ip; | 
|  | 328 |  | 
|  | 329 | XFS_MOUNT_IUNLOCK(mp); | 
| David Chinner | da353b0 | 2007-08-28 14:00:13 +1000 | [diff] [blame] | 330 | xfs_put_perag(mp, pag); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 331 |  | 
|  | 332 | return_ip: | 
|  | 333 | ASSERT(ip->i_df.if_ext_max == | 
|  | 334 | XFS_IFORK_DSIZE(ip) / sizeof(xfs_bmbt_rec_t)); | 
|  | 335 |  | 
|  | 336 | ASSERT(((ip->i_d.di_flags & XFS_DIFLAG_REALTIME) != 0) == | 
|  | 337 | ((ip->i_iocore.io_flags & XFS_IOCORE_RT) != 0)); | 
|  | 338 |  | 
| Christoph Hellwig | b3aea4e | 2007-08-29 11:44:37 +1000 | [diff] [blame] | 339 | xfs_iflags_set(ip, XFS_IMODIFIED); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 340 | *ipp = ip; | 
|  | 341 |  | 
|  | 342 | /* | 
|  | 343 | * If we have a real type for an on-disk inode, we can set ops(&unlock) | 
|  | 344 | * now.	 If it's a new inode being created, xfs_ialloc will handle it. | 
|  | 345 | */ | 
| Christoph Hellwig | 745f691 | 2007-08-30 17:20:39 +1000 | [diff] [blame] | 346 | xfs_initialize_vnode(mp, vp, ip); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 347 | return 0; | 
|  | 348 | } | 
|  | 349 |  | 
|  | 350 |  | 
|  | 351 | /* | 
|  | 352 | * The 'normal' internal xfs_iget, if needed it will | 
|  | 353 | * 'allocate', or 'get', the vnode. | 
|  | 354 | */ | 
|  | 355 | int | 
|  | 356 | xfs_iget( | 
|  | 357 | xfs_mount_t	*mp, | 
|  | 358 | xfs_trans_t	*tp, | 
|  | 359 | xfs_ino_t	ino, | 
|  | 360 | uint		flags, | 
|  | 361 | uint		lock_flags, | 
|  | 362 | xfs_inode_t	**ipp, | 
|  | 363 | xfs_daddr_t	bno) | 
|  | 364 | { | 
|  | 365 | struct inode	*inode; | 
| Nathan Scott | 67fcaa7 | 2006-06-09 17:00:52 +1000 | [diff] [blame] | 366 | bhv_vnode_t	*vp = NULL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 367 | int		error; | 
|  | 368 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 369 | XFS_STATS_INC(xs_ig_attempts); | 
|  | 370 |  | 
| Christoph Hellwig | ba403ab | 2005-09-05 08:33:00 +1000 | [diff] [blame] | 371 | retry: | 
| Christoph Hellwig | b267ce9 | 2007-08-30 17:21:30 +1000 | [diff] [blame] | 372 | inode = iget_locked(mp->m_super, ino); | 
| Christoph Hellwig | 745f691 | 2007-08-30 17:20:39 +1000 | [diff] [blame] | 373 | if (inode) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 374 | xfs_inode_t	*ip; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 375 |  | 
| Nathan Scott | ec86dc0 | 2006-03-17 17:25:36 +1100 | [diff] [blame] | 376 | vp = vn_from_inode(inode); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 377 | if (inode->i_state & I_NEW) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 378 | vn_initialize(inode); | 
|  | 379 | error = xfs_iget_core(vp, mp, tp, ino, flags, | 
|  | 380 | lock_flags, ipp, bno); | 
|  | 381 | if (error) { | 
|  | 382 | vn_mark_bad(vp); | 
|  | 383 | if (inode->i_state & I_NEW) | 
|  | 384 | unlock_new_inode(inode); | 
|  | 385 | iput(inode); | 
|  | 386 | } | 
|  | 387 | } else { | 
| Christoph Hellwig | ba403ab | 2005-09-05 08:33:00 +1000 | [diff] [blame] | 388 | /* | 
|  | 389 | * If the inode is not fully constructed due to | 
| Nathan Scott | c41564b | 2006-03-29 08:55:14 +1000 | [diff] [blame] | 390 | * filehandle mismatches wait for the inode to go | 
| Christoph Hellwig | ba403ab | 2005-09-05 08:33:00 +1000 | [diff] [blame] | 391 | * away and try again. | 
|  | 392 | * | 
|  | 393 | * iget_locked will call __wait_on_freeing_inode | 
|  | 394 | * to wait for the inode to go away. | 
|  | 395 | */ | 
|  | 396 | if (is_bad_inode(inode) || | 
| Christoph Hellwig | 75e17b3 | 2006-01-11 20:58:44 +1100 | [diff] [blame] | 397 | ((ip = xfs_vtoi(vp)) == NULL)) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 398 | iput(inode); | 
| Christoph Hellwig | ba403ab | 2005-09-05 08:33:00 +1000 | [diff] [blame] | 399 | delay(1); | 
|  | 400 | goto retry; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 401 | } | 
|  | 402 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 403 | if (lock_flags != 0) | 
|  | 404 | xfs_ilock(ip, lock_flags); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 405 | XFS_STATS_INC(xs_ig_found); | 
|  | 406 | *ipp = ip; | 
|  | 407 | error = 0; | 
|  | 408 | } | 
|  | 409 | } else | 
|  | 410 | error = ENOMEM;	/* If we got no inode we are out of memory */ | 
|  | 411 |  | 
|  | 412 | return error; | 
|  | 413 | } | 
|  | 414 |  | 
|  | 415 | /* | 
|  | 416 | * Do the setup for the various locks within the incore inode. | 
|  | 417 | */ | 
|  | 418 | void | 
|  | 419 | xfs_inode_lock_init( | 
|  | 420 | xfs_inode_t	*ip, | 
| Nathan Scott | 67fcaa7 | 2006-06-09 17:00:52 +1000 | [diff] [blame] | 421 | bhv_vnode_t	*vp) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 422 | { | 
|  | 423 | mrlock_init(&ip->i_lock, MRLOCK_ALLOW_EQUAL_PRI|MRLOCK_BARRIER, | 
| Christoph Hellwig | 2aeaa25 | 2007-08-29 11:46:57 +1000 | [diff] [blame] | 424 | "xfsino", ip->i_ino); | 
|  | 425 | mrlock_init(&ip->i_iolock, MRLOCK_BARRIER, "xfsio", ip->i_ino); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 426 | init_waitqueue_head(&ip->i_ipin_wait); | 
|  | 427 | atomic_set(&ip->i_pincount, 0); | 
| Eric Sandeen | 7ae67d7 | 2006-09-28 11:05:46 +1000 | [diff] [blame] | 428 | initnsema(&ip->i_flock, 1, "xfsfino"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 429 | } | 
|  | 430 |  | 
|  | 431 | /* | 
|  | 432 | * Look for the inode corresponding to the given ino in the hash table. | 
|  | 433 | * If it is there and its i_transp pointer matches tp, return it. | 
|  | 434 | * Otherwise, return NULL. | 
|  | 435 | */ | 
|  | 436 | xfs_inode_t * | 
|  | 437 | xfs_inode_incore(xfs_mount_t	*mp, | 
|  | 438 | xfs_ino_t	ino, | 
|  | 439 | xfs_trans_t	*tp) | 
|  | 440 | { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 441 | xfs_inode_t	*ip; | 
| David Chinner | da353b0 | 2007-08-28 14:00:13 +1000 | [diff] [blame] | 442 | xfs_perag_t	*pag; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 443 |  | 
| David Chinner | da353b0 | 2007-08-28 14:00:13 +1000 | [diff] [blame] | 444 | pag = xfs_get_perag(mp, ino); | 
|  | 445 | read_lock(&pag->pag_ici_lock); | 
|  | 446 | ip = radix_tree_lookup(&pag->pag_ici_root, XFS_INO_TO_AGINO(mp, ino)); | 
|  | 447 | read_unlock(&pag->pag_ici_lock); | 
|  | 448 | xfs_put_perag(mp, pag); | 
|  | 449 |  | 
|  | 450 | /* the returned inode must match the transaction */ | 
|  | 451 | if (ip && (ip->i_transp != tp)) | 
|  | 452 | return NULL; | 
|  | 453 | return ip; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 454 | } | 
|  | 455 |  | 
|  | 456 | /* | 
|  | 457 | * Decrement reference count of an inode structure and unlock it. | 
|  | 458 | * | 
|  | 459 | * ip -- the inode being released | 
|  | 460 | * lock_flags -- this parameter indicates the inode's locks to be | 
|  | 461 | *       to be released.  See the comment on xfs_iunlock() for a list | 
|  | 462 | *	 of valid values. | 
|  | 463 | */ | 
|  | 464 | void | 
|  | 465 | xfs_iput(xfs_inode_t	*ip, | 
|  | 466 | uint		lock_flags) | 
|  | 467 | { | 
| Nathan Scott | 67fcaa7 | 2006-06-09 17:00:52 +1000 | [diff] [blame] | 468 | bhv_vnode_t	*vp = XFS_ITOV(ip); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 469 |  | 
| Christoph Hellwig | 1543d79 | 2007-08-29 11:46:47 +1000 | [diff] [blame] | 470 | vn_trace_entry(ip, "xfs_iput", (inst_t *)__return_address); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 471 | xfs_iunlock(ip, lock_flags); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 472 | VN_RELE(vp); | 
|  | 473 | } | 
|  | 474 |  | 
|  | 475 | /* | 
|  | 476 | * Special iput for brand-new inodes that are still locked | 
|  | 477 | */ | 
|  | 478 | void | 
|  | 479 | xfs_iput_new(xfs_inode_t	*ip, | 
|  | 480 | uint		lock_flags) | 
|  | 481 | { | 
| Nathan Scott | 67fcaa7 | 2006-06-09 17:00:52 +1000 | [diff] [blame] | 482 | bhv_vnode_t	*vp = XFS_ITOV(ip); | 
| Nathan Scott | ec86dc0 | 2006-03-17 17:25:36 +1100 | [diff] [blame] | 483 | struct inode	*inode = vn_to_inode(vp); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 484 |  | 
| Christoph Hellwig | 1543d79 | 2007-08-29 11:46:47 +1000 | [diff] [blame] | 485 | vn_trace_entry(ip, "xfs_iput_new", (inst_t *)__return_address); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 486 |  | 
|  | 487 | if ((ip->i_d.di_mode == 0)) { | 
| David Chinner | 7a18c38 | 2006-11-11 18:04:54 +1100 | [diff] [blame] | 488 | ASSERT(!xfs_iflags_test(ip, XFS_IRECLAIMABLE)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 489 | vn_mark_bad(vp); | 
|  | 490 | } | 
|  | 491 | if (inode->i_state & I_NEW) | 
|  | 492 | unlock_new_inode(inode); | 
|  | 493 | if (lock_flags) | 
|  | 494 | xfs_iunlock(ip, lock_flags); | 
|  | 495 | VN_RELE(vp); | 
|  | 496 | } | 
|  | 497 |  | 
|  | 498 |  | 
|  | 499 | /* | 
|  | 500 | * This routine embodies the part of the reclaim code that pulls | 
|  | 501 | * the inode from the inode hash table and the mount structure's | 
|  | 502 | * inode list. | 
|  | 503 | * This should only be called from xfs_reclaim(). | 
|  | 504 | */ | 
|  | 505 | void | 
|  | 506 | xfs_ireclaim(xfs_inode_t *ip) | 
|  | 507 | { | 
| Nathan Scott | 67fcaa7 | 2006-06-09 17:00:52 +1000 | [diff] [blame] | 508 | bhv_vnode_t	*vp; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 509 |  | 
|  | 510 | /* | 
|  | 511 | * Remove from old hash list and mount list. | 
|  | 512 | */ | 
|  | 513 | XFS_STATS_INC(xs_ig_reclaims); | 
|  | 514 |  | 
|  | 515 | xfs_iextract(ip); | 
|  | 516 |  | 
|  | 517 | /* | 
|  | 518 | * Here we do a spurious inode lock in order to coordinate with | 
|  | 519 | * xfs_sync().  This is because xfs_sync() references the inodes | 
|  | 520 | * in the mount list without taking references on the corresponding | 
|  | 521 | * vnodes.  We make that OK here by ensuring that we wait until | 
|  | 522 | * the inode is unlocked in xfs_sync() before we go ahead and | 
|  | 523 | * free it.  We get both the regular lock and the io lock because | 
|  | 524 | * the xfs_sync() code may need to drop the regular one but will | 
|  | 525 | * still hold the io lock. | 
|  | 526 | */ | 
|  | 527 | xfs_ilock(ip, XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL); | 
|  | 528 |  | 
|  | 529 | /* | 
|  | 530 | * Release dquots (and their references) if any. An inode may escape | 
|  | 531 | * xfs_inactive and get here via vn_alloc->vn_reclaim path. | 
|  | 532 | */ | 
|  | 533 | XFS_QM_DQDETACH(ip->i_mount, ip); | 
|  | 534 |  | 
|  | 535 | /* | 
|  | 536 | * Pull our behavior descriptor from the vnode chain. | 
|  | 537 | */ | 
|  | 538 | vp = XFS_ITOV_NULL(ip); | 
|  | 539 | if (vp) { | 
| Christoph Hellwig | 739bfb2 | 2007-08-29 10:58:01 +1000 | [diff] [blame] | 540 | vn_to_inode(vp)->i_private = NULL; | 
|  | 541 | ip->i_vnode = NULL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 542 | } | 
|  | 543 |  | 
|  | 544 | /* | 
|  | 545 | * Free all memory associated with the inode. | 
|  | 546 | */ | 
| Tim Shimmin | 439b843 | 2006-11-11 18:04:34 +1100 | [diff] [blame] | 547 | xfs_iunlock(ip, XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 548 | xfs_idestroy(ip); | 
|  | 549 | } | 
|  | 550 |  | 
|  | 551 | /* | 
|  | 552 | * This routine removes an about-to-be-destroyed inode from | 
|  | 553 | * all of the lists in which it is located with the exception | 
|  | 554 | * of the behavior chain. | 
|  | 555 | */ | 
|  | 556 | void | 
|  | 557 | xfs_iextract( | 
|  | 558 | xfs_inode_t	*ip) | 
|  | 559 | { | 
| David Chinner | da353b0 | 2007-08-28 14:00:13 +1000 | [diff] [blame] | 560 | xfs_mount_t	*mp = ip->i_mount; | 
|  | 561 | xfs_perag_t	*pag = xfs_get_perag(mp, ip->i_ino); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 562 | xfs_inode_t	*iq; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 563 |  | 
| David Chinner | da353b0 | 2007-08-28 14:00:13 +1000 | [diff] [blame] | 564 | write_lock(&pag->pag_ici_lock); | 
|  | 565 | radix_tree_delete(&pag->pag_ici_root, XFS_INO_TO_AGINO(mp, ip->i_ino)); | 
|  | 566 | write_unlock(&pag->pag_ici_lock); | 
|  | 567 | xfs_put_perag(mp, pag); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 568 |  | 
|  | 569 | /* | 
| David Chinner | da353b0 | 2007-08-28 14:00:13 +1000 | [diff] [blame] | 570 | * Remove from cluster list | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 571 | */ | 
|  | 572 | mp = ip->i_mount; | 
| David Chinner | da353b0 | 2007-08-28 14:00:13 +1000 | [diff] [blame] | 573 | spin_lock(&ip->i_cluster->icl_lock); | 
|  | 574 | hlist_del(&ip->i_cnode); | 
|  | 575 | spin_unlock(&ip->i_cluster->icl_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 576 |  | 
| David Chinner | da353b0 | 2007-08-28 14:00:13 +1000 | [diff] [blame] | 577 | /* was last inode in cluster? */ | 
|  | 578 | if (hlist_empty(&ip->i_cluster->icl_inodes)) | 
|  | 579 | kmem_zone_free(xfs_icluster_zone, ip->i_cluster); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 580 |  | 
|  | 581 | /* | 
|  | 582 | * Remove from mount's inode list. | 
|  | 583 | */ | 
|  | 584 | XFS_MOUNT_ILOCK(mp); | 
|  | 585 | ASSERT((ip->i_mnext != NULL) && (ip->i_mprev != NULL)); | 
|  | 586 | iq = ip->i_mnext; | 
|  | 587 | iq->i_mprev = ip->i_mprev; | 
|  | 588 | ip->i_mprev->i_mnext = iq; | 
|  | 589 |  | 
|  | 590 | /* | 
|  | 591 | * Fix up the head pointer if it points to the inode being deleted. | 
|  | 592 | */ | 
|  | 593 | if (mp->m_inodes == ip) { | 
|  | 594 | if (ip == iq) { | 
|  | 595 | mp->m_inodes = NULL; | 
|  | 596 | } else { | 
|  | 597 | mp->m_inodes = iq; | 
|  | 598 | } | 
|  | 599 | } | 
|  | 600 |  | 
|  | 601 | /* Deal with the deleted inodes list */ | 
|  | 602 | list_del_init(&ip->i_reclaim); | 
|  | 603 |  | 
|  | 604 | mp->m_ireclaims++; | 
|  | 605 | XFS_MOUNT_IUNLOCK(mp); | 
|  | 606 | } | 
|  | 607 |  | 
|  | 608 | /* | 
|  | 609 | * This is a wrapper routine around the xfs_ilock() routine | 
|  | 610 | * used to centralize some grungy code.  It is used in places | 
|  | 611 | * that wish to lock the inode solely for reading the extents. | 
|  | 612 | * The reason these places can't just call xfs_ilock(SHARED) | 
|  | 613 | * is that the inode lock also guards to bringing in of the | 
|  | 614 | * extents from disk for a file in b-tree format.  If the inode | 
|  | 615 | * is in b-tree format, then we need to lock the inode exclusively | 
|  | 616 | * until the extents are read in.  Locking it exclusively all | 
|  | 617 | * the time would limit our parallelism unnecessarily, though. | 
|  | 618 | * What we do instead is check to see if the extents have been | 
|  | 619 | * read in yet, and only lock the inode exclusively if they | 
|  | 620 | * have not. | 
|  | 621 | * | 
|  | 622 | * The function returns a value which should be given to the | 
|  | 623 | * corresponding xfs_iunlock_map_shared().  This value is | 
|  | 624 | * the mode in which the lock was actually taken. | 
|  | 625 | */ | 
|  | 626 | uint | 
|  | 627 | xfs_ilock_map_shared( | 
|  | 628 | xfs_inode_t	*ip) | 
|  | 629 | { | 
|  | 630 | uint	lock_mode; | 
|  | 631 |  | 
|  | 632 | if ((ip->i_d.di_format == XFS_DINODE_FMT_BTREE) && | 
|  | 633 | ((ip->i_df.if_flags & XFS_IFEXTENTS) == 0)) { | 
|  | 634 | lock_mode = XFS_ILOCK_EXCL; | 
|  | 635 | } else { | 
|  | 636 | lock_mode = XFS_ILOCK_SHARED; | 
|  | 637 | } | 
|  | 638 |  | 
|  | 639 | xfs_ilock(ip, lock_mode); | 
|  | 640 |  | 
|  | 641 | return lock_mode; | 
|  | 642 | } | 
|  | 643 |  | 
|  | 644 | /* | 
|  | 645 | * This is simply the unlock routine to go with xfs_ilock_map_shared(). | 
|  | 646 | * All it does is call xfs_iunlock() with the given lock_mode. | 
|  | 647 | */ | 
|  | 648 | void | 
|  | 649 | xfs_iunlock_map_shared( | 
|  | 650 | xfs_inode_t	*ip, | 
|  | 651 | unsigned int	lock_mode) | 
|  | 652 | { | 
|  | 653 | xfs_iunlock(ip, lock_mode); | 
|  | 654 | } | 
|  | 655 |  | 
|  | 656 | /* | 
|  | 657 | * The xfs inode contains 2 locks: a multi-reader lock called the | 
|  | 658 | * i_iolock and a multi-reader lock called the i_lock.  This routine | 
|  | 659 | * allows either or both of the locks to be obtained. | 
|  | 660 | * | 
|  | 661 | * The 2 locks should always be ordered so that the IO lock is | 
|  | 662 | * obtained first in order to prevent deadlock. | 
|  | 663 | * | 
|  | 664 | * ip -- the inode being locked | 
|  | 665 | * lock_flags -- this parameter indicates the inode's locks | 
|  | 666 | *       to be locked.  It can be: | 
|  | 667 | *		XFS_IOLOCK_SHARED, | 
|  | 668 | *		XFS_IOLOCK_EXCL, | 
|  | 669 | *		XFS_ILOCK_SHARED, | 
|  | 670 | *		XFS_ILOCK_EXCL, | 
|  | 671 | *		XFS_IOLOCK_SHARED | XFS_ILOCK_SHARED, | 
|  | 672 | *		XFS_IOLOCK_SHARED | XFS_ILOCK_EXCL, | 
|  | 673 | *		XFS_IOLOCK_EXCL | XFS_ILOCK_SHARED, | 
|  | 674 | *		XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL | 
|  | 675 | */ | 
|  | 676 | void | 
|  | 677 | xfs_ilock(xfs_inode_t	*ip, | 
|  | 678 | uint		lock_flags) | 
|  | 679 | { | 
|  | 680 | /* | 
|  | 681 | * You can't set both SHARED and EXCL for the same lock, | 
|  | 682 | * and only XFS_IOLOCK_SHARED, XFS_IOLOCK_EXCL, XFS_ILOCK_SHARED, | 
|  | 683 | * and XFS_ILOCK_EXCL are valid values to set in lock_flags. | 
|  | 684 | */ | 
|  | 685 | ASSERT((lock_flags & (XFS_IOLOCK_SHARED | XFS_IOLOCK_EXCL)) != | 
|  | 686 | (XFS_IOLOCK_SHARED | XFS_IOLOCK_EXCL)); | 
|  | 687 | ASSERT((lock_flags & (XFS_ILOCK_SHARED | XFS_ILOCK_EXCL)) != | 
|  | 688 | (XFS_ILOCK_SHARED | XFS_ILOCK_EXCL)); | 
| Lachlan McIlroy | f7c66ce | 2007-05-08 13:50:19 +1000 | [diff] [blame] | 689 | ASSERT((lock_flags & ~(XFS_LOCK_MASK | XFS_LOCK_DEP_MASK)) == 0); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 690 |  | 
|  | 691 | if (lock_flags & XFS_IOLOCK_EXCL) { | 
| Lachlan McIlroy | f7c66ce | 2007-05-08 13:50:19 +1000 | [diff] [blame] | 692 | mrupdate_nested(&ip->i_iolock, XFS_IOLOCK_DEP(lock_flags)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 693 | } else if (lock_flags & XFS_IOLOCK_SHARED) { | 
| Lachlan McIlroy | f7c66ce | 2007-05-08 13:50:19 +1000 | [diff] [blame] | 694 | mraccess_nested(&ip->i_iolock, XFS_IOLOCK_DEP(lock_flags)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 695 | } | 
|  | 696 | if (lock_flags & XFS_ILOCK_EXCL) { | 
| Lachlan McIlroy | f7c66ce | 2007-05-08 13:50:19 +1000 | [diff] [blame] | 697 | mrupdate_nested(&ip->i_lock, XFS_ILOCK_DEP(lock_flags)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 698 | } else if (lock_flags & XFS_ILOCK_SHARED) { | 
| Lachlan McIlroy | f7c66ce | 2007-05-08 13:50:19 +1000 | [diff] [blame] | 699 | mraccess_nested(&ip->i_lock, XFS_ILOCK_DEP(lock_flags)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 700 | } | 
|  | 701 | xfs_ilock_trace(ip, 1, lock_flags, (inst_t *)__return_address); | 
|  | 702 | } | 
|  | 703 |  | 
|  | 704 | /* | 
|  | 705 | * This is just like xfs_ilock(), except that the caller | 
|  | 706 | * is guaranteed not to sleep.  It returns 1 if it gets | 
|  | 707 | * the requested locks and 0 otherwise.  If the IO lock is | 
|  | 708 | * obtained but the inode lock cannot be, then the IO lock | 
|  | 709 | * is dropped before returning. | 
|  | 710 | * | 
|  | 711 | * ip -- the inode being locked | 
|  | 712 | * lock_flags -- this parameter indicates the inode's locks to be | 
|  | 713 | *       to be locked.  See the comment for xfs_ilock() for a list | 
|  | 714 | *	 of valid values. | 
|  | 715 | * | 
|  | 716 | */ | 
|  | 717 | int | 
|  | 718 | xfs_ilock_nowait(xfs_inode_t	*ip, | 
|  | 719 | uint		lock_flags) | 
|  | 720 | { | 
|  | 721 | int	iolocked; | 
|  | 722 | int	ilocked; | 
|  | 723 |  | 
|  | 724 | /* | 
|  | 725 | * You can't set both SHARED and EXCL for the same lock, | 
|  | 726 | * and only XFS_IOLOCK_SHARED, XFS_IOLOCK_EXCL, XFS_ILOCK_SHARED, | 
|  | 727 | * and XFS_ILOCK_EXCL are valid values to set in lock_flags. | 
|  | 728 | */ | 
|  | 729 | ASSERT((lock_flags & (XFS_IOLOCK_SHARED | XFS_IOLOCK_EXCL)) != | 
|  | 730 | (XFS_IOLOCK_SHARED | XFS_IOLOCK_EXCL)); | 
|  | 731 | ASSERT((lock_flags & (XFS_ILOCK_SHARED | XFS_ILOCK_EXCL)) != | 
|  | 732 | (XFS_ILOCK_SHARED | XFS_ILOCK_EXCL)); | 
| Lachlan McIlroy | f7c66ce | 2007-05-08 13:50:19 +1000 | [diff] [blame] | 733 | ASSERT((lock_flags & ~(XFS_LOCK_MASK | XFS_LOCK_DEP_MASK)) == 0); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 734 |  | 
|  | 735 | iolocked = 0; | 
|  | 736 | if (lock_flags & XFS_IOLOCK_EXCL) { | 
|  | 737 | iolocked = mrtryupdate(&ip->i_iolock); | 
|  | 738 | if (!iolocked) { | 
|  | 739 | return 0; | 
|  | 740 | } | 
|  | 741 | } else if (lock_flags & XFS_IOLOCK_SHARED) { | 
|  | 742 | iolocked = mrtryaccess(&ip->i_iolock); | 
|  | 743 | if (!iolocked) { | 
|  | 744 | return 0; | 
|  | 745 | } | 
|  | 746 | } | 
|  | 747 | if (lock_flags & XFS_ILOCK_EXCL) { | 
|  | 748 | ilocked = mrtryupdate(&ip->i_lock); | 
|  | 749 | if (!ilocked) { | 
|  | 750 | if (iolocked) { | 
|  | 751 | mrunlock(&ip->i_iolock); | 
|  | 752 | } | 
|  | 753 | return 0; | 
|  | 754 | } | 
|  | 755 | } else if (lock_flags & XFS_ILOCK_SHARED) { | 
|  | 756 | ilocked = mrtryaccess(&ip->i_lock); | 
|  | 757 | if (!ilocked) { | 
|  | 758 | if (iolocked) { | 
|  | 759 | mrunlock(&ip->i_iolock); | 
|  | 760 | } | 
|  | 761 | return 0; | 
|  | 762 | } | 
|  | 763 | } | 
|  | 764 | xfs_ilock_trace(ip, 2, lock_flags, (inst_t *)__return_address); | 
|  | 765 | return 1; | 
|  | 766 | } | 
|  | 767 |  | 
|  | 768 | /* | 
|  | 769 | * xfs_iunlock() is used to drop the inode locks acquired with | 
|  | 770 | * xfs_ilock() and xfs_ilock_nowait().  The caller must pass | 
|  | 771 | * in the flags given to xfs_ilock() or xfs_ilock_nowait() so | 
|  | 772 | * that we know which locks to drop. | 
|  | 773 | * | 
|  | 774 | * ip -- the inode being unlocked | 
|  | 775 | * lock_flags -- this parameter indicates the inode's locks to be | 
|  | 776 | *       to be unlocked.  See the comment for xfs_ilock() for a list | 
|  | 777 | *	 of valid values for this parameter. | 
|  | 778 | * | 
|  | 779 | */ | 
|  | 780 | void | 
|  | 781 | xfs_iunlock(xfs_inode_t	*ip, | 
|  | 782 | uint	lock_flags) | 
|  | 783 | { | 
|  | 784 | /* | 
|  | 785 | * You can't set both SHARED and EXCL for the same lock, | 
|  | 786 | * and only XFS_IOLOCK_SHARED, XFS_IOLOCK_EXCL, XFS_ILOCK_SHARED, | 
|  | 787 | * and XFS_ILOCK_EXCL are valid values to set in lock_flags. | 
|  | 788 | */ | 
|  | 789 | ASSERT((lock_flags & (XFS_IOLOCK_SHARED | XFS_IOLOCK_EXCL)) != | 
|  | 790 | (XFS_IOLOCK_SHARED | XFS_IOLOCK_EXCL)); | 
|  | 791 | ASSERT((lock_flags & (XFS_ILOCK_SHARED | XFS_ILOCK_EXCL)) != | 
|  | 792 | (XFS_ILOCK_SHARED | XFS_ILOCK_EXCL)); | 
| Lachlan McIlroy | f7c66ce | 2007-05-08 13:50:19 +1000 | [diff] [blame] | 793 | ASSERT((lock_flags & ~(XFS_LOCK_MASK | XFS_IUNLOCK_NONOTIFY | | 
|  | 794 | XFS_LOCK_DEP_MASK)) == 0); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 795 | ASSERT(lock_flags != 0); | 
|  | 796 |  | 
|  | 797 | if (lock_flags & (XFS_IOLOCK_SHARED | XFS_IOLOCK_EXCL)) { | 
|  | 798 | ASSERT(!(lock_flags & XFS_IOLOCK_SHARED) || | 
|  | 799 | (ismrlocked(&ip->i_iolock, MR_ACCESS))); | 
|  | 800 | ASSERT(!(lock_flags & XFS_IOLOCK_EXCL) || | 
|  | 801 | (ismrlocked(&ip->i_iolock, MR_UPDATE))); | 
|  | 802 | mrunlock(&ip->i_iolock); | 
|  | 803 | } | 
|  | 804 |  | 
|  | 805 | if (lock_flags & (XFS_ILOCK_SHARED | XFS_ILOCK_EXCL)) { | 
|  | 806 | ASSERT(!(lock_flags & XFS_ILOCK_SHARED) || | 
|  | 807 | (ismrlocked(&ip->i_lock, MR_ACCESS))); | 
|  | 808 | ASSERT(!(lock_flags & XFS_ILOCK_EXCL) || | 
|  | 809 | (ismrlocked(&ip->i_lock, MR_UPDATE))); | 
|  | 810 | mrunlock(&ip->i_lock); | 
|  | 811 |  | 
|  | 812 | /* | 
|  | 813 | * Let the AIL know that this item has been unlocked in case | 
|  | 814 | * it is in the AIL and anyone is waiting on it.  Don't do | 
|  | 815 | * this if the caller has asked us not to. | 
|  | 816 | */ | 
|  | 817 | if (!(lock_flags & XFS_IUNLOCK_NONOTIFY) && | 
|  | 818 | ip->i_itemp != NULL) { | 
|  | 819 | xfs_trans_unlocked_item(ip->i_mount, | 
|  | 820 | (xfs_log_item_t*)(ip->i_itemp)); | 
|  | 821 | } | 
|  | 822 | } | 
|  | 823 | xfs_ilock_trace(ip, 3, lock_flags, (inst_t *)__return_address); | 
|  | 824 | } | 
|  | 825 |  | 
|  | 826 | /* | 
|  | 827 | * give up write locks.  the i/o lock cannot be held nested | 
|  | 828 | * if it is being demoted. | 
|  | 829 | */ | 
|  | 830 | void | 
|  | 831 | xfs_ilock_demote(xfs_inode_t	*ip, | 
|  | 832 | uint		lock_flags) | 
|  | 833 | { | 
|  | 834 | ASSERT(lock_flags & (XFS_IOLOCK_EXCL|XFS_ILOCK_EXCL)); | 
|  | 835 | ASSERT((lock_flags & ~(XFS_IOLOCK_EXCL|XFS_ILOCK_EXCL)) == 0); | 
|  | 836 |  | 
|  | 837 | if (lock_flags & XFS_ILOCK_EXCL) { | 
|  | 838 | ASSERT(ismrlocked(&ip->i_lock, MR_UPDATE)); | 
|  | 839 | mrdemote(&ip->i_lock); | 
|  | 840 | } | 
|  | 841 | if (lock_flags & XFS_IOLOCK_EXCL) { | 
|  | 842 | ASSERT(ismrlocked(&ip->i_iolock, MR_UPDATE)); | 
|  | 843 | mrdemote(&ip->i_iolock); | 
|  | 844 | } | 
|  | 845 | } | 
|  | 846 |  | 
|  | 847 | /* | 
|  | 848 | * The following three routines simply manage the i_flock | 
|  | 849 | * semaphore embedded in the inode.  This semaphore synchronizes | 
|  | 850 | * processes attempting to flush the in-core inode back to disk. | 
|  | 851 | */ | 
|  | 852 | void | 
|  | 853 | xfs_iflock(xfs_inode_t *ip) | 
|  | 854 | { | 
|  | 855 | psema(&(ip->i_flock), PINOD|PLTWAIT); | 
|  | 856 | } | 
|  | 857 |  | 
|  | 858 | int | 
|  | 859 | xfs_iflock_nowait(xfs_inode_t *ip) | 
|  | 860 | { | 
|  | 861 | return (cpsema(&(ip->i_flock))); | 
|  | 862 | } | 
|  | 863 |  | 
|  | 864 | void | 
|  | 865 | xfs_ifunlock(xfs_inode_t *ip) | 
|  | 866 | { | 
| Al Viro | 0d8fee3 | 2006-06-19 08:41:30 +1000 | [diff] [blame] | 867 | ASSERT(issemalocked(&(ip->i_flock))); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 868 | vsema(&(ip->i_flock)); | 
|  | 869 | } |