blob: 8b4d63ce86945cf00edf197c38b02cbb9d36bb09 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Nathan Scott7b718762005-11-02 14:58:39 +11002 * Copyright (c) 2000-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 */
18#ifndef __XFS_VNODE_H__
19#define __XFS_VNODE_H__
20
Linus Torvalds1da177e2005-04-16 15:20:36 -070021struct file;
Nathan Scott8285fb52006-06-09 17:07:12 +100022struct bhv_vattr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070023struct xfs_iomap;
24struct attrlist_cursor_kern;
25
Christoph Hellwig0a74cd12007-08-29 11:53:12 +100026typedef struct inode bhv_vnode_t;
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
Christoph Hellwig0a74cd12007-08-29 11:53:12 +100028#define VN_ISLNK(vp) S_ISLNK((vp)->i_mode)
29#define VN_ISREG(vp) S_ISREG((vp)->i_mode)
30#define VN_ISDIR(vp) S_ISDIR((vp)->i_mode)
31#define VN_ISCHR(vp) S_ISCHR((vp)->i_mode)
32#define VN_ISBLK(vp) S_ISBLK((vp)->i_mode)
Christoph Hellwig0432dab2005-09-02 16:46:51 +100033
Linus Torvalds1da177e2005-04-16 15:20:36 -070034/*
35 * Vnode to Linux inode mapping.
36 */
Christoph Hellwig0a74cd12007-08-29 11:53:12 +100037static inline bhv_vnode_t *vn_from_inode(struct inode *inode)
Nathan Scottec86dc02006-03-17 17:25:36 +110038{
Christoph Hellwig0a74cd12007-08-29 11:53:12 +100039 return inode;
Nathan Scottec86dc02006-03-17 17:25:36 +110040}
Christoph Hellwig0a74cd12007-08-29 11:53:12 +100041static inline struct inode *vn_to_inode(bhv_vnode_t *vnode)
Nathan Scottec86dc02006-03-17 17:25:36 +110042{
Christoph Hellwig0a74cd12007-08-29 11:53:12 +100043 return vnode;
Nathan Scottec86dc02006-03-17 17:25:36 +110044}
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
46/*
Christoph Hellwig739bfb22007-08-29 10:58:01 +100047 * Return values for xfs_inactive. A return value of
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 * VN_INACTIVE_NOCACHE implies that the file system behavior
49 * has disassociated its state and bhv_desc_t from the vnode.
50 */
51#define VN_INACTIVE_CACHE 0
52#define VN_INACTIVE_NOCACHE 1
53
54/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 * Flags for read/write calls - same values as IRIX
56 */
57#define IO_ISAIO 0x00001 /* don't wait for completion */
58#define IO_ISDIRECT 0x00004 /* bypass page cache */
59#define IO_INVIS 0x00020 /* don't update inode timestamps */
60
61/*
David Chinnera3f74ff2008-03-06 13:43:42 +110062 * Flags for xfs_inode_flush
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 */
64#define FLUSH_SYNC 1 /* wait for flush to complete */
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
66/*
Nathan Scott67fcaa72006-06-09 17:00:52 +100067 * Flush/Invalidate options for vop_toss/flush/flushinval_pages.
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 */
69#define FI_NONE 0 /* none */
70#define FI_REMAPF 1 /* Do a remapf prior to the operation */
71#define FI_REMAPF_LOCKED 2 /* Do a remapf prior to the operation.
72 Prevent VM access to the pages until
73 the operation completes. */
74
75/*
76 * Vnode attributes. va_mask indicates those attributes the caller
77 * wants to set or extract.
78 */
Nathan Scott8285fb52006-06-09 17:07:12 +100079typedef struct bhv_vattr {
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 int va_mask; /* bit-mask of attributes present */
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 mode_t va_mode; /* file access mode and type */
Nathan Scott31b084a2005-05-05 13:25:00 -070082 xfs_nlink_t va_nlink; /* number of references to file */
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 uid_t va_uid; /* owner user id */
84 gid_t va_gid; /* owner group id */
85 xfs_ino_t va_nodeid; /* file id */
86 xfs_off_t va_size; /* file size in bytes */
87 u_long va_blocksize; /* blocksize preferred for i/o */
88 struct timespec va_atime; /* time of last access */
89 struct timespec va_mtime; /* time of last modification */
90 struct timespec va_ctime; /* time file changed */
91 u_int va_gen; /* generation number of file */
92 xfs_dev_t va_rdev; /* device the special file represents */
93 __int64_t va_nblocks; /* number of blocks allocated */
94 u_long va_xflags; /* random extended file flags */
95 u_long va_extsize; /* file extent size */
96 u_long va_nextents; /* number of extents in file */
97 u_long va_anextents; /* number of attr extents in file */
Nathan Scottb74e2152005-06-21 13:21:49 +100098 prid_t va_projid; /* project id */
Nathan Scott8285fb52006-06-09 17:07:12 +100099} bhv_vattr_t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
101/*
102 * setattr or getattr attributes
103 */
104#define XFS_AT_TYPE 0x00000001
105#define XFS_AT_MODE 0x00000002
106#define XFS_AT_UID 0x00000004
107#define XFS_AT_GID 0x00000008
108#define XFS_AT_FSID 0x00000010
109#define XFS_AT_NODEID 0x00000020
110#define XFS_AT_NLINK 0x00000040
111#define XFS_AT_SIZE 0x00000080
112#define XFS_AT_ATIME 0x00000100
113#define XFS_AT_MTIME 0x00000200
114#define XFS_AT_CTIME 0x00000400
115#define XFS_AT_RDEV 0x00000800
116#define XFS_AT_BLKSIZE 0x00001000
117#define XFS_AT_NBLOCKS 0x00002000
118#define XFS_AT_VCODE 0x00004000
119#define XFS_AT_MAC 0x00008000
120#define XFS_AT_UPDATIME 0x00010000
121#define XFS_AT_UPDMTIME 0x00020000
122#define XFS_AT_UPDCTIME 0x00040000
123#define XFS_AT_ACL 0x00080000
124#define XFS_AT_CAP 0x00100000
125#define XFS_AT_INF 0x00200000
126#define XFS_AT_XFLAGS 0x00400000
127#define XFS_AT_EXTSIZE 0x00800000
128#define XFS_AT_NEXTENTS 0x01000000
129#define XFS_AT_ANEXTENTS 0x02000000
130#define XFS_AT_PROJID 0x04000000
131#define XFS_AT_SIZE_NOPERM 0x08000000
132#define XFS_AT_GENCOUNT 0x10000000
133
134#define XFS_AT_ALL (XFS_AT_TYPE|XFS_AT_MODE|XFS_AT_UID|XFS_AT_GID|\
135 XFS_AT_FSID|XFS_AT_NODEID|XFS_AT_NLINK|XFS_AT_SIZE|\
136 XFS_AT_ATIME|XFS_AT_MTIME|XFS_AT_CTIME|XFS_AT_RDEV|\
137 XFS_AT_BLKSIZE|XFS_AT_NBLOCKS|XFS_AT_VCODE|XFS_AT_MAC|\
138 XFS_AT_ACL|XFS_AT_CAP|XFS_AT_INF|XFS_AT_XFLAGS|XFS_AT_EXTSIZE|\
139 XFS_AT_NEXTENTS|XFS_AT_ANEXTENTS|XFS_AT_PROJID|XFS_AT_GENCOUNT)
140
141#define XFS_AT_STAT (XFS_AT_TYPE|XFS_AT_MODE|XFS_AT_UID|XFS_AT_GID|\
142 XFS_AT_FSID|XFS_AT_NODEID|XFS_AT_NLINK|XFS_AT_SIZE|\
143 XFS_AT_ATIME|XFS_AT_MTIME|XFS_AT_CTIME|XFS_AT_RDEV|\
144 XFS_AT_BLKSIZE|XFS_AT_NBLOCKS|XFS_AT_PROJID)
145
146#define XFS_AT_TIMES (XFS_AT_ATIME|XFS_AT_MTIME|XFS_AT_CTIME)
147
148#define XFS_AT_UPDTIMES (XFS_AT_UPDATIME|XFS_AT_UPDMTIME|XFS_AT_UPDCTIME)
149
150#define XFS_AT_NOSET (XFS_AT_NLINK|XFS_AT_RDEV|XFS_AT_FSID|XFS_AT_NODEID|\
151 XFS_AT_TYPE|XFS_AT_BLKSIZE|XFS_AT_NBLOCKS|XFS_AT_VCODE|\
152 XFS_AT_NEXTENTS|XFS_AT_ANEXTENTS|XFS_AT_GENCOUNT)
153
154/*
155 * Modes.
156 */
157#define VSUID S_ISUID /* set user id on execution */
158#define VSGID S_ISGID /* set group id on execution */
159#define VSVTX S_ISVTX /* save swapped text even after use */
160#define VREAD S_IRUSR /* read, write, execute permissions */
161#define VWRITE S_IWUSR
162#define VEXEC S_IXUSR
163
164#define MODEMASK S_IALLUGO /* mode bits plus permission bits */
165
166/*
167 * Check whether mandatory file locking is enabled.
168 */
169#define MANDLOCK(vp, mode) \
Christoph Hellwig0432dab2005-09-02 16:46:51 +1000170 (VN_ISREG(vp) && ((mode) & (VSGID|(VEXEC>>3))) == VSGID)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
172extern void vn_init(void);
Christoph Hellwig0a74cd12007-08-29 11:53:12 +1000173extern int vn_revalidate(bhv_vnode_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
Christoph Hellwigb677c212007-08-29 11:46:28 +1000175/*
176 * Yeah, these don't take vnode anymore at all, all this should be
177 * cleaned up at some point.
178 */
179extern void vn_iowait(struct xfs_inode *ip);
180extern void vn_iowake(struct xfs_inode *ip);
181extern void vn_ioerror(struct xfs_inode *ip, int error, char *f, int l);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
Christoph Hellwig0a74cd12007-08-29 11:53:12 +1000183static inline int vn_count(bhv_vnode_t *vp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184{
Nathan Scottec86dc02006-03-17 17:25:36 +1100185 return atomic_read(&vn_to_inode(vp)->i_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186}
187
188/*
189 * Vnode reference counting functions (and macros for compatibility).
190 */
Christoph Hellwig0a74cd12007-08-29 11:53:12 +1000191extern bhv_vnode_t *vn_hold(bhv_vnode_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
Lachlan McIlroycf441ee2008-02-07 16:42:19 +1100193#if defined(XFS_INODE_TRACE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194#define VN_HOLD(vp) \
195 ((void)vn_hold(vp), \
Lachlan McIlroycf441ee2008-02-07 16:42:19 +1100196 xfs_itrace_hold(xfs_vtoi(vp), __FILE__, __LINE__, (inst_t *)__return_address))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197#define VN_RELE(vp) \
Lachlan McIlroycf441ee2008-02-07 16:42:19 +1100198 (xfs_itrace_rele(xfs_vtoi(vp), __FILE__, __LINE__, (inst_t *)__return_address), \
Nathan Scottec86dc02006-03-17 17:25:36 +1100199 iput(vn_to_inode(vp)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200#else
201#define VN_HOLD(vp) ((void)vn_hold(vp))
Nathan Scottec86dc02006-03-17 17:25:36 +1100202#define VN_RELE(vp) (iput(vn_to_inode(vp)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203#endif
204
Christoph Hellwig0a74cd12007-08-29 11:53:12 +1000205static inline bhv_vnode_t *vn_grab(bhv_vnode_t *vp)
Christoph Hellwigcdb62682005-09-02 16:24:19 +1000206{
Nathan Scottec86dc02006-03-17 17:25:36 +1100207 struct inode *inode = igrab(vn_to_inode(vp));
208 return inode ? vn_from_inode(inode) : NULL;
Christoph Hellwigcdb62682005-09-02 16:24:19 +1000209}
210
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 * Dealing with bad inodes
213 */
Christoph Hellwig0a74cd12007-08-29 11:53:12 +1000214static inline int VN_BAD(bhv_vnode_t *vp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215{
Nathan Scottec86dc02006-03-17 17:25:36 +1100216 return is_bad_inode(vn_to_inode(vp));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217}
218
219/*
Nathan Scottca5ccbf2006-01-11 21:03:04 +1100220 * Extracting atime values in various formats
221 */
Nathan Scott67fcaa72006-06-09 17:00:52 +1000222static inline void vn_atime_to_bstime(bhv_vnode_t *vp, xfs_bstime_t *bs_atime)
Nathan Scottca5ccbf2006-01-11 21:03:04 +1100223{
Christoph Hellwig0a74cd12007-08-29 11:53:12 +1000224 bs_atime->tv_sec = vp->i_atime.tv_sec;
225 bs_atime->tv_nsec = vp->i_atime.tv_nsec;
Nathan Scottca5ccbf2006-01-11 21:03:04 +1100226}
227
Nathan Scott67fcaa72006-06-09 17:00:52 +1000228static inline void vn_atime_to_timespec(bhv_vnode_t *vp, struct timespec *ts)
Nathan Scottca5ccbf2006-01-11 21:03:04 +1100229{
Christoph Hellwig0a74cd12007-08-29 11:53:12 +1000230 *ts = vp->i_atime;
Nathan Scottca5ccbf2006-01-11 21:03:04 +1100231}
232
Nathan Scott67fcaa72006-06-09 17:00:52 +1000233static inline void vn_atime_to_time_t(bhv_vnode_t *vp, time_t *tt)
Nathan Scottca5ccbf2006-01-11 21:03:04 +1100234{
Christoph Hellwig0a74cd12007-08-29 11:53:12 +1000235 *tt = vp->i_atime.tv_sec;
Nathan Scottca5ccbf2006-01-11 21:03:04 +1100236}
237
238/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 * Some useful predicates.
240 */
Nathan Scottec86dc02006-03-17 17:25:36 +1100241#define VN_MAPPED(vp) mapping_mapped(vn_to_inode(vp)->i_mapping)
242#define VN_CACHED(vp) (vn_to_inode(vp)->i_mapping->nrpages)
243#define VN_DIRTY(vp) mapping_tagged(vn_to_inode(vp)->i_mapping, \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 PAGECACHE_TAG_DIRTY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
246/*
Nathan Scott67fcaa72006-06-09 17:00:52 +1000247 * Flags to vop_setattr/getattr.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 */
249#define ATTR_UTIME 0x01 /* non-default utime(2) request */
250#define ATTR_DMI 0x08 /* invocation from a DMI function */
251#define ATTR_LAZY 0x80 /* set/get attributes lazily */
252#define ATTR_NONBLOCK 0x100 /* return EAGAIN if operation would block */
Dean Roehrich5fcbab32005-05-05 13:27:19 -0700253#define ATTR_NOLOCK 0x200 /* Don't grab any conflicting locks */
Eric Sandeen1f730e32005-11-02 15:08:10 +1100254#define ATTR_NOSIZETOK 0x400 /* Don't get the SIZE token */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
256/*
Nathan Scott67fcaa72006-06-09 17:00:52 +1000257 * Flags to vop_fsync/reclaim.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 */
259#define FSYNC_NOWAIT 0 /* asynchronous flush */
260#define FSYNC_WAIT 0x1 /* synchronous fsync or forced reclaim */
261#define FSYNC_INVAL 0x2 /* flush and invalidate cached data */
262#define FSYNC_DATA 0x4 /* synchronous fsync of data only */
263
264/*
265 * Tracking vnode activity.
266 */
Lachlan McIlroycf441ee2008-02-07 16:42:19 +1100267#if defined(XFS_INODE_TRACE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
Lachlan McIlroycf441ee2008-02-07 16:42:19 +1100269#define INODE_TRACE_SIZE 16 /* number of trace entries */
270#define INODE_KTRACE_ENTRY 1
271#define INODE_KTRACE_EXIT 2
272#define INODE_KTRACE_HOLD 3
273#define INODE_KTRACE_REF 4
274#define INODE_KTRACE_RELE 5
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
Lachlan McIlroycf441ee2008-02-07 16:42:19 +1100276extern void _xfs_itrace_entry(struct xfs_inode *, const char *, inst_t *);
277extern void _xfs_itrace_exit(struct xfs_inode *, const char *, inst_t *);
278extern void xfs_itrace_hold(struct xfs_inode *, char *, int, inst_t *);
279extern void _xfs_itrace_ref(struct xfs_inode *, char *, int, inst_t *);
280extern void xfs_itrace_rele(struct xfs_inode *, char *, int, inst_t *);
281#define xfs_itrace_entry(ip) \
Harvey Harrison34a622b2008-04-10 12:19:21 +1000282 _xfs_itrace_entry(ip, __func__, (inst_t *)__return_address)
Lachlan McIlroycf441ee2008-02-07 16:42:19 +1100283#define xfs_itrace_exit(ip) \
Harvey Harrison34a622b2008-04-10 12:19:21 +1000284 _xfs_itrace_exit(ip, __func__, (inst_t *)__return_address)
Lachlan McIlroy15947f22007-09-17 13:11:58 +1000285#define xfs_itrace_exit_tag(ip, tag) \
286 _xfs_itrace_exit(ip, tag, (inst_t *)__return_address)
Lachlan McIlroycf441ee2008-02-07 16:42:19 +1100287#define xfs_itrace_ref(ip) \
288 _xfs_itrace_ref(ip, __FILE__, __LINE__, (inst_t *)__return_address)
289
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290#else
Lachlan McIlroycf441ee2008-02-07 16:42:19 +1100291#define xfs_itrace_entry(a)
292#define xfs_itrace_exit(a)
Lachlan McIlroy15947f22007-09-17 13:11:58 +1000293#define xfs_itrace_exit_tag(a, b)
Lachlan McIlroycf441ee2008-02-07 16:42:19 +1100294#define xfs_itrace_hold(a, b, c, d)
295#define xfs_itrace_ref(a)
296#define xfs_itrace_rele(a, b, c, d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297#endif
298
299#endif /* __XFS_VNODE_H__ */