nfs_clvnops.c revision 244042
1/*-
2 * Copyright (c) 1989, 1993
3 *	The Regents of the University of California.  All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * Rick Macklem at The University of Guelph.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
10 * are met:
11 * 1. Redistributions of source code must retain the above copyright
12 *    notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 *    notice, this list of conditions and the following disclaimer in the
15 *    documentation and/or other materials provided with the distribution.
16 * 4. Neither the name of the University nor the names of its contributors
17 *    may be used to endorse or promote products derived from this software
18 *    without specific prior written permission.
19 *
20 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 * SUCH DAMAGE.
31 *
32 *	from nfs_vnops.c	8.16 (Berkeley) 5/27/95
33 */
34
35#include <sys/cdefs.h>
36__FBSDID("$FreeBSD: head/sys/fs/nfsclient/nfs_clvnops.c 244042 2012-12-08 22:52:39Z rmacklem $");
37
38/*
39 * vnode op calls for Sun NFS version 2, 3 and 4
40 */
41
42#include "opt_kdtrace.h"
43#include "opt_inet.h"
44
45#include <sys/param.h>
46#include <sys/kernel.h>
47#include <sys/systm.h>
48#include <sys/resourcevar.h>
49#include <sys/proc.h>
50#include <sys/mount.h>
51#include <sys/bio.h>
52#include <sys/buf.h>
53#include <sys/jail.h>
54#include <sys/malloc.h>
55#include <sys/mbuf.h>
56#include <sys/namei.h>
57#include <sys/socket.h>
58#include <sys/vnode.h>
59#include <sys/dirent.h>
60#include <sys/fcntl.h>
61#include <sys/lockf.h>
62#include <sys/stat.h>
63#include <sys/sysctl.h>
64#include <sys/signalvar.h>
65
66#include <vm/vm.h>
67#include <vm/vm_extern.h>
68#include <vm/vm_object.h>
69
70#include <fs/nfs/nfsport.h>
71#include <fs/nfsclient/nfsnode.h>
72#include <fs/nfsclient/nfsmount.h>
73#include <fs/nfsclient/nfs.h>
74#include <fs/nfsclient/nfs_kdtrace.h>
75
76#include <net/if.h>
77#include <netinet/in.h>
78#include <netinet/in_var.h>
79
80#include <nfs/nfs_lock.h>
81
82#ifdef KDTRACE_HOOKS
83#include <sys/dtrace_bsd.h>
84
85dtrace_nfsclient_accesscache_flush_probe_func_t
86		dtrace_nfscl_accesscache_flush_done_probe;
87uint32_t	nfscl_accesscache_flush_done_id;
88
89dtrace_nfsclient_accesscache_get_probe_func_t
90		dtrace_nfscl_accesscache_get_hit_probe,
91		dtrace_nfscl_accesscache_get_miss_probe;
92uint32_t	nfscl_accesscache_get_hit_id;
93uint32_t	nfscl_accesscache_get_miss_id;
94
95dtrace_nfsclient_accesscache_load_probe_func_t
96		dtrace_nfscl_accesscache_load_done_probe;
97uint32_t	nfscl_accesscache_load_done_id;
98#endif /* !KDTRACE_HOOKS */
99
100/* Defs */
101#define	TRUE	1
102#define	FALSE	0
103
104extern struct nfsstats newnfsstats;
105extern int nfsrv_useacl;
106extern int nfscl_debuglevel;
107MALLOC_DECLARE(M_NEWNFSREQ);
108
109/*
110 * Ifdef for FreeBSD-current merged buffer cache. It is unfortunate that these
111 * calls are not in getblk() and brelse() so that they would not be necessary
112 * here.
113 */
114#ifndef B_VMIO
115#define	vfs_busy_pages(bp, f)
116#endif
117
118static vop_read_t	nfsfifo_read;
119static vop_write_t	nfsfifo_write;
120static vop_close_t	nfsfifo_close;
121static int	nfs_setattrrpc(struct vnode *, struct vattr *, struct ucred *,
122		    struct thread *);
123static vop_lookup_t	nfs_lookup;
124static vop_create_t	nfs_create;
125static vop_mknod_t	nfs_mknod;
126static vop_open_t	nfs_open;
127static vop_pathconf_t	nfs_pathconf;
128static vop_close_t	nfs_close;
129static vop_access_t	nfs_access;
130static vop_getattr_t	nfs_getattr;
131static vop_setattr_t	nfs_setattr;
132static vop_read_t	nfs_read;
133static vop_fsync_t	nfs_fsync;
134static vop_remove_t	nfs_remove;
135static vop_link_t	nfs_link;
136static vop_rename_t	nfs_rename;
137static vop_mkdir_t	nfs_mkdir;
138static vop_rmdir_t	nfs_rmdir;
139static vop_symlink_t	nfs_symlink;
140static vop_readdir_t	nfs_readdir;
141static vop_strategy_t	nfs_strategy;
142static vop_lock1_t	nfs_lock1;
143static	int	nfs_lookitup(struct vnode *, char *, int,
144		    struct ucred *, struct thread *, struct nfsnode **);
145static	int	nfs_sillyrename(struct vnode *, struct vnode *,
146		    struct componentname *);
147static vop_access_t	nfsspec_access;
148static vop_readlink_t	nfs_readlink;
149static vop_print_t	nfs_print;
150static vop_advlock_t	nfs_advlock;
151static vop_advlockasync_t nfs_advlockasync;
152static vop_getacl_t nfs_getacl;
153static vop_setacl_t nfs_setacl;
154
155/*
156 * Global vfs data structures for nfs
157 */
158struct vop_vector newnfs_vnodeops = {
159	.vop_default =		&default_vnodeops,
160	.vop_access =		nfs_access,
161	.vop_advlock =		nfs_advlock,
162	.vop_advlockasync =	nfs_advlockasync,
163	.vop_close =		nfs_close,
164	.vop_create =		nfs_create,
165	.vop_fsync =		nfs_fsync,
166	.vop_getattr =		nfs_getattr,
167	.vop_getpages =		ncl_getpages,
168	.vop_putpages =		ncl_putpages,
169	.vop_inactive =		ncl_inactive,
170	.vop_link =		nfs_link,
171	.vop_lock1 = 		nfs_lock1,
172	.vop_lookup =		nfs_lookup,
173	.vop_mkdir =		nfs_mkdir,
174	.vop_mknod =		nfs_mknod,
175	.vop_open =		nfs_open,
176	.vop_pathconf =		nfs_pathconf,
177	.vop_print =		nfs_print,
178	.vop_read =		nfs_read,
179	.vop_readdir =		nfs_readdir,
180	.vop_readlink =		nfs_readlink,
181	.vop_reclaim =		ncl_reclaim,
182	.vop_remove =		nfs_remove,
183	.vop_rename =		nfs_rename,
184	.vop_rmdir =		nfs_rmdir,
185	.vop_setattr =		nfs_setattr,
186	.vop_strategy =		nfs_strategy,
187	.vop_symlink =		nfs_symlink,
188	.vop_write =		ncl_write,
189	.vop_getacl =		nfs_getacl,
190	.vop_setacl =		nfs_setacl,
191};
192
193struct vop_vector newnfs_fifoops = {
194	.vop_default =		&fifo_specops,
195	.vop_access =		nfsspec_access,
196	.vop_close =		nfsfifo_close,
197	.vop_fsync =		nfs_fsync,
198	.vop_getattr =		nfs_getattr,
199	.vop_inactive =		ncl_inactive,
200	.vop_print =		nfs_print,
201	.vop_read =		nfsfifo_read,
202	.vop_reclaim =		ncl_reclaim,
203	.vop_setattr =		nfs_setattr,
204	.vop_write =		nfsfifo_write,
205};
206
207static int nfs_mknodrpc(struct vnode *dvp, struct vnode **vpp,
208    struct componentname *cnp, struct vattr *vap);
209static int nfs_removerpc(struct vnode *dvp, struct vnode *vp, char *name,
210    int namelen, struct ucred *cred, struct thread *td);
211static int nfs_renamerpc(struct vnode *fdvp, struct vnode *fvp,
212    char *fnameptr, int fnamelen, struct vnode *tdvp, struct vnode *tvp,
213    char *tnameptr, int tnamelen, struct ucred *cred, struct thread *td);
214static int nfs_renameit(struct vnode *sdvp, struct vnode *svp,
215    struct componentname *scnp, struct sillyrename *sp);
216
217/*
218 * Global variables
219 */
220#define	DIRHDSIZ	(sizeof (struct dirent) - (MAXNAMLEN + 1))
221
222SYSCTL_DECL(_vfs_nfs);
223
224static int	nfsaccess_cache_timeout = NFS_MAXATTRTIMO;
225SYSCTL_INT(_vfs_nfs, OID_AUTO, access_cache_timeout, CTLFLAG_RW,
226	   &nfsaccess_cache_timeout, 0, "NFS ACCESS cache timeout");
227
228static int	nfs_prime_access_cache = 0;
229SYSCTL_INT(_vfs_nfs, OID_AUTO, prime_access_cache, CTLFLAG_RW,
230	   &nfs_prime_access_cache, 0,
231	   "Prime NFS ACCESS cache when fetching attributes");
232
233static int	newnfs_commit_on_close = 0;
234SYSCTL_INT(_vfs_nfs, OID_AUTO, commit_on_close, CTLFLAG_RW,
235    &newnfs_commit_on_close, 0, "write+commit on close, else only write");
236
237static int	nfs_clean_pages_on_close = 1;
238SYSCTL_INT(_vfs_nfs, OID_AUTO, clean_pages_on_close, CTLFLAG_RW,
239	   &nfs_clean_pages_on_close, 0, "NFS clean dirty pages on close");
240
241int newnfs_directio_enable = 0;
242SYSCTL_INT(_vfs_nfs, OID_AUTO, nfs_directio_enable, CTLFLAG_RW,
243	   &newnfs_directio_enable, 0, "Enable NFS directio");
244
245int nfs_keep_dirty_on_error;
246SYSCTL_INT(_vfs_nfs, OID_AUTO, nfs_keep_dirty_on_error, CTLFLAG_RW,
247    &nfs_keep_dirty_on_error, 0, "Retry pageout if error returned");
248
249/*
250 * This sysctl allows other processes to mmap a file that has been opened
251 * O_DIRECT by a process.  In general, having processes mmap the file while
252 * Direct IO is in progress can lead to Data Inconsistencies.  But, we allow
253 * this by default to prevent DoS attacks - to prevent a malicious user from
254 * opening up files O_DIRECT preventing other users from mmap'ing these
255 * files.  "Protected" environments where stricter consistency guarantees are
256 * required can disable this knob.  The process that opened the file O_DIRECT
257 * cannot mmap() the file, because mmap'ed IO on an O_DIRECT open() is not
258 * meaningful.
259 */
260int newnfs_directio_allow_mmap = 1;
261SYSCTL_INT(_vfs_nfs, OID_AUTO, nfs_directio_allow_mmap, CTLFLAG_RW,
262	   &newnfs_directio_allow_mmap, 0, "Enable mmaped IO on file with O_DIRECT opens");
263
264#if 0
265SYSCTL_INT(_vfs_nfs, OID_AUTO, access_cache_hits, CTLFLAG_RD,
266	   &newnfsstats.accesscache_hits, 0, "NFS ACCESS cache hit count");
267
268SYSCTL_INT(_vfs_nfs, OID_AUTO, access_cache_misses, CTLFLAG_RD,
269	   &newnfsstats.accesscache_misses, 0, "NFS ACCESS cache miss count");
270#endif
271
272#define	NFSACCESS_ALL (NFSACCESS_READ | NFSACCESS_MODIFY		\
273			 | NFSACCESS_EXTEND | NFSACCESS_EXECUTE	\
274			 | NFSACCESS_DELETE | NFSACCESS_LOOKUP)
275
276/*
277 * SMP Locking Note :
278 * The list of locks after the description of the lock is the ordering
279 * of other locks acquired with the lock held.
280 * np->n_mtx : Protects the fields in the nfsnode.
281       VM Object Lock
282       VI_MTX (acquired indirectly)
283 * nmp->nm_mtx : Protects the fields in the nfsmount.
284       rep->r_mtx
285 * ncl_iod_mutex : Global lock, protects shared nfsiod state.
286 * nfs_reqq_mtx : Global lock, protects the nfs_reqq list.
287       nmp->nm_mtx
288       rep->r_mtx
289 * rep->r_mtx : Protects the fields in an nfsreq.
290 */
291
292static int
293nfs34_access_otw(struct vnode *vp, int wmode, struct thread *td,
294    struct ucred *cred, u_int32_t *retmode)
295{
296	int error = 0, attrflag, i, lrupos;
297	u_int32_t rmode;
298	struct nfsnode *np = VTONFS(vp);
299	struct nfsvattr nfsva;
300
301	error = nfsrpc_accessrpc(vp, wmode, cred, td, &nfsva, &attrflag,
302	    &rmode, NULL);
303	if (attrflag)
304		(void) nfscl_loadattrcache(&vp, &nfsva, NULL, NULL, 0, 1);
305	if (!error) {
306		lrupos = 0;
307		mtx_lock(&np->n_mtx);
308		for (i = 0; i < NFS_ACCESSCACHESIZE; i++) {
309			if (np->n_accesscache[i].uid == cred->cr_uid) {
310				np->n_accesscache[i].mode = rmode;
311				np->n_accesscache[i].stamp = time_second;
312				break;
313			}
314			if (i > 0 && np->n_accesscache[i].stamp <
315			    np->n_accesscache[lrupos].stamp)
316				lrupos = i;
317		}
318		if (i == NFS_ACCESSCACHESIZE) {
319			np->n_accesscache[lrupos].uid = cred->cr_uid;
320			np->n_accesscache[lrupos].mode = rmode;
321			np->n_accesscache[lrupos].stamp = time_second;
322		}
323		mtx_unlock(&np->n_mtx);
324		if (retmode != NULL)
325			*retmode = rmode;
326		KDTRACE_NFS_ACCESSCACHE_LOAD_DONE(vp, cred->cr_uid, rmode, 0);
327	} else if (NFS_ISV4(vp)) {
328		error = nfscl_maperr(td, error, (uid_t)0, (gid_t)0);
329	}
330#ifdef KDTRACE_HOOKS
331	if (error != 0)
332		KDTRACE_NFS_ACCESSCACHE_LOAD_DONE(vp, cred->cr_uid, 0,
333		    error);
334#endif
335	return (error);
336}
337
338/*
339 * nfs access vnode op.
340 * For nfs version 2, just return ok. File accesses may fail later.
341 * For nfs version 3, use the access rpc to check accessibility. If file modes
342 * are changed on the server, accesses might still fail later.
343 */
344static int
345nfs_access(struct vop_access_args *ap)
346{
347	struct vnode *vp = ap->a_vp;
348	int error = 0, i, gotahit;
349	u_int32_t mode, wmode, rmode;
350	int v34 = NFS_ISV34(vp);
351	struct nfsnode *np = VTONFS(vp);
352
353	/*
354	 * Disallow write attempts on filesystems mounted read-only;
355	 * unless the file is a socket, fifo, or a block or character
356	 * device resident on the filesystem.
357	 */
358	if ((ap->a_accmode & (VWRITE | VAPPEND | VWRITE_NAMED_ATTRS |
359	    VDELETE_CHILD | VWRITE_ATTRIBUTES | VDELETE | VWRITE_ACL |
360	    VWRITE_OWNER)) != 0 && (vp->v_mount->mnt_flag & MNT_RDONLY) != 0) {
361		switch (vp->v_type) {
362		case VREG:
363		case VDIR:
364		case VLNK:
365			return (EROFS);
366		default:
367			break;
368		}
369	}
370	/*
371	 * For nfs v3 or v4, check to see if we have done this recently, and if
372	 * so return our cached result instead of making an ACCESS call.
373	 * If not, do an access rpc, otherwise you are stuck emulating
374	 * ufs_access() locally using the vattr. This may not be correct,
375	 * since the server may apply other access criteria such as
376	 * client uid-->server uid mapping that we do not know about.
377	 */
378	if (v34) {
379		if (ap->a_accmode & VREAD)
380			mode = NFSACCESS_READ;
381		else
382			mode = 0;
383		if (vp->v_type != VDIR) {
384			if (ap->a_accmode & VWRITE)
385				mode |= (NFSACCESS_MODIFY | NFSACCESS_EXTEND);
386			if (ap->a_accmode & VAPPEND)
387				mode |= NFSACCESS_EXTEND;
388			if (ap->a_accmode & VEXEC)
389				mode |= NFSACCESS_EXECUTE;
390			if (ap->a_accmode & VDELETE)
391				mode |= NFSACCESS_DELETE;
392		} else {
393			if (ap->a_accmode & VWRITE)
394				mode |= (NFSACCESS_MODIFY | NFSACCESS_EXTEND);
395			if (ap->a_accmode & VAPPEND)
396				mode |= NFSACCESS_EXTEND;
397			if (ap->a_accmode & VEXEC)
398				mode |= NFSACCESS_LOOKUP;
399			if (ap->a_accmode & VDELETE)
400				mode |= NFSACCESS_DELETE;
401			if (ap->a_accmode & VDELETE_CHILD)
402				mode |= NFSACCESS_MODIFY;
403		}
404		/* XXX safety belt, only make blanket request if caching */
405		if (nfsaccess_cache_timeout > 0) {
406			wmode = NFSACCESS_READ | NFSACCESS_MODIFY |
407				NFSACCESS_EXTEND | NFSACCESS_EXECUTE |
408				NFSACCESS_DELETE | NFSACCESS_LOOKUP;
409		} else {
410			wmode = mode;
411		}
412
413		/*
414		 * Does our cached result allow us to give a definite yes to
415		 * this request?
416		 */
417		gotahit = 0;
418		mtx_lock(&np->n_mtx);
419		for (i = 0; i < NFS_ACCESSCACHESIZE; i++) {
420			if (ap->a_cred->cr_uid == np->n_accesscache[i].uid) {
421			    if (time_second < (np->n_accesscache[i].stamp
422				+ nfsaccess_cache_timeout) &&
423				(np->n_accesscache[i].mode & mode) == mode) {
424				NFSINCRGLOBAL(newnfsstats.accesscache_hits);
425				gotahit = 1;
426			    }
427			    break;
428			}
429		}
430		mtx_unlock(&np->n_mtx);
431#ifdef KDTRACE_HOOKS
432		if (gotahit != 0)
433			KDTRACE_NFS_ACCESSCACHE_GET_HIT(vp,
434			    ap->a_cred->cr_uid, mode);
435		else
436			KDTRACE_NFS_ACCESSCACHE_GET_MISS(vp,
437			    ap->a_cred->cr_uid, mode);
438#endif
439		if (gotahit == 0) {
440			/*
441			 * Either a no, or a don't know.  Go to the wire.
442			 */
443			NFSINCRGLOBAL(newnfsstats.accesscache_misses);
444		        error = nfs34_access_otw(vp, wmode, ap->a_td,
445			    ap->a_cred, &rmode);
446			if (!error &&
447			    (rmode & mode) != mode)
448				error = EACCES;
449		}
450		return (error);
451	} else {
452		if ((error = nfsspec_access(ap)) != 0) {
453			return (error);
454		}
455		/*
456		 * Attempt to prevent a mapped root from accessing a file
457		 * which it shouldn't.  We try to read a byte from the file
458		 * if the user is root and the file is not zero length.
459		 * After calling nfsspec_access, we should have the correct
460		 * file size cached.
461		 */
462		mtx_lock(&np->n_mtx);
463		if (ap->a_cred->cr_uid == 0 && (ap->a_accmode & VREAD)
464		    && VTONFS(vp)->n_size > 0) {
465			struct iovec aiov;
466			struct uio auio;
467			char buf[1];
468
469			mtx_unlock(&np->n_mtx);
470			aiov.iov_base = buf;
471			aiov.iov_len = 1;
472			auio.uio_iov = &aiov;
473			auio.uio_iovcnt = 1;
474			auio.uio_offset = 0;
475			auio.uio_resid = 1;
476			auio.uio_segflg = UIO_SYSSPACE;
477			auio.uio_rw = UIO_READ;
478			auio.uio_td = ap->a_td;
479
480			if (vp->v_type == VREG)
481				error = ncl_readrpc(vp, &auio, ap->a_cred);
482			else if (vp->v_type == VDIR) {
483				char* bp;
484				bp = malloc(NFS_DIRBLKSIZ, M_TEMP, M_WAITOK);
485				aiov.iov_base = bp;
486				aiov.iov_len = auio.uio_resid = NFS_DIRBLKSIZ;
487				error = ncl_readdirrpc(vp, &auio, ap->a_cred,
488				    ap->a_td);
489				free(bp, M_TEMP);
490			} else if (vp->v_type == VLNK)
491				error = ncl_readlinkrpc(vp, &auio, ap->a_cred);
492			else
493				error = EACCES;
494		} else
495			mtx_unlock(&np->n_mtx);
496		return (error);
497	}
498}
499
500
501/*
502 * nfs open vnode op
503 * Check to see if the type is ok
504 * and that deletion is not in progress.
505 * For paged in text files, you will need to flush the page cache
506 * if consistency is lost.
507 */
508/* ARGSUSED */
509static int
510nfs_open(struct vop_open_args *ap)
511{
512	struct vnode *vp = ap->a_vp;
513	struct nfsnode *np = VTONFS(vp);
514	struct vattr vattr;
515	int error;
516	int fmode = ap->a_mode;
517	struct ucred *cred;
518
519	if (vp->v_type != VREG && vp->v_type != VDIR && vp->v_type != VLNK)
520		return (EOPNOTSUPP);
521
522	/*
523	 * For NFSv4, we need to do the Open Op before cache validation,
524	 * so that we conform to RFC3530 Sec. 9.3.1.
525	 */
526	if (NFS_ISV4(vp)) {
527		error = nfsrpc_open(vp, fmode, ap->a_cred, ap->a_td);
528		if (error) {
529			error = nfscl_maperr(ap->a_td, error, (uid_t)0,
530			    (gid_t)0);
531			return (error);
532		}
533	}
534
535	/*
536	 * Now, if this Open will be doing reading, re-validate/flush the
537	 * cache, so that Close/Open coherency is maintained.
538	 */
539	mtx_lock(&np->n_mtx);
540	if (np->n_flag & NMODIFIED) {
541		mtx_unlock(&np->n_mtx);
542		error = ncl_vinvalbuf(vp, V_SAVE, ap->a_td, 1);
543		if (error == EINTR || error == EIO) {
544			if (NFS_ISV4(vp))
545				(void) nfsrpc_close(vp, 0, ap->a_td);
546			return (error);
547		}
548		mtx_lock(&np->n_mtx);
549		np->n_attrstamp = 0;
550		KDTRACE_NFS_ATTRCACHE_FLUSH_DONE(vp);
551		if (vp->v_type == VDIR)
552			np->n_direofoffset = 0;
553		mtx_unlock(&np->n_mtx);
554		error = VOP_GETATTR(vp, &vattr, ap->a_cred);
555		if (error) {
556			if (NFS_ISV4(vp))
557				(void) nfsrpc_close(vp, 0, ap->a_td);
558			return (error);
559		}
560		mtx_lock(&np->n_mtx);
561		np->n_mtime = vattr.va_mtime;
562		if (NFS_ISV4(vp))
563			np->n_change = vattr.va_filerev;
564	} else {
565		mtx_unlock(&np->n_mtx);
566		error = VOP_GETATTR(vp, &vattr, ap->a_cred);
567		if (error) {
568			if (NFS_ISV4(vp))
569				(void) nfsrpc_close(vp, 0, ap->a_td);
570			return (error);
571		}
572		mtx_lock(&np->n_mtx);
573		if ((NFS_ISV4(vp) && np->n_change != vattr.va_filerev) ||
574		    NFS_TIMESPEC_COMPARE(&np->n_mtime, &vattr.va_mtime)) {
575			if (vp->v_type == VDIR)
576				np->n_direofoffset = 0;
577			mtx_unlock(&np->n_mtx);
578			error = ncl_vinvalbuf(vp, V_SAVE, ap->a_td, 1);
579			if (error == EINTR || error == EIO) {
580				if (NFS_ISV4(vp))
581					(void) nfsrpc_close(vp, 0, ap->a_td);
582				return (error);
583			}
584			mtx_lock(&np->n_mtx);
585			np->n_mtime = vattr.va_mtime;
586			if (NFS_ISV4(vp))
587				np->n_change = vattr.va_filerev;
588		}
589	}
590
591	/*
592	 * If the object has >= 1 O_DIRECT active opens, we disable caching.
593	 */
594	if (newnfs_directio_enable && (fmode & O_DIRECT) &&
595	    (vp->v_type == VREG)) {
596		if (np->n_directio_opens == 0) {
597			mtx_unlock(&np->n_mtx);
598			error = ncl_vinvalbuf(vp, V_SAVE, ap->a_td, 1);
599			if (error) {
600				if (NFS_ISV4(vp))
601					(void) nfsrpc_close(vp, 0, ap->a_td);
602				return (error);
603			}
604			mtx_lock(&np->n_mtx);
605			np->n_flag |= NNONCACHE;
606		}
607		np->n_directio_opens++;
608	}
609
610	/* If opened for writing via NFSv4.1 or later, mark that for pNFS. */
611	if (NFSHASPNFS(VFSTONFS(vp->v_mount)) && (fmode & FWRITE) != 0)
612		np->n_flag |= NWRITEOPENED;
613
614	/*
615	 * If this is an open for writing, capture a reference to the
616	 * credentials, so they can be used by ncl_putpages(). Using
617	 * these write credentials is preferable to the credentials of
618	 * whatever thread happens to be doing the VOP_PUTPAGES() since
619	 * the write RPCs are less likely to fail with EACCES.
620	 */
621	if ((fmode & FWRITE) != 0) {
622		cred = np->n_writecred;
623		np->n_writecred = crhold(ap->a_cred);
624	} else
625		cred = NULL;
626	mtx_unlock(&np->n_mtx);
627
628	if (cred != NULL)
629		crfree(cred);
630	vnode_create_vobject(vp, vattr.va_size, ap->a_td);
631	return (0);
632}
633
634/*
635 * nfs close vnode op
636 * What an NFS client should do upon close after writing is a debatable issue.
637 * Most NFS clients push delayed writes to the server upon close, basically for
638 * two reasons:
639 * 1 - So that any write errors may be reported back to the client process
640 *     doing the close system call. By far the two most likely errors are
641 *     NFSERR_NOSPC and NFSERR_DQUOT to indicate space allocation failure.
642 * 2 - To put a worst case upper bound on cache inconsistency between
643 *     multiple clients for the file.
644 * There is also a consistency problem for Version 2 of the protocol w.r.t.
645 * not being able to tell if other clients are writing a file concurrently,
646 * since there is no way of knowing if the changed modify time in the reply
647 * is only due to the write for this client.
648 * (NFS Version 3 provides weak cache consistency data in the reply that
649 *  should be sufficient to detect and handle this case.)
650 *
651 * The current code does the following:
652 * for NFS Version 2 - play it safe and flush/invalidate all dirty buffers
653 * for NFS Version 3 - flush dirty buffers to the server but don't invalidate
654 *                     or commit them (this satisfies 1 and 2 except for the
655 *                     case where the server crashes after this close but
656 *                     before the commit RPC, which is felt to be "good
657 *                     enough". Changing the last argument to ncl_flush() to
658 *                     a 1 would force a commit operation, if it is felt a
659 *                     commit is necessary now.
660 * for NFS Version 4 - flush the dirty buffers and commit them, if
661 *		       nfscl_mustflush() says this is necessary.
662 *                     It is necessary if there is no write delegation held,
663 *                     in order to satisfy open/close coherency.
664 *                     If the file isn't cached on local stable storage,
665 *                     it may be necessary in order to detect "out of space"
666 *                     errors from the server, if the write delegation
667 *                     issued by the server doesn't allow the file to grow.
668 */
669/* ARGSUSED */
670static int
671nfs_close(struct vop_close_args *ap)
672{
673	struct vnode *vp = ap->a_vp;
674	struct nfsnode *np = VTONFS(vp);
675	struct nfsvattr nfsva;
676	struct ucred *cred;
677	int error = 0, ret, localcred = 0;
678	int fmode = ap->a_fflag;
679
680	if ((vp->v_mount->mnt_kern_flag & MNTK_UNMOUNTF))
681		return (0);
682	/*
683	 * During shutdown, a_cred isn't valid, so just use root.
684	 */
685	if (ap->a_cred == NOCRED) {
686		cred = newnfs_getcred();
687		localcred = 1;
688	} else {
689		cred = ap->a_cred;
690	}
691	if (vp->v_type == VREG) {
692	    /*
693	     * Examine and clean dirty pages, regardless of NMODIFIED.
694	     * This closes a major hole in close-to-open consistency.
695	     * We want to push out all dirty pages (and buffers) on
696	     * close, regardless of whether they were dirtied by
697	     * mmap'ed writes or via write().
698	     */
699	    if (nfs_clean_pages_on_close && vp->v_object) {
700		VM_OBJECT_LOCK(vp->v_object);
701		vm_object_page_clean(vp->v_object, 0, 0, 0);
702		VM_OBJECT_UNLOCK(vp->v_object);
703	    }
704	    mtx_lock(&np->n_mtx);
705	    if (np->n_flag & NMODIFIED) {
706		mtx_unlock(&np->n_mtx);
707		if (NFS_ISV3(vp)) {
708		    /*
709		     * Under NFSv3 we have dirty buffers to dispose of.  We
710		     * must flush them to the NFS server.  We have the option
711		     * of waiting all the way through the commit rpc or just
712		     * waiting for the initial write.  The default is to only
713		     * wait through the initial write so the data is in the
714		     * server's cache, which is roughly similar to the state
715		     * a standard disk subsystem leaves the file in on close().
716		     *
717		     * We cannot clear the NMODIFIED bit in np->n_flag due to
718		     * potential races with other processes, and certainly
719		     * cannot clear it if we don't commit.
720		     * These races occur when there is no longer the old
721		     * traditional vnode locking implemented for Vnode Ops.
722		     */
723		    int cm = newnfs_commit_on_close ? 1 : 0;
724		    error = ncl_flush(vp, MNT_WAIT, cred, ap->a_td, cm, 0);
725		    /* np->n_flag &= ~NMODIFIED; */
726		} else if (NFS_ISV4(vp)) {
727			if (nfscl_mustflush(vp) != 0) {
728				int cm = newnfs_commit_on_close ? 1 : 0;
729				error = ncl_flush(vp, MNT_WAIT, cred, ap->a_td,
730				    cm, 0);
731				/*
732				 * as above w.r.t races when clearing
733				 * NMODIFIED.
734				 * np->n_flag &= ~NMODIFIED;
735				 */
736			}
737		} else
738		    error = ncl_vinvalbuf(vp, V_SAVE, ap->a_td, 1);
739		mtx_lock(&np->n_mtx);
740	    }
741 	    /*
742 	     * Invalidate the attribute cache in all cases.
743 	     * An open is going to fetch fresh attrs any way, other procs
744 	     * on this node that have file open will be forced to do an
745 	     * otw attr fetch, but this is safe.
746	     * --> A user found that their RPC count dropped by 20% when
747	     *     this was commented out and I can't see any requirement
748	     *     for it, so I've disabled it when negative lookups are
749	     *     enabled. (What does this have to do with negative lookup
750	     *     caching? Well nothing, except it was reported by the
751	     *     same user that needed negative lookup caching and I wanted
752	     *     there to be a way to disable it to see if it
753	     *     is the cause of some caching/coherency issue that might
754	     *     crop up.)
755 	     */
756	    if (VFSTONFS(vp->v_mount)->nm_negnametimeo == 0) {
757		    np->n_attrstamp = 0;
758		    KDTRACE_NFS_ATTRCACHE_FLUSH_DONE(vp);
759	    }
760	    if (np->n_flag & NWRITEERR) {
761		np->n_flag &= ~NWRITEERR;
762		error = np->n_error;
763	    }
764	    mtx_unlock(&np->n_mtx);
765	}
766
767	if (NFS_ISV4(vp)) {
768		/*
769		 * Get attributes so "change" is up to date.
770		 */
771		if (error == 0 && nfscl_mustflush(vp) != 0) {
772			ret = nfsrpc_getattr(vp, cred, ap->a_td, &nfsva,
773			    NULL);
774			if (!ret) {
775				np->n_change = nfsva.na_filerev;
776				(void) nfscl_loadattrcache(&vp, &nfsva, NULL,
777				    NULL, 0, 0);
778			}
779		}
780
781		/*
782		 * and do the close.
783		 */
784		ret = nfsrpc_close(vp, 0, ap->a_td);
785		if (!error && ret)
786			error = ret;
787		if (error)
788			error = nfscl_maperr(ap->a_td, error, (uid_t)0,
789			    (gid_t)0);
790	}
791	if (newnfs_directio_enable)
792		KASSERT((np->n_directio_asyncwr == 0),
793			("nfs_close: dirty unflushed (%d) directio buffers\n",
794			 np->n_directio_asyncwr));
795	if (newnfs_directio_enable && (fmode & O_DIRECT) && (vp->v_type == VREG)) {
796		mtx_lock(&np->n_mtx);
797		KASSERT((np->n_directio_opens > 0),
798			("nfs_close: unexpectedly value (0) of n_directio_opens\n"));
799		np->n_directio_opens--;
800		if (np->n_directio_opens == 0)
801			np->n_flag &= ~NNONCACHE;
802		mtx_unlock(&np->n_mtx);
803	}
804	if (localcred)
805		NFSFREECRED(cred);
806	return (error);
807}
808
809/*
810 * nfs getattr call from vfs.
811 */
812static int
813nfs_getattr(struct vop_getattr_args *ap)
814{
815	struct vnode *vp = ap->a_vp;
816	struct thread *td = curthread;	/* XXX */
817	struct nfsnode *np = VTONFS(vp);
818	int error = 0;
819	struct nfsvattr nfsva;
820	struct vattr *vap = ap->a_vap;
821	struct vattr vattr;
822
823	/*
824	 * Update local times for special files.
825	 */
826	mtx_lock(&np->n_mtx);
827	if (np->n_flag & (NACC | NUPD))
828		np->n_flag |= NCHG;
829	mtx_unlock(&np->n_mtx);
830	/*
831	 * First look in the cache.
832	 */
833	if (ncl_getattrcache(vp, &vattr) == 0) {
834		vap->va_type = vattr.va_type;
835		vap->va_mode = vattr.va_mode;
836		vap->va_nlink = vattr.va_nlink;
837		vap->va_uid = vattr.va_uid;
838		vap->va_gid = vattr.va_gid;
839		vap->va_fsid = vattr.va_fsid;
840		vap->va_fileid = vattr.va_fileid;
841		vap->va_size = vattr.va_size;
842		vap->va_blocksize = vattr.va_blocksize;
843		vap->va_atime = vattr.va_atime;
844		vap->va_mtime = vattr.va_mtime;
845		vap->va_ctime = vattr.va_ctime;
846		vap->va_gen = vattr.va_gen;
847		vap->va_flags = vattr.va_flags;
848		vap->va_rdev = vattr.va_rdev;
849		vap->va_bytes = vattr.va_bytes;
850		vap->va_filerev = vattr.va_filerev;
851		/*
852		 * Get the local modify time for the case of a write
853		 * delegation.
854		 */
855		nfscl_deleggetmodtime(vp, &vap->va_mtime);
856		return (0);
857	}
858
859	if (NFS_ISV34(vp) && nfs_prime_access_cache &&
860	    nfsaccess_cache_timeout > 0) {
861		NFSINCRGLOBAL(newnfsstats.accesscache_misses);
862		nfs34_access_otw(vp, NFSACCESS_ALL, td, ap->a_cred, NULL);
863		if (ncl_getattrcache(vp, ap->a_vap) == 0) {
864			nfscl_deleggetmodtime(vp, &ap->a_vap->va_mtime);
865			return (0);
866		}
867	}
868	error = nfsrpc_getattr(vp, ap->a_cred, td, &nfsva, NULL);
869	if (!error)
870		error = nfscl_loadattrcache(&vp, &nfsva, vap, NULL, 0, 0);
871	if (!error) {
872		/*
873		 * Get the local modify time for the case of a write
874		 * delegation.
875		 */
876		nfscl_deleggetmodtime(vp, &vap->va_mtime);
877	} else if (NFS_ISV4(vp)) {
878		error = nfscl_maperr(td, error, (uid_t)0, (gid_t)0);
879	}
880	return (error);
881}
882
883/*
884 * nfs setattr call.
885 */
886static int
887nfs_setattr(struct vop_setattr_args *ap)
888{
889	struct vnode *vp = ap->a_vp;
890	struct nfsnode *np = VTONFS(vp);
891	struct thread *td = curthread;	/* XXX */
892	struct vattr *vap = ap->a_vap;
893	int error = 0;
894	u_quad_t tsize;
895
896#ifndef nolint
897	tsize = (u_quad_t)0;
898#endif
899
900	/*
901	 * Setting of flags and marking of atimes are not supported.
902	 */
903	if (vap->va_flags != VNOVAL)
904		return (EOPNOTSUPP);
905
906	/*
907	 * Disallow write attempts if the filesystem is mounted read-only.
908	 */
909  	if ((vap->va_flags != VNOVAL || vap->va_uid != (uid_t)VNOVAL ||
910	    vap->va_gid != (gid_t)VNOVAL || vap->va_atime.tv_sec != VNOVAL ||
911	    vap->va_mtime.tv_sec != VNOVAL || vap->va_mode != (mode_t)VNOVAL) &&
912	    (vp->v_mount->mnt_flag & MNT_RDONLY))
913		return (EROFS);
914	if (vap->va_size != VNOVAL) {
915 		switch (vp->v_type) {
916 		case VDIR:
917 			return (EISDIR);
918 		case VCHR:
919 		case VBLK:
920 		case VSOCK:
921 		case VFIFO:
922			if (vap->va_mtime.tv_sec == VNOVAL &&
923			    vap->va_atime.tv_sec == VNOVAL &&
924			    vap->va_mode == (mode_t)VNOVAL &&
925			    vap->va_uid == (uid_t)VNOVAL &&
926			    vap->va_gid == (gid_t)VNOVAL)
927				return (0);
928 			vap->va_size = VNOVAL;
929 			break;
930 		default:
931			/*
932			 * Disallow write attempts if the filesystem is
933			 * mounted read-only.
934			 */
935			if (vp->v_mount->mnt_flag & MNT_RDONLY)
936				return (EROFS);
937			/*
938			 *  We run vnode_pager_setsize() early (why?),
939			 * we must set np->n_size now to avoid vinvalbuf
940			 * V_SAVE races that might setsize a lower
941			 * value.
942			 */
943			mtx_lock(&np->n_mtx);
944			tsize = np->n_size;
945			mtx_unlock(&np->n_mtx);
946			error = ncl_meta_setsize(vp, ap->a_cred, td,
947			    vap->va_size);
948			mtx_lock(&np->n_mtx);
949 			if (np->n_flag & NMODIFIED) {
950			    tsize = np->n_size;
951			    mtx_unlock(&np->n_mtx);
952 			    if (vap->va_size == 0)
953 				error = ncl_vinvalbuf(vp, 0, td, 1);
954 			    else
955 				error = ncl_vinvalbuf(vp, V_SAVE, td, 1);
956 			    if (error) {
957				vnode_pager_setsize(vp, tsize);
958				return (error);
959			    }
960			    /*
961			     * Call nfscl_delegmodtime() to set the modify time
962			     * locally, as required.
963			     */
964			    nfscl_delegmodtime(vp);
965 			} else
966			    mtx_unlock(&np->n_mtx);
967			/*
968			 * np->n_size has already been set to vap->va_size
969			 * in ncl_meta_setsize(). We must set it again since
970			 * nfs_loadattrcache() could be called through
971			 * ncl_meta_setsize() and could modify np->n_size.
972			 */
973			mtx_lock(&np->n_mtx);
974 			np->n_vattr.na_size = np->n_size = vap->va_size;
975			mtx_unlock(&np->n_mtx);
976  		};
977  	} else {
978		mtx_lock(&np->n_mtx);
979		if ((vap->va_mtime.tv_sec != VNOVAL || vap->va_atime.tv_sec != VNOVAL) &&
980		    (np->n_flag & NMODIFIED) && vp->v_type == VREG) {
981			mtx_unlock(&np->n_mtx);
982			if ((error = ncl_vinvalbuf(vp, V_SAVE, td, 1)) != 0 &&
983			    (error == EINTR || error == EIO))
984				return (error);
985		} else
986			mtx_unlock(&np->n_mtx);
987	}
988	error = nfs_setattrrpc(vp, vap, ap->a_cred, td);
989	if (error && vap->va_size != VNOVAL) {
990		mtx_lock(&np->n_mtx);
991		np->n_size = np->n_vattr.na_size = tsize;
992		vnode_pager_setsize(vp, tsize);
993		mtx_unlock(&np->n_mtx);
994	}
995	return (error);
996}
997
998/*
999 * Do an nfs setattr rpc.
1000 */
1001static int
1002nfs_setattrrpc(struct vnode *vp, struct vattr *vap, struct ucred *cred,
1003    struct thread *td)
1004{
1005	struct nfsnode *np = VTONFS(vp);
1006	int error, ret, attrflag, i;
1007	struct nfsvattr nfsva;
1008
1009	if (NFS_ISV34(vp)) {
1010		mtx_lock(&np->n_mtx);
1011		for (i = 0; i < NFS_ACCESSCACHESIZE; i++)
1012			np->n_accesscache[i].stamp = 0;
1013		np->n_flag |= NDELEGMOD;
1014		mtx_unlock(&np->n_mtx);
1015		KDTRACE_NFS_ACCESSCACHE_FLUSH_DONE(vp);
1016	}
1017	error = nfsrpc_setattr(vp, vap, NULL, cred, td, &nfsva, &attrflag,
1018	    NULL);
1019	if (attrflag) {
1020		ret = nfscl_loadattrcache(&vp, &nfsva, NULL, NULL, 0, 1);
1021		if (ret && !error)
1022			error = ret;
1023	}
1024	if (error && NFS_ISV4(vp))
1025		error = nfscl_maperr(td, error, vap->va_uid, vap->va_gid);
1026	return (error);
1027}
1028
1029/*
1030 * nfs lookup call, one step at a time...
1031 * First look in cache
1032 * If not found, unlock the directory nfsnode and do the rpc
1033 */
1034static int
1035nfs_lookup(struct vop_lookup_args *ap)
1036{
1037	struct componentname *cnp = ap->a_cnp;
1038	struct vnode *dvp = ap->a_dvp;
1039	struct vnode **vpp = ap->a_vpp;
1040	struct mount *mp = dvp->v_mount;
1041	int flags = cnp->cn_flags;
1042	struct vnode *newvp;
1043	struct nfsmount *nmp;
1044	struct nfsnode *np, *newnp;
1045	int error = 0, attrflag, dattrflag, ltype, ncticks;
1046	struct thread *td = cnp->cn_thread;
1047	struct nfsfh *nfhp;
1048	struct nfsvattr dnfsva, nfsva;
1049	struct vattr vattr;
1050	struct timespec nctime;
1051
1052	*vpp = NULLVP;
1053	if ((flags & ISLASTCN) && (mp->mnt_flag & MNT_RDONLY) &&
1054	    (cnp->cn_nameiop == DELETE || cnp->cn_nameiop == RENAME))
1055		return (EROFS);
1056	if (dvp->v_type != VDIR)
1057		return (ENOTDIR);
1058	nmp = VFSTONFS(mp);
1059	np = VTONFS(dvp);
1060
1061	/* For NFSv4, wait until any remove is done. */
1062	mtx_lock(&np->n_mtx);
1063	while (NFSHASNFSV4(nmp) && (np->n_flag & NREMOVEINPROG)) {
1064		np->n_flag |= NREMOVEWANT;
1065		(void) msleep((caddr_t)np, &np->n_mtx, PZERO, "nfslkup", 0);
1066	}
1067	mtx_unlock(&np->n_mtx);
1068
1069	if ((error = VOP_ACCESS(dvp, VEXEC, cnp->cn_cred, td)) != 0)
1070		return (error);
1071	error = cache_lookup(dvp, vpp, cnp, &nctime, &ncticks);
1072	if (error > 0 && error != ENOENT)
1073		return (error);
1074	if (error == -1) {
1075		/*
1076		 * Lookups of "." are special and always return the
1077		 * current directory.  cache_lookup() already handles
1078		 * associated locking bookkeeping, etc.
1079		 */
1080		if (cnp->cn_namelen == 1 && cnp->cn_nameptr[0] == '.') {
1081			/* XXX: Is this really correct? */
1082			if (cnp->cn_nameiop != LOOKUP &&
1083			    (flags & ISLASTCN))
1084				cnp->cn_flags |= SAVENAME;
1085			return (0);
1086		}
1087
1088		/*
1089		 * We only accept a positive hit in the cache if the
1090		 * change time of the file matches our cached copy.
1091		 * Otherwise, we discard the cache entry and fallback
1092		 * to doing a lookup RPC.  We also only trust cache
1093		 * entries for less than nm_nametimeo seconds.
1094		 *
1095		 * To better handle stale file handles and attributes,
1096		 * clear the attribute cache of this node if it is a
1097		 * leaf component, part of an open() call, and not
1098		 * locally modified before fetching the attributes.
1099		 * This should allow stale file handles to be detected
1100		 * here where we can fall back to a LOOKUP RPC to
1101		 * recover rather than having nfs_open() detect the
1102		 * stale file handle and failing open(2) with ESTALE.
1103		 */
1104		newvp = *vpp;
1105		newnp = VTONFS(newvp);
1106		if (!(nmp->nm_flag & NFSMNT_NOCTO) &&
1107		    (flags & (ISLASTCN | ISOPEN)) == (ISLASTCN | ISOPEN) &&
1108		    !(newnp->n_flag & NMODIFIED)) {
1109			mtx_lock(&newnp->n_mtx);
1110			newnp->n_attrstamp = 0;
1111			KDTRACE_NFS_ATTRCACHE_FLUSH_DONE(newvp);
1112			mtx_unlock(&newnp->n_mtx);
1113		}
1114		if (nfscl_nodeleg(newvp, 0) == 0 ||
1115		    ((u_int)(ticks - ncticks) < (nmp->nm_nametimeo * hz) &&
1116		    VOP_GETATTR(newvp, &vattr, cnp->cn_cred) == 0 &&
1117		    timespeccmp(&vattr.va_ctime, &nctime, ==))) {
1118			NFSINCRGLOBAL(newnfsstats.lookupcache_hits);
1119			if (cnp->cn_nameiop != LOOKUP &&
1120			    (flags & ISLASTCN))
1121				cnp->cn_flags |= SAVENAME;
1122			return (0);
1123		}
1124		cache_purge(newvp);
1125		if (dvp != newvp)
1126			vput(newvp);
1127		else
1128			vrele(newvp);
1129		*vpp = NULLVP;
1130	} else if (error == ENOENT) {
1131		if (dvp->v_iflag & VI_DOOMED)
1132			return (ENOENT);
1133		/*
1134		 * We only accept a negative hit in the cache if the
1135		 * modification time of the parent directory matches
1136		 * the cached copy in the name cache entry.
1137		 * Otherwise, we discard all of the negative cache
1138		 * entries for this directory.  We also only trust
1139		 * negative cache entries for up to nm_negnametimeo
1140		 * seconds.
1141		 */
1142		if ((u_int)(ticks - ncticks) < (nmp->nm_negnametimeo * hz) &&
1143		    VOP_GETATTR(dvp, &vattr, cnp->cn_cred) == 0 &&
1144		    timespeccmp(&vattr.va_mtime, &nctime, ==)) {
1145			NFSINCRGLOBAL(newnfsstats.lookupcache_hits);
1146			return (ENOENT);
1147		}
1148		cache_purge_negative(dvp);
1149	}
1150
1151	error = 0;
1152	newvp = NULLVP;
1153	NFSINCRGLOBAL(newnfsstats.lookupcache_misses);
1154	error = nfsrpc_lookup(dvp, cnp->cn_nameptr, cnp->cn_namelen,
1155	    cnp->cn_cred, td, &dnfsva, &nfsva, &nfhp, &attrflag, &dattrflag,
1156	    NULL);
1157	if (dattrflag)
1158		(void) nfscl_loadattrcache(&dvp, &dnfsva, NULL, NULL, 0, 1);
1159	if (error) {
1160		if (newvp != NULLVP) {
1161			vput(newvp);
1162			*vpp = NULLVP;
1163		}
1164
1165		if (error != ENOENT) {
1166			if (NFS_ISV4(dvp))
1167				error = nfscl_maperr(td, error, (uid_t)0,
1168				    (gid_t)0);
1169			return (error);
1170		}
1171
1172		/* The requested file was not found. */
1173		if ((cnp->cn_nameiop == CREATE || cnp->cn_nameiop == RENAME) &&
1174		    (flags & ISLASTCN)) {
1175			/*
1176			 * XXX: UFS does a full VOP_ACCESS(dvp,
1177			 * VWRITE) here instead of just checking
1178			 * MNT_RDONLY.
1179			 */
1180			if (mp->mnt_flag & MNT_RDONLY)
1181				return (EROFS);
1182			cnp->cn_flags |= SAVENAME;
1183			return (EJUSTRETURN);
1184		}
1185
1186		if ((cnp->cn_flags & MAKEENTRY) && cnp->cn_nameiop != CREATE &&
1187		    dattrflag) {
1188			/*
1189			 * Cache the modification time of the parent
1190			 * directory from the post-op attributes in
1191			 * the name cache entry.  The negative cache
1192			 * entry will be ignored once the directory
1193			 * has changed.  Don't bother adding the entry
1194			 * if the directory has already changed.
1195			 */
1196			mtx_lock(&np->n_mtx);
1197			if (timespeccmp(&np->n_vattr.na_mtime,
1198			    &dnfsva.na_mtime, ==)) {
1199				mtx_unlock(&np->n_mtx);
1200				cache_enter_time(dvp, NULL, cnp,
1201				    &dnfsva.na_mtime, NULL);
1202			} else
1203				mtx_unlock(&np->n_mtx);
1204		}
1205		return (ENOENT);
1206	}
1207
1208	/*
1209	 * Handle RENAME case...
1210	 */
1211	if (cnp->cn_nameiop == RENAME && (flags & ISLASTCN)) {
1212		if (NFS_CMPFH(np, nfhp->nfh_fh, nfhp->nfh_len)) {
1213			FREE((caddr_t)nfhp, M_NFSFH);
1214			return (EISDIR);
1215		}
1216		error = nfscl_nget(mp, dvp, nfhp, cnp, td, &np, NULL,
1217		    LK_EXCLUSIVE);
1218		if (error)
1219			return (error);
1220		newvp = NFSTOV(np);
1221		if (attrflag)
1222			(void) nfscl_loadattrcache(&newvp, &nfsva, NULL, NULL,
1223			    0, 1);
1224		*vpp = newvp;
1225		cnp->cn_flags |= SAVENAME;
1226		return (0);
1227	}
1228
1229	if (flags & ISDOTDOT) {
1230		ltype = NFSVOPISLOCKED(dvp);
1231		error = vfs_busy(mp, MBF_NOWAIT);
1232		if (error != 0) {
1233			vfs_ref(mp);
1234			NFSVOPUNLOCK(dvp, 0);
1235			error = vfs_busy(mp, 0);
1236			NFSVOPLOCK(dvp, ltype | LK_RETRY);
1237			vfs_rel(mp);
1238			if (error == 0 && (dvp->v_iflag & VI_DOOMED)) {
1239				vfs_unbusy(mp);
1240				error = ENOENT;
1241			}
1242			if (error != 0)
1243				return (error);
1244		}
1245		NFSVOPUNLOCK(dvp, 0);
1246		error = nfscl_nget(mp, dvp, nfhp, cnp, td, &np, NULL,
1247		    cnp->cn_lkflags);
1248		if (error == 0)
1249			newvp = NFSTOV(np);
1250		vfs_unbusy(mp);
1251		if (newvp != dvp)
1252			NFSVOPLOCK(dvp, ltype | LK_RETRY);
1253		if (dvp->v_iflag & VI_DOOMED) {
1254			if (error == 0) {
1255				if (newvp == dvp)
1256					vrele(newvp);
1257				else
1258					vput(newvp);
1259			}
1260			error = ENOENT;
1261		}
1262		if (error != 0)
1263			return (error);
1264		if (attrflag)
1265			(void) nfscl_loadattrcache(&newvp, &nfsva, NULL, NULL,
1266			    0, 1);
1267	} else if (NFS_CMPFH(np, nfhp->nfh_fh, nfhp->nfh_len)) {
1268		FREE((caddr_t)nfhp, M_NFSFH);
1269		VREF(dvp);
1270		newvp = dvp;
1271		if (attrflag)
1272			(void) nfscl_loadattrcache(&newvp, &nfsva, NULL, NULL,
1273			    0, 1);
1274	} else {
1275		error = nfscl_nget(mp, dvp, nfhp, cnp, td, &np, NULL,
1276		    cnp->cn_lkflags);
1277		if (error)
1278			return (error);
1279		newvp = NFSTOV(np);
1280		if (attrflag)
1281			(void) nfscl_loadattrcache(&newvp, &nfsva, NULL, NULL,
1282			    0, 1);
1283		else if ((flags & (ISLASTCN | ISOPEN)) == (ISLASTCN | ISOPEN) &&
1284		    !(np->n_flag & NMODIFIED)) {
1285			/*
1286			 * Flush the attribute cache when opening a
1287			 * leaf node to ensure that fresh attributes
1288			 * are fetched in nfs_open() since we did not
1289			 * fetch attributes from the LOOKUP reply.
1290			 */
1291			mtx_lock(&np->n_mtx);
1292			np->n_attrstamp = 0;
1293			KDTRACE_NFS_ATTRCACHE_FLUSH_DONE(newvp);
1294			mtx_unlock(&np->n_mtx);
1295		}
1296	}
1297	if (cnp->cn_nameiop != LOOKUP && (flags & ISLASTCN))
1298		cnp->cn_flags |= SAVENAME;
1299	if ((cnp->cn_flags & MAKEENTRY) &&
1300	    (cnp->cn_nameiop != DELETE || !(flags & ISLASTCN)) &&
1301	    attrflag != 0 && (newvp->v_type != VDIR || dattrflag != 0))
1302		cache_enter_time(dvp, newvp, cnp, &nfsva.na_ctime,
1303		    newvp->v_type != VDIR ? NULL : &dnfsva.na_ctime);
1304	*vpp = newvp;
1305	return (0);
1306}
1307
1308/*
1309 * nfs read call.
1310 * Just call ncl_bioread() to do the work.
1311 */
1312static int
1313nfs_read(struct vop_read_args *ap)
1314{
1315	struct vnode *vp = ap->a_vp;
1316
1317	switch (vp->v_type) {
1318	case VREG:
1319		return (ncl_bioread(vp, ap->a_uio, ap->a_ioflag, ap->a_cred));
1320	case VDIR:
1321		return (EISDIR);
1322	default:
1323		return (EOPNOTSUPP);
1324	}
1325}
1326
1327/*
1328 * nfs readlink call
1329 */
1330static int
1331nfs_readlink(struct vop_readlink_args *ap)
1332{
1333	struct vnode *vp = ap->a_vp;
1334
1335	if (vp->v_type != VLNK)
1336		return (EINVAL);
1337	return (ncl_bioread(vp, ap->a_uio, 0, ap->a_cred));
1338}
1339
1340/*
1341 * Do a readlink rpc.
1342 * Called by ncl_doio() from below the buffer cache.
1343 */
1344int
1345ncl_readlinkrpc(struct vnode *vp, struct uio *uiop, struct ucred *cred)
1346{
1347	int error, ret, attrflag;
1348	struct nfsvattr nfsva;
1349
1350	error = nfsrpc_readlink(vp, uiop, cred, uiop->uio_td, &nfsva,
1351	    &attrflag, NULL);
1352	if (attrflag) {
1353		ret = nfscl_loadattrcache(&vp, &nfsva, NULL, NULL, 0, 1);
1354		if (ret && !error)
1355			error = ret;
1356	}
1357	if (error && NFS_ISV4(vp))
1358		error = nfscl_maperr(uiop->uio_td, error, (uid_t)0, (gid_t)0);
1359	return (error);
1360}
1361
1362/*
1363 * nfs read rpc call
1364 * Ditto above
1365 */
1366int
1367ncl_readrpc(struct vnode *vp, struct uio *uiop, struct ucred *cred)
1368{
1369	int error, ret, attrflag;
1370	struct nfsvattr nfsva;
1371	struct nfsmount *nmp;
1372
1373	nmp = VFSTONFS(vnode_mount(vp));
1374	error = EIO;
1375	attrflag = 0;
1376	if (NFSHASPNFS(nmp))
1377		error = nfscl_doiods(vp, uiop, NULL, NULL,
1378		    NFSV4OPEN_ACCESSREAD, cred, uiop->uio_td);
1379	NFSCL_DEBUG(4, "readrpc: aft doiods=%d\n", error);
1380	if (error != 0)
1381		error = nfsrpc_read(vp, uiop, cred, uiop->uio_td, &nfsva,
1382		    &attrflag, NULL);
1383	if (attrflag) {
1384		ret = nfscl_loadattrcache(&vp, &nfsva, NULL, NULL, 0, 1);
1385		if (ret && !error)
1386			error = ret;
1387	}
1388	if (error && NFS_ISV4(vp))
1389		error = nfscl_maperr(uiop->uio_td, error, (uid_t)0, (gid_t)0);
1390	return (error);
1391}
1392
1393/*
1394 * nfs write call
1395 */
1396int
1397ncl_writerpc(struct vnode *vp, struct uio *uiop, struct ucred *cred,
1398    int *iomode, int *must_commit, int called_from_strategy)
1399{
1400	struct nfsvattr nfsva;
1401	int error, attrflag, ret;
1402	struct nfsmount *nmp;
1403
1404	nmp = VFSTONFS(vnode_mount(vp));
1405	error = EIO;
1406	attrflag = 0;
1407	if (NFSHASPNFS(nmp))
1408		error = nfscl_doiods(vp, uiop, iomode, must_commit,
1409		    NFSV4OPEN_ACCESSWRITE, cred, uiop->uio_td);
1410	NFSCL_DEBUG(4, "writerpc: aft doiods=%d\n", error);
1411	if (error != 0)
1412		error = nfsrpc_write(vp, uiop, iomode, must_commit, cred,
1413		    uiop->uio_td, &nfsva, &attrflag, NULL,
1414		    called_from_strategy);
1415	if (attrflag) {
1416		if (VTONFS(vp)->n_flag & ND_NFSV4)
1417			ret = nfscl_loadattrcache(&vp, &nfsva, NULL, NULL, 1,
1418			    1);
1419		else
1420			ret = nfscl_loadattrcache(&vp, &nfsva, NULL, NULL, 0,
1421			    1);
1422		if (ret && !error)
1423			error = ret;
1424	}
1425	if (DOINGASYNC(vp))
1426		*iomode = NFSWRITE_FILESYNC;
1427	if (error && NFS_ISV4(vp))
1428		error = nfscl_maperr(uiop->uio_td, error, (uid_t)0, (gid_t)0);
1429	return (error);
1430}
1431
1432/*
1433 * nfs mknod rpc
1434 * For NFS v2 this is a kludge. Use a create rpc but with the IFMT bits of the
1435 * mode set to specify the file type and the size field for rdev.
1436 */
1437static int
1438nfs_mknodrpc(struct vnode *dvp, struct vnode **vpp, struct componentname *cnp,
1439    struct vattr *vap)
1440{
1441	struct nfsvattr nfsva, dnfsva;
1442	struct vnode *newvp = NULL;
1443	struct nfsnode *np = NULL, *dnp;
1444	struct nfsfh *nfhp;
1445	struct vattr vattr;
1446	int error = 0, attrflag, dattrflag;
1447	u_int32_t rdev;
1448
1449	if (vap->va_type == VCHR || vap->va_type == VBLK)
1450		rdev = vap->va_rdev;
1451	else if (vap->va_type == VFIFO || vap->va_type == VSOCK)
1452		rdev = 0xffffffff;
1453	else
1454		return (EOPNOTSUPP);
1455	if ((error = VOP_GETATTR(dvp, &vattr, cnp->cn_cred)))
1456		return (error);
1457	error = nfsrpc_mknod(dvp, cnp->cn_nameptr, cnp->cn_namelen, vap,
1458	    rdev, vap->va_type, cnp->cn_cred, cnp->cn_thread, &dnfsva,
1459	    &nfsva, &nfhp, &attrflag, &dattrflag, NULL);
1460	if (!error) {
1461		if (!nfhp)
1462			(void) nfsrpc_lookup(dvp, cnp->cn_nameptr,
1463			    cnp->cn_namelen, cnp->cn_cred, cnp->cn_thread,
1464			    &dnfsva, &nfsva, &nfhp, &attrflag, &dattrflag,
1465			    NULL);
1466		if (nfhp)
1467			error = nfscl_nget(dvp->v_mount, dvp, nfhp, cnp,
1468			    cnp->cn_thread, &np, NULL, LK_EXCLUSIVE);
1469	}
1470	if (dattrflag)
1471		(void) nfscl_loadattrcache(&dvp, &dnfsva, NULL, NULL, 0, 1);
1472	if (!error) {
1473		newvp = NFSTOV(np);
1474		if (attrflag != 0) {
1475			error = nfscl_loadattrcache(&newvp, &nfsva, NULL, NULL,
1476			    0, 1);
1477			if (error != 0)
1478				vput(newvp);
1479		}
1480	}
1481	if (!error) {
1482		*vpp = newvp;
1483	} else if (NFS_ISV4(dvp)) {
1484		error = nfscl_maperr(cnp->cn_thread, error, vap->va_uid,
1485		    vap->va_gid);
1486	}
1487	dnp = VTONFS(dvp);
1488	mtx_lock(&dnp->n_mtx);
1489	dnp->n_flag |= NMODIFIED;
1490	if (!dattrflag) {
1491		dnp->n_attrstamp = 0;
1492		KDTRACE_NFS_ATTRCACHE_FLUSH_DONE(dvp);
1493	}
1494	mtx_unlock(&dnp->n_mtx);
1495	return (error);
1496}
1497
1498/*
1499 * nfs mknod vop
1500 * just call nfs_mknodrpc() to do the work.
1501 */
1502/* ARGSUSED */
1503static int
1504nfs_mknod(struct vop_mknod_args *ap)
1505{
1506	return (nfs_mknodrpc(ap->a_dvp, ap->a_vpp, ap->a_cnp, ap->a_vap));
1507}
1508
1509static struct mtx nfs_cverf_mtx;
1510MTX_SYSINIT(nfs_cverf_mtx, &nfs_cverf_mtx, "NFS create verifier mutex",
1511    MTX_DEF);
1512
1513static nfsquad_t
1514nfs_get_cverf(void)
1515{
1516	static nfsquad_t cverf;
1517	nfsquad_t ret;
1518	static int cverf_initialized = 0;
1519
1520	mtx_lock(&nfs_cverf_mtx);
1521	if (cverf_initialized == 0) {
1522		cverf.lval[0] = arc4random();
1523		cverf.lval[1] = arc4random();
1524		cverf_initialized = 1;
1525	} else
1526		cverf.qval++;
1527	ret = cverf;
1528	mtx_unlock(&nfs_cverf_mtx);
1529
1530	return (ret);
1531}
1532
1533/*
1534 * nfs file create call
1535 */
1536static int
1537nfs_create(struct vop_create_args *ap)
1538{
1539	struct vnode *dvp = ap->a_dvp;
1540	struct vattr *vap = ap->a_vap;
1541	struct componentname *cnp = ap->a_cnp;
1542	struct nfsnode *np = NULL, *dnp;
1543	struct vnode *newvp = NULL;
1544	struct nfsmount *nmp;
1545	struct nfsvattr dnfsva, nfsva;
1546	struct nfsfh *nfhp;
1547	nfsquad_t cverf;
1548	int error = 0, attrflag, dattrflag, fmode = 0;
1549	struct vattr vattr;
1550
1551	/*
1552	 * Oops, not for me..
1553	 */
1554	if (vap->va_type == VSOCK)
1555		return (nfs_mknodrpc(dvp, ap->a_vpp, cnp, vap));
1556
1557	if ((error = VOP_GETATTR(dvp, &vattr, cnp->cn_cred)))
1558		return (error);
1559	if (vap->va_vaflags & VA_EXCLUSIVE)
1560		fmode |= O_EXCL;
1561	dnp = VTONFS(dvp);
1562	nmp = VFSTONFS(vnode_mount(dvp));
1563again:
1564	/* For NFSv4, wait until any remove is done. */
1565	mtx_lock(&dnp->n_mtx);
1566	while (NFSHASNFSV4(nmp) && (dnp->n_flag & NREMOVEINPROG)) {
1567		dnp->n_flag |= NREMOVEWANT;
1568		(void) msleep((caddr_t)dnp, &dnp->n_mtx, PZERO, "nfscrt", 0);
1569	}
1570	mtx_unlock(&dnp->n_mtx);
1571
1572	cverf = nfs_get_cverf();
1573	error = nfsrpc_create(dvp, cnp->cn_nameptr, cnp->cn_namelen,
1574	    vap, cverf, fmode, cnp->cn_cred, cnp->cn_thread, &dnfsva, &nfsva,
1575	    &nfhp, &attrflag, &dattrflag, NULL);
1576	if (!error) {
1577		if (nfhp == NULL)
1578			(void) nfsrpc_lookup(dvp, cnp->cn_nameptr,
1579			    cnp->cn_namelen, cnp->cn_cred, cnp->cn_thread,
1580			    &dnfsva, &nfsva, &nfhp, &attrflag, &dattrflag,
1581			    NULL);
1582		if (nfhp != NULL)
1583			error = nfscl_nget(dvp->v_mount, dvp, nfhp, cnp,
1584			    cnp->cn_thread, &np, NULL, LK_EXCLUSIVE);
1585	}
1586	if (dattrflag)
1587		(void) nfscl_loadattrcache(&dvp, &dnfsva, NULL, NULL, 0, 1);
1588	if (!error) {
1589		newvp = NFSTOV(np);
1590		if (attrflag == 0)
1591			error = nfsrpc_getattr(newvp, cnp->cn_cred,
1592			    cnp->cn_thread, &nfsva, NULL);
1593		if (error == 0)
1594			error = nfscl_loadattrcache(&newvp, &nfsva, NULL, NULL,
1595			    0, 1);
1596	}
1597	if (error) {
1598		if (newvp != NULL) {
1599			vput(newvp);
1600			newvp = NULL;
1601		}
1602		if (NFS_ISV34(dvp) && (fmode & O_EXCL) &&
1603		    error == NFSERR_NOTSUPP) {
1604			fmode &= ~O_EXCL;
1605			goto again;
1606		}
1607	} else if (NFS_ISV34(dvp) && (fmode & O_EXCL)) {
1608		if (nfscl_checksattr(vap, &nfsva)) {
1609			/*
1610			 * We are normally called with only a partially
1611			 * initialized VAP. Since the NFSv3 spec says that
1612			 * the server may use the file attributes to
1613			 * store the verifier, the spec requires us to do a
1614			 * SETATTR RPC. FreeBSD servers store the verifier in
1615			 * atime, but we can't really assume that all servers
1616			 * will so we ensure that our SETATTR sets both atime
1617			 * and mtime.
1618			 */
1619			if (vap->va_mtime.tv_sec == VNOVAL)
1620				vfs_timestamp(&vap->va_mtime);
1621			if (vap->va_atime.tv_sec == VNOVAL)
1622				vap->va_atime = vap->va_mtime;
1623			error = nfsrpc_setattr(newvp, vap, NULL, cnp->cn_cred,
1624			    cnp->cn_thread, &nfsva, &attrflag, NULL);
1625			if (error && (vap->va_uid != (uid_t)VNOVAL ||
1626			    vap->va_gid != (gid_t)VNOVAL)) {
1627				/* try again without setting uid/gid */
1628				vap->va_uid = (uid_t)VNOVAL;
1629				vap->va_gid = (uid_t)VNOVAL;
1630				error = nfsrpc_setattr(newvp, vap, NULL,
1631				    cnp->cn_cred, cnp->cn_thread, &nfsva,
1632				    &attrflag, NULL);
1633			}
1634			if (attrflag)
1635				(void) nfscl_loadattrcache(&newvp, &nfsva, NULL,
1636				    NULL, 0, 1);
1637			if (error != 0)
1638				vput(newvp);
1639		}
1640	}
1641	if (!error) {
1642		if ((cnp->cn_flags & MAKEENTRY) && attrflag)
1643			cache_enter_time(dvp, newvp, cnp, &nfsva.na_ctime,
1644			    NULL);
1645		*ap->a_vpp = newvp;
1646	} else if (NFS_ISV4(dvp)) {
1647		error = nfscl_maperr(cnp->cn_thread, error, vap->va_uid,
1648		    vap->va_gid);
1649	}
1650	mtx_lock(&dnp->n_mtx);
1651	dnp->n_flag |= NMODIFIED;
1652	if (!dattrflag) {
1653		dnp->n_attrstamp = 0;
1654		KDTRACE_NFS_ATTRCACHE_FLUSH_DONE(dvp);
1655	}
1656	mtx_unlock(&dnp->n_mtx);
1657	return (error);
1658}
1659
1660/*
1661 * nfs file remove call
1662 * To try and make nfs semantics closer to ufs semantics, a file that has
1663 * other processes using the vnode is renamed instead of removed and then
1664 * removed later on the last close.
1665 * - If v_usecount > 1
1666 *	  If a rename is not already in the works
1667 *	     call nfs_sillyrename() to set it up
1668 *     else
1669 *	  do the remove rpc
1670 */
1671static int
1672nfs_remove(struct vop_remove_args *ap)
1673{
1674	struct vnode *vp = ap->a_vp;
1675	struct vnode *dvp = ap->a_dvp;
1676	struct componentname *cnp = ap->a_cnp;
1677	struct nfsnode *np = VTONFS(vp);
1678	int error = 0;
1679	struct vattr vattr;
1680
1681	KASSERT((cnp->cn_flags & HASBUF) != 0, ("nfs_remove: no name"));
1682	KASSERT(vrefcnt(vp) > 0, ("nfs_remove: bad v_usecount"));
1683	if (vp->v_type == VDIR)
1684		error = EPERM;
1685	else if (vrefcnt(vp) == 1 || (np->n_sillyrename &&
1686	    VOP_GETATTR(vp, &vattr, cnp->cn_cred) == 0 &&
1687	    vattr.va_nlink > 1)) {
1688		/*
1689		 * Purge the name cache so that the chance of a lookup for
1690		 * the name succeeding while the remove is in progress is
1691		 * minimized. Without node locking it can still happen, such
1692		 * that an I/O op returns ESTALE, but since you get this if
1693		 * another host removes the file..
1694		 */
1695		cache_purge(vp);
1696		/*
1697		 * throw away biocache buffers, mainly to avoid
1698		 * unnecessary delayed writes later.
1699		 */
1700		error = ncl_vinvalbuf(vp, 0, cnp->cn_thread, 1);
1701		/* Do the rpc */
1702		if (error != EINTR && error != EIO)
1703			error = nfs_removerpc(dvp, vp, cnp->cn_nameptr,
1704			    cnp->cn_namelen, cnp->cn_cred, cnp->cn_thread);
1705		/*
1706		 * Kludge City: If the first reply to the remove rpc is lost..
1707		 *   the reply to the retransmitted request will be ENOENT
1708		 *   since the file was in fact removed
1709		 *   Therefore, we cheat and return success.
1710		 */
1711		if (error == ENOENT)
1712			error = 0;
1713	} else if (!np->n_sillyrename)
1714		error = nfs_sillyrename(dvp, vp, cnp);
1715	mtx_lock(&np->n_mtx);
1716	np->n_attrstamp = 0;
1717	mtx_unlock(&np->n_mtx);
1718	KDTRACE_NFS_ATTRCACHE_FLUSH_DONE(vp);
1719	return (error);
1720}
1721
1722/*
1723 * nfs file remove rpc called from nfs_inactive
1724 */
1725int
1726ncl_removeit(struct sillyrename *sp, struct vnode *vp)
1727{
1728	/*
1729	 * Make sure that the directory vnode is still valid.
1730	 * XXX we should lock sp->s_dvp here.
1731	 */
1732	if (sp->s_dvp->v_type == VBAD)
1733		return (0);
1734	return (nfs_removerpc(sp->s_dvp, vp, sp->s_name, sp->s_namlen,
1735	    sp->s_cred, NULL));
1736}
1737
1738/*
1739 * Nfs remove rpc, called from nfs_remove() and ncl_removeit().
1740 */
1741static int
1742nfs_removerpc(struct vnode *dvp, struct vnode *vp, char *name,
1743    int namelen, struct ucred *cred, struct thread *td)
1744{
1745	struct nfsvattr dnfsva;
1746	struct nfsnode *dnp = VTONFS(dvp);
1747	int error = 0, dattrflag;
1748
1749	mtx_lock(&dnp->n_mtx);
1750	dnp->n_flag |= NREMOVEINPROG;
1751	mtx_unlock(&dnp->n_mtx);
1752	error = nfsrpc_remove(dvp, name, namelen, vp, cred, td, &dnfsva,
1753	    &dattrflag, NULL);
1754	mtx_lock(&dnp->n_mtx);
1755	if ((dnp->n_flag & NREMOVEWANT)) {
1756		dnp->n_flag &= ~(NREMOVEWANT | NREMOVEINPROG);
1757		mtx_unlock(&dnp->n_mtx);
1758		wakeup((caddr_t)dnp);
1759	} else {
1760		dnp->n_flag &= ~NREMOVEINPROG;
1761		mtx_unlock(&dnp->n_mtx);
1762	}
1763	if (dattrflag)
1764		(void) nfscl_loadattrcache(&dvp, &dnfsva, NULL, NULL, 0, 1);
1765	mtx_lock(&dnp->n_mtx);
1766	dnp->n_flag |= NMODIFIED;
1767	if (!dattrflag) {
1768		dnp->n_attrstamp = 0;
1769		KDTRACE_NFS_ATTRCACHE_FLUSH_DONE(dvp);
1770	}
1771	mtx_unlock(&dnp->n_mtx);
1772	if (error && NFS_ISV4(dvp))
1773		error = nfscl_maperr(td, error, (uid_t)0, (gid_t)0);
1774	return (error);
1775}
1776
1777/*
1778 * nfs file rename call
1779 */
1780static int
1781nfs_rename(struct vop_rename_args *ap)
1782{
1783	struct vnode *fvp = ap->a_fvp;
1784	struct vnode *tvp = ap->a_tvp;
1785	struct vnode *fdvp = ap->a_fdvp;
1786	struct vnode *tdvp = ap->a_tdvp;
1787	struct componentname *tcnp = ap->a_tcnp;
1788	struct componentname *fcnp = ap->a_fcnp;
1789	struct nfsnode *fnp = VTONFS(ap->a_fvp);
1790	struct nfsnode *tdnp = VTONFS(ap->a_tdvp);
1791	struct nfsv4node *newv4 = NULL;
1792	int error;
1793
1794	KASSERT((tcnp->cn_flags & HASBUF) != 0 &&
1795	    (fcnp->cn_flags & HASBUF) != 0, ("nfs_rename: no name"));
1796	/* Check for cross-device rename */
1797	if ((fvp->v_mount != tdvp->v_mount) ||
1798	    (tvp && (fvp->v_mount != tvp->v_mount))) {
1799		error = EXDEV;
1800		goto out;
1801	}
1802
1803	if (fvp == tvp) {
1804		ncl_printf("nfs_rename: fvp == tvp (can't happen)\n");
1805		error = 0;
1806		goto out;
1807	}
1808	if ((error = NFSVOPLOCK(fvp, LK_EXCLUSIVE)) != 0)
1809		goto out;
1810
1811	/*
1812	 * We have to flush B_DELWRI data prior to renaming
1813	 * the file.  If we don't, the delayed-write buffers
1814	 * can be flushed out later after the file has gone stale
1815	 * under NFSV3.  NFSV2 does not have this problem because
1816	 * ( as far as I can tell ) it flushes dirty buffers more
1817	 * often.
1818	 *
1819	 * Skip the rename operation if the fsync fails, this can happen
1820	 * due to the server's volume being full, when we pushed out data
1821	 * that was written back to our cache earlier. Not checking for
1822	 * this condition can result in potential (silent) data loss.
1823	 */
1824	error = VOP_FSYNC(fvp, MNT_WAIT, fcnp->cn_thread);
1825	NFSVOPUNLOCK(fvp, 0);
1826	if (!error && tvp)
1827		error = VOP_FSYNC(tvp, MNT_WAIT, tcnp->cn_thread);
1828	if (error)
1829		goto out;
1830
1831	/*
1832	 * If the tvp exists and is in use, sillyrename it before doing the
1833	 * rename of the new file over it.
1834	 * XXX Can't sillyrename a directory.
1835	 */
1836	if (tvp && vrefcnt(tvp) > 1 && !VTONFS(tvp)->n_sillyrename &&
1837		tvp->v_type != VDIR && !nfs_sillyrename(tdvp, tvp, tcnp)) {
1838		vput(tvp);
1839		tvp = NULL;
1840	}
1841
1842	error = nfs_renamerpc(fdvp, fvp, fcnp->cn_nameptr, fcnp->cn_namelen,
1843	    tdvp, tvp, tcnp->cn_nameptr, tcnp->cn_namelen, tcnp->cn_cred,
1844	    tcnp->cn_thread);
1845
1846	if (error == 0 && NFS_ISV4(tdvp)) {
1847		/*
1848		 * For NFSv4, check to see if it is the same name and
1849		 * replace the name, if it is different.
1850		 */
1851		MALLOC(newv4, struct nfsv4node *,
1852		    sizeof (struct nfsv4node) +
1853		    tdnp->n_fhp->nfh_len + tcnp->cn_namelen - 1,
1854		    M_NFSV4NODE, M_WAITOK);
1855		mtx_lock(&tdnp->n_mtx);
1856		mtx_lock(&fnp->n_mtx);
1857		if (fnp->n_v4 != NULL && fvp->v_type == VREG &&
1858		    (fnp->n_v4->n4_namelen != tcnp->cn_namelen ||
1859		      NFSBCMP(tcnp->cn_nameptr, NFS4NODENAME(fnp->n_v4),
1860		      tcnp->cn_namelen) ||
1861		      tdnp->n_fhp->nfh_len != fnp->n_v4->n4_fhlen ||
1862		      NFSBCMP(tdnp->n_fhp->nfh_fh, fnp->n_v4->n4_data,
1863			tdnp->n_fhp->nfh_len))) {
1864#ifdef notdef
1865{ char nnn[100]; int nnnl;
1866nnnl = (tcnp->cn_namelen < 100) ? tcnp->cn_namelen : 99;
1867bcopy(tcnp->cn_nameptr, nnn, nnnl);
1868nnn[nnnl] = '\0';
1869printf("ren replace=%s\n",nnn);
1870}
1871#endif
1872			FREE((caddr_t)fnp->n_v4, M_NFSV4NODE);
1873			fnp->n_v4 = newv4;
1874			newv4 = NULL;
1875			fnp->n_v4->n4_fhlen = tdnp->n_fhp->nfh_len;
1876			fnp->n_v4->n4_namelen = tcnp->cn_namelen;
1877			NFSBCOPY(tdnp->n_fhp->nfh_fh, fnp->n_v4->n4_data,
1878			    tdnp->n_fhp->nfh_len);
1879			NFSBCOPY(tcnp->cn_nameptr,
1880			    NFS4NODENAME(fnp->n_v4), tcnp->cn_namelen);
1881		}
1882		mtx_unlock(&tdnp->n_mtx);
1883		mtx_unlock(&fnp->n_mtx);
1884		if (newv4 != NULL)
1885			FREE((caddr_t)newv4, M_NFSV4NODE);
1886	}
1887
1888	if (fvp->v_type == VDIR) {
1889		if (tvp != NULL && tvp->v_type == VDIR)
1890			cache_purge(tdvp);
1891		cache_purge(fdvp);
1892	}
1893
1894out:
1895	if (tdvp == tvp)
1896		vrele(tdvp);
1897	else
1898		vput(tdvp);
1899	if (tvp)
1900		vput(tvp);
1901	vrele(fdvp);
1902	vrele(fvp);
1903	/*
1904	 * Kludge: Map ENOENT => 0 assuming that it is a reply to a retry.
1905	 */
1906	if (error == ENOENT)
1907		error = 0;
1908	return (error);
1909}
1910
1911/*
1912 * nfs file rename rpc called from nfs_remove() above
1913 */
1914static int
1915nfs_renameit(struct vnode *sdvp, struct vnode *svp, struct componentname *scnp,
1916    struct sillyrename *sp)
1917{
1918
1919	return (nfs_renamerpc(sdvp, svp, scnp->cn_nameptr, scnp->cn_namelen,
1920	    sdvp, NULL, sp->s_name, sp->s_namlen, scnp->cn_cred,
1921	    scnp->cn_thread));
1922}
1923
1924/*
1925 * Do an nfs rename rpc. Called from nfs_rename() and nfs_renameit().
1926 */
1927static int
1928nfs_renamerpc(struct vnode *fdvp, struct vnode *fvp, char *fnameptr,
1929    int fnamelen, struct vnode *tdvp, struct vnode *tvp, char *tnameptr,
1930    int tnamelen, struct ucred *cred, struct thread *td)
1931{
1932	struct nfsvattr fnfsva, tnfsva;
1933	struct nfsnode *fdnp = VTONFS(fdvp);
1934	struct nfsnode *tdnp = VTONFS(tdvp);
1935	int error = 0, fattrflag, tattrflag;
1936
1937	error = nfsrpc_rename(fdvp, fvp, fnameptr, fnamelen, tdvp, tvp,
1938	    tnameptr, tnamelen, cred, td, &fnfsva, &tnfsva, &fattrflag,
1939	    &tattrflag, NULL, NULL);
1940	mtx_lock(&fdnp->n_mtx);
1941	fdnp->n_flag |= NMODIFIED;
1942	if (fattrflag != 0) {
1943		mtx_unlock(&fdnp->n_mtx);
1944		(void) nfscl_loadattrcache(&fdvp, &fnfsva, NULL, NULL, 0, 1);
1945	} else {
1946		fdnp->n_attrstamp = 0;
1947		mtx_unlock(&fdnp->n_mtx);
1948		KDTRACE_NFS_ATTRCACHE_FLUSH_DONE(fdvp);
1949	}
1950	mtx_lock(&tdnp->n_mtx);
1951	tdnp->n_flag |= NMODIFIED;
1952	if (tattrflag != 0) {
1953		mtx_unlock(&tdnp->n_mtx);
1954		(void) nfscl_loadattrcache(&tdvp, &tnfsva, NULL, NULL, 0, 1);
1955	} else {
1956		tdnp->n_attrstamp = 0;
1957		mtx_unlock(&tdnp->n_mtx);
1958		KDTRACE_NFS_ATTRCACHE_FLUSH_DONE(tdvp);
1959	}
1960	if (error && NFS_ISV4(fdvp))
1961		error = nfscl_maperr(td, error, (uid_t)0, (gid_t)0);
1962	return (error);
1963}
1964
1965/*
1966 * nfs hard link create call
1967 */
1968static int
1969nfs_link(struct vop_link_args *ap)
1970{
1971	struct vnode *vp = ap->a_vp;
1972	struct vnode *tdvp = ap->a_tdvp;
1973	struct componentname *cnp = ap->a_cnp;
1974	struct nfsnode *np, *tdnp;
1975	struct nfsvattr nfsva, dnfsva;
1976	int error = 0, attrflag, dattrflag;
1977
1978	if (vp->v_mount != tdvp->v_mount) {
1979		return (EXDEV);
1980	}
1981
1982	/*
1983	 * Push all writes to the server, so that the attribute cache
1984	 * doesn't get "out of sync" with the server.
1985	 * XXX There should be a better way!
1986	 */
1987	VOP_FSYNC(vp, MNT_WAIT, cnp->cn_thread);
1988
1989	error = nfsrpc_link(tdvp, vp, cnp->cn_nameptr, cnp->cn_namelen,
1990	    cnp->cn_cred, cnp->cn_thread, &dnfsva, &nfsva, &attrflag,
1991	    &dattrflag, NULL);
1992	tdnp = VTONFS(tdvp);
1993	mtx_lock(&tdnp->n_mtx);
1994	tdnp->n_flag |= NMODIFIED;
1995	if (dattrflag != 0) {
1996		mtx_unlock(&tdnp->n_mtx);
1997		(void) nfscl_loadattrcache(&tdvp, &dnfsva, NULL, NULL, 0, 1);
1998	} else {
1999		tdnp->n_attrstamp = 0;
2000		mtx_unlock(&tdnp->n_mtx);
2001		KDTRACE_NFS_ATTRCACHE_FLUSH_DONE(tdvp);
2002	}
2003	if (attrflag)
2004		(void) nfscl_loadattrcache(&vp, &nfsva, NULL, NULL, 0, 1);
2005	else {
2006		np = VTONFS(vp);
2007		mtx_lock(&np->n_mtx);
2008		np->n_attrstamp = 0;
2009		mtx_unlock(&np->n_mtx);
2010		KDTRACE_NFS_ATTRCACHE_FLUSH_DONE(vp);
2011	}
2012	/*
2013	 * If negative lookup caching is enabled, I might as well
2014	 * add an entry for this node. Not necessary for correctness,
2015	 * but if negative caching is enabled, then the system
2016	 * must care about lookup caching hit rate, so...
2017	 */
2018	if (VFSTONFS(vp->v_mount)->nm_negnametimeo != 0 &&
2019	    (cnp->cn_flags & MAKEENTRY) && attrflag != 0 && error == 0) {
2020		cache_enter_time(tdvp, vp, cnp, &nfsva.na_ctime, NULL);
2021	}
2022	if (error && NFS_ISV4(vp))
2023		error = nfscl_maperr(cnp->cn_thread, error, (uid_t)0,
2024		    (gid_t)0);
2025	return (error);
2026}
2027
2028/*
2029 * nfs symbolic link create call
2030 */
2031static int
2032nfs_symlink(struct vop_symlink_args *ap)
2033{
2034	struct vnode *dvp = ap->a_dvp;
2035	struct vattr *vap = ap->a_vap;
2036	struct componentname *cnp = ap->a_cnp;
2037	struct nfsvattr nfsva, dnfsva;
2038	struct nfsfh *nfhp;
2039	struct nfsnode *np = NULL, *dnp;
2040	struct vnode *newvp = NULL;
2041	int error = 0, attrflag, dattrflag, ret;
2042
2043	vap->va_type = VLNK;
2044	error = nfsrpc_symlink(dvp, cnp->cn_nameptr, cnp->cn_namelen,
2045	    ap->a_target, vap, cnp->cn_cred, cnp->cn_thread, &dnfsva,
2046	    &nfsva, &nfhp, &attrflag, &dattrflag, NULL);
2047	if (nfhp) {
2048		ret = nfscl_nget(dvp->v_mount, dvp, nfhp, cnp, cnp->cn_thread,
2049		    &np, NULL, LK_EXCLUSIVE);
2050		if (!ret)
2051			newvp = NFSTOV(np);
2052		else if (!error)
2053			error = ret;
2054	}
2055	if (newvp != NULL) {
2056		if (attrflag)
2057			(void) nfscl_loadattrcache(&newvp, &nfsva, NULL, NULL,
2058			    0, 1);
2059	} else if (!error) {
2060		/*
2061		 * If we do not have an error and we could not extract the
2062		 * newvp from the response due to the request being NFSv2, we
2063		 * have to do a lookup in order to obtain a newvp to return.
2064		 */
2065		error = nfs_lookitup(dvp, cnp->cn_nameptr, cnp->cn_namelen,
2066		    cnp->cn_cred, cnp->cn_thread, &np);
2067		if (!error)
2068			newvp = NFSTOV(np);
2069	}
2070	if (error) {
2071		if (newvp)
2072			vput(newvp);
2073		if (NFS_ISV4(dvp))
2074			error = nfscl_maperr(cnp->cn_thread, error,
2075			    vap->va_uid, vap->va_gid);
2076	} else {
2077		*ap->a_vpp = newvp;
2078	}
2079
2080	dnp = VTONFS(dvp);
2081	mtx_lock(&dnp->n_mtx);
2082	dnp->n_flag |= NMODIFIED;
2083	if (dattrflag != 0) {
2084		mtx_unlock(&dnp->n_mtx);
2085		(void) nfscl_loadattrcache(&dvp, &dnfsva, NULL, NULL, 0, 1);
2086	} else {
2087		dnp->n_attrstamp = 0;
2088		mtx_unlock(&dnp->n_mtx);
2089		KDTRACE_NFS_ATTRCACHE_FLUSH_DONE(dvp);
2090	}
2091	/*
2092	 * If negative lookup caching is enabled, I might as well
2093	 * add an entry for this node. Not necessary for correctness,
2094	 * but if negative caching is enabled, then the system
2095	 * must care about lookup caching hit rate, so...
2096	 */
2097	if (VFSTONFS(dvp->v_mount)->nm_negnametimeo != 0 &&
2098	    (cnp->cn_flags & MAKEENTRY) && attrflag != 0 && error == 0) {
2099		cache_enter_time(dvp, newvp, cnp, &nfsva.na_ctime, NULL);
2100	}
2101	return (error);
2102}
2103
2104/*
2105 * nfs make dir call
2106 */
2107static int
2108nfs_mkdir(struct vop_mkdir_args *ap)
2109{
2110	struct vnode *dvp = ap->a_dvp;
2111	struct vattr *vap = ap->a_vap;
2112	struct componentname *cnp = ap->a_cnp;
2113	struct nfsnode *np = NULL, *dnp;
2114	struct vnode *newvp = NULL;
2115	struct vattr vattr;
2116	struct nfsfh *nfhp;
2117	struct nfsvattr nfsva, dnfsva;
2118	int error = 0, attrflag, dattrflag, ret;
2119
2120	if ((error = VOP_GETATTR(dvp, &vattr, cnp->cn_cred)) != 0)
2121		return (error);
2122	vap->va_type = VDIR;
2123	error = nfsrpc_mkdir(dvp, cnp->cn_nameptr, cnp->cn_namelen,
2124	    vap, cnp->cn_cred, cnp->cn_thread, &dnfsva, &nfsva, &nfhp,
2125	    &attrflag, &dattrflag, NULL);
2126	dnp = VTONFS(dvp);
2127	mtx_lock(&dnp->n_mtx);
2128	dnp->n_flag |= NMODIFIED;
2129	if (dattrflag != 0) {
2130		mtx_unlock(&dnp->n_mtx);
2131		(void) nfscl_loadattrcache(&dvp, &dnfsva, NULL, NULL, 0, 1);
2132	} else {
2133		dnp->n_attrstamp = 0;
2134		mtx_unlock(&dnp->n_mtx);
2135		KDTRACE_NFS_ATTRCACHE_FLUSH_DONE(dvp);
2136	}
2137	if (nfhp) {
2138		ret = nfscl_nget(dvp->v_mount, dvp, nfhp, cnp, cnp->cn_thread,
2139		    &np, NULL, LK_EXCLUSIVE);
2140		if (!ret) {
2141			newvp = NFSTOV(np);
2142			if (attrflag)
2143			   (void) nfscl_loadattrcache(&newvp, &nfsva, NULL,
2144				NULL, 0, 1);
2145		} else if (!error)
2146			error = ret;
2147	}
2148	if (!error && newvp == NULL) {
2149		error = nfs_lookitup(dvp, cnp->cn_nameptr, cnp->cn_namelen,
2150		    cnp->cn_cred, cnp->cn_thread, &np);
2151		if (!error) {
2152			newvp = NFSTOV(np);
2153			if (newvp->v_type != VDIR)
2154				error = EEXIST;
2155		}
2156	}
2157	if (error) {
2158		if (newvp)
2159			vput(newvp);
2160		if (NFS_ISV4(dvp))
2161			error = nfscl_maperr(cnp->cn_thread, error,
2162			    vap->va_uid, vap->va_gid);
2163	} else {
2164		/*
2165		 * If negative lookup caching is enabled, I might as well
2166		 * add an entry for this node. Not necessary for correctness,
2167		 * but if negative caching is enabled, then the system
2168		 * must care about lookup caching hit rate, so...
2169		 */
2170		if (VFSTONFS(dvp->v_mount)->nm_negnametimeo != 0 &&
2171		    (cnp->cn_flags & MAKEENTRY) &&
2172		    attrflag != 0 && dattrflag != 0)
2173			cache_enter_time(dvp, newvp, cnp, &nfsva.na_ctime,
2174			    &dnfsva.na_ctime);
2175		*ap->a_vpp = newvp;
2176	}
2177	return (error);
2178}
2179
2180/*
2181 * nfs remove directory call
2182 */
2183static int
2184nfs_rmdir(struct vop_rmdir_args *ap)
2185{
2186	struct vnode *vp = ap->a_vp;
2187	struct vnode *dvp = ap->a_dvp;
2188	struct componentname *cnp = ap->a_cnp;
2189	struct nfsnode *dnp;
2190	struct nfsvattr dnfsva;
2191	int error, dattrflag;
2192
2193	if (dvp == vp)
2194		return (EINVAL);
2195	error = nfsrpc_rmdir(dvp, cnp->cn_nameptr, cnp->cn_namelen,
2196	    cnp->cn_cred, cnp->cn_thread, &dnfsva, &dattrflag, NULL);
2197	dnp = VTONFS(dvp);
2198	mtx_lock(&dnp->n_mtx);
2199	dnp->n_flag |= NMODIFIED;
2200	if (dattrflag != 0) {
2201		mtx_unlock(&dnp->n_mtx);
2202		(void) nfscl_loadattrcache(&dvp, &dnfsva, NULL, NULL, 0, 1);
2203	} else {
2204		dnp->n_attrstamp = 0;
2205		mtx_unlock(&dnp->n_mtx);
2206		KDTRACE_NFS_ATTRCACHE_FLUSH_DONE(dvp);
2207	}
2208
2209	cache_purge(dvp);
2210	cache_purge(vp);
2211	if (error && NFS_ISV4(dvp))
2212		error = nfscl_maperr(cnp->cn_thread, error, (uid_t)0,
2213		    (gid_t)0);
2214	/*
2215	 * Kludge: Map ENOENT => 0 assuming that you have a reply to a retry.
2216	 */
2217	if (error == ENOENT)
2218		error = 0;
2219	return (error);
2220}
2221
2222/*
2223 * nfs readdir call
2224 */
2225static int
2226nfs_readdir(struct vop_readdir_args *ap)
2227{
2228	struct vnode *vp = ap->a_vp;
2229	struct nfsnode *np = VTONFS(vp);
2230	struct uio *uio = ap->a_uio;
2231	ssize_t tresid;
2232	int error = 0;
2233	struct vattr vattr;
2234
2235	if (vp->v_type != VDIR)
2236		return(EPERM);
2237
2238	/*
2239	 * First, check for hit on the EOF offset cache
2240	 */
2241	if (np->n_direofoffset > 0 && uio->uio_offset >= np->n_direofoffset &&
2242	    (np->n_flag & NMODIFIED) == 0) {
2243		if (VOP_GETATTR(vp, &vattr, ap->a_cred) == 0) {
2244			mtx_lock(&np->n_mtx);
2245			if ((NFS_ISV4(vp) && np->n_change == vattr.va_filerev) ||
2246			    !NFS_TIMESPEC_COMPARE(&np->n_mtime, &vattr.va_mtime)) {
2247				mtx_unlock(&np->n_mtx);
2248				NFSINCRGLOBAL(newnfsstats.direofcache_hits);
2249				return (0);
2250			} else
2251				mtx_unlock(&np->n_mtx);
2252		}
2253	}
2254
2255	/*
2256	 * Call ncl_bioread() to do the real work.
2257	 */
2258	tresid = uio->uio_resid;
2259	error = ncl_bioread(vp, uio, 0, ap->a_cred);
2260
2261	if (!error && uio->uio_resid == tresid)
2262		NFSINCRGLOBAL(newnfsstats.direofcache_misses);
2263	return (error);
2264}
2265
2266/*
2267 * Readdir rpc call.
2268 * Called from below the buffer cache by ncl_doio().
2269 */
2270int
2271ncl_readdirrpc(struct vnode *vp, struct uio *uiop, struct ucred *cred,
2272    struct thread *td)
2273{
2274	struct nfsvattr nfsva;
2275	nfsuint64 *cookiep, cookie;
2276	struct nfsnode *dnp = VTONFS(vp);
2277	struct nfsmount *nmp = VFSTONFS(vp->v_mount);
2278	int error = 0, eof, attrflag;
2279
2280	KASSERT(uiop->uio_iovcnt == 1 &&
2281	    (uiop->uio_offset & (DIRBLKSIZ - 1)) == 0 &&
2282	    (uiop->uio_resid & (DIRBLKSIZ - 1)) == 0,
2283	    ("nfs readdirrpc bad uio"));
2284
2285	/*
2286	 * If there is no cookie, assume directory was stale.
2287	 */
2288	ncl_dircookie_lock(dnp);
2289	cookiep = ncl_getcookie(dnp, uiop->uio_offset, 0);
2290	if (cookiep) {
2291		cookie = *cookiep;
2292		ncl_dircookie_unlock(dnp);
2293	} else {
2294		ncl_dircookie_unlock(dnp);
2295		return (NFSERR_BAD_COOKIE);
2296	}
2297
2298	if (NFSHASNFSV3(nmp) && !NFSHASGOTFSINFO(nmp))
2299		(void)ncl_fsinfo(nmp, vp, cred, td);
2300
2301	error = nfsrpc_readdir(vp, uiop, &cookie, cred, td, &nfsva,
2302	    &attrflag, &eof, NULL);
2303	if (attrflag)
2304		(void) nfscl_loadattrcache(&vp, &nfsva, NULL, NULL, 0, 1);
2305
2306	if (!error) {
2307		/*
2308		 * We are now either at the end of the directory or have filled
2309		 * the block.
2310		 */
2311		if (eof)
2312			dnp->n_direofoffset = uiop->uio_offset;
2313		else {
2314			if (uiop->uio_resid > 0)
2315				ncl_printf("EEK! readdirrpc resid > 0\n");
2316			ncl_dircookie_lock(dnp);
2317			cookiep = ncl_getcookie(dnp, uiop->uio_offset, 1);
2318			*cookiep = cookie;
2319			ncl_dircookie_unlock(dnp);
2320		}
2321	} else if (NFS_ISV4(vp)) {
2322		error = nfscl_maperr(td, error, (uid_t)0, (gid_t)0);
2323	}
2324	return (error);
2325}
2326
2327/*
2328 * NFS V3 readdir plus RPC. Used in place of ncl_readdirrpc().
2329 */
2330int
2331ncl_readdirplusrpc(struct vnode *vp, struct uio *uiop, struct ucred *cred,
2332    struct thread *td)
2333{
2334	struct nfsvattr nfsva;
2335	nfsuint64 *cookiep, cookie;
2336	struct nfsnode *dnp = VTONFS(vp);
2337	struct nfsmount *nmp = VFSTONFS(vp->v_mount);
2338	int error = 0, attrflag, eof;
2339
2340	KASSERT(uiop->uio_iovcnt == 1 &&
2341	    (uiop->uio_offset & (DIRBLKSIZ - 1)) == 0 &&
2342	    (uiop->uio_resid & (DIRBLKSIZ - 1)) == 0,
2343	    ("nfs readdirplusrpc bad uio"));
2344
2345	/*
2346	 * If there is no cookie, assume directory was stale.
2347	 */
2348	ncl_dircookie_lock(dnp);
2349	cookiep = ncl_getcookie(dnp, uiop->uio_offset, 0);
2350	if (cookiep) {
2351		cookie = *cookiep;
2352		ncl_dircookie_unlock(dnp);
2353	} else {
2354		ncl_dircookie_unlock(dnp);
2355		return (NFSERR_BAD_COOKIE);
2356	}
2357
2358	if (NFSHASNFSV3(nmp) && !NFSHASGOTFSINFO(nmp))
2359		(void)ncl_fsinfo(nmp, vp, cred, td);
2360	error = nfsrpc_readdirplus(vp, uiop, &cookie, cred, td, &nfsva,
2361	    &attrflag, &eof, NULL);
2362	if (attrflag)
2363		(void) nfscl_loadattrcache(&vp, &nfsva, NULL, NULL, 0, 1);
2364
2365	if (!error) {
2366		/*
2367		 * We are now either at end of the directory or have filled the
2368		 * the block.
2369		 */
2370		if (eof)
2371			dnp->n_direofoffset = uiop->uio_offset;
2372		else {
2373			if (uiop->uio_resid > 0)
2374				ncl_printf("EEK! readdirplusrpc resid > 0\n");
2375			ncl_dircookie_lock(dnp);
2376			cookiep = ncl_getcookie(dnp, uiop->uio_offset, 1);
2377			*cookiep = cookie;
2378			ncl_dircookie_unlock(dnp);
2379		}
2380	} else if (NFS_ISV4(vp)) {
2381		error = nfscl_maperr(td, error, (uid_t)0, (gid_t)0);
2382	}
2383	return (error);
2384}
2385
2386/*
2387 * Silly rename. To make the NFS filesystem that is stateless look a little
2388 * more like the "ufs" a remove of an active vnode is translated to a rename
2389 * to a funny looking filename that is removed by nfs_inactive on the
2390 * nfsnode. There is the potential for another process on a different client
2391 * to create the same funny name between the nfs_lookitup() fails and the
2392 * nfs_rename() completes, but...
2393 */
2394static int
2395nfs_sillyrename(struct vnode *dvp, struct vnode *vp, struct componentname *cnp)
2396{
2397	struct sillyrename *sp;
2398	struct nfsnode *np;
2399	int error;
2400	short pid;
2401	unsigned int lticks;
2402
2403	cache_purge(dvp);
2404	np = VTONFS(vp);
2405	KASSERT(vp->v_type != VDIR, ("nfs: sillyrename dir"));
2406	MALLOC(sp, struct sillyrename *, sizeof (struct sillyrename),
2407	    M_NEWNFSREQ, M_WAITOK);
2408	sp->s_cred = crhold(cnp->cn_cred);
2409	sp->s_dvp = dvp;
2410	VREF(dvp);
2411
2412	/*
2413	 * Fudge together a funny name.
2414	 * Changing the format of the funny name to accomodate more
2415	 * sillynames per directory.
2416	 * The name is now changed to .nfs.<ticks>.<pid>.4, where ticks is
2417	 * CPU ticks since boot.
2418	 */
2419	pid = cnp->cn_thread->td_proc->p_pid;
2420	lticks = (unsigned int)ticks;
2421	for ( ; ; ) {
2422		sp->s_namlen = sprintf(sp->s_name,
2423				       ".nfs.%08x.%04x4.4", lticks,
2424				       pid);
2425		if (nfs_lookitup(dvp, sp->s_name, sp->s_namlen, sp->s_cred,
2426				 cnp->cn_thread, NULL))
2427			break;
2428		lticks++;
2429	}
2430	error = nfs_renameit(dvp, vp, cnp, sp);
2431	if (error)
2432		goto bad;
2433	error = nfs_lookitup(dvp, sp->s_name, sp->s_namlen, sp->s_cred,
2434		cnp->cn_thread, &np);
2435	np->n_sillyrename = sp;
2436	return (0);
2437bad:
2438	vrele(sp->s_dvp);
2439	crfree(sp->s_cred);
2440	free((caddr_t)sp, M_NEWNFSREQ);
2441	return (error);
2442}
2443
2444/*
2445 * Look up a file name and optionally either update the file handle or
2446 * allocate an nfsnode, depending on the value of npp.
2447 * npp == NULL	--> just do the lookup
2448 * *npp == NULL --> allocate a new nfsnode and make sure attributes are
2449 *			handled too
2450 * *npp != NULL --> update the file handle in the vnode
2451 */
2452static int
2453nfs_lookitup(struct vnode *dvp, char *name, int len, struct ucred *cred,
2454    struct thread *td, struct nfsnode **npp)
2455{
2456	struct vnode *newvp = NULL, *vp;
2457	struct nfsnode *np, *dnp = VTONFS(dvp);
2458	struct nfsfh *nfhp, *onfhp;
2459	struct nfsvattr nfsva, dnfsva;
2460	struct componentname cn;
2461	int error = 0, attrflag, dattrflag;
2462	u_int hash;
2463
2464	error = nfsrpc_lookup(dvp, name, len, cred, td, &dnfsva, &nfsva,
2465	    &nfhp, &attrflag, &dattrflag, NULL);
2466	if (dattrflag)
2467		(void) nfscl_loadattrcache(&dvp, &dnfsva, NULL, NULL, 0, 1);
2468	if (npp && !error) {
2469		if (*npp != NULL) {
2470		    np = *npp;
2471		    vp = NFSTOV(np);
2472		    /*
2473		     * For NFSv4, check to see if it is the same name and
2474		     * replace the name, if it is different.
2475		     */
2476		    if (np->n_v4 != NULL && nfsva.na_type == VREG &&
2477			(np->n_v4->n4_namelen != len ||
2478			 NFSBCMP(name, NFS4NODENAME(np->n_v4), len) ||
2479			 dnp->n_fhp->nfh_len != np->n_v4->n4_fhlen ||
2480			 NFSBCMP(dnp->n_fhp->nfh_fh, np->n_v4->n4_data,
2481			 dnp->n_fhp->nfh_len))) {
2482#ifdef notdef
2483{ char nnn[100]; int nnnl;
2484nnnl = (len < 100) ? len : 99;
2485bcopy(name, nnn, nnnl);
2486nnn[nnnl] = '\0';
2487printf("replace=%s\n",nnn);
2488}
2489#endif
2490			    FREE((caddr_t)np->n_v4, M_NFSV4NODE);
2491			    MALLOC(np->n_v4, struct nfsv4node *,
2492				sizeof (struct nfsv4node) +
2493				dnp->n_fhp->nfh_len + len - 1,
2494				M_NFSV4NODE, M_WAITOK);
2495			    np->n_v4->n4_fhlen = dnp->n_fhp->nfh_len;
2496			    np->n_v4->n4_namelen = len;
2497			    NFSBCOPY(dnp->n_fhp->nfh_fh, np->n_v4->n4_data,
2498				dnp->n_fhp->nfh_len);
2499			    NFSBCOPY(name, NFS4NODENAME(np->n_v4), len);
2500		    }
2501		    hash = fnv_32_buf(nfhp->nfh_fh, nfhp->nfh_len,
2502			FNV1_32_INIT);
2503		    onfhp = np->n_fhp;
2504		    /*
2505		     * Rehash node for new file handle.
2506		     */
2507		    vfs_hash_rehash(vp, hash);
2508		    np->n_fhp = nfhp;
2509		    if (onfhp != NULL)
2510			FREE((caddr_t)onfhp, M_NFSFH);
2511		    newvp = NFSTOV(np);
2512		} else if (NFS_CMPFH(dnp, nfhp->nfh_fh, nfhp->nfh_len)) {
2513		    FREE((caddr_t)nfhp, M_NFSFH);
2514		    VREF(dvp);
2515		    newvp = dvp;
2516		} else {
2517		    cn.cn_nameptr = name;
2518		    cn.cn_namelen = len;
2519		    error = nfscl_nget(dvp->v_mount, dvp, nfhp, &cn, td,
2520			&np, NULL, LK_EXCLUSIVE);
2521		    if (error)
2522			return (error);
2523		    newvp = NFSTOV(np);
2524		}
2525		if (!attrflag && *npp == NULL) {
2526			if (newvp == dvp)
2527				vrele(newvp);
2528			else
2529				vput(newvp);
2530			return (ENOENT);
2531		}
2532		if (attrflag)
2533			(void) nfscl_loadattrcache(&newvp, &nfsva, NULL, NULL,
2534			    0, 1);
2535	}
2536	if (npp && *npp == NULL) {
2537		if (error) {
2538			if (newvp) {
2539				if (newvp == dvp)
2540					vrele(newvp);
2541				else
2542					vput(newvp);
2543			}
2544		} else
2545			*npp = np;
2546	}
2547	if (error && NFS_ISV4(dvp))
2548		error = nfscl_maperr(td, error, (uid_t)0, (gid_t)0);
2549	return (error);
2550}
2551
2552/*
2553 * Nfs Version 3 and 4 commit rpc
2554 */
2555int
2556ncl_commit(struct vnode *vp, u_quad_t offset, int cnt, struct ucred *cred,
2557   struct thread *td)
2558{
2559	struct nfsvattr nfsva;
2560	struct nfsmount *nmp = VFSTONFS(vp->v_mount);
2561	int error, attrflag;
2562
2563	mtx_lock(&nmp->nm_mtx);
2564	if ((nmp->nm_state & NFSSTA_HASWRITEVERF) == 0) {
2565		mtx_unlock(&nmp->nm_mtx);
2566		return (0);
2567	}
2568	mtx_unlock(&nmp->nm_mtx);
2569	error = nfsrpc_commit(vp, offset, cnt, cred, td, &nfsva,
2570	    &attrflag, NULL);
2571	if (attrflag != 0)
2572		(void) nfscl_loadattrcache(&vp, &nfsva, NULL, NULL,
2573		    0, 1);
2574	if (error != 0 && NFS_ISV4(vp))
2575		error = nfscl_maperr(td, error, (uid_t)0, (gid_t)0);
2576	return (error);
2577}
2578
2579/*
2580 * Strategy routine.
2581 * For async requests when nfsiod(s) are running, queue the request by
2582 * calling ncl_asyncio(), otherwise just all ncl_doio() to do the
2583 * request.
2584 */
2585static int
2586nfs_strategy(struct vop_strategy_args *ap)
2587{
2588	struct buf *bp = ap->a_bp;
2589	struct ucred *cr;
2590
2591	KASSERT(!(bp->b_flags & B_DONE),
2592	    ("nfs_strategy: buffer %p unexpectedly marked B_DONE", bp));
2593	BUF_ASSERT_HELD(bp);
2594
2595	if (bp->b_iocmd == BIO_READ)
2596		cr = bp->b_rcred;
2597	else
2598		cr = bp->b_wcred;
2599
2600	/*
2601	 * If the op is asynchronous and an i/o daemon is waiting
2602	 * queue the request, wake it up and wait for completion
2603	 * otherwise just do it ourselves.
2604	 */
2605	if ((bp->b_flags & B_ASYNC) == 0 ||
2606	    ncl_asyncio(VFSTONFS(ap->a_vp->v_mount), bp, NOCRED, curthread))
2607		(void) ncl_doio(ap->a_vp, bp, cr, curthread, 1);
2608	return (0);
2609}
2610
2611/*
2612 * fsync vnode op. Just call ncl_flush() with commit == 1.
2613 */
2614/* ARGSUSED */
2615static int
2616nfs_fsync(struct vop_fsync_args *ap)
2617{
2618
2619	if (ap->a_vp->v_type != VREG) {
2620		/*
2621		 * For NFS, metadata is changed synchronously on the server,
2622		 * so there is nothing to flush. Also, ncl_flush() clears
2623		 * the NMODIFIED flag and that shouldn't be done here for
2624		 * directories.
2625		 */
2626		return (0);
2627	}
2628	return (ncl_flush(ap->a_vp, ap->a_waitfor, NULL, ap->a_td, 1, 0));
2629}
2630
2631/*
2632 * Flush all the blocks associated with a vnode.
2633 * 	Walk through the buffer pool and push any dirty pages
2634 *	associated with the vnode.
2635 * If the called_from_renewthread argument is TRUE, it has been called
2636 * from the NFSv4 renew thread and, as such, cannot block indefinitely
2637 * waiting for a buffer write to complete.
2638 */
2639int
2640ncl_flush(struct vnode *vp, int waitfor, struct ucred *cred, struct thread *td,
2641    int commit, int called_from_renewthread)
2642{
2643	struct nfsnode *np = VTONFS(vp);
2644	struct buf *bp;
2645	int i;
2646	struct buf *nbp;
2647	struct nfsmount *nmp = VFSTONFS(vp->v_mount);
2648	int error = 0, slptimeo = 0, slpflag = 0, retv, bvecpos;
2649	int passone = 1, trycnt = 0;
2650	u_quad_t off, endoff, toff;
2651	struct ucred* wcred = NULL;
2652	struct buf **bvec = NULL;
2653	struct bufobj *bo;
2654#ifndef NFS_COMMITBVECSIZ
2655#define	NFS_COMMITBVECSIZ	20
2656#endif
2657	struct buf *bvec_on_stack[NFS_COMMITBVECSIZ];
2658	int bvecsize = 0, bveccount;
2659
2660	if (called_from_renewthread != 0)
2661		slptimeo = hz;
2662	if (nmp->nm_flag & NFSMNT_INT)
2663		slpflag = NFS_PCATCH;
2664	if (!commit)
2665		passone = 0;
2666	bo = &vp->v_bufobj;
2667	/*
2668	 * A b_flags == (B_DELWRI | B_NEEDCOMMIT) block has been written to the
2669	 * server, but has not been committed to stable storage on the server
2670	 * yet. On the first pass, the byte range is worked out and the commit
2671	 * rpc is done. On the second pass, ncl_writebp() is called to do the
2672	 * job.
2673	 */
2674again:
2675	off = (u_quad_t)-1;
2676	endoff = 0;
2677	bvecpos = 0;
2678	if (NFS_ISV34(vp) && commit) {
2679		if (bvec != NULL && bvec != bvec_on_stack)
2680			free(bvec, M_TEMP);
2681		/*
2682		 * Count up how many buffers waiting for a commit.
2683		 */
2684		bveccount = 0;
2685		BO_LOCK(bo);
2686		TAILQ_FOREACH_SAFE(bp, &bo->bo_dirty.bv_hd, b_bobufs, nbp) {
2687			if (!BUF_ISLOCKED(bp) &&
2688			    (bp->b_flags & (B_DELWRI | B_NEEDCOMMIT))
2689				== (B_DELWRI | B_NEEDCOMMIT))
2690				bveccount++;
2691		}
2692		/*
2693		 * Allocate space to remember the list of bufs to commit.  It is
2694		 * important to use M_NOWAIT here to avoid a race with nfs_write.
2695		 * If we can't get memory (for whatever reason), we will end up
2696		 * committing the buffers one-by-one in the loop below.
2697		 */
2698		if (bveccount > NFS_COMMITBVECSIZ) {
2699			/*
2700			 * Release the vnode interlock to avoid a lock
2701			 * order reversal.
2702			 */
2703			BO_UNLOCK(bo);
2704			bvec = (struct buf **)
2705				malloc(bveccount * sizeof(struct buf *),
2706				       M_TEMP, M_NOWAIT);
2707			BO_LOCK(bo);
2708			if (bvec == NULL) {
2709				bvec = bvec_on_stack;
2710				bvecsize = NFS_COMMITBVECSIZ;
2711			} else
2712				bvecsize = bveccount;
2713		} else {
2714			bvec = bvec_on_stack;
2715			bvecsize = NFS_COMMITBVECSIZ;
2716		}
2717		TAILQ_FOREACH_SAFE(bp, &bo->bo_dirty.bv_hd, b_bobufs, nbp) {
2718			if (bvecpos >= bvecsize)
2719				break;
2720			if (BUF_LOCK(bp, LK_EXCLUSIVE | LK_NOWAIT, NULL)) {
2721				nbp = TAILQ_NEXT(bp, b_bobufs);
2722				continue;
2723			}
2724			if ((bp->b_flags & (B_DELWRI | B_NEEDCOMMIT)) !=
2725			    (B_DELWRI | B_NEEDCOMMIT)) {
2726				BUF_UNLOCK(bp);
2727				nbp = TAILQ_NEXT(bp, b_bobufs);
2728				continue;
2729			}
2730			BO_UNLOCK(bo);
2731			bremfree(bp);
2732			/*
2733			 * Work out if all buffers are using the same cred
2734			 * so we can deal with them all with one commit.
2735			 *
2736			 * NOTE: we are not clearing B_DONE here, so we have
2737			 * to do it later on in this routine if we intend to
2738			 * initiate I/O on the bp.
2739			 *
2740			 * Note: to avoid loopback deadlocks, we do not
2741			 * assign b_runningbufspace.
2742			 */
2743			if (wcred == NULL)
2744				wcred = bp->b_wcred;
2745			else if (wcred != bp->b_wcred)
2746				wcred = NOCRED;
2747			vfs_busy_pages(bp, 1);
2748
2749			BO_LOCK(bo);
2750			/*
2751			 * bp is protected by being locked, but nbp is not
2752			 * and vfs_busy_pages() may sleep.  We have to
2753			 * recalculate nbp.
2754			 */
2755			nbp = TAILQ_NEXT(bp, b_bobufs);
2756
2757			/*
2758			 * A list of these buffers is kept so that the
2759			 * second loop knows which buffers have actually
2760			 * been committed. This is necessary, since there
2761			 * may be a race between the commit rpc and new
2762			 * uncommitted writes on the file.
2763			 */
2764			bvec[bvecpos++] = bp;
2765			toff = ((u_quad_t)bp->b_blkno) * DEV_BSIZE +
2766				bp->b_dirtyoff;
2767			if (toff < off)
2768				off = toff;
2769			toff += (u_quad_t)(bp->b_dirtyend - bp->b_dirtyoff);
2770			if (toff > endoff)
2771				endoff = toff;
2772		}
2773		BO_UNLOCK(bo);
2774	}
2775	if (bvecpos > 0) {
2776		/*
2777		 * Commit data on the server, as required.
2778		 * If all bufs are using the same wcred, then use that with
2779		 * one call for all of them, otherwise commit each one
2780		 * separately.
2781		 */
2782		if (wcred != NOCRED)
2783			retv = ncl_commit(vp, off, (int)(endoff - off),
2784					  wcred, td);
2785		else {
2786			retv = 0;
2787			for (i = 0; i < bvecpos; i++) {
2788				off_t off, size;
2789				bp = bvec[i];
2790				off = ((u_quad_t)bp->b_blkno) * DEV_BSIZE +
2791					bp->b_dirtyoff;
2792				size = (u_quad_t)(bp->b_dirtyend
2793						  - bp->b_dirtyoff);
2794				retv = ncl_commit(vp, off, (int)size,
2795						  bp->b_wcred, td);
2796				if (retv) break;
2797			}
2798		}
2799
2800		if (retv == NFSERR_STALEWRITEVERF)
2801			ncl_clearcommit(vp->v_mount);
2802
2803		/*
2804		 * Now, either mark the blocks I/O done or mark the
2805		 * blocks dirty, depending on whether the commit
2806		 * succeeded.
2807		 */
2808		for (i = 0; i < bvecpos; i++) {
2809			bp = bvec[i];
2810			bp->b_flags &= ~(B_NEEDCOMMIT | B_CLUSTEROK);
2811			if (retv) {
2812				/*
2813				 * Error, leave B_DELWRI intact
2814				 */
2815				vfs_unbusy_pages(bp);
2816				brelse(bp);
2817			} else {
2818				/*
2819				 * Success, remove B_DELWRI ( bundirty() ).
2820				 *
2821				 * b_dirtyoff/b_dirtyend seem to be NFS
2822				 * specific.  We should probably move that
2823				 * into bundirty(). XXX
2824				 */
2825				bufobj_wref(bo);
2826				bp->b_flags |= B_ASYNC;
2827				bundirty(bp);
2828				bp->b_flags &= ~B_DONE;
2829				bp->b_ioflags &= ~BIO_ERROR;
2830				bp->b_dirtyoff = bp->b_dirtyend = 0;
2831				bufdone(bp);
2832			}
2833		}
2834	}
2835
2836	/*
2837	 * Start/do any write(s) that are required.
2838	 */
2839loop:
2840	BO_LOCK(bo);
2841	TAILQ_FOREACH_SAFE(bp, &bo->bo_dirty.bv_hd, b_bobufs, nbp) {
2842		if (BUF_LOCK(bp, LK_EXCLUSIVE | LK_NOWAIT, NULL)) {
2843			if (waitfor != MNT_WAIT || passone)
2844				continue;
2845
2846			error = BUF_TIMELOCK(bp,
2847			    LK_EXCLUSIVE | LK_SLEEPFAIL | LK_INTERLOCK,
2848			    BO_MTX(bo), "nfsfsync", slpflag, slptimeo);
2849			if (error == 0) {
2850				BUF_UNLOCK(bp);
2851				goto loop;
2852			}
2853			if (error == ENOLCK) {
2854				error = 0;
2855				goto loop;
2856			}
2857			if (called_from_renewthread != 0) {
2858				/*
2859				 * Return EIO so the flush will be retried
2860				 * later.
2861				 */
2862				error = EIO;
2863				goto done;
2864			}
2865			if (newnfs_sigintr(nmp, td)) {
2866				error = EINTR;
2867				goto done;
2868			}
2869			if (slpflag & PCATCH) {
2870				slpflag = 0;
2871				slptimeo = 2 * hz;
2872			}
2873			goto loop;
2874		}
2875		if ((bp->b_flags & B_DELWRI) == 0)
2876			panic("nfs_fsync: not dirty");
2877		if ((passone || !commit) && (bp->b_flags & B_NEEDCOMMIT)) {
2878			BUF_UNLOCK(bp);
2879			continue;
2880		}
2881		BO_UNLOCK(bo);
2882		bremfree(bp);
2883		if (passone || !commit)
2884		    bp->b_flags |= B_ASYNC;
2885		else
2886		    bp->b_flags |= B_ASYNC;
2887		bwrite(bp);
2888		if (newnfs_sigintr(nmp, td)) {
2889			error = EINTR;
2890			goto done;
2891		}
2892		goto loop;
2893	}
2894	if (passone) {
2895		passone = 0;
2896		BO_UNLOCK(bo);
2897		goto again;
2898	}
2899	if (waitfor == MNT_WAIT) {
2900		while (bo->bo_numoutput) {
2901			error = bufobj_wwait(bo, slpflag, slptimeo);
2902			if (error) {
2903			    BO_UNLOCK(bo);
2904			    if (called_from_renewthread != 0) {
2905				/*
2906				 * Return EIO so that the flush will be
2907				 * retried later.
2908				 */
2909				error = EIO;
2910				goto done;
2911			    }
2912			    error = newnfs_sigintr(nmp, td);
2913			    if (error)
2914				goto done;
2915			    if (slpflag & PCATCH) {
2916				slpflag = 0;
2917				slptimeo = 2 * hz;
2918			    }
2919			    BO_LOCK(bo);
2920			}
2921		}
2922		if (bo->bo_dirty.bv_cnt != 0 && commit) {
2923			BO_UNLOCK(bo);
2924			goto loop;
2925		}
2926		/*
2927		 * Wait for all the async IO requests to drain
2928		 */
2929		BO_UNLOCK(bo);
2930		mtx_lock(&np->n_mtx);
2931		while (np->n_directio_asyncwr > 0) {
2932			np->n_flag |= NFSYNCWAIT;
2933			error = newnfs_msleep(td, &np->n_directio_asyncwr,
2934			    &np->n_mtx, slpflag | (PRIBIO + 1),
2935			    "nfsfsync", 0);
2936			if (error) {
2937				if (newnfs_sigintr(nmp, td)) {
2938					mtx_unlock(&np->n_mtx);
2939					error = EINTR;
2940					goto done;
2941				}
2942			}
2943		}
2944		mtx_unlock(&np->n_mtx);
2945	} else
2946		BO_UNLOCK(bo);
2947	if (NFSHASPNFS(nmp))
2948		nfscl_layoutcommit(vp, td);
2949	mtx_lock(&np->n_mtx);
2950	if (np->n_flag & NWRITEERR) {
2951		error = np->n_error;
2952		np->n_flag &= ~NWRITEERR;
2953	}
2954  	if (commit && bo->bo_dirty.bv_cnt == 0 &&
2955	    bo->bo_numoutput == 0 && np->n_directio_asyncwr == 0)
2956  		np->n_flag &= ~NMODIFIED;
2957	mtx_unlock(&np->n_mtx);
2958done:
2959	if (bvec != NULL && bvec != bvec_on_stack)
2960		free(bvec, M_TEMP);
2961	if (error == 0 && commit != 0 && waitfor == MNT_WAIT &&
2962	    (bo->bo_dirty.bv_cnt != 0 || bo->bo_numoutput != 0 ||
2963	     np->n_directio_asyncwr != 0) && trycnt++ < 5) {
2964		/* try, try again... */
2965		passone = 1;
2966		wcred = NULL;
2967		bvec = NULL;
2968		bvecsize = 0;
2969printf("try%d\n", trycnt);
2970		goto again;
2971	}
2972	return (error);
2973}
2974
2975/*
2976 * NFS advisory byte-level locks.
2977 */
2978static int
2979nfs_advlock(struct vop_advlock_args *ap)
2980{
2981	struct vnode *vp = ap->a_vp;
2982	struct ucred *cred;
2983	struct nfsnode *np = VTONFS(ap->a_vp);
2984	struct proc *p = (struct proc *)ap->a_id;
2985	struct thread *td = curthread;	/* XXX */
2986	struct vattr va;
2987	int ret, error = EOPNOTSUPP;
2988	u_quad_t size;
2989
2990	if (NFS_ISV4(vp) && (ap->a_flags & (F_POSIX | F_FLOCK)) != 0) {
2991		if (vp->v_type != VREG)
2992			return (EINVAL);
2993		if ((ap->a_flags & F_POSIX) != 0)
2994			cred = p->p_ucred;
2995		else
2996			cred = td->td_ucred;
2997		NFSVOPLOCK(vp, LK_EXCLUSIVE | LK_RETRY);
2998		if (vp->v_iflag & VI_DOOMED) {
2999			NFSVOPUNLOCK(vp, 0);
3000			return (EBADF);
3001		}
3002
3003		/*
3004		 * If this is unlocking a write locked region, flush and
3005		 * commit them before unlocking. This is required by
3006		 * RFC3530 Sec. 9.3.2.
3007		 */
3008		if (ap->a_op == F_UNLCK &&
3009		    nfscl_checkwritelocked(vp, ap->a_fl, cred, td, ap->a_id,
3010		    ap->a_flags))
3011			(void) ncl_flush(vp, MNT_WAIT, cred, td, 1, 0);
3012
3013		/*
3014		 * Loop around doing the lock op, while a blocking lock
3015		 * must wait for the lock op to succeed.
3016		 */
3017		do {
3018			ret = nfsrpc_advlock(vp, np->n_size, ap->a_op,
3019			    ap->a_fl, 0, cred, td, ap->a_id, ap->a_flags);
3020			if (ret == NFSERR_DENIED && (ap->a_flags & F_WAIT) &&
3021			    ap->a_op == F_SETLK) {
3022				NFSVOPUNLOCK(vp, 0);
3023				error = nfs_catnap(PZERO | PCATCH, ret,
3024				    "ncladvl");
3025				if (error)
3026					return (EINTR);
3027				NFSVOPLOCK(vp, LK_EXCLUSIVE | LK_RETRY);
3028				if (vp->v_iflag & VI_DOOMED) {
3029					NFSVOPUNLOCK(vp, 0);
3030					return (EBADF);
3031				}
3032			}
3033		} while (ret == NFSERR_DENIED && (ap->a_flags & F_WAIT) &&
3034		     ap->a_op == F_SETLK);
3035		if (ret == NFSERR_DENIED) {
3036			NFSVOPUNLOCK(vp, 0);
3037			return (EAGAIN);
3038		} else if (ret == EINVAL || ret == EBADF || ret == EINTR) {
3039			NFSVOPUNLOCK(vp, 0);
3040			return (ret);
3041		} else if (ret != 0) {
3042			NFSVOPUNLOCK(vp, 0);
3043			return (EACCES);
3044		}
3045
3046		/*
3047		 * Now, if we just got a lock, invalidate data in the buffer
3048		 * cache, as required, so that the coherency conforms with
3049		 * RFC3530 Sec. 9.3.2.
3050		 */
3051		if (ap->a_op == F_SETLK) {
3052			if ((np->n_flag & NMODIFIED) == 0) {
3053				np->n_attrstamp = 0;
3054				KDTRACE_NFS_ATTRCACHE_FLUSH_DONE(vp);
3055				ret = VOP_GETATTR(vp, &va, cred);
3056			}
3057			if ((np->n_flag & NMODIFIED) || ret ||
3058			    np->n_change != va.va_filerev) {
3059				(void) ncl_vinvalbuf(vp, V_SAVE, td, 1);
3060				np->n_attrstamp = 0;
3061				KDTRACE_NFS_ATTRCACHE_FLUSH_DONE(vp);
3062				ret = VOP_GETATTR(vp, &va, cred);
3063				if (!ret) {
3064					np->n_mtime = va.va_mtime;
3065					np->n_change = va.va_filerev;
3066				}
3067			}
3068		}
3069		NFSVOPUNLOCK(vp, 0);
3070		return (0);
3071	} else if (!NFS_ISV4(vp)) {
3072		error = NFSVOPLOCK(vp, LK_SHARED);
3073		if (error)
3074			return (error);
3075		if ((VFSTONFS(vp->v_mount)->nm_flag & NFSMNT_NOLOCKD) != 0) {
3076			size = VTONFS(vp)->n_size;
3077			NFSVOPUNLOCK(vp, 0);
3078			error = lf_advlock(ap, &(vp->v_lockf), size);
3079		} else {
3080			if (nfs_advlock_p != NULL)
3081				error = nfs_advlock_p(ap);
3082			else {
3083				NFSVOPUNLOCK(vp, 0);
3084				error = ENOLCK;
3085			}
3086		}
3087	}
3088	return (error);
3089}
3090
3091/*
3092 * NFS advisory byte-level locks.
3093 */
3094static int
3095nfs_advlockasync(struct vop_advlockasync_args *ap)
3096{
3097	struct vnode *vp = ap->a_vp;
3098	u_quad_t size;
3099	int error;
3100
3101	if (NFS_ISV4(vp))
3102		return (EOPNOTSUPP);
3103	error = NFSVOPLOCK(vp, LK_SHARED);
3104	if (error)
3105		return (error);
3106	if ((VFSTONFS(vp->v_mount)->nm_flag & NFSMNT_NOLOCKD) != 0) {
3107		size = VTONFS(vp)->n_size;
3108		NFSVOPUNLOCK(vp, 0);
3109		error = lf_advlockasync(ap, &(vp->v_lockf), size);
3110	} else {
3111		NFSVOPUNLOCK(vp, 0);
3112		error = EOPNOTSUPP;
3113	}
3114	return (error);
3115}
3116
3117/*
3118 * Print out the contents of an nfsnode.
3119 */
3120static int
3121nfs_print(struct vop_print_args *ap)
3122{
3123	struct vnode *vp = ap->a_vp;
3124	struct nfsnode *np = VTONFS(vp);
3125
3126	ncl_printf("\tfileid %ld fsid 0x%x",
3127	   np->n_vattr.na_fileid, np->n_vattr.na_fsid);
3128	if (vp->v_type == VFIFO)
3129		fifo_printinfo(vp);
3130	printf("\n");
3131	return (0);
3132}
3133
3134/*
3135 * This is the "real" nfs::bwrite(struct buf*).
3136 * We set B_CACHE if this is a VMIO buffer.
3137 */
3138int
3139ncl_writebp(struct buf *bp, int force __unused, struct thread *td)
3140{
3141	int s;
3142	int oldflags = bp->b_flags;
3143#if 0
3144	int retv = 1;
3145	off_t off;
3146#endif
3147
3148	BUF_ASSERT_HELD(bp);
3149
3150	if (bp->b_flags & B_INVAL) {
3151		brelse(bp);
3152		return(0);
3153	}
3154
3155	bp->b_flags |= B_CACHE;
3156
3157	/*
3158	 * Undirty the bp.  We will redirty it later if the I/O fails.
3159	 */
3160
3161	s = splbio();
3162	bundirty(bp);
3163	bp->b_flags &= ~B_DONE;
3164	bp->b_ioflags &= ~BIO_ERROR;
3165	bp->b_iocmd = BIO_WRITE;
3166
3167	bufobj_wref(bp->b_bufobj);
3168	curthread->td_ru.ru_oublock++;
3169	splx(s);
3170
3171	/*
3172	 * Note: to avoid loopback deadlocks, we do not
3173	 * assign b_runningbufspace.
3174	 */
3175	vfs_busy_pages(bp, 1);
3176
3177	BUF_KERNPROC(bp);
3178	bp->b_iooffset = dbtob(bp->b_blkno);
3179	bstrategy(bp);
3180
3181	if( (oldflags & B_ASYNC) == 0) {
3182		int rtval = bufwait(bp);
3183
3184		if (oldflags & B_DELWRI) {
3185			s = splbio();
3186			reassignbuf(bp);
3187			splx(s);
3188		}
3189		brelse(bp);
3190		return (rtval);
3191	}
3192
3193	return (0);
3194}
3195
3196/*
3197 * nfs special file access vnode op.
3198 * Essentially just get vattr and then imitate iaccess() since the device is
3199 * local to the client.
3200 */
3201static int
3202nfsspec_access(struct vop_access_args *ap)
3203{
3204	struct vattr *vap;
3205	struct ucred *cred = ap->a_cred;
3206	struct vnode *vp = ap->a_vp;
3207	accmode_t accmode = ap->a_accmode;
3208	struct vattr vattr;
3209	int error;
3210
3211	/*
3212	 * Disallow write attempts on filesystems mounted read-only;
3213	 * unless the file is a socket, fifo, or a block or character
3214	 * device resident on the filesystem.
3215	 */
3216	if ((accmode & VWRITE) && (vp->v_mount->mnt_flag & MNT_RDONLY)) {
3217		switch (vp->v_type) {
3218		case VREG:
3219		case VDIR:
3220		case VLNK:
3221			return (EROFS);
3222		default:
3223			break;
3224		}
3225	}
3226	vap = &vattr;
3227	error = VOP_GETATTR(vp, vap, cred);
3228	if (error)
3229		goto out;
3230	error  = vaccess(vp->v_type, vap->va_mode, vap->va_uid, vap->va_gid,
3231	    accmode, cred, NULL);
3232out:
3233	return error;
3234}
3235
3236/*
3237 * Read wrapper for fifos.
3238 */
3239static int
3240nfsfifo_read(struct vop_read_args *ap)
3241{
3242	struct nfsnode *np = VTONFS(ap->a_vp);
3243	int error;
3244
3245	/*
3246	 * Set access flag.
3247	 */
3248	mtx_lock(&np->n_mtx);
3249	np->n_flag |= NACC;
3250	getnanotime(&np->n_atim);
3251	mtx_unlock(&np->n_mtx);
3252	error = fifo_specops.vop_read(ap);
3253	return error;
3254}
3255
3256/*
3257 * Write wrapper for fifos.
3258 */
3259static int
3260nfsfifo_write(struct vop_write_args *ap)
3261{
3262	struct nfsnode *np = VTONFS(ap->a_vp);
3263
3264	/*
3265	 * Set update flag.
3266	 */
3267	mtx_lock(&np->n_mtx);
3268	np->n_flag |= NUPD;
3269	getnanotime(&np->n_mtim);
3270	mtx_unlock(&np->n_mtx);
3271	return(fifo_specops.vop_write(ap));
3272}
3273
3274/*
3275 * Close wrapper for fifos.
3276 *
3277 * Update the times on the nfsnode then do fifo close.
3278 */
3279static int
3280nfsfifo_close(struct vop_close_args *ap)
3281{
3282	struct vnode *vp = ap->a_vp;
3283	struct nfsnode *np = VTONFS(vp);
3284	struct vattr vattr;
3285	struct timespec ts;
3286
3287	mtx_lock(&np->n_mtx);
3288	if (np->n_flag & (NACC | NUPD)) {
3289		getnanotime(&ts);
3290		if (np->n_flag & NACC)
3291			np->n_atim = ts;
3292		if (np->n_flag & NUPD)
3293			np->n_mtim = ts;
3294		np->n_flag |= NCHG;
3295		if (vrefcnt(vp) == 1 &&
3296		    (vp->v_mount->mnt_flag & MNT_RDONLY) == 0) {
3297			VATTR_NULL(&vattr);
3298			if (np->n_flag & NACC)
3299				vattr.va_atime = np->n_atim;
3300			if (np->n_flag & NUPD)
3301				vattr.va_mtime = np->n_mtim;
3302			mtx_unlock(&np->n_mtx);
3303			(void)VOP_SETATTR(vp, &vattr, ap->a_cred);
3304			goto out;
3305		}
3306	}
3307	mtx_unlock(&np->n_mtx);
3308out:
3309	return (fifo_specops.vop_close(ap));
3310}
3311
3312/*
3313 * Just call ncl_writebp() with the force argument set to 1.
3314 *
3315 * NOTE: B_DONE may or may not be set in a_bp on call.
3316 */
3317static int
3318nfs_bwrite(struct buf *bp)
3319{
3320
3321	return (ncl_writebp(bp, 1, curthread));
3322}
3323
3324struct buf_ops buf_ops_newnfs = {
3325	.bop_name	=	"buf_ops_nfs",
3326	.bop_write	=	nfs_bwrite,
3327	.bop_strategy	=	bufstrategy,
3328	.bop_sync	=	bufsync,
3329	.bop_bdflush	=	bufbdflush,
3330};
3331
3332/*
3333 * Cloned from vop_stdlock(), and then the ugly hack added.
3334 */
3335static int
3336nfs_lock1(struct vop_lock1_args *ap)
3337{
3338	struct vnode *vp = ap->a_vp;
3339	int error = 0;
3340
3341	/*
3342	 * Since vfs_hash_get() calls vget() and it will no longer work
3343	 * for FreeBSD8 with flags == 0, I can only think of this horrible
3344	 * hack to work around it. I call vfs_hash_get() with LK_EXCLOTHER
3345	 * and then handle it here. All I want for this case is a v_usecount
3346	 * on the vnode to use for recovery, while another thread might
3347	 * hold a lock on the vnode. I have the other threads blocked, so
3348	 * there isn't any race problem.
3349	 */
3350	if ((ap->a_flags & LK_TYPE_MASK) == LK_EXCLOTHER) {
3351		if ((ap->a_flags & LK_INTERLOCK) == 0)
3352			panic("ncllock1");
3353		if ((vp->v_iflag & VI_DOOMED))
3354			error = ENOENT;
3355		VI_UNLOCK(vp);
3356		return (error);
3357	}
3358	return (_lockmgr_args(vp->v_vnlock, ap->a_flags, VI_MTX(vp),
3359	    LK_WMESG_DEFAULT, LK_PRIO_DEFAULT, LK_TIMO_DEFAULT, ap->a_file,
3360	    ap->a_line));
3361}
3362
3363static int
3364nfs_getacl(struct vop_getacl_args *ap)
3365{
3366	int error;
3367
3368	if (ap->a_type != ACL_TYPE_NFS4)
3369		return (EOPNOTSUPP);
3370	error = nfsrpc_getacl(ap->a_vp, ap->a_cred, ap->a_td, ap->a_aclp,
3371	    NULL);
3372	if (error > NFSERR_STALE) {
3373		(void) nfscl_maperr(ap->a_td, error, (uid_t)0, (gid_t)0);
3374		error = EPERM;
3375	}
3376	return (error);
3377}
3378
3379static int
3380nfs_setacl(struct vop_setacl_args *ap)
3381{
3382	int error;
3383
3384	if (ap->a_type != ACL_TYPE_NFS4)
3385		return (EOPNOTSUPP);
3386	error = nfsrpc_setacl(ap->a_vp, ap->a_cred, ap->a_td, ap->a_aclp,
3387	    NULL);
3388	if (error > NFSERR_STALE) {
3389		(void) nfscl_maperr(ap->a_td, error, (uid_t)0, (gid_t)0);
3390		error = EPERM;
3391	}
3392	return (error);
3393}
3394
3395/*
3396 * Return POSIX pathconf information applicable to nfs filesystems.
3397 */
3398static int
3399nfs_pathconf(struct vop_pathconf_args *ap)
3400{
3401	struct nfsv3_pathconf pc;
3402	struct nfsvattr nfsva;
3403	struct vnode *vp = ap->a_vp;
3404	struct thread *td = curthread;
3405	int attrflag, error;
3406
3407	if (NFS_ISV4(vp) || (NFS_ISV3(vp) && (ap->a_name == _PC_LINK_MAX ||
3408	    ap->a_name == _PC_NAME_MAX || ap->a_name == _PC_CHOWN_RESTRICTED ||
3409	    ap->a_name == _PC_NO_TRUNC))) {
3410		/*
3411		 * Since only the above 4 a_names are returned by the NFSv3
3412		 * Pathconf RPC, there is no point in doing it for others.
3413		 */
3414		error = nfsrpc_pathconf(vp, &pc, td->td_ucred, td, &nfsva,
3415		    &attrflag, NULL);
3416		if (attrflag != 0)
3417			(void) nfscl_loadattrcache(&vp, &nfsva, NULL, NULL, 0,
3418			    1);
3419		if (error != 0)
3420			return (error);
3421	} else {
3422		/*
3423		 * For NFSv2 (or NFSv3 when not one of the above 4 a_names),
3424		 * just fake them.
3425		 */
3426		pc.pc_linkmax = LINK_MAX;
3427		pc.pc_namemax = NFS_MAXNAMLEN;
3428		pc.pc_notrunc = 1;
3429		pc.pc_chownrestricted = 1;
3430		pc.pc_caseinsensitive = 0;
3431		pc.pc_casepreserving = 1;
3432		error = 0;
3433	}
3434	switch (ap->a_name) {
3435	case _PC_LINK_MAX:
3436		*ap->a_retval = pc.pc_linkmax;
3437		break;
3438	case _PC_NAME_MAX:
3439		*ap->a_retval = pc.pc_namemax;
3440		break;
3441	case _PC_PATH_MAX:
3442		*ap->a_retval = PATH_MAX;
3443		break;
3444	case _PC_PIPE_BUF:
3445		*ap->a_retval = PIPE_BUF;
3446		break;
3447	case _PC_CHOWN_RESTRICTED:
3448		*ap->a_retval = pc.pc_chownrestricted;
3449		break;
3450	case _PC_NO_TRUNC:
3451		*ap->a_retval = pc.pc_notrunc;
3452		break;
3453	case _PC_ACL_EXTENDED:
3454		*ap->a_retval = 0;
3455		break;
3456	case _PC_ACL_NFS4:
3457		if (NFS_ISV4(vp) && nfsrv_useacl != 0 && attrflag != 0 &&
3458		    NFSISSET_ATTRBIT(&nfsva.na_suppattr, NFSATTRBIT_ACL))
3459			*ap->a_retval = 1;
3460		else
3461			*ap->a_retval = 0;
3462		break;
3463	case _PC_ACL_PATH_MAX:
3464		if (NFS_ISV4(vp))
3465			*ap->a_retval = ACL_MAX_ENTRIES;
3466		else
3467			*ap->a_retval = 3;
3468		break;
3469	case _PC_MAC_PRESENT:
3470		*ap->a_retval = 0;
3471		break;
3472	case _PC_ASYNC_IO:
3473		/* _PC_ASYNC_IO should have been handled by upper layers. */
3474		KASSERT(0, ("_PC_ASYNC_IO should not get here"));
3475		error = EINVAL;
3476		break;
3477	case _PC_PRIO_IO:
3478		*ap->a_retval = 0;
3479		break;
3480	case _PC_SYNC_IO:
3481		*ap->a_retval = 0;
3482		break;
3483	case _PC_ALLOC_SIZE_MIN:
3484		*ap->a_retval = vp->v_mount->mnt_stat.f_bsize;
3485		break;
3486	case _PC_FILESIZEBITS:
3487		if (NFS_ISV34(vp))
3488			*ap->a_retval = 64;
3489		else
3490			*ap->a_retval = 32;
3491		break;
3492	case _PC_REC_INCR_XFER_SIZE:
3493		*ap->a_retval = vp->v_mount->mnt_stat.f_iosize;
3494		break;
3495	case _PC_REC_MAX_XFER_SIZE:
3496		*ap->a_retval = -1; /* means ``unlimited'' */
3497		break;
3498	case _PC_REC_MIN_XFER_SIZE:
3499		*ap->a_retval = vp->v_mount->mnt_stat.f_iosize;
3500		break;
3501	case _PC_REC_XFER_ALIGN:
3502		*ap->a_retval = PAGE_SIZE;
3503		break;
3504	case _PC_SYMLINK_MAX:
3505		*ap->a_retval = NFS_MAXPATHLEN;
3506		break;
3507
3508	default:
3509		error = EINVAL;
3510		break;
3511	}
3512	return (error);
3513}
3514
3515