2 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
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
7 * published by the Free Software Foundation.
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.
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
20 #include "xfs_types.h"
25 #include "xfs_trans.h"
28 #include "xfs_mount.h"
29 #include "xfs_bmap_btree.h"
30 #include "xfs_alloc_btree.h"
31 #include "xfs_ialloc_btree.h"
32 #include "xfs_dinode.h"
33 #include "xfs_inode.h"
34 #include "xfs_btree.h"
35 #include "xfs_ialloc.h"
36 #include "xfs_quota.h"
37 #include "xfs_utils.h"
38 #include "xfs_trans_priv.h"
39 #include "xfs_inode_item.h"
41 #include "xfs_btree_trace.h"
42 #include "xfs_trace.h"
46 * Define xfs inode iolock lockdep classes. We need to ensure that all active
47 * inodes are considered the same for lockdep purposes, including inodes that
48 * are recycled through the XFS_IRECLAIMABLE state. This is the the only way to
49 * guarantee the locks are considered the same when there are multiple lock
50 * initialisation siteѕ. Also, define a reclaimable inode class so it is
51 * obvious in lockdep reports which class the report is against.
53 static struct lock_class_key xfs_iolock_active
;
54 struct lock_class_key xfs_iolock_reclaimable
;
57 * Allocate and initialise an xfs_inode.
59 STATIC
struct xfs_inode
*
67 * if this didn't occur in transactions, we could use
68 * KM_MAYFAIL and return NULL here on ENOMEM. Set the
69 * code up to do this anyway.
71 ip
= kmem_zone_alloc(xfs_inode_zone
, KM_SLEEP
);
74 if (inode_init_always(mp
->m_super
, VFS_I(ip
))) {
75 kmem_zone_free(xfs_inode_zone
, ip
);
79 ASSERT(atomic_read(&ip
->i_iocount
) == 0);
80 ASSERT(atomic_read(&ip
->i_pincount
) == 0);
81 ASSERT(!spin_is_locked(&ip
->i_flags_lock
));
82 ASSERT(completion_done(&ip
->i_flush
));
83 ASSERT(ip
->i_ino
== 0);
85 mrlock_init(&ip
->i_iolock
, MRLOCK_BARRIER
, "xfsio", ip
->i_ino
);
86 lockdep_set_class_and_name(&ip
->i_iolock
.mr_lock
,
87 &xfs_iolock_active
, "xfs_iolock_active");
89 /* initialise the xfs inode */
92 memset(&ip
->i_imap
, 0, sizeof(struct xfs_imap
));
94 memset(&ip
->i_df
, 0, sizeof(xfs_ifork_t
));
96 ip
->i_update_core
= 0;
97 ip
->i_delayed_blks
= 0;
98 memset(&ip
->i_d
, 0, sizeof(xfs_icdinode_t
));
106 xfs_inode_free_callback(
107 struct rcu_head
*head
)
109 struct inode
*inode
= container_of(head
, struct inode
, i_rcu
);
110 struct xfs_inode
*ip
= XFS_I(inode
);
112 INIT_LIST_HEAD(&inode
->i_dentry
);
113 kmem_zone_free(xfs_inode_zone
, ip
);
118 struct xfs_inode
*ip
)
120 switch (ip
->i_d
.di_mode
& S_IFMT
) {
124 xfs_idestroy_fork(ip
, XFS_DATA_FORK
);
129 xfs_idestroy_fork(ip
, XFS_ATTR_FORK
);
133 * Only if we are shutting down the fs will we see an
134 * inode still in the AIL. If it is there, we should remove
135 * it to prevent a use-after-free from occurring.
137 xfs_log_item_t
*lip
= &ip
->i_itemp
->ili_item
;
138 struct xfs_ail
*ailp
= lip
->li_ailp
;
140 ASSERT(((lip
->li_flags
& XFS_LI_IN_AIL
) == 0) ||
141 XFS_FORCED_SHUTDOWN(ip
->i_mount
));
142 if (lip
->li_flags
& XFS_LI_IN_AIL
) {
143 spin_lock(&ailp
->xa_lock
);
144 if (lip
->li_flags
& XFS_LI_IN_AIL
)
145 xfs_trans_ail_delete(ailp
, lip
);
147 spin_unlock(&ailp
->xa_lock
);
149 xfs_inode_item_destroy(ip
);
153 /* asserts to verify all state is correct here */
154 ASSERT(atomic_read(&ip
->i_iocount
) == 0);
155 ASSERT(atomic_read(&ip
->i_pincount
) == 0);
156 ASSERT(!spin_is_locked(&ip
->i_flags_lock
));
157 ASSERT(completion_done(&ip
->i_flush
));
160 * Because we use RCU freeing we need to ensure the inode always
161 * appears to be reclaimed with an invalid inode number when in the
162 * free state. The ip->i_flags_lock provides the barrier against lookup
165 spin_lock(&ip
->i_flags_lock
);
166 ip
->i_flags
= XFS_IRECLAIM
;
168 spin_unlock(&ip
->i_flags_lock
);
170 call_rcu(&VFS_I(ip
)->i_rcu
, xfs_inode_free_callback
);
174 * Check the validity of the inode we just found it the cache
178 struct xfs_perag
*pag
,
179 struct xfs_inode
*ip
,
182 int lock_flags
) __releases(RCU
)
184 struct inode
*inode
= VFS_I(ip
);
185 struct xfs_mount
*mp
= ip
->i_mount
;
189 * check for re-use of an inode within an RCU grace period due to the
190 * radix tree nodes not being updated yet. We monitor for this by
191 * setting the inode number to zero before freeing the inode structure.
192 * If the inode has been reallocated and set up, then the inode number
193 * will not match, so check for that, too.
195 spin_lock(&ip
->i_flags_lock
);
196 if (ip
->i_ino
!= ino
) {
197 trace_xfs_iget_skip(ip
);
198 XFS_STATS_INC(xs_ig_frecycle
);
205 * If we are racing with another cache hit that is currently
206 * instantiating this inode or currently recycling it out of
207 * reclaimabe state, wait for the initialisation to complete
210 * XXX(hch): eventually we should do something equivalent to
211 * wait_on_inode to wait for these flags to be cleared
212 * instead of polling for it.
214 if (ip
->i_flags
& (XFS_INEW
|XFS_IRECLAIM
)) {
215 trace_xfs_iget_skip(ip
);
216 XFS_STATS_INC(xs_ig_frecycle
);
222 * If lookup is racing with unlink return an error immediately.
224 if (ip
->i_d
.di_mode
== 0 && !(flags
& XFS_IGET_CREATE
)) {
230 * If IRECLAIMABLE is set, we've torn down the VFS inode already.
231 * Need to carefully get it back into useable state.
233 if (ip
->i_flags
& XFS_IRECLAIMABLE
) {
234 trace_xfs_iget_reclaim(ip
);
237 * We need to set XFS_IRECLAIM to prevent xfs_reclaim_inode
238 * from stomping over us while we recycle the inode. We can't
239 * clear the radix tree reclaimable tag yet as it requires
240 * pag_ici_lock to be held exclusive.
242 ip
->i_flags
|= XFS_IRECLAIM
;
244 spin_unlock(&ip
->i_flags_lock
);
247 error
= -inode_init_always(mp
->m_super
, inode
);
250 * Re-initializing the inode failed, and we are in deep
251 * trouble. Try to re-add it to the reclaim list.
254 spin_lock(&ip
->i_flags_lock
);
256 ip
->i_flags
&= ~XFS_INEW
;
257 ip
->i_flags
|= XFS_IRECLAIMABLE
;
258 __xfs_inode_set_reclaim_tag(pag
, ip
);
259 trace_xfs_iget_reclaim_fail(ip
);
263 spin_lock(&pag
->pag_ici_lock
);
264 spin_lock(&ip
->i_flags_lock
);
265 ip
->i_flags
&= ~(XFS_IRECLAIMABLE
| XFS_IRECLAIM
);
266 ip
->i_flags
|= XFS_INEW
;
267 __xfs_inode_clear_reclaim_tag(mp
, pag
, ip
);
268 inode
->i_state
= I_NEW
;
270 ASSERT(!rwsem_is_locked(&ip
->i_iolock
.mr_lock
));
271 mrlock_init(&ip
->i_iolock
, MRLOCK_BARRIER
, "xfsio", ip
->i_ino
);
272 lockdep_set_class_and_name(&ip
->i_iolock
.mr_lock
,
273 &xfs_iolock_active
, "xfs_iolock_active");
275 spin_unlock(&ip
->i_flags_lock
);
276 spin_unlock(&pag
->pag_ici_lock
);
278 /* If the VFS inode is being torn down, pause and try again. */
280 trace_xfs_iget_skip(ip
);
285 /* We've got a live one. */
286 spin_unlock(&ip
->i_flags_lock
);
288 trace_xfs_iget_hit(ip
);
292 xfs_ilock(ip
, lock_flags
);
294 xfs_iflags_clear(ip
, XFS_ISTALE
);
295 XFS_STATS_INC(xs_ig_found
);
300 spin_unlock(&ip
->i_flags_lock
);
308 struct xfs_mount
*mp
,
309 struct xfs_perag
*pag
,
312 struct xfs_inode
**ipp
,
316 struct xfs_inode
*ip
;
318 xfs_agino_t agino
= XFS_INO_TO_AGINO(mp
, ino
);
320 ip
= xfs_inode_alloc(mp
, ino
);
324 error
= xfs_iread(mp
, tp
, ip
, flags
);
328 trace_xfs_iget_miss(ip
);
330 if ((ip
->i_d
.di_mode
== 0) && !(flags
& XFS_IGET_CREATE
)) {
336 * Preload the radix tree so we can insert safely under the
337 * write spinlock. Note that we cannot sleep inside the preload
340 if (radix_tree_preload(GFP_KERNEL
)) {
346 * Because the inode hasn't been added to the radix-tree yet it can't
347 * be found by another thread, so we can do the non-sleeping lock here.
350 if (!xfs_ilock_nowait(ip
, lock_flags
))
354 spin_lock(&pag
->pag_ici_lock
);
356 /* insert the new inode */
357 error
= radix_tree_insert(&pag
->pag_ici_root
, agino
, ip
);
358 if (unlikely(error
)) {
359 WARN_ON(error
!= -EEXIST
);
360 XFS_STATS_INC(xs_ig_dup
);
362 goto out_preload_end
;
365 /* These values _must_ be set before releasing the radix tree lock! */
366 ip
->i_udquot
= ip
->i_gdquot
= NULL
;
367 xfs_iflags_set(ip
, XFS_INEW
);
369 spin_unlock(&pag
->pag_ici_lock
);
370 radix_tree_preload_end();
376 spin_unlock(&pag
->pag_ici_lock
);
377 radix_tree_preload_end();
379 xfs_iunlock(ip
, lock_flags
);
381 __destroy_inode(VFS_I(ip
));
387 * Look up an inode by number in the given file system.
388 * The inode is looked up in the cache held in each AG.
389 * If the inode is found in the cache, initialise the vfs inode
392 * If it is not in core, read it in from the file system's device,
393 * add it to the cache and initialise the vfs inode.
395 * The inode is locked according to the value of the lock_flags parameter.
396 * This flag parameter indicates how and if the inode's IO lock and inode lock
399 * mp -- the mount point structure for the current file system. It points
400 * to the inode hash table.
401 * tp -- a pointer to the current transaction if there is one. This is
402 * simply passed through to the xfs_iread() call.
403 * ino -- the number of the inode desired. This is the unique identifier
404 * within the file system for the inode being requested.
405 * lock_flags -- flags indicating how to lock the inode. See the comment
406 * for xfs_ilock() for a list of valid values.
422 /* reject inode numbers outside existing AGs */
423 if (!ino
|| XFS_INO_TO_AGNO(mp
, ino
) >= mp
->m_sb
.sb_agcount
)
426 /* get the perag structure and ensure that it's inode capable */
427 pag
= xfs_perag_get(mp
, XFS_INO_TO_AGNO(mp
, ino
));
428 agino
= XFS_INO_TO_AGINO(mp
, ino
);
433 ip
= radix_tree_lookup(&pag
->pag_ici_root
, agino
);
436 error
= xfs_iget_cache_hit(pag
, ip
, ino
, flags
, lock_flags
);
438 goto out_error_or_again
;
441 XFS_STATS_INC(xs_ig_missed
);
443 error
= xfs_iget_cache_miss(mp
, pag
, tp
, ino
, &ip
,
446 goto out_error_or_again
;
452 ASSERT(ip
->i_df
.if_ext_max
==
453 XFS_IFORK_DSIZE(ip
) / sizeof(xfs_bmbt_rec_t
));
455 * If we have a real type for an on-disk inode, we can set ops(&unlock)
456 * now. If it's a new inode being created, xfs_ialloc will handle it.
458 if (xfs_iflags_test(ip
, XFS_INEW
) && ip
->i_d
.di_mode
!= 0)
463 if (error
== EAGAIN
) {
472 * This is a wrapper routine around the xfs_ilock() routine
473 * used to centralize some grungy code. It is used in places
474 * that wish to lock the inode solely for reading the extents.
475 * The reason these places can't just call xfs_ilock(SHARED)
476 * is that the inode lock also guards to bringing in of the
477 * extents from disk for a file in b-tree format. If the inode
478 * is in b-tree format, then we need to lock the inode exclusively
479 * until the extents are read in. Locking it exclusively all
480 * the time would limit our parallelism unnecessarily, though.
481 * What we do instead is check to see if the extents have been
482 * read in yet, and only lock the inode exclusively if they
485 * The function returns a value which should be given to the
486 * corresponding xfs_iunlock_map_shared(). This value is
487 * the mode in which the lock was actually taken.
490 xfs_ilock_map_shared(
495 if ((ip
->i_d
.di_format
== XFS_DINODE_FMT_BTREE
) &&
496 ((ip
->i_df
.if_flags
& XFS_IFEXTENTS
) == 0)) {
497 lock_mode
= XFS_ILOCK_EXCL
;
499 lock_mode
= XFS_ILOCK_SHARED
;
502 xfs_ilock(ip
, lock_mode
);
508 * This is simply the unlock routine to go with xfs_ilock_map_shared().
509 * All it does is call xfs_iunlock() with the given lock_mode.
512 xfs_iunlock_map_shared(
514 unsigned int lock_mode
)
516 xfs_iunlock(ip
, lock_mode
);
520 * The xfs inode contains 2 locks: a multi-reader lock called the
521 * i_iolock and a multi-reader lock called the i_lock. This routine
522 * allows either or both of the locks to be obtained.
524 * The 2 locks should always be ordered so that the IO lock is
525 * obtained first in order to prevent deadlock.
527 * ip -- the inode being locked
528 * lock_flags -- this parameter indicates the inode's locks
529 * to be locked. It can be:
534 * XFS_IOLOCK_SHARED | XFS_ILOCK_SHARED,
535 * XFS_IOLOCK_SHARED | XFS_ILOCK_EXCL,
536 * XFS_IOLOCK_EXCL | XFS_ILOCK_SHARED,
537 * XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL
545 * You can't set both SHARED and EXCL for the same lock,
546 * and only XFS_IOLOCK_SHARED, XFS_IOLOCK_EXCL, XFS_ILOCK_SHARED,
547 * and XFS_ILOCK_EXCL are valid values to set in lock_flags.
549 ASSERT((lock_flags
& (XFS_IOLOCK_SHARED
| XFS_IOLOCK_EXCL
)) !=
550 (XFS_IOLOCK_SHARED
| XFS_IOLOCK_EXCL
));
551 ASSERT((lock_flags
& (XFS_ILOCK_SHARED
| XFS_ILOCK_EXCL
)) !=
552 (XFS_ILOCK_SHARED
| XFS_ILOCK_EXCL
));
553 ASSERT((lock_flags
& ~(XFS_LOCK_MASK
| XFS_LOCK_DEP_MASK
)) == 0);
555 if (lock_flags
& XFS_IOLOCK_EXCL
)
556 mrupdate_nested(&ip
->i_iolock
, XFS_IOLOCK_DEP(lock_flags
));
557 else if (lock_flags
& XFS_IOLOCK_SHARED
)
558 mraccess_nested(&ip
->i_iolock
, XFS_IOLOCK_DEP(lock_flags
));
560 if (lock_flags
& XFS_ILOCK_EXCL
)
561 mrupdate_nested(&ip
->i_lock
, XFS_ILOCK_DEP(lock_flags
));
562 else if (lock_flags
& XFS_ILOCK_SHARED
)
563 mraccess_nested(&ip
->i_lock
, XFS_ILOCK_DEP(lock_flags
));
565 trace_xfs_ilock(ip
, lock_flags
, _RET_IP_
);
569 * This is just like xfs_ilock(), except that the caller
570 * is guaranteed not to sleep. It returns 1 if it gets
571 * the requested locks and 0 otherwise. If the IO lock is
572 * obtained but the inode lock cannot be, then the IO lock
573 * is dropped before returning.
575 * ip -- the inode being locked
576 * lock_flags -- this parameter indicates the inode's locks to be
577 * to be locked. See the comment for xfs_ilock() for a list
586 * You can't set both SHARED and EXCL for the same lock,
587 * and only XFS_IOLOCK_SHARED, XFS_IOLOCK_EXCL, XFS_ILOCK_SHARED,
588 * and XFS_ILOCK_EXCL are valid values to set in lock_flags.
590 ASSERT((lock_flags
& (XFS_IOLOCK_SHARED
| XFS_IOLOCK_EXCL
)) !=
591 (XFS_IOLOCK_SHARED
| XFS_IOLOCK_EXCL
));
592 ASSERT((lock_flags
& (XFS_ILOCK_SHARED
| XFS_ILOCK_EXCL
)) !=
593 (XFS_ILOCK_SHARED
| XFS_ILOCK_EXCL
));
594 ASSERT((lock_flags
& ~(XFS_LOCK_MASK
| XFS_LOCK_DEP_MASK
)) == 0);
596 if (lock_flags
& XFS_IOLOCK_EXCL
) {
597 if (!mrtryupdate(&ip
->i_iolock
))
599 } else if (lock_flags
& XFS_IOLOCK_SHARED
) {
600 if (!mrtryaccess(&ip
->i_iolock
))
603 if (lock_flags
& XFS_ILOCK_EXCL
) {
604 if (!mrtryupdate(&ip
->i_lock
))
605 goto out_undo_iolock
;
606 } else if (lock_flags
& XFS_ILOCK_SHARED
) {
607 if (!mrtryaccess(&ip
->i_lock
))
608 goto out_undo_iolock
;
610 trace_xfs_ilock_nowait(ip
, lock_flags
, _RET_IP_
);
614 if (lock_flags
& XFS_IOLOCK_EXCL
)
615 mrunlock_excl(&ip
->i_iolock
);
616 else if (lock_flags
& XFS_IOLOCK_SHARED
)
617 mrunlock_shared(&ip
->i_iolock
);
623 * xfs_iunlock() is used to drop the inode locks acquired with
624 * xfs_ilock() and xfs_ilock_nowait(). The caller must pass
625 * in the flags given to xfs_ilock() or xfs_ilock_nowait() so
626 * that we know which locks to drop.
628 * ip -- the inode being unlocked
629 * lock_flags -- this parameter indicates the inode's locks to be
630 * to be unlocked. See the comment for xfs_ilock() for a list
631 * of valid values for this parameter.
640 * You can't set both SHARED and EXCL for the same lock,
641 * and only XFS_IOLOCK_SHARED, XFS_IOLOCK_EXCL, XFS_ILOCK_SHARED,
642 * and XFS_ILOCK_EXCL are valid values to set in lock_flags.
644 ASSERT((lock_flags
& (XFS_IOLOCK_SHARED
| XFS_IOLOCK_EXCL
)) !=
645 (XFS_IOLOCK_SHARED
| XFS_IOLOCK_EXCL
));
646 ASSERT((lock_flags
& (XFS_ILOCK_SHARED
| XFS_ILOCK_EXCL
)) !=
647 (XFS_ILOCK_SHARED
| XFS_ILOCK_EXCL
));
648 ASSERT((lock_flags
& ~(XFS_LOCK_MASK
| XFS_IUNLOCK_NONOTIFY
|
649 XFS_LOCK_DEP_MASK
)) == 0);
650 ASSERT(lock_flags
!= 0);
652 if (lock_flags
& XFS_IOLOCK_EXCL
)
653 mrunlock_excl(&ip
->i_iolock
);
654 else if (lock_flags
& XFS_IOLOCK_SHARED
)
655 mrunlock_shared(&ip
->i_iolock
);
657 if (lock_flags
& XFS_ILOCK_EXCL
)
658 mrunlock_excl(&ip
->i_lock
);
659 else if (lock_flags
& XFS_ILOCK_SHARED
)
660 mrunlock_shared(&ip
->i_lock
);
662 if ((lock_flags
& (XFS_ILOCK_SHARED
| XFS_ILOCK_EXCL
)) &&
663 !(lock_flags
& XFS_IUNLOCK_NONOTIFY
) && ip
->i_itemp
) {
665 * Let the AIL know that this item has been unlocked in case
666 * it is in the AIL and anyone is waiting on it. Don't do
667 * this if the caller has asked us not to.
669 xfs_trans_unlocked_item(ip
->i_itemp
->ili_item
.li_ailp
,
670 (xfs_log_item_t
*)(ip
->i_itemp
));
672 trace_xfs_iunlock(ip
, lock_flags
, _RET_IP_
);
676 * give up write locks. the i/o lock cannot be held nested
677 * if it is being demoted.
684 ASSERT(lock_flags
& (XFS_IOLOCK_EXCL
|XFS_ILOCK_EXCL
));
685 ASSERT((lock_flags
& ~(XFS_IOLOCK_EXCL
|XFS_ILOCK_EXCL
)) == 0);
687 if (lock_flags
& XFS_ILOCK_EXCL
)
688 mrdemote(&ip
->i_lock
);
689 if (lock_flags
& XFS_IOLOCK_EXCL
)
690 mrdemote(&ip
->i_iolock
);
692 trace_xfs_ilock_demote(ip
, lock_flags
, _RET_IP_
);
701 if (lock_flags
& (XFS_ILOCK_EXCL
|XFS_ILOCK_SHARED
)) {
702 if (!(lock_flags
& XFS_ILOCK_SHARED
))
703 return !!ip
->i_lock
.mr_writer
;
704 return rwsem_is_locked(&ip
->i_lock
.mr_lock
);
707 if (lock_flags
& (XFS_IOLOCK_EXCL
|XFS_IOLOCK_SHARED
)) {
708 if (!(lock_flags
& XFS_IOLOCK_SHARED
))
709 return !!ip
->i_iolock
.mr_writer
;
710 return rwsem_is_locked(&ip
->i_iolock
.mr_lock
);