nfs_nfsdport.c revision 260144
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 */
33
34#include <sys/cdefs.h>
35__FBSDID("$FreeBSD: stable/10/sys/fs/nfsserver/nfs_nfsdport.c 260144 2013-12-31 22:00:25Z rmacklem $");
36
37#include <sys/capability.h>
38
39/*
40 * Functions that perform the vfs operations required by the routines in
41 * nfsd_serv.c. It is hoped that this change will make the server more
42 * portable.
43 */
44
45#include <fs/nfs/nfsport.h>
46#include <sys/hash.h>
47#include <sys/sysctl.h>
48#include <nlm/nlm_prot.h>
49#include <nlm/nlm.h>
50
51FEATURE(nfsd, "NFSv4 server");
52
53extern u_int32_t newnfs_true, newnfs_false, newnfs_xdrneg1;
54extern int nfsrv_useacl;
55extern int newnfs_numnfsd;
56extern struct mount nfsv4root_mnt;
57extern struct nfsrv_stablefirst nfsrv_stablefirst;
58extern void (*nfsd_call_servertimer)(void);
59extern SVCPOOL	*nfsrvd_pool;
60extern struct nfsv4lock nfsd_suspend_lock;
61struct vfsoptlist nfsv4root_opt, nfsv4root_newopt;
62NFSDLOCKMUTEX;
63struct nfsrchash_bucket nfsrchash_table[NFSRVCACHE_HASHSIZE];
64struct mtx nfsrc_udpmtx;
65struct mtx nfs_v4root_mutex;
66struct nfsrvfh nfs_rootfh, nfs_pubfh;
67int nfs_pubfhset = 0, nfs_rootfhset = 0;
68struct proc *nfsd_master_proc = NULL;
69static pid_t nfsd_master_pid = (pid_t)-1;
70static char nfsd_master_comm[MAXCOMLEN + 1];
71static struct timeval nfsd_master_start;
72static uint32_t nfsv4_sysid = 0;
73
74static int nfssvc_srvcall(struct thread *, struct nfssvc_args *,
75    struct ucred *);
76
77int nfsrv_enable_crossmntpt = 1;
78static int nfs_commit_blks;
79static int nfs_commit_miss;
80extern int nfsrv_issuedelegs;
81extern int nfsrv_dolocallocks;
82
83SYSCTL_NODE(_vfs, OID_AUTO, nfsd, CTLFLAG_RW, 0, "New NFS server");
84SYSCTL_INT(_vfs_nfsd, OID_AUTO, mirrormnt, CTLFLAG_RW,
85    &nfsrv_enable_crossmntpt, 0, "Enable nfsd to cross mount points");
86SYSCTL_INT(_vfs_nfsd, OID_AUTO, commit_blks, CTLFLAG_RW, &nfs_commit_blks,
87    0, "");
88SYSCTL_INT(_vfs_nfsd, OID_AUTO, commit_miss, CTLFLAG_RW, &nfs_commit_miss,
89    0, "");
90SYSCTL_INT(_vfs_nfsd, OID_AUTO, issue_delegations, CTLFLAG_RW,
91    &nfsrv_issuedelegs, 0, "Enable nfsd to issue delegations");
92SYSCTL_INT(_vfs_nfsd, OID_AUTO, enable_locallocks, CTLFLAG_RW,
93    &nfsrv_dolocallocks, 0, "Enable nfsd to acquire local locks on files");
94
95#define	MAX_REORDERED_RPC	16
96#define	NUM_HEURISTIC		1031
97#define	NHUSE_INIT		64
98#define	NHUSE_INC		16
99#define	NHUSE_MAX		2048
100
101static struct nfsheur {
102	struct vnode *nh_vp;	/* vp to match (unreferenced pointer) */
103	off_t nh_nextoff;	/* next offset for sequential detection */
104	int nh_use;		/* use count for selection */
105	int nh_seqcount;	/* heuristic */
106} nfsheur[NUM_HEURISTIC];
107
108
109/*
110 * Heuristic to detect sequential operation.
111 */
112static struct nfsheur *
113nfsrv_sequential_heuristic(struct uio *uio, struct vnode *vp)
114{
115	struct nfsheur *nh;
116	int hi, try;
117
118	/* Locate best candidate. */
119	try = 32;
120	hi = ((int)(vm_offset_t)vp / sizeof(struct vnode)) % NUM_HEURISTIC;
121	nh = &nfsheur[hi];
122	while (try--) {
123		if (nfsheur[hi].nh_vp == vp) {
124			nh = &nfsheur[hi];
125			break;
126		}
127		if (nfsheur[hi].nh_use > 0)
128			--nfsheur[hi].nh_use;
129		hi = (hi + 1) % NUM_HEURISTIC;
130		if (nfsheur[hi].nh_use < nh->nh_use)
131			nh = &nfsheur[hi];
132	}
133
134	/* Initialize hint if this is a new file. */
135	if (nh->nh_vp != vp) {
136		nh->nh_vp = vp;
137		nh->nh_nextoff = uio->uio_offset;
138		nh->nh_use = NHUSE_INIT;
139		if (uio->uio_offset == 0)
140			nh->nh_seqcount = 4;
141		else
142			nh->nh_seqcount = 1;
143	}
144
145	/* Calculate heuristic. */
146	if ((uio->uio_offset == 0 && nh->nh_seqcount > 0) ||
147	    uio->uio_offset == nh->nh_nextoff) {
148		/* See comments in vfs_vnops.c:sequential_heuristic(). */
149		nh->nh_seqcount += howmany(uio->uio_resid, 16384);
150		if (nh->nh_seqcount > IO_SEQMAX)
151			nh->nh_seqcount = IO_SEQMAX;
152	} else if (qabs(uio->uio_offset - nh->nh_nextoff) <= MAX_REORDERED_RPC *
153	    imax(vp->v_mount->mnt_stat.f_iosize, uio->uio_resid)) {
154		/* Probably a reordered RPC, leave seqcount alone. */
155	} else if (nh->nh_seqcount > 1) {
156		nh->nh_seqcount /= 2;
157	} else {
158		nh->nh_seqcount = 0;
159	}
160	nh->nh_use += NHUSE_INC;
161	if (nh->nh_use > NHUSE_MAX)
162		nh->nh_use = NHUSE_MAX;
163	return (nh);
164}
165
166/*
167 * Get attributes into nfsvattr structure.
168 */
169int
170nfsvno_getattr(struct vnode *vp, struct nfsvattr *nvap, struct ucred *cred,
171    struct thread *p, int vpislocked)
172{
173	int error, lockedit = 0;
174
175	if (vpislocked == 0) {
176		/*
177		 * When vpislocked == 0, the vnode is either exclusively
178		 * locked by this thread or not locked by this thread.
179		 * As such, shared lock it, if not exclusively locked.
180		 */
181		if (NFSVOPISLOCKED(vp) != LK_EXCLUSIVE) {
182			lockedit = 1;
183			NFSVOPLOCK(vp, LK_SHARED | LK_RETRY);
184		}
185	}
186	error = VOP_GETATTR(vp, &nvap->na_vattr, cred);
187	if (lockedit != 0)
188		NFSVOPUNLOCK(vp, 0);
189
190	NFSEXITCODE(error);
191	return (error);
192}
193
194/*
195 * Get a file handle for a vnode.
196 */
197int
198nfsvno_getfh(struct vnode *vp, fhandle_t *fhp, struct thread *p)
199{
200	int error;
201
202	NFSBZERO((caddr_t)fhp, sizeof(fhandle_t));
203	fhp->fh_fsid = vp->v_mount->mnt_stat.f_fsid;
204	error = VOP_VPTOFH(vp, &fhp->fh_fid);
205
206	NFSEXITCODE(error);
207	return (error);
208}
209
210/*
211 * Perform access checking for vnodes obtained from file handles that would
212 * refer to files already opened by a Unix client. You cannot just use
213 * vn_writechk() and VOP_ACCESSX() for two reasons.
214 * 1 - You must check for exported rdonly as well as MNT_RDONLY for the write
215 *     case.
216 * 2 - The owner is to be given access irrespective of mode bits for some
217 *     operations, so that processes that chmod after opening a file don't
218 *     break.
219 */
220int
221nfsvno_accchk(struct vnode *vp, accmode_t accmode, struct ucred *cred,
222    struct nfsexstuff *exp, struct thread *p, int override, int vpislocked,
223    u_int32_t *supportedtypep)
224{
225	struct vattr vattr;
226	int error = 0, getret = 0;
227
228	if (vpislocked == 0) {
229		if (NFSVOPLOCK(vp, LK_SHARED) != 0) {
230			error = EPERM;
231			goto out;
232		}
233	}
234	if (accmode & VWRITE) {
235		/* Just vn_writechk() changed to check rdonly */
236		/*
237		 * Disallow write attempts on read-only file systems;
238		 * unless the file is a socket or a block or character
239		 * device resident on the file system.
240		 */
241		if (NFSVNO_EXRDONLY(exp) ||
242		    (vp->v_mount->mnt_flag & MNT_RDONLY)) {
243			switch (vp->v_type) {
244			case VREG:
245			case VDIR:
246			case VLNK:
247				error = EROFS;
248			default:
249				break;
250			}
251		}
252		/*
253		 * If there's shared text associated with
254		 * the inode, try to free it up once.  If
255		 * we fail, we can't allow writing.
256		 */
257		if (VOP_IS_TEXT(vp) && error == 0)
258			error = ETXTBSY;
259	}
260	if (error != 0) {
261		if (vpislocked == 0)
262			NFSVOPUNLOCK(vp, 0);
263		goto out;
264	}
265
266	/*
267	 * Should the override still be applied when ACLs are enabled?
268	 */
269	error = VOP_ACCESSX(vp, accmode, cred, p);
270	if (error != 0 && (accmode & (VDELETE | VDELETE_CHILD))) {
271		/*
272		 * Try again with VEXPLICIT_DENY, to see if the test for
273		 * deletion is supported.
274		 */
275		error = VOP_ACCESSX(vp, accmode | VEXPLICIT_DENY, cred, p);
276		if (error == 0) {
277			if (vp->v_type == VDIR) {
278				accmode &= ~(VDELETE | VDELETE_CHILD);
279				accmode |= VWRITE;
280				error = VOP_ACCESSX(vp, accmode, cred, p);
281			} else if (supportedtypep != NULL) {
282				*supportedtypep &= ~NFSACCESS_DELETE;
283			}
284		}
285	}
286
287	/*
288	 * Allow certain operations for the owner (reads and writes
289	 * on files that are already open).
290	 */
291	if (override != NFSACCCHK_NOOVERRIDE &&
292	    (error == EPERM || error == EACCES)) {
293		if (cred->cr_uid == 0 && (override & NFSACCCHK_ALLOWROOT))
294			error = 0;
295		else if (override & NFSACCCHK_ALLOWOWNER) {
296			getret = VOP_GETATTR(vp, &vattr, cred);
297			if (getret == 0 && cred->cr_uid == vattr.va_uid)
298				error = 0;
299		}
300	}
301	if (vpislocked == 0)
302		NFSVOPUNLOCK(vp, 0);
303
304out:
305	NFSEXITCODE(error);
306	return (error);
307}
308
309/*
310 * Set attribute(s) vnop.
311 */
312int
313nfsvno_setattr(struct vnode *vp, struct nfsvattr *nvap, struct ucred *cred,
314    struct thread *p, struct nfsexstuff *exp)
315{
316	int error;
317
318	error = VOP_SETATTR(vp, &nvap->na_vattr, cred);
319	NFSEXITCODE(error);
320	return (error);
321}
322
323/*
324 * Set up nameidata for a lookup() call and do it.
325 */
326int
327nfsvno_namei(struct nfsrv_descript *nd, struct nameidata *ndp,
328    struct vnode *dp, int islocked, struct nfsexstuff *exp, struct thread *p,
329    struct vnode **retdirp)
330{
331	struct componentname *cnp = &ndp->ni_cnd;
332	int i;
333	struct iovec aiov;
334	struct uio auio;
335	int lockleaf = (cnp->cn_flags & LOCKLEAF) != 0, linklen;
336	int error = 0, crossmnt;
337	char *cp;
338
339	*retdirp = NULL;
340	cnp->cn_nameptr = cnp->cn_pnbuf;
341	ndp->ni_strictrelative = 0;
342	/*
343	 * Extract and set starting directory.
344	 */
345	if (dp->v_type != VDIR) {
346		if (islocked)
347			vput(dp);
348		else
349			vrele(dp);
350		nfsvno_relpathbuf(ndp);
351		error = ENOTDIR;
352		goto out1;
353	}
354	if (islocked)
355		NFSVOPUNLOCK(dp, 0);
356	VREF(dp);
357	*retdirp = dp;
358	if (NFSVNO_EXRDONLY(exp))
359		cnp->cn_flags |= RDONLY;
360	ndp->ni_segflg = UIO_SYSSPACE;
361	crossmnt = 1;
362
363	if (nd->nd_flag & ND_PUBLOOKUP) {
364		ndp->ni_loopcnt = 0;
365		if (cnp->cn_pnbuf[0] == '/') {
366			vrele(dp);
367			/*
368			 * Check for degenerate pathnames here, since lookup()
369			 * panics on them.
370			 */
371			for (i = 1; i < ndp->ni_pathlen; i++)
372				if (cnp->cn_pnbuf[i] != '/')
373					break;
374			if (i == ndp->ni_pathlen) {
375				error = NFSERR_ACCES;
376				goto out;
377			}
378			dp = rootvnode;
379			VREF(dp);
380		}
381	} else if ((nfsrv_enable_crossmntpt == 0 && NFSVNO_EXPORTED(exp)) ||
382	    (nd->nd_flag & ND_NFSV4) == 0) {
383		/*
384		 * Only cross mount points for NFSv4 when doing a
385		 * mount while traversing the file system above
386		 * the mount point, unless nfsrv_enable_crossmntpt is set.
387		 */
388		cnp->cn_flags |= NOCROSSMOUNT;
389		crossmnt = 0;
390	}
391
392	/*
393	 * Initialize for scan, set ni_startdir and bump ref on dp again
394	 * because lookup() will dereference ni_startdir.
395	 */
396
397	cnp->cn_thread = p;
398	ndp->ni_startdir = dp;
399	ndp->ni_rootdir = rootvnode;
400	ndp->ni_topdir = NULL;
401
402	if (!lockleaf)
403		cnp->cn_flags |= LOCKLEAF;
404	for (;;) {
405		cnp->cn_nameptr = cnp->cn_pnbuf;
406		/*
407		 * Call lookup() to do the real work.  If an error occurs,
408		 * ndp->ni_vp and ni_dvp are left uninitialized or NULL and
409		 * we do not have to dereference anything before returning.
410		 * In either case ni_startdir will be dereferenced and NULLed
411		 * out.
412		 */
413		error = lookup(ndp);
414		if (error)
415			break;
416
417		/*
418		 * Check for encountering a symbolic link.  Trivial
419		 * termination occurs if no symlink encountered.
420		 */
421		if ((cnp->cn_flags & ISSYMLINK) == 0) {
422			if ((cnp->cn_flags & (SAVENAME | SAVESTART)) == 0)
423				nfsvno_relpathbuf(ndp);
424			if (ndp->ni_vp && !lockleaf)
425				NFSVOPUNLOCK(ndp->ni_vp, 0);
426			break;
427		}
428
429		/*
430		 * Validate symlink
431		 */
432		if ((cnp->cn_flags & LOCKPARENT) && ndp->ni_pathlen == 1)
433			NFSVOPUNLOCK(ndp->ni_dvp, 0);
434		if (!(nd->nd_flag & ND_PUBLOOKUP)) {
435			error = EINVAL;
436			goto badlink2;
437		}
438
439		if (ndp->ni_loopcnt++ >= MAXSYMLINKS) {
440			error = ELOOP;
441			goto badlink2;
442		}
443		if (ndp->ni_pathlen > 1)
444			cp = uma_zalloc(namei_zone, M_WAITOK);
445		else
446			cp = cnp->cn_pnbuf;
447		aiov.iov_base = cp;
448		aiov.iov_len = MAXPATHLEN;
449		auio.uio_iov = &aiov;
450		auio.uio_iovcnt = 1;
451		auio.uio_offset = 0;
452		auio.uio_rw = UIO_READ;
453		auio.uio_segflg = UIO_SYSSPACE;
454		auio.uio_td = NULL;
455		auio.uio_resid = MAXPATHLEN;
456		error = VOP_READLINK(ndp->ni_vp, &auio, cnp->cn_cred);
457		if (error) {
458		badlink1:
459			if (ndp->ni_pathlen > 1)
460				uma_zfree(namei_zone, cp);
461		badlink2:
462			vrele(ndp->ni_dvp);
463			vput(ndp->ni_vp);
464			break;
465		}
466		linklen = MAXPATHLEN - auio.uio_resid;
467		if (linklen == 0) {
468			error = ENOENT;
469			goto badlink1;
470		}
471		if (linklen + ndp->ni_pathlen >= MAXPATHLEN) {
472			error = ENAMETOOLONG;
473			goto badlink1;
474		}
475
476		/*
477		 * Adjust or replace path
478		 */
479		if (ndp->ni_pathlen > 1) {
480			NFSBCOPY(ndp->ni_next, cp + linklen, ndp->ni_pathlen);
481			uma_zfree(namei_zone, cnp->cn_pnbuf);
482			cnp->cn_pnbuf = cp;
483		} else
484			cnp->cn_pnbuf[linklen] = '\0';
485		ndp->ni_pathlen += linklen;
486
487		/*
488		 * Cleanup refs for next loop and check if root directory
489		 * should replace current directory.  Normally ni_dvp
490		 * becomes the new base directory and is cleaned up when
491		 * we loop.  Explicitly null pointers after invalidation
492		 * to clarify operation.
493		 */
494		vput(ndp->ni_vp);
495		ndp->ni_vp = NULL;
496
497		if (cnp->cn_pnbuf[0] == '/') {
498			vrele(ndp->ni_dvp);
499			ndp->ni_dvp = ndp->ni_rootdir;
500			VREF(ndp->ni_dvp);
501		}
502		ndp->ni_startdir = ndp->ni_dvp;
503		ndp->ni_dvp = NULL;
504	}
505	if (!lockleaf)
506		cnp->cn_flags &= ~LOCKLEAF;
507
508out:
509	if (error) {
510		nfsvno_relpathbuf(ndp);
511		ndp->ni_vp = NULL;
512		ndp->ni_dvp = NULL;
513		ndp->ni_startdir = NULL;
514	} else if ((ndp->ni_cnd.cn_flags & (WANTPARENT|LOCKPARENT)) == 0) {
515		ndp->ni_dvp = NULL;
516	}
517
518out1:
519	NFSEXITCODE2(error, nd);
520	return (error);
521}
522
523/*
524 * Set up a pathname buffer and return a pointer to it and, optionally
525 * set a hash pointer.
526 */
527void
528nfsvno_setpathbuf(struct nameidata *ndp, char **bufpp, u_long **hashpp)
529{
530	struct componentname *cnp = &ndp->ni_cnd;
531
532	cnp->cn_flags |= (NOMACCHECK | HASBUF);
533	cnp->cn_pnbuf = uma_zalloc(namei_zone, M_WAITOK);
534	if (hashpp != NULL)
535		*hashpp = NULL;
536	*bufpp = cnp->cn_pnbuf;
537}
538
539/*
540 * Release the above path buffer, if not released by nfsvno_namei().
541 */
542void
543nfsvno_relpathbuf(struct nameidata *ndp)
544{
545
546	if ((ndp->ni_cnd.cn_flags & HASBUF) == 0)
547		panic("nfsrelpath");
548	uma_zfree(namei_zone, ndp->ni_cnd.cn_pnbuf);
549	ndp->ni_cnd.cn_flags &= ~HASBUF;
550}
551
552/*
553 * Readlink vnode op into an mbuf list.
554 */
555int
556nfsvno_readlink(struct vnode *vp, struct ucred *cred, struct thread *p,
557    struct mbuf **mpp, struct mbuf **mpendp, int *lenp)
558{
559	struct iovec iv[(NFS_MAXPATHLEN+MLEN-1)/MLEN];
560	struct iovec *ivp = iv;
561	struct uio io, *uiop = &io;
562	struct mbuf *mp, *mp2 = NULL, *mp3 = NULL;
563	int i, len, tlen, error = 0;
564
565	len = 0;
566	i = 0;
567	while (len < NFS_MAXPATHLEN) {
568		NFSMGET(mp);
569		MCLGET(mp, M_WAITOK);
570		mp->m_len = NFSMSIZ(mp);
571		if (len == 0) {
572			mp3 = mp2 = mp;
573		} else {
574			mp2->m_next = mp;
575			mp2 = mp;
576		}
577		if ((len + mp->m_len) > NFS_MAXPATHLEN) {
578			mp->m_len = NFS_MAXPATHLEN - len;
579			len = NFS_MAXPATHLEN;
580		} else {
581			len += mp->m_len;
582		}
583		ivp->iov_base = mtod(mp, caddr_t);
584		ivp->iov_len = mp->m_len;
585		i++;
586		ivp++;
587	}
588	uiop->uio_iov = iv;
589	uiop->uio_iovcnt = i;
590	uiop->uio_offset = 0;
591	uiop->uio_resid = len;
592	uiop->uio_rw = UIO_READ;
593	uiop->uio_segflg = UIO_SYSSPACE;
594	uiop->uio_td = NULL;
595	error = VOP_READLINK(vp, uiop, cred);
596	if (error) {
597		m_freem(mp3);
598		*lenp = 0;
599		goto out;
600	}
601	if (uiop->uio_resid > 0) {
602		len -= uiop->uio_resid;
603		tlen = NFSM_RNDUP(len);
604		nfsrv_adj(mp3, NFS_MAXPATHLEN - tlen, tlen - len);
605	}
606	*lenp = len;
607	*mpp = mp3;
608	*mpendp = mp;
609
610out:
611	NFSEXITCODE(error);
612	return (error);
613}
614
615/*
616 * Read vnode op call into mbuf list.
617 */
618int
619nfsvno_read(struct vnode *vp, off_t off, int cnt, struct ucred *cred,
620    struct thread *p, struct mbuf **mpp, struct mbuf **mpendp)
621{
622	struct mbuf *m;
623	int i;
624	struct iovec *iv;
625	struct iovec *iv2;
626	int error = 0, len, left, siz, tlen, ioflag = 0;
627	struct mbuf *m2 = NULL, *m3;
628	struct uio io, *uiop = &io;
629	struct nfsheur *nh;
630
631	len = left = NFSM_RNDUP(cnt);
632	m3 = NULL;
633	/*
634	 * Generate the mbuf list with the uio_iov ref. to it.
635	 */
636	i = 0;
637	while (left > 0) {
638		NFSMGET(m);
639		MCLGET(m, M_WAITOK);
640		m->m_len = 0;
641		siz = min(M_TRAILINGSPACE(m), left);
642		left -= siz;
643		i++;
644		if (m3)
645			m2->m_next = m;
646		else
647			m3 = m;
648		m2 = m;
649	}
650	MALLOC(iv, struct iovec *, i * sizeof (struct iovec),
651	    M_TEMP, M_WAITOK);
652	uiop->uio_iov = iv2 = iv;
653	m = m3;
654	left = len;
655	i = 0;
656	while (left > 0) {
657		if (m == NULL)
658			panic("nfsvno_read iov");
659		siz = min(M_TRAILINGSPACE(m), left);
660		if (siz > 0) {
661			iv->iov_base = mtod(m, caddr_t) + m->m_len;
662			iv->iov_len = siz;
663			m->m_len += siz;
664			left -= siz;
665			iv++;
666			i++;
667		}
668		m = m->m_next;
669	}
670	uiop->uio_iovcnt = i;
671	uiop->uio_offset = off;
672	uiop->uio_resid = len;
673	uiop->uio_rw = UIO_READ;
674	uiop->uio_segflg = UIO_SYSSPACE;
675	nh = nfsrv_sequential_heuristic(uiop, vp);
676	ioflag |= nh->nh_seqcount << IO_SEQSHIFT;
677	error = VOP_READ(vp, uiop, IO_NODELOCKED | ioflag, cred);
678	FREE((caddr_t)iv2, M_TEMP);
679	if (error) {
680		m_freem(m3);
681		*mpp = NULL;
682		goto out;
683	}
684	nh->nh_nextoff = uiop->uio_offset;
685	tlen = len - uiop->uio_resid;
686	cnt = cnt < tlen ? cnt : tlen;
687	tlen = NFSM_RNDUP(cnt);
688	if (tlen == 0) {
689		m_freem(m3);
690		m3 = NULL;
691	} else if (len != tlen || tlen != cnt)
692		nfsrv_adj(m3, len - tlen, tlen - cnt);
693	*mpp = m3;
694	*mpendp = m2;
695
696out:
697	NFSEXITCODE(error);
698	return (error);
699}
700
701/*
702 * Write vnode op from an mbuf list.
703 */
704int
705nfsvno_write(struct vnode *vp, off_t off, int retlen, int cnt, int stable,
706    struct mbuf *mp, char *cp, struct ucred *cred, struct thread *p)
707{
708	struct iovec *ivp;
709	int i, len;
710	struct iovec *iv;
711	int ioflags, error;
712	struct uio io, *uiop = &io;
713	struct nfsheur *nh;
714
715	MALLOC(ivp, struct iovec *, cnt * sizeof (struct iovec), M_TEMP,
716	    M_WAITOK);
717	uiop->uio_iov = iv = ivp;
718	uiop->uio_iovcnt = cnt;
719	i = mtod(mp, caddr_t) + mp->m_len - cp;
720	len = retlen;
721	while (len > 0) {
722		if (mp == NULL)
723			panic("nfsvno_write");
724		if (i > 0) {
725			i = min(i, len);
726			ivp->iov_base = cp;
727			ivp->iov_len = i;
728			ivp++;
729			len -= i;
730		}
731		mp = mp->m_next;
732		if (mp) {
733			i = mp->m_len;
734			cp = mtod(mp, caddr_t);
735		}
736	}
737
738	if (stable == NFSWRITE_UNSTABLE)
739		ioflags = IO_NODELOCKED;
740	else
741		ioflags = (IO_SYNC | IO_NODELOCKED);
742	uiop->uio_resid = retlen;
743	uiop->uio_rw = UIO_WRITE;
744	uiop->uio_segflg = UIO_SYSSPACE;
745	NFSUIOPROC(uiop, p);
746	uiop->uio_offset = off;
747	nh = nfsrv_sequential_heuristic(uiop, vp);
748	ioflags |= nh->nh_seqcount << IO_SEQSHIFT;
749	error = VOP_WRITE(vp, uiop, ioflags, cred);
750	if (error == 0)
751		nh->nh_nextoff = uiop->uio_offset;
752	FREE((caddr_t)iv, M_TEMP);
753
754	NFSEXITCODE(error);
755	return (error);
756}
757
758/*
759 * Common code for creating a regular file (plus special files for V2).
760 */
761int
762nfsvno_createsub(struct nfsrv_descript *nd, struct nameidata *ndp,
763    struct vnode **vpp, struct nfsvattr *nvap, int *exclusive_flagp,
764    int32_t *cverf, NFSDEV_T rdev, struct thread *p, struct nfsexstuff *exp)
765{
766	u_quad_t tempsize;
767	int error;
768
769	error = nd->nd_repstat;
770	if (!error && ndp->ni_vp == NULL) {
771		if (nvap->na_type == VREG || nvap->na_type == VSOCK) {
772			vrele(ndp->ni_startdir);
773			error = VOP_CREATE(ndp->ni_dvp,
774			    &ndp->ni_vp, &ndp->ni_cnd, &nvap->na_vattr);
775			vput(ndp->ni_dvp);
776			nfsvno_relpathbuf(ndp);
777			if (!error) {
778				if (*exclusive_flagp) {
779					*exclusive_flagp = 0;
780					NFSVNO_ATTRINIT(nvap);
781					nvap->na_atime.tv_sec = cverf[0];
782					nvap->na_atime.tv_nsec = cverf[1];
783					error = VOP_SETATTR(ndp->ni_vp,
784					    &nvap->na_vattr, nd->nd_cred);
785				}
786			}
787		/*
788		 * NFS V2 Only. nfsrvd_mknod() does this for V3.
789		 * (This implies, just get out on an error.)
790		 */
791		} else if (nvap->na_type == VCHR || nvap->na_type == VBLK ||
792			nvap->na_type == VFIFO) {
793			if (nvap->na_type == VCHR && rdev == 0xffffffff)
794				nvap->na_type = VFIFO;
795                        if (nvap->na_type != VFIFO &&
796			    (error = priv_check_cred(nd->nd_cred,
797			     PRIV_VFS_MKNOD_DEV, 0))) {
798				vrele(ndp->ni_startdir);
799				nfsvno_relpathbuf(ndp);
800				vput(ndp->ni_dvp);
801				goto out;
802			}
803			nvap->na_rdev = rdev;
804			error = VOP_MKNOD(ndp->ni_dvp, &ndp->ni_vp,
805			    &ndp->ni_cnd, &nvap->na_vattr);
806			vput(ndp->ni_dvp);
807			nfsvno_relpathbuf(ndp);
808			vrele(ndp->ni_startdir);
809			if (error)
810				goto out;
811		} else {
812			vrele(ndp->ni_startdir);
813			nfsvno_relpathbuf(ndp);
814			vput(ndp->ni_dvp);
815			error = ENXIO;
816			goto out;
817		}
818		*vpp = ndp->ni_vp;
819	} else {
820		/*
821		 * Handle cases where error is already set and/or
822		 * the file exists.
823		 * 1 - clean up the lookup
824		 * 2 - iff !error and na_size set, truncate it
825		 */
826		vrele(ndp->ni_startdir);
827		nfsvno_relpathbuf(ndp);
828		*vpp = ndp->ni_vp;
829		if (ndp->ni_dvp == *vpp)
830			vrele(ndp->ni_dvp);
831		else
832			vput(ndp->ni_dvp);
833		if (!error && nvap->na_size != VNOVAL) {
834			error = nfsvno_accchk(*vpp, VWRITE,
835			    nd->nd_cred, exp, p, NFSACCCHK_NOOVERRIDE,
836			    NFSACCCHK_VPISLOCKED, NULL);
837			if (!error) {
838				tempsize = nvap->na_size;
839				NFSVNO_ATTRINIT(nvap);
840				nvap->na_size = tempsize;
841				error = VOP_SETATTR(*vpp,
842				    &nvap->na_vattr, nd->nd_cred);
843			}
844		}
845		if (error)
846			vput(*vpp);
847	}
848
849out:
850	NFSEXITCODE(error);
851	return (error);
852}
853
854/*
855 * Do a mknod vnode op.
856 */
857int
858nfsvno_mknod(struct nameidata *ndp, struct nfsvattr *nvap, struct ucred *cred,
859    struct thread *p)
860{
861	int error = 0;
862	enum vtype vtyp;
863
864	vtyp = nvap->na_type;
865	/*
866	 * Iff doesn't exist, create it.
867	 */
868	if (ndp->ni_vp) {
869		vrele(ndp->ni_startdir);
870		nfsvno_relpathbuf(ndp);
871		vput(ndp->ni_dvp);
872		vrele(ndp->ni_vp);
873		error = EEXIST;
874		goto out;
875	}
876	if (vtyp != VCHR && vtyp != VBLK && vtyp != VSOCK && vtyp != VFIFO) {
877		vrele(ndp->ni_startdir);
878		nfsvno_relpathbuf(ndp);
879		vput(ndp->ni_dvp);
880		error = NFSERR_BADTYPE;
881		goto out;
882	}
883	if (vtyp == VSOCK) {
884		vrele(ndp->ni_startdir);
885		error = VOP_CREATE(ndp->ni_dvp, &ndp->ni_vp,
886		    &ndp->ni_cnd, &nvap->na_vattr);
887		vput(ndp->ni_dvp);
888		nfsvno_relpathbuf(ndp);
889	} else {
890		if (nvap->na_type != VFIFO &&
891		    (error = priv_check_cred(cred, PRIV_VFS_MKNOD_DEV, 0))) {
892			vrele(ndp->ni_startdir);
893			nfsvno_relpathbuf(ndp);
894			vput(ndp->ni_dvp);
895			goto out;
896		}
897		error = VOP_MKNOD(ndp->ni_dvp, &ndp->ni_vp,
898		    &ndp->ni_cnd, &nvap->na_vattr);
899		vput(ndp->ni_dvp);
900		nfsvno_relpathbuf(ndp);
901		vrele(ndp->ni_startdir);
902		/*
903		 * Since VOP_MKNOD returns the ni_vp, I can't
904		 * see any reason to do the lookup.
905		 */
906	}
907
908out:
909	NFSEXITCODE(error);
910	return (error);
911}
912
913/*
914 * Mkdir vnode op.
915 */
916int
917nfsvno_mkdir(struct nameidata *ndp, struct nfsvattr *nvap, uid_t saved_uid,
918    struct ucred *cred, struct thread *p, struct nfsexstuff *exp)
919{
920	int error = 0;
921
922	if (ndp->ni_vp != NULL) {
923		if (ndp->ni_dvp == ndp->ni_vp)
924			vrele(ndp->ni_dvp);
925		else
926			vput(ndp->ni_dvp);
927		vrele(ndp->ni_vp);
928		nfsvno_relpathbuf(ndp);
929		error = EEXIST;
930		goto out;
931	}
932	error = VOP_MKDIR(ndp->ni_dvp, &ndp->ni_vp, &ndp->ni_cnd,
933	    &nvap->na_vattr);
934	vput(ndp->ni_dvp);
935	nfsvno_relpathbuf(ndp);
936
937out:
938	NFSEXITCODE(error);
939	return (error);
940}
941
942/*
943 * symlink vnode op.
944 */
945int
946nfsvno_symlink(struct nameidata *ndp, struct nfsvattr *nvap, char *pathcp,
947    int pathlen, int not_v2, uid_t saved_uid, struct ucred *cred, struct thread *p,
948    struct nfsexstuff *exp)
949{
950	int error = 0;
951
952	if (ndp->ni_vp) {
953		vrele(ndp->ni_startdir);
954		nfsvno_relpathbuf(ndp);
955		if (ndp->ni_dvp == ndp->ni_vp)
956			vrele(ndp->ni_dvp);
957		else
958			vput(ndp->ni_dvp);
959		vrele(ndp->ni_vp);
960		error = EEXIST;
961		goto out;
962	}
963
964	error = VOP_SYMLINK(ndp->ni_dvp, &ndp->ni_vp, &ndp->ni_cnd,
965	    &nvap->na_vattr, pathcp);
966	vput(ndp->ni_dvp);
967	vrele(ndp->ni_startdir);
968	nfsvno_relpathbuf(ndp);
969	/*
970	 * Although FreeBSD still had the lookup code in
971	 * it for 7/current, there doesn't seem to be any
972	 * point, since VOP_SYMLINK() returns the ni_vp.
973	 * Just vput it for v2.
974	 */
975	if (!not_v2 && !error)
976		vput(ndp->ni_vp);
977
978out:
979	NFSEXITCODE(error);
980	return (error);
981}
982
983/*
984 * Parse symbolic link arguments.
985 * This function has an ugly side effect. It will MALLOC() an area for
986 * the symlink and set iov_base to point to it, only if it succeeds.
987 * So, if it returns with uiop->uio_iov->iov_base != NULL, that must
988 * be FREE'd later.
989 */
990int
991nfsvno_getsymlink(struct nfsrv_descript *nd, struct nfsvattr *nvap,
992    struct thread *p, char **pathcpp, int *lenp)
993{
994	u_int32_t *tl;
995	char *pathcp = NULL;
996	int error = 0, len;
997	struct nfsv2_sattr *sp;
998
999	*pathcpp = NULL;
1000	*lenp = 0;
1001	if ((nd->nd_flag & ND_NFSV3) &&
1002	    (error = nfsrv_sattr(nd, nvap, NULL, NULL, p)))
1003		goto nfsmout;
1004	NFSM_DISSECT(tl, u_int32_t *, NFSX_UNSIGNED);
1005	len = fxdr_unsigned(int, *tl);
1006	if (len > NFS_MAXPATHLEN || len <= 0) {
1007		error = EBADRPC;
1008		goto nfsmout;
1009	}
1010	MALLOC(pathcp, caddr_t, len + 1, M_TEMP, M_WAITOK);
1011	error = nfsrv_mtostr(nd, pathcp, len);
1012	if (error)
1013		goto nfsmout;
1014	if (nd->nd_flag & ND_NFSV2) {
1015		NFSM_DISSECT(sp, struct nfsv2_sattr *, NFSX_V2SATTR);
1016		nvap->na_mode = fxdr_unsigned(u_int16_t, sp->sa_mode);
1017	}
1018	*pathcpp = pathcp;
1019	*lenp = len;
1020	NFSEXITCODE2(0, nd);
1021	return (0);
1022nfsmout:
1023	if (pathcp)
1024		free(pathcp, M_TEMP);
1025	NFSEXITCODE2(error, nd);
1026	return (error);
1027}
1028
1029/*
1030 * Remove a non-directory object.
1031 */
1032int
1033nfsvno_removesub(struct nameidata *ndp, int is_v4, struct ucred *cred,
1034    struct thread *p, struct nfsexstuff *exp)
1035{
1036	struct vnode *vp;
1037	int error = 0;
1038
1039	vp = ndp->ni_vp;
1040	if (vp->v_type == VDIR)
1041		error = NFSERR_ISDIR;
1042	else if (is_v4)
1043		error = nfsrv_checkremove(vp, 1, p);
1044	if (!error)
1045		error = VOP_REMOVE(ndp->ni_dvp, vp, &ndp->ni_cnd);
1046	if (ndp->ni_dvp == vp)
1047		vrele(ndp->ni_dvp);
1048	else
1049		vput(ndp->ni_dvp);
1050	vput(vp);
1051	if ((ndp->ni_cnd.cn_flags & SAVENAME) != 0)
1052		nfsvno_relpathbuf(ndp);
1053	NFSEXITCODE(error);
1054	return (error);
1055}
1056
1057/*
1058 * Remove a directory.
1059 */
1060int
1061nfsvno_rmdirsub(struct nameidata *ndp, int is_v4, struct ucred *cred,
1062    struct thread *p, struct nfsexstuff *exp)
1063{
1064	struct vnode *vp;
1065	int error = 0;
1066
1067	vp = ndp->ni_vp;
1068	if (vp->v_type != VDIR) {
1069		error = ENOTDIR;
1070		goto out;
1071	}
1072	/*
1073	 * No rmdir "." please.
1074	 */
1075	if (ndp->ni_dvp == vp) {
1076		error = EINVAL;
1077		goto out;
1078	}
1079	/*
1080	 * The root of a mounted filesystem cannot be deleted.
1081	 */
1082	if (vp->v_vflag & VV_ROOT)
1083		error = EBUSY;
1084out:
1085	if (!error)
1086		error = VOP_RMDIR(ndp->ni_dvp, vp, &ndp->ni_cnd);
1087	if (ndp->ni_dvp == vp)
1088		vrele(ndp->ni_dvp);
1089	else
1090		vput(ndp->ni_dvp);
1091	vput(vp);
1092	if ((ndp->ni_cnd.cn_flags & SAVENAME) != 0)
1093		nfsvno_relpathbuf(ndp);
1094	NFSEXITCODE(error);
1095	return (error);
1096}
1097
1098/*
1099 * Rename vnode op.
1100 */
1101int
1102nfsvno_rename(struct nameidata *fromndp, struct nameidata *tondp,
1103    u_int32_t ndstat, u_int32_t ndflag, struct ucred *cred, struct thread *p)
1104{
1105	struct vnode *fvp, *tvp, *tdvp;
1106	int error = 0;
1107
1108	fvp = fromndp->ni_vp;
1109	if (ndstat) {
1110		vrele(fromndp->ni_dvp);
1111		vrele(fvp);
1112		error = ndstat;
1113		goto out1;
1114	}
1115	tdvp = tondp->ni_dvp;
1116	tvp = tondp->ni_vp;
1117	if (tvp != NULL) {
1118		if (fvp->v_type == VDIR && tvp->v_type != VDIR) {
1119			error = (ndflag & ND_NFSV2) ? EISDIR : EEXIST;
1120			goto out;
1121		} else if (fvp->v_type != VDIR && tvp->v_type == VDIR) {
1122			error = (ndflag & ND_NFSV2) ? ENOTDIR : EEXIST;
1123			goto out;
1124		}
1125		if (tvp->v_type == VDIR && tvp->v_mountedhere) {
1126			error = (ndflag & ND_NFSV2) ? ENOTEMPTY : EXDEV;
1127			goto out;
1128		}
1129
1130		/*
1131		 * A rename to '.' or '..' results in a prematurely
1132		 * unlocked vnode on FreeBSD5, so I'm just going to fail that
1133		 * here.
1134		 */
1135		if ((tondp->ni_cnd.cn_namelen == 1 &&
1136		     tondp->ni_cnd.cn_nameptr[0] == '.') ||
1137		    (tondp->ni_cnd.cn_namelen == 2 &&
1138		     tondp->ni_cnd.cn_nameptr[0] == '.' &&
1139		     tondp->ni_cnd.cn_nameptr[1] == '.')) {
1140			error = EINVAL;
1141			goto out;
1142		}
1143	}
1144	if (fvp->v_type == VDIR && fvp->v_mountedhere) {
1145		error = (ndflag & ND_NFSV2) ? ENOTEMPTY : EXDEV;
1146		goto out;
1147	}
1148	if (fvp->v_mount != tdvp->v_mount) {
1149		error = (ndflag & ND_NFSV2) ? ENOTEMPTY : EXDEV;
1150		goto out;
1151	}
1152	if (fvp == tdvp) {
1153		error = (ndflag & ND_NFSV2) ? ENOTEMPTY : EINVAL;
1154		goto out;
1155	}
1156	if (fvp == tvp) {
1157		/*
1158		 * If source and destination are the same, there is nothing to
1159		 * do. Set error to -1 to indicate this.
1160		 */
1161		error = -1;
1162		goto out;
1163	}
1164	if (ndflag & ND_NFSV4) {
1165		if (NFSVOPLOCK(fvp, LK_EXCLUSIVE) == 0) {
1166			error = nfsrv_checkremove(fvp, 0, p);
1167			NFSVOPUNLOCK(fvp, 0);
1168		} else
1169			error = EPERM;
1170		if (tvp && !error)
1171			error = nfsrv_checkremove(tvp, 1, p);
1172	} else {
1173		/*
1174		 * For NFSv2 and NFSv3, try to get rid of the delegation, so
1175		 * that the NFSv4 client won't be confused by the rename.
1176		 * Since nfsd_recalldelegation() can only be called on an
1177		 * unlocked vnode at this point and fvp is the file that will
1178		 * still exist after the rename, just do fvp.
1179		 */
1180		nfsd_recalldelegation(fvp, p);
1181	}
1182out:
1183	if (!error) {
1184		error = VOP_RENAME(fromndp->ni_dvp, fromndp->ni_vp,
1185		    &fromndp->ni_cnd, tondp->ni_dvp, tondp->ni_vp,
1186		    &tondp->ni_cnd);
1187	} else {
1188		if (tdvp == tvp)
1189			vrele(tdvp);
1190		else
1191			vput(tdvp);
1192		if (tvp)
1193			vput(tvp);
1194		vrele(fromndp->ni_dvp);
1195		vrele(fvp);
1196		if (error == -1)
1197			error = 0;
1198	}
1199	vrele(tondp->ni_startdir);
1200	nfsvno_relpathbuf(tondp);
1201out1:
1202	vrele(fromndp->ni_startdir);
1203	nfsvno_relpathbuf(fromndp);
1204	NFSEXITCODE(error);
1205	return (error);
1206}
1207
1208/*
1209 * Link vnode op.
1210 */
1211int
1212nfsvno_link(struct nameidata *ndp, struct vnode *vp, struct ucred *cred,
1213    struct thread *p, struct nfsexstuff *exp)
1214{
1215	struct vnode *xp;
1216	int error = 0;
1217
1218	xp = ndp->ni_vp;
1219	if (xp != NULL) {
1220		error = EEXIST;
1221	} else {
1222		xp = ndp->ni_dvp;
1223		if (vp->v_mount != xp->v_mount)
1224			error = EXDEV;
1225	}
1226	if (!error) {
1227		NFSVOPLOCK(vp, LK_EXCLUSIVE | LK_RETRY);
1228		if ((vp->v_iflag & VI_DOOMED) == 0)
1229			error = VOP_LINK(ndp->ni_dvp, vp, &ndp->ni_cnd);
1230		else
1231			error = EPERM;
1232		if (ndp->ni_dvp == vp)
1233			vrele(ndp->ni_dvp);
1234		else
1235			vput(ndp->ni_dvp);
1236		NFSVOPUNLOCK(vp, 0);
1237	} else {
1238		if (ndp->ni_dvp == ndp->ni_vp)
1239			vrele(ndp->ni_dvp);
1240		else
1241			vput(ndp->ni_dvp);
1242		if (ndp->ni_vp)
1243			vrele(ndp->ni_vp);
1244	}
1245	nfsvno_relpathbuf(ndp);
1246	NFSEXITCODE(error);
1247	return (error);
1248}
1249
1250/*
1251 * Do the fsync() appropriate for the commit.
1252 */
1253int
1254nfsvno_fsync(struct vnode *vp, u_int64_t off, int cnt, struct ucred *cred,
1255    struct thread *td)
1256{
1257	int error = 0;
1258
1259	/*
1260	 * RFC 1813 3.3.21: if count is 0, a flush from offset to the end of
1261	 * file is done.  At this time VOP_FSYNC does not accept offset and
1262	 * byte count parameters so call VOP_FSYNC the whole file for now.
1263	 * The same is true for NFSv4: RFC 3530 Sec. 14.2.3.
1264	 */
1265	if (cnt == 0 || cnt > MAX_COMMIT_COUNT) {
1266		/*
1267		 * Give up and do the whole thing
1268		 */
1269		if (vp->v_object &&
1270		   (vp->v_object->flags & OBJ_MIGHTBEDIRTY)) {
1271			VM_OBJECT_WLOCK(vp->v_object);
1272			vm_object_page_clean(vp->v_object, 0, 0, OBJPC_SYNC);
1273			VM_OBJECT_WUNLOCK(vp->v_object);
1274		}
1275		error = VOP_FSYNC(vp, MNT_WAIT, td);
1276	} else {
1277		/*
1278		 * Locate and synchronously write any buffers that fall
1279		 * into the requested range.  Note:  we are assuming that
1280		 * f_iosize is a power of 2.
1281		 */
1282		int iosize = vp->v_mount->mnt_stat.f_iosize;
1283		int iomask = iosize - 1;
1284		struct bufobj *bo;
1285		daddr_t lblkno;
1286
1287		/*
1288		 * Align to iosize boundry, super-align to page boundry.
1289		 */
1290		if (off & iomask) {
1291			cnt += off & iomask;
1292			off &= ~(u_quad_t)iomask;
1293		}
1294		if (off & PAGE_MASK) {
1295			cnt += off & PAGE_MASK;
1296			off &= ~(u_quad_t)PAGE_MASK;
1297		}
1298		lblkno = off / iosize;
1299
1300		if (vp->v_object &&
1301		   (vp->v_object->flags & OBJ_MIGHTBEDIRTY)) {
1302			VM_OBJECT_WLOCK(vp->v_object);
1303			vm_object_page_clean(vp->v_object, off, off + cnt,
1304			    OBJPC_SYNC);
1305			VM_OBJECT_WUNLOCK(vp->v_object);
1306		}
1307
1308		bo = &vp->v_bufobj;
1309		BO_LOCK(bo);
1310		while (cnt > 0) {
1311			struct buf *bp;
1312
1313			/*
1314			 * If we have a buffer and it is marked B_DELWRI we
1315			 * have to lock and write it.  Otherwise the prior
1316			 * write is assumed to have already been committed.
1317			 *
1318			 * gbincore() can return invalid buffers now so we
1319			 * have to check that bit as well (though B_DELWRI
1320			 * should not be set if B_INVAL is set there could be
1321			 * a race here since we haven't locked the buffer).
1322			 */
1323			if ((bp = gbincore(&vp->v_bufobj, lblkno)) != NULL) {
1324				if (BUF_LOCK(bp, LK_EXCLUSIVE | LK_SLEEPFAIL |
1325				    LK_INTERLOCK, BO_LOCKPTR(bo)) == ENOLCK) {
1326					BO_LOCK(bo);
1327					continue; /* retry */
1328				}
1329			    	if ((bp->b_flags & (B_DELWRI|B_INVAL)) ==
1330				    B_DELWRI) {
1331					bremfree(bp);
1332					bp->b_flags &= ~B_ASYNC;
1333					bwrite(bp);
1334					++nfs_commit_miss;
1335				} else
1336					BUF_UNLOCK(bp);
1337				BO_LOCK(bo);
1338			}
1339			++nfs_commit_blks;
1340			if (cnt < iosize)
1341				break;
1342			cnt -= iosize;
1343			++lblkno;
1344		}
1345		BO_UNLOCK(bo);
1346	}
1347	NFSEXITCODE(error);
1348	return (error);
1349}
1350
1351/*
1352 * Statfs vnode op.
1353 */
1354int
1355nfsvno_statfs(struct vnode *vp, struct statfs *sf)
1356{
1357	int error;
1358
1359	error = VFS_STATFS(vp->v_mount, sf);
1360	if (error == 0) {
1361		/*
1362		 * Since NFS handles these values as unsigned on the
1363		 * wire, there is no way to represent negative values,
1364		 * so set them to 0. Without this, they will appear
1365		 * to be very large positive values for clients like
1366		 * Solaris10.
1367		 */
1368		if (sf->f_bavail < 0)
1369			sf->f_bavail = 0;
1370		if (sf->f_ffree < 0)
1371			sf->f_ffree = 0;
1372	}
1373	NFSEXITCODE(error);
1374	return (error);
1375}
1376
1377/*
1378 * Do the vnode op stuff for Open. Similar to nfsvno_createsub(), but
1379 * must handle nfsrv_opencheck() calls after any other access checks.
1380 */
1381void
1382nfsvno_open(struct nfsrv_descript *nd, struct nameidata *ndp,
1383    nfsquad_t clientid, nfsv4stateid_t *stateidp, struct nfsstate *stp,
1384    int *exclusive_flagp, struct nfsvattr *nvap, int32_t *cverf, int create,
1385    NFSACL_T *aclp, nfsattrbit_t *attrbitp, struct ucred *cred, struct thread *p,
1386    struct nfsexstuff *exp, struct vnode **vpp)
1387{
1388	struct vnode *vp = NULL;
1389	u_quad_t tempsize;
1390	struct nfsexstuff nes;
1391
1392	if (ndp->ni_vp == NULL)
1393		nd->nd_repstat = nfsrv_opencheck(clientid,
1394		    stateidp, stp, NULL, nd, p, nd->nd_repstat);
1395	if (!nd->nd_repstat) {
1396		if (ndp->ni_vp == NULL) {
1397			vrele(ndp->ni_startdir);
1398			nd->nd_repstat = VOP_CREATE(ndp->ni_dvp,
1399			    &ndp->ni_vp, &ndp->ni_cnd, &nvap->na_vattr);
1400			vput(ndp->ni_dvp);
1401			nfsvno_relpathbuf(ndp);
1402			if (!nd->nd_repstat) {
1403				if (*exclusive_flagp) {
1404					*exclusive_flagp = 0;
1405					NFSVNO_ATTRINIT(nvap);
1406					nvap->na_atime.tv_sec = cverf[0];
1407					nvap->na_atime.tv_nsec = cverf[1];
1408					nd->nd_repstat = VOP_SETATTR(ndp->ni_vp,
1409					    &nvap->na_vattr, cred);
1410				} else {
1411					nfsrv_fixattr(nd, ndp->ni_vp, nvap,
1412					    aclp, p, attrbitp, exp);
1413				}
1414			}
1415			vp = ndp->ni_vp;
1416		} else {
1417			if (ndp->ni_startdir)
1418				vrele(ndp->ni_startdir);
1419			nfsvno_relpathbuf(ndp);
1420			vp = ndp->ni_vp;
1421			if (create == NFSV4OPEN_CREATE) {
1422				if (ndp->ni_dvp == vp)
1423					vrele(ndp->ni_dvp);
1424				else
1425					vput(ndp->ni_dvp);
1426			}
1427			if (NFSVNO_ISSETSIZE(nvap) && vp->v_type == VREG) {
1428				if (ndp->ni_cnd.cn_flags & RDONLY)
1429					NFSVNO_SETEXRDONLY(&nes);
1430				else
1431					NFSVNO_EXINIT(&nes);
1432				nd->nd_repstat = nfsvno_accchk(vp,
1433				    VWRITE, cred, &nes, p,
1434				    NFSACCCHK_NOOVERRIDE,
1435				    NFSACCCHK_VPISLOCKED, NULL);
1436				nd->nd_repstat = nfsrv_opencheck(clientid,
1437				    stateidp, stp, vp, nd, p, nd->nd_repstat);
1438				if (!nd->nd_repstat) {
1439					tempsize = nvap->na_size;
1440					NFSVNO_ATTRINIT(nvap);
1441					nvap->na_size = tempsize;
1442					nd->nd_repstat = VOP_SETATTR(vp,
1443					    &nvap->na_vattr, cred);
1444				}
1445			} else if (vp->v_type == VREG) {
1446				nd->nd_repstat = nfsrv_opencheck(clientid,
1447				    stateidp, stp, vp, nd, p, nd->nd_repstat);
1448			}
1449		}
1450	} else {
1451		if (ndp->ni_cnd.cn_flags & HASBUF)
1452			nfsvno_relpathbuf(ndp);
1453		if (ndp->ni_startdir && create == NFSV4OPEN_CREATE) {
1454			vrele(ndp->ni_startdir);
1455			if (ndp->ni_dvp == ndp->ni_vp)
1456				vrele(ndp->ni_dvp);
1457			else
1458				vput(ndp->ni_dvp);
1459			if (ndp->ni_vp)
1460				vput(ndp->ni_vp);
1461		}
1462	}
1463	*vpp = vp;
1464
1465	NFSEXITCODE2(0, nd);
1466}
1467
1468/*
1469 * Updates the file rev and sets the mtime and ctime
1470 * to the current clock time, returning the va_filerev and va_Xtime
1471 * values.
1472 */
1473void
1474nfsvno_updfilerev(struct vnode *vp, struct nfsvattr *nvap,
1475    struct ucred *cred, struct thread *p)
1476{
1477	struct vattr va;
1478
1479	VATTR_NULL(&va);
1480	vfs_timestamp(&va.va_mtime);
1481	(void) VOP_SETATTR(vp, &va, cred);
1482	(void) nfsvno_getattr(vp, nvap, cred, p, 1);
1483}
1484
1485/*
1486 * Glue routine to nfsv4_fillattr().
1487 */
1488int
1489nfsvno_fillattr(struct nfsrv_descript *nd, struct mount *mp, struct vnode *vp,
1490    struct nfsvattr *nvap, fhandle_t *fhp, int rderror, nfsattrbit_t *attrbitp,
1491    struct ucred *cred, struct thread *p, int isdgram, int reterr,
1492    int supports_nfsv4acls, int at_root, uint64_t mounted_on_fileno)
1493{
1494	int error;
1495
1496	error = nfsv4_fillattr(nd, mp, vp, NULL, &nvap->na_vattr, fhp, rderror,
1497	    attrbitp, cred, p, isdgram, reterr, supports_nfsv4acls, at_root,
1498	    mounted_on_fileno);
1499	NFSEXITCODE2(0, nd);
1500	return (error);
1501}
1502
1503/* Since the Readdir vnode ops vary, put the entire functions in here. */
1504/*
1505 * nfs readdir service
1506 * - mallocs what it thinks is enough to read
1507 *	count rounded up to a multiple of DIRBLKSIZ <= NFS_MAXREADDIR
1508 * - calls VOP_READDIR()
1509 * - loops around building the reply
1510 *	if the output generated exceeds count break out of loop
1511 *	The NFSM_CLGET macro is used here so that the reply will be packed
1512 *	tightly in mbuf clusters.
1513 * - it trims out records with d_fileno == 0
1514 *	this doesn't matter for Unix clients, but they might confuse clients
1515 *	for other os'.
1516 * - it trims out records with d_type == DT_WHT
1517 *	these cannot be seen through NFS (unless we extend the protocol)
1518 *     The alternate call nfsrvd_readdirplus() does lookups as well.
1519 * PS: The NFS protocol spec. does not clarify what the "count" byte
1520 *	argument is a count of.. just name strings and file id's or the
1521 *	entire reply rpc or ...
1522 *	I tried just file name and id sizes and it confused the Sun client,
1523 *	so I am using the full rpc size now. The "paranoia.." comment refers
1524 *	to including the status longwords that are not a part of the dir.
1525 *	"entry" structures, but are in the rpc.
1526 */
1527int
1528nfsrvd_readdir(struct nfsrv_descript *nd, int isdgram,
1529    struct vnode *vp, struct thread *p, struct nfsexstuff *exp)
1530{
1531	struct dirent *dp;
1532	u_int32_t *tl;
1533	int dirlen;
1534	char *cpos, *cend, *rbuf;
1535	struct nfsvattr at;
1536	int nlen, error = 0, getret = 1;
1537	int siz, cnt, fullsiz, eofflag, ncookies;
1538	u_int64_t off, toff, verf;
1539	u_long *cookies = NULL, *cookiep;
1540	struct uio io;
1541	struct iovec iv;
1542	int not_zfs;
1543
1544	if (nd->nd_repstat) {
1545		nfsrv_postopattr(nd, getret, &at);
1546		goto out;
1547	}
1548	if (nd->nd_flag & ND_NFSV2) {
1549		NFSM_DISSECT(tl, u_int32_t *, 2 * NFSX_UNSIGNED);
1550		off = fxdr_unsigned(u_quad_t, *tl++);
1551	} else {
1552		NFSM_DISSECT(tl, u_int32_t *, 5 * NFSX_UNSIGNED);
1553		off = fxdr_hyper(tl);
1554		tl += 2;
1555		verf = fxdr_hyper(tl);
1556		tl += 2;
1557	}
1558	toff = off;
1559	cnt = fxdr_unsigned(int, *tl);
1560	if (cnt > NFS_SRVMAXDATA(nd) || cnt < 0)
1561		cnt = NFS_SRVMAXDATA(nd);
1562	siz = ((cnt + DIRBLKSIZ - 1) & ~(DIRBLKSIZ - 1));
1563	fullsiz = siz;
1564	if (nd->nd_flag & ND_NFSV3) {
1565		nd->nd_repstat = getret = nfsvno_getattr(vp, &at, nd->nd_cred,
1566		    p, 1);
1567#if 0
1568		/*
1569		 * va_filerev is not sufficient as a cookie verifier,
1570		 * since it is not supposed to change when entries are
1571		 * removed/added unless that offset cookies returned to
1572		 * the client are no longer valid.
1573		 */
1574		if (!nd->nd_repstat && toff && verf != at.na_filerev)
1575			nd->nd_repstat = NFSERR_BAD_COOKIE;
1576#endif
1577	}
1578	if (!nd->nd_repstat && vp->v_type != VDIR)
1579		nd->nd_repstat = NFSERR_NOTDIR;
1580	if (nd->nd_repstat == 0 && cnt == 0) {
1581		if (nd->nd_flag & ND_NFSV2)
1582			/* NFSv2 does not have NFSERR_TOOSMALL */
1583			nd->nd_repstat = EPERM;
1584		else
1585			nd->nd_repstat = NFSERR_TOOSMALL;
1586	}
1587	if (!nd->nd_repstat)
1588		nd->nd_repstat = nfsvno_accchk(vp, VEXEC,
1589		    nd->nd_cred, exp, p, NFSACCCHK_NOOVERRIDE,
1590		    NFSACCCHK_VPISLOCKED, NULL);
1591	if (nd->nd_repstat) {
1592		vput(vp);
1593		if (nd->nd_flag & ND_NFSV3)
1594			nfsrv_postopattr(nd, getret, &at);
1595		goto out;
1596	}
1597	not_zfs = strcmp(vp->v_mount->mnt_vfc->vfc_name, "zfs");
1598	MALLOC(rbuf, caddr_t, siz, M_TEMP, M_WAITOK);
1599again:
1600	eofflag = 0;
1601	if (cookies) {
1602		free((caddr_t)cookies, M_TEMP);
1603		cookies = NULL;
1604	}
1605
1606	iv.iov_base = rbuf;
1607	iv.iov_len = siz;
1608	io.uio_iov = &iv;
1609	io.uio_iovcnt = 1;
1610	io.uio_offset = (off_t)off;
1611	io.uio_resid = siz;
1612	io.uio_segflg = UIO_SYSSPACE;
1613	io.uio_rw = UIO_READ;
1614	io.uio_td = NULL;
1615	nd->nd_repstat = VOP_READDIR(vp, &io, nd->nd_cred, &eofflag, &ncookies,
1616	    &cookies);
1617	off = (u_int64_t)io.uio_offset;
1618	if (io.uio_resid)
1619		siz -= io.uio_resid;
1620
1621	if (!cookies && !nd->nd_repstat)
1622		nd->nd_repstat = NFSERR_PERM;
1623	if (nd->nd_flag & ND_NFSV3) {
1624		getret = nfsvno_getattr(vp, &at, nd->nd_cred, p, 1);
1625		if (!nd->nd_repstat)
1626			nd->nd_repstat = getret;
1627	}
1628
1629	/*
1630	 * Handles the failed cases. nd->nd_repstat == 0 past here.
1631	 */
1632	if (nd->nd_repstat) {
1633		vput(vp);
1634		free((caddr_t)rbuf, M_TEMP);
1635		if (cookies)
1636			free((caddr_t)cookies, M_TEMP);
1637		if (nd->nd_flag & ND_NFSV3)
1638			nfsrv_postopattr(nd, getret, &at);
1639		goto out;
1640	}
1641	/*
1642	 * If nothing read, return eof
1643	 * rpc reply
1644	 */
1645	if (siz == 0) {
1646		vput(vp);
1647		if (nd->nd_flag & ND_NFSV2) {
1648			NFSM_BUILD(tl, u_int32_t *, 2 * NFSX_UNSIGNED);
1649		} else {
1650			nfsrv_postopattr(nd, getret, &at);
1651			NFSM_BUILD(tl, u_int32_t *, 4 * NFSX_UNSIGNED);
1652			txdr_hyper(at.na_filerev, tl);
1653			tl += 2;
1654		}
1655		*tl++ = newnfs_false;
1656		*tl = newnfs_true;
1657		FREE((caddr_t)rbuf, M_TEMP);
1658		FREE((caddr_t)cookies, M_TEMP);
1659		goto out;
1660	}
1661
1662	/*
1663	 * Check for degenerate cases of nothing useful read.
1664	 * If so go try again
1665	 */
1666	cpos = rbuf;
1667	cend = rbuf + siz;
1668	dp = (struct dirent *)cpos;
1669	cookiep = cookies;
1670
1671	/*
1672	 * For some reason FreeBSD's ufs_readdir() chooses to back the
1673	 * directory offset up to a block boundary, so it is necessary to
1674	 * skip over the records that precede the requested offset. This
1675	 * requires the assumption that file offset cookies monotonically
1676	 * increase.
1677	 * Since the offset cookies don't monotonically increase for ZFS,
1678	 * this is not done when ZFS is the file system.
1679	 */
1680	while (cpos < cend && ncookies > 0 &&
1681	    (dp->d_fileno == 0 || dp->d_type == DT_WHT ||
1682	     (not_zfs != 0 && ((u_quad_t)(*cookiep)) <= toff))) {
1683		cpos += dp->d_reclen;
1684		dp = (struct dirent *)cpos;
1685		cookiep++;
1686		ncookies--;
1687	}
1688	if (cpos >= cend || ncookies == 0) {
1689		siz = fullsiz;
1690		toff = off;
1691		goto again;
1692	}
1693	vput(vp);
1694
1695	/*
1696	 * dirlen is the size of the reply, including all XDR and must
1697	 * not exceed cnt. For NFSv2, RFC1094 didn't clearly indicate
1698	 * if the XDR should be included in "count", but to be safe, we do.
1699	 * (Include the two booleans at the end of the reply in dirlen now.)
1700	 */
1701	if (nd->nd_flag & ND_NFSV3) {
1702		nfsrv_postopattr(nd, getret, &at);
1703		NFSM_BUILD(tl, u_int32_t *, 2 * NFSX_UNSIGNED);
1704		txdr_hyper(at.na_filerev, tl);
1705		dirlen = NFSX_V3POSTOPATTR + NFSX_VERF + 2 * NFSX_UNSIGNED;
1706	} else {
1707		dirlen = 2 * NFSX_UNSIGNED;
1708	}
1709
1710	/* Loop through the records and build reply */
1711	while (cpos < cend && ncookies > 0) {
1712		nlen = dp->d_namlen;
1713		if (dp->d_fileno != 0 && dp->d_type != DT_WHT &&
1714			nlen <= NFS_MAXNAMLEN) {
1715			if (nd->nd_flag & ND_NFSV3)
1716				dirlen += (6*NFSX_UNSIGNED + NFSM_RNDUP(nlen));
1717			else
1718				dirlen += (4*NFSX_UNSIGNED + NFSM_RNDUP(nlen));
1719			if (dirlen > cnt) {
1720				eofflag = 0;
1721				break;
1722			}
1723
1724			/*
1725			 * Build the directory record xdr from
1726			 * the dirent entry.
1727			 */
1728			if (nd->nd_flag & ND_NFSV3) {
1729				NFSM_BUILD(tl, u_int32_t *, 3 * NFSX_UNSIGNED);
1730				*tl++ = newnfs_true;
1731				*tl++ = 0;
1732			} else {
1733				NFSM_BUILD(tl, u_int32_t *, 2 * NFSX_UNSIGNED);
1734				*tl++ = newnfs_true;
1735			}
1736			*tl = txdr_unsigned(dp->d_fileno);
1737			(void) nfsm_strtom(nd, dp->d_name, nlen);
1738			if (nd->nd_flag & ND_NFSV3) {
1739				NFSM_BUILD(tl, u_int32_t *, 2 * NFSX_UNSIGNED);
1740				*tl++ = 0;
1741			} else
1742				NFSM_BUILD(tl, u_int32_t *, NFSX_UNSIGNED);
1743			*tl = txdr_unsigned(*cookiep);
1744		}
1745		cpos += dp->d_reclen;
1746		dp = (struct dirent *)cpos;
1747		cookiep++;
1748		ncookies--;
1749	}
1750	if (cpos < cend)
1751		eofflag = 0;
1752	NFSM_BUILD(tl, u_int32_t *, 2 * NFSX_UNSIGNED);
1753	*tl++ = newnfs_false;
1754	if (eofflag)
1755		*tl = newnfs_true;
1756	else
1757		*tl = newnfs_false;
1758	FREE((caddr_t)rbuf, M_TEMP);
1759	FREE((caddr_t)cookies, M_TEMP);
1760
1761out:
1762	NFSEXITCODE2(0, nd);
1763	return (0);
1764nfsmout:
1765	vput(vp);
1766	NFSEXITCODE2(error, nd);
1767	return (error);
1768}
1769
1770/*
1771 * Readdirplus for V3 and Readdir for V4.
1772 */
1773int
1774nfsrvd_readdirplus(struct nfsrv_descript *nd, int isdgram,
1775    struct vnode *vp, struct thread *p, struct nfsexstuff *exp)
1776{
1777	struct dirent *dp;
1778	u_int32_t *tl;
1779	int dirlen;
1780	char *cpos, *cend, *rbuf;
1781	struct vnode *nvp;
1782	fhandle_t nfh;
1783	struct nfsvattr nva, at, *nvap = &nva;
1784	struct mbuf *mb0, *mb1;
1785	struct nfsreferral *refp;
1786	int nlen, r, error = 0, getret = 1, usevget = 1;
1787	int siz, cnt, fullsiz, eofflag, ncookies, entrycnt;
1788	caddr_t bpos0, bpos1;
1789	u_int64_t off, toff, verf;
1790	u_long *cookies = NULL, *cookiep;
1791	nfsattrbit_t attrbits, rderrbits, savbits;
1792	struct uio io;
1793	struct iovec iv;
1794	struct componentname cn;
1795	int at_root, needs_unbusy, not_zfs, supports_nfsv4acls;
1796	struct mount *mp, *new_mp;
1797	uint64_t mounted_on_fileno;
1798
1799	if (nd->nd_repstat) {
1800		nfsrv_postopattr(nd, getret, &at);
1801		goto out;
1802	}
1803	NFSM_DISSECT(tl, u_int32_t *, 6 * NFSX_UNSIGNED);
1804	off = fxdr_hyper(tl);
1805	toff = off;
1806	tl += 2;
1807	verf = fxdr_hyper(tl);
1808	tl += 2;
1809	siz = fxdr_unsigned(int, *tl++);
1810	cnt = fxdr_unsigned(int, *tl);
1811
1812	/*
1813	 * Use the server's maximum data transfer size as the upper bound
1814	 * on reply datalen.
1815	 */
1816	if (cnt > NFS_SRVMAXDATA(nd) || cnt < 0)
1817		cnt = NFS_SRVMAXDATA(nd);
1818
1819	/*
1820	 * siz is a "hint" of how much directory information (name, fileid,
1821	 * cookie) should be in the reply. At least one client "hints" 0,
1822	 * so I set it to cnt for that case. I also round it up to the
1823	 * next multiple of DIRBLKSIZ.
1824	 */
1825	if (siz <= 0)
1826		siz = cnt;
1827	siz = ((siz + DIRBLKSIZ - 1) & ~(DIRBLKSIZ - 1));
1828
1829	if (nd->nd_flag & ND_NFSV4) {
1830		error = nfsrv_getattrbits(nd, &attrbits, NULL, NULL);
1831		if (error)
1832			goto nfsmout;
1833		NFSSET_ATTRBIT(&savbits, &attrbits);
1834		NFSCLRNOTFILLABLE_ATTRBIT(&attrbits);
1835		NFSZERO_ATTRBIT(&rderrbits);
1836		NFSSETBIT_ATTRBIT(&rderrbits, NFSATTRBIT_RDATTRERROR);
1837	} else {
1838		NFSZERO_ATTRBIT(&attrbits);
1839	}
1840	fullsiz = siz;
1841	nd->nd_repstat = getret = nfsvno_getattr(vp, &at, nd->nd_cred, p, 1);
1842	if (!nd->nd_repstat) {
1843	    if (off && verf != at.na_filerev) {
1844		/*
1845		 * va_filerev is not sufficient as a cookie verifier,
1846		 * since it is not supposed to change when entries are
1847		 * removed/added unless that offset cookies returned to
1848		 * the client are no longer valid.
1849		 */
1850#if 0
1851		if (nd->nd_flag & ND_NFSV4) {
1852			nd->nd_repstat = NFSERR_NOTSAME;
1853		} else {
1854			nd->nd_repstat = NFSERR_BAD_COOKIE;
1855		}
1856#endif
1857	    } else if ((nd->nd_flag & ND_NFSV4) && off == 0 && verf != 0) {
1858		nd->nd_repstat = NFSERR_BAD_COOKIE;
1859	    }
1860	}
1861	if (!nd->nd_repstat && vp->v_type != VDIR)
1862		nd->nd_repstat = NFSERR_NOTDIR;
1863	if (!nd->nd_repstat && cnt == 0)
1864		nd->nd_repstat = NFSERR_TOOSMALL;
1865	if (!nd->nd_repstat)
1866		nd->nd_repstat = nfsvno_accchk(vp, VEXEC,
1867		    nd->nd_cred, exp, p, NFSACCCHK_NOOVERRIDE,
1868		    NFSACCCHK_VPISLOCKED, NULL);
1869	if (nd->nd_repstat) {
1870		vput(vp);
1871		if (nd->nd_flag & ND_NFSV3)
1872			nfsrv_postopattr(nd, getret, &at);
1873		goto out;
1874	}
1875	not_zfs = strcmp(vp->v_mount->mnt_vfc->vfc_name, "zfs");
1876
1877	MALLOC(rbuf, caddr_t, siz, M_TEMP, M_WAITOK);
1878again:
1879	eofflag = 0;
1880	if (cookies) {
1881		free((caddr_t)cookies, M_TEMP);
1882		cookies = NULL;
1883	}
1884
1885	iv.iov_base = rbuf;
1886	iv.iov_len = siz;
1887	io.uio_iov = &iv;
1888	io.uio_iovcnt = 1;
1889	io.uio_offset = (off_t)off;
1890	io.uio_resid = siz;
1891	io.uio_segflg = UIO_SYSSPACE;
1892	io.uio_rw = UIO_READ;
1893	io.uio_td = NULL;
1894	nd->nd_repstat = VOP_READDIR(vp, &io, nd->nd_cred, &eofflag, &ncookies,
1895	    &cookies);
1896	off = (u_int64_t)io.uio_offset;
1897	if (io.uio_resid)
1898		siz -= io.uio_resid;
1899
1900	getret = nfsvno_getattr(vp, &at, nd->nd_cred, p, 1);
1901
1902	if (!cookies && !nd->nd_repstat)
1903		nd->nd_repstat = NFSERR_PERM;
1904	if (!nd->nd_repstat)
1905		nd->nd_repstat = getret;
1906	if (nd->nd_repstat) {
1907		vput(vp);
1908		if (cookies)
1909			free((caddr_t)cookies, M_TEMP);
1910		free((caddr_t)rbuf, M_TEMP);
1911		if (nd->nd_flag & ND_NFSV3)
1912			nfsrv_postopattr(nd, getret, &at);
1913		goto out;
1914	}
1915	/*
1916	 * If nothing read, return eof
1917	 * rpc reply
1918	 */
1919	if (siz == 0) {
1920		vput(vp);
1921		if (nd->nd_flag & ND_NFSV3)
1922			nfsrv_postopattr(nd, getret, &at);
1923		NFSM_BUILD(tl, u_int32_t *, 4 * NFSX_UNSIGNED);
1924		txdr_hyper(at.na_filerev, tl);
1925		tl += 2;
1926		*tl++ = newnfs_false;
1927		*tl = newnfs_true;
1928		free((caddr_t)cookies, M_TEMP);
1929		free((caddr_t)rbuf, M_TEMP);
1930		goto out;
1931	}
1932
1933	/*
1934	 * Check for degenerate cases of nothing useful read.
1935	 * If so go try again
1936	 */
1937	cpos = rbuf;
1938	cend = rbuf + siz;
1939	dp = (struct dirent *)cpos;
1940	cookiep = cookies;
1941
1942	/*
1943	 * For some reason FreeBSD's ufs_readdir() chooses to back the
1944	 * directory offset up to a block boundary, so it is necessary to
1945	 * skip over the records that precede the requested offset. This
1946	 * requires the assumption that file offset cookies monotonically
1947	 * increase.
1948	 * Since the offset cookies don't monotonically increase for ZFS,
1949	 * this is not done when ZFS is the file system.
1950	 */
1951	while (cpos < cend && ncookies > 0 &&
1952	  (dp->d_fileno == 0 || dp->d_type == DT_WHT ||
1953	   (not_zfs != 0 && ((u_quad_t)(*cookiep)) <= toff) ||
1954	   ((nd->nd_flag & ND_NFSV4) &&
1955	    ((dp->d_namlen == 1 && dp->d_name[0] == '.') ||
1956	     (dp->d_namlen==2 && dp->d_name[0]=='.' && dp->d_name[1]=='.'))))) {
1957		cpos += dp->d_reclen;
1958		dp = (struct dirent *)cpos;
1959		cookiep++;
1960		ncookies--;
1961	}
1962	if (cpos >= cend || ncookies == 0) {
1963		siz = fullsiz;
1964		toff = off;
1965		goto again;
1966	}
1967
1968	/*
1969	 * Busy the file system so that the mount point won't go away
1970	 * and, as such, VFS_VGET() can be used safely.
1971	 */
1972	mp = vp->v_mount;
1973	vfs_ref(mp);
1974	NFSVOPUNLOCK(vp, 0);
1975	nd->nd_repstat = vfs_busy(mp, 0);
1976	vfs_rel(mp);
1977	if (nd->nd_repstat != 0) {
1978		vrele(vp);
1979		free(cookies, M_TEMP);
1980		free(rbuf, M_TEMP);
1981		if (nd->nd_flag & ND_NFSV3)
1982			nfsrv_postopattr(nd, getret, &at);
1983		goto out;
1984	}
1985
1986	/*
1987	 * Check to see if entries in this directory can be safely acquired
1988	 * via VFS_VGET() or if a switch to VOP_LOOKUP() is required.
1989	 * ZFS snapshot directories need VOP_LOOKUP(), so that any
1990	 * automount of the snapshot directory that is required will
1991	 * be done.
1992	 * This needs to be done here for NFSv4, since NFSv4 never does
1993	 * a VFS_VGET() for "." or "..".
1994	 */
1995	if (not_zfs == 0) {
1996		r = VFS_VGET(mp, at.na_fileid, LK_SHARED, &nvp);
1997		if (r == EOPNOTSUPP) {
1998			usevget = 0;
1999			cn.cn_nameiop = LOOKUP;
2000			cn.cn_lkflags = LK_SHARED | LK_RETRY;
2001			cn.cn_cred = nd->nd_cred;
2002			cn.cn_thread = p;
2003		} else if (r == 0)
2004			vput(nvp);
2005	}
2006
2007	/*
2008	 * Save this position, in case there is an error before one entry
2009	 * is created.
2010	 */
2011	mb0 = nd->nd_mb;
2012	bpos0 = nd->nd_bpos;
2013
2014	/*
2015	 * Fill in the first part of the reply.
2016	 * dirlen is the reply length in bytes and cannot exceed cnt.
2017	 * (Include the two booleans at the end of the reply in dirlen now,
2018	 *  so we recognize when we have exceeded cnt.)
2019	 */
2020	if (nd->nd_flag & ND_NFSV3) {
2021		dirlen = NFSX_V3POSTOPATTR + NFSX_VERF + 2 * NFSX_UNSIGNED;
2022		nfsrv_postopattr(nd, getret, &at);
2023	} else {
2024		dirlen = NFSX_VERF + 2 * NFSX_UNSIGNED;
2025	}
2026	NFSM_BUILD(tl, u_int32_t *, NFSX_VERF);
2027	txdr_hyper(at.na_filerev, tl);
2028
2029	/*
2030	 * Save this position, in case there is an empty reply needed.
2031	 */
2032	mb1 = nd->nd_mb;
2033	bpos1 = nd->nd_bpos;
2034
2035	/* Loop through the records and build reply */
2036	entrycnt = 0;
2037	while (cpos < cend && ncookies > 0 && dirlen < cnt) {
2038		nlen = dp->d_namlen;
2039		if (dp->d_fileno != 0 && dp->d_type != DT_WHT &&
2040		    nlen <= NFS_MAXNAMLEN &&
2041		    ((nd->nd_flag & ND_NFSV3) || nlen > 2 ||
2042		     (nlen==2 && (dp->d_name[0]!='.' || dp->d_name[1]!='.'))
2043		      || (nlen == 1 && dp->d_name[0] != '.'))) {
2044			/*
2045			 * Save the current position in the reply, in case
2046			 * this entry exceeds cnt.
2047			 */
2048			mb1 = nd->nd_mb;
2049			bpos1 = nd->nd_bpos;
2050
2051			/*
2052			 * For readdir_and_lookup get the vnode using
2053			 * the file number.
2054			 */
2055			nvp = NULL;
2056			refp = NULL;
2057			r = 0;
2058			at_root = 0;
2059			needs_unbusy = 0;
2060			new_mp = mp;
2061			mounted_on_fileno = (uint64_t)dp->d_fileno;
2062			if ((nd->nd_flag & ND_NFSV3) ||
2063			    NFSNONZERO_ATTRBIT(&savbits)) {
2064				if (nd->nd_flag & ND_NFSV4)
2065					refp = nfsv4root_getreferral(NULL,
2066					    vp, dp->d_fileno);
2067				if (refp == NULL) {
2068					if (usevget)
2069						r = VFS_VGET(mp, dp->d_fileno,
2070						    LK_SHARED, &nvp);
2071					else
2072						r = EOPNOTSUPP;
2073					if (r == EOPNOTSUPP) {
2074						if (usevget) {
2075							usevget = 0;
2076							cn.cn_nameiop = LOOKUP;
2077							cn.cn_lkflags =
2078							    LK_SHARED |
2079							    LK_RETRY;
2080							cn.cn_cred =
2081							    nd->nd_cred;
2082							cn.cn_thread = p;
2083						}
2084						cn.cn_nameptr = dp->d_name;
2085						cn.cn_namelen = nlen;
2086						cn.cn_flags = ISLASTCN |
2087						    NOFOLLOW | LOCKLEAF;
2088						if (nlen == 2 &&
2089						    dp->d_name[0] == '.' &&
2090						    dp->d_name[1] == '.')
2091							cn.cn_flags |=
2092							    ISDOTDOT;
2093						if (NFSVOPLOCK(vp, LK_SHARED)
2094						    != 0) {
2095							nd->nd_repstat = EPERM;
2096							break;
2097						}
2098						if ((vp->v_vflag & VV_ROOT) != 0
2099						    && (cn.cn_flags & ISDOTDOT)
2100						    != 0) {
2101							vref(vp);
2102							nvp = vp;
2103							r = 0;
2104						} else {
2105							r = VOP_LOOKUP(vp, &nvp,
2106							    &cn);
2107							if (vp != nvp)
2108								NFSVOPUNLOCK(vp,
2109								    0);
2110						}
2111					}
2112
2113					/*
2114					 * For NFSv4, check to see if nvp is
2115					 * a mount point and get the mount
2116					 * point vnode, as required.
2117					 */
2118					if (r == 0 &&
2119					    nfsrv_enable_crossmntpt != 0 &&
2120					    (nd->nd_flag & ND_NFSV4) != 0 &&
2121					    nvp->v_type == VDIR &&
2122					    nvp->v_mountedhere != NULL) {
2123						new_mp = nvp->v_mountedhere;
2124						r = vfs_busy(new_mp, 0);
2125						vput(nvp);
2126						nvp = NULL;
2127						if (r == 0) {
2128							r = VFS_ROOT(new_mp,
2129							    LK_SHARED, &nvp);
2130							needs_unbusy = 1;
2131							if (r == 0)
2132								at_root = 1;
2133						}
2134					}
2135				}
2136				if (!r) {
2137				    if (refp == NULL &&
2138					((nd->nd_flag & ND_NFSV3) ||
2139					 NFSNONZERO_ATTRBIT(&attrbits))) {
2140					r = nfsvno_getfh(nvp, &nfh, p);
2141					if (!r)
2142					    r = nfsvno_getattr(nvp, nvap,
2143						nd->nd_cred, p, 1);
2144					if (r == 0 && not_zfs == 0 &&
2145					    nfsrv_enable_crossmntpt != 0 &&
2146					    (nd->nd_flag & ND_NFSV4) != 0 &&
2147					    nvp->v_type == VDIR &&
2148					    vp->v_mount != nvp->v_mount) {
2149					    /*
2150					     * For a ZFS snapshot, there is a
2151					     * pseudo mount that does not set
2152					     * v_mountedhere, so it needs to
2153					     * be detected via a different
2154					     * mount structure.
2155					     */
2156					    at_root = 1;
2157					    if (new_mp == mp)
2158						new_mp = nvp->v_mount;
2159					}
2160				    }
2161				} else {
2162				    nvp = NULL;
2163				}
2164				if (r) {
2165					if (!NFSISSET_ATTRBIT(&attrbits,
2166					    NFSATTRBIT_RDATTRERROR)) {
2167						if (nvp != NULL)
2168							vput(nvp);
2169						if (needs_unbusy != 0)
2170							vfs_unbusy(new_mp);
2171						nd->nd_repstat = r;
2172						break;
2173					}
2174				}
2175			}
2176
2177			/*
2178			 * Build the directory record xdr
2179			 */
2180			if (nd->nd_flag & ND_NFSV3) {
2181				NFSM_BUILD(tl, u_int32_t *, 3 * NFSX_UNSIGNED);
2182				*tl++ = newnfs_true;
2183				*tl++ = 0;
2184				*tl = txdr_unsigned(dp->d_fileno);
2185				dirlen += nfsm_strtom(nd, dp->d_name, nlen);
2186				NFSM_BUILD(tl, u_int32_t *, 2 * NFSX_UNSIGNED);
2187				*tl++ = 0;
2188				*tl = txdr_unsigned(*cookiep);
2189				nfsrv_postopattr(nd, 0, nvap);
2190				dirlen += nfsm_fhtom(nd,(u_int8_t *)&nfh,0,1);
2191				dirlen += (5*NFSX_UNSIGNED+NFSX_V3POSTOPATTR);
2192				if (nvp != NULL)
2193					vput(nvp);
2194			} else {
2195				NFSM_BUILD(tl, u_int32_t *, 3 * NFSX_UNSIGNED);
2196				*tl++ = newnfs_true;
2197				*tl++ = 0;
2198				*tl = txdr_unsigned(*cookiep);
2199				dirlen += nfsm_strtom(nd, dp->d_name, nlen);
2200				if (nvp != NULL) {
2201					supports_nfsv4acls =
2202					    nfs_supportsnfsv4acls(nvp);
2203					NFSVOPUNLOCK(nvp, 0);
2204				} else
2205					supports_nfsv4acls = 0;
2206				if (refp != NULL) {
2207					dirlen += nfsrv_putreferralattr(nd,
2208					    &savbits, refp, 0,
2209					    &nd->nd_repstat);
2210					if (nd->nd_repstat) {
2211						if (nvp != NULL)
2212							vrele(nvp);
2213						if (needs_unbusy != 0)
2214							vfs_unbusy(new_mp);
2215						break;
2216					}
2217				} else if (r) {
2218					dirlen += nfsvno_fillattr(nd, new_mp,
2219					    nvp, nvap, &nfh, r, &rderrbits,
2220					    nd->nd_cred, p, isdgram, 0,
2221					    supports_nfsv4acls, at_root,
2222					    mounted_on_fileno);
2223				} else {
2224					dirlen += nfsvno_fillattr(nd, new_mp,
2225					    nvp, nvap, &nfh, r, &attrbits,
2226					    nd->nd_cred, p, isdgram, 0,
2227					    supports_nfsv4acls, at_root,
2228					    mounted_on_fileno);
2229				}
2230				if (nvp != NULL)
2231					vrele(nvp);
2232				dirlen += (3 * NFSX_UNSIGNED);
2233			}
2234			if (needs_unbusy != 0)
2235				vfs_unbusy(new_mp);
2236			if (dirlen <= cnt)
2237				entrycnt++;
2238		}
2239		cpos += dp->d_reclen;
2240		dp = (struct dirent *)cpos;
2241		cookiep++;
2242		ncookies--;
2243	}
2244	vrele(vp);
2245	vfs_unbusy(mp);
2246
2247	/*
2248	 * If dirlen > cnt, we must strip off the last entry. If that
2249	 * results in an empty reply, report NFSERR_TOOSMALL.
2250	 */
2251	if (dirlen > cnt || nd->nd_repstat) {
2252		if (!nd->nd_repstat && entrycnt == 0)
2253			nd->nd_repstat = NFSERR_TOOSMALL;
2254		if (nd->nd_repstat)
2255			newnfs_trimtrailing(nd, mb0, bpos0);
2256		else
2257			newnfs_trimtrailing(nd, mb1, bpos1);
2258		eofflag = 0;
2259	} else if (cpos < cend)
2260		eofflag = 0;
2261	if (!nd->nd_repstat) {
2262		NFSM_BUILD(tl, u_int32_t *, 2 * NFSX_UNSIGNED);
2263		*tl++ = newnfs_false;
2264		if (eofflag)
2265			*tl = newnfs_true;
2266		else
2267			*tl = newnfs_false;
2268	}
2269	FREE((caddr_t)cookies, M_TEMP);
2270	FREE((caddr_t)rbuf, M_TEMP);
2271
2272out:
2273	NFSEXITCODE2(0, nd);
2274	return (0);
2275nfsmout:
2276	vput(vp);
2277	NFSEXITCODE2(error, nd);
2278	return (error);
2279}
2280
2281/*
2282 * Get the settable attributes out of the mbuf list.
2283 * (Return 0 or EBADRPC)
2284 */
2285int
2286nfsrv_sattr(struct nfsrv_descript *nd, struct nfsvattr *nvap,
2287    nfsattrbit_t *attrbitp, NFSACL_T *aclp, struct thread *p)
2288{
2289	u_int32_t *tl;
2290	struct nfsv2_sattr *sp;
2291	int error = 0, toclient = 0;
2292
2293	switch (nd->nd_flag & (ND_NFSV2 | ND_NFSV3 | ND_NFSV4)) {
2294	case ND_NFSV2:
2295		NFSM_DISSECT(sp, struct nfsv2_sattr *, NFSX_V2SATTR);
2296		/*
2297		 * Some old clients didn't fill in the high order 16bits.
2298		 * --> check the low order 2 bytes for 0xffff
2299		 */
2300		if ((fxdr_unsigned(int, sp->sa_mode) & 0xffff) != 0xffff)
2301			nvap->na_mode = nfstov_mode(sp->sa_mode);
2302		if (sp->sa_uid != newnfs_xdrneg1)
2303			nvap->na_uid = fxdr_unsigned(uid_t, sp->sa_uid);
2304		if (sp->sa_gid != newnfs_xdrneg1)
2305			nvap->na_gid = fxdr_unsigned(gid_t, sp->sa_gid);
2306		if (sp->sa_size != newnfs_xdrneg1)
2307			nvap->na_size = fxdr_unsigned(u_quad_t, sp->sa_size);
2308		if (sp->sa_atime.nfsv2_sec != newnfs_xdrneg1) {
2309#ifdef notyet
2310			fxdr_nfsv2time(&sp->sa_atime, &nvap->na_atime);
2311#else
2312			nvap->na_atime.tv_sec =
2313				fxdr_unsigned(u_int32_t,sp->sa_atime.nfsv2_sec);
2314			nvap->na_atime.tv_nsec = 0;
2315#endif
2316		}
2317		if (sp->sa_mtime.nfsv2_sec != newnfs_xdrneg1)
2318			fxdr_nfsv2time(&sp->sa_mtime, &nvap->na_mtime);
2319		break;
2320	case ND_NFSV3:
2321		NFSM_DISSECT(tl, u_int32_t *, NFSX_UNSIGNED);
2322		if (*tl == newnfs_true) {
2323			NFSM_DISSECT(tl, u_int32_t *, NFSX_UNSIGNED);
2324			nvap->na_mode = nfstov_mode(*tl);
2325		}
2326		NFSM_DISSECT(tl, u_int32_t *, NFSX_UNSIGNED);
2327		if (*tl == newnfs_true) {
2328			NFSM_DISSECT(tl, u_int32_t *, NFSX_UNSIGNED);
2329			nvap->na_uid = fxdr_unsigned(uid_t, *tl);
2330		}
2331		NFSM_DISSECT(tl, u_int32_t *, NFSX_UNSIGNED);
2332		if (*tl == newnfs_true) {
2333			NFSM_DISSECT(tl, u_int32_t *, NFSX_UNSIGNED);
2334			nvap->na_gid = fxdr_unsigned(gid_t, *tl);
2335		}
2336		NFSM_DISSECT(tl, u_int32_t *, NFSX_UNSIGNED);
2337		if (*tl == newnfs_true) {
2338			NFSM_DISSECT(tl, u_int32_t *, 2 * NFSX_UNSIGNED);
2339			nvap->na_size = fxdr_hyper(tl);
2340		}
2341		NFSM_DISSECT(tl, u_int32_t *, NFSX_UNSIGNED);
2342		switch (fxdr_unsigned(int, *tl)) {
2343		case NFSV3SATTRTIME_TOCLIENT:
2344			NFSM_DISSECT(tl, u_int32_t *, 2 * NFSX_UNSIGNED);
2345			fxdr_nfsv3time(tl, &nvap->na_atime);
2346			toclient = 1;
2347			break;
2348		case NFSV3SATTRTIME_TOSERVER:
2349			vfs_timestamp(&nvap->na_atime);
2350			nvap->na_vaflags |= VA_UTIMES_NULL;
2351			break;
2352		};
2353		NFSM_DISSECT(tl, u_int32_t *, NFSX_UNSIGNED);
2354		switch (fxdr_unsigned(int, *tl)) {
2355		case NFSV3SATTRTIME_TOCLIENT:
2356			NFSM_DISSECT(tl, u_int32_t *, 2 * NFSX_UNSIGNED);
2357			fxdr_nfsv3time(tl, &nvap->na_mtime);
2358			nvap->na_vaflags &= ~VA_UTIMES_NULL;
2359			break;
2360		case NFSV3SATTRTIME_TOSERVER:
2361			vfs_timestamp(&nvap->na_mtime);
2362			if (!toclient)
2363				nvap->na_vaflags |= VA_UTIMES_NULL;
2364			break;
2365		};
2366		break;
2367	case ND_NFSV4:
2368		error = nfsv4_sattr(nd, nvap, attrbitp, aclp, p);
2369	};
2370nfsmout:
2371	NFSEXITCODE2(error, nd);
2372	return (error);
2373}
2374
2375/*
2376 * Handle the setable attributes for V4.
2377 * Returns NFSERR_BADXDR if it can't be parsed, 0 otherwise.
2378 */
2379int
2380nfsv4_sattr(struct nfsrv_descript *nd, struct nfsvattr *nvap,
2381    nfsattrbit_t *attrbitp, NFSACL_T *aclp, struct thread *p)
2382{
2383	u_int32_t *tl;
2384	int attrsum = 0;
2385	int i, j;
2386	int error, attrsize, bitpos, aclsize, aceerr, retnotsup = 0;
2387	int toclient = 0;
2388	u_char *cp, namestr[NFSV4_SMALLSTR + 1];
2389	uid_t uid;
2390	gid_t gid;
2391
2392	error = nfsrv_getattrbits(nd, attrbitp, NULL, &retnotsup);
2393	if (error)
2394		goto nfsmout;
2395	NFSM_DISSECT(tl, u_int32_t *, NFSX_UNSIGNED);
2396	attrsize = fxdr_unsigned(int, *tl);
2397
2398	/*
2399	 * Loop around getting the setable attributes. If an unsupported
2400	 * one is found, set nd_repstat == NFSERR_ATTRNOTSUPP and return.
2401	 */
2402	if (retnotsup) {
2403		nd->nd_repstat = NFSERR_ATTRNOTSUPP;
2404		bitpos = NFSATTRBIT_MAX;
2405	} else {
2406		bitpos = 0;
2407	}
2408	for (; bitpos < NFSATTRBIT_MAX; bitpos++) {
2409	    if (attrsum > attrsize) {
2410		error = NFSERR_BADXDR;
2411		goto nfsmout;
2412	    }
2413	    if (NFSISSET_ATTRBIT(attrbitp, bitpos))
2414		switch (bitpos) {
2415		case NFSATTRBIT_SIZE:
2416			NFSM_DISSECT(tl, u_int32_t *, NFSX_HYPER);
2417			nvap->na_size = fxdr_hyper(tl);
2418			attrsum += NFSX_HYPER;
2419			break;
2420		case NFSATTRBIT_ACL:
2421			error = nfsrv_dissectacl(nd, aclp, &aceerr, &aclsize,
2422			    p);
2423			if (error)
2424				goto nfsmout;
2425			if (aceerr && !nd->nd_repstat)
2426				nd->nd_repstat = aceerr;
2427			attrsum += aclsize;
2428			break;
2429		case NFSATTRBIT_ARCHIVE:
2430			NFSM_DISSECT(tl, u_int32_t *, NFSX_UNSIGNED);
2431			if (!nd->nd_repstat)
2432				nd->nd_repstat = NFSERR_ATTRNOTSUPP;
2433			attrsum += NFSX_UNSIGNED;
2434			break;
2435		case NFSATTRBIT_HIDDEN:
2436			NFSM_DISSECT(tl, u_int32_t *, NFSX_UNSIGNED);
2437			if (!nd->nd_repstat)
2438				nd->nd_repstat = NFSERR_ATTRNOTSUPP;
2439			attrsum += NFSX_UNSIGNED;
2440			break;
2441		case NFSATTRBIT_MIMETYPE:
2442			NFSM_DISSECT(tl, u_int32_t *, NFSX_UNSIGNED);
2443			i = fxdr_unsigned(int, *tl);
2444			error = nfsm_advance(nd, NFSM_RNDUP(i), -1);
2445			if (error)
2446				goto nfsmout;
2447			if (!nd->nd_repstat)
2448				nd->nd_repstat = NFSERR_ATTRNOTSUPP;
2449			attrsum += (NFSX_UNSIGNED + NFSM_RNDUP(i));
2450			break;
2451		case NFSATTRBIT_MODE:
2452			NFSM_DISSECT(tl, u_int32_t *, NFSX_UNSIGNED);
2453			nvap->na_mode = nfstov_mode(*tl);
2454			attrsum += NFSX_UNSIGNED;
2455			break;
2456		case NFSATTRBIT_OWNER:
2457			NFSM_DISSECT(tl, u_int32_t *, NFSX_UNSIGNED);
2458			j = fxdr_unsigned(int, *tl);
2459			if (j < 0) {
2460				error = NFSERR_BADXDR;
2461				goto nfsmout;
2462			}
2463			if (j > NFSV4_SMALLSTR)
2464				cp = malloc(j + 1, M_NFSSTRING, M_WAITOK);
2465			else
2466				cp = namestr;
2467			error = nfsrv_mtostr(nd, cp, j);
2468			if (error) {
2469				if (j > NFSV4_SMALLSTR)
2470					free(cp, M_NFSSTRING);
2471				goto nfsmout;
2472			}
2473			if (!nd->nd_repstat) {
2474				nd->nd_repstat = nfsv4_strtouid(nd, cp, j, &uid,
2475				    p);
2476				if (!nd->nd_repstat)
2477					nvap->na_uid = uid;
2478			}
2479			if (j > NFSV4_SMALLSTR)
2480				free(cp, M_NFSSTRING);
2481			attrsum += (NFSX_UNSIGNED + NFSM_RNDUP(j));
2482			break;
2483		case NFSATTRBIT_OWNERGROUP:
2484			NFSM_DISSECT(tl, u_int32_t *, NFSX_UNSIGNED);
2485			j = fxdr_unsigned(int, *tl);
2486			if (j < 0) {
2487				error = NFSERR_BADXDR;
2488				goto nfsmout;
2489			}
2490			if (j > NFSV4_SMALLSTR)
2491				cp = malloc(j + 1, M_NFSSTRING, M_WAITOK);
2492			else
2493				cp = namestr;
2494			error = nfsrv_mtostr(nd, cp, j);
2495			if (error) {
2496				if (j > NFSV4_SMALLSTR)
2497					free(cp, M_NFSSTRING);
2498				goto nfsmout;
2499			}
2500			if (!nd->nd_repstat) {
2501				nd->nd_repstat = nfsv4_strtogid(nd, cp, j, &gid,
2502				    p);
2503				if (!nd->nd_repstat)
2504					nvap->na_gid = gid;
2505			}
2506			if (j > NFSV4_SMALLSTR)
2507				free(cp, M_NFSSTRING);
2508			attrsum += (NFSX_UNSIGNED + NFSM_RNDUP(j));
2509			break;
2510		case NFSATTRBIT_SYSTEM:
2511			NFSM_DISSECT(tl, u_int32_t *, NFSX_UNSIGNED);
2512			if (!nd->nd_repstat)
2513				nd->nd_repstat = NFSERR_ATTRNOTSUPP;
2514			attrsum += NFSX_UNSIGNED;
2515			break;
2516		case NFSATTRBIT_TIMEACCESSSET:
2517			NFSM_DISSECT(tl, u_int32_t *, NFSX_UNSIGNED);
2518			attrsum += NFSX_UNSIGNED;
2519			if (fxdr_unsigned(int, *tl)==NFSV4SATTRTIME_TOCLIENT) {
2520			    NFSM_DISSECT(tl, u_int32_t *, NFSX_V4TIME);
2521			    fxdr_nfsv4time(tl, &nvap->na_atime);
2522			    toclient = 1;
2523			    attrsum += NFSX_V4TIME;
2524			} else {
2525			    vfs_timestamp(&nvap->na_atime);
2526			    nvap->na_vaflags |= VA_UTIMES_NULL;
2527			}
2528			break;
2529		case NFSATTRBIT_TIMEBACKUP:
2530			NFSM_DISSECT(tl, u_int32_t *, NFSX_V4TIME);
2531			if (!nd->nd_repstat)
2532				nd->nd_repstat = NFSERR_ATTRNOTSUPP;
2533			attrsum += NFSX_V4TIME;
2534			break;
2535		case NFSATTRBIT_TIMECREATE:
2536			NFSM_DISSECT(tl, u_int32_t *, NFSX_V4TIME);
2537			if (!nd->nd_repstat)
2538				nd->nd_repstat = NFSERR_ATTRNOTSUPP;
2539			attrsum += NFSX_V4TIME;
2540			break;
2541		case NFSATTRBIT_TIMEMODIFYSET:
2542			NFSM_DISSECT(tl, u_int32_t *, NFSX_UNSIGNED);
2543			attrsum += NFSX_UNSIGNED;
2544			if (fxdr_unsigned(int, *tl)==NFSV4SATTRTIME_TOCLIENT) {
2545			    NFSM_DISSECT(tl, u_int32_t *, NFSX_V4TIME);
2546			    fxdr_nfsv4time(tl, &nvap->na_mtime);
2547			    nvap->na_vaflags &= ~VA_UTIMES_NULL;
2548			    attrsum += NFSX_V4TIME;
2549			} else {
2550			    vfs_timestamp(&nvap->na_mtime);
2551			    if (!toclient)
2552				nvap->na_vaflags |= VA_UTIMES_NULL;
2553			}
2554			break;
2555		default:
2556			nd->nd_repstat = NFSERR_ATTRNOTSUPP;
2557			/*
2558			 * set bitpos so we drop out of the loop.
2559			 */
2560			bitpos = NFSATTRBIT_MAX;
2561			break;
2562		};
2563	}
2564
2565	/*
2566	 * some clients pad the attrlist, so we need to skip over the
2567	 * padding.
2568	 */
2569	if (attrsum > attrsize) {
2570		error = NFSERR_BADXDR;
2571	} else {
2572		attrsize = NFSM_RNDUP(attrsize);
2573		if (attrsum < attrsize)
2574			error = nfsm_advance(nd, attrsize - attrsum, -1);
2575	}
2576nfsmout:
2577	NFSEXITCODE2(error, nd);
2578	return (error);
2579}
2580
2581/*
2582 * Check/setup export credentials.
2583 */
2584int
2585nfsd_excred(struct nfsrv_descript *nd, struct nfsexstuff *exp,
2586    struct ucred *credanon)
2587{
2588	int error = 0;
2589
2590	/*
2591	 * Check/setup credentials.
2592	 */
2593	if (nd->nd_flag & ND_GSS)
2594		exp->nes_exflag &= ~MNT_EXPORTANON;
2595
2596	/*
2597	 * Check to see if the operation is allowed for this security flavor.
2598	 * RFC2623 suggests that the NFSv3 Fsinfo RPC be allowed to
2599	 * AUTH_NONE or AUTH_SYS for file systems requiring RPCSEC_GSS.
2600	 * Also, allow Secinfo, so that it can acquire the correct flavor(s).
2601	 */
2602	if (nfsvno_testexp(nd, exp) &&
2603	    nd->nd_procnum != NFSV4OP_SECINFO &&
2604	    nd->nd_procnum != NFSPROC_FSINFO) {
2605		if (nd->nd_flag & ND_NFSV4)
2606			error = NFSERR_WRONGSEC;
2607		else
2608			error = (NFSERR_AUTHERR | AUTH_TOOWEAK);
2609		goto out;
2610	}
2611
2612	/*
2613	 * Check to see if the file system is exported V4 only.
2614	 */
2615	if (NFSVNO_EXV4ONLY(exp) && !(nd->nd_flag & ND_NFSV4)) {
2616		error = NFSERR_PROGNOTV4;
2617		goto out;
2618	}
2619
2620	/*
2621	 * Now, map the user credentials.
2622	 * (Note that ND_AUTHNONE will only be set for an NFSv3
2623	 *  Fsinfo RPC. If set for anything else, this code might need
2624	 *  to change.)
2625	 */
2626	if (NFSVNO_EXPORTED(exp) &&
2627	    ((!(nd->nd_flag & ND_GSS) && nd->nd_cred->cr_uid == 0) ||
2628	     NFSVNO_EXPORTANON(exp) ||
2629	     (nd->nd_flag & ND_AUTHNONE))) {
2630		nd->nd_cred->cr_uid = credanon->cr_uid;
2631		nd->nd_cred->cr_gid = credanon->cr_gid;
2632		crsetgroups(nd->nd_cred, credanon->cr_ngroups,
2633		    credanon->cr_groups);
2634	}
2635
2636out:
2637	NFSEXITCODE2(error, nd);
2638	return (error);
2639}
2640
2641/*
2642 * Check exports.
2643 */
2644int
2645nfsvno_checkexp(struct mount *mp, struct sockaddr *nam, struct nfsexstuff *exp,
2646    struct ucred **credp)
2647{
2648	int i, error, *secflavors;
2649
2650	error = VFS_CHECKEXP(mp, nam, &exp->nes_exflag, credp,
2651	    &exp->nes_numsecflavor, &secflavors);
2652	if (error) {
2653		if (nfs_rootfhset) {
2654			exp->nes_exflag = 0;
2655			exp->nes_numsecflavor = 0;
2656			error = 0;
2657		}
2658	} else {
2659		/* Copy the security flavors. */
2660		for (i = 0; i < exp->nes_numsecflavor; i++)
2661			exp->nes_secflavors[i] = secflavors[i];
2662	}
2663	NFSEXITCODE(error);
2664	return (error);
2665}
2666
2667/*
2668 * Get a vnode for a file handle and export stuff.
2669 */
2670int
2671nfsvno_fhtovp(struct mount *mp, fhandle_t *fhp, struct sockaddr *nam,
2672    int lktype, struct vnode **vpp, struct nfsexstuff *exp,
2673    struct ucred **credp)
2674{
2675	int i, error, *secflavors;
2676
2677	*credp = NULL;
2678	exp->nes_numsecflavor = 0;
2679	error = VFS_FHTOVP(mp, &fhp->fh_fid, lktype, vpp);
2680	if (error != 0)
2681		/* Make sure the server replies ESTALE to the client. */
2682		error = ESTALE;
2683	if (nam && !error) {
2684		error = VFS_CHECKEXP(mp, nam, &exp->nes_exflag, credp,
2685		    &exp->nes_numsecflavor, &secflavors);
2686		if (error) {
2687			if (nfs_rootfhset) {
2688				exp->nes_exflag = 0;
2689				exp->nes_numsecflavor = 0;
2690				error = 0;
2691			} else {
2692				vput(*vpp);
2693			}
2694		} else {
2695			/* Copy the security flavors. */
2696			for (i = 0; i < exp->nes_numsecflavor; i++)
2697				exp->nes_secflavors[i] = secflavors[i];
2698		}
2699	}
2700	NFSEXITCODE(error);
2701	return (error);
2702}
2703
2704/*
2705 * nfsd_fhtovp() - convert a fh to a vnode ptr
2706 * 	- look up fsid in mount list (if not found ret error)
2707 *	- get vp and export rights by calling nfsvno_fhtovp()
2708 *	- if cred->cr_uid == 0 or MNT_EXPORTANON set it to credanon
2709 *	  for AUTH_SYS
2710 *	- if mpp != NULL, return the mount point so that it can
2711 *	  be used for vn_finished_write() by the caller
2712 */
2713void
2714nfsd_fhtovp(struct nfsrv_descript *nd, struct nfsrvfh *nfp, int lktype,
2715    struct vnode **vpp, struct nfsexstuff *exp,
2716    struct mount **mpp, int startwrite, struct thread *p)
2717{
2718	struct mount *mp;
2719	struct ucred *credanon;
2720	fhandle_t *fhp;
2721
2722	fhp = (fhandle_t *)nfp->nfsrvfh_data;
2723	/*
2724	 * Check for the special case of the nfsv4root_fh.
2725	 */
2726	mp = vfs_busyfs(&fhp->fh_fsid);
2727	if (mpp != NULL)
2728		*mpp = mp;
2729	if (mp == NULL) {
2730		*vpp = NULL;
2731		nd->nd_repstat = ESTALE;
2732		goto out;
2733	}
2734
2735	if (startwrite) {
2736		vn_start_write(NULL, mpp, V_WAIT);
2737		if (lktype == LK_SHARED && !(MNT_SHARED_WRITES(mp)))
2738			lktype = LK_EXCLUSIVE;
2739	}
2740	nd->nd_repstat = nfsvno_fhtovp(mp, fhp, nd->nd_nam, lktype, vpp, exp,
2741	    &credanon);
2742	vfs_unbusy(mp);
2743
2744	/*
2745	 * For NFSv4 without a pseudo root fs, unexported file handles
2746	 * can be returned, so that Lookup works everywhere.
2747	 */
2748	if (!nd->nd_repstat && exp->nes_exflag == 0 &&
2749	    !(nd->nd_flag & ND_NFSV4)) {
2750		vput(*vpp);
2751		nd->nd_repstat = EACCES;
2752	}
2753
2754	/*
2755	 * Personally, I've never seen any point in requiring a
2756	 * reserved port#, since only in the rare case where the
2757	 * clients are all boxes with secure system priviledges,
2758	 * does it provide any enhanced security, but... some people
2759	 * believe it to be useful and keep putting this code back in.
2760	 * (There is also some "security checker" out there that
2761	 *  complains if the nfs server doesn't enforce this.)
2762	 * However, note the following:
2763	 * RFC3530 (NFSv4) specifies that a reserved port# not be
2764	 *	required.
2765	 * RFC2623 recommends that, if a reserved port# is checked for,
2766	 *	that there be a way to turn that off--> ifdef'd.
2767	 */
2768#ifdef NFS_REQRSVPORT
2769	if (!nd->nd_repstat) {
2770		struct sockaddr_in *saddr;
2771		struct sockaddr_in6 *saddr6;
2772
2773		saddr = NFSSOCKADDR(nd->nd_nam, struct sockaddr_in *);
2774		saddr6 = NFSSOCKADDR(nd->nd_nam, struct sockaddr_in6 *);
2775		if (!(nd->nd_flag & ND_NFSV4) &&
2776		    ((saddr->sin_family == AF_INET &&
2777		      ntohs(saddr->sin_port) >= IPPORT_RESERVED) ||
2778		     (saddr6->sin6_family == AF_INET6 &&
2779		      ntohs(saddr6->sin6_port) >= IPPORT_RESERVED))) {
2780			vput(*vpp);
2781			nd->nd_repstat = (NFSERR_AUTHERR | AUTH_TOOWEAK);
2782		}
2783	}
2784#endif	/* NFS_REQRSVPORT */
2785
2786	/*
2787	 * Check/setup credentials.
2788	 */
2789	if (!nd->nd_repstat) {
2790		nd->nd_saveduid = nd->nd_cred->cr_uid;
2791		nd->nd_repstat = nfsd_excred(nd, exp, credanon);
2792		if (nd->nd_repstat)
2793			vput(*vpp);
2794	}
2795	if (credanon != NULL)
2796		crfree(credanon);
2797	if (nd->nd_repstat) {
2798		if (startwrite)
2799			vn_finished_write(mp);
2800		*vpp = NULL;
2801		if (mpp != NULL)
2802			*mpp = NULL;
2803	}
2804
2805out:
2806	NFSEXITCODE2(0, nd);
2807}
2808
2809/*
2810 * glue for fp.
2811 */
2812static int
2813fp_getfvp(struct thread *p, int fd, struct file **fpp, struct vnode **vpp)
2814{
2815	struct filedesc *fdp;
2816	struct file *fp;
2817	int error = 0;
2818
2819	fdp = p->td_proc->p_fd;
2820	if (fd < 0 || fd >= fdp->fd_nfiles ||
2821	    (fp = fdp->fd_ofiles[fd].fde_file) == NULL) {
2822		error = EBADF;
2823		goto out;
2824	}
2825	*fpp = fp;
2826
2827out:
2828	NFSEXITCODE(error);
2829	return (error);
2830}
2831
2832/*
2833 * Called from nfssvc() to update the exports list. Just call
2834 * vfs_export(). This has to be done, since the v4 root fake fs isn't
2835 * in the mount list.
2836 */
2837int
2838nfsrv_v4rootexport(void *argp, struct ucred *cred, struct thread *p)
2839{
2840	struct nfsex_args *nfsexargp = (struct nfsex_args *)argp;
2841	int error = 0;
2842	struct nameidata nd;
2843	fhandle_t fh;
2844
2845	error = vfs_export(&nfsv4root_mnt, &nfsexargp->export);
2846	if ((nfsexargp->export.ex_flags & MNT_DELEXPORT) != 0)
2847		nfs_rootfhset = 0;
2848	else if (error == 0) {
2849		if (nfsexargp->fspec == NULL) {
2850			error = EPERM;
2851			goto out;
2852		}
2853		/*
2854		 * If fspec != NULL, this is the v4root path.
2855		 */
2856		NDINIT(&nd, LOOKUP, FOLLOW, UIO_USERSPACE,
2857		    nfsexargp->fspec, p);
2858		if ((error = namei(&nd)) != 0)
2859			goto out;
2860		error = nfsvno_getfh(nd.ni_vp, &fh, p);
2861		vrele(nd.ni_vp);
2862		if (!error) {
2863			nfs_rootfh.nfsrvfh_len = NFSX_MYFH;
2864			NFSBCOPY((caddr_t)&fh,
2865			    nfs_rootfh.nfsrvfh_data,
2866			    sizeof (fhandle_t));
2867			nfs_rootfhset = 1;
2868		}
2869	}
2870
2871out:
2872	NFSEXITCODE(error);
2873	return (error);
2874}
2875
2876/*
2877 * Get the tcp socket sequence numbers we need.
2878 * (Maybe this should be moved to the tcp sources?)
2879 */
2880int
2881nfsrv_getsocksndseq(struct socket *so, tcp_seq *maxp, tcp_seq *unap)
2882{
2883	struct inpcb *inp;
2884	struct tcpcb *tp;
2885	int error = 0;
2886
2887	inp = sotoinpcb(so);
2888	KASSERT(inp != NULL, ("nfsrv_getsocksndseq: inp == NULL"));
2889	INP_RLOCK(inp);
2890	if (inp->inp_flags & (INP_TIMEWAIT | INP_DROPPED)) {
2891		INP_RUNLOCK(inp);
2892		error = EPIPE;
2893		goto out;
2894	}
2895	tp = intotcpcb(inp);
2896	if (tp->t_state != TCPS_ESTABLISHED) {
2897		INP_RUNLOCK(inp);
2898		error = EPIPE;
2899		goto out;
2900	}
2901	*maxp = tp->snd_max;
2902	*unap = tp->snd_una;
2903	INP_RUNLOCK(inp);
2904
2905out:
2906	NFSEXITCODE(error);
2907	return (error);
2908}
2909
2910/*
2911 * This function needs to test to see if the system is near its limit
2912 * for memory allocation via malloc() or mget() and return True iff
2913 * either of these resources are near their limit.
2914 * XXX (For now, this is just a stub.)
2915 */
2916int nfsrv_testmalloclimit = 0;
2917int
2918nfsrv_mallocmget_limit(void)
2919{
2920	static int printmesg = 0;
2921	static int testval = 1;
2922
2923	if (nfsrv_testmalloclimit && (testval++ % 1000) == 0) {
2924		if ((printmesg++ % 100) == 0)
2925			printf("nfsd: malloc/mget near limit\n");
2926		return (1);
2927	}
2928	return (0);
2929}
2930
2931/*
2932 * BSD specific initialization of a mount point.
2933 */
2934void
2935nfsd_mntinit(void)
2936{
2937	static int inited = 0;
2938
2939	if (inited)
2940		return;
2941	inited = 1;
2942	nfsv4root_mnt.mnt_flag = (MNT_RDONLY | MNT_EXPORTED);
2943	TAILQ_INIT(&nfsv4root_mnt.mnt_nvnodelist);
2944	TAILQ_INIT(&nfsv4root_mnt.mnt_activevnodelist);
2945	nfsv4root_mnt.mnt_export = NULL;
2946	TAILQ_INIT(&nfsv4root_opt);
2947	TAILQ_INIT(&nfsv4root_newopt);
2948	nfsv4root_mnt.mnt_opt = &nfsv4root_opt;
2949	nfsv4root_mnt.mnt_optnew = &nfsv4root_newopt;
2950	nfsv4root_mnt.mnt_nvnodelistsize = 0;
2951	nfsv4root_mnt.mnt_activevnodelistsize = 0;
2952}
2953
2954/*
2955 * Get a vnode for a file handle, without checking exports, etc.
2956 */
2957struct vnode *
2958nfsvno_getvp(fhandle_t *fhp)
2959{
2960	struct mount *mp;
2961	struct vnode *vp;
2962	int error;
2963
2964	mp = vfs_busyfs(&fhp->fh_fsid);
2965	if (mp == NULL)
2966		return (NULL);
2967	error = VFS_FHTOVP(mp, &fhp->fh_fid, LK_EXCLUSIVE, &vp);
2968	vfs_unbusy(mp);
2969	if (error)
2970		return (NULL);
2971	return (vp);
2972}
2973
2974/*
2975 * Do a local VOP_ADVLOCK().
2976 */
2977int
2978nfsvno_advlock(struct vnode *vp, int ftype, u_int64_t first,
2979    u_int64_t end, struct thread *td)
2980{
2981	int error = 0;
2982	struct flock fl;
2983	u_int64_t tlen;
2984
2985	if (nfsrv_dolocallocks == 0)
2986		goto out;
2987
2988	/* Check for VI_DOOMED here, so that VOP_ADVLOCK() isn't performed. */
2989	if ((vp->v_iflag & VI_DOOMED) != 0) {
2990		error = EPERM;
2991		goto out;
2992	}
2993
2994	fl.l_whence = SEEK_SET;
2995	fl.l_type = ftype;
2996	fl.l_start = (off_t)first;
2997	if (end == NFS64BITSSET) {
2998		fl.l_len = 0;
2999	} else {
3000		tlen = end - first;
3001		fl.l_len = (off_t)tlen;
3002	}
3003	/*
3004	 * For FreeBSD8, the l_pid and l_sysid must be set to the same
3005	 * values for all calls, so that all locks will be held by the
3006	 * nfsd server. (The nfsd server handles conflicts between the
3007	 * various clients.)
3008	 * Since an NFSv4 lockowner is a ClientID plus an array of up to 1024
3009	 * bytes, so it can't be put in l_sysid.
3010	 */
3011	if (nfsv4_sysid == 0)
3012		nfsv4_sysid = nlm_acquire_next_sysid();
3013	fl.l_pid = (pid_t)0;
3014	fl.l_sysid = (int)nfsv4_sysid;
3015
3016	NFSVOPUNLOCK(vp, 0);
3017	if (ftype == F_UNLCK)
3018		error = VOP_ADVLOCK(vp, (caddr_t)td->td_proc, F_UNLCK, &fl,
3019		    (F_POSIX | F_REMOTE));
3020	else
3021		error = VOP_ADVLOCK(vp, (caddr_t)td->td_proc, F_SETLK, &fl,
3022		    (F_POSIX | F_REMOTE));
3023	NFSVOPLOCK(vp, LK_EXCLUSIVE | LK_RETRY);
3024
3025out:
3026	NFSEXITCODE(error);
3027	return (error);
3028}
3029
3030/*
3031 * Check the nfsv4 root exports.
3032 */
3033int
3034nfsvno_v4rootexport(struct nfsrv_descript *nd)
3035{
3036	struct ucred *credanon;
3037	int exflags, error = 0, numsecflavor, *secflavors, i;
3038
3039	error = vfs_stdcheckexp(&nfsv4root_mnt, nd->nd_nam, &exflags,
3040	    &credanon, &numsecflavor, &secflavors);
3041	if (error) {
3042		error = NFSERR_PROGUNAVAIL;
3043		goto out;
3044	}
3045	if (credanon != NULL)
3046		crfree(credanon);
3047	for (i = 0; i < numsecflavor; i++) {
3048		if (secflavors[i] == AUTH_SYS)
3049			nd->nd_flag |= ND_EXAUTHSYS;
3050		else if (secflavors[i] == RPCSEC_GSS_KRB5)
3051			nd->nd_flag |= ND_EXGSS;
3052		else if (secflavors[i] == RPCSEC_GSS_KRB5I)
3053			nd->nd_flag |= ND_EXGSSINTEGRITY;
3054		else if (secflavors[i] == RPCSEC_GSS_KRB5P)
3055			nd->nd_flag |= ND_EXGSSPRIVACY;
3056	}
3057
3058out:
3059	NFSEXITCODE(error);
3060	return (error);
3061}
3062
3063/*
3064 * Nfs server psuedo system call for the nfsd's
3065 */
3066/*
3067 * MPSAFE
3068 */
3069static int
3070nfssvc_nfsd(struct thread *td, struct nfssvc_args *uap)
3071{
3072	struct file *fp;
3073	struct nfsd_addsock_args sockarg;
3074	struct nfsd_nfsd_args nfsdarg;
3075	cap_rights_t rights;
3076	int error;
3077
3078	if (uap->flag & NFSSVC_NFSDADDSOCK) {
3079		error = copyin(uap->argp, (caddr_t)&sockarg, sizeof (sockarg));
3080		if (error)
3081			goto out;
3082		/*
3083		 * Since we don't know what rights might be required,
3084		 * pretend that we need them all. It is better to be too
3085		 * careful than too reckless.
3086		 */
3087		error = fget(td, sockarg.sock,
3088		    cap_rights_init(&rights, CAP_SOCK_SERVER), &fp);
3089		if (error != 0)
3090			goto out;
3091		if (fp->f_type != DTYPE_SOCKET) {
3092			fdrop(fp, td);
3093			error = EPERM;
3094			goto out;
3095		}
3096		error = nfsrvd_addsock(fp);
3097		fdrop(fp, td);
3098	} else if (uap->flag & NFSSVC_NFSDNFSD) {
3099		if (uap->argp == NULL) {
3100			error = EINVAL;
3101			goto out;
3102		}
3103		error = copyin(uap->argp, (caddr_t)&nfsdarg,
3104		    sizeof (nfsdarg));
3105		if (error)
3106			goto out;
3107		error = nfsrvd_nfsd(td, &nfsdarg);
3108	} else {
3109		error = nfssvc_srvcall(td, uap, td->td_ucred);
3110	}
3111
3112out:
3113	NFSEXITCODE(error);
3114	return (error);
3115}
3116
3117static int
3118nfssvc_srvcall(struct thread *p, struct nfssvc_args *uap, struct ucred *cred)
3119{
3120	struct nfsex_args export;
3121	struct file *fp = NULL;
3122	int stablefd, len;
3123	struct nfsd_clid adminrevoke;
3124	struct nfsd_dumplist dumplist;
3125	struct nfsd_dumpclients *dumpclients;
3126	struct nfsd_dumplocklist dumplocklist;
3127	struct nfsd_dumplocks *dumplocks;
3128	struct nameidata nd;
3129	vnode_t vp;
3130	int error = EINVAL, igotlock;
3131	struct proc *procp;
3132	static int suspend_nfsd = 0;
3133
3134	if (uap->flag & NFSSVC_PUBLICFH) {
3135		NFSBZERO((caddr_t)&nfs_pubfh.nfsrvfh_data,
3136		    sizeof (fhandle_t));
3137		error = copyin(uap->argp,
3138		    &nfs_pubfh.nfsrvfh_data, sizeof (fhandle_t));
3139		if (!error)
3140			nfs_pubfhset = 1;
3141	} else if (uap->flag & NFSSVC_V4ROOTEXPORT) {
3142		error = copyin(uap->argp,(caddr_t)&export,
3143		    sizeof (struct nfsex_args));
3144		if (!error)
3145			error = nfsrv_v4rootexport(&export, cred, p);
3146	} else if (uap->flag & NFSSVC_NOPUBLICFH) {
3147		nfs_pubfhset = 0;
3148		error = 0;
3149	} else if (uap->flag & NFSSVC_STABLERESTART) {
3150		error = copyin(uap->argp, (caddr_t)&stablefd,
3151		    sizeof (int));
3152		if (!error)
3153			error = fp_getfvp(p, stablefd, &fp, &vp);
3154		if (!error && (NFSFPFLAG(fp) & (FREAD | FWRITE)) != (FREAD | FWRITE))
3155			error = EBADF;
3156		if (!error && newnfs_numnfsd != 0)
3157			error = EPERM;
3158		if (!error) {
3159			nfsrv_stablefirst.nsf_fp = fp;
3160			nfsrv_setupstable(p);
3161		}
3162	} else if (uap->flag & NFSSVC_ADMINREVOKE) {
3163		error = copyin(uap->argp, (caddr_t)&adminrevoke,
3164		    sizeof (struct nfsd_clid));
3165		if (!error)
3166			error = nfsrv_adminrevoke(&adminrevoke, p);
3167	} else if (uap->flag & NFSSVC_DUMPCLIENTS) {
3168		error = copyin(uap->argp, (caddr_t)&dumplist,
3169		    sizeof (struct nfsd_dumplist));
3170		if (!error && (dumplist.ndl_size < 1 ||
3171			dumplist.ndl_size > NFSRV_MAXDUMPLIST))
3172			error = EPERM;
3173		if (!error) {
3174		    len = sizeof (struct nfsd_dumpclients) * dumplist.ndl_size;
3175		    dumpclients = (struct nfsd_dumpclients *)malloc(len,
3176			M_TEMP, M_WAITOK);
3177		    nfsrv_dumpclients(dumpclients, dumplist.ndl_size);
3178		    error = copyout(dumpclients,
3179			CAST_USER_ADDR_T(dumplist.ndl_list), len);
3180		    free((caddr_t)dumpclients, M_TEMP);
3181		}
3182	} else if (uap->flag & NFSSVC_DUMPLOCKS) {
3183		error = copyin(uap->argp, (caddr_t)&dumplocklist,
3184		    sizeof (struct nfsd_dumplocklist));
3185		if (!error && (dumplocklist.ndllck_size < 1 ||
3186			dumplocklist.ndllck_size > NFSRV_MAXDUMPLIST))
3187			error = EPERM;
3188		if (!error)
3189			error = nfsrv_lookupfilename(&nd,
3190				dumplocklist.ndllck_fname, p);
3191		if (!error) {
3192			len = sizeof (struct nfsd_dumplocks) *
3193				dumplocklist.ndllck_size;
3194			dumplocks = (struct nfsd_dumplocks *)malloc(len,
3195				M_TEMP, M_WAITOK);
3196			nfsrv_dumplocks(nd.ni_vp, dumplocks,
3197			    dumplocklist.ndllck_size, p);
3198			vput(nd.ni_vp);
3199			error = copyout(dumplocks,
3200			    CAST_USER_ADDR_T(dumplocklist.ndllck_list), len);
3201			free((caddr_t)dumplocks, M_TEMP);
3202		}
3203	} else if (uap->flag & NFSSVC_BACKUPSTABLE) {
3204		procp = p->td_proc;
3205		PROC_LOCK(procp);
3206		nfsd_master_pid = procp->p_pid;
3207		bcopy(procp->p_comm, nfsd_master_comm, MAXCOMLEN + 1);
3208		nfsd_master_start = procp->p_stats->p_start;
3209		nfsd_master_proc = procp;
3210		PROC_UNLOCK(procp);
3211	} else if ((uap->flag & NFSSVC_SUSPENDNFSD) != 0) {
3212		NFSLOCKV4ROOTMUTEX();
3213		if (suspend_nfsd == 0) {
3214			/* Lock out all nfsd threads */
3215			do {
3216				igotlock = nfsv4_lock(&nfsd_suspend_lock, 1,
3217				    NULL, NFSV4ROOTLOCKMUTEXPTR, NULL);
3218			} while (igotlock == 0 && suspend_nfsd == 0);
3219			suspend_nfsd = 1;
3220		}
3221		NFSUNLOCKV4ROOTMUTEX();
3222		error = 0;
3223	} else if ((uap->flag & NFSSVC_RESUMENFSD) != 0) {
3224		NFSLOCKV4ROOTMUTEX();
3225		if (suspend_nfsd != 0) {
3226			nfsv4_unlock(&nfsd_suspend_lock, 0);
3227			suspend_nfsd = 0;
3228		}
3229		NFSUNLOCKV4ROOTMUTEX();
3230		error = 0;
3231	}
3232
3233	NFSEXITCODE(error);
3234	return (error);
3235}
3236
3237/*
3238 * Check exports.
3239 * Returns 0 if ok, 1 otherwise.
3240 */
3241int
3242nfsvno_testexp(struct nfsrv_descript *nd, struct nfsexstuff *exp)
3243{
3244	int i;
3245
3246	/*
3247	 * This seems odd, but allow the case where the security flavor
3248	 * list is empty. This happens when NFSv4 is traversing non-exported
3249	 * file systems. Exported file systems should always have a non-empty
3250	 * security flavor list.
3251	 */
3252	if (exp->nes_numsecflavor == 0)
3253		return (0);
3254
3255	for (i = 0; i < exp->nes_numsecflavor; i++) {
3256		/*
3257		 * The tests for privacy and integrity must be first,
3258		 * since ND_GSS is set for everything but AUTH_SYS.
3259		 */
3260		if (exp->nes_secflavors[i] == RPCSEC_GSS_KRB5P &&
3261		    (nd->nd_flag & ND_GSSPRIVACY))
3262			return (0);
3263		if (exp->nes_secflavors[i] == RPCSEC_GSS_KRB5I &&
3264		    (nd->nd_flag & ND_GSSINTEGRITY))
3265			return (0);
3266		if (exp->nes_secflavors[i] == RPCSEC_GSS_KRB5 &&
3267		    (nd->nd_flag & ND_GSS))
3268			return (0);
3269		if (exp->nes_secflavors[i] == AUTH_SYS &&
3270		    (nd->nd_flag & ND_GSS) == 0)
3271			return (0);
3272	}
3273	return (1);
3274}
3275
3276/*
3277 * Calculate a hash value for the fid in a file handle.
3278 */
3279uint32_t
3280nfsrv_hashfh(fhandle_t *fhp)
3281{
3282	uint32_t hashval;
3283
3284	hashval = hash32_buf(&fhp->fh_fid, sizeof(struct fid), 0);
3285	return (hashval);
3286}
3287
3288/*
3289 * Signal the userland master nfsd to backup the stable restart file.
3290 */
3291void
3292nfsrv_backupstable(void)
3293{
3294	struct proc *procp;
3295
3296	if (nfsd_master_proc != NULL) {
3297		procp = pfind(nfsd_master_pid);
3298		/* Try to make sure it is the correct process. */
3299		if (procp == nfsd_master_proc &&
3300		    procp->p_stats->p_start.tv_sec ==
3301		    nfsd_master_start.tv_sec &&
3302		    procp->p_stats->p_start.tv_usec ==
3303		    nfsd_master_start.tv_usec &&
3304		    strcmp(procp->p_comm, nfsd_master_comm) == 0)
3305			kern_psignal(procp, SIGUSR2);
3306		else
3307			nfsd_master_proc = NULL;
3308
3309		if (procp != NULL)
3310			PROC_UNLOCK(procp);
3311	}
3312}
3313
3314extern int (*nfsd_call_nfsd)(struct thread *, struct nfssvc_args *);
3315
3316/*
3317 * Called once to initialize data structures...
3318 */
3319static int
3320nfsd_modevent(module_t mod, int type, void *data)
3321{
3322	int error = 0, i;
3323	static int loaded = 0;
3324
3325	switch (type) {
3326	case MOD_LOAD:
3327		if (loaded)
3328			goto out;
3329		newnfs_portinit();
3330		for (i = 0; i < NFSRVCACHE_HASHSIZE; i++) {
3331			snprintf(nfsrchash_table[i].lock_name,
3332			    sizeof(nfsrchash_table[i].lock_name), "nfsrc_tcp%d",
3333			    i);
3334			mtx_init(&nfsrchash_table[i].mtx,
3335			    nfsrchash_table[i].lock_name, NULL, MTX_DEF);
3336		}
3337		mtx_init(&nfsrc_udpmtx, "nfs_udpcache_mutex", NULL, MTX_DEF);
3338		mtx_init(&nfs_v4root_mutex, "nfs_v4root_mutex", NULL, MTX_DEF);
3339		mtx_init(&nfsv4root_mnt.mnt_mtx, "struct mount mtx", NULL,
3340		    MTX_DEF);
3341		lockinit(&nfsv4root_mnt.mnt_explock, PVFS, "explock", 0, 0);
3342		nfsrvd_initcache();
3343		nfsd_init();
3344		NFSD_LOCK();
3345		nfsrvd_init(0);
3346		NFSD_UNLOCK();
3347		nfsd_mntinit();
3348#ifdef VV_DISABLEDELEG
3349		vn_deleg_ops.vndeleg_recall = nfsd_recalldelegation;
3350		vn_deleg_ops.vndeleg_disable = nfsd_disabledelegation;
3351#endif
3352		nfsd_call_servertimer = nfsrv_servertimer;
3353		nfsd_call_nfsd = nfssvc_nfsd;
3354		loaded = 1;
3355		break;
3356
3357	case MOD_UNLOAD:
3358		if (newnfs_numnfsd != 0) {
3359			error = EBUSY;
3360			break;
3361		}
3362
3363#ifdef VV_DISABLEDELEG
3364		vn_deleg_ops.vndeleg_recall = NULL;
3365		vn_deleg_ops.vndeleg_disable = NULL;
3366#endif
3367		nfsd_call_servertimer = NULL;
3368		nfsd_call_nfsd = NULL;
3369
3370		/* Clean out all NFSv4 state. */
3371		nfsrv_throwawayallstate(curthread);
3372
3373		/* Clean the NFS server reply cache */
3374		nfsrvd_cleancache();
3375
3376		/* Free up the krpc server pool. */
3377		if (nfsrvd_pool != NULL)
3378			svcpool_destroy(nfsrvd_pool);
3379
3380		/* and get rid of the locks */
3381		for (i = 0; i < NFSRVCACHE_HASHSIZE; i++)
3382			mtx_destroy(&nfsrchash_table[i].mtx);
3383		mtx_destroy(&nfsrc_udpmtx);
3384		mtx_destroy(&nfs_v4root_mutex);
3385		mtx_destroy(&nfsv4root_mnt.mnt_mtx);
3386		lockdestroy(&nfsv4root_mnt.mnt_explock);
3387		loaded = 0;
3388		break;
3389	default:
3390		error = EOPNOTSUPP;
3391		break;
3392	}
3393
3394out:
3395	NFSEXITCODE(error);
3396	return (error);
3397}
3398static moduledata_t nfsd_mod = {
3399	"nfsd",
3400	nfsd_modevent,
3401	NULL,
3402};
3403DECLARE_MODULE(nfsd, nfsd_mod, SI_SUB_VFS, SI_ORDER_ANY);
3404
3405/* So that loader and kldload(2) can find us, wherever we are.. */
3406MODULE_VERSION(nfsd, 1);
3407MODULE_DEPEND(nfsd, nfscommon, 1, 1, 1);
3408MODULE_DEPEND(nfsd, nfslock, 1, 1, 1);
3409MODULE_DEPEND(nfsd, nfslockd, 1, 1, 1);
3410MODULE_DEPEND(nfsd, krpc, 1, 1, 1);
3411MODULE_DEPEND(nfsd, nfssvc, 1, 1, 1);
3412
3413