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