nfs_node.c revision 1.41.2.9 1 1.41.2.9 nathanw /* $NetBSD: nfs_node.c,v 1.41.2.9 2002/06/24 22:12:06 nathanw Exp $ */
2 1.12 cgd
3 1.1 cgd /*
4 1.9 mycroft * Copyright (c) 1989, 1993
5 1.9 mycroft * The Regents of the University of California. All rights reserved.
6 1.1 cgd *
7 1.1 cgd * This code is derived from software contributed to Berkeley by
8 1.1 cgd * Rick Macklem at The University of Guelph.
9 1.1 cgd *
10 1.1 cgd * Redistribution and use in source and binary forms, with or without
11 1.1 cgd * modification, are permitted provided that the following conditions
12 1.1 cgd * are met:
13 1.1 cgd * 1. Redistributions of source code must retain the above copyright
14 1.1 cgd * notice, this list of conditions and the following disclaimer.
15 1.1 cgd * 2. Redistributions in binary form must reproduce the above copyright
16 1.1 cgd * notice, this list of conditions and the following disclaimer in the
17 1.1 cgd * documentation and/or other materials provided with the distribution.
18 1.1 cgd * 3. All advertising materials mentioning features or use of this software
19 1.1 cgd * must display the following acknowledgement:
20 1.1 cgd * This product includes software developed by the University of
21 1.1 cgd * California, Berkeley and its contributors.
22 1.1 cgd * 4. Neither the name of the University nor the names of its contributors
23 1.1 cgd * may be used to endorse or promote products derived from this software
24 1.1 cgd * without specific prior written permission.
25 1.1 cgd *
26 1.1 cgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
27 1.1 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28 1.1 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29 1.1 cgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
30 1.1 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31 1.1 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32 1.1 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 1.1 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 1.1 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 1.1 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 1.1 cgd * SUCH DAMAGE.
37 1.1 cgd *
38 1.16 fvdl * @(#)nfs_node.c 8.6 (Berkeley) 5/22/95
39 1.1 cgd */
40 1.41.2.5 nathanw
41 1.41.2.5 nathanw #include <sys/cdefs.h>
42 1.41.2.9 nathanw __KERNEL_RCSID(0, "$NetBSD: nfs_node.c,v 1.41.2.9 2002/06/24 22:12:06 nathanw Exp $");
43 1.1 cgd
44 1.35 bjh21 #include "opt_nfs.h"
45 1.16 fvdl
46 1.4 mycroft #include <sys/param.h>
47 1.4 mycroft #include <sys/systm.h>
48 1.4 mycroft #include <sys/proc.h>
49 1.41.2.1 nathanw #include <sys/lwp.h>
50 1.4 mycroft #include <sys/mount.h>
51 1.4 mycroft #include <sys/namei.h>
52 1.4 mycroft #include <sys/vnode.h>
53 1.4 mycroft #include <sys/kernel.h>
54 1.4 mycroft #include <sys/malloc.h>
55 1.28 thorpej #include <sys/pool.h>
56 1.22 fvdl #include <sys/lock.h>
57 1.41.2.6 nathanw #include <sys/hash.h>
58 1.1 cgd
59 1.9 mycroft #include <nfs/rpcv2.h>
60 1.16 fvdl #include <nfs/nfsproto.h>
61 1.4 mycroft #include <nfs/nfs.h>
62 1.4 mycroft #include <nfs/nfsnode.h>
63 1.4 mycroft #include <nfs/nfsmount.h>
64 1.9 mycroft #include <nfs/nqnfs.h>
65 1.15 christos #include <nfs/nfs_var.h>
66 1.1 cgd
67 1.13 mycroft LIST_HEAD(nfsnodehashhead, nfsnode) *nfsnodehashtbl;
68 1.13 mycroft u_long nfsnodehash;
69 1.22 fvdl struct lock nfs_hashlock;
70 1.1 cgd
71 1.28 thorpej struct pool nfs_node_pool; /* memory pool for nfs nodes */
72 1.28 thorpej struct pool nfs_vattr_pool; /* memory pool for nfs vattrs */
73 1.28 thorpej
74 1.41 tsutsui extern int prtactive;
75 1.41 tsutsui
76 1.1 cgd #define TRUE 1
77 1.1 cgd #define FALSE 0
78 1.1 cgd
79 1.41.2.6 nathanw #define nfs_hash(x,y) hash32_buf((x), (y), HASH32_BUF_INIT)
80 1.41.2.6 nathanw
81 1.41.2.3 nathanw void nfs_gop_size(struct vnode *, off_t, off_t *);
82 1.41.2.3 nathanw int nfs_gop_alloc(struct vnode *, off_t, off_t, int, struct ucred *);
83 1.41.2.8 nathanw int nfs_gop_write(struct vnode *, struct vm_page **, int, int);
84 1.41.2.3 nathanw
85 1.41.2.3 nathanw struct genfs_ops nfs_genfsops = {
86 1.41.2.3 nathanw nfs_gop_size,
87 1.41.2.3 nathanw nfs_gop_alloc,
88 1.41.2.8 nathanw nfs_gop_write,
89 1.41.2.3 nathanw };
90 1.41.2.3 nathanw
91 1.1 cgd /*
92 1.1 cgd * Initialize hash links for nfsnodes
93 1.1 cgd * and build nfsnode free list.
94 1.1 cgd */
95 1.15 christos void
96 1.1 cgd nfs_nhinit()
97 1.1 cgd {
98 1.1 cgd
99 1.37 ad nfsnodehashtbl = hashinit(desiredvnodes, HASH_LIST, M_NFSNODE,
100 1.37 ad M_WAITOK, &nfsnodehash);
101 1.22 fvdl lockinit(&nfs_hashlock, PINOD, "nfs_hashlock", 0, 0);
102 1.28 thorpej
103 1.28 thorpej pool_init(&nfs_node_pool, sizeof(struct nfsnode), 0, 0, 0, "nfsnodepl",
104 1.41.2.8 nathanw &pool_allocator_nointr);
105 1.28 thorpej pool_init(&nfs_vattr_pool, sizeof(struct vattr), 0, 0, 0, "nfsvapl",
106 1.41.2.8 nathanw &pool_allocator_nointr);
107 1.31 jdolecek }
108 1.31 jdolecek
109 1.31 jdolecek /*
110 1.41.2.3 nathanw * Reinitialize inode hash table.
111 1.41.2.3 nathanw */
112 1.41.2.3 nathanw
113 1.41.2.3 nathanw void
114 1.41.2.3 nathanw nfs_nhreinit()
115 1.41.2.3 nathanw {
116 1.41.2.3 nathanw struct nfsnode *np;
117 1.41.2.3 nathanw struct nfsnodehashhead *oldhash, *hash;
118 1.41.2.3 nathanw u_long oldmask, mask, val;
119 1.41.2.3 nathanw int i;
120 1.41.2.3 nathanw
121 1.41.2.3 nathanw hash = hashinit(desiredvnodes, HASH_LIST, M_NFSNODE, M_WAITOK,
122 1.41.2.3 nathanw &mask);
123 1.41.2.3 nathanw
124 1.41.2.3 nathanw lockmgr(&nfs_hashlock, LK_EXCLUSIVE, NULL);
125 1.41.2.3 nathanw oldhash = nfsnodehashtbl;
126 1.41.2.3 nathanw oldmask = nfsnodehash;
127 1.41.2.3 nathanw nfsnodehashtbl = hash;
128 1.41.2.3 nathanw nfsnodehash = mask;
129 1.41.2.3 nathanw for (i = 0; i <= oldmask; i++) {
130 1.41.2.3 nathanw while ((np = LIST_FIRST(&oldhash[i])) != NULL) {
131 1.41.2.3 nathanw LIST_REMOVE(np, n_hash);
132 1.41.2.3 nathanw val = NFSNOHASH(nfs_hash(np->n_fhp, np->n_fhsize));
133 1.41.2.3 nathanw LIST_INSERT_HEAD(&hash[val], np, n_hash);
134 1.41.2.3 nathanw }
135 1.41.2.3 nathanw }
136 1.41.2.3 nathanw lockmgr(&nfs_hashlock, LK_RELEASE, NULL);
137 1.41.2.3 nathanw hashdone(oldhash, M_NFSNODE);
138 1.41.2.3 nathanw }
139 1.41.2.3 nathanw
140 1.41.2.3 nathanw /*
141 1.31 jdolecek * Free resources previoslu allocated in nfs_nhinit().
142 1.31 jdolecek */
143 1.31 jdolecek void
144 1.31 jdolecek nfs_nhdone()
145 1.31 jdolecek {
146 1.31 jdolecek hashdone(nfsnodehashtbl, M_NFSNODE);
147 1.31 jdolecek pool_destroy(&nfs_node_pool);
148 1.31 jdolecek pool_destroy(&nfs_vattr_pool);
149 1.1 cgd }
150 1.1 cgd
151 1.1 cgd /*
152 1.1 cgd * Look up a vnode/nfsnode by file handle.
153 1.1 cgd * Callers must check for mount points!!
154 1.1 cgd * In all cases, a pointer to a
155 1.1 cgd * nfsnode structure is returned.
156 1.1 cgd */
157 1.15 christos int
158 1.16 fvdl nfs_nget(mntp, fhp, fhsize, npp)
159 1.1 cgd struct mount *mntp;
160 1.33 augustss nfsfh_t *fhp;
161 1.16 fvdl int fhsize;
162 1.1 cgd struct nfsnode **npp;
163 1.1 cgd {
164 1.33 augustss struct nfsnode *np;
165 1.13 mycroft struct nfsnodehashhead *nhpp;
166 1.33 augustss struct vnode *vp;
167 1.1 cgd struct vnode *nvp;
168 1.1 cgd int error;
169 1.1 cgd
170 1.41.2.3 nathanw nhpp = &nfsnodehashtbl[NFSNOHASH(nfs_hash(fhp, fhsize))];
171 1.1 cgd loop:
172 1.41.2.3 nathanw LIST_FOREACH(np, nhpp, n_hash) {
173 1.16 fvdl if (mntp != NFSTOV(np)->v_mount || np->n_fhsize != fhsize ||
174 1.38 chs memcmp(fhp, np->n_fhp, fhsize))
175 1.1 cgd continue;
176 1.1 cgd vp = NFSTOV(np);
177 1.26 fvdl if (vget(vp, LK_EXCLUSIVE))
178 1.1 cgd goto loop;
179 1.1 cgd *npp = np;
180 1.1 cgd return(0);
181 1.1 cgd }
182 1.26 fvdl if (lockmgr(&nfs_hashlock, LK_EXCLUSIVE|LK_SLEEPFAIL, 0))
183 1.22 fvdl goto loop;
184 1.15 christos error = getnewvnode(VT_NFS, mntp, nfsv2_vnodeop_p, &nvp);
185 1.15 christos if (error) {
186 1.1 cgd *npp = 0;
187 1.26 fvdl lockmgr(&nfs_hashlock, LK_RELEASE, 0);
188 1.1 cgd return (error);
189 1.1 cgd }
190 1.1 cgd vp = nvp;
191 1.28 thorpej np = pool_get(&nfs_node_pool, PR_WAITOK);
192 1.38 chs memset(np, 0, sizeof *np);
193 1.36 fvdl lockinit(&np->n_commitlock, PINOD, "nfsclock", 0, 0);
194 1.9 mycroft vp->v_data = np;
195 1.1 cgd np->n_vnode = vp;
196 1.41.2.3 nathanw genfs_node_init(vp, &nfs_genfsops);
197 1.38 chs
198 1.1 cgd /*
199 1.1 cgd * Insert the nfsnode in the hash queue for its new file handle
200 1.1 cgd */
201 1.41.2.3 nathanw
202 1.13 mycroft LIST_INSERT_HEAD(nhpp, np, n_hash);
203 1.16 fvdl if (fhsize > NFS_SMALLFH) {
204 1.34 thorpej np->n_fhp = malloc(fhsize, M_NFSBIGFH, M_WAITOK);
205 1.16 fvdl } else
206 1.16 fvdl np->n_fhp = &np->n_fh;
207 1.38 chs memcpy(np->n_fhp, fhp, fhsize);
208 1.16 fvdl np->n_fhsize = fhsize;
209 1.30 fvdl np->n_accstamp = -1;
210 1.28 thorpej np->n_vattr = pool_get(&nfs_vattr_pool, PR_WAITOK);
211 1.41.2.3 nathanw lockmgr(&vp->v_lock, LK_EXCLUSIVE, NULL);
212 1.41.2.3 nathanw lockmgr(&nfs_hashlock, LK_RELEASE, NULL);
213 1.41.2.9 nathanw error = VOP_GETATTR(vp, np->n_vattr, curproc->p_ucred,
214 1.41.2.9 nathanw curproc);
215 1.38 chs if (error) {
216 1.41.2.7 nathanw vput(vp);
217 1.38 chs return error;
218 1.38 chs }
219 1.38 chs uvm_vnp_setsize(vp, np->n_vattr->va_size);
220 1.1 cgd *npp = np;
221 1.1 cgd return (0);
222 1.1 cgd }
223 1.1 cgd
224 1.15 christos int
225 1.15 christos nfs_inactive(v)
226 1.15 christos void *v;
227 1.15 christos {
228 1.9 mycroft struct vop_inactive_args /* {
229 1.9 mycroft struct vnode *a_vp;
230 1.16 fvdl struct proc *a_p;
231 1.15 christos } */ *ap = v;
232 1.33 augustss struct nfsnode *np;
233 1.33 augustss struct sillyrename *sp;
234 1.26 fvdl struct proc *p = ap->a_p;
235 1.40 fvdl struct vnode *vp = ap->a_vp;
236 1.1 cgd
237 1.40 fvdl np = VTONFS(vp);
238 1.40 fvdl if (prtactive && vp->v_usecount != 0)
239 1.40 fvdl vprint("nfs_inactive: pushing active", vp);
240 1.40 fvdl if (vp->v_type != VDIR) {
241 1.16 fvdl sp = np->n_sillyrename;
242 1.18 fvdl np->n_sillyrename = (struct sillyrename *)0;
243 1.18 fvdl } else
244 1.41.2.2 nathanw sp = NULL;
245 1.41.2.2 nathanw if (sp != NULL)
246 1.40 fvdl nfs_vinvalbuf(vp, 0, sp->s_cred, p, 1);
247 1.41.2.2 nathanw np->n_flag &= (NMODIFIED | NFLUSHINPROG | NFLUSHWANT | NQNFSEVICTED |
248 1.41.2.2 nathanw NQNFSNONCACHE | NQNFSWRITE);
249 1.41.2.2 nathanw VOP_UNLOCK(vp, 0);
250 1.41.2.2 nathanw if (sp != NULL) {
251 1.19 fvdl
252 1.19 fvdl /*
253 1.1 cgd * Remove the silly file that was rename'd earlier
254 1.1 cgd */
255 1.40 fvdl
256 1.39 fvdl vn_lock(sp->s_dvp, LK_EXCLUSIVE | LK_RETRY);
257 1.9 mycroft nfs_removeit(sp);
258 1.1 cgd crfree(sp->s_cred);
259 1.39 fvdl vput(sp->s_dvp);
260 1.38 chs FREE(sp, M_NFSREQ);
261 1.1 cgd }
262 1.1 cgd return (0);
263 1.1 cgd }
264 1.1 cgd
265 1.1 cgd /*
266 1.1 cgd * Reclaim an nfsnode so that it can be used for other purposes.
267 1.1 cgd */
268 1.15 christos int
269 1.15 christos nfs_reclaim(v)
270 1.15 christos void *v;
271 1.15 christos {
272 1.9 mycroft struct vop_reclaim_args /* {
273 1.9 mycroft struct vnode *a_vp;
274 1.15 christos } */ *ap = v;
275 1.33 augustss struct vnode *vp = ap->a_vp;
276 1.33 augustss struct nfsnode *np = VTONFS(vp);
277 1.33 augustss struct nfsmount *nmp = VFSTONFS(vp->v_mount);
278 1.1 cgd
279 1.1 cgd if (prtactive && vp->v_usecount != 0)
280 1.1 cgd vprint("nfs_reclaim: pushing active", vp);
281 1.16 fvdl
282 1.13 mycroft LIST_REMOVE(np, n_hash);
283 1.9 mycroft
284 1.9 mycroft /*
285 1.9 mycroft * For nqnfs, take it off the timer queue as required.
286 1.9 mycroft */
287 1.13 mycroft if ((nmp->nm_flag & NFSMNT_NQNFS) && np->n_timer.cqe_next != 0) {
288 1.13 mycroft CIRCLEQ_REMOVE(&nmp->nm_timerhead, np, n_timer);
289 1.9 mycroft }
290 1.16 fvdl
291 1.16 fvdl /*
292 1.16 fvdl * Free up any directory cookie structures and
293 1.16 fvdl * large file handle structures that might be associated with
294 1.16 fvdl * this nfs node.
295 1.16 fvdl */
296 1.23 fvdl if (vp->v_type == VDIR && np->n_dircache) {
297 1.24 fvdl nfs_invaldircache(vp, 1);
298 1.23 fvdl FREE(np->n_dircache, M_NFSDIROFF);
299 1.16 fvdl }
300 1.16 fvdl if (np->n_fhsize > NFS_SMALLFH) {
301 1.38 chs free(np->n_fhp, M_NFSBIGFH);
302 1.16 fvdl }
303 1.16 fvdl
304 1.28 thorpej pool_put(&nfs_vattr_pool, np->n_vattr);
305 1.38 chs if (np->n_rcred) {
306 1.38 chs crfree(np->n_rcred);
307 1.38 chs }
308 1.38 chs if (np->n_wcred) {
309 1.38 chs crfree(np->n_wcred);
310 1.38 chs }
311 1.1 cgd cache_purge(vp);
312 1.28 thorpej pool_put(&nfs_node_pool, vp->v_data);
313 1.38 chs vp->v_data = NULL;
314 1.1 cgd return (0);
315 1.41.2.3 nathanw }
316 1.41.2.3 nathanw
317 1.41.2.3 nathanw void
318 1.41.2.3 nathanw nfs_gop_size(struct vnode *vp, off_t size, off_t *eobp)
319 1.41.2.3 nathanw {
320 1.41.2.3 nathanw *eobp = MAX(size, vp->v_size);
321 1.41.2.3 nathanw }
322 1.41.2.3 nathanw
323 1.41.2.3 nathanw int
324 1.41.2.3 nathanw nfs_gop_alloc(struct vnode *vp, off_t off, off_t len, int flags,
325 1.41.2.3 nathanw struct ucred *cred)
326 1.41.2.3 nathanw {
327 1.41.2.3 nathanw return 0;
328 1.41.2.8 nathanw }
329 1.41.2.8 nathanw
330 1.41.2.8 nathanw int
331 1.41.2.8 nathanw nfs_gop_write(struct vnode *vp, struct vm_page **pgs, int npages, int flags)
332 1.41.2.8 nathanw {
333 1.41.2.8 nathanw int i;
334 1.41.2.8 nathanw
335 1.41.2.8 nathanw for (i = 0; i < npages; i++) {
336 1.41.2.8 nathanw pmap_page_protect(pgs[i], VM_PROT_READ);
337 1.41.2.8 nathanw }
338 1.41.2.8 nathanw return genfs_gop_write(vp, pgs, npages, flags);
339 1.1 cgd }
340