nfsnode.h revision 1.67.10.4 1 /* $NetBSD: nfsnode.h,v 1.67.10.4 2010/10/09 03:32:40 yamt Exp $ */
2
3 /*
4 * Copyright (c) 1989, 1993
5 * The Regents of the University of California. All rights reserved.
6 *
7 * This code is derived from software contributed to Berkeley by
8 * Rick Macklem at The University of Guelph.
9 *
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 * 3. Neither the name of the University nor the names of its contributors
19 * may be used to endorse or promote products derived from this software
20 * without specific prior written permission.
21 *
22 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 * SUCH DAMAGE.
33 *
34 * @(#)nfsnode.h 8.9 (Berkeley) 5/14/95
35 */
36
37
38 #ifndef _NFS_NFSNODE_H_
39 #define _NFS_NFSNODE_H_
40
41 #include <sys/condvar.h>
42 #include <sys/mutex.h>
43 #include <sys/rbtree.h>
44
45 #ifndef _NFS_NFS_H_
46 #include <nfs/nfs.h>
47 #endif
48 #include <miscfs/genfs/genfs.h>
49 #include <miscfs/genfs/genfs_node.h>
50
51 /*
52 * protected by:
53 * a: n_attrlock
54 * c: n_commitlock
55 * v: vnode lock
56 */
57
58 /*
59 * Definitions for the directory cache. Because directory cookies
60 * are an opaque 64 bit entity, we need to provide some sort of
61 * mapping between cookies and logical blocknumbers. Also,
62 * we should store the cookies from the server somewhere,
63 * to be able to satisfy VOP_READDIR requests for cookies.
64 * We can't store the cookies in the dirent structure, as some
65 * other systems.
66 *
67 * Each offset is hashed into a per-nfsnode hashtable. An entry
68 * found therein contains information about the (faked up)
69 * logical blocknumber, and also a pointer to a buffer where
70 * the cookies are stored.
71 */
72
73
74 LIST_HEAD(nfsdirhashhead, nfsdircache);
75 TAILQ_HEAD(nfsdirchainhead, nfsdircache);
76
77 struct nfsdircache {
78 off_t dc_cookie; /* Own offset (key) */
79 off_t dc_blkcookie; /* Offset of block we're in */
80 LIST_ENTRY(nfsdircache) dc_hash; /* Hash chain */
81 TAILQ_ENTRY(nfsdircache) dc_chain; /* Least recently entered chn */
82 u_int32_t dc_cookie32; /* Key for 64<->32 xlate case */
83 int dc_entry; /* Entry number within block */
84 int dc_refcnt; /* Reference count */
85 int dc_flags; /* NFSDC_ flags */
86 };
87
88 #define NFSDC_INVALID 1
89
90 /*
91 * NFSDC_BLKNO: get buffer cache index
92 */
93 #define NFSDC_BLKNO(ndp) ((daddr_t)(ndp)->dc_blkcookie)
94
95 /*
96 * The nfsnode is the nfs equivalent to ufs's inode. Any similarity
97 * is purely coincidental.
98 * There is a unique nfsnode allocated for each active file,
99 * each current directory, each mounted-on file, text file, and the root.
100 * An nfsnode is 'named' by its file handle. (nget/nfs_node.c)
101 */
102
103 struct nfsnode_spec {
104 struct timespec nspec_mtim; /* a: local mtime */
105 struct timespec nspec_atim; /* a: local atime */
106 };
107
108 struct nfsnode_reg {
109 off_t nreg_pushedlo; /* c: 1st blk in commited range */
110 off_t nreg_pushedhi; /* c: Last block in range */
111 off_t nreg_pushlo; /* c: 1st block in commit range */
112 off_t nreg_pushhi; /* c: Last block in range */
113 kmutex_t nreg_commitlock; /* Serialize commits XXX */
114 int nreg_commitflags; /* c: */
115 int nreg_error; /* v: Save write error value */
116 };
117
118 struct nfsnode_dir {
119 off_t ndir_direof; /* EOF offset cache */
120 nfsuint64 ndir_cookieverf; /* Cookie verifier */
121 struct nfsdirhashhead *ndir_dircache; /* offset -> cache hash heads */
122 struct nfsdirchainhead ndir_dirchain; /* Chain of dir cookies */
123 struct timespec ndir_nctime; /* Last name cache entry */
124 unsigned ndir_dircachesize; /* Size of dir cookie cache */
125 };
126
127 struct nfsnode {
128 struct genfs_node n_gnode;
129 u_quad_t n_size; /* Current size of file */
130
131 union {
132 struct nfsnode_spec nu_spec;
133 struct nfsnode_reg nu_reg;
134 struct nfsnode_dir nu_dir;
135 } n_un1;
136
137 #define n_mtim n_un1.nu_spec.nspec_mtim
138 #define n_atim n_un1.nu_spec.nspec_atim
139
140 #define n_pushedlo n_un1.nu_reg.nreg_pushedlo
141 #define n_pushedhi n_un1.nu_reg.nreg_pushedhi
142 #define n_pushlo n_un1.nu_reg.nreg_pushlo
143 #define n_pushhi n_un1.nu_reg.nreg_pushhi
144 #define n_commitlock n_un1.nu_reg.nreg_commitlock
145 #define n_commitflags n_un1.nu_reg.nreg_commitflags
146 #define n_error n_un1.nu_reg.nreg_error
147
148 #define n_direofoffset n_un1.nu_dir.ndir_direof
149 #define n_cookieverf n_un1.nu_dir.ndir_cookieverf
150 #define n_dircache n_un1.nu_dir.ndir_dircache
151 #define n_dirchain n_un1.nu_dir.ndir_dirchain
152 #define n_nctime n_un1.nu_dir.ndir_nctime
153 #define n_dircachesize n_un1.nu_dir.ndir_dircachesize
154
155 union {
156 struct sillyrename *nf_silly; /* !VDIR: silly rename struct */
157 unsigned *ndir_dirgens; /* 32<->64bit xlate gen. no. */
158 } n_un2;
159
160 #define n_sillyrename n_un2.nf_silly
161 #define n_dirgens n_un2.ndir_dirgens
162
163 struct rb_node n_rbnode; /* red/black node */
164 nfsfh_t *n_fhp; /* NFS File Handle */
165 struct vnode *n_vnode; /* associated vnode */
166 struct lockf *n_lockf; /* Locking record of file */
167 struct timespec n_mtime; /* Prev modify time. */
168 time_t n_ctime; /* Prev create time. */
169 short n_fhsize; /* size in bytes, of fh */
170 short n_flag; /* Flag for locking.. */
171 nfsfh_t n_fh; /* Small File Handle */
172 kauth_cred_t n_rcred;
173 kauth_cred_t n_wcred;
174
175 kmutex_t n_attrlock;
176 time_t n_attrstamp; /* Attr. cache timestamp */
177 struct vattr *n_vattr; /* Vnode attribute cache */
178 time_t n_accstamp; /* Access cache timestamp */
179 uid_t n_accuid; /* Last access requester */
180 int n_accmode; /* Mode last requested */
181 int n_accerror; /* a: Error last returned */
182 unsigned int n_specflags; /* a: */
183 };
184
185 /*
186 * Values for n_commitflags
187 */
188 #define NFS_COMMIT_PUSH_VALID 0x0001 /* push range valid */
189 #define NFS_COMMIT_PUSHED_VALID 0x0002 /* pushed range valid */
190
191 /*
192 * Flags for n_flag
193 */
194 #define NFLUSHWANT 0x0001 /* Want wakeup from a flush in prog. */
195 #define NFLUSHINPROG 0x0002 /* Avoid multiple calls to vinvalbuf() */
196 #define NMODIFIED 0x0004 /* Might have a modified buffer in bio */
197 #define NTRUNCDELAYED 0x1000 /* Should be truncated later;
198 implies stale cache */
199 #define NREMOVED 0x2000 /* Has been removed */
200 #define NUSEOPENCRED 0x4000 /* Try open cred first rather than owner's */
201 #define NEOFVALID 0x8000 /* dir: n_direofoffset is valid */
202
203 #define NFS_EOFVALID(ndp) ((ndp)->n_flag & NEOFVALID)
204
205 /*
206 * n_specflags
207 */
208 #define NACC 0x0100 /* Special file accessed */
209 #define NUPD 0x0200 /* Special file updated */
210 #define NCHG 0x0400 /* Special file times changed */
211
212 /*
213 * Convert between nfsnode pointers and vnode pointers
214 */
215 #define VTONFS(vp) ((struct nfsnode *)(vp)->v_data)
216 #define NFSTOV(np) ((np)->n_vnode)
217
218 #ifdef _KERNEL
219
220 #include <sys/workqueue.h>
221 /*
222 * Silly rename structure that hangs off the nfsnode until the name
223 * can be removed by nfs_inactive()
224 */
225 struct sillyrename {
226 struct work s_work;
227 kauth_cred_t s_cred;
228 struct vnode *s_dvp;
229 long s_namlen;
230 char s_name[20];
231 };
232
233 /*
234 * Per-nfsiod datas
235 */
236 struct nfs_iod {
237 kmutex_t nid_lock;
238 kcondvar_t nid_cv;
239 LIST_ENTRY(nfs_iod) nid_idle;
240 struct nfsmount *nid_mount;
241 bool nid_exiting;
242
243 LIST_ENTRY(nfs_iod) nid_all;
244 };
245
246 LIST_HEAD(nfs_iodlist, nfs_iod);
247 extern kmutex_t nfs_iodlist_lock;
248 extern struct nfs_iodlist nfs_iodlist_idle;
249 extern struct nfs_iodlist nfs_iodlist_all;
250 extern u_long nfsdirhashmask;
251
252 /*
253 * Prototypes for NFS vnode operations
254 */
255 int nfs_lookup(void *);
256 int nfs_create(void *);
257 int nfs_mknod(void *);
258 int nfs_open(void *);
259 int nfs_close(void *);
260 int nfsspec_close(void *);
261 int nfsfifo_close(void *);
262 int nfs_access(void *);
263 int nfsspec_access(void *);
264 int nfs_getattr(void *);
265 int nfs_setattr(void *);
266 int nfs_read(void *);
267 int nfs_write(void *);
268 int nfsspec_read(void *);
269 int nfsspec_write(void *);
270 int nfsfifo_read(void *);
271 int nfsfifo_write(void *);
272 #define nfs_ioctl genfs_enoioctl
273 #define nfs_poll genfs_poll
274 #define nfs_revoke genfs_revoke
275 #define nfs_mmap genfs_mmap
276 int nfs_fsync(void *);
277 #define nfs_seek genfs_seek
278 int nfs_remove(void *);
279 int nfs_link(void *);
280 int nfs_rename(void *);
281 int nfs_mkdir(void *);
282 int nfs_rmdir(void *);
283 int nfs_symlink(void *);
284 int nfs_readdir(void *);
285 int nfs_readlink(void *);
286 #define nfs_abortop genfs_abortop
287 int nfs_inactive(void *);
288 int nfs_reclaim(void *);
289 #define nfs_lock genfs_lock
290 int nfs_unlock(void *);
291 #define nfs_islocked genfs_islocked
292 int nfs_bmap(void *);
293 int nfs_strategy(void *);
294 int nfs_print(void *);
295 int nfs_pathconf(void *);
296 int nfs_advlock(void *);
297 int nfs_getpages(void *);
298 int nfs_putpages(void *);
299 int nfs_kqfilter(void *);
300
301 extern int (**nfsv2_vnodeop_p)(void *);
302
303 #define NFS_INVALIDATE_ATTRCACHE(np) (np)->n_attrstamp = 0
304
305 #endif /* _KERNEL */
306
307 #endif
308