blob: 9d9464cf8de4de637f785ce5776ef4bdcf8d52ae [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Nathan Scott7b718762005-11-02 14:58:39 +11002 * Copyright (c) 2000-2003,2005 Silicon Graphics, Inc.
3 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Nathan Scott7b718762005-11-02 14:58:39 +11005 * 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 Torvalds1da177e2005-04-16 15:20:36 -07007 * published by the Free Software Foundation.
8 *
Nathan Scott7b718762005-11-02 14:58:39 +11009 * 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 Torvalds1da177e2005-04-16 15:20:36 -070013 *
Nathan Scott7b718762005-11-02 14:58:39 +110014 * 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 Torvalds1da177e2005-04-16 15:20:36 -070017 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include "xfs.h"
Christoph Hellwig739bfb22007-08-29 10:58:01 +100019#include "xfs_vnodeops.h"
20#include "xfs_bmap_btree.h"
21#include "xfs_inode.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
Christoph Hellwigb677c212007-08-29 11:46:28 +100023/*
24 * And this gunk is needed for xfs_mount.h"
25 */
26#include "xfs_log.h"
27#include "xfs_trans.h"
28#include "xfs_sb.h"
29#include "xfs_dmapi.h"
30#include "xfs_inum.h"
31#include "xfs_ag.h"
32#include "xfs_mount.h"
33
Linus Torvalds1da177e2005-04-16 15:20:36 -070034uint64_t vn_generation; /* vnode generation number */
35DEFINE_SPINLOCK(vnumber_lock);
36
37/*
38 * Dedicated vnode inactive/reclaim sync semaphores.
39 * Prime number of hash buckets since address is used as the key.
40 */
41#define NVSYNC 37
42#define vptosync(v) (&vsync[((unsigned long)v) % NVSYNC])
David Chinner7989cb82007-02-10 18:34:56 +110043static wait_queue_head_t vsync[NVSYNC];
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
Linus Torvalds1da177e2005-04-16 15:20:36 -070045void
46vn_init(void)
47{
Christoph Hellwig51c91ed2005-09-02 16:58:38 +100048 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Christoph Hellwig51c91ed2005-09-02 16:58:38 +100050 for (i = 0; i < NVSYNC; i++)
51 init_waitqueue_head(&vsync[i]);
52}
53
54void
55vn_iowait(
Christoph Hellwigb677c212007-08-29 11:46:28 +100056 xfs_inode_t *ip)
Christoph Hellwig51c91ed2005-09-02 16:58:38 +100057{
Christoph Hellwigb677c212007-08-29 11:46:28 +100058 wait_queue_head_t *wq = vptosync(ip);
Christoph Hellwig51c91ed2005-09-02 16:58:38 +100059
Christoph Hellwigb677c212007-08-29 11:46:28 +100060 wait_event(*wq, (atomic_read(&ip->i_iocount) == 0));
Christoph Hellwig51c91ed2005-09-02 16:58:38 +100061}
62
63void
64vn_iowake(
Christoph Hellwigb677c212007-08-29 11:46:28 +100065 xfs_inode_t *ip)
Christoph Hellwig51c91ed2005-09-02 16:58:38 +100066{
Christoph Hellwigb677c212007-08-29 11:46:28 +100067 if (atomic_dec_and_test(&ip->i_iocount))
68 wake_up(vptosync(ip));
Linus Torvalds1da177e2005-04-16 15:20:36 -070069}
70
Nathan Scott7d04a332006-06-09 14:58:38 +100071/*
72 * Volume managers supporting multiple paths can send back ENODEV when the
73 * final path disappears. In this case continuing to fill the page cache
74 * with dirty data which cannot be written out is evil, so prevent that.
75 */
76void
77vn_ioerror(
Christoph Hellwigb677c212007-08-29 11:46:28 +100078 xfs_inode_t *ip,
Nathan Scott7d04a332006-06-09 14:58:38 +100079 int error,
80 char *f,
81 int l)
82{
Christoph Hellwigb677c212007-08-29 11:46:28 +100083 bhv_vfs_t *vfsp = XFS_MTOVFS(ip->i_mount);
Christoph Hellwig2f6f7b32007-08-29 11:44:18 +100084
Nathan Scott7d04a332006-06-09 14:58:38 +100085 if (unlikely(error == -ENODEV))
Christoph Hellwig2f6f7b32007-08-29 11:44:18 +100086 bhv_vfs_force_shutdown(vfsp, SHUTDOWN_DEVICE_REQ, f, l);
Nathan Scott7d04a332006-06-09 14:58:38 +100087}
88
Nathan Scott67fcaa72006-06-09 17:00:52 +100089bhv_vnode_t *
Linus Torvalds1da177e2005-04-16 15:20:36 -070090vn_initialize(
91 struct inode *inode)
92{
Nathan Scott67fcaa72006-06-09 17:00:52 +100093 bhv_vnode_t *vp = vn_from_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
95 XFS_STATS_INC(vn_active);
96 XFS_STATS_INC(vn_alloc);
97
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 spin_lock(&vnumber_lock);
99 if (!++vn_generation) /* v_number shouldn't be zero */
100 vn_generation++;
101 vp->v_number = vn_generation;
102 spin_unlock(&vnumber_lock);
103
104 ASSERT(VN_CACHED(vp) == 0);
105
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 return vp;
107}
108
109/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 * Revalidate the Linux inode from the vattr.
111 * Note: i_size _not_ updated; we must hold the inode
112 * semaphore when doing that - callers responsibility.
113 */
114void
115vn_revalidate_core(
Nathan Scott67fcaa72006-06-09 17:00:52 +1000116 bhv_vnode_t *vp,
Nathan Scott8285fb52006-06-09 17:07:12 +1000117 bhv_vattr_t *vap)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118{
Nathan Scottec86dc02006-03-17 17:25:36 +1100119 struct inode *inode = vn_to_inode(vp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
Christoph Hellwig0432dab2005-09-02 16:46:51 +1000121 inode->i_mode = vap->va_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 inode->i_nlink = vap->va_nlink;
123 inode->i_uid = vap->va_uid;
124 inode->i_gid = vap->va_gid;
125 inode->i_blocks = vap->va_nblocks;
126 inode->i_mtime = vap->va_mtime;
127 inode->i_ctime = vap->va_ctime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 if (vap->va_xflags & XFS_XFLAG_IMMUTABLE)
129 inode->i_flags |= S_IMMUTABLE;
130 else
131 inode->i_flags &= ~S_IMMUTABLE;
132 if (vap->va_xflags & XFS_XFLAG_APPEND)
133 inode->i_flags |= S_APPEND;
134 else
135 inode->i_flags &= ~S_APPEND;
136 if (vap->va_xflags & XFS_XFLAG_SYNC)
137 inode->i_flags |= S_SYNC;
138 else
139 inode->i_flags &= ~S_SYNC;
140 if (vap->va_xflags & XFS_XFLAG_NOATIME)
141 inode->i_flags |= S_NOATIME;
142 else
143 inode->i_flags &= ~S_NOATIME;
144}
145
146/*
147 * Revalidate the Linux inode from the vnode.
148 */
149int
Nathan Scott220b5282006-03-14 13:33:36 +1100150__vn_revalidate(
Nathan Scott67fcaa72006-06-09 17:00:52 +1000151 bhv_vnode_t *vp,
Nathan Scott8285fb52006-06-09 17:07:12 +1000152 bhv_vattr_t *vattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 int error;
155
Christoph Hellwig1543d792007-08-29 11:46:47 +1000156 vn_trace_entry(xfs_vtoi(vp), __FUNCTION__, (inst_t *)__return_address);
Nathan Scott220b5282006-03-14 13:33:36 +1100157 vattr->va_mask = XFS_AT_STAT | XFS_AT_XFLAGS;
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000158 error = xfs_getattr(xfs_vtoi(vp), vattr, 0);
Nathan Scott220b5282006-03-14 13:33:36 +1100159 if (likely(!error)) {
160 vn_revalidate_core(vp, vattr);
Christoph Hellwigb3aea4e2007-08-29 11:44:37 +1000161 xfs_iflags_clear(xfs_vtoi(vp), XFS_IMODIFIED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 }
163 return -error;
164}
165
Nathan Scott220b5282006-03-14 13:33:36 +1100166int
167vn_revalidate(
Nathan Scott67fcaa72006-06-09 17:00:52 +1000168 bhv_vnode_t *vp)
Nathan Scott220b5282006-03-14 13:33:36 +1100169{
Nathan Scott8285fb52006-06-09 17:07:12 +1000170 bhv_vattr_t vattr;
Nathan Scott220b5282006-03-14 13:33:36 +1100171
172 return __vn_revalidate(vp, &vattr);
173}
174
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 * Add a reference to a referenced vnode.
177 */
Nathan Scott67fcaa72006-06-09 17:00:52 +1000178bhv_vnode_t *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179vn_hold(
Nathan Scott67fcaa72006-06-09 17:00:52 +1000180 bhv_vnode_t *vp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181{
182 struct inode *inode;
183
184 XFS_STATS_INC(vn_hold);
185
Nathan Scottec86dc02006-03-17 17:25:36 +1100186 inode = igrab(vn_to_inode(vp));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 ASSERT(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
189 return vp;
190}
191
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192#ifdef XFS_VNODE_TRACE
193
Christoph Hellwig1543d792007-08-29 11:46:47 +1000194/*
195 * Reference count of Linux inode if present, -1 if the xfs_inode
196 * has no associated Linux inode.
197 */
198static inline int xfs_icount(struct xfs_inode *ip)
199{
200 bhv_vnode_t *vp = XFS_ITOV_NULL(ip);
201
202 if (vp)
203 return vn_count(vp);
204 return -1;
205}
206
207#define KTRACE_ENTER(ip, vk, s, line, ra) \
208 ktrace_enter( (ip)->i_trace, \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209/* 0 */ (void *)(__psint_t)(vk), \
210/* 1 */ (void *)(s), \
211/* 2 */ (void *)(__psint_t) line, \
Christoph Hellwig1543d792007-08-29 11:46:47 +1000212/* 3 */ (void *)(__psint_t)xfs_icount(ip), \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213/* 4 */ (void *)(ra), \
Christoph Hellwigb3aea4e2007-08-29 11:44:37 +1000214/* 5 */ NULL, \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215/* 6 */ (void *)(__psint_t)current_cpu(), \
216/* 7 */ (void *)(__psint_t)current_pid(), \
217/* 8 */ (void *)__return_address, \
Christoph Hellwig02de1f02005-06-21 15:33:48 +1000218/* 9 */ NULL, NULL, NULL, NULL, NULL, NULL, NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
220/*
221 * Vnode tracing code.
222 */
223void
Christoph Hellwig1543d792007-08-29 11:46:47 +1000224vn_trace_entry(xfs_inode_t *ip, const char *func, inst_t *ra)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225{
Christoph Hellwig1543d792007-08-29 11:46:47 +1000226 KTRACE_ENTER(ip, VNODE_KTRACE_ENTRY, func, 0, ra);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227}
228
229void
Christoph Hellwig1543d792007-08-29 11:46:47 +1000230vn_trace_exit(xfs_inode_t *ip, const char *func, inst_t *ra)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231{
Christoph Hellwig1543d792007-08-29 11:46:47 +1000232 KTRACE_ENTER(ip, VNODE_KTRACE_EXIT, func, 0, ra);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233}
234
235void
Christoph Hellwig1543d792007-08-29 11:46:47 +1000236vn_trace_hold(xfs_inode_t *ip, char *file, int line, inst_t *ra)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237{
Christoph Hellwig1543d792007-08-29 11:46:47 +1000238 KTRACE_ENTER(ip, VNODE_KTRACE_HOLD, file, line, ra);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239}
240
241void
Christoph Hellwig1543d792007-08-29 11:46:47 +1000242vn_trace_ref(xfs_inode_t *ip, char *file, int line, inst_t *ra)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243{
Christoph Hellwig1543d792007-08-29 11:46:47 +1000244 KTRACE_ENTER(ip, VNODE_KTRACE_REF, file, line, ra);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245}
246
247void
Christoph Hellwig1543d792007-08-29 11:46:47 +1000248vn_trace_rele(xfs_inode_t *ip, char *file, int line, inst_t *ra)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249{
Christoph Hellwig1543d792007-08-29 11:46:47 +1000250 KTRACE_ENTER(ip, VNODE_KTRACE_RELE, file, line, ra);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251}
252#endif /* XFS_VNODE_TRACE */