xref: /freebsd/sys/fs/nfsserver/nfs_nfsdport.c (revision c66ec88fed842fbaad62c30d510644ceb7bd2d71)
1 /*-
2  * SPDX-License-Identifier: BSD-3-Clause
3  *
4  * Copyright (c) 1989, 1993
5  *	The Regents of the University of California.  All rights reserved.
6  *
7  * This code is derived from software contributed to Berkeley by
8  * Rick Macklem at The University of Guelph.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions
12  * are met:
13  * 1. Redistributions of source code must retain the above copyright
14  *    notice, this list of conditions and the following disclaimer.
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in the
17  *    documentation and/or other materials provided with the distribution.
18  * 3. Neither the name of the University nor the names of its contributors
19  *    may be used to endorse or promote products derived from this software
20  *    without specific prior written permission.
21  *
22  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32  * SUCH DAMAGE.
33  *
34  */
35 
36 #include <sys/cdefs.h>
37 __FBSDID("$FreeBSD$");
38 
39 #include <sys/capsicum.h>
40 #include <sys/extattr.h>
41 
42 /*
43  * Functions that perform the vfs operations required by the routines in
44  * nfsd_serv.c. It is hoped that this change will make the server more
45  * portable.
46  */
47 
48 #include <fs/nfs/nfsport.h>
49 #include <security/mac/mac_framework.h>
50 #include <sys/filio.h>
51 #include <sys/hash.h>
52 #include <sys/sysctl.h>
53 #include <nlm/nlm_prot.h>
54 #include <nlm/nlm.h>
55 
56 FEATURE(nfsd, "NFSv4 server");
57 
58 extern u_int32_t newnfs_true, newnfs_false, newnfs_xdrneg1;
59 extern int nfsrv_useacl;
60 extern int newnfs_numnfsd;
61 extern struct mount nfsv4root_mnt;
62 extern struct nfsrv_stablefirst nfsrv_stablefirst;
63 extern void (*nfsd_call_servertimer)(void);
64 extern SVCPOOL	*nfsrvd_pool;
65 extern struct nfsv4lock nfsd_suspend_lock;
66 extern struct nfsclienthashhead *nfsclienthash;
67 extern struct nfslockhashhead *nfslockhash;
68 extern struct nfssessionhash *nfssessionhash;
69 extern int nfsrv_sessionhashsize;
70 extern struct nfsstatsv1 nfsstatsv1;
71 extern struct nfslayouthash *nfslayouthash;
72 extern int nfsrv_layouthashsize;
73 extern struct mtx nfsrv_dslock_mtx;
74 extern int nfs_pnfsiothreads;
75 extern struct nfsdontlisthead nfsrv_dontlisthead;
76 extern volatile int nfsrv_dontlistlen;
77 extern volatile int nfsrv_devidcnt;
78 extern int nfsrv_maxpnfsmirror;
79 struct vfsoptlist nfsv4root_opt, nfsv4root_newopt;
80 NFSDLOCKMUTEX;
81 NFSSTATESPINLOCK;
82 struct nfsrchash_bucket nfsrchash_table[NFSRVCACHE_HASHSIZE];
83 struct nfsrchash_bucket nfsrcahash_table[NFSRVCACHE_HASHSIZE];
84 struct mtx nfsrc_udpmtx;
85 struct mtx nfs_v4root_mutex;
86 struct mtx nfsrv_dontlistlock_mtx;
87 struct mtx nfsrv_recalllock_mtx;
88 struct nfsrvfh nfs_rootfh, nfs_pubfh;
89 int nfs_pubfhset = 0, nfs_rootfhset = 0;
90 struct proc *nfsd_master_proc = NULL;
91 int nfsd_debuglevel = 0;
92 static pid_t nfsd_master_pid = (pid_t)-1;
93 static char nfsd_master_comm[MAXCOMLEN + 1];
94 static struct timeval nfsd_master_start;
95 static uint32_t nfsv4_sysid = 0;
96 static fhandle_t zerofh;
97 
98 static int nfssvc_srvcall(struct thread *, struct nfssvc_args *,
99     struct ucred *);
100 
101 int nfsrv_enable_crossmntpt = 1;
102 static int nfs_commit_blks;
103 static int nfs_commit_miss;
104 extern int nfsrv_issuedelegs;
105 extern int nfsrv_dolocallocks;
106 extern int nfsd_enable_stringtouid;
107 extern struct nfsdevicehead nfsrv_devidhead;
108 
109 static int nfsrv_createiovec(int, struct mbuf **, struct mbuf **,
110     struct iovec **);
111 static int nfsrv_createiovec_extpgs(int, int, struct mbuf **,
112     struct mbuf **, struct iovec **);
113 static int nfsrv_createiovecw(int, struct mbuf *, char *, struct iovec **,
114     int *);
115 static void nfsrv_pnfscreate(struct vnode *, struct vattr *, struct ucred *,
116     NFSPROC_T *);
117 static void nfsrv_pnfsremovesetup(struct vnode *, NFSPROC_T *, struct vnode **,
118     int *, char *, fhandle_t *);
119 static void nfsrv_pnfsremove(struct vnode **, int, char *, fhandle_t *,
120     NFSPROC_T *);
121 static int nfsrv_proxyds(struct vnode *, off_t, int, struct ucred *,
122     struct thread *, int, struct mbuf **, char *, struct mbuf **,
123     struct nfsvattr *, struct acl *, off_t *, int, bool *);
124 static int nfsrv_setextattr(struct vnode *, struct nfsvattr *, NFSPROC_T *);
125 static int nfsrv_readdsrpc(fhandle_t *, off_t, int, struct ucred *,
126     NFSPROC_T *, struct nfsmount *, struct mbuf **, struct mbuf **);
127 static int nfsrv_writedsrpc(fhandle_t *, off_t, int, struct ucred *,
128     NFSPROC_T *, struct vnode *, struct nfsmount **, int, struct mbuf **,
129     char *, int *);
130 static int nfsrv_allocatedsrpc(fhandle_t *, off_t, off_t, struct ucred *,
131     NFSPROC_T *, struct vnode *, struct nfsmount **, int, int *);
132 static int nfsrv_setacldsrpc(fhandle_t *, struct ucred *, NFSPROC_T *,
133     struct vnode *, struct nfsmount **, int, struct acl *, int *);
134 static int nfsrv_setattrdsrpc(fhandle_t *, struct ucred *, NFSPROC_T *,
135     struct vnode *, struct nfsmount **, int, struct nfsvattr *, int *);
136 static int nfsrv_getattrdsrpc(fhandle_t *, struct ucred *, NFSPROC_T *,
137     struct vnode *, struct nfsmount *, struct nfsvattr *);
138 static int nfsrv_seekdsrpc(fhandle_t *, off_t *, int, bool *, struct ucred *,
139     NFSPROC_T *, struct nfsmount *);
140 static int nfsrv_putfhname(fhandle_t *, char *);
141 static int nfsrv_pnfslookupds(struct vnode *, struct vnode *,
142     struct pnfsdsfile *, struct vnode **, NFSPROC_T *);
143 static void nfsrv_pnfssetfh(struct vnode *, struct pnfsdsfile *, char *, char *,
144     struct vnode *, NFSPROC_T *);
145 static int nfsrv_dsremove(struct vnode *, char *, struct ucred *, NFSPROC_T *);
146 static int nfsrv_dssetacl(struct vnode *, struct acl *, struct ucred *,
147     NFSPROC_T *);
148 static int nfsrv_pnfsstatfs(struct statfs *, struct mount *);
149 
150 int nfs_pnfsio(task_fn_t *, void *);
151 
152 SYSCTL_NODE(_vfs, OID_AUTO, nfsd, CTLFLAG_RW | CTLFLAG_MPSAFE, 0,
153     "NFS server");
154 SYSCTL_INT(_vfs_nfsd, OID_AUTO, mirrormnt, CTLFLAG_RW,
155     &nfsrv_enable_crossmntpt, 0, "Enable nfsd to cross mount points");
156 SYSCTL_INT(_vfs_nfsd, OID_AUTO, commit_blks, CTLFLAG_RW, &nfs_commit_blks,
157     0, "");
158 SYSCTL_INT(_vfs_nfsd, OID_AUTO, commit_miss, CTLFLAG_RW, &nfs_commit_miss,
159     0, "");
160 SYSCTL_INT(_vfs_nfsd, OID_AUTO, issue_delegations, CTLFLAG_RW,
161     &nfsrv_issuedelegs, 0, "Enable nfsd to issue delegations");
162 SYSCTL_INT(_vfs_nfsd, OID_AUTO, enable_locallocks, CTLFLAG_RW,
163     &nfsrv_dolocallocks, 0, "Enable nfsd to acquire local locks on files");
164 SYSCTL_INT(_vfs_nfsd, OID_AUTO, debuglevel, CTLFLAG_RW, &nfsd_debuglevel,
165     0, "Debug level for NFS server");
166 SYSCTL_INT(_vfs_nfsd, OID_AUTO, enable_stringtouid, CTLFLAG_RW,
167     &nfsd_enable_stringtouid, 0, "Enable nfsd to accept numeric owner_names");
168 static int nfsrv_pnfsgetdsattr = 1;
169 SYSCTL_INT(_vfs_nfsd, OID_AUTO, pnfsgetdsattr, CTLFLAG_RW,
170     &nfsrv_pnfsgetdsattr, 0, "When set getattr gets DS attributes via RPC");
171 
172 /*
173  * nfsrv_dsdirsize can only be increased and only when the nfsd threads are
174  * not running.
175  * The dsN subdirectories for the increased values must have been created
176  * on all DS servers before this increase is done.
177  */
178 u_int	nfsrv_dsdirsize = 20;
179 static int
180 sysctl_dsdirsize(SYSCTL_HANDLER_ARGS)
181 {
182 	int error, newdsdirsize;
183 
184 	newdsdirsize = nfsrv_dsdirsize;
185 	error = sysctl_handle_int(oidp, &newdsdirsize, 0, req);
186 	if (error != 0 || req->newptr == NULL)
187 		return (error);
188 	if (newdsdirsize <= nfsrv_dsdirsize || newdsdirsize > 10000 ||
189 	    newnfs_numnfsd != 0)
190 		return (EINVAL);
191 	nfsrv_dsdirsize = newdsdirsize;
192 	return (0);
193 }
194 SYSCTL_PROC(_vfs_nfsd, OID_AUTO, dsdirsize,
195     CTLTYPE_UINT | CTLFLAG_MPSAFE | CTLFLAG_RW, 0, sizeof(nfsrv_dsdirsize),
196     sysctl_dsdirsize, "IU", "Number of dsN subdirs on the DS servers");
197 
198 #define	MAX_REORDERED_RPC	16
199 #define	NUM_HEURISTIC		1031
200 #define	NHUSE_INIT		64
201 #define	NHUSE_INC		16
202 #define	NHUSE_MAX		2048
203 
204 static struct nfsheur {
205 	struct vnode *nh_vp;	/* vp to match (unreferenced pointer) */
206 	off_t nh_nextoff;	/* next offset for sequential detection */
207 	int nh_use;		/* use count for selection */
208 	int nh_seqcount;	/* heuristic */
209 } nfsheur[NUM_HEURISTIC];
210 
211 /*
212  * Heuristic to detect sequential operation.
213  */
214 static struct nfsheur *
215 nfsrv_sequential_heuristic(struct uio *uio, struct vnode *vp)
216 {
217 	struct nfsheur *nh;
218 	int hi, try;
219 
220 	/* Locate best candidate. */
221 	try = 32;
222 	hi = ((int)(vm_offset_t)vp / sizeof(struct vnode)) % NUM_HEURISTIC;
223 	nh = &nfsheur[hi];
224 	while (try--) {
225 		if (nfsheur[hi].nh_vp == vp) {
226 			nh = &nfsheur[hi];
227 			break;
228 		}
229 		if (nfsheur[hi].nh_use > 0)
230 			--nfsheur[hi].nh_use;
231 		hi = (hi + 1) % NUM_HEURISTIC;
232 		if (nfsheur[hi].nh_use < nh->nh_use)
233 			nh = &nfsheur[hi];
234 	}
235 
236 	/* Initialize hint if this is a new file. */
237 	if (nh->nh_vp != vp) {
238 		nh->nh_vp = vp;
239 		nh->nh_nextoff = uio->uio_offset;
240 		nh->nh_use = NHUSE_INIT;
241 		if (uio->uio_offset == 0)
242 			nh->nh_seqcount = 4;
243 		else
244 			nh->nh_seqcount = 1;
245 	}
246 
247 	/* Calculate heuristic. */
248 	if ((uio->uio_offset == 0 && nh->nh_seqcount > 0) ||
249 	    uio->uio_offset == nh->nh_nextoff) {
250 		/* See comments in vfs_vnops.c:sequential_heuristic(). */
251 		nh->nh_seqcount += howmany(uio->uio_resid, 16384);
252 		if (nh->nh_seqcount > IO_SEQMAX)
253 			nh->nh_seqcount = IO_SEQMAX;
254 	} else if (qabs(uio->uio_offset - nh->nh_nextoff) <= MAX_REORDERED_RPC *
255 	    imax(vp->v_mount->mnt_stat.f_iosize, uio->uio_resid)) {
256 		/* Probably a reordered RPC, leave seqcount alone. */
257 	} else if (nh->nh_seqcount > 1) {
258 		nh->nh_seqcount /= 2;
259 	} else {
260 		nh->nh_seqcount = 0;
261 	}
262 	nh->nh_use += NHUSE_INC;
263 	if (nh->nh_use > NHUSE_MAX)
264 		nh->nh_use = NHUSE_MAX;
265 	return (nh);
266 }
267 
268 /*
269  * Get attributes into nfsvattr structure.
270  */
271 int
272 nfsvno_getattr(struct vnode *vp, struct nfsvattr *nvap,
273     struct nfsrv_descript *nd, struct thread *p, int vpislocked,
274     nfsattrbit_t *attrbitp)
275 {
276 	int error, gotattr, lockedit = 0;
277 	struct nfsvattr na;
278 
279 	if (vpislocked == 0) {
280 		/*
281 		 * When vpislocked == 0, the vnode is either exclusively
282 		 * locked by this thread or not locked by this thread.
283 		 * As such, shared lock it, if not exclusively locked.
284 		 */
285 		if (NFSVOPISLOCKED(vp) != LK_EXCLUSIVE) {
286 			lockedit = 1;
287 			NFSVOPLOCK(vp, LK_SHARED | LK_RETRY);
288 		}
289 	}
290 
291 	/*
292 	 * Acquire the Change, Size, TimeAccess, TimeModify and SpaceUsed
293 	 * attributes, as required.
294 	 * This needs to be done for regular files if:
295 	 * - non-NFSv4 RPCs or
296 	 * - when attrbitp == NULL or
297 	 * - an NFSv4 RPC with any of the above attributes in attrbitp.
298 	 * A return of 0 for nfsrv_proxyds() indicates that it has acquired
299 	 * these attributes.  nfsrv_proxyds() will return an error if the
300 	 * server is not a pNFS one.
301 	 */
302 	gotattr = 0;
303 	if (vp->v_type == VREG && nfsrv_devidcnt > 0 && (attrbitp == NULL ||
304 	    (nd->nd_flag & ND_NFSV4) == 0 ||
305 	    NFSISSET_ATTRBIT(attrbitp, NFSATTRBIT_CHANGE) ||
306 	    NFSISSET_ATTRBIT(attrbitp, NFSATTRBIT_SIZE) ||
307 	    NFSISSET_ATTRBIT(attrbitp, NFSATTRBIT_TIMEACCESS) ||
308 	    NFSISSET_ATTRBIT(attrbitp, NFSATTRBIT_TIMEMODIFY) ||
309 	    NFSISSET_ATTRBIT(attrbitp, NFSATTRBIT_SPACEUSED))) {
310 		error = nfsrv_proxyds(vp, 0, 0, nd->nd_cred, p,
311 		    NFSPROC_GETATTR, NULL, NULL, NULL, &na, NULL, NULL, 0,
312 		    NULL);
313 		if (error == 0)
314 			gotattr = 1;
315 	}
316 
317 	error = VOP_GETATTR(vp, &nvap->na_vattr, nd->nd_cred);
318 	if (lockedit != 0)
319 		NFSVOPUNLOCK(vp);
320 
321 	/*
322 	 * If we got the Change, Size and Modify Time from the DS,
323 	 * replace them.
324 	 */
325 	if (gotattr != 0) {
326 		nvap->na_atime = na.na_atime;
327 		nvap->na_mtime = na.na_mtime;
328 		nvap->na_filerev = na.na_filerev;
329 		nvap->na_size = na.na_size;
330 		nvap->na_bytes = na.na_bytes;
331 	}
332 	NFSD_DEBUG(4, "nfsvno_getattr: gotattr=%d err=%d chg=%ju\n", gotattr,
333 	    error, (uintmax_t)na.na_filerev);
334 
335 	NFSEXITCODE(error);
336 	return (error);
337 }
338 
339 /*
340  * Get a file handle for a vnode.
341  */
342 int
343 nfsvno_getfh(struct vnode *vp, fhandle_t *fhp, struct thread *p)
344 {
345 	int error;
346 
347 	NFSBZERO((caddr_t)fhp, sizeof(fhandle_t));
348 	fhp->fh_fsid = vp->v_mount->mnt_stat.f_fsid;
349 	error = VOP_VPTOFH(vp, &fhp->fh_fid);
350 
351 	NFSEXITCODE(error);
352 	return (error);
353 }
354 
355 /*
356  * Perform access checking for vnodes obtained from file handles that would
357  * refer to files already opened by a Unix client. You cannot just use
358  * vn_writechk() and VOP_ACCESSX() for two reasons.
359  * 1 - You must check for exported rdonly as well as MNT_RDONLY for the write
360  *     case.
361  * 2 - The owner is to be given access irrespective of mode bits for some
362  *     operations, so that processes that chmod after opening a file don't
363  *     break.
364  */
365 int
366 nfsvno_accchk(struct vnode *vp, accmode_t accmode, struct ucred *cred,
367     struct nfsexstuff *exp, struct thread *p, int override, int vpislocked,
368     u_int32_t *supportedtypep)
369 {
370 	struct vattr vattr;
371 	int error = 0, getret = 0;
372 
373 	if (vpislocked == 0) {
374 		if (NFSVOPLOCK(vp, LK_SHARED) != 0) {
375 			error = EPERM;
376 			goto out;
377 		}
378 	}
379 	if (accmode & VWRITE) {
380 		/* Just vn_writechk() changed to check rdonly */
381 		/*
382 		 * Disallow write attempts on read-only file systems;
383 		 * unless the file is a socket or a block or character
384 		 * device resident on the file system.
385 		 */
386 		if (NFSVNO_EXRDONLY(exp) ||
387 		    (vp->v_mount->mnt_flag & MNT_RDONLY)) {
388 			switch (vp->v_type) {
389 			case VREG:
390 			case VDIR:
391 			case VLNK:
392 				error = EROFS;
393 			default:
394 				break;
395 			}
396 		}
397 		/*
398 		 * If there's shared text associated with
399 		 * the inode, try to free it up once.  If
400 		 * we fail, we can't allow writing.
401 		 */
402 		if (VOP_IS_TEXT(vp) && error == 0)
403 			error = ETXTBSY;
404 	}
405 	if (error != 0) {
406 		if (vpislocked == 0)
407 			NFSVOPUNLOCK(vp);
408 		goto out;
409 	}
410 
411 	/*
412 	 * Should the override still be applied when ACLs are enabled?
413 	 */
414 	error = VOP_ACCESSX(vp, accmode, cred, p);
415 	if (error != 0 && (accmode & (VDELETE | VDELETE_CHILD))) {
416 		/*
417 		 * Try again with VEXPLICIT_DENY, to see if the test for
418 		 * deletion is supported.
419 		 */
420 		error = VOP_ACCESSX(vp, accmode | VEXPLICIT_DENY, cred, p);
421 		if (error == 0) {
422 			if (vp->v_type == VDIR) {
423 				accmode &= ~(VDELETE | VDELETE_CHILD);
424 				accmode |= VWRITE;
425 				error = VOP_ACCESSX(vp, accmode, cred, p);
426 			} else if (supportedtypep != NULL) {
427 				*supportedtypep &= ~NFSACCESS_DELETE;
428 			}
429 		}
430 	}
431 
432 	/*
433 	 * Allow certain operations for the owner (reads and writes
434 	 * on files that are already open).
435 	 */
436 	if (override != NFSACCCHK_NOOVERRIDE &&
437 	    (error == EPERM || error == EACCES)) {
438 		if (cred->cr_uid == 0 && (override & NFSACCCHK_ALLOWROOT))
439 			error = 0;
440 		else if (override & NFSACCCHK_ALLOWOWNER) {
441 			getret = VOP_GETATTR(vp, &vattr, cred);
442 			if (getret == 0 && cred->cr_uid == vattr.va_uid)
443 				error = 0;
444 		}
445 	}
446 	if (vpislocked == 0)
447 		NFSVOPUNLOCK(vp);
448 
449 out:
450 	NFSEXITCODE(error);
451 	return (error);
452 }
453 
454 /*
455  * Set attribute(s) vnop.
456  */
457 int
458 nfsvno_setattr(struct vnode *vp, struct nfsvattr *nvap, struct ucred *cred,
459     struct thread *p, struct nfsexstuff *exp)
460 {
461 	u_quad_t savsize = 0;
462 	int error, savedit;
463 	time_t savbtime;
464 
465 	/*
466 	 * If this is an exported file system and a pNFS service is running,
467 	 * don't VOP_SETATTR() of size for the MDS file system.
468 	 */
469 	savedit = 0;
470 	error = 0;
471 	if (vp->v_type == VREG && (vp->v_mount->mnt_flag & MNT_EXPORTED) != 0 &&
472 	    nfsrv_devidcnt != 0 && nvap->na_vattr.va_size != VNOVAL &&
473 	    nvap->na_vattr.va_size > 0) {
474 		savsize = nvap->na_vattr.va_size;
475 		nvap->na_vattr.va_size = VNOVAL;
476 		if (nvap->na_vattr.va_uid != (uid_t)VNOVAL ||
477 		    nvap->na_vattr.va_gid != (gid_t)VNOVAL ||
478 		    nvap->na_vattr.va_mode != (mode_t)VNOVAL ||
479 		    nvap->na_vattr.va_atime.tv_sec != VNOVAL ||
480 		    nvap->na_vattr.va_mtime.tv_sec != VNOVAL)
481 			savedit = 1;
482 		else
483 			savedit = 2;
484 	}
485 	if (savedit != 2)
486 		error = VOP_SETATTR(vp, &nvap->na_vattr, cred);
487 	if (savedit != 0)
488 		nvap->na_vattr.va_size = savsize;
489 	if (error == 0 && (nvap->na_vattr.va_uid != (uid_t)VNOVAL ||
490 	    nvap->na_vattr.va_gid != (gid_t)VNOVAL ||
491 	    nvap->na_vattr.va_size != VNOVAL ||
492 	    nvap->na_vattr.va_mode != (mode_t)VNOVAL ||
493 	    nvap->na_vattr.va_atime.tv_sec != VNOVAL ||
494 	    nvap->na_vattr.va_mtime.tv_sec != VNOVAL)) {
495 		/* Never modify birthtime on a DS file. */
496 		savbtime = nvap->na_vattr.va_birthtime.tv_sec;
497 		nvap->na_vattr.va_birthtime.tv_sec = VNOVAL;
498 		/* For a pNFS server, set the attributes on the DS file. */
499 		error = nfsrv_proxyds(vp, 0, 0, cred, p, NFSPROC_SETATTR,
500 		    NULL, NULL, NULL, nvap, NULL, NULL, 0, NULL);
501 		nvap->na_vattr.va_birthtime.tv_sec = savbtime;
502 		if (error == ENOENT)
503 			error = 0;
504 	}
505 	NFSEXITCODE(error);
506 	return (error);
507 }
508 
509 /*
510  * Set up nameidata for a lookup() call and do it.
511  */
512 int
513 nfsvno_namei(struct nfsrv_descript *nd, struct nameidata *ndp,
514     struct vnode *dp, int islocked, struct nfsexstuff *exp, struct thread *p,
515     struct vnode **retdirp)
516 {
517 	struct componentname *cnp = &ndp->ni_cnd;
518 	int i;
519 	struct iovec aiov;
520 	struct uio auio;
521 	int lockleaf = (cnp->cn_flags & LOCKLEAF) != 0, linklen;
522 	int error = 0;
523 	char *cp;
524 
525 	*retdirp = NULL;
526 	cnp->cn_nameptr = cnp->cn_pnbuf;
527 	ndp->ni_lcf = 0;
528 	/*
529 	 * Extract and set starting directory.
530 	 */
531 	if (dp->v_type != VDIR) {
532 		if (islocked)
533 			vput(dp);
534 		else
535 			vrele(dp);
536 		nfsvno_relpathbuf(ndp);
537 		error = ENOTDIR;
538 		goto out1;
539 	}
540 	if (islocked)
541 		NFSVOPUNLOCK(dp);
542 	VREF(dp);
543 	*retdirp = dp;
544 	if (NFSVNO_EXRDONLY(exp))
545 		cnp->cn_flags |= RDONLY;
546 	ndp->ni_segflg = UIO_SYSSPACE;
547 
548 	if (nd->nd_flag & ND_PUBLOOKUP) {
549 		ndp->ni_loopcnt = 0;
550 		if (cnp->cn_pnbuf[0] == '/') {
551 			vrele(dp);
552 			/*
553 			 * Check for degenerate pathnames here, since lookup()
554 			 * panics on them.
555 			 */
556 			for (i = 1; i < ndp->ni_pathlen; i++)
557 				if (cnp->cn_pnbuf[i] != '/')
558 					break;
559 			if (i == ndp->ni_pathlen) {
560 				error = NFSERR_ACCES;
561 				goto out;
562 			}
563 			dp = rootvnode;
564 			VREF(dp);
565 		}
566 	} else if ((nfsrv_enable_crossmntpt == 0 && NFSVNO_EXPORTED(exp)) ||
567 	    (nd->nd_flag & ND_NFSV4) == 0) {
568 		/*
569 		 * Only cross mount points for NFSv4 when doing a
570 		 * mount while traversing the file system above
571 		 * the mount point, unless nfsrv_enable_crossmntpt is set.
572 		 */
573 		cnp->cn_flags |= NOCROSSMOUNT;
574 	}
575 
576 	/*
577 	 * Initialize for scan, set ni_startdir and bump ref on dp again
578 	 * because lookup() will dereference ni_startdir.
579 	 */
580 
581 	cnp->cn_thread = p;
582 	ndp->ni_startdir = dp;
583 	ndp->ni_rootdir = rootvnode;
584 	ndp->ni_topdir = NULL;
585 
586 	if (!lockleaf)
587 		cnp->cn_flags |= LOCKLEAF;
588 	for (;;) {
589 		cnp->cn_nameptr = cnp->cn_pnbuf;
590 		/*
591 		 * Call lookup() to do the real work.  If an error occurs,
592 		 * ndp->ni_vp and ni_dvp are left uninitialized or NULL and
593 		 * we do not have to dereference anything before returning.
594 		 * In either case ni_startdir will be dereferenced and NULLed
595 		 * out.
596 		 */
597 		error = lookup(ndp);
598 		if (error)
599 			break;
600 
601 		/*
602 		 * Check for encountering a symbolic link.  Trivial
603 		 * termination occurs if no symlink encountered.
604 		 */
605 		if ((cnp->cn_flags & ISSYMLINK) == 0) {
606 			if ((cnp->cn_flags & (SAVENAME | SAVESTART)) == 0)
607 				nfsvno_relpathbuf(ndp);
608 			if (ndp->ni_vp && !lockleaf)
609 				NFSVOPUNLOCK(ndp->ni_vp);
610 			break;
611 		}
612 
613 		/*
614 		 * Validate symlink
615 		 */
616 		if ((cnp->cn_flags & LOCKPARENT) && ndp->ni_pathlen == 1)
617 			NFSVOPUNLOCK(ndp->ni_dvp);
618 		if (!(nd->nd_flag & ND_PUBLOOKUP)) {
619 			error = EINVAL;
620 			goto badlink2;
621 		}
622 
623 		if (ndp->ni_loopcnt++ >= MAXSYMLINKS) {
624 			error = ELOOP;
625 			goto badlink2;
626 		}
627 		if (ndp->ni_pathlen > 1)
628 			cp = uma_zalloc(namei_zone, M_WAITOK);
629 		else
630 			cp = cnp->cn_pnbuf;
631 		aiov.iov_base = cp;
632 		aiov.iov_len = MAXPATHLEN;
633 		auio.uio_iov = &aiov;
634 		auio.uio_iovcnt = 1;
635 		auio.uio_offset = 0;
636 		auio.uio_rw = UIO_READ;
637 		auio.uio_segflg = UIO_SYSSPACE;
638 		auio.uio_td = NULL;
639 		auio.uio_resid = MAXPATHLEN;
640 		error = VOP_READLINK(ndp->ni_vp, &auio, cnp->cn_cred);
641 		if (error) {
642 		badlink1:
643 			if (ndp->ni_pathlen > 1)
644 				uma_zfree(namei_zone, cp);
645 		badlink2:
646 			vrele(ndp->ni_dvp);
647 			vput(ndp->ni_vp);
648 			break;
649 		}
650 		linklen = MAXPATHLEN - auio.uio_resid;
651 		if (linklen == 0) {
652 			error = ENOENT;
653 			goto badlink1;
654 		}
655 		if (linklen + ndp->ni_pathlen >= MAXPATHLEN) {
656 			error = ENAMETOOLONG;
657 			goto badlink1;
658 		}
659 
660 		/*
661 		 * Adjust or replace path
662 		 */
663 		if (ndp->ni_pathlen > 1) {
664 			NFSBCOPY(ndp->ni_next, cp + linklen, ndp->ni_pathlen);
665 			uma_zfree(namei_zone, cnp->cn_pnbuf);
666 			cnp->cn_pnbuf = cp;
667 		} else
668 			cnp->cn_pnbuf[linklen] = '\0';
669 		ndp->ni_pathlen += linklen;
670 
671 		/*
672 		 * Cleanup refs for next loop and check if root directory
673 		 * should replace current directory.  Normally ni_dvp
674 		 * becomes the new base directory and is cleaned up when
675 		 * we loop.  Explicitly null pointers after invalidation
676 		 * to clarify operation.
677 		 */
678 		vput(ndp->ni_vp);
679 		ndp->ni_vp = NULL;
680 
681 		if (cnp->cn_pnbuf[0] == '/') {
682 			vrele(ndp->ni_dvp);
683 			ndp->ni_dvp = ndp->ni_rootdir;
684 			VREF(ndp->ni_dvp);
685 		}
686 		ndp->ni_startdir = ndp->ni_dvp;
687 		ndp->ni_dvp = NULL;
688 	}
689 	if (!lockleaf)
690 		cnp->cn_flags &= ~LOCKLEAF;
691 
692 out:
693 	if (error) {
694 		nfsvno_relpathbuf(ndp);
695 		ndp->ni_vp = NULL;
696 		ndp->ni_dvp = NULL;
697 		ndp->ni_startdir = NULL;
698 	} else if ((ndp->ni_cnd.cn_flags & (WANTPARENT|LOCKPARENT)) == 0) {
699 		ndp->ni_dvp = NULL;
700 	}
701 
702 out1:
703 	NFSEXITCODE2(error, nd);
704 	return (error);
705 }
706 
707 /*
708  * Set up a pathname buffer and return a pointer to it and, optionally
709  * set a hash pointer.
710  */
711 void
712 nfsvno_setpathbuf(struct nameidata *ndp, char **bufpp, u_long **hashpp)
713 {
714 	struct componentname *cnp = &ndp->ni_cnd;
715 
716 	cnp->cn_flags |= (NOMACCHECK | HASBUF);
717 	cnp->cn_pnbuf = uma_zalloc(namei_zone, M_WAITOK);
718 	if (hashpp != NULL)
719 		*hashpp = NULL;
720 	*bufpp = cnp->cn_pnbuf;
721 }
722 
723 /*
724  * Release the above path buffer, if not released by nfsvno_namei().
725  */
726 void
727 nfsvno_relpathbuf(struct nameidata *ndp)
728 {
729 
730 	if ((ndp->ni_cnd.cn_flags & HASBUF) == 0)
731 		panic("nfsrelpath");
732 	uma_zfree(namei_zone, ndp->ni_cnd.cn_pnbuf);
733 	ndp->ni_cnd.cn_flags &= ~HASBUF;
734 }
735 
736 /*
737  * Readlink vnode op into an mbuf list.
738  */
739 int
740 nfsvno_readlink(struct vnode *vp, struct ucred *cred, int maxextsiz,
741     struct thread *p, struct mbuf **mpp, struct mbuf **mpendp, int *lenp)
742 {
743 	struct iovec *iv;
744 	struct uio io, *uiop = &io;
745 	struct mbuf *mp, *mp3;
746 	int len, tlen, error = 0;
747 
748 	len = NFS_MAXPATHLEN;
749 	if (maxextsiz > 0)
750 		uiop->uio_iovcnt = nfsrv_createiovec_extpgs(len, maxextsiz,
751 		    &mp3, &mp, &iv);
752 	else
753 		uiop->uio_iovcnt = nfsrv_createiovec(len, &mp3, &mp, &iv);
754 	uiop->uio_iov = iv;
755 	uiop->uio_offset = 0;
756 	uiop->uio_resid = len;
757 	uiop->uio_rw = UIO_READ;
758 	uiop->uio_segflg = UIO_SYSSPACE;
759 	uiop->uio_td = NULL;
760 	error = VOP_READLINK(vp, uiop, cred);
761 	free(iv, M_TEMP);
762 	if (error) {
763 		m_freem(mp3);
764 		*lenp = 0;
765 		goto out;
766 	}
767 	if (uiop->uio_resid > 0) {
768 		len -= uiop->uio_resid;
769 		tlen = NFSM_RNDUP(len);
770 		if (tlen == 0) {
771 			m_freem(mp3);
772 			mp3 = mp = NULL;
773 		} else if (tlen != NFS_MAXPATHLEN || tlen != len)
774 			mp = nfsrv_adj(mp3, NFS_MAXPATHLEN - tlen,
775 			    tlen - len);
776 	}
777 	*lenp = len;
778 	*mpp = mp3;
779 	*mpendp = mp;
780 
781 out:
782 	NFSEXITCODE(error);
783 	return (error);
784 }
785 
786 /*
787  * Create an mbuf chain and an associated iovec that can be used to Read
788  * or Getextattr of data.
789  * Upon success, return pointers to the first and last mbufs in the chain
790  * plus the malloc'd iovec and its iovlen.
791  */
792 static int
793 nfsrv_createiovec(int len, struct mbuf **mpp, struct mbuf **mpendp,
794     struct iovec **ivp)
795 {
796 	struct mbuf *m, *m2 = NULL, *m3;
797 	struct iovec *iv;
798 	int i, left, siz;
799 
800 	left = len;
801 	m3 = NULL;
802 	/*
803 	 * Generate the mbuf list with the uio_iov ref. to it.
804 	 */
805 	i = 0;
806 	while (left > 0) {
807 		NFSMGET(m);
808 		MCLGET(m, M_WAITOK);
809 		m->m_len = 0;
810 		siz = min(M_TRAILINGSPACE(m), left);
811 		left -= siz;
812 		i++;
813 		if (m3)
814 			m2->m_next = m;
815 		else
816 			m3 = m;
817 		m2 = m;
818 	}
819 	*ivp = iv = malloc(i * sizeof (struct iovec), M_TEMP, M_WAITOK);
820 	m = m3;
821 	left = len;
822 	i = 0;
823 	while (left > 0) {
824 		if (m == NULL)
825 			panic("nfsrv_createiovec iov");
826 		siz = min(M_TRAILINGSPACE(m), left);
827 		if (siz > 0) {
828 			iv->iov_base = mtod(m, caddr_t) + m->m_len;
829 			iv->iov_len = siz;
830 			m->m_len += siz;
831 			left -= siz;
832 			iv++;
833 			i++;
834 		}
835 		m = m->m_next;
836 	}
837 	*mpp = m3;
838 	*mpendp = m2;
839 	return (i);
840 }
841 
842 /*
843  * Create an mbuf chain and an associated iovec that can be used to Read
844  * or Getextattr of data.
845  * Upon success, return pointers to the first and last mbufs in the chain
846  * plus the malloc'd iovec and its iovlen.
847  * Same as above, but creates ext_pgs mbuf(s).
848  */
849 static int
850 nfsrv_createiovec_extpgs(int len, int maxextsiz, struct mbuf **mpp,
851     struct mbuf **mpendp, struct iovec **ivp)
852 {
853 	struct mbuf *m, *m2 = NULL, *m3;
854 	struct iovec *iv;
855 	int i, left, pgno, siz;
856 
857 	left = len;
858 	m3 = NULL;
859 	/*
860 	 * Generate the mbuf list with the uio_iov ref. to it.
861 	 */
862 	i = 0;
863 	while (left > 0) {
864 		siz = min(left, maxextsiz);
865 		m = mb_alloc_ext_plus_pages(siz, M_WAITOK);
866 		left -= siz;
867 		i += m->m_epg_npgs;
868 		if (m3 != NULL)
869 			m2->m_next = m;
870 		else
871 			m3 = m;
872 		m2 = m;
873 	}
874 	*ivp = iv = malloc(i * sizeof (struct iovec), M_TEMP, M_WAITOK);
875 	m = m3;
876 	left = len;
877 	i = 0;
878 	pgno = 0;
879 	while (left > 0) {
880 		if (m == NULL)
881 			panic("nfsvno_createiovec_extpgs iov");
882 		siz = min(PAGE_SIZE, left);
883 		if (siz > 0) {
884 			iv->iov_base = (void *)PHYS_TO_DMAP(m->m_epg_pa[pgno]);
885 			iv->iov_len = siz;
886 			m->m_len += siz;
887 			if (pgno == m->m_epg_npgs - 1)
888 				m->m_epg_last_len = siz;
889 			left -= siz;
890 			iv++;
891 			i++;
892 			pgno++;
893 		}
894 		if (pgno == m->m_epg_npgs && left > 0) {
895 			m = m->m_next;
896 			if (m == NULL)
897 				panic("nfsvno_createiovec_extpgs iov");
898 			pgno = 0;
899 		}
900 	}
901 	*mpp = m3;
902 	*mpendp = m2;
903 	return (i);
904 }
905 
906 /*
907  * Read vnode op call into mbuf list.
908  */
909 int
910 nfsvno_read(struct vnode *vp, off_t off, int cnt, struct ucred *cred,
911     int maxextsiz, struct thread *p, struct mbuf **mpp,
912     struct mbuf **mpendp)
913 {
914 	struct mbuf *m;
915 	struct iovec *iv;
916 	int error = 0, len, tlen, ioflag = 0;
917 	struct mbuf *m3;
918 	struct uio io, *uiop = &io;
919 	struct nfsheur *nh;
920 
921 	/*
922 	 * Attempt to read from a DS file. A return of ENOENT implies
923 	 * there is no DS file to read.
924 	 */
925 	error = nfsrv_proxyds(vp, off, cnt, cred, p, NFSPROC_READDS, mpp,
926 	    NULL, mpendp, NULL, NULL, NULL, 0, NULL);
927 	if (error != ENOENT)
928 		return (error);
929 
930 	len = NFSM_RNDUP(cnt);
931 	if (maxextsiz > 0)
932 		uiop->uio_iovcnt = nfsrv_createiovec_extpgs(len, maxextsiz,
933 		    &m3, &m, &iv);
934 	else
935 		uiop->uio_iovcnt = nfsrv_createiovec(len, &m3, &m, &iv);
936 	uiop->uio_iov = iv;
937 	uiop->uio_offset = off;
938 	uiop->uio_resid = len;
939 	uiop->uio_rw = UIO_READ;
940 	uiop->uio_segflg = UIO_SYSSPACE;
941 	uiop->uio_td = NULL;
942 	nh = nfsrv_sequential_heuristic(uiop, vp);
943 	ioflag |= nh->nh_seqcount << IO_SEQSHIFT;
944 	/* XXX KDM make this more systematic? */
945 	nfsstatsv1.srvbytes[NFSV4OP_READ] += uiop->uio_resid;
946 	error = VOP_READ(vp, uiop, IO_NODELOCKED | ioflag, cred);
947 	free(iv, M_TEMP);
948 	if (error) {
949 		m_freem(m3);
950 		*mpp = NULL;
951 		goto out;
952 	}
953 	nh->nh_nextoff = uiop->uio_offset;
954 	tlen = len - uiop->uio_resid;
955 	cnt = cnt < tlen ? cnt : tlen;
956 	tlen = NFSM_RNDUP(cnt);
957 	if (tlen == 0) {
958 		m_freem(m3);
959 		m3 = m = NULL;
960 	} else if (len != tlen || tlen != cnt)
961 		m = nfsrv_adj(m3, len - tlen, tlen - cnt);
962 	*mpp = m3;
963 	*mpendp = m;
964 
965 out:
966 	NFSEXITCODE(error);
967 	return (error);
968 }
969 
970 /*
971  * Create the iovec for the mbuf chain passed in as an argument.
972  * The "cp" argument is where the data starts within the first mbuf in
973  * the chain. It returns the iovec and the iovcnt.
974  */
975 static int
976 nfsrv_createiovecw(int retlen, struct mbuf *m, char *cp, struct iovec **ivpp,
977     int *iovcntp)
978 {
979 	struct mbuf *mp;
980 	struct iovec *ivp;
981 	int cnt, i, len;
982 
983 	/*
984 	 * Loop through the mbuf chain, counting how many mbufs are a
985 	 * part of this write operation, so the iovec size is known.
986 	 */
987 	cnt = 0;
988 	len = retlen;
989 	mp = m;
990 	i = mtod(mp, caddr_t) + mp->m_len - cp;
991 	while (len > 0) {
992 		if (i > 0) {
993 			len -= i;
994 			cnt++;
995 		}
996 		mp = mp->m_next;
997 		if (!mp) {
998 			if (len > 0)
999 				return (EBADRPC);
1000 		} else
1001 			i = mp->m_len;
1002 	}
1003 
1004 	/* Now, create the iovec. */
1005 	mp = m;
1006 	*ivpp = ivp = malloc(cnt * sizeof (struct iovec), M_TEMP,
1007 	    M_WAITOK);
1008 	*iovcntp = cnt;
1009 	i = mtod(mp, caddr_t) + mp->m_len - cp;
1010 	len = retlen;
1011 	while (len > 0) {
1012 		if (mp == NULL)
1013 			panic("nfsrv_createiovecw");
1014 		if (i > 0) {
1015 			i = min(i, len);
1016 			ivp->iov_base = cp;
1017 			ivp->iov_len = i;
1018 			ivp++;
1019 			len -= i;
1020 		}
1021 		mp = mp->m_next;
1022 		if (mp) {
1023 			i = mp->m_len;
1024 			cp = mtod(mp, caddr_t);
1025 		}
1026 	}
1027 	return (0);
1028 }
1029 
1030 /*
1031  * Write vnode op from an mbuf list.
1032  */
1033 int
1034 nfsvno_write(struct vnode *vp, off_t off, int retlen, int *stable,
1035     struct mbuf *mp, char *cp, struct ucred *cred, struct thread *p)
1036 {
1037 	struct iovec *iv;
1038 	int cnt, ioflags, error;
1039 	struct uio io, *uiop = &io;
1040 	struct nfsheur *nh;
1041 
1042 	/*
1043 	 * Attempt to write to a DS file. A return of ENOENT implies
1044 	 * there is no DS file to write.
1045 	 */
1046 	error = nfsrv_proxyds(vp, off, retlen, cred, p, NFSPROC_WRITEDS,
1047 	    &mp, cp, NULL, NULL, NULL, NULL, 0, NULL);
1048 	if (error != ENOENT) {
1049 		*stable = NFSWRITE_FILESYNC;
1050 		return (error);
1051 	}
1052 
1053 	if (*stable == NFSWRITE_UNSTABLE)
1054 		ioflags = IO_NODELOCKED;
1055 	else
1056 		ioflags = (IO_SYNC | IO_NODELOCKED);
1057 	error = nfsrv_createiovecw(retlen, mp, cp, &iv, &cnt);
1058 	if (error != 0)
1059 		return (error);
1060 	uiop->uio_iov = iv;
1061 	uiop->uio_iovcnt = cnt;
1062 	uiop->uio_resid = retlen;
1063 	uiop->uio_rw = UIO_WRITE;
1064 	uiop->uio_segflg = UIO_SYSSPACE;
1065 	NFSUIOPROC(uiop, p);
1066 	uiop->uio_offset = off;
1067 	nh = nfsrv_sequential_heuristic(uiop, vp);
1068 	ioflags |= nh->nh_seqcount << IO_SEQSHIFT;
1069 	/* XXX KDM make this more systematic? */
1070 	nfsstatsv1.srvbytes[NFSV4OP_WRITE] += uiop->uio_resid;
1071 	error = VOP_WRITE(vp, uiop, ioflags, cred);
1072 	if (error == 0)
1073 		nh->nh_nextoff = uiop->uio_offset;
1074 	free(iv, M_TEMP);
1075 
1076 	NFSEXITCODE(error);
1077 	return (error);
1078 }
1079 
1080 /*
1081  * Common code for creating a regular file (plus special files for V2).
1082  */
1083 int
1084 nfsvno_createsub(struct nfsrv_descript *nd, struct nameidata *ndp,
1085     struct vnode **vpp, struct nfsvattr *nvap, int *exclusive_flagp,
1086     int32_t *cverf, NFSDEV_T rdev, struct nfsexstuff *exp)
1087 {
1088 	u_quad_t tempsize;
1089 	int error;
1090 	struct thread *p = curthread;
1091 
1092 	error = nd->nd_repstat;
1093 	if (!error && ndp->ni_vp == NULL) {
1094 		if (nvap->na_type == VREG || nvap->na_type == VSOCK) {
1095 			vrele(ndp->ni_startdir);
1096 			error = VOP_CREATE(ndp->ni_dvp,
1097 			    &ndp->ni_vp, &ndp->ni_cnd, &nvap->na_vattr);
1098 			/* For a pNFS server, create the data file on a DS. */
1099 			if (error == 0 && nvap->na_type == VREG) {
1100 				/*
1101 				 * Create a data file on a DS for a pNFS server.
1102 				 * This function just returns if not
1103 				 * running a pNFS DS or the creation fails.
1104 				 */
1105 				nfsrv_pnfscreate(ndp->ni_vp, &nvap->na_vattr,
1106 				    nd->nd_cred, p);
1107 			}
1108 			vput(ndp->ni_dvp);
1109 			nfsvno_relpathbuf(ndp);
1110 			if (!error) {
1111 				if (*exclusive_flagp) {
1112 					*exclusive_flagp = 0;
1113 					NFSVNO_ATTRINIT(nvap);
1114 					nvap->na_atime.tv_sec = cverf[0];
1115 					nvap->na_atime.tv_nsec = cverf[1];
1116 					error = VOP_SETATTR(ndp->ni_vp,
1117 					    &nvap->na_vattr, nd->nd_cred);
1118 					if (error != 0) {
1119 						vput(ndp->ni_vp);
1120 						ndp->ni_vp = NULL;
1121 						error = NFSERR_NOTSUPP;
1122 					}
1123 				}
1124 			}
1125 		/*
1126 		 * NFS V2 Only. nfsrvd_mknod() does this for V3.
1127 		 * (This implies, just get out on an error.)
1128 		 */
1129 		} else if (nvap->na_type == VCHR || nvap->na_type == VBLK ||
1130 			nvap->na_type == VFIFO) {
1131 			if (nvap->na_type == VCHR && rdev == 0xffffffff)
1132 				nvap->na_type = VFIFO;
1133                         if (nvap->na_type != VFIFO &&
1134 			    (error = priv_check_cred(nd->nd_cred, PRIV_VFS_MKNOD_DEV))) {
1135 				vrele(ndp->ni_startdir);
1136 				nfsvno_relpathbuf(ndp);
1137 				vput(ndp->ni_dvp);
1138 				goto out;
1139 			}
1140 			nvap->na_rdev = rdev;
1141 			error = VOP_MKNOD(ndp->ni_dvp, &ndp->ni_vp,
1142 			    &ndp->ni_cnd, &nvap->na_vattr);
1143 			vput(ndp->ni_dvp);
1144 			nfsvno_relpathbuf(ndp);
1145 			vrele(ndp->ni_startdir);
1146 			if (error)
1147 				goto out;
1148 		} else {
1149 			vrele(ndp->ni_startdir);
1150 			nfsvno_relpathbuf(ndp);
1151 			vput(ndp->ni_dvp);
1152 			error = ENXIO;
1153 			goto out;
1154 		}
1155 		*vpp = ndp->ni_vp;
1156 	} else {
1157 		/*
1158 		 * Handle cases where error is already set and/or
1159 		 * the file exists.
1160 		 * 1 - clean up the lookup
1161 		 * 2 - iff !error and na_size set, truncate it
1162 		 */
1163 		vrele(ndp->ni_startdir);
1164 		nfsvno_relpathbuf(ndp);
1165 		*vpp = ndp->ni_vp;
1166 		if (ndp->ni_dvp == *vpp)
1167 			vrele(ndp->ni_dvp);
1168 		else
1169 			vput(ndp->ni_dvp);
1170 		if (!error && nvap->na_size != VNOVAL) {
1171 			error = nfsvno_accchk(*vpp, VWRITE,
1172 			    nd->nd_cred, exp, p, NFSACCCHK_NOOVERRIDE,
1173 			    NFSACCCHK_VPISLOCKED, NULL);
1174 			if (!error) {
1175 				tempsize = nvap->na_size;
1176 				NFSVNO_ATTRINIT(nvap);
1177 				nvap->na_size = tempsize;
1178 				error = VOP_SETATTR(*vpp,
1179 				    &nvap->na_vattr, nd->nd_cred);
1180 			}
1181 		}
1182 		if (error)
1183 			vput(*vpp);
1184 	}
1185 
1186 out:
1187 	NFSEXITCODE(error);
1188 	return (error);
1189 }
1190 
1191 /*
1192  * Do a mknod vnode op.
1193  */
1194 int
1195 nfsvno_mknod(struct nameidata *ndp, struct nfsvattr *nvap, struct ucred *cred,
1196     struct thread *p)
1197 {
1198 	int error = 0;
1199 	enum vtype vtyp;
1200 
1201 	vtyp = nvap->na_type;
1202 	/*
1203 	 * Iff doesn't exist, create it.
1204 	 */
1205 	if (ndp->ni_vp) {
1206 		vrele(ndp->ni_startdir);
1207 		nfsvno_relpathbuf(ndp);
1208 		vput(ndp->ni_dvp);
1209 		vrele(ndp->ni_vp);
1210 		error = EEXIST;
1211 		goto out;
1212 	}
1213 	if (vtyp != VCHR && vtyp != VBLK && vtyp != VSOCK && vtyp != VFIFO) {
1214 		vrele(ndp->ni_startdir);
1215 		nfsvno_relpathbuf(ndp);
1216 		vput(ndp->ni_dvp);
1217 		error = NFSERR_BADTYPE;
1218 		goto out;
1219 	}
1220 	if (vtyp == VSOCK) {
1221 		vrele(ndp->ni_startdir);
1222 		error = VOP_CREATE(ndp->ni_dvp, &ndp->ni_vp,
1223 		    &ndp->ni_cnd, &nvap->na_vattr);
1224 		vput(ndp->ni_dvp);
1225 		nfsvno_relpathbuf(ndp);
1226 	} else {
1227 		if (nvap->na_type != VFIFO &&
1228 		    (error = priv_check_cred(cred, PRIV_VFS_MKNOD_DEV))) {
1229 			vrele(ndp->ni_startdir);
1230 			nfsvno_relpathbuf(ndp);
1231 			vput(ndp->ni_dvp);
1232 			goto out;
1233 		}
1234 		error = VOP_MKNOD(ndp->ni_dvp, &ndp->ni_vp,
1235 		    &ndp->ni_cnd, &nvap->na_vattr);
1236 		vput(ndp->ni_dvp);
1237 		nfsvno_relpathbuf(ndp);
1238 		vrele(ndp->ni_startdir);
1239 		/*
1240 		 * Since VOP_MKNOD returns the ni_vp, I can't
1241 		 * see any reason to do the lookup.
1242 		 */
1243 	}
1244 
1245 out:
1246 	NFSEXITCODE(error);
1247 	return (error);
1248 }
1249 
1250 /*
1251  * Mkdir vnode op.
1252  */
1253 int
1254 nfsvno_mkdir(struct nameidata *ndp, struct nfsvattr *nvap, uid_t saved_uid,
1255     struct ucred *cred, struct thread *p, struct nfsexstuff *exp)
1256 {
1257 	int error = 0;
1258 
1259 	if (ndp->ni_vp != NULL) {
1260 		if (ndp->ni_dvp == ndp->ni_vp)
1261 			vrele(ndp->ni_dvp);
1262 		else
1263 			vput(ndp->ni_dvp);
1264 		vrele(ndp->ni_vp);
1265 		nfsvno_relpathbuf(ndp);
1266 		error = EEXIST;
1267 		goto out;
1268 	}
1269 	error = VOP_MKDIR(ndp->ni_dvp, &ndp->ni_vp, &ndp->ni_cnd,
1270 	    &nvap->na_vattr);
1271 	vput(ndp->ni_dvp);
1272 	nfsvno_relpathbuf(ndp);
1273 
1274 out:
1275 	NFSEXITCODE(error);
1276 	return (error);
1277 }
1278 
1279 /*
1280  * symlink vnode op.
1281  */
1282 int
1283 nfsvno_symlink(struct nameidata *ndp, struct nfsvattr *nvap, char *pathcp,
1284     int pathlen, int not_v2, uid_t saved_uid, struct ucred *cred, struct thread *p,
1285     struct nfsexstuff *exp)
1286 {
1287 	int error = 0;
1288 
1289 	if (ndp->ni_vp) {
1290 		vrele(ndp->ni_startdir);
1291 		nfsvno_relpathbuf(ndp);
1292 		if (ndp->ni_dvp == ndp->ni_vp)
1293 			vrele(ndp->ni_dvp);
1294 		else
1295 			vput(ndp->ni_dvp);
1296 		vrele(ndp->ni_vp);
1297 		error = EEXIST;
1298 		goto out;
1299 	}
1300 
1301 	error = VOP_SYMLINK(ndp->ni_dvp, &ndp->ni_vp, &ndp->ni_cnd,
1302 	    &nvap->na_vattr, pathcp);
1303 	vput(ndp->ni_dvp);
1304 	vrele(ndp->ni_startdir);
1305 	nfsvno_relpathbuf(ndp);
1306 	/*
1307 	 * Although FreeBSD still had the lookup code in
1308 	 * it for 7/current, there doesn't seem to be any
1309 	 * point, since VOP_SYMLINK() returns the ni_vp.
1310 	 * Just vput it for v2.
1311 	 */
1312 	if (!not_v2 && !error)
1313 		vput(ndp->ni_vp);
1314 
1315 out:
1316 	NFSEXITCODE(error);
1317 	return (error);
1318 }
1319 
1320 /*
1321  * Parse symbolic link arguments.
1322  * This function has an ugly side effect. It will malloc() an area for
1323  * the symlink and set iov_base to point to it, only if it succeeds.
1324  * So, if it returns with uiop->uio_iov->iov_base != NULL, that must
1325  * be FREE'd later.
1326  */
1327 int
1328 nfsvno_getsymlink(struct nfsrv_descript *nd, struct nfsvattr *nvap,
1329     struct thread *p, char **pathcpp, int *lenp)
1330 {
1331 	u_int32_t *tl;
1332 	char *pathcp = NULL;
1333 	int error = 0, len;
1334 	struct nfsv2_sattr *sp;
1335 
1336 	*pathcpp = NULL;
1337 	*lenp = 0;
1338 	if ((nd->nd_flag & ND_NFSV3) &&
1339 	    (error = nfsrv_sattr(nd, NULL, nvap, NULL, NULL, p)))
1340 		goto nfsmout;
1341 	NFSM_DISSECT(tl, u_int32_t *, NFSX_UNSIGNED);
1342 	len = fxdr_unsigned(int, *tl);
1343 	if (len > NFS_MAXPATHLEN || len <= 0) {
1344 		error = EBADRPC;
1345 		goto nfsmout;
1346 	}
1347 	pathcp = malloc(len + 1, M_TEMP, M_WAITOK);
1348 	error = nfsrv_mtostr(nd, pathcp, len);
1349 	if (error)
1350 		goto nfsmout;
1351 	if (nd->nd_flag & ND_NFSV2) {
1352 		NFSM_DISSECT(sp, struct nfsv2_sattr *, NFSX_V2SATTR);
1353 		nvap->na_mode = fxdr_unsigned(u_int16_t, sp->sa_mode);
1354 	}
1355 	*pathcpp = pathcp;
1356 	*lenp = len;
1357 	NFSEXITCODE2(0, nd);
1358 	return (0);
1359 nfsmout:
1360 	if (pathcp)
1361 		free(pathcp, M_TEMP);
1362 	NFSEXITCODE2(error, nd);
1363 	return (error);
1364 }
1365 
1366 /*
1367  * Remove a non-directory object.
1368  */
1369 int
1370 nfsvno_removesub(struct nameidata *ndp, int is_v4, struct ucred *cred,
1371     struct thread *p, struct nfsexstuff *exp)
1372 {
1373 	struct vnode *vp, *dsdvp[NFSDEV_MAXMIRRORS];
1374 	int error = 0, mirrorcnt;
1375 	char fname[PNFS_FILENAME_LEN + 1];
1376 	fhandle_t fh;
1377 
1378 	vp = ndp->ni_vp;
1379 	dsdvp[0] = NULL;
1380 	if (vp->v_type == VDIR)
1381 		error = NFSERR_ISDIR;
1382 	else if (is_v4)
1383 		error = nfsrv_checkremove(vp, 1, NULL, (nfsquad_t)((u_quad_t)0),
1384 		    p);
1385 	if (error == 0)
1386 		nfsrv_pnfsremovesetup(vp, p, dsdvp, &mirrorcnt, fname, &fh);
1387 	if (!error)
1388 		error = VOP_REMOVE(ndp->ni_dvp, vp, &ndp->ni_cnd);
1389 	if (error == 0 && dsdvp[0] != NULL)
1390 		nfsrv_pnfsremove(dsdvp, mirrorcnt, fname, &fh, p);
1391 	if (ndp->ni_dvp == vp)
1392 		vrele(ndp->ni_dvp);
1393 	else
1394 		vput(ndp->ni_dvp);
1395 	vput(vp);
1396 	if ((ndp->ni_cnd.cn_flags & SAVENAME) != 0)
1397 		nfsvno_relpathbuf(ndp);
1398 	NFSEXITCODE(error);
1399 	return (error);
1400 }
1401 
1402 /*
1403  * Remove a directory.
1404  */
1405 int
1406 nfsvno_rmdirsub(struct nameidata *ndp, int is_v4, struct ucred *cred,
1407     struct thread *p, struct nfsexstuff *exp)
1408 {
1409 	struct vnode *vp;
1410 	int error = 0;
1411 
1412 	vp = ndp->ni_vp;
1413 	if (vp->v_type != VDIR) {
1414 		error = ENOTDIR;
1415 		goto out;
1416 	}
1417 	/*
1418 	 * No rmdir "." please.
1419 	 */
1420 	if (ndp->ni_dvp == vp) {
1421 		error = EINVAL;
1422 		goto out;
1423 	}
1424 	/*
1425 	 * The root of a mounted filesystem cannot be deleted.
1426 	 */
1427 	if (vp->v_vflag & VV_ROOT)
1428 		error = EBUSY;
1429 out:
1430 	if (!error)
1431 		error = VOP_RMDIR(ndp->ni_dvp, vp, &ndp->ni_cnd);
1432 	if (ndp->ni_dvp == vp)
1433 		vrele(ndp->ni_dvp);
1434 	else
1435 		vput(ndp->ni_dvp);
1436 	vput(vp);
1437 	if ((ndp->ni_cnd.cn_flags & SAVENAME) != 0)
1438 		nfsvno_relpathbuf(ndp);
1439 	NFSEXITCODE(error);
1440 	return (error);
1441 }
1442 
1443 /*
1444  * Rename vnode op.
1445  */
1446 int
1447 nfsvno_rename(struct nameidata *fromndp, struct nameidata *tondp,
1448     u_int32_t ndstat, u_int32_t ndflag, struct ucred *cred, struct thread *p)
1449 {
1450 	struct vnode *fvp, *tvp, *tdvp, *dsdvp[NFSDEV_MAXMIRRORS];
1451 	int error = 0, mirrorcnt;
1452 	char fname[PNFS_FILENAME_LEN + 1];
1453 	fhandle_t fh;
1454 
1455 	dsdvp[0] = NULL;
1456 	fvp = fromndp->ni_vp;
1457 	if (ndstat) {
1458 		vrele(fromndp->ni_dvp);
1459 		vrele(fvp);
1460 		error = ndstat;
1461 		goto out1;
1462 	}
1463 	tdvp = tondp->ni_dvp;
1464 	tvp = tondp->ni_vp;
1465 	if (tvp != NULL) {
1466 		if (fvp->v_type == VDIR && tvp->v_type != VDIR) {
1467 			error = (ndflag & ND_NFSV2) ? EISDIR : EEXIST;
1468 			goto out;
1469 		} else if (fvp->v_type != VDIR && tvp->v_type == VDIR) {
1470 			error = (ndflag & ND_NFSV2) ? ENOTDIR : EEXIST;
1471 			goto out;
1472 		}
1473 		if (tvp->v_type == VDIR && tvp->v_mountedhere) {
1474 			error = (ndflag & ND_NFSV2) ? ENOTEMPTY : EXDEV;
1475 			goto out;
1476 		}
1477 
1478 		/*
1479 		 * A rename to '.' or '..' results in a prematurely
1480 		 * unlocked vnode on FreeBSD5, so I'm just going to fail that
1481 		 * here.
1482 		 */
1483 		if ((tondp->ni_cnd.cn_namelen == 1 &&
1484 		     tondp->ni_cnd.cn_nameptr[0] == '.') ||
1485 		    (tondp->ni_cnd.cn_namelen == 2 &&
1486 		     tondp->ni_cnd.cn_nameptr[0] == '.' &&
1487 		     tondp->ni_cnd.cn_nameptr[1] == '.')) {
1488 			error = EINVAL;
1489 			goto out;
1490 		}
1491 	}
1492 	if (fvp->v_type == VDIR && fvp->v_mountedhere) {
1493 		error = (ndflag & ND_NFSV2) ? ENOTEMPTY : EXDEV;
1494 		goto out;
1495 	}
1496 	if (fvp->v_mount != tdvp->v_mount) {
1497 		error = (ndflag & ND_NFSV2) ? ENOTEMPTY : EXDEV;
1498 		goto out;
1499 	}
1500 	if (fvp == tdvp) {
1501 		error = (ndflag & ND_NFSV2) ? ENOTEMPTY : EINVAL;
1502 		goto out;
1503 	}
1504 	if (fvp == tvp) {
1505 		/*
1506 		 * If source and destination are the same, there is nothing to
1507 		 * do. Set error to -1 to indicate this.
1508 		 */
1509 		error = -1;
1510 		goto out;
1511 	}
1512 	if (ndflag & ND_NFSV4) {
1513 		if (NFSVOPLOCK(fvp, LK_EXCLUSIVE) == 0) {
1514 			error = nfsrv_checkremove(fvp, 0, NULL,
1515 			    (nfsquad_t)((u_quad_t)0), p);
1516 			NFSVOPUNLOCK(fvp);
1517 		} else
1518 			error = EPERM;
1519 		if (tvp && !error)
1520 			error = nfsrv_checkremove(tvp, 1, NULL,
1521 			    (nfsquad_t)((u_quad_t)0), p);
1522 	} else {
1523 		/*
1524 		 * For NFSv2 and NFSv3, try to get rid of the delegation, so
1525 		 * that the NFSv4 client won't be confused by the rename.
1526 		 * Since nfsd_recalldelegation() can only be called on an
1527 		 * unlocked vnode at this point and fvp is the file that will
1528 		 * still exist after the rename, just do fvp.
1529 		 */
1530 		nfsd_recalldelegation(fvp, p);
1531 	}
1532 	if (error == 0 && tvp != NULL) {
1533 		nfsrv_pnfsremovesetup(tvp, p, dsdvp, &mirrorcnt, fname, &fh);
1534 		NFSD_DEBUG(4, "nfsvno_rename: pnfsremovesetup"
1535 		    " dsdvp=%p\n", dsdvp[0]);
1536 	}
1537 out:
1538 	if (!error) {
1539 		error = VOP_RENAME(fromndp->ni_dvp, fromndp->ni_vp,
1540 		    &fromndp->ni_cnd, tondp->ni_dvp, tondp->ni_vp,
1541 		    &tondp->ni_cnd);
1542 	} else {
1543 		if (tdvp == tvp)
1544 			vrele(tdvp);
1545 		else
1546 			vput(tdvp);
1547 		if (tvp)
1548 			vput(tvp);
1549 		vrele(fromndp->ni_dvp);
1550 		vrele(fvp);
1551 		if (error == -1)
1552 			error = 0;
1553 	}
1554 
1555 	/*
1556 	 * If dsdvp[0] != NULL, it was set up by nfsrv_pnfsremovesetup() and
1557 	 * if the rename succeeded, the DS file for the tvp needs to be
1558 	 * removed.
1559 	 */
1560 	if (error == 0 && dsdvp[0] != NULL) {
1561 		nfsrv_pnfsremove(dsdvp, mirrorcnt, fname, &fh, p);
1562 		NFSD_DEBUG(4, "nfsvno_rename: pnfsremove\n");
1563 	}
1564 
1565 	vrele(tondp->ni_startdir);
1566 	nfsvno_relpathbuf(tondp);
1567 out1:
1568 	vrele(fromndp->ni_startdir);
1569 	nfsvno_relpathbuf(fromndp);
1570 	NFSEXITCODE(error);
1571 	return (error);
1572 }
1573 
1574 /*
1575  * Link vnode op.
1576  */
1577 int
1578 nfsvno_link(struct nameidata *ndp, struct vnode *vp, struct ucred *cred,
1579     struct thread *p, struct nfsexstuff *exp)
1580 {
1581 	struct vnode *xp;
1582 	int error = 0;
1583 
1584 	xp = ndp->ni_vp;
1585 	if (xp != NULL) {
1586 		error = EEXIST;
1587 	} else {
1588 		xp = ndp->ni_dvp;
1589 		if (vp->v_mount != xp->v_mount)
1590 			error = EXDEV;
1591 	}
1592 	if (!error) {
1593 		NFSVOPLOCK(vp, LK_EXCLUSIVE | LK_RETRY);
1594 		if (!VN_IS_DOOMED(vp))
1595 			error = VOP_LINK(ndp->ni_dvp, vp, &ndp->ni_cnd);
1596 		else
1597 			error = EPERM;
1598 		if (ndp->ni_dvp == vp)
1599 			vrele(ndp->ni_dvp);
1600 		else
1601 			vput(ndp->ni_dvp);
1602 		NFSVOPUNLOCK(vp);
1603 	} else {
1604 		if (ndp->ni_dvp == ndp->ni_vp)
1605 			vrele(ndp->ni_dvp);
1606 		else
1607 			vput(ndp->ni_dvp);
1608 		if (ndp->ni_vp)
1609 			vrele(ndp->ni_vp);
1610 	}
1611 	nfsvno_relpathbuf(ndp);
1612 	NFSEXITCODE(error);
1613 	return (error);
1614 }
1615 
1616 /*
1617  * Do the fsync() appropriate for the commit.
1618  */
1619 int
1620 nfsvno_fsync(struct vnode *vp, u_int64_t off, int cnt, struct ucred *cred,
1621     struct thread *td)
1622 {
1623 	int error = 0;
1624 
1625 	/*
1626 	 * RFC 1813 3.3.21: if count is 0, a flush from offset to the end of
1627 	 * file is done.  At this time VOP_FSYNC does not accept offset and
1628 	 * byte count parameters so call VOP_FSYNC the whole file for now.
1629 	 * The same is true for NFSv4: RFC 3530 Sec. 14.2.3.
1630 	 * File systems that do not use the buffer cache (as indicated
1631 	 * by MNTK_USES_BCACHE not being set) must use VOP_FSYNC().
1632 	 */
1633 	if (cnt == 0 || cnt > MAX_COMMIT_COUNT ||
1634 	    (vp->v_mount->mnt_kern_flag & MNTK_USES_BCACHE) == 0) {
1635 		/*
1636 		 * Give up and do the whole thing
1637 		 */
1638 		if (vp->v_object && vm_object_mightbedirty(vp->v_object)) {
1639 			VM_OBJECT_WLOCK(vp->v_object);
1640 			vm_object_page_clean(vp->v_object, 0, 0, OBJPC_SYNC);
1641 			VM_OBJECT_WUNLOCK(vp->v_object);
1642 		}
1643 		error = VOP_FSYNC(vp, MNT_WAIT, td);
1644 	} else {
1645 		/*
1646 		 * Locate and synchronously write any buffers that fall
1647 		 * into the requested range.  Note:  we are assuming that
1648 		 * f_iosize is a power of 2.
1649 		 */
1650 		int iosize = vp->v_mount->mnt_stat.f_iosize;
1651 		int iomask = iosize - 1;
1652 		struct bufobj *bo;
1653 		daddr_t lblkno;
1654 
1655 		/*
1656 		 * Align to iosize boundary, super-align to page boundary.
1657 		 */
1658 		if (off & iomask) {
1659 			cnt += off & iomask;
1660 			off &= ~(u_quad_t)iomask;
1661 		}
1662 		if (off & PAGE_MASK) {
1663 			cnt += off & PAGE_MASK;
1664 			off &= ~(u_quad_t)PAGE_MASK;
1665 		}
1666 		lblkno = off / iosize;
1667 
1668 		if (vp->v_object && vm_object_mightbedirty(vp->v_object)) {
1669 			VM_OBJECT_WLOCK(vp->v_object);
1670 			vm_object_page_clean(vp->v_object, off, off + cnt,
1671 			    OBJPC_SYNC);
1672 			VM_OBJECT_WUNLOCK(vp->v_object);
1673 		}
1674 
1675 		bo = &vp->v_bufobj;
1676 		BO_LOCK(bo);
1677 		while (cnt > 0) {
1678 			struct buf *bp;
1679 
1680 			/*
1681 			 * If we have a buffer and it is marked B_DELWRI we
1682 			 * have to lock and write it.  Otherwise the prior
1683 			 * write is assumed to have already been committed.
1684 			 *
1685 			 * gbincore() can return invalid buffers now so we
1686 			 * have to check that bit as well (though B_DELWRI
1687 			 * should not be set if B_INVAL is set there could be
1688 			 * a race here since we haven't locked the buffer).
1689 			 */
1690 			if ((bp = gbincore(&vp->v_bufobj, lblkno)) != NULL) {
1691 				if (BUF_LOCK(bp, LK_EXCLUSIVE | LK_SLEEPFAIL |
1692 				    LK_INTERLOCK, BO_LOCKPTR(bo)) == ENOLCK) {
1693 					BO_LOCK(bo);
1694 					continue; /* retry */
1695 				}
1696 			    	if ((bp->b_flags & (B_DELWRI|B_INVAL)) ==
1697 				    B_DELWRI) {
1698 					bremfree(bp);
1699 					bp->b_flags &= ~B_ASYNC;
1700 					bwrite(bp);
1701 					++nfs_commit_miss;
1702 				} else
1703 					BUF_UNLOCK(bp);
1704 				BO_LOCK(bo);
1705 			}
1706 			++nfs_commit_blks;
1707 			if (cnt < iosize)
1708 				break;
1709 			cnt -= iosize;
1710 			++lblkno;
1711 		}
1712 		BO_UNLOCK(bo);
1713 	}
1714 	NFSEXITCODE(error);
1715 	return (error);
1716 }
1717 
1718 /*
1719  * Statfs vnode op.
1720  */
1721 int
1722 nfsvno_statfs(struct vnode *vp, struct statfs *sf)
1723 {
1724 	struct statfs *tsf;
1725 	int error;
1726 
1727 	tsf = NULL;
1728 	if (nfsrv_devidcnt > 0) {
1729 		/* For a pNFS service, get the DS numbers. */
1730 		tsf = malloc(sizeof(*tsf), M_TEMP, M_WAITOK | M_ZERO);
1731 		error = nfsrv_pnfsstatfs(tsf, vp->v_mount);
1732 		if (error != 0) {
1733 			free(tsf, M_TEMP);
1734 			tsf = NULL;
1735 		}
1736 	}
1737 	error = VFS_STATFS(vp->v_mount, sf);
1738 	if (error == 0) {
1739 		if (tsf != NULL) {
1740 			sf->f_blocks = tsf->f_blocks;
1741 			sf->f_bavail = tsf->f_bavail;
1742 			sf->f_bfree = tsf->f_bfree;
1743 			sf->f_bsize = tsf->f_bsize;
1744 		}
1745 		/*
1746 		 * Since NFS handles these values as unsigned on the
1747 		 * wire, there is no way to represent negative values,
1748 		 * so set them to 0. Without this, they will appear
1749 		 * to be very large positive values for clients like
1750 		 * Solaris10.
1751 		 */
1752 		if (sf->f_bavail < 0)
1753 			sf->f_bavail = 0;
1754 		if (sf->f_ffree < 0)
1755 			sf->f_ffree = 0;
1756 	}
1757 	free(tsf, M_TEMP);
1758 	NFSEXITCODE(error);
1759 	return (error);
1760 }
1761 
1762 /*
1763  * Do the vnode op stuff for Open. Similar to nfsvno_createsub(), but
1764  * must handle nfsrv_opencheck() calls after any other access checks.
1765  */
1766 void
1767 nfsvno_open(struct nfsrv_descript *nd, struct nameidata *ndp,
1768     nfsquad_t clientid, nfsv4stateid_t *stateidp, struct nfsstate *stp,
1769     int *exclusive_flagp, struct nfsvattr *nvap, int32_t *cverf, int create,
1770     NFSACL_T *aclp, nfsattrbit_t *attrbitp, struct ucred *cred,
1771     struct nfsexstuff *exp, struct vnode **vpp)
1772 {
1773 	struct vnode *vp = NULL;
1774 	u_quad_t tempsize;
1775 	struct nfsexstuff nes;
1776 	struct thread *p = curthread;
1777 
1778 	if (ndp->ni_vp == NULL)
1779 		nd->nd_repstat = nfsrv_opencheck(clientid,
1780 		    stateidp, stp, NULL, nd, p, nd->nd_repstat);
1781 	if (!nd->nd_repstat) {
1782 		if (ndp->ni_vp == NULL) {
1783 			vrele(ndp->ni_startdir);
1784 			nd->nd_repstat = VOP_CREATE(ndp->ni_dvp,
1785 			    &ndp->ni_vp, &ndp->ni_cnd, &nvap->na_vattr);
1786 			/* For a pNFS server, create the data file on a DS. */
1787 			if (nd->nd_repstat == 0) {
1788 				/*
1789 				 * Create a data file on a DS for a pNFS server.
1790 				 * This function just returns if not
1791 				 * running a pNFS DS or the creation fails.
1792 				 */
1793 				nfsrv_pnfscreate(ndp->ni_vp, &nvap->na_vattr,
1794 				    cred, p);
1795 			}
1796 			vput(ndp->ni_dvp);
1797 			nfsvno_relpathbuf(ndp);
1798 			if (!nd->nd_repstat) {
1799 				if (*exclusive_flagp) {
1800 					*exclusive_flagp = 0;
1801 					NFSVNO_ATTRINIT(nvap);
1802 					nvap->na_atime.tv_sec = cverf[0];
1803 					nvap->na_atime.tv_nsec = cverf[1];
1804 					nd->nd_repstat = VOP_SETATTR(ndp->ni_vp,
1805 					    &nvap->na_vattr, cred);
1806 					if (nd->nd_repstat != 0) {
1807 						vput(ndp->ni_vp);
1808 						ndp->ni_vp = NULL;
1809 						nd->nd_repstat = NFSERR_NOTSUPP;
1810 					} else
1811 						NFSSETBIT_ATTRBIT(attrbitp,
1812 						    NFSATTRBIT_TIMEACCESS);
1813 				} else {
1814 					nfsrv_fixattr(nd, ndp->ni_vp, nvap,
1815 					    aclp, p, attrbitp, exp);
1816 				}
1817 			}
1818 			vp = ndp->ni_vp;
1819 		} else {
1820 			if (ndp->ni_startdir)
1821 				vrele(ndp->ni_startdir);
1822 			nfsvno_relpathbuf(ndp);
1823 			vp = ndp->ni_vp;
1824 			if (create == NFSV4OPEN_CREATE) {
1825 				if (ndp->ni_dvp == vp)
1826 					vrele(ndp->ni_dvp);
1827 				else
1828 					vput(ndp->ni_dvp);
1829 			}
1830 			if (NFSVNO_ISSETSIZE(nvap) && vp->v_type == VREG) {
1831 				if (ndp->ni_cnd.cn_flags & RDONLY)
1832 					NFSVNO_SETEXRDONLY(&nes);
1833 				else
1834 					NFSVNO_EXINIT(&nes);
1835 				nd->nd_repstat = nfsvno_accchk(vp,
1836 				    VWRITE, cred, &nes, p,
1837 				    NFSACCCHK_NOOVERRIDE,
1838 				    NFSACCCHK_VPISLOCKED, NULL);
1839 				nd->nd_repstat = nfsrv_opencheck(clientid,
1840 				    stateidp, stp, vp, nd, p, nd->nd_repstat);
1841 				if (!nd->nd_repstat) {
1842 					tempsize = nvap->na_size;
1843 					NFSVNO_ATTRINIT(nvap);
1844 					nvap->na_size = tempsize;
1845 					nd->nd_repstat = VOP_SETATTR(vp,
1846 					    &nvap->na_vattr, cred);
1847 				}
1848 			} else if (vp->v_type == VREG) {
1849 				nd->nd_repstat = nfsrv_opencheck(clientid,
1850 				    stateidp, stp, vp, nd, p, nd->nd_repstat);
1851 			}
1852 		}
1853 	} else {
1854 		if (ndp->ni_cnd.cn_flags & HASBUF)
1855 			nfsvno_relpathbuf(ndp);
1856 		if (ndp->ni_startdir && create == NFSV4OPEN_CREATE) {
1857 			vrele(ndp->ni_startdir);
1858 			if (ndp->ni_dvp == ndp->ni_vp)
1859 				vrele(ndp->ni_dvp);
1860 			else
1861 				vput(ndp->ni_dvp);
1862 			if (ndp->ni_vp)
1863 				vput(ndp->ni_vp);
1864 		}
1865 	}
1866 	*vpp = vp;
1867 
1868 	NFSEXITCODE2(0, nd);
1869 }
1870 
1871 /*
1872  * Updates the file rev and sets the mtime and ctime
1873  * to the current clock time, returning the va_filerev and va_Xtime
1874  * values.
1875  * Return ESTALE to indicate the vnode is VIRF_DOOMED.
1876  */
1877 int
1878 nfsvno_updfilerev(struct vnode *vp, struct nfsvattr *nvap,
1879     struct nfsrv_descript *nd, struct thread *p)
1880 {
1881 	struct vattr va;
1882 
1883 	VATTR_NULL(&va);
1884 	vfs_timestamp(&va.va_mtime);
1885 	if (NFSVOPISLOCKED(vp) != LK_EXCLUSIVE) {
1886 		NFSVOPLOCK(vp, LK_UPGRADE | LK_RETRY);
1887 		if (VN_IS_DOOMED(vp))
1888 			return (ESTALE);
1889 	}
1890 	(void) VOP_SETATTR(vp, &va, nd->nd_cred);
1891 	(void) nfsvno_getattr(vp, nvap, nd, p, 1, NULL);
1892 	return (0);
1893 }
1894 
1895 /*
1896  * Glue routine to nfsv4_fillattr().
1897  */
1898 int
1899 nfsvno_fillattr(struct nfsrv_descript *nd, struct mount *mp, struct vnode *vp,
1900     struct nfsvattr *nvap, fhandle_t *fhp, int rderror, nfsattrbit_t *attrbitp,
1901     struct ucred *cred, struct thread *p, int isdgram, int reterr,
1902     int supports_nfsv4acls, int at_root, uint64_t mounted_on_fileno)
1903 {
1904 	struct statfs *sf;
1905 	int error;
1906 
1907 	sf = NULL;
1908 	if (nfsrv_devidcnt > 0 &&
1909 	    (NFSISSET_ATTRBIT(attrbitp, NFSATTRBIT_SPACEAVAIL) ||
1910 	     NFSISSET_ATTRBIT(attrbitp, NFSATTRBIT_SPACEFREE) ||
1911 	     NFSISSET_ATTRBIT(attrbitp, NFSATTRBIT_SPACETOTAL))) {
1912 		sf = malloc(sizeof(*sf), M_TEMP, M_WAITOK | M_ZERO);
1913 		error = nfsrv_pnfsstatfs(sf, mp);
1914 		if (error != 0) {
1915 			free(sf, M_TEMP);
1916 			sf = NULL;
1917 		}
1918 	}
1919 	error = nfsv4_fillattr(nd, mp, vp, NULL, &nvap->na_vattr, fhp, rderror,
1920 	    attrbitp, cred, p, isdgram, reterr, supports_nfsv4acls, at_root,
1921 	    mounted_on_fileno, sf);
1922 	free(sf, M_TEMP);
1923 	NFSEXITCODE2(0, nd);
1924 	return (error);
1925 }
1926 
1927 /* Since the Readdir vnode ops vary, put the entire functions in here. */
1928 /*
1929  * nfs readdir service
1930  * - mallocs what it thinks is enough to read
1931  *	count rounded up to a multiple of DIRBLKSIZ <= NFS_MAXREADDIR
1932  * - calls VOP_READDIR()
1933  * - loops around building the reply
1934  *	if the output generated exceeds count break out of loop
1935  *	The NFSM_CLGET macro is used here so that the reply will be packed
1936  *	tightly in mbuf clusters.
1937  * - it trims out records with d_fileno == 0
1938  *	this doesn't matter for Unix clients, but they might confuse clients
1939  *	for other os'.
1940  * - it trims out records with d_type == DT_WHT
1941  *	these cannot be seen through NFS (unless we extend the protocol)
1942  *     The alternate call nfsrvd_readdirplus() does lookups as well.
1943  * PS: The NFS protocol spec. does not clarify what the "count" byte
1944  *	argument is a count of.. just name strings and file id's or the
1945  *	entire reply rpc or ...
1946  *	I tried just file name and id sizes and it confused the Sun client,
1947  *	so I am using the full rpc size now. The "paranoia.." comment refers
1948  *	to including the status longwords that are not a part of the dir.
1949  *	"entry" structures, but are in the rpc.
1950  */
1951 int
1952 nfsrvd_readdir(struct nfsrv_descript *nd, int isdgram,
1953     struct vnode *vp, struct nfsexstuff *exp)
1954 {
1955 	struct dirent *dp;
1956 	u_int32_t *tl;
1957 	int dirlen;
1958 	char *cpos, *cend, *rbuf;
1959 	struct nfsvattr at;
1960 	int nlen, error = 0, getret = 1;
1961 	int siz, cnt, fullsiz, eofflag, ncookies;
1962 	u_int64_t off, toff, verf __unused;
1963 	u_long *cookies = NULL, *cookiep;
1964 	struct uio io;
1965 	struct iovec iv;
1966 	int is_ufs;
1967 	struct thread *p = curthread;
1968 
1969 	if (nd->nd_repstat) {
1970 		nfsrv_postopattr(nd, getret, &at);
1971 		goto out;
1972 	}
1973 	if (nd->nd_flag & ND_NFSV2) {
1974 		NFSM_DISSECT(tl, u_int32_t *, 2 * NFSX_UNSIGNED);
1975 		off = fxdr_unsigned(u_quad_t, *tl++);
1976 	} else {
1977 		NFSM_DISSECT(tl, u_int32_t *, 5 * NFSX_UNSIGNED);
1978 		off = fxdr_hyper(tl);
1979 		tl += 2;
1980 		verf = fxdr_hyper(tl);
1981 		tl += 2;
1982 	}
1983 	toff = off;
1984 	cnt = fxdr_unsigned(int, *tl);
1985 	if (cnt > NFS_SRVMAXDATA(nd) || cnt < 0)
1986 		cnt = NFS_SRVMAXDATA(nd);
1987 	siz = ((cnt + DIRBLKSIZ - 1) & ~(DIRBLKSIZ - 1));
1988 	fullsiz = siz;
1989 	if (nd->nd_flag & ND_NFSV3) {
1990 		nd->nd_repstat = getret = nfsvno_getattr(vp, &at, nd, p, 1,
1991 		    NULL);
1992 #if 0
1993 		/*
1994 		 * va_filerev is not sufficient as a cookie verifier,
1995 		 * since it is not supposed to change when entries are
1996 		 * removed/added unless that offset cookies returned to
1997 		 * the client are no longer valid.
1998 		 */
1999 		if (!nd->nd_repstat && toff && verf != at.na_filerev)
2000 			nd->nd_repstat = NFSERR_BAD_COOKIE;
2001 #endif
2002 	}
2003 	if (!nd->nd_repstat && vp->v_type != VDIR)
2004 		nd->nd_repstat = NFSERR_NOTDIR;
2005 	if (nd->nd_repstat == 0 && cnt == 0) {
2006 		if (nd->nd_flag & ND_NFSV2)
2007 			/* NFSv2 does not have NFSERR_TOOSMALL */
2008 			nd->nd_repstat = EPERM;
2009 		else
2010 			nd->nd_repstat = NFSERR_TOOSMALL;
2011 	}
2012 	if (!nd->nd_repstat)
2013 		nd->nd_repstat = nfsvno_accchk(vp, VEXEC,
2014 		    nd->nd_cred, exp, p, NFSACCCHK_NOOVERRIDE,
2015 		    NFSACCCHK_VPISLOCKED, NULL);
2016 	if (nd->nd_repstat) {
2017 		vput(vp);
2018 		if (nd->nd_flag & ND_NFSV3)
2019 			nfsrv_postopattr(nd, getret, &at);
2020 		goto out;
2021 	}
2022 	is_ufs = strcmp(vp->v_mount->mnt_vfc->vfc_name, "ufs") == 0;
2023 	rbuf = malloc(siz, M_TEMP, M_WAITOK);
2024 again:
2025 	eofflag = 0;
2026 	if (cookies) {
2027 		free(cookies, M_TEMP);
2028 		cookies = NULL;
2029 	}
2030 
2031 	iv.iov_base = rbuf;
2032 	iv.iov_len = siz;
2033 	io.uio_iov = &iv;
2034 	io.uio_iovcnt = 1;
2035 	io.uio_offset = (off_t)off;
2036 	io.uio_resid = siz;
2037 	io.uio_segflg = UIO_SYSSPACE;
2038 	io.uio_rw = UIO_READ;
2039 	io.uio_td = NULL;
2040 	nd->nd_repstat = VOP_READDIR(vp, &io, nd->nd_cred, &eofflag, &ncookies,
2041 	    &cookies);
2042 	off = (u_int64_t)io.uio_offset;
2043 	if (io.uio_resid)
2044 		siz -= io.uio_resid;
2045 
2046 	if (!cookies && !nd->nd_repstat)
2047 		nd->nd_repstat = NFSERR_PERM;
2048 	if (nd->nd_flag & ND_NFSV3) {
2049 		getret = nfsvno_getattr(vp, &at, nd, p, 1, NULL);
2050 		if (!nd->nd_repstat)
2051 			nd->nd_repstat = getret;
2052 	}
2053 
2054 	/*
2055 	 * Handles the failed cases. nd->nd_repstat == 0 past here.
2056 	 */
2057 	if (nd->nd_repstat) {
2058 		vput(vp);
2059 		free(rbuf, M_TEMP);
2060 		if (cookies)
2061 			free(cookies, M_TEMP);
2062 		if (nd->nd_flag & ND_NFSV3)
2063 			nfsrv_postopattr(nd, getret, &at);
2064 		goto out;
2065 	}
2066 	/*
2067 	 * If nothing read, return eof
2068 	 * rpc reply
2069 	 */
2070 	if (siz == 0) {
2071 		vput(vp);
2072 		if (nd->nd_flag & ND_NFSV2) {
2073 			NFSM_BUILD(tl, u_int32_t *, 2 * NFSX_UNSIGNED);
2074 		} else {
2075 			nfsrv_postopattr(nd, getret, &at);
2076 			NFSM_BUILD(tl, u_int32_t *, 4 * NFSX_UNSIGNED);
2077 			txdr_hyper(at.na_filerev, tl);
2078 			tl += 2;
2079 		}
2080 		*tl++ = newnfs_false;
2081 		*tl = newnfs_true;
2082 		free(rbuf, M_TEMP);
2083 		free(cookies, M_TEMP);
2084 		goto out;
2085 	}
2086 
2087 	/*
2088 	 * Check for degenerate cases of nothing useful read.
2089 	 * If so go try again
2090 	 */
2091 	cpos = rbuf;
2092 	cend = rbuf + siz;
2093 	dp = (struct dirent *)cpos;
2094 	cookiep = cookies;
2095 
2096 	/*
2097 	 * For some reason FreeBSD's ufs_readdir() chooses to back the
2098 	 * directory offset up to a block boundary, so it is necessary to
2099 	 * skip over the records that precede the requested offset. This
2100 	 * requires the assumption that file offset cookies monotonically
2101 	 * increase.
2102 	 */
2103 	while (cpos < cend && ncookies > 0 &&
2104 	    (dp->d_fileno == 0 || dp->d_type == DT_WHT ||
2105 	     (is_ufs == 1 && ((u_quad_t)(*cookiep)) <= toff))) {
2106 		cpos += dp->d_reclen;
2107 		dp = (struct dirent *)cpos;
2108 		cookiep++;
2109 		ncookies--;
2110 	}
2111 	if (cpos >= cend || ncookies == 0) {
2112 		siz = fullsiz;
2113 		toff = off;
2114 		goto again;
2115 	}
2116 	vput(vp);
2117 
2118 	/*
2119 	 * If cnt > MCLBYTES and the reply will not be saved, use
2120 	 * ext_pgs mbufs for TLS.
2121 	 * For NFSv4.0, we do not know for sure if the reply will
2122 	 * be saved, so do not use ext_pgs mbufs for NFSv4.0.
2123 	 */
2124 	if (cnt > MCLBYTES && siz > MCLBYTES &&
2125 	    (nd->nd_flag & (ND_TLS | ND_EXTPG | ND_SAVEREPLY)) == ND_TLS &&
2126 	    (nd->nd_flag & (ND_NFSV4 | ND_NFSV41)) != ND_NFSV4)
2127 		nd->nd_flag |= ND_EXTPG;
2128 
2129 	/*
2130 	 * dirlen is the size of the reply, including all XDR and must
2131 	 * not exceed cnt. For NFSv2, RFC1094 didn't clearly indicate
2132 	 * if the XDR should be included in "count", but to be safe, we do.
2133 	 * (Include the two booleans at the end of the reply in dirlen now.)
2134 	 */
2135 	if (nd->nd_flag & ND_NFSV3) {
2136 		nfsrv_postopattr(nd, getret, &at);
2137 		NFSM_BUILD(tl, u_int32_t *, 2 * NFSX_UNSIGNED);
2138 		txdr_hyper(at.na_filerev, tl);
2139 		dirlen = NFSX_V3POSTOPATTR + NFSX_VERF + 2 * NFSX_UNSIGNED;
2140 	} else {
2141 		dirlen = 2 * NFSX_UNSIGNED;
2142 	}
2143 
2144 	/* Loop through the records and build reply */
2145 	while (cpos < cend && ncookies > 0) {
2146 		nlen = dp->d_namlen;
2147 		if (dp->d_fileno != 0 && dp->d_type != DT_WHT &&
2148 			nlen <= NFS_MAXNAMLEN) {
2149 			if (nd->nd_flag & ND_NFSV3)
2150 				dirlen += (6*NFSX_UNSIGNED + NFSM_RNDUP(nlen));
2151 			else
2152 				dirlen += (4*NFSX_UNSIGNED + NFSM_RNDUP(nlen));
2153 			if (dirlen > cnt) {
2154 				eofflag = 0;
2155 				break;
2156 			}
2157 
2158 			/*
2159 			 * Build the directory record xdr from
2160 			 * the dirent entry.
2161 			 */
2162 			if (nd->nd_flag & ND_NFSV3) {
2163 				NFSM_BUILD(tl, u_int32_t *, 3 * NFSX_UNSIGNED);
2164 				*tl++ = newnfs_true;
2165 				*tl++ = 0;
2166 			} else {
2167 				NFSM_BUILD(tl, u_int32_t *, 2 * NFSX_UNSIGNED);
2168 				*tl++ = newnfs_true;
2169 			}
2170 			*tl = txdr_unsigned(dp->d_fileno);
2171 			(void) nfsm_strtom(nd, dp->d_name, nlen);
2172 			if (nd->nd_flag & ND_NFSV3) {
2173 				NFSM_BUILD(tl, u_int32_t *, 2 * NFSX_UNSIGNED);
2174 				*tl++ = 0;
2175 			} else
2176 				NFSM_BUILD(tl, u_int32_t *, NFSX_UNSIGNED);
2177 			*tl = txdr_unsigned(*cookiep);
2178 		}
2179 		cpos += dp->d_reclen;
2180 		dp = (struct dirent *)cpos;
2181 		cookiep++;
2182 		ncookies--;
2183 	}
2184 	if (cpos < cend)
2185 		eofflag = 0;
2186 	NFSM_BUILD(tl, u_int32_t *, 2 * NFSX_UNSIGNED);
2187 	*tl++ = newnfs_false;
2188 	if (eofflag)
2189 		*tl = newnfs_true;
2190 	else
2191 		*tl = newnfs_false;
2192 	free(rbuf, M_TEMP);
2193 	free(cookies, M_TEMP);
2194 
2195 out:
2196 	NFSEXITCODE2(0, nd);
2197 	return (0);
2198 nfsmout:
2199 	vput(vp);
2200 	NFSEXITCODE2(error, nd);
2201 	return (error);
2202 }
2203 
2204 /*
2205  * Readdirplus for V3 and Readdir for V4.
2206  */
2207 int
2208 nfsrvd_readdirplus(struct nfsrv_descript *nd, int isdgram,
2209     struct vnode *vp, struct nfsexstuff *exp)
2210 {
2211 	struct dirent *dp;
2212 	u_int32_t *tl;
2213 	int dirlen;
2214 	char *cpos, *cend, *rbuf;
2215 	struct vnode *nvp;
2216 	fhandle_t nfh;
2217 	struct nfsvattr nva, at, *nvap = &nva;
2218 	struct mbuf *mb0, *mb1;
2219 	struct nfsreferral *refp;
2220 	int nlen, r, error = 0, getret = 1, usevget = 1;
2221 	int siz, cnt, fullsiz, eofflag, ncookies, entrycnt;
2222 	caddr_t bpos0, bpos1;
2223 	u_int64_t off, toff, verf;
2224 	u_long *cookies = NULL, *cookiep;
2225 	nfsattrbit_t attrbits, rderrbits, savbits;
2226 	struct uio io;
2227 	struct iovec iv;
2228 	struct componentname cn;
2229 	int at_root, is_ufs, is_zfs, needs_unbusy, supports_nfsv4acls;
2230 	struct mount *mp, *new_mp;
2231 	uint64_t mounted_on_fileno;
2232 	struct thread *p = curthread;
2233 	int bextpg0, bextpg1, bextpgsiz0, bextpgsiz1;
2234 
2235 	if (nd->nd_repstat) {
2236 		nfsrv_postopattr(nd, getret, &at);
2237 		goto out;
2238 	}
2239 	NFSM_DISSECT(tl, u_int32_t *, 6 * NFSX_UNSIGNED);
2240 	off = fxdr_hyper(tl);
2241 	toff = off;
2242 	tl += 2;
2243 	verf = fxdr_hyper(tl);
2244 	tl += 2;
2245 	siz = fxdr_unsigned(int, *tl++);
2246 	cnt = fxdr_unsigned(int, *tl);
2247 
2248 	/*
2249 	 * Use the server's maximum data transfer size as the upper bound
2250 	 * on reply datalen.
2251 	 */
2252 	if (cnt > NFS_SRVMAXDATA(nd) || cnt < 0)
2253 		cnt = NFS_SRVMAXDATA(nd);
2254 
2255 	/*
2256 	 * siz is a "hint" of how much directory information (name, fileid,
2257 	 * cookie) should be in the reply. At least one client "hints" 0,
2258 	 * so I set it to cnt for that case. I also round it up to the
2259 	 * next multiple of DIRBLKSIZ.
2260 	 * Since the size of a Readdirplus directory entry reply will always
2261 	 * be greater than a directory entry returned by VOP_READDIR(), it
2262 	 * does not make sense to read more than NFS_SRVMAXDATA() via
2263 	 * VOP_READDIR().
2264 	 */
2265 	if (siz <= 0)
2266 		siz = cnt;
2267 	else if (siz > NFS_SRVMAXDATA(nd))
2268 		siz = NFS_SRVMAXDATA(nd);
2269 	siz = ((siz + DIRBLKSIZ - 1) & ~(DIRBLKSIZ - 1));
2270 
2271 	if (nd->nd_flag & ND_NFSV4) {
2272 		error = nfsrv_getattrbits(nd, &attrbits, NULL, NULL);
2273 		if (error)
2274 			goto nfsmout;
2275 		NFSSET_ATTRBIT(&savbits, &attrbits);
2276 		NFSCLRNOTFILLABLE_ATTRBIT(&attrbits, nd);
2277 		NFSZERO_ATTRBIT(&rderrbits);
2278 		NFSSETBIT_ATTRBIT(&rderrbits, NFSATTRBIT_RDATTRERROR);
2279 	} else {
2280 		NFSZERO_ATTRBIT(&attrbits);
2281 	}
2282 	fullsiz = siz;
2283 	nd->nd_repstat = getret = nfsvno_getattr(vp, &at, nd, p, 1, NULL);
2284 #if 0
2285 	if (!nd->nd_repstat) {
2286 	    if (off && verf != at.na_filerev) {
2287 		/*
2288 		 * va_filerev is not sufficient as a cookie verifier,
2289 		 * since it is not supposed to change when entries are
2290 		 * removed/added unless that offset cookies returned to
2291 		 * the client are no longer valid.
2292 		 */
2293 		if (nd->nd_flag & ND_NFSV4) {
2294 			nd->nd_repstat = NFSERR_NOTSAME;
2295 		} else {
2296 			nd->nd_repstat = NFSERR_BAD_COOKIE;
2297 		}
2298 	    }
2299 	}
2300 #endif
2301 	if (!nd->nd_repstat && vp->v_type != VDIR)
2302 		nd->nd_repstat = NFSERR_NOTDIR;
2303 	if (!nd->nd_repstat && cnt == 0)
2304 		nd->nd_repstat = NFSERR_TOOSMALL;
2305 	if (!nd->nd_repstat)
2306 		nd->nd_repstat = nfsvno_accchk(vp, VEXEC,
2307 		    nd->nd_cred, exp, p, NFSACCCHK_NOOVERRIDE,
2308 		    NFSACCCHK_VPISLOCKED, NULL);
2309 	if (nd->nd_repstat) {
2310 		vput(vp);
2311 		if (nd->nd_flag & ND_NFSV3)
2312 			nfsrv_postopattr(nd, getret, &at);
2313 		goto out;
2314 	}
2315 	is_ufs = strcmp(vp->v_mount->mnt_vfc->vfc_name, "ufs") == 0;
2316 	is_zfs = strcmp(vp->v_mount->mnt_vfc->vfc_name, "zfs") == 0;
2317 
2318 	rbuf = malloc(siz, M_TEMP, M_WAITOK);
2319 again:
2320 	eofflag = 0;
2321 	if (cookies) {
2322 		free(cookies, M_TEMP);
2323 		cookies = NULL;
2324 	}
2325 
2326 	iv.iov_base = rbuf;
2327 	iv.iov_len = siz;
2328 	io.uio_iov = &iv;
2329 	io.uio_iovcnt = 1;
2330 	io.uio_offset = (off_t)off;
2331 	io.uio_resid = siz;
2332 	io.uio_segflg = UIO_SYSSPACE;
2333 	io.uio_rw = UIO_READ;
2334 	io.uio_td = NULL;
2335 	nd->nd_repstat = VOP_READDIR(vp, &io, nd->nd_cred, &eofflag, &ncookies,
2336 	    &cookies);
2337 	off = (u_int64_t)io.uio_offset;
2338 	if (io.uio_resid)
2339 		siz -= io.uio_resid;
2340 
2341 	getret = nfsvno_getattr(vp, &at, nd, p, 1, NULL);
2342 
2343 	if (!cookies && !nd->nd_repstat)
2344 		nd->nd_repstat = NFSERR_PERM;
2345 	if (!nd->nd_repstat)
2346 		nd->nd_repstat = getret;
2347 	if (nd->nd_repstat) {
2348 		vput(vp);
2349 		if (cookies)
2350 			free(cookies, M_TEMP);
2351 		free(rbuf, M_TEMP);
2352 		if (nd->nd_flag & ND_NFSV3)
2353 			nfsrv_postopattr(nd, getret, &at);
2354 		goto out;
2355 	}
2356 	/*
2357 	 * If nothing read, return eof
2358 	 * rpc reply
2359 	 */
2360 	if (siz == 0) {
2361 		vput(vp);
2362 		if (nd->nd_flag & ND_NFSV3)
2363 			nfsrv_postopattr(nd, getret, &at);
2364 		NFSM_BUILD(tl, u_int32_t *, 4 * NFSX_UNSIGNED);
2365 		txdr_hyper(at.na_filerev, tl);
2366 		tl += 2;
2367 		*tl++ = newnfs_false;
2368 		*tl = newnfs_true;
2369 		free(cookies, M_TEMP);
2370 		free(rbuf, M_TEMP);
2371 		goto out;
2372 	}
2373 
2374 	/*
2375 	 * Check for degenerate cases of nothing useful read.
2376 	 * If so go try again
2377 	 */
2378 	cpos = rbuf;
2379 	cend = rbuf + siz;
2380 	dp = (struct dirent *)cpos;
2381 	cookiep = cookies;
2382 
2383 	/*
2384 	 * For some reason FreeBSD's ufs_readdir() chooses to back the
2385 	 * directory offset up to a block boundary, so it is necessary to
2386 	 * skip over the records that precede the requested offset. This
2387 	 * requires the assumption that file offset cookies monotonically
2388 	 * increase.
2389 	 */
2390 	while (cpos < cend && ncookies > 0 &&
2391 	  (dp->d_fileno == 0 || dp->d_type == DT_WHT ||
2392 	   (is_ufs == 1 && ((u_quad_t)(*cookiep)) <= toff) ||
2393 	   ((nd->nd_flag & ND_NFSV4) &&
2394 	    ((dp->d_namlen == 1 && dp->d_name[0] == '.') ||
2395 	     (dp->d_namlen==2 && dp->d_name[0]=='.' && dp->d_name[1]=='.'))))) {
2396 		cpos += dp->d_reclen;
2397 		dp = (struct dirent *)cpos;
2398 		cookiep++;
2399 		ncookies--;
2400 	}
2401 	if (cpos >= cend || ncookies == 0) {
2402 		siz = fullsiz;
2403 		toff = off;
2404 		goto again;
2405 	}
2406 
2407 	/*
2408 	 * Busy the file system so that the mount point won't go away
2409 	 * and, as such, VFS_VGET() can be used safely.
2410 	 */
2411 	mp = vp->v_mount;
2412 	vfs_ref(mp);
2413 	NFSVOPUNLOCK(vp);
2414 	nd->nd_repstat = vfs_busy(mp, 0);
2415 	vfs_rel(mp);
2416 	if (nd->nd_repstat != 0) {
2417 		vrele(vp);
2418 		free(cookies, M_TEMP);
2419 		free(rbuf, M_TEMP);
2420 		if (nd->nd_flag & ND_NFSV3)
2421 			nfsrv_postopattr(nd, getret, &at);
2422 		goto out;
2423 	}
2424 
2425 	/*
2426 	 * Check to see if entries in this directory can be safely acquired
2427 	 * via VFS_VGET() or if a switch to VOP_LOOKUP() is required.
2428 	 * ZFS snapshot directories need VOP_LOOKUP(), so that any
2429 	 * automount of the snapshot directory that is required will
2430 	 * be done.
2431 	 * This needs to be done here for NFSv4, since NFSv4 never does
2432 	 * a VFS_VGET() for "." or "..".
2433 	 */
2434 	if (is_zfs == 1) {
2435 		r = VFS_VGET(mp, at.na_fileid, LK_SHARED, &nvp);
2436 		if (r == EOPNOTSUPP) {
2437 			usevget = 0;
2438 			cn.cn_nameiop = LOOKUP;
2439 			cn.cn_lkflags = LK_SHARED | LK_RETRY;
2440 			cn.cn_cred = nd->nd_cred;
2441 			cn.cn_thread = p;
2442 		} else if (r == 0)
2443 			vput(nvp);
2444 	}
2445 
2446 	/*
2447 	 * If the reply is likely to exceed MCLBYTES and the reply will
2448 	 * not be saved, use ext_pgs mbufs for TLS.
2449 	 * It is difficult to predict how large each entry will be and
2450 	 * how many entries have been read, so just assume the directory
2451 	 * entries grow by a factor of 4 when attributes are included.
2452 	 * For NFSv4.0, we do not know for sure if the reply will
2453 	 * be saved, so do not use ext_pgs mbufs for NFSv4.0.
2454 	 */
2455 	if (cnt > MCLBYTES && siz > MCLBYTES / 4 &&
2456 	    (nd->nd_flag & (ND_TLS | ND_EXTPG | ND_SAVEREPLY)) == ND_TLS &&
2457 	    (nd->nd_flag & (ND_NFSV4 | ND_NFSV41)) != ND_NFSV4)
2458 		nd->nd_flag |= ND_EXTPG;
2459 
2460 	/*
2461 	 * Save this position, in case there is an error before one entry
2462 	 * is created.
2463 	 */
2464 	mb0 = nd->nd_mb;
2465 	bpos0 = nd->nd_bpos;
2466 	bextpg0 = nd->nd_bextpg;
2467 	bextpgsiz0 = nd->nd_bextpgsiz;
2468 
2469 	/*
2470 	 * Fill in the first part of the reply.
2471 	 * dirlen is the reply length in bytes and cannot exceed cnt.
2472 	 * (Include the two booleans at the end of the reply in dirlen now,
2473 	 *  so we recognize when we have exceeded cnt.)
2474 	 */
2475 	if (nd->nd_flag & ND_NFSV3) {
2476 		dirlen = NFSX_V3POSTOPATTR + NFSX_VERF + 2 * NFSX_UNSIGNED;
2477 		nfsrv_postopattr(nd, getret, &at);
2478 	} else {
2479 		dirlen = NFSX_VERF + 2 * NFSX_UNSIGNED;
2480 	}
2481 	NFSM_BUILD(tl, u_int32_t *, NFSX_VERF);
2482 	txdr_hyper(at.na_filerev, tl);
2483 
2484 	/*
2485 	 * Save this position, in case there is an empty reply needed.
2486 	 */
2487 	mb1 = nd->nd_mb;
2488 	bpos1 = nd->nd_bpos;
2489 	bextpg1 = nd->nd_bextpg;
2490 	bextpgsiz1 = nd->nd_bextpgsiz;
2491 
2492 	/* Loop through the records and build reply */
2493 	entrycnt = 0;
2494 	while (cpos < cend && ncookies > 0 && dirlen < cnt) {
2495 		nlen = dp->d_namlen;
2496 		if (dp->d_fileno != 0 && dp->d_type != DT_WHT &&
2497 		    nlen <= NFS_MAXNAMLEN &&
2498 		    ((nd->nd_flag & ND_NFSV3) || nlen > 2 ||
2499 		     (nlen==2 && (dp->d_name[0]!='.' || dp->d_name[1]!='.'))
2500 		      || (nlen == 1 && dp->d_name[0] != '.'))) {
2501 			/*
2502 			 * Save the current position in the reply, in case
2503 			 * this entry exceeds cnt.
2504 			 */
2505 			mb1 = nd->nd_mb;
2506 			bpos1 = nd->nd_bpos;
2507 			bextpg1 = nd->nd_bextpg;
2508 			bextpgsiz1 = nd->nd_bextpgsiz;
2509 
2510 			/*
2511 			 * For readdir_and_lookup get the vnode using
2512 			 * the file number.
2513 			 */
2514 			nvp = NULL;
2515 			refp = NULL;
2516 			r = 0;
2517 			at_root = 0;
2518 			needs_unbusy = 0;
2519 			new_mp = mp;
2520 			mounted_on_fileno = (uint64_t)dp->d_fileno;
2521 			if ((nd->nd_flag & ND_NFSV3) ||
2522 			    NFSNONZERO_ATTRBIT(&savbits)) {
2523 				if (nd->nd_flag & ND_NFSV4)
2524 					refp = nfsv4root_getreferral(NULL,
2525 					    vp, dp->d_fileno);
2526 				if (refp == NULL) {
2527 					if (usevget)
2528 						r = VFS_VGET(mp, dp->d_fileno,
2529 						    LK_SHARED, &nvp);
2530 					else
2531 						r = EOPNOTSUPP;
2532 					if (r == EOPNOTSUPP) {
2533 						if (usevget) {
2534 							usevget = 0;
2535 							cn.cn_nameiop = LOOKUP;
2536 							cn.cn_lkflags =
2537 							    LK_SHARED |
2538 							    LK_RETRY;
2539 							cn.cn_cred =
2540 							    nd->nd_cred;
2541 							cn.cn_thread = p;
2542 						}
2543 						cn.cn_nameptr = dp->d_name;
2544 						cn.cn_namelen = nlen;
2545 						cn.cn_flags = ISLASTCN |
2546 						    NOFOLLOW | LOCKLEAF;
2547 						if (nlen == 2 &&
2548 						    dp->d_name[0] == '.' &&
2549 						    dp->d_name[1] == '.')
2550 							cn.cn_flags |=
2551 							    ISDOTDOT;
2552 						if (NFSVOPLOCK(vp, LK_SHARED)
2553 						    != 0) {
2554 							nd->nd_repstat = EPERM;
2555 							break;
2556 						}
2557 						if ((vp->v_vflag & VV_ROOT) != 0
2558 						    && (cn.cn_flags & ISDOTDOT)
2559 						    != 0) {
2560 							vref(vp);
2561 							nvp = vp;
2562 							r = 0;
2563 						} else {
2564 							r = VOP_LOOKUP(vp, &nvp,
2565 							    &cn);
2566 							if (vp != nvp)
2567 								NFSVOPUNLOCK(vp);
2568 						}
2569 					}
2570 
2571 					/*
2572 					 * For NFSv4, check to see if nvp is
2573 					 * a mount point and get the mount
2574 					 * point vnode, as required.
2575 					 */
2576 					if (r == 0 &&
2577 					    nfsrv_enable_crossmntpt != 0 &&
2578 					    (nd->nd_flag & ND_NFSV4) != 0 &&
2579 					    nvp->v_type == VDIR &&
2580 					    nvp->v_mountedhere != NULL) {
2581 						new_mp = nvp->v_mountedhere;
2582 						r = vfs_busy(new_mp, 0);
2583 						vput(nvp);
2584 						nvp = NULL;
2585 						if (r == 0) {
2586 							r = VFS_ROOT(new_mp,
2587 							    LK_SHARED, &nvp);
2588 							needs_unbusy = 1;
2589 							if (r == 0)
2590 								at_root = 1;
2591 						}
2592 					}
2593 				}
2594 
2595 				/*
2596 				 * If we failed to look up the entry, then it
2597 				 * has become invalid, most likely removed.
2598 				 */
2599 				if (r != 0) {
2600 					if (needs_unbusy)
2601 						vfs_unbusy(new_mp);
2602 					goto invalid;
2603 				}
2604 				KASSERT(refp != NULL || nvp != NULL,
2605 				    ("%s: undetected lookup error", __func__));
2606 
2607 				if (refp == NULL &&
2608 				    ((nd->nd_flag & ND_NFSV3) ||
2609 				     NFSNONZERO_ATTRBIT(&attrbits))) {
2610 					r = nfsvno_getfh(nvp, &nfh, p);
2611 					if (!r)
2612 					    r = nfsvno_getattr(nvp, nvap, nd, p,
2613 						1, &attrbits);
2614 					if (r == 0 && is_zfs == 1 &&
2615 					    nfsrv_enable_crossmntpt != 0 &&
2616 					    (nd->nd_flag & ND_NFSV4) != 0 &&
2617 					    nvp->v_type == VDIR &&
2618 					    vp->v_mount != nvp->v_mount) {
2619 					    /*
2620 					     * For a ZFS snapshot, there is a
2621 					     * pseudo mount that does not set
2622 					     * v_mountedhere, so it needs to
2623 					     * be detected via a different
2624 					     * mount structure.
2625 					     */
2626 					    at_root = 1;
2627 					    if (new_mp == mp)
2628 						new_mp = nvp->v_mount;
2629 					}
2630 				}
2631 
2632 				/*
2633 				 * If we failed to get attributes of the entry,
2634 				 * then just skip it for NFSv3 (the traditional
2635 				 * behavior in the old NFS server).
2636 				 * For NFSv4 the behavior is controlled by
2637 				 * RDATTRERROR: we either ignore the error or
2638 				 * fail the request.
2639 				 * Note that RDATTRERROR is never set for NFSv3.
2640 				 */
2641 				if (r != 0) {
2642 					if (!NFSISSET_ATTRBIT(&attrbits,
2643 					    NFSATTRBIT_RDATTRERROR)) {
2644 						vput(nvp);
2645 						if (needs_unbusy != 0)
2646 							vfs_unbusy(new_mp);
2647 						if ((nd->nd_flag & ND_NFSV3))
2648 							goto invalid;
2649 						nd->nd_repstat = r;
2650 						break;
2651 					}
2652 				}
2653 			}
2654 
2655 			/*
2656 			 * Build the directory record xdr
2657 			 */
2658 			if (nd->nd_flag & ND_NFSV3) {
2659 				NFSM_BUILD(tl, u_int32_t *, 3 * NFSX_UNSIGNED);
2660 				*tl++ = newnfs_true;
2661 				*tl++ = 0;
2662 				*tl = txdr_unsigned(dp->d_fileno);
2663 				dirlen += nfsm_strtom(nd, dp->d_name, nlen);
2664 				NFSM_BUILD(tl, u_int32_t *, 2 * NFSX_UNSIGNED);
2665 				*tl++ = 0;
2666 				*tl = txdr_unsigned(*cookiep);
2667 				nfsrv_postopattr(nd, 0, nvap);
2668 				dirlen += nfsm_fhtom(nd,(u_int8_t *)&nfh,0,1);
2669 				dirlen += (5*NFSX_UNSIGNED+NFSX_V3POSTOPATTR);
2670 				if (nvp != NULL)
2671 					vput(nvp);
2672 			} else {
2673 				NFSM_BUILD(tl, u_int32_t *, 3 * NFSX_UNSIGNED);
2674 				*tl++ = newnfs_true;
2675 				*tl++ = 0;
2676 				*tl = txdr_unsigned(*cookiep);
2677 				dirlen += nfsm_strtom(nd, dp->d_name, nlen);
2678 				if (nvp != NULL) {
2679 					supports_nfsv4acls =
2680 					    nfs_supportsnfsv4acls(nvp);
2681 					NFSVOPUNLOCK(nvp);
2682 				} else
2683 					supports_nfsv4acls = 0;
2684 				if (refp != NULL) {
2685 					dirlen += nfsrv_putreferralattr(nd,
2686 					    &savbits, refp, 0,
2687 					    &nd->nd_repstat);
2688 					if (nd->nd_repstat) {
2689 						if (nvp != NULL)
2690 							vrele(nvp);
2691 						if (needs_unbusy != 0)
2692 							vfs_unbusy(new_mp);
2693 						break;
2694 					}
2695 				} else if (r) {
2696 					dirlen += nfsvno_fillattr(nd, new_mp,
2697 					    nvp, nvap, &nfh, r, &rderrbits,
2698 					    nd->nd_cred, p, isdgram, 0,
2699 					    supports_nfsv4acls, at_root,
2700 					    mounted_on_fileno);
2701 				} else {
2702 					dirlen += nfsvno_fillattr(nd, new_mp,
2703 					    nvp, nvap, &nfh, r, &attrbits,
2704 					    nd->nd_cred, p, isdgram, 0,
2705 					    supports_nfsv4acls, at_root,
2706 					    mounted_on_fileno);
2707 				}
2708 				if (nvp != NULL)
2709 					vrele(nvp);
2710 				dirlen += (3 * NFSX_UNSIGNED);
2711 			}
2712 			if (needs_unbusy != 0)
2713 				vfs_unbusy(new_mp);
2714 			if (dirlen <= cnt)
2715 				entrycnt++;
2716 		}
2717 invalid:
2718 		cpos += dp->d_reclen;
2719 		dp = (struct dirent *)cpos;
2720 		cookiep++;
2721 		ncookies--;
2722 	}
2723 	vrele(vp);
2724 	vfs_unbusy(mp);
2725 
2726 	/*
2727 	 * If dirlen > cnt, we must strip off the last entry. If that
2728 	 * results in an empty reply, report NFSERR_TOOSMALL.
2729 	 */
2730 	if (dirlen > cnt || nd->nd_repstat) {
2731 		if (!nd->nd_repstat && entrycnt == 0)
2732 			nd->nd_repstat = NFSERR_TOOSMALL;
2733 		if (nd->nd_repstat) {
2734 			nfsm_trimtrailing(nd, mb0, bpos0, bextpg0, bextpgsiz0);
2735 			if (nd->nd_flag & ND_NFSV3)
2736 				nfsrv_postopattr(nd, getret, &at);
2737 		} else
2738 			nfsm_trimtrailing(nd, mb1, bpos1, bextpg1, bextpgsiz1);
2739 		eofflag = 0;
2740 	} else if (cpos < cend)
2741 		eofflag = 0;
2742 	if (!nd->nd_repstat) {
2743 		NFSM_BUILD(tl, u_int32_t *, 2 * NFSX_UNSIGNED);
2744 		*tl++ = newnfs_false;
2745 		if (eofflag)
2746 			*tl = newnfs_true;
2747 		else
2748 			*tl = newnfs_false;
2749 	}
2750 	free(cookies, M_TEMP);
2751 	free(rbuf, M_TEMP);
2752 
2753 out:
2754 	NFSEXITCODE2(0, nd);
2755 	return (0);
2756 nfsmout:
2757 	vput(vp);
2758 	NFSEXITCODE2(error, nd);
2759 	return (error);
2760 }
2761 
2762 /*
2763  * Get the settable attributes out of the mbuf list.
2764  * (Return 0 or EBADRPC)
2765  */
2766 int
2767 nfsrv_sattr(struct nfsrv_descript *nd, vnode_t vp, struct nfsvattr *nvap,
2768     nfsattrbit_t *attrbitp, NFSACL_T *aclp, struct thread *p)
2769 {
2770 	u_int32_t *tl;
2771 	struct nfsv2_sattr *sp;
2772 	int error = 0, toclient = 0;
2773 
2774 	switch (nd->nd_flag & (ND_NFSV2 | ND_NFSV3 | ND_NFSV4)) {
2775 	case ND_NFSV2:
2776 		NFSM_DISSECT(sp, struct nfsv2_sattr *, NFSX_V2SATTR);
2777 		/*
2778 		 * Some old clients didn't fill in the high order 16bits.
2779 		 * --> check the low order 2 bytes for 0xffff
2780 		 */
2781 		if ((fxdr_unsigned(int, sp->sa_mode) & 0xffff) != 0xffff)
2782 			nvap->na_mode = nfstov_mode(sp->sa_mode);
2783 		if (sp->sa_uid != newnfs_xdrneg1)
2784 			nvap->na_uid = fxdr_unsigned(uid_t, sp->sa_uid);
2785 		if (sp->sa_gid != newnfs_xdrneg1)
2786 			nvap->na_gid = fxdr_unsigned(gid_t, sp->sa_gid);
2787 		if (sp->sa_size != newnfs_xdrneg1)
2788 			nvap->na_size = fxdr_unsigned(u_quad_t, sp->sa_size);
2789 		if (sp->sa_atime.nfsv2_sec != newnfs_xdrneg1) {
2790 #ifdef notyet
2791 			fxdr_nfsv2time(&sp->sa_atime, &nvap->na_atime);
2792 #else
2793 			nvap->na_atime.tv_sec =
2794 				fxdr_unsigned(u_int32_t,sp->sa_atime.nfsv2_sec);
2795 			nvap->na_atime.tv_nsec = 0;
2796 #endif
2797 		}
2798 		if (sp->sa_mtime.nfsv2_sec != newnfs_xdrneg1)
2799 			fxdr_nfsv2time(&sp->sa_mtime, &nvap->na_mtime);
2800 		break;
2801 	case ND_NFSV3:
2802 		NFSM_DISSECT(tl, u_int32_t *, NFSX_UNSIGNED);
2803 		if (*tl == newnfs_true) {
2804 			NFSM_DISSECT(tl, u_int32_t *, NFSX_UNSIGNED);
2805 			nvap->na_mode = nfstov_mode(*tl);
2806 		}
2807 		NFSM_DISSECT(tl, u_int32_t *, NFSX_UNSIGNED);
2808 		if (*tl == newnfs_true) {
2809 			NFSM_DISSECT(tl, u_int32_t *, NFSX_UNSIGNED);
2810 			nvap->na_uid = fxdr_unsigned(uid_t, *tl);
2811 		}
2812 		NFSM_DISSECT(tl, u_int32_t *, NFSX_UNSIGNED);
2813 		if (*tl == newnfs_true) {
2814 			NFSM_DISSECT(tl, u_int32_t *, NFSX_UNSIGNED);
2815 			nvap->na_gid = fxdr_unsigned(gid_t, *tl);
2816 		}
2817 		NFSM_DISSECT(tl, u_int32_t *, NFSX_UNSIGNED);
2818 		if (*tl == newnfs_true) {
2819 			NFSM_DISSECT(tl, u_int32_t *, 2 * NFSX_UNSIGNED);
2820 			nvap->na_size = fxdr_hyper(tl);
2821 		}
2822 		NFSM_DISSECT(tl, u_int32_t *, NFSX_UNSIGNED);
2823 		switch (fxdr_unsigned(int, *tl)) {
2824 		case NFSV3SATTRTIME_TOCLIENT:
2825 			NFSM_DISSECT(tl, u_int32_t *, 2 * NFSX_UNSIGNED);
2826 			fxdr_nfsv3time(tl, &nvap->na_atime);
2827 			toclient = 1;
2828 			break;
2829 		case NFSV3SATTRTIME_TOSERVER:
2830 			vfs_timestamp(&nvap->na_atime);
2831 			nvap->na_vaflags |= VA_UTIMES_NULL;
2832 			break;
2833 		}
2834 		NFSM_DISSECT(tl, u_int32_t *, NFSX_UNSIGNED);
2835 		switch (fxdr_unsigned(int, *tl)) {
2836 		case NFSV3SATTRTIME_TOCLIENT:
2837 			NFSM_DISSECT(tl, u_int32_t *, 2 * NFSX_UNSIGNED);
2838 			fxdr_nfsv3time(tl, &nvap->na_mtime);
2839 			nvap->na_vaflags &= ~VA_UTIMES_NULL;
2840 			break;
2841 		case NFSV3SATTRTIME_TOSERVER:
2842 			vfs_timestamp(&nvap->na_mtime);
2843 			if (!toclient)
2844 				nvap->na_vaflags |= VA_UTIMES_NULL;
2845 			break;
2846 		}
2847 		break;
2848 	case ND_NFSV4:
2849 		error = nfsv4_sattr(nd, vp, nvap, attrbitp, aclp, p);
2850 	}
2851 nfsmout:
2852 	NFSEXITCODE2(error, nd);
2853 	return (error);
2854 }
2855 
2856 /*
2857  * Handle the setable attributes for V4.
2858  * Returns NFSERR_BADXDR if it can't be parsed, 0 otherwise.
2859  */
2860 int
2861 nfsv4_sattr(struct nfsrv_descript *nd, vnode_t vp, struct nfsvattr *nvap,
2862     nfsattrbit_t *attrbitp, NFSACL_T *aclp, struct thread *p)
2863 {
2864 	u_int32_t *tl;
2865 	int attrsum = 0;
2866 	int i, j;
2867 	int error, attrsize, bitpos, aclsize, aceerr, retnotsup = 0;
2868 	int moderet, toclient = 0;
2869 	u_char *cp, namestr[NFSV4_SMALLSTR + 1];
2870 	uid_t uid;
2871 	gid_t gid;
2872 	u_short mode, mask;		/* Same type as va_mode. */
2873 	struct vattr va;
2874 
2875 	error = nfsrv_getattrbits(nd, attrbitp, NULL, &retnotsup);
2876 	if (error)
2877 		goto nfsmout;
2878 	NFSM_DISSECT(tl, u_int32_t *, NFSX_UNSIGNED);
2879 	attrsize = fxdr_unsigned(int, *tl);
2880 
2881 	/*
2882 	 * Loop around getting the setable attributes. If an unsupported
2883 	 * one is found, set nd_repstat == NFSERR_ATTRNOTSUPP and return.
2884 	 */
2885 	if (retnotsup) {
2886 		nd->nd_repstat = NFSERR_ATTRNOTSUPP;
2887 		bitpos = NFSATTRBIT_MAX;
2888 	} else {
2889 		bitpos = 0;
2890 	}
2891 	moderet = 0;
2892 	for (; bitpos < NFSATTRBIT_MAX; bitpos++) {
2893 	    if (attrsum > attrsize) {
2894 		error = NFSERR_BADXDR;
2895 		goto nfsmout;
2896 	    }
2897 	    if (NFSISSET_ATTRBIT(attrbitp, bitpos))
2898 		switch (bitpos) {
2899 		case NFSATTRBIT_SIZE:
2900 			NFSM_DISSECT(tl, u_int32_t *, NFSX_HYPER);
2901                      if (vp != NULL && vp->v_type != VREG) {
2902                             error = (vp->v_type == VDIR) ? NFSERR_ISDIR :
2903                                 NFSERR_INVAL;
2904                             goto nfsmout;
2905 			}
2906 			nvap->na_size = fxdr_hyper(tl);
2907 			attrsum += NFSX_HYPER;
2908 			break;
2909 		case NFSATTRBIT_ACL:
2910 			error = nfsrv_dissectacl(nd, aclp, &aceerr, &aclsize,
2911 			    p);
2912 			if (error)
2913 				goto nfsmout;
2914 			if (aceerr && !nd->nd_repstat)
2915 				nd->nd_repstat = aceerr;
2916 			attrsum += aclsize;
2917 			break;
2918 		case NFSATTRBIT_ARCHIVE:
2919 			NFSM_DISSECT(tl, u_int32_t *, NFSX_UNSIGNED);
2920 			if (!nd->nd_repstat)
2921 				nd->nd_repstat = NFSERR_ATTRNOTSUPP;
2922 			attrsum += NFSX_UNSIGNED;
2923 			break;
2924 		case NFSATTRBIT_HIDDEN:
2925 			NFSM_DISSECT(tl, u_int32_t *, NFSX_UNSIGNED);
2926 			if (!nd->nd_repstat)
2927 				nd->nd_repstat = NFSERR_ATTRNOTSUPP;
2928 			attrsum += NFSX_UNSIGNED;
2929 			break;
2930 		case NFSATTRBIT_MIMETYPE:
2931 			NFSM_DISSECT(tl, u_int32_t *, NFSX_UNSIGNED);
2932 			i = fxdr_unsigned(int, *tl);
2933 			error = nfsm_advance(nd, NFSM_RNDUP(i), -1);
2934 			if (error)
2935 				goto nfsmout;
2936 			if (!nd->nd_repstat)
2937 				nd->nd_repstat = NFSERR_ATTRNOTSUPP;
2938 			attrsum += (NFSX_UNSIGNED + NFSM_RNDUP(i));
2939 			break;
2940 		case NFSATTRBIT_MODE:
2941 			moderet = NFSERR_INVAL;	/* Can't do MODESETMASKED. */
2942 			NFSM_DISSECT(tl, u_int32_t *, NFSX_UNSIGNED);
2943 			nvap->na_mode = nfstov_mode(*tl);
2944 			attrsum += NFSX_UNSIGNED;
2945 			break;
2946 		case NFSATTRBIT_OWNER:
2947 			NFSM_DISSECT(tl, u_int32_t *, NFSX_UNSIGNED);
2948 			j = fxdr_unsigned(int, *tl);
2949 			if (j < 0) {
2950 				error = NFSERR_BADXDR;
2951 				goto nfsmout;
2952 			}
2953 			if (j > NFSV4_SMALLSTR)
2954 				cp = malloc(j + 1, M_NFSSTRING, M_WAITOK);
2955 			else
2956 				cp = namestr;
2957 			error = nfsrv_mtostr(nd, cp, j);
2958 			if (error) {
2959 				if (j > NFSV4_SMALLSTR)
2960 					free(cp, M_NFSSTRING);
2961 				goto nfsmout;
2962 			}
2963 			if (!nd->nd_repstat) {
2964 				nd->nd_repstat = nfsv4_strtouid(nd, cp, j,
2965 				    &uid);
2966 				if (!nd->nd_repstat)
2967 					nvap->na_uid = uid;
2968 			}
2969 			if (j > NFSV4_SMALLSTR)
2970 				free(cp, M_NFSSTRING);
2971 			attrsum += (NFSX_UNSIGNED + NFSM_RNDUP(j));
2972 			break;
2973 		case NFSATTRBIT_OWNERGROUP:
2974 			NFSM_DISSECT(tl, u_int32_t *, NFSX_UNSIGNED);
2975 			j = fxdr_unsigned(int, *tl);
2976 			if (j < 0) {
2977 				error = NFSERR_BADXDR;
2978 				goto nfsmout;
2979 			}
2980 			if (j > NFSV4_SMALLSTR)
2981 				cp = malloc(j + 1, M_NFSSTRING, M_WAITOK);
2982 			else
2983 				cp = namestr;
2984 			error = nfsrv_mtostr(nd, cp, j);
2985 			if (error) {
2986 				if (j > NFSV4_SMALLSTR)
2987 					free(cp, M_NFSSTRING);
2988 				goto nfsmout;
2989 			}
2990 			if (!nd->nd_repstat) {
2991 				nd->nd_repstat = nfsv4_strtogid(nd, cp, j,
2992 				    &gid);
2993 				if (!nd->nd_repstat)
2994 					nvap->na_gid = gid;
2995 			}
2996 			if (j > NFSV4_SMALLSTR)
2997 				free(cp, M_NFSSTRING);
2998 			attrsum += (NFSX_UNSIGNED + NFSM_RNDUP(j));
2999 			break;
3000 		case NFSATTRBIT_SYSTEM:
3001 			NFSM_DISSECT(tl, u_int32_t *, NFSX_UNSIGNED);
3002 			if (!nd->nd_repstat)
3003 				nd->nd_repstat = NFSERR_ATTRNOTSUPP;
3004 			attrsum += NFSX_UNSIGNED;
3005 			break;
3006 		case NFSATTRBIT_TIMEACCESSSET:
3007 			NFSM_DISSECT(tl, u_int32_t *, NFSX_UNSIGNED);
3008 			attrsum += NFSX_UNSIGNED;
3009 			if (fxdr_unsigned(int, *tl)==NFSV4SATTRTIME_TOCLIENT) {
3010 			    NFSM_DISSECT(tl, u_int32_t *, NFSX_V4TIME);
3011 			    fxdr_nfsv4time(tl, &nvap->na_atime);
3012 			    toclient = 1;
3013 			    attrsum += NFSX_V4TIME;
3014 			} else {
3015 			    vfs_timestamp(&nvap->na_atime);
3016 			    nvap->na_vaflags |= VA_UTIMES_NULL;
3017 			}
3018 			break;
3019 		case NFSATTRBIT_TIMEBACKUP:
3020 			NFSM_DISSECT(tl, u_int32_t *, NFSX_V4TIME);
3021 			if (!nd->nd_repstat)
3022 				nd->nd_repstat = NFSERR_ATTRNOTSUPP;
3023 			attrsum += NFSX_V4TIME;
3024 			break;
3025 		case NFSATTRBIT_TIMECREATE:
3026 			NFSM_DISSECT(tl, u_int32_t *, NFSX_V4TIME);
3027 			fxdr_nfsv4time(tl, &nvap->na_btime);
3028 			attrsum += NFSX_V4TIME;
3029 			break;
3030 		case NFSATTRBIT_TIMEMODIFYSET:
3031 			NFSM_DISSECT(tl, u_int32_t *, NFSX_UNSIGNED);
3032 			attrsum += NFSX_UNSIGNED;
3033 			if (fxdr_unsigned(int, *tl)==NFSV4SATTRTIME_TOCLIENT) {
3034 			    NFSM_DISSECT(tl, u_int32_t *, NFSX_V4TIME);
3035 			    fxdr_nfsv4time(tl, &nvap->na_mtime);
3036 			    nvap->na_vaflags &= ~VA_UTIMES_NULL;
3037 			    attrsum += NFSX_V4TIME;
3038 			} else {
3039 			    vfs_timestamp(&nvap->na_mtime);
3040 			    if (!toclient)
3041 				nvap->na_vaflags |= VA_UTIMES_NULL;
3042 			}
3043 			break;
3044 		case NFSATTRBIT_MODESETMASKED:
3045 			NFSM_DISSECT(tl, uint32_t *, 2 * NFSX_UNSIGNED);
3046 			mode = fxdr_unsigned(u_short, *tl++);
3047 			mask = fxdr_unsigned(u_short, *tl);
3048 			/*
3049 			 * vp == NULL implies an Open/Create operation.
3050 			 * This attribute can only be used for Setattr and
3051 			 * only for NFSv4.1 or higher.
3052 			 * If moderet != 0, a mode attribute has also been
3053 			 * specified and this attribute cannot be done in the
3054 			 * same Setattr operation.
3055 			 */
3056 			if ((nd->nd_flag & ND_NFSV41) == 0)
3057 				nd->nd_repstat = NFSERR_ATTRNOTSUPP;
3058 			else if ((mode & ~07777) != 0 || (mask & ~07777) != 0 ||
3059 			    vp == NULL)
3060 				nd->nd_repstat = NFSERR_INVAL;
3061 			else if (moderet == 0)
3062 				moderet = VOP_GETATTR(vp, &va, nd->nd_cred);
3063 			if (moderet == 0)
3064 				nvap->na_mode = (mode & mask) |
3065 				    (va.va_mode & ~mask);
3066 			else
3067 				nd->nd_repstat = moderet;
3068 			attrsum += 2 * NFSX_UNSIGNED;
3069 			break;
3070 		default:
3071 			nd->nd_repstat = NFSERR_ATTRNOTSUPP;
3072 			/*
3073 			 * set bitpos so we drop out of the loop.
3074 			 */
3075 			bitpos = NFSATTRBIT_MAX;
3076 			break;
3077 		}
3078 	}
3079 
3080 	/*
3081 	 * some clients pad the attrlist, so we need to skip over the
3082 	 * padding.
3083 	 */
3084 	if (attrsum > attrsize) {
3085 		error = NFSERR_BADXDR;
3086 	} else {
3087 		attrsize = NFSM_RNDUP(attrsize);
3088 		if (attrsum < attrsize)
3089 			error = nfsm_advance(nd, attrsize - attrsum, -1);
3090 	}
3091 nfsmout:
3092 	NFSEXITCODE2(error, nd);
3093 	return (error);
3094 }
3095 
3096 /*
3097  * Check/setup export credentials.
3098  */
3099 int
3100 nfsd_excred(struct nfsrv_descript *nd, struct nfsexstuff *exp,
3101     struct ucred *credanon)
3102 {
3103 	int error = 0;
3104 
3105 	/*
3106 	 * Check/setup credentials.
3107 	 */
3108 	if (nd->nd_flag & ND_GSS)
3109 		exp->nes_exflag &= ~MNT_EXPORTANON;
3110 
3111 	/*
3112 	 * Check to see if the operation is allowed for this security flavor.
3113 	 * RFC2623 suggests that the NFSv3 Fsinfo RPC be allowed to
3114 	 * AUTH_NONE or AUTH_SYS for file systems requiring RPCSEC_GSS.
3115 	 * Also, allow Secinfo, so that it can acquire the correct flavor(s).
3116 	 */
3117 	if (nfsvno_testexp(nd, exp) &&
3118 	    nd->nd_procnum != NFSV4OP_SECINFO &&
3119 	    nd->nd_procnum != NFSPROC_FSINFO) {
3120 		if (nd->nd_flag & ND_NFSV4)
3121 			error = NFSERR_WRONGSEC;
3122 		else
3123 			error = (NFSERR_AUTHERR | AUTH_TOOWEAK);
3124 		goto out;
3125 	}
3126 
3127 	/*
3128 	 * Check to see if the file system is exported V4 only.
3129 	 */
3130 	if (NFSVNO_EXV4ONLY(exp) && !(nd->nd_flag & ND_NFSV4)) {
3131 		error = NFSERR_PROGNOTV4;
3132 		goto out;
3133 	}
3134 
3135 	/*
3136 	 * Now, map the user credentials.
3137 	 * (Note that ND_AUTHNONE will only be set for an NFSv3
3138 	 *  Fsinfo RPC. If set for anything else, this code might need
3139 	 *  to change.)
3140 	 */
3141 	if (NFSVNO_EXPORTED(exp)) {
3142 		if (((nd->nd_flag & ND_GSS) == 0 && nd->nd_cred->cr_uid == 0) ||
3143 		     NFSVNO_EXPORTANON(exp) ||
3144 		     (nd->nd_flag & ND_AUTHNONE) != 0) {
3145 			nd->nd_cred->cr_uid = credanon->cr_uid;
3146 			nd->nd_cred->cr_gid = credanon->cr_gid;
3147 			crsetgroups(nd->nd_cred, credanon->cr_ngroups,
3148 			    credanon->cr_groups);
3149 		} else if ((nd->nd_flag & ND_GSS) == 0) {
3150 			/*
3151 			 * If using AUTH_SYS, call nfsrv_getgrpscred() to see
3152 			 * if there is a replacement credential with a group
3153 			 * list set up by "nfsuserd -manage-gids".
3154 			 * If there is no replacement, nfsrv_getgrpscred()
3155 			 * simply returns its argument.
3156 			 */
3157 			nd->nd_cred = nfsrv_getgrpscred(nd->nd_cred);
3158 		}
3159 	}
3160 
3161 out:
3162 	NFSEXITCODE2(error, nd);
3163 	return (error);
3164 }
3165 
3166 /*
3167  * Check exports.
3168  */
3169 int
3170 nfsvno_checkexp(struct mount *mp, struct sockaddr *nam, struct nfsexstuff *exp,
3171     struct ucred **credp)
3172 {
3173 	int error;
3174 
3175 	error = VFS_CHECKEXP(mp, nam, &exp->nes_exflag, credp,
3176 	    &exp->nes_numsecflavor, exp->nes_secflavors);
3177 	if (error) {
3178 		if (nfs_rootfhset) {
3179 			exp->nes_exflag = 0;
3180 			exp->nes_numsecflavor = 0;
3181 			error = 0;
3182 		}
3183 	} else if (exp->nes_numsecflavor < 1 || exp->nes_numsecflavor >
3184 	    MAXSECFLAVORS) {
3185 		printf("nfsvno_checkexp: numsecflavors out of range\n");
3186 		exp->nes_numsecflavor = 0;
3187 		error = EACCES;
3188 	}
3189 	NFSEXITCODE(error);
3190 	return (error);
3191 }
3192 
3193 /*
3194  * Get a vnode for a file handle and export stuff.
3195  */
3196 int
3197 nfsvno_fhtovp(struct mount *mp, fhandle_t *fhp, struct sockaddr *nam,
3198     int lktype, struct vnode **vpp, struct nfsexstuff *exp,
3199     struct ucred **credp)
3200 {
3201 	int error;
3202 
3203 	*credp = NULL;
3204 	exp->nes_numsecflavor = 0;
3205 	error = VFS_FHTOVP(mp, &fhp->fh_fid, lktype, vpp);
3206 	if (error != 0)
3207 		/* Make sure the server replies ESTALE to the client. */
3208 		error = ESTALE;
3209 	if (nam && !error) {
3210 		error = VFS_CHECKEXP(mp, nam, &exp->nes_exflag, credp,
3211 		    &exp->nes_numsecflavor, exp->nes_secflavors);
3212 		if (error) {
3213 			if (nfs_rootfhset) {
3214 				exp->nes_exflag = 0;
3215 				exp->nes_numsecflavor = 0;
3216 				error = 0;
3217 			} else {
3218 				vput(*vpp);
3219 			}
3220 		} else if (exp->nes_numsecflavor < 1 || exp->nes_numsecflavor >
3221 		    MAXSECFLAVORS) {
3222 			printf("nfsvno_fhtovp: numsecflavors out of range\n");
3223 			exp->nes_numsecflavor = 0;
3224 			error = EACCES;
3225 			vput(*vpp);
3226 		}
3227 	}
3228 	NFSEXITCODE(error);
3229 	return (error);
3230 }
3231 
3232 /*
3233  * nfsd_fhtovp() - convert a fh to a vnode ptr
3234  * 	- look up fsid in mount list (if not found ret error)
3235  *	- get vp and export rights by calling nfsvno_fhtovp()
3236  *	- if cred->cr_uid == 0 or MNT_EXPORTANON set it to credanon
3237  *	  for AUTH_SYS
3238  *	- if mpp != NULL, return the mount point so that it can
3239  *	  be used for vn_finished_write() by the caller
3240  */
3241 void
3242 nfsd_fhtovp(struct nfsrv_descript *nd, struct nfsrvfh *nfp, int lktype,
3243     struct vnode **vpp, struct nfsexstuff *exp,
3244     struct mount **mpp, int startwrite)
3245 {
3246 	struct mount *mp, *mpw;
3247 	struct ucred *credanon;
3248 	fhandle_t *fhp;
3249 	int error;
3250 
3251 	if (mpp != NULL)
3252 		*mpp = NULL;
3253 	*vpp = NULL;
3254 	fhp = (fhandle_t *)nfp->nfsrvfh_data;
3255 	mp = vfs_busyfs(&fhp->fh_fsid);
3256 	if (mp == NULL) {
3257 		nd->nd_repstat = ESTALE;
3258 		goto out;
3259 	}
3260 
3261 	if (startwrite) {
3262 		mpw = mp;
3263 		error = vn_start_write(NULL, &mpw, V_WAIT);
3264 		if (error != 0) {
3265 			mpw = NULL;
3266 			vfs_unbusy(mp);
3267 			nd->nd_repstat = ESTALE;
3268 			goto out;
3269 		}
3270 		if (lktype == LK_SHARED && !(MNT_SHARED_WRITES(mp)))
3271 			lktype = LK_EXCLUSIVE;
3272 	} else
3273 		mpw = NULL;
3274 
3275 	nd->nd_repstat = nfsvno_fhtovp(mp, fhp, nd->nd_nam, lktype, vpp, exp,
3276 	    &credanon);
3277 	vfs_unbusy(mp);
3278 
3279 	/*
3280 	 * For NFSv4 without a pseudo root fs, unexported file handles
3281 	 * can be returned, so that Lookup works everywhere.
3282 	 */
3283 	if (!nd->nd_repstat && exp->nes_exflag == 0 &&
3284 	    !(nd->nd_flag & ND_NFSV4)) {
3285 		vput(*vpp);
3286 		*vpp = NULL;
3287 		nd->nd_repstat = EACCES;
3288 	}
3289 
3290 	/*
3291 	 * If TLS is required by the export, check the flags in nd_flag.
3292 	 */
3293 	if (nd->nd_repstat == 0 && ((NFSVNO_EXTLS(exp) &&
3294 	    (nd->nd_flag & ND_TLS) == 0) ||
3295 	     (NFSVNO_EXTLSCERT(exp) &&
3296 	      (nd->nd_flag & ND_TLSCERT) == 0) ||
3297 	     (NFSVNO_EXTLSCERTUSER(exp) &&
3298 	      (nd->nd_flag & ND_TLSCERTUSER) == 0))) {
3299 		vput(*vpp);
3300 		nd->nd_repstat = NFSERR_ACCES;
3301 	}
3302 
3303 	/*
3304 	 * Personally, I've never seen any point in requiring a
3305 	 * reserved port#, since only in the rare case where the
3306 	 * clients are all boxes with secure system privileges,
3307 	 * does it provide any enhanced security, but... some people
3308 	 * believe it to be useful and keep putting this code back in.
3309 	 * (There is also some "security checker" out there that
3310 	 *  complains if the nfs server doesn't enforce this.)
3311 	 * However, note the following:
3312 	 * RFC3530 (NFSv4) specifies that a reserved port# not be
3313 	 *	required.
3314 	 * RFC2623 recommends that, if a reserved port# is checked for,
3315 	 *	that there be a way to turn that off--> ifdef'd.
3316 	 */
3317 #ifdef NFS_REQRSVPORT
3318 	if (!nd->nd_repstat) {
3319 		struct sockaddr_in *saddr;
3320 		struct sockaddr_in6 *saddr6;
3321 
3322 		saddr = NFSSOCKADDR(nd->nd_nam, struct sockaddr_in *);
3323 		saddr6 = NFSSOCKADDR(nd->nd_nam, struct sockaddr_in6 *);
3324 		if (!(nd->nd_flag & ND_NFSV4) &&
3325 		    ((saddr->sin_family == AF_INET &&
3326 		      ntohs(saddr->sin_port) >= IPPORT_RESERVED) ||
3327 		     (saddr6->sin6_family == AF_INET6 &&
3328 		      ntohs(saddr6->sin6_port) >= IPPORT_RESERVED))) {
3329 			vput(*vpp);
3330 			nd->nd_repstat = (NFSERR_AUTHERR | AUTH_TOOWEAK);
3331 		}
3332 	}
3333 #endif	/* NFS_REQRSVPORT */
3334 
3335 	/*
3336 	 * Check/setup credentials.
3337 	 */
3338 	if (!nd->nd_repstat) {
3339 		nd->nd_saveduid = nd->nd_cred->cr_uid;
3340 		nd->nd_repstat = nfsd_excred(nd, exp, credanon);
3341 		if (nd->nd_repstat)
3342 			vput(*vpp);
3343 	}
3344 	if (credanon != NULL)
3345 		crfree(credanon);
3346 	if (nd->nd_repstat) {
3347 		vn_finished_write(mpw);
3348 		*vpp = NULL;
3349 	} else if (mpp != NULL) {
3350 		*mpp = mpw;
3351 	}
3352 
3353 out:
3354 	NFSEXITCODE2(0, nd);
3355 }
3356 
3357 /*
3358  * glue for fp.
3359  */
3360 static int
3361 fp_getfvp(struct thread *p, int fd, struct file **fpp, struct vnode **vpp)
3362 {
3363 	struct filedesc *fdp;
3364 	struct file *fp;
3365 	int error = 0;
3366 
3367 	fdp = p->td_proc->p_fd;
3368 	if (fd < 0 || fd >= fdp->fd_nfiles ||
3369 	    (fp = fdp->fd_ofiles[fd].fde_file) == NULL) {
3370 		error = EBADF;
3371 		goto out;
3372 	}
3373 	*fpp = fp;
3374 
3375 out:
3376 	NFSEXITCODE(error);
3377 	return (error);
3378 }
3379 
3380 /*
3381  * Called from nfssvc() to update the exports list. Just call
3382  * vfs_export(). This has to be done, since the v4 root fake fs isn't
3383  * in the mount list.
3384  */
3385 int
3386 nfsrv_v4rootexport(void *argp, struct ucred *cred, struct thread *p)
3387 {
3388 	struct nfsex_args *nfsexargp = (struct nfsex_args *)argp;
3389 	int error = 0;
3390 	struct nameidata nd;
3391 	fhandle_t fh;
3392 
3393 	error = vfs_export(&nfsv4root_mnt, &nfsexargp->export);
3394 	if ((nfsexargp->export.ex_flags & MNT_DELEXPORT) != 0)
3395 		nfs_rootfhset = 0;
3396 	else if (error == 0) {
3397 		if (nfsexargp->fspec == NULL) {
3398 			error = EPERM;
3399 			goto out;
3400 		}
3401 		/*
3402 		 * If fspec != NULL, this is the v4root path.
3403 		 */
3404 		NDINIT(&nd, LOOKUP, FOLLOW, UIO_USERSPACE,
3405 		    nfsexargp->fspec, p);
3406 		if ((error = namei(&nd)) != 0)
3407 			goto out;
3408 		error = nfsvno_getfh(nd.ni_vp, &fh, p);
3409 		vrele(nd.ni_vp);
3410 		if (!error) {
3411 			nfs_rootfh.nfsrvfh_len = NFSX_MYFH;
3412 			NFSBCOPY((caddr_t)&fh,
3413 			    nfs_rootfh.nfsrvfh_data,
3414 			    sizeof (fhandle_t));
3415 			nfs_rootfhset = 1;
3416 		}
3417 	}
3418 
3419 out:
3420 	NFSEXITCODE(error);
3421 	return (error);
3422 }
3423 
3424 /*
3425  * This function needs to test to see if the system is near its limit
3426  * for memory allocation via malloc() or mget() and return True iff
3427  * either of these resources are near their limit.
3428  * XXX (For now, this is just a stub.)
3429  */
3430 int nfsrv_testmalloclimit = 0;
3431 int
3432 nfsrv_mallocmget_limit(void)
3433 {
3434 	static int printmesg = 0;
3435 	static int testval = 1;
3436 
3437 	if (nfsrv_testmalloclimit && (testval++ % 1000) == 0) {
3438 		if ((printmesg++ % 100) == 0)
3439 			printf("nfsd: malloc/mget near limit\n");
3440 		return (1);
3441 	}
3442 	return (0);
3443 }
3444 
3445 /*
3446  * BSD specific initialization of a mount point.
3447  */
3448 void
3449 nfsd_mntinit(void)
3450 {
3451 	static int inited = 0;
3452 
3453 	if (inited)
3454 		return;
3455 	inited = 1;
3456 	nfsv4root_mnt.mnt_flag = (MNT_RDONLY | MNT_EXPORTED);
3457 	TAILQ_INIT(&nfsv4root_mnt.mnt_nvnodelist);
3458 	TAILQ_INIT(&nfsv4root_mnt.mnt_lazyvnodelist);
3459 	nfsv4root_mnt.mnt_export = NULL;
3460 	TAILQ_INIT(&nfsv4root_opt);
3461 	TAILQ_INIT(&nfsv4root_newopt);
3462 	nfsv4root_mnt.mnt_opt = &nfsv4root_opt;
3463 	nfsv4root_mnt.mnt_optnew = &nfsv4root_newopt;
3464 	nfsv4root_mnt.mnt_nvnodelistsize = 0;
3465 	nfsv4root_mnt.mnt_lazyvnodelistsize = 0;
3466 }
3467 
3468 /*
3469  * Get a vnode for a file handle, without checking exports, etc.
3470  */
3471 struct vnode *
3472 nfsvno_getvp(fhandle_t *fhp)
3473 {
3474 	struct mount *mp;
3475 	struct vnode *vp;
3476 	int error;
3477 
3478 	mp = vfs_busyfs(&fhp->fh_fsid);
3479 	if (mp == NULL)
3480 		return (NULL);
3481 	error = VFS_FHTOVP(mp, &fhp->fh_fid, LK_EXCLUSIVE, &vp);
3482 	vfs_unbusy(mp);
3483 	if (error)
3484 		return (NULL);
3485 	return (vp);
3486 }
3487 
3488 /*
3489  * Do a local VOP_ADVLOCK().
3490  */
3491 int
3492 nfsvno_advlock(struct vnode *vp, int ftype, u_int64_t first,
3493     u_int64_t end, struct thread *td)
3494 {
3495 	int error = 0;
3496 	struct flock fl;
3497 	u_int64_t tlen;
3498 
3499 	if (nfsrv_dolocallocks == 0)
3500 		goto out;
3501 	ASSERT_VOP_UNLOCKED(vp, "nfsvno_advlock: vp locked");
3502 
3503 	fl.l_whence = SEEK_SET;
3504 	fl.l_type = ftype;
3505 	fl.l_start = (off_t)first;
3506 	if (end == NFS64BITSSET) {
3507 		fl.l_len = 0;
3508 	} else {
3509 		tlen = end - first;
3510 		fl.l_len = (off_t)tlen;
3511 	}
3512 	/*
3513 	 * For FreeBSD8, the l_pid and l_sysid must be set to the same
3514 	 * values for all calls, so that all locks will be held by the
3515 	 * nfsd server. (The nfsd server handles conflicts between the
3516 	 * various clients.)
3517 	 * Since an NFSv4 lockowner is a ClientID plus an array of up to 1024
3518 	 * bytes, so it can't be put in l_sysid.
3519 	 */
3520 	if (nfsv4_sysid == 0)
3521 		nfsv4_sysid = nlm_acquire_next_sysid();
3522 	fl.l_pid = (pid_t)0;
3523 	fl.l_sysid = (int)nfsv4_sysid;
3524 
3525 	if (ftype == F_UNLCK)
3526 		error = VOP_ADVLOCK(vp, (caddr_t)td->td_proc, F_UNLCK, &fl,
3527 		    (F_POSIX | F_REMOTE));
3528 	else
3529 		error = VOP_ADVLOCK(vp, (caddr_t)td->td_proc, F_SETLK, &fl,
3530 		    (F_POSIX | F_REMOTE));
3531 
3532 out:
3533 	NFSEXITCODE(error);
3534 	return (error);
3535 }
3536 
3537 /*
3538  * Check the nfsv4 root exports.
3539  */
3540 int
3541 nfsvno_v4rootexport(struct nfsrv_descript *nd)
3542 {
3543 	struct ucred *credanon;
3544 	int error = 0, numsecflavor, secflavors[MAXSECFLAVORS], i;
3545 	uint64_t exflags;
3546 
3547 	error = vfs_stdcheckexp(&nfsv4root_mnt, nd->nd_nam, &exflags,
3548 	    &credanon, &numsecflavor, secflavors);
3549 	if (error) {
3550 		error = NFSERR_PROGUNAVAIL;
3551 		goto out;
3552 	}
3553 	if (credanon != NULL)
3554 		crfree(credanon);
3555 	for (i = 0; i < numsecflavor; i++) {
3556 		if (secflavors[i] == AUTH_SYS)
3557 			nd->nd_flag |= ND_EXAUTHSYS;
3558 		else if (secflavors[i] == RPCSEC_GSS_KRB5)
3559 			nd->nd_flag |= ND_EXGSS;
3560 		else if (secflavors[i] == RPCSEC_GSS_KRB5I)
3561 			nd->nd_flag |= ND_EXGSSINTEGRITY;
3562 		else if (secflavors[i] == RPCSEC_GSS_KRB5P)
3563 			nd->nd_flag |= ND_EXGSSPRIVACY;
3564 	}
3565 
3566 	/* And set ND_EXxx flags for TLS. */
3567 	if ((exflags & MNT_EXTLS) != 0) {
3568 		nd->nd_flag |= ND_EXTLS;
3569 		if ((exflags & MNT_EXTLSCERT) != 0)
3570 			nd->nd_flag |= ND_EXTLSCERT;
3571 		if ((exflags & MNT_EXTLSCERTUSER) != 0)
3572 			nd->nd_flag |= ND_EXTLSCERTUSER;
3573 	}
3574 
3575 out:
3576 	NFSEXITCODE(error);
3577 	return (error);
3578 }
3579 
3580 /*
3581  * Nfs server pseudo system call for the nfsd's
3582  */
3583 /*
3584  * MPSAFE
3585  */
3586 static int
3587 nfssvc_nfsd(struct thread *td, struct nfssvc_args *uap)
3588 {
3589 	struct file *fp;
3590 	struct nfsd_addsock_args sockarg;
3591 	struct nfsd_nfsd_args nfsdarg;
3592 	struct nfsd_nfsd_oargs onfsdarg;
3593 	struct nfsd_pnfsd_args pnfsdarg;
3594 	struct vnode *vp, *nvp, *curdvp;
3595 	struct pnfsdsfile *pf;
3596 	struct nfsdevice *ds, *fds;
3597 	cap_rights_t rights;
3598 	int buflen, error, ret;
3599 	char *buf, *cp, *cp2, *cp3;
3600 	char fname[PNFS_FILENAME_LEN + 1];
3601 
3602 	if (uap->flag & NFSSVC_NFSDADDSOCK) {
3603 		error = copyin(uap->argp, (caddr_t)&sockarg, sizeof (sockarg));
3604 		if (error)
3605 			goto out;
3606 		/*
3607 		 * Since we don't know what rights might be required,
3608 		 * pretend that we need them all. It is better to be too
3609 		 * careful than too reckless.
3610 		 */
3611 		error = fget(td, sockarg.sock,
3612 		    cap_rights_init_one(&rights, CAP_SOCK_SERVER), &fp);
3613 		if (error != 0)
3614 			goto out;
3615 		if (fp->f_type != DTYPE_SOCKET) {
3616 			fdrop(fp, td);
3617 			error = EPERM;
3618 			goto out;
3619 		}
3620 		error = nfsrvd_addsock(fp);
3621 		fdrop(fp, td);
3622 	} else if (uap->flag & NFSSVC_NFSDNFSD) {
3623 		if (uap->argp == NULL) {
3624 			error = EINVAL;
3625 			goto out;
3626 		}
3627 		if ((uap->flag & NFSSVC_NEWSTRUCT) == 0) {
3628 			error = copyin(uap->argp, &onfsdarg, sizeof(onfsdarg));
3629 			if (error == 0) {
3630 				nfsdarg.principal = onfsdarg.principal;
3631 				nfsdarg.minthreads = onfsdarg.minthreads;
3632 				nfsdarg.maxthreads = onfsdarg.maxthreads;
3633 				nfsdarg.version = 1;
3634 				nfsdarg.addr = NULL;
3635 				nfsdarg.addrlen = 0;
3636 				nfsdarg.dnshost = NULL;
3637 				nfsdarg.dnshostlen = 0;
3638 				nfsdarg.dspath = NULL;
3639 				nfsdarg.dspathlen = 0;
3640 				nfsdarg.mdspath = NULL;
3641 				nfsdarg.mdspathlen = 0;
3642 				nfsdarg.mirrorcnt = 1;
3643 			}
3644 		} else
3645 			error = copyin(uap->argp, &nfsdarg, sizeof(nfsdarg));
3646 		if (error)
3647 			goto out;
3648 		if (nfsdarg.addrlen > 0 && nfsdarg.addrlen < 10000 &&
3649 		    nfsdarg.dnshostlen > 0 && nfsdarg.dnshostlen < 10000 &&
3650 		    nfsdarg.dspathlen > 0 && nfsdarg.dspathlen < 10000 &&
3651 		    nfsdarg.mdspathlen > 0 && nfsdarg.mdspathlen < 10000 &&
3652 		    nfsdarg.mirrorcnt >= 1 &&
3653 		    nfsdarg.mirrorcnt <= NFSDEV_MAXMIRRORS &&
3654 		    nfsdarg.addr != NULL && nfsdarg.dnshost != NULL &&
3655 		    nfsdarg.dspath != NULL && nfsdarg.mdspath != NULL) {
3656 			NFSD_DEBUG(1, "addrlen=%d dspathlen=%d dnslen=%d"
3657 			    " mdspathlen=%d mirrorcnt=%d\n", nfsdarg.addrlen,
3658 			    nfsdarg.dspathlen, nfsdarg.dnshostlen,
3659 			    nfsdarg.mdspathlen, nfsdarg.mirrorcnt);
3660 			cp = malloc(nfsdarg.addrlen + 1, M_TEMP, M_WAITOK);
3661 			error = copyin(nfsdarg.addr, cp, nfsdarg.addrlen);
3662 			if (error != 0) {
3663 				free(cp, M_TEMP);
3664 				goto out;
3665 			}
3666 			cp[nfsdarg.addrlen] = '\0';	/* Ensure nul term. */
3667 			nfsdarg.addr = cp;
3668 			cp = malloc(nfsdarg.dnshostlen + 1, M_TEMP, M_WAITOK);
3669 			error = copyin(nfsdarg.dnshost, cp, nfsdarg.dnshostlen);
3670 			if (error != 0) {
3671 				free(nfsdarg.addr, M_TEMP);
3672 				free(cp, M_TEMP);
3673 				goto out;
3674 			}
3675 			cp[nfsdarg.dnshostlen] = '\0';	/* Ensure nul term. */
3676 			nfsdarg.dnshost = cp;
3677 			cp = malloc(nfsdarg.dspathlen + 1, M_TEMP, M_WAITOK);
3678 			error = copyin(nfsdarg.dspath, cp, nfsdarg.dspathlen);
3679 			if (error != 0) {
3680 				free(nfsdarg.addr, M_TEMP);
3681 				free(nfsdarg.dnshost, M_TEMP);
3682 				free(cp, M_TEMP);
3683 				goto out;
3684 			}
3685 			cp[nfsdarg.dspathlen] = '\0';	/* Ensure nul term. */
3686 			nfsdarg.dspath = cp;
3687 			cp = malloc(nfsdarg.mdspathlen + 1, M_TEMP, M_WAITOK);
3688 			error = copyin(nfsdarg.mdspath, cp, nfsdarg.mdspathlen);
3689 			if (error != 0) {
3690 				free(nfsdarg.addr, M_TEMP);
3691 				free(nfsdarg.dnshost, M_TEMP);
3692 				free(nfsdarg.dspath, M_TEMP);
3693 				free(cp, M_TEMP);
3694 				goto out;
3695 			}
3696 			cp[nfsdarg.mdspathlen] = '\0';	/* Ensure nul term. */
3697 			nfsdarg.mdspath = cp;
3698 		} else {
3699 			nfsdarg.addr = NULL;
3700 			nfsdarg.addrlen = 0;
3701 			nfsdarg.dnshost = NULL;
3702 			nfsdarg.dnshostlen = 0;
3703 			nfsdarg.dspath = NULL;
3704 			nfsdarg.dspathlen = 0;
3705 			nfsdarg.mdspath = NULL;
3706 			nfsdarg.mdspathlen = 0;
3707 			nfsdarg.mirrorcnt = 1;
3708 		}
3709 		error = nfsrvd_nfsd(td, &nfsdarg);
3710 		free(nfsdarg.addr, M_TEMP);
3711 		free(nfsdarg.dnshost, M_TEMP);
3712 		free(nfsdarg.dspath, M_TEMP);
3713 		free(nfsdarg.mdspath, M_TEMP);
3714 	} else if (uap->flag & NFSSVC_PNFSDS) {
3715 		error = copyin(uap->argp, &pnfsdarg, sizeof(pnfsdarg));
3716 		if (error == 0 && (pnfsdarg.op == PNFSDOP_DELDSSERVER ||
3717 		    pnfsdarg.op == PNFSDOP_FORCEDELDS)) {
3718 			cp = malloc(PATH_MAX + 1, M_TEMP, M_WAITOK);
3719 			error = copyinstr(pnfsdarg.dspath, cp, PATH_MAX + 1,
3720 			    NULL);
3721 			if (error == 0)
3722 				error = nfsrv_deldsserver(pnfsdarg.op, cp, td);
3723 			free(cp, M_TEMP);
3724 		} else if (error == 0 && pnfsdarg.op == PNFSDOP_COPYMR) {
3725 			cp = malloc(PATH_MAX + 1, M_TEMP, M_WAITOK);
3726 			buflen = sizeof(*pf) * NFSDEV_MAXMIRRORS;
3727 			buf = malloc(buflen, M_TEMP, M_WAITOK);
3728 			error = copyinstr(pnfsdarg.mdspath, cp, PATH_MAX + 1,
3729 			    NULL);
3730 			NFSD_DEBUG(4, "pnfsdcopymr cp mdspath=%d\n", error);
3731 			if (error == 0 && pnfsdarg.dspath != NULL) {
3732 				cp2 = malloc(PATH_MAX + 1, M_TEMP, M_WAITOK);
3733 				error = copyinstr(pnfsdarg.dspath, cp2,
3734 				    PATH_MAX + 1, NULL);
3735 				NFSD_DEBUG(4, "pnfsdcopymr cp dspath=%d\n",
3736 				    error);
3737 			} else
3738 				cp2 = NULL;
3739 			if (error == 0 && pnfsdarg.curdspath != NULL) {
3740 				cp3 = malloc(PATH_MAX + 1, M_TEMP, M_WAITOK);
3741 				error = copyinstr(pnfsdarg.curdspath, cp3,
3742 				    PATH_MAX + 1, NULL);
3743 				NFSD_DEBUG(4, "pnfsdcopymr cp curdspath=%d\n",
3744 				    error);
3745 			} else
3746 				cp3 = NULL;
3747 			curdvp = NULL;
3748 			fds = NULL;
3749 			if (error == 0)
3750 				error = nfsrv_mdscopymr(cp, cp2, cp3, buf,
3751 				    &buflen, fname, td, &vp, &nvp, &pf, &ds,
3752 				    &fds);
3753 			NFSD_DEBUG(4, "nfsrv_mdscopymr=%d\n", error);
3754 			if (error == 0) {
3755 				if (pf->dsf_dir >= nfsrv_dsdirsize) {
3756 					printf("copymr: dsdir out of range\n");
3757 					pf->dsf_dir = 0;
3758 				}
3759 				NFSD_DEBUG(4, "copymr: buflen=%d\n", buflen);
3760 				error = nfsrv_copymr(vp, nvp,
3761 				    ds->nfsdev_dsdir[pf->dsf_dir], ds, pf,
3762 				    (struct pnfsdsfile *)buf,
3763 				    buflen / sizeof(*pf), td->td_ucred, td);
3764 				vput(vp);
3765 				vput(nvp);
3766 				if (fds != NULL && error == 0) {
3767 					curdvp = fds->nfsdev_dsdir[pf->dsf_dir];
3768 					ret = vn_lock(curdvp, LK_EXCLUSIVE);
3769 					if (ret == 0) {
3770 						nfsrv_dsremove(curdvp, fname,
3771 						    td->td_ucred, td);
3772 						NFSVOPUNLOCK(curdvp);
3773 					}
3774 				}
3775 				NFSD_DEBUG(4, "nfsrv_copymr=%d\n", error);
3776 			}
3777 			free(cp, M_TEMP);
3778 			free(cp2, M_TEMP);
3779 			free(cp3, M_TEMP);
3780 			free(buf, M_TEMP);
3781 		}
3782 	} else {
3783 		error = nfssvc_srvcall(td, uap, td->td_ucred);
3784 	}
3785 
3786 out:
3787 	NFSEXITCODE(error);
3788 	return (error);
3789 }
3790 
3791 static int
3792 nfssvc_srvcall(struct thread *p, struct nfssvc_args *uap, struct ucred *cred)
3793 {
3794 	struct nfsex_args export;
3795 	struct nfsex_oldargs oexp;
3796 	struct file *fp = NULL;
3797 	int stablefd, i, len;
3798 	struct nfsd_clid adminrevoke;
3799 	struct nfsd_dumplist dumplist;
3800 	struct nfsd_dumpclients *dumpclients;
3801 	struct nfsd_dumplocklist dumplocklist;
3802 	struct nfsd_dumplocks *dumplocks;
3803 	struct nameidata nd;
3804 	vnode_t vp;
3805 	int error = EINVAL, igotlock;
3806 	struct proc *procp;
3807 	gid_t *grps;
3808 	static int suspend_nfsd = 0;
3809 
3810 	if (uap->flag & NFSSVC_PUBLICFH) {
3811 		NFSBZERO((caddr_t)&nfs_pubfh.nfsrvfh_data,
3812 		    sizeof (fhandle_t));
3813 		error = copyin(uap->argp,
3814 		    &nfs_pubfh.nfsrvfh_data, sizeof (fhandle_t));
3815 		if (!error)
3816 			nfs_pubfhset = 1;
3817 	} else if ((uap->flag & (NFSSVC_V4ROOTEXPORT | NFSSVC_NEWSTRUCT)) ==
3818 	    (NFSSVC_V4ROOTEXPORT | NFSSVC_NEWSTRUCT)) {
3819 		error = copyin(uap->argp,(caddr_t)&export,
3820 		    sizeof (struct nfsex_args));
3821 		if (!error) {
3822 			grps = NULL;
3823 			if (export.export.ex_ngroups > NGROUPS_MAX ||
3824 			    export.export.ex_ngroups < 0)
3825 				error = EINVAL;
3826 			else if (export.export.ex_ngroups > 0) {
3827 				grps = malloc(export.export.ex_ngroups *
3828 				    sizeof(gid_t), M_TEMP, M_WAITOK);
3829 				error = copyin(export.export.ex_groups, grps,
3830 				    export.export.ex_ngroups * sizeof(gid_t));
3831 				export.export.ex_groups = grps;
3832 			} else
3833 				export.export.ex_groups = NULL;
3834 			if (!error)
3835 				error = nfsrv_v4rootexport(&export, cred, p);
3836 			free(grps, M_TEMP);
3837 		}
3838 	} else if ((uap->flag & (NFSSVC_V4ROOTEXPORT | NFSSVC_NEWSTRUCT)) ==
3839 	    NFSSVC_V4ROOTEXPORT) {
3840 		error = copyin(uap->argp,(caddr_t)&oexp,
3841 		    sizeof (struct nfsex_oldargs));
3842 		if (!error) {
3843 			memset(&export.export, 0, sizeof(export.export));
3844 			export.export.ex_flags = (uint64_t)oexp.export.ex_flags;
3845 			export.export.ex_root = oexp.export.ex_root;
3846 			export.export.ex_uid = oexp.export.ex_anon.cr_uid;
3847 			export.export.ex_ngroups =
3848 			    oexp.export.ex_anon.cr_ngroups;
3849 			export.export.ex_groups = NULL;
3850 			if (export.export.ex_ngroups > XU_NGROUPS ||
3851 			    export.export.ex_ngroups < 0)
3852 				error = EINVAL;
3853 			else if (export.export.ex_ngroups > 0) {
3854 				export.export.ex_groups = malloc(
3855 				    export.export.ex_ngroups * sizeof(gid_t),
3856 				    M_TEMP, M_WAITOK);
3857 				for (i = 0; i < export.export.ex_ngroups; i++)
3858 					export.export.ex_groups[i] =
3859 					    oexp.export.ex_anon.cr_groups[i];
3860 			}
3861 			export.export.ex_addr = oexp.export.ex_addr;
3862 			export.export.ex_addrlen = oexp.export.ex_addrlen;
3863 			export.export.ex_mask = oexp.export.ex_mask;
3864 			export.export.ex_masklen = oexp.export.ex_masklen;
3865 			export.export.ex_indexfile = oexp.export.ex_indexfile;
3866 			export.export.ex_numsecflavors =
3867 			    oexp.export.ex_numsecflavors;
3868 			if (export.export.ex_numsecflavors >= MAXSECFLAVORS ||
3869 			    export.export.ex_numsecflavors < 0)
3870 				error = EINVAL;
3871 			else {
3872 				for (i = 0; i < export.export.ex_numsecflavors;
3873 				    i++)
3874 					export.export.ex_secflavors[i] =
3875 					    oexp.export.ex_secflavors[i];
3876 			}
3877 			export.fspec = oexp.fspec;
3878 			if (error == 0)
3879 				error = nfsrv_v4rootexport(&export, cred, p);
3880 			free(export.export.ex_groups, M_TEMP);
3881 		}
3882 	} else if (uap->flag & NFSSVC_NOPUBLICFH) {
3883 		nfs_pubfhset = 0;
3884 		error = 0;
3885 	} else if (uap->flag & NFSSVC_STABLERESTART) {
3886 		error = copyin(uap->argp, (caddr_t)&stablefd,
3887 		    sizeof (int));
3888 		if (!error)
3889 			error = fp_getfvp(p, stablefd, &fp, &vp);
3890 		if (!error && (NFSFPFLAG(fp) & (FREAD | FWRITE)) != (FREAD | FWRITE))
3891 			error = EBADF;
3892 		if (!error && newnfs_numnfsd != 0)
3893 			error = EPERM;
3894 		if (!error) {
3895 			nfsrv_stablefirst.nsf_fp = fp;
3896 			nfsrv_setupstable(p);
3897 		}
3898 	} else if (uap->flag & NFSSVC_ADMINREVOKE) {
3899 		error = copyin(uap->argp, (caddr_t)&adminrevoke,
3900 		    sizeof (struct nfsd_clid));
3901 		if (!error)
3902 			error = nfsrv_adminrevoke(&adminrevoke, p);
3903 	} else if (uap->flag & NFSSVC_DUMPCLIENTS) {
3904 		error = copyin(uap->argp, (caddr_t)&dumplist,
3905 		    sizeof (struct nfsd_dumplist));
3906 		if (!error && (dumplist.ndl_size < 1 ||
3907 			dumplist.ndl_size > NFSRV_MAXDUMPLIST))
3908 			error = EPERM;
3909 		if (!error) {
3910 		    len = sizeof (struct nfsd_dumpclients) * dumplist.ndl_size;
3911 		    dumpclients = malloc(len, M_TEMP, M_WAITOK | M_ZERO);
3912 		    nfsrv_dumpclients(dumpclients, dumplist.ndl_size);
3913 		    error = copyout(dumpclients, dumplist.ndl_list, len);
3914 		    free(dumpclients, M_TEMP);
3915 		}
3916 	} else if (uap->flag & NFSSVC_DUMPLOCKS) {
3917 		error = copyin(uap->argp, (caddr_t)&dumplocklist,
3918 		    sizeof (struct nfsd_dumplocklist));
3919 		if (!error && (dumplocklist.ndllck_size < 1 ||
3920 			dumplocklist.ndllck_size > NFSRV_MAXDUMPLIST))
3921 			error = EPERM;
3922 		if (!error)
3923 			error = nfsrv_lookupfilename(&nd,
3924 				dumplocklist.ndllck_fname, p);
3925 		if (!error) {
3926 			len = sizeof (struct nfsd_dumplocks) *
3927 				dumplocklist.ndllck_size;
3928 			dumplocks = malloc(len, M_TEMP, M_WAITOK | M_ZERO);
3929 			nfsrv_dumplocks(nd.ni_vp, dumplocks,
3930 			    dumplocklist.ndllck_size, p);
3931 			vput(nd.ni_vp);
3932 			error = copyout(dumplocks, dumplocklist.ndllck_list,
3933 			    len);
3934 			free(dumplocks, M_TEMP);
3935 		}
3936 	} else if (uap->flag & NFSSVC_BACKUPSTABLE) {
3937 		procp = p->td_proc;
3938 		PROC_LOCK(procp);
3939 		nfsd_master_pid = procp->p_pid;
3940 		bcopy(procp->p_comm, nfsd_master_comm, MAXCOMLEN + 1);
3941 		nfsd_master_start = procp->p_stats->p_start;
3942 		nfsd_master_proc = procp;
3943 		PROC_UNLOCK(procp);
3944 	} else if ((uap->flag & NFSSVC_SUSPENDNFSD) != 0) {
3945 		NFSLOCKV4ROOTMUTEX();
3946 		if (suspend_nfsd == 0) {
3947 			/* Lock out all nfsd threads */
3948 			do {
3949 				igotlock = nfsv4_lock(&nfsd_suspend_lock, 1,
3950 				    NULL, NFSV4ROOTLOCKMUTEXPTR, NULL);
3951 			} while (igotlock == 0 && suspend_nfsd == 0);
3952 			suspend_nfsd = 1;
3953 		}
3954 		NFSUNLOCKV4ROOTMUTEX();
3955 		error = 0;
3956 	} else if ((uap->flag & NFSSVC_RESUMENFSD) != 0) {
3957 		NFSLOCKV4ROOTMUTEX();
3958 		if (suspend_nfsd != 0) {
3959 			nfsv4_unlock(&nfsd_suspend_lock, 0);
3960 			suspend_nfsd = 0;
3961 		}
3962 		NFSUNLOCKV4ROOTMUTEX();
3963 		error = 0;
3964 	}
3965 
3966 	NFSEXITCODE(error);
3967 	return (error);
3968 }
3969 
3970 /*
3971  * Check exports.
3972  * Returns 0 if ok, 1 otherwise.
3973  */
3974 int
3975 nfsvno_testexp(struct nfsrv_descript *nd, struct nfsexstuff *exp)
3976 {
3977 	int i;
3978 
3979 	/*
3980 	 * This seems odd, but allow the case where the security flavor
3981 	 * list is empty. This happens when NFSv4 is traversing non-exported
3982 	 * file systems. Exported file systems should always have a non-empty
3983 	 * security flavor list.
3984 	 */
3985 	if (exp->nes_numsecflavor == 0)
3986 		return (0);
3987 
3988 	for (i = 0; i < exp->nes_numsecflavor; i++) {
3989 		/*
3990 		 * The tests for privacy and integrity must be first,
3991 		 * since ND_GSS is set for everything but AUTH_SYS.
3992 		 */
3993 		if (exp->nes_secflavors[i] == RPCSEC_GSS_KRB5P &&
3994 		    (nd->nd_flag & ND_GSSPRIVACY))
3995 			return (0);
3996 		if (exp->nes_secflavors[i] == RPCSEC_GSS_KRB5I &&
3997 		    (nd->nd_flag & ND_GSSINTEGRITY))
3998 			return (0);
3999 		if (exp->nes_secflavors[i] == RPCSEC_GSS_KRB5 &&
4000 		    (nd->nd_flag & ND_GSS))
4001 			return (0);
4002 		if (exp->nes_secflavors[i] == AUTH_SYS &&
4003 		    (nd->nd_flag & ND_GSS) == 0)
4004 			return (0);
4005 	}
4006 	return (1);
4007 }
4008 
4009 /*
4010  * Calculate a hash value for the fid in a file handle.
4011  */
4012 uint32_t
4013 nfsrv_hashfh(fhandle_t *fhp)
4014 {
4015 	uint32_t hashval;
4016 
4017 	hashval = hash32_buf(&fhp->fh_fid, sizeof(struct fid), 0);
4018 	return (hashval);
4019 }
4020 
4021 /*
4022  * Calculate a hash value for the sessionid.
4023  */
4024 uint32_t
4025 nfsrv_hashsessionid(uint8_t *sessionid)
4026 {
4027 	uint32_t hashval;
4028 
4029 	hashval = hash32_buf(sessionid, NFSX_V4SESSIONID, 0);
4030 	return (hashval);
4031 }
4032 
4033 /*
4034  * Signal the userland master nfsd to backup the stable restart file.
4035  */
4036 void
4037 nfsrv_backupstable(void)
4038 {
4039 	struct proc *procp;
4040 
4041 	if (nfsd_master_proc != NULL) {
4042 		procp = pfind(nfsd_master_pid);
4043 		/* Try to make sure it is the correct process. */
4044 		if (procp == nfsd_master_proc &&
4045 		    procp->p_stats->p_start.tv_sec ==
4046 		    nfsd_master_start.tv_sec &&
4047 		    procp->p_stats->p_start.tv_usec ==
4048 		    nfsd_master_start.tv_usec &&
4049 		    strcmp(procp->p_comm, nfsd_master_comm) == 0)
4050 			kern_psignal(procp, SIGUSR2);
4051 		else
4052 			nfsd_master_proc = NULL;
4053 
4054 		if (procp != NULL)
4055 			PROC_UNLOCK(procp);
4056 	}
4057 }
4058 
4059 /*
4060  * Create a DS data file for nfsrv_pnfscreate(). Called for each mirror.
4061  * The arguments are in a structure, so that they can be passed through
4062  * taskqueue for a kernel process to execute this function.
4063  */
4064 struct nfsrvdscreate {
4065 	int			done;
4066 	int			inprog;
4067 	struct task		tsk;
4068 	struct ucred		*tcred;
4069 	struct vnode		*dvp;
4070 	NFSPROC_T		*p;
4071 	struct pnfsdsfile	*pf;
4072 	int			err;
4073 	fhandle_t		fh;
4074 	struct vattr		va;
4075 	struct vattr		createva;
4076 };
4077 
4078 int
4079 nfsrv_dscreate(struct vnode *dvp, struct vattr *vap, struct vattr *nvap,
4080     fhandle_t *fhp, struct pnfsdsfile *pf, struct pnfsdsattr *dsa,
4081     char *fnamep, struct ucred *tcred, NFSPROC_T *p, struct vnode **nvpp)
4082 {
4083 	struct vnode *nvp;
4084 	struct nameidata named;
4085 	struct vattr va;
4086 	char *bufp;
4087 	u_long *hashp;
4088 	struct nfsnode *np;
4089 	struct nfsmount *nmp;
4090 	int error;
4091 
4092 	NFSNAMEICNDSET(&named.ni_cnd, tcred, CREATE,
4093 	    LOCKPARENT | LOCKLEAF | SAVESTART | NOCACHE);
4094 	nfsvno_setpathbuf(&named, &bufp, &hashp);
4095 	named.ni_cnd.cn_lkflags = LK_EXCLUSIVE;
4096 	named.ni_cnd.cn_thread = p;
4097 	named.ni_cnd.cn_nameptr = bufp;
4098 	if (fnamep != NULL) {
4099 		strlcpy(bufp, fnamep, PNFS_FILENAME_LEN + 1);
4100 		named.ni_cnd.cn_namelen = strlen(bufp);
4101 	} else
4102 		named.ni_cnd.cn_namelen = nfsrv_putfhname(fhp, bufp);
4103 	NFSD_DEBUG(4, "nfsrv_dscreate: dvp=%p fname=%s\n", dvp, bufp);
4104 
4105 	/* Create the date file in the DS mount. */
4106 	error = NFSVOPLOCK(dvp, LK_EXCLUSIVE);
4107 	if (error == 0) {
4108 		error = VOP_CREATE(dvp, &nvp, &named.ni_cnd, vap);
4109 		NFSVOPUNLOCK(dvp);
4110 		if (error == 0) {
4111 			/* Set the ownership of the file. */
4112 			error = VOP_SETATTR(nvp, nvap, tcred);
4113 			NFSD_DEBUG(4, "nfsrv_dscreate:"
4114 			    " setattr-uid=%d\n", error);
4115 			if (error != 0)
4116 				vput(nvp);
4117 		}
4118 		if (error != 0)
4119 			printf("pNFS: pnfscreate failed=%d\n", error);
4120 	} else
4121 		printf("pNFS: pnfscreate vnlock=%d\n", error);
4122 	if (error == 0) {
4123 		np = VTONFS(nvp);
4124 		nmp = VFSTONFS(nvp->v_mount);
4125 		if (strcmp(nvp->v_mount->mnt_vfc->vfc_name, "nfs")
4126 		    != 0 || nmp->nm_nam->sa_len > sizeof(
4127 		    struct sockaddr_in6) ||
4128 		    np->n_fhp->nfh_len != NFSX_MYFH) {
4129 			printf("Bad DS file: fstype=%s salen=%d"
4130 			    " fhlen=%d\n",
4131 			    nvp->v_mount->mnt_vfc->vfc_name,
4132 			    nmp->nm_nam->sa_len, np->n_fhp->nfh_len);
4133 			error = ENOENT;
4134 		}
4135 
4136 		/* Set extattrs for the DS on the MDS file. */
4137 		if (error == 0) {
4138 			if (dsa != NULL) {
4139 				error = VOP_GETATTR(nvp, &va, tcred);
4140 				if (error == 0) {
4141 					dsa->dsa_filerev = va.va_filerev;
4142 					dsa->dsa_size = va.va_size;
4143 					dsa->dsa_atime = va.va_atime;
4144 					dsa->dsa_mtime = va.va_mtime;
4145 					dsa->dsa_bytes = va.va_bytes;
4146 				}
4147 			}
4148 			if (error == 0) {
4149 				NFSBCOPY(np->n_fhp->nfh_fh, &pf->dsf_fh,
4150 				    NFSX_MYFH);
4151 				NFSBCOPY(nmp->nm_nam, &pf->dsf_sin,
4152 				    nmp->nm_nam->sa_len);
4153 				NFSBCOPY(named.ni_cnd.cn_nameptr,
4154 				    pf->dsf_filename,
4155 				    sizeof(pf->dsf_filename));
4156 			}
4157 		} else
4158 			printf("pNFS: pnfscreate can't get DS"
4159 			    " attr=%d\n", error);
4160 		if (nvpp != NULL && error == 0)
4161 			*nvpp = nvp;
4162 		else
4163 			vput(nvp);
4164 	}
4165 	nfsvno_relpathbuf(&named);
4166 	return (error);
4167 }
4168 
4169 /*
4170  * Start up the thread that will execute nfsrv_dscreate().
4171  */
4172 static void
4173 start_dscreate(void *arg, int pending)
4174 {
4175 	struct nfsrvdscreate *dsc;
4176 
4177 	dsc = (struct nfsrvdscreate *)arg;
4178 	dsc->err = nfsrv_dscreate(dsc->dvp, &dsc->createva, &dsc->va, &dsc->fh,
4179 	    dsc->pf, NULL, NULL, dsc->tcred, dsc->p, NULL);
4180 	dsc->done = 1;
4181 	NFSD_DEBUG(4, "start_dscreate: err=%d\n", dsc->err);
4182 }
4183 
4184 /*
4185  * Create a pNFS data file on the Data Server(s).
4186  */
4187 static void
4188 nfsrv_pnfscreate(struct vnode *vp, struct vattr *vap, struct ucred *cred,
4189     NFSPROC_T *p)
4190 {
4191 	struct nfsrvdscreate *dsc, *tdsc = NULL;
4192 	struct nfsdevice *ds, *tds, *fds;
4193 	struct mount *mp;
4194 	struct pnfsdsfile *pf, *tpf;
4195 	struct pnfsdsattr dsattr;
4196 	struct vattr va;
4197 	struct vnode *dvp[NFSDEV_MAXMIRRORS];
4198 	struct nfsmount *nmp;
4199 	fhandle_t fh;
4200 	uid_t vauid;
4201 	gid_t vagid;
4202 	u_short vamode;
4203 	struct ucred *tcred;
4204 	int dsdir[NFSDEV_MAXMIRRORS], error, i, mirrorcnt, ret;
4205 	int failpos, timo;
4206 
4207 	/* Get a DS server directory in a round-robin order. */
4208 	mirrorcnt = 1;
4209 	mp = vp->v_mount;
4210 	ds = fds = NULL;
4211 	NFSDDSLOCK();
4212 	/*
4213 	 * Search for the first entry that handles this MDS fs, but use the
4214 	 * first entry for all MDS fs's otherwise.
4215 	 */
4216 	TAILQ_FOREACH(tds, &nfsrv_devidhead, nfsdev_list) {
4217 		if (tds->nfsdev_nmp != NULL) {
4218 			if (tds->nfsdev_mdsisset == 0 && ds == NULL)
4219 				ds = tds;
4220 			else if (tds->nfsdev_mdsisset != 0 && fsidcmp(
4221 			    &mp->mnt_stat.f_fsid, &tds->nfsdev_mdsfsid) == 0) {
4222 				ds = fds = tds;
4223 				break;
4224 			}
4225 		}
4226 	}
4227 	if (ds == NULL) {
4228 		NFSDDSUNLOCK();
4229 		NFSD_DEBUG(4, "nfsrv_pnfscreate: no srv\n");
4230 		return;
4231 	}
4232 	i = dsdir[0] = ds->nfsdev_nextdir;
4233 	ds->nfsdev_nextdir = (ds->nfsdev_nextdir + 1) % nfsrv_dsdirsize;
4234 	dvp[0] = ds->nfsdev_dsdir[i];
4235 	tds = TAILQ_NEXT(ds, nfsdev_list);
4236 	if (nfsrv_maxpnfsmirror > 1 && tds != NULL) {
4237 		TAILQ_FOREACH_FROM(tds, &nfsrv_devidhead, nfsdev_list) {
4238 			if (tds->nfsdev_nmp != NULL &&
4239 			    ((tds->nfsdev_mdsisset == 0 && fds == NULL) ||
4240 			     (tds->nfsdev_mdsisset != 0 && fds != NULL &&
4241 			      fsidcmp(&mp->mnt_stat.f_fsid,
4242 			      &tds->nfsdev_mdsfsid) == 0))) {
4243 				dsdir[mirrorcnt] = i;
4244 				dvp[mirrorcnt] = tds->nfsdev_dsdir[i];
4245 				mirrorcnt++;
4246 				if (mirrorcnt >= nfsrv_maxpnfsmirror)
4247 					break;
4248 			}
4249 		}
4250 	}
4251 	/* Put at end of list to implement round-robin usage. */
4252 	TAILQ_REMOVE(&nfsrv_devidhead, ds, nfsdev_list);
4253 	TAILQ_INSERT_TAIL(&nfsrv_devidhead, ds, nfsdev_list);
4254 	NFSDDSUNLOCK();
4255 	dsc = NULL;
4256 	if (mirrorcnt > 1)
4257 		tdsc = dsc = malloc(sizeof(*dsc) * (mirrorcnt - 1), M_TEMP,
4258 		    M_WAITOK | M_ZERO);
4259 	tpf = pf = malloc(sizeof(*pf) * nfsrv_maxpnfsmirror, M_TEMP, M_WAITOK |
4260 	    M_ZERO);
4261 
4262 	error = nfsvno_getfh(vp, &fh, p);
4263 	if (error == 0)
4264 		error = VOP_GETATTR(vp, &va, cred);
4265 	if (error == 0) {
4266 		/* Set the attributes for "vp" to Setattr the DS vp. */
4267 		vauid = va.va_uid;
4268 		vagid = va.va_gid;
4269 		vamode = va.va_mode;
4270 		VATTR_NULL(&va);
4271 		va.va_uid = vauid;
4272 		va.va_gid = vagid;
4273 		va.va_mode = vamode;
4274 		va.va_size = 0;
4275 	} else
4276 		printf("pNFS: pnfscreate getfh+attr=%d\n", error);
4277 
4278 	NFSD_DEBUG(4, "nfsrv_pnfscreate: cruid=%d crgid=%d\n", cred->cr_uid,
4279 	    cred->cr_gid);
4280 	/* Make data file name based on FH. */
4281 	tcred = newnfs_getcred();
4282 
4283 	/*
4284 	 * Create the file on each DS mirror, using kernel process(es) for the
4285 	 * additional mirrors.
4286 	 */
4287 	failpos = -1;
4288 	for (i = 0; i < mirrorcnt - 1 && error == 0; i++, tpf++, tdsc++) {
4289 		tpf->dsf_dir = dsdir[i];
4290 		tdsc->tcred = tcred;
4291 		tdsc->p = p;
4292 		tdsc->pf = tpf;
4293 		tdsc->createva = *vap;
4294 		NFSBCOPY(&fh, &tdsc->fh, sizeof(fh));
4295 		tdsc->va = va;
4296 		tdsc->dvp = dvp[i];
4297 		tdsc->done = 0;
4298 		tdsc->inprog = 0;
4299 		tdsc->err = 0;
4300 		ret = EIO;
4301 		if (nfs_pnfsiothreads != 0) {
4302 			ret = nfs_pnfsio(start_dscreate, tdsc);
4303 			NFSD_DEBUG(4, "nfsrv_pnfscreate: nfs_pnfsio=%d\n", ret);
4304 		}
4305 		if (ret != 0) {
4306 			ret = nfsrv_dscreate(dvp[i], vap, &va, &fh, tpf, NULL,
4307 			    NULL, tcred, p, NULL);
4308 			if (ret != 0) {
4309 				KASSERT(error == 0, ("nfsrv_dscreate err=%d",
4310 				    error));
4311 				if (failpos == -1 && nfsds_failerr(ret))
4312 					failpos = i;
4313 				else
4314 					error = ret;
4315 			}
4316 		}
4317 	}
4318 	if (error == 0) {
4319 		tpf->dsf_dir = dsdir[mirrorcnt - 1];
4320 		error = nfsrv_dscreate(dvp[mirrorcnt - 1], vap, &va, &fh, tpf,
4321 		    &dsattr, NULL, tcred, p, NULL);
4322 		if (failpos == -1 && mirrorcnt > 1 && nfsds_failerr(error)) {
4323 			failpos = mirrorcnt - 1;
4324 			error = 0;
4325 		}
4326 	}
4327 	timo = hz / 50;		/* Wait for 20msec. */
4328 	if (timo < 1)
4329 		timo = 1;
4330 	/* Wait for kernel task(s) to complete. */
4331 	for (tdsc = dsc, i = 0; i < mirrorcnt - 1; i++, tdsc++) {
4332 		while (tdsc->inprog != 0 && tdsc->done == 0)
4333 			tsleep(&tdsc->tsk, PVFS, "srvdcr", timo);
4334 		if (tdsc->err != 0) {
4335 			if (failpos == -1 && nfsds_failerr(tdsc->err))
4336 				failpos = i;
4337 			else if (error == 0)
4338 				error = tdsc->err;
4339 		}
4340 	}
4341 
4342 	/*
4343 	 * If failpos has been set, that mirror has failed, so it needs
4344 	 * to be disabled.
4345 	 */
4346 	if (failpos >= 0) {
4347 		nmp = VFSTONFS(dvp[failpos]->v_mount);
4348 		NFSLOCKMNT(nmp);
4349 		if ((nmp->nm_privflag & (NFSMNTP_FORCEDISM |
4350 		     NFSMNTP_CANCELRPCS)) == 0) {
4351 			nmp->nm_privflag |= NFSMNTP_CANCELRPCS;
4352 			NFSUNLOCKMNT(nmp);
4353 			ds = nfsrv_deldsnmp(PNFSDOP_DELDSSERVER, nmp, p);
4354 			NFSD_DEBUG(4, "dscreatfail fail=%d ds=%p\n", failpos,
4355 			    ds);
4356 			if (ds != NULL)
4357 				nfsrv_killrpcs(nmp);
4358 			NFSLOCKMNT(nmp);
4359 			nmp->nm_privflag &= ~NFSMNTP_CANCELRPCS;
4360 			wakeup(nmp);
4361 		}
4362 		NFSUNLOCKMNT(nmp);
4363 	}
4364 
4365 	NFSFREECRED(tcred);
4366 	if (error == 0) {
4367 		ASSERT_VOP_ELOCKED(vp, "nfsrv_pnfscreate vp");
4368 
4369 		NFSD_DEBUG(4, "nfsrv_pnfscreate: mirrorcnt=%d maxmirror=%d\n",
4370 		    mirrorcnt, nfsrv_maxpnfsmirror);
4371 		/*
4372 		 * For all mirrors that couldn't be created, fill in the
4373 		 * *pf structure, but with an IP address == 0.0.0.0.
4374 		 */
4375 		tpf = pf + mirrorcnt;
4376 		for (i = mirrorcnt; i < nfsrv_maxpnfsmirror; i++, tpf++) {
4377 			*tpf = *pf;
4378 			tpf->dsf_sin.sin_family = AF_INET;
4379 			tpf->dsf_sin.sin_len = sizeof(struct sockaddr_in);
4380 			tpf->dsf_sin.sin_addr.s_addr = 0;
4381 			tpf->dsf_sin.sin_port = 0;
4382 		}
4383 
4384 		error = vn_extattr_set(vp, IO_NODELOCKED,
4385 		    EXTATTR_NAMESPACE_SYSTEM, "pnfsd.dsfile",
4386 		    sizeof(*pf) * nfsrv_maxpnfsmirror, (char *)pf, p);
4387 		if (error == 0)
4388 			error = vn_extattr_set(vp, IO_NODELOCKED,
4389 			    EXTATTR_NAMESPACE_SYSTEM, "pnfsd.dsattr",
4390 			    sizeof(dsattr), (char *)&dsattr, p);
4391 		if (error != 0)
4392 			printf("pNFS: pnfscreate setextattr=%d\n",
4393 			    error);
4394 	} else
4395 		printf("pNFS: pnfscreate=%d\n", error);
4396 	free(pf, M_TEMP);
4397 	free(dsc, M_TEMP);
4398 }
4399 
4400 /*
4401  * Get the information needed to remove the pNFS Data Server file from the
4402  * Metadata file.  Upon success, ddvp is set non-NULL to the locked
4403  * DS directory vnode.  The caller must unlock *ddvp when done with it.
4404  */
4405 static void
4406 nfsrv_pnfsremovesetup(struct vnode *vp, NFSPROC_T *p, struct vnode **dvpp,
4407     int *mirrorcntp, char *fname, fhandle_t *fhp)
4408 {
4409 	struct vattr va;
4410 	struct ucred *tcred;
4411 	char *buf;
4412 	int buflen, error;
4413 
4414 	dvpp[0] = NULL;
4415 	/* If not an exported regular file or not a pNFS server, just return. */
4416 	if (vp->v_type != VREG || (vp->v_mount->mnt_flag & MNT_EXPORTED) == 0 ||
4417 	    nfsrv_devidcnt == 0)
4418 		return;
4419 
4420 	/* Check to see if this is the last hard link. */
4421 	tcred = newnfs_getcred();
4422 	error = VOP_GETATTR(vp, &va, tcred);
4423 	NFSFREECRED(tcred);
4424 	if (error != 0) {
4425 		printf("pNFS: nfsrv_pnfsremovesetup getattr=%d\n", error);
4426 		return;
4427 	}
4428 	if (va.va_nlink > 1)
4429 		return;
4430 
4431 	error = nfsvno_getfh(vp, fhp, p);
4432 	if (error != 0) {
4433 		printf("pNFS: nfsrv_pnfsremovesetup getfh=%d\n", error);
4434 		return;
4435 	}
4436 
4437 	buflen = 1024;
4438 	buf = malloc(buflen, M_TEMP, M_WAITOK);
4439 	/* Get the directory vnode for the DS mount and the file handle. */
4440 	error = nfsrv_dsgetsockmnt(vp, 0, buf, &buflen, mirrorcntp, p, dvpp,
4441 	    NULL, NULL, fname, NULL, NULL, NULL, NULL, NULL);
4442 	free(buf, M_TEMP);
4443 	if (error != 0)
4444 		printf("pNFS: nfsrv_pnfsremovesetup getsockmnt=%d\n", error);
4445 }
4446 
4447 /*
4448  * Remove a DS data file for nfsrv_pnfsremove(). Called for each mirror.
4449  * The arguments are in a structure, so that they can be passed through
4450  * taskqueue for a kernel process to execute this function.
4451  */
4452 struct nfsrvdsremove {
4453 	int			done;
4454 	int			inprog;
4455 	struct task		tsk;
4456 	struct ucred		*tcred;
4457 	struct vnode		*dvp;
4458 	NFSPROC_T		*p;
4459 	int			err;
4460 	char			fname[PNFS_FILENAME_LEN + 1];
4461 };
4462 
4463 static int
4464 nfsrv_dsremove(struct vnode *dvp, char *fname, struct ucred *tcred,
4465     NFSPROC_T *p)
4466 {
4467 	struct nameidata named;
4468 	struct vnode *nvp;
4469 	char *bufp;
4470 	u_long *hashp;
4471 	int error;
4472 
4473 	error = NFSVOPLOCK(dvp, LK_EXCLUSIVE);
4474 	if (error != 0)
4475 		return (error);
4476 	named.ni_cnd.cn_nameiop = DELETE;
4477 	named.ni_cnd.cn_lkflags = LK_EXCLUSIVE | LK_RETRY;
4478 	named.ni_cnd.cn_cred = tcred;
4479 	named.ni_cnd.cn_thread = p;
4480 	named.ni_cnd.cn_flags = ISLASTCN | LOCKPARENT | LOCKLEAF | SAVENAME;
4481 	nfsvno_setpathbuf(&named, &bufp, &hashp);
4482 	named.ni_cnd.cn_nameptr = bufp;
4483 	named.ni_cnd.cn_namelen = strlen(fname);
4484 	strlcpy(bufp, fname, NAME_MAX);
4485 	NFSD_DEBUG(4, "nfsrv_pnfsremove: filename=%s\n", bufp);
4486 	error = VOP_LOOKUP(dvp, &nvp, &named.ni_cnd);
4487 	NFSD_DEBUG(4, "nfsrv_pnfsremove: aft LOOKUP=%d\n", error);
4488 	if (error == 0) {
4489 		error = VOP_REMOVE(dvp, nvp, &named.ni_cnd);
4490 		vput(nvp);
4491 	}
4492 	NFSVOPUNLOCK(dvp);
4493 	nfsvno_relpathbuf(&named);
4494 	if (error != 0)
4495 		printf("pNFS: nfsrv_pnfsremove failed=%d\n", error);
4496 	return (error);
4497 }
4498 
4499 /*
4500  * Start up the thread that will execute nfsrv_dsremove().
4501  */
4502 static void
4503 start_dsremove(void *arg, int pending)
4504 {
4505 	struct nfsrvdsremove *dsrm;
4506 
4507 	dsrm = (struct nfsrvdsremove *)arg;
4508 	dsrm->err = nfsrv_dsremove(dsrm->dvp, dsrm->fname, dsrm->tcred,
4509 	    dsrm->p);
4510 	dsrm->done = 1;
4511 	NFSD_DEBUG(4, "start_dsremove: err=%d\n", dsrm->err);
4512 }
4513 
4514 /*
4515  * Remove a pNFS data file from a Data Server.
4516  * nfsrv_pnfsremovesetup() must have been called before the MDS file was
4517  * removed to set up the dvp and fill in the FH.
4518  */
4519 static void
4520 nfsrv_pnfsremove(struct vnode **dvp, int mirrorcnt, char *fname, fhandle_t *fhp,
4521     NFSPROC_T *p)
4522 {
4523 	struct ucred *tcred;
4524 	struct nfsrvdsremove *dsrm, *tdsrm;
4525 	struct nfsdevice *ds;
4526 	struct nfsmount *nmp;
4527 	int failpos, i, ret, timo;
4528 
4529 	tcred = newnfs_getcred();
4530 	dsrm = NULL;
4531 	if (mirrorcnt > 1)
4532 		dsrm = malloc(sizeof(*dsrm) * mirrorcnt - 1, M_TEMP, M_WAITOK);
4533 	/*
4534 	 * Remove the file on each DS mirror, using kernel process(es) for the
4535 	 * additional mirrors.
4536 	 */
4537 	failpos = -1;
4538 	for (tdsrm = dsrm, i = 0; i < mirrorcnt - 1; i++, tdsrm++) {
4539 		tdsrm->tcred = tcred;
4540 		tdsrm->p = p;
4541 		tdsrm->dvp = dvp[i];
4542 		strlcpy(tdsrm->fname, fname, PNFS_FILENAME_LEN + 1);
4543 		tdsrm->inprog = 0;
4544 		tdsrm->done = 0;
4545 		tdsrm->err = 0;
4546 		ret = EIO;
4547 		if (nfs_pnfsiothreads != 0) {
4548 			ret = nfs_pnfsio(start_dsremove, tdsrm);
4549 			NFSD_DEBUG(4, "nfsrv_pnfsremove: nfs_pnfsio=%d\n", ret);
4550 		}
4551 		if (ret != 0) {
4552 			ret = nfsrv_dsremove(dvp[i], fname, tcred, p);
4553 			if (failpos == -1 && nfsds_failerr(ret))
4554 				failpos = i;
4555 		}
4556 	}
4557 	ret = nfsrv_dsremove(dvp[mirrorcnt - 1], fname, tcred, p);
4558 	if (failpos == -1 && mirrorcnt > 1 && nfsds_failerr(ret))
4559 		failpos = mirrorcnt - 1;
4560 	timo = hz / 50;		/* Wait for 20msec. */
4561 	if (timo < 1)
4562 		timo = 1;
4563 	/* Wait for kernel task(s) to complete. */
4564 	for (tdsrm = dsrm, i = 0; i < mirrorcnt - 1; i++, tdsrm++) {
4565 		while (tdsrm->inprog != 0 && tdsrm->done == 0)
4566 			tsleep(&tdsrm->tsk, PVFS, "srvdsrm", timo);
4567 		if (failpos == -1 && nfsds_failerr(tdsrm->err))
4568 			failpos = i;
4569 	}
4570 
4571 	/*
4572 	 * If failpos has been set, that mirror has failed, so it needs
4573 	 * to be disabled.
4574 	 */
4575 	if (failpos >= 0) {
4576 		nmp = VFSTONFS(dvp[failpos]->v_mount);
4577 		NFSLOCKMNT(nmp);
4578 		if ((nmp->nm_privflag & (NFSMNTP_FORCEDISM |
4579 		     NFSMNTP_CANCELRPCS)) == 0) {
4580 			nmp->nm_privflag |= NFSMNTP_CANCELRPCS;
4581 			NFSUNLOCKMNT(nmp);
4582 			ds = nfsrv_deldsnmp(PNFSDOP_DELDSSERVER, nmp, p);
4583 			NFSD_DEBUG(4, "dsremovefail fail=%d ds=%p\n", failpos,
4584 			    ds);
4585 			if (ds != NULL)
4586 				nfsrv_killrpcs(nmp);
4587 			NFSLOCKMNT(nmp);
4588 			nmp->nm_privflag &= ~NFSMNTP_CANCELRPCS;
4589 			wakeup(nmp);
4590 		}
4591 		NFSUNLOCKMNT(nmp);
4592 	}
4593 
4594 	/* Get rid all layouts for the file. */
4595 	nfsrv_freefilelayouts(fhp);
4596 
4597 	NFSFREECRED(tcred);
4598 	free(dsrm, M_TEMP);
4599 }
4600 
4601 /*
4602  * Generate a file name based on the file handle and put it in *bufp.
4603  * Return the number of bytes generated.
4604  */
4605 static int
4606 nfsrv_putfhname(fhandle_t *fhp, char *bufp)
4607 {
4608 	int i;
4609 	uint8_t *cp;
4610 	const uint8_t *hexdigits = "0123456789abcdef";
4611 
4612 	cp = (uint8_t *)fhp;
4613 	for (i = 0; i < sizeof(*fhp); i++) {
4614 		bufp[2 * i] = hexdigits[(*cp >> 4) & 0xf];
4615 		bufp[2 * i + 1] = hexdigits[*cp++ & 0xf];
4616 	}
4617 	bufp[2 * i] = '\0';
4618 	return (2 * i);
4619 }
4620 
4621 /*
4622  * Update the Metadata file's attributes from the DS file when a Read/Write
4623  * layout is returned.
4624  * Basically just call nfsrv_proxyds() with procedure == NFSPROC_LAYOUTRETURN
4625  * so that it does a nfsrv_getattrdsrpc() and nfsrv_setextattr() on the DS file.
4626  */
4627 int
4628 nfsrv_updatemdsattr(struct vnode *vp, struct nfsvattr *nap, NFSPROC_T *p)
4629 {
4630 	struct ucred *tcred;
4631 	int error;
4632 
4633 	/* Do this as root so that it won't fail with EACCES. */
4634 	tcred = newnfs_getcred();
4635 	error = nfsrv_proxyds(vp, 0, 0, tcred, p, NFSPROC_LAYOUTRETURN,
4636 	    NULL, NULL, NULL, nap, NULL, NULL, 0, NULL);
4637 	NFSFREECRED(tcred);
4638 	return (error);
4639 }
4640 
4641 /*
4642  * Set the NFSv4 ACL on the DS file to the same ACL as the MDS file.
4643  */
4644 static int
4645 nfsrv_dssetacl(struct vnode *vp, struct acl *aclp, struct ucred *cred,
4646     NFSPROC_T *p)
4647 {
4648 	int error;
4649 
4650 	error = nfsrv_proxyds(vp, 0, 0, cred, p, NFSPROC_SETACL,
4651 	    NULL, NULL, NULL, NULL, aclp, NULL, 0, NULL);
4652 	return (error);
4653 }
4654 
4655 static int
4656 nfsrv_proxyds(struct vnode *vp, off_t off, int cnt, struct ucred *cred,
4657     struct thread *p, int ioproc, struct mbuf **mpp, char *cp,
4658     struct mbuf **mpp2, struct nfsvattr *nap, struct acl *aclp,
4659     off_t *offp, int content, bool *eofp)
4660 {
4661 	struct nfsmount *nmp[NFSDEV_MAXMIRRORS], *failnmp;
4662 	fhandle_t fh[NFSDEV_MAXMIRRORS];
4663 	struct vnode *dvp[NFSDEV_MAXMIRRORS];
4664 	struct nfsdevice *ds;
4665 	struct pnfsdsattr dsattr;
4666 	struct opnfsdsattr odsattr;
4667 	char *buf;
4668 	int buflen, error, failpos, i, mirrorcnt, origmircnt, trycnt;
4669 
4670 	NFSD_DEBUG(4, "in nfsrv_proxyds\n");
4671 	/*
4672 	 * If not a regular file, not exported or not a pNFS server,
4673 	 * just return ENOENT.
4674 	 */
4675 	if (vp->v_type != VREG || (vp->v_mount->mnt_flag & MNT_EXPORTED) == 0 ||
4676 	    nfsrv_devidcnt == 0)
4677 		return (ENOENT);
4678 
4679 	buflen = 1024;
4680 	buf = malloc(buflen, M_TEMP, M_WAITOK);
4681 	error = 0;
4682 
4683 	/*
4684 	 * For Getattr, get the Change attribute (va_filerev) and size (va_size)
4685 	 * from the MetaData file's extended attribute.
4686 	 */
4687 	if (ioproc == NFSPROC_GETATTR) {
4688 		error = vn_extattr_get(vp, IO_NODELOCKED,
4689 		    EXTATTR_NAMESPACE_SYSTEM, "pnfsd.dsattr", &buflen, buf,
4690 		    p);
4691 		if (error == 0) {
4692 			if (buflen == sizeof(odsattr)) {
4693 				NFSBCOPY(buf, &odsattr, buflen);
4694 				nap->na_filerev = odsattr.dsa_filerev;
4695 				nap->na_size = odsattr.dsa_size;
4696 				nap->na_atime = odsattr.dsa_atime;
4697 				nap->na_mtime = odsattr.dsa_mtime;
4698 				/*
4699 				 * Fake na_bytes by rounding up na_size.
4700 				 * Since we don't know the block size, just
4701 				 * use BLKDEV_IOSIZE.
4702 				 */
4703 				nap->na_bytes = (odsattr.dsa_size +
4704 				    BLKDEV_IOSIZE - 1) & ~(BLKDEV_IOSIZE - 1);
4705 			} else if (buflen == sizeof(dsattr)) {
4706 				NFSBCOPY(buf, &dsattr, buflen);
4707 				nap->na_filerev = dsattr.dsa_filerev;
4708 				nap->na_size = dsattr.dsa_size;
4709 				nap->na_atime = dsattr.dsa_atime;
4710 				nap->na_mtime = dsattr.dsa_mtime;
4711 				nap->na_bytes = dsattr.dsa_bytes;
4712 			} else
4713 				error = ENXIO;
4714 		}
4715 		if (error == 0) {
4716 			/*
4717 			 * If nfsrv_pnfsgetdsattr is 0 or nfsrv_checkdsattr()
4718 			 * returns 0, just return now.  nfsrv_checkdsattr()
4719 			 * returns 0 if there is no Read/Write layout
4720 			 * plus either an Open/Write_access or Write
4721 			 * delegation issued to a client for the file.
4722 			 */
4723 			if (nfsrv_pnfsgetdsattr == 0 ||
4724 			    nfsrv_checkdsattr(vp, p) == 0) {
4725 				free(buf, M_TEMP);
4726 				return (error);
4727 			}
4728 		}
4729 
4730 		/*
4731 		 * Clear ENOATTR so the code below will attempt to do a
4732 		 * nfsrv_getattrdsrpc() to get the attributes and (re)create
4733 		 * the extended attribute.
4734 		 */
4735 		if (error == ENOATTR)
4736 			error = 0;
4737 	}
4738 
4739 	origmircnt = -1;
4740 	trycnt = 0;
4741 tryagain:
4742 	if (error == 0) {
4743 		buflen = 1024;
4744 		if (ioproc == NFSPROC_READDS && NFSVOPISLOCKED(vp) ==
4745 		    LK_EXCLUSIVE)
4746 			printf("nfsrv_proxyds: Readds vp exclusively locked\n");
4747 		error = nfsrv_dsgetsockmnt(vp, LK_SHARED, buf, &buflen,
4748 		    &mirrorcnt, p, dvp, fh, NULL, NULL, NULL, NULL, NULL,
4749 		    NULL, NULL);
4750 		if (error == 0) {
4751 			for (i = 0; i < mirrorcnt; i++)
4752 				nmp[i] = VFSTONFS(dvp[i]->v_mount);
4753 		} else
4754 			printf("pNFS: proxy getextattr sockaddr=%d\n", error);
4755 	} else
4756 		printf("pNFS: nfsrv_dsgetsockmnt=%d\n", error);
4757 	if (error == 0) {
4758 		failpos = -1;
4759 		if (origmircnt == -1)
4760 			origmircnt = mirrorcnt;
4761 		/*
4762 		 * If failpos is set to a mirror#, then that mirror has
4763 		 * failed and will be disabled. For Read, Getattr and Seek, the
4764 		 * function only tries one mirror, so if that mirror has
4765 		 * failed, it will need to be retried. As such, increment
4766 		 * tryitagain for these cases.
4767 		 * For Write, Setattr and Setacl, the function tries all
4768 		 * mirrors and will not return an error for the case where
4769 		 * one mirror has failed. For these cases, the functioning
4770 		 * mirror(s) will have been modified, so a retry isn't
4771 		 * necessary. These functions will set failpos for the
4772 		 * failed mirror#.
4773 		 */
4774 		if (ioproc == NFSPROC_READDS) {
4775 			error = nfsrv_readdsrpc(fh, off, cnt, cred, p, nmp[0],
4776 			    mpp, mpp2);
4777 			if (nfsds_failerr(error) && mirrorcnt > 1) {
4778 				/*
4779 				 * Setting failpos will cause the mirror
4780 				 * to be disabled and then a retry of this
4781 				 * read is required.
4782 				 */
4783 				failpos = 0;
4784 				error = 0;
4785 				trycnt++;
4786 			}
4787 		} else if (ioproc == NFSPROC_WRITEDS)
4788 			error = nfsrv_writedsrpc(fh, off, cnt, cred, p, vp,
4789 			    &nmp[0], mirrorcnt, mpp, cp, &failpos);
4790 		else if (ioproc == NFSPROC_SETATTR)
4791 			error = nfsrv_setattrdsrpc(fh, cred, p, vp, &nmp[0],
4792 			    mirrorcnt, nap, &failpos);
4793 		else if (ioproc == NFSPROC_SETACL)
4794 			error = nfsrv_setacldsrpc(fh, cred, p, vp, &nmp[0],
4795 			    mirrorcnt, aclp, &failpos);
4796 		else if (ioproc == NFSPROC_SEEKDS) {
4797 			error = nfsrv_seekdsrpc(fh, offp, content, eofp, cred,
4798 			    p, nmp[0]);
4799 			if (nfsds_failerr(error) && mirrorcnt > 1) {
4800 				/*
4801 				 * Setting failpos will cause the mirror
4802 				 * to be disabled and then a retry of this
4803 				 * read is required.
4804 				 */
4805 				failpos = 0;
4806 				error = 0;
4807 				trycnt++;
4808 			}
4809 		} else if (ioproc == NFSPROC_ALLOCATE)
4810 			error = nfsrv_allocatedsrpc(fh, off, *offp, cred, p, vp,
4811 			    &nmp[0], mirrorcnt, &failpos);
4812 		else {
4813 			error = nfsrv_getattrdsrpc(&fh[mirrorcnt - 1], cred, p,
4814 			    vp, nmp[mirrorcnt - 1], nap);
4815 			if (nfsds_failerr(error) && mirrorcnt > 1) {
4816 				/*
4817 				 * Setting failpos will cause the mirror
4818 				 * to be disabled and then a retry of this
4819 				 * getattr is required.
4820 				 */
4821 				failpos = mirrorcnt - 1;
4822 				error = 0;
4823 				trycnt++;
4824 			}
4825 		}
4826 		ds = NULL;
4827 		if (failpos >= 0) {
4828 			failnmp = nmp[failpos];
4829 			NFSLOCKMNT(failnmp);
4830 			if ((failnmp->nm_privflag & (NFSMNTP_FORCEDISM |
4831 			     NFSMNTP_CANCELRPCS)) == 0) {
4832 				failnmp->nm_privflag |= NFSMNTP_CANCELRPCS;
4833 				NFSUNLOCKMNT(failnmp);
4834 				ds = nfsrv_deldsnmp(PNFSDOP_DELDSSERVER,
4835 				    failnmp, p);
4836 				NFSD_DEBUG(4, "dsldsnmp fail=%d ds=%p\n",
4837 				    failpos, ds);
4838 				if (ds != NULL)
4839 					nfsrv_killrpcs(failnmp);
4840 				NFSLOCKMNT(failnmp);
4841 				failnmp->nm_privflag &= ~NFSMNTP_CANCELRPCS;
4842 				wakeup(failnmp);
4843 			}
4844 			NFSUNLOCKMNT(failnmp);
4845 		}
4846 		for (i = 0; i < mirrorcnt; i++)
4847 			NFSVOPUNLOCK(dvp[i]);
4848 		NFSD_DEBUG(4, "nfsrv_proxyds: aft RPC=%d trya=%d\n", error,
4849 		    trycnt);
4850 		/* Try the Read/Getattr again if a mirror was deleted. */
4851 		if (ds != NULL && trycnt > 0 && trycnt < origmircnt)
4852 			goto tryagain;
4853 	} else {
4854 		/* Return ENOENT for any Extended Attribute error. */
4855 		error = ENOENT;
4856 	}
4857 	free(buf, M_TEMP);
4858 	NFSD_DEBUG(4, "nfsrv_proxyds: error=%d\n", error);
4859 	return (error);
4860 }
4861 
4862 /*
4863  * Get the DS mount point, fh and directory from the "pnfsd.dsfile" extended
4864  * attribute.
4865  * newnmpp - If it points to a non-NULL nmp, that is the destination and needs
4866  *           to be checked.  If it points to a NULL nmp, then it returns
4867  *           a suitable destination.
4868  * curnmp - If non-NULL, it is the source mount for the copy.
4869  */
4870 int
4871 nfsrv_dsgetsockmnt(struct vnode *vp, int lktype, char *buf, int *buflenp,
4872     int *mirrorcntp, NFSPROC_T *p, struct vnode **dvpp, fhandle_t *fhp,
4873     char *devid, char *fnamep, struct vnode **nvpp, struct nfsmount **newnmpp,
4874     struct nfsmount *curnmp, int *ippos, int *dsdirp)
4875 {
4876 	struct vnode *dvp, *nvp = NULL, **tdvpp;
4877 	struct mount *mp;
4878 	struct nfsmount *nmp, *newnmp;
4879 	struct sockaddr *sad;
4880 	struct sockaddr_in *sin;
4881 	struct nfsdevice *ds, *tds, *fndds;
4882 	struct pnfsdsfile *pf;
4883 	uint32_t dsdir;
4884 	int error, fhiszero, fnd, gotone, i, mirrorcnt;
4885 
4886 	ASSERT_VOP_LOCKED(vp, "nfsrv_dsgetsockmnt vp");
4887 	*mirrorcntp = 1;
4888 	tdvpp = dvpp;
4889 	if (nvpp != NULL)
4890 		*nvpp = NULL;
4891 	if (dvpp != NULL)
4892 		*dvpp = NULL;
4893 	if (ippos != NULL)
4894 		*ippos = -1;
4895 	if (newnmpp != NULL)
4896 		newnmp = *newnmpp;
4897 	else
4898 		newnmp = NULL;
4899 	mp = vp->v_mount;
4900 	error = vn_extattr_get(vp, IO_NODELOCKED, EXTATTR_NAMESPACE_SYSTEM,
4901 	    "pnfsd.dsfile", buflenp, buf, p);
4902 	mirrorcnt = *buflenp / sizeof(*pf);
4903 	if (error == 0 && (mirrorcnt < 1 || mirrorcnt > NFSDEV_MAXMIRRORS ||
4904 	    *buflenp != sizeof(*pf) * mirrorcnt))
4905 		error = ENOATTR;
4906 
4907 	pf = (struct pnfsdsfile *)buf;
4908 	/* If curnmp != NULL, check for a match in the mirror list. */
4909 	if (curnmp != NULL && error == 0) {
4910 		fnd = 0;
4911 		for (i = 0; i < mirrorcnt; i++, pf++) {
4912 			sad = (struct sockaddr *)&pf->dsf_sin;
4913 			if (nfsaddr2_match(sad, curnmp->nm_nam)) {
4914 				if (ippos != NULL)
4915 					*ippos = i;
4916 				fnd = 1;
4917 				break;
4918 			}
4919 		}
4920 		if (fnd == 0)
4921 			error = ENXIO;
4922 	}
4923 
4924 	gotone = 0;
4925 	pf = (struct pnfsdsfile *)buf;
4926 	NFSD_DEBUG(4, "nfsrv_dsgetsockmnt: mirrorcnt=%d err=%d\n", mirrorcnt,
4927 	    error);
4928 	for (i = 0; i < mirrorcnt && error == 0; i++, pf++) {
4929 		fhiszero = 0;
4930 		sad = (struct sockaddr *)&pf->dsf_sin;
4931 		sin = &pf->dsf_sin;
4932 		dsdir = pf->dsf_dir;
4933 		if (dsdir >= nfsrv_dsdirsize) {
4934 			printf("nfsrv_dsgetsockmnt: dsdir=%d\n", dsdir);
4935 			error = ENOATTR;
4936 		} else if (nvpp != NULL && newnmp != NULL &&
4937 		    nfsaddr2_match(sad, newnmp->nm_nam))
4938 			error = EEXIST;
4939 		if (error == 0) {
4940 			if (ippos != NULL && curnmp == NULL &&
4941 			    sad->sa_family == AF_INET &&
4942 			    sin->sin_addr.s_addr == 0)
4943 				*ippos = i;
4944 			if (NFSBCMP(&zerofh, &pf->dsf_fh, sizeof(zerofh)) == 0)
4945 				fhiszero = 1;
4946 			/* Use the socket address to find the mount point. */
4947 			fndds = NULL;
4948 			NFSDDSLOCK();
4949 			/* Find a match for the IP address. */
4950 			TAILQ_FOREACH(ds, &nfsrv_devidhead, nfsdev_list) {
4951 				if (ds->nfsdev_nmp != NULL) {
4952 					dvp = ds->nfsdev_dvp;
4953 					nmp = VFSTONFS(dvp->v_mount);
4954 					if (nmp != ds->nfsdev_nmp)
4955 						printf("different2 nmp %p %p\n",
4956 						    nmp, ds->nfsdev_nmp);
4957 					if (nfsaddr2_match(sad, nmp->nm_nam)) {
4958 						fndds = ds;
4959 						break;
4960 					}
4961 				}
4962 			}
4963 			if (fndds != NULL && newnmpp != NULL &&
4964 			    newnmp == NULL) {
4965 				/* Search for a place to make a mirror copy. */
4966 				TAILQ_FOREACH(tds, &nfsrv_devidhead,
4967 				    nfsdev_list) {
4968 					if (tds->nfsdev_nmp != NULL &&
4969 					    fndds != tds &&
4970 					    ((tds->nfsdev_mdsisset == 0 &&
4971 					      fndds->nfsdev_mdsisset == 0) ||
4972 					     (tds->nfsdev_mdsisset != 0 &&
4973 					      fndds->nfsdev_mdsisset != 0 &&
4974 					      fsidcmp(&tds->nfsdev_mdsfsid,
4975 					      &mp->mnt_stat.f_fsid) == 0))) {
4976 						*newnmpp = tds->nfsdev_nmp;
4977 						break;
4978 					}
4979 				}
4980 				if (tds != NULL) {
4981 					/*
4982 					 * Move this entry to the end of the
4983 					 * list, so it won't be selected as
4984 					 * easily the next time.
4985 					 */
4986 					TAILQ_REMOVE(&nfsrv_devidhead, tds,
4987 					    nfsdev_list);
4988 					TAILQ_INSERT_TAIL(&nfsrv_devidhead, tds,
4989 					    nfsdev_list);
4990 				}
4991 			}
4992 			NFSDDSUNLOCK();
4993 			if (fndds != NULL) {
4994 				dvp = fndds->nfsdev_dsdir[dsdir];
4995 				if (lktype != 0 || fhiszero != 0 ||
4996 				    (nvpp != NULL && *nvpp == NULL)) {
4997 					if (fhiszero != 0)
4998 						error = vn_lock(dvp,
4999 						    LK_EXCLUSIVE);
5000 					else if (lktype != 0)
5001 						error = vn_lock(dvp, lktype);
5002 					else
5003 						error = vn_lock(dvp, LK_SHARED);
5004 					/*
5005 					 * If the file handle is all 0's, try to
5006 					 * do a Lookup against the DS to acquire
5007 					 * it.
5008 					 * If dvpp == NULL or the Lookup fails,
5009 					 * unlock dvp after the call.
5010 					 */
5011 					if (error == 0 && (fhiszero != 0 ||
5012 					    (nvpp != NULL && *nvpp == NULL))) {
5013 						error = nfsrv_pnfslookupds(vp,
5014 						    dvp, pf, &nvp, p);
5015 						if (error == 0) {
5016 							if (fhiszero != 0)
5017 								nfsrv_pnfssetfh(
5018 								    vp, pf,
5019 								    devid,
5020 								    fnamep,
5021 								    nvp, p);
5022 							if (nvpp != NULL &&
5023 							    *nvpp == NULL) {
5024 								*nvpp = nvp;
5025 								*dsdirp = dsdir;
5026 							} else
5027 								vput(nvp);
5028 						}
5029 						if (error != 0 || lktype == 0)
5030 							NFSVOPUNLOCK(dvp);
5031 					}
5032 				}
5033 				if (error == 0) {
5034 					gotone++;
5035 					NFSD_DEBUG(4, "gotone=%d\n", gotone);
5036 					if (devid != NULL) {
5037 						NFSBCOPY(fndds->nfsdev_deviceid,
5038 						    devid, NFSX_V4DEVICEID);
5039 						devid += NFSX_V4DEVICEID;
5040 					}
5041 					if (dvpp != NULL)
5042 						*tdvpp++ = dvp;
5043 					if (fhp != NULL)
5044 						NFSBCOPY(&pf->dsf_fh, fhp++,
5045 						    NFSX_MYFH);
5046 					if (fnamep != NULL && gotone == 1)
5047 						strlcpy(fnamep,
5048 						    pf->dsf_filename,
5049 						    sizeof(pf->dsf_filename));
5050 				} else
5051 					NFSD_DEBUG(4, "nfsrv_dsgetsockmnt "
5052 					    "err=%d\n", error);
5053 			}
5054 		}
5055 	}
5056 	if (error == 0 && gotone == 0)
5057 		error = ENOENT;
5058 
5059 	NFSD_DEBUG(4, "eo nfsrv_dsgetsockmnt: gotone=%d err=%d\n", gotone,
5060 	    error);
5061 	if (error == 0)
5062 		*mirrorcntp = gotone;
5063 	else {
5064 		if (gotone > 0 && dvpp != NULL) {
5065 			/*
5066 			 * If the error didn't occur on the first one and
5067 			 * dvpp != NULL, the one(s) prior to the failure will
5068 			 * have locked dvp's that need to be unlocked.
5069 			 */
5070 			for (i = 0; i < gotone; i++) {
5071 				NFSVOPUNLOCK(*dvpp);
5072 				*dvpp++ = NULL;
5073 			}
5074 		}
5075 		/*
5076 		 * If it found the vnode to be copied from before a failure,
5077 		 * it needs to be vput()'d.
5078 		 */
5079 		if (nvpp != NULL && *nvpp != NULL) {
5080 			vput(*nvpp);
5081 			*nvpp = NULL;
5082 		}
5083 	}
5084 	return (error);
5085 }
5086 
5087 /*
5088  * Set the extended attribute for the Change attribute.
5089  */
5090 static int
5091 nfsrv_setextattr(struct vnode *vp, struct nfsvattr *nap, NFSPROC_T *p)
5092 {
5093 	struct pnfsdsattr dsattr;
5094 	int error;
5095 
5096 	ASSERT_VOP_ELOCKED(vp, "nfsrv_setextattr vp");
5097 	dsattr.dsa_filerev = nap->na_filerev;
5098 	dsattr.dsa_size = nap->na_size;
5099 	dsattr.dsa_atime = nap->na_atime;
5100 	dsattr.dsa_mtime = nap->na_mtime;
5101 	dsattr.dsa_bytes = nap->na_bytes;
5102 	error = vn_extattr_set(vp, IO_NODELOCKED, EXTATTR_NAMESPACE_SYSTEM,
5103 	    "pnfsd.dsattr", sizeof(dsattr), (char *)&dsattr, p);
5104 	if (error != 0)
5105 		printf("pNFS: setextattr=%d\n", error);
5106 	return (error);
5107 }
5108 
5109 static int
5110 nfsrv_readdsrpc(fhandle_t *fhp, off_t off, int len, struct ucred *cred,
5111     NFSPROC_T *p, struct nfsmount *nmp, struct mbuf **mpp, struct mbuf **mpendp)
5112 {
5113 	uint32_t *tl;
5114 	struct nfsrv_descript *nd;
5115 	nfsv4stateid_t st;
5116 	struct mbuf *m, *m2;
5117 	int error = 0, retlen, tlen, trimlen;
5118 
5119 	NFSD_DEBUG(4, "in nfsrv_readdsrpc\n");
5120 	nd = malloc(sizeof(*nd), M_TEMP, M_WAITOK | M_ZERO);
5121 	*mpp = NULL;
5122 	/*
5123 	 * Use a stateid where other is an alternating 01010 pattern and
5124 	 * seqid is 0xffffffff.  This value is not defined as special by
5125 	 * the RFC and is used by the FreeBSD NFS server to indicate an
5126 	 * MDS->DS proxy operation.
5127 	 */
5128 	st.other[0] = 0x55555555;
5129 	st.other[1] = 0x55555555;
5130 	st.other[2] = 0x55555555;
5131 	st.seqid = 0xffffffff;
5132 	nfscl_reqstart(nd, NFSPROC_READDS, nmp, (u_int8_t *)fhp, sizeof(*fhp),
5133 	    NULL, NULL, 0, 0);
5134 	nfsm_stateidtom(nd, &st, NFSSTATEID_PUTSTATEID);
5135 	NFSM_BUILD(tl, uint32_t *, NFSX_UNSIGNED * 3);
5136 	txdr_hyper(off, tl);
5137 	*(tl + 2) = txdr_unsigned(len);
5138 	error = newnfs_request(nd, nmp, NULL, &nmp->nm_sockreq, NULL, p, cred,
5139 	    NFS_PROG, NFS_VER4, NULL, 1, NULL, NULL);
5140 	if (error != 0) {
5141 		free(nd, M_TEMP);
5142 		return (error);
5143 	}
5144 	if (nd->nd_repstat == 0) {
5145 		NFSM_DISSECT(tl, u_int32_t *, NFSX_UNSIGNED);
5146 		NFSM_STRSIZ(retlen, len);
5147 		if (retlen > 0) {
5148 			/* Trim off the pre-data XDR from the mbuf chain. */
5149 			m = nd->nd_mrep;
5150 			while (m != NULL && m != nd->nd_md) {
5151 				if (m->m_next == nd->nd_md) {
5152 					m->m_next = NULL;
5153 					m_freem(nd->nd_mrep);
5154 					nd->nd_mrep = m = nd->nd_md;
5155 				} else
5156 					m = m->m_next;
5157 			}
5158 			if (m == NULL) {
5159 				printf("nfsrv_readdsrpc: busted mbuf list\n");
5160 				error = ENOENT;
5161 				goto nfsmout;
5162 			}
5163 
5164 			/*
5165 			 * Now, adjust first mbuf so that any XDR before the
5166 			 * read data is skipped over.
5167 			 */
5168 			trimlen = nd->nd_dpos - mtod(m, char *);
5169 			if (trimlen > 0) {
5170 				m->m_len -= trimlen;
5171 				NFSM_DATAP(m, trimlen);
5172 			}
5173 
5174 			/*
5175 			 * Truncate the mbuf chain at retlen bytes of data,
5176 			 * plus XDR padding that brings the length up to a
5177 			 * multiple of 4.
5178 			 */
5179 			tlen = NFSM_RNDUP(retlen);
5180 			do {
5181 				if (m->m_len >= tlen) {
5182 					m->m_len = tlen;
5183 					tlen = 0;
5184 					m2 = m->m_next;
5185 					m->m_next = NULL;
5186 					m_freem(m2);
5187 					break;
5188 				}
5189 				tlen -= m->m_len;
5190 				m = m->m_next;
5191 			} while (m != NULL);
5192 			if (tlen > 0) {
5193 				printf("nfsrv_readdsrpc: busted mbuf list\n");
5194 				error = ENOENT;
5195 				goto nfsmout;
5196 			}
5197 			*mpp = nd->nd_mrep;
5198 			*mpendp = m;
5199 			nd->nd_mrep = NULL;
5200 		}
5201 	} else
5202 		error = nd->nd_repstat;
5203 nfsmout:
5204 	/* If nd->nd_mrep is already NULL, this is a no-op. */
5205 	m_freem(nd->nd_mrep);
5206 	free(nd, M_TEMP);
5207 	NFSD_DEBUG(4, "nfsrv_readdsrpc error=%d\n", error);
5208 	return (error);
5209 }
5210 
5211 /*
5212  * Do a write RPC on a DS data file, using this structure for the arguments,
5213  * so that this function can be executed by a separate kernel process.
5214  */
5215 struct nfsrvwritedsdorpc {
5216 	int			done;
5217 	int			inprog;
5218 	struct task		tsk;
5219 	fhandle_t		fh;
5220 	off_t			off;
5221 	int			len;
5222 	struct nfsmount		*nmp;
5223 	struct ucred		*cred;
5224 	NFSPROC_T		*p;
5225 	struct mbuf		*m;
5226 	int			err;
5227 };
5228 
5229 static int
5230 nfsrv_writedsdorpc(struct nfsmount *nmp, fhandle_t *fhp, off_t off, int len,
5231     struct nfsvattr *nap, struct mbuf *m, struct ucred *cred, NFSPROC_T *p)
5232 {
5233 	uint32_t *tl;
5234 	struct nfsrv_descript *nd;
5235 	nfsattrbit_t attrbits;
5236 	nfsv4stateid_t st;
5237 	int commit, error, retlen;
5238 
5239 	nd = malloc(sizeof(*nd), M_TEMP, M_WAITOK | M_ZERO);
5240 	nfscl_reqstart(nd, NFSPROC_WRITE, nmp, (u_int8_t *)fhp,
5241 	    sizeof(fhandle_t), NULL, NULL, 0, 0);
5242 
5243 	/*
5244 	 * Use a stateid where other is an alternating 01010 pattern and
5245 	 * seqid is 0xffffffff.  This value is not defined as special by
5246 	 * the RFC and is used by the FreeBSD NFS server to indicate an
5247 	 * MDS->DS proxy operation.
5248 	 */
5249 	st.other[0] = 0x55555555;
5250 	st.other[1] = 0x55555555;
5251 	st.other[2] = 0x55555555;
5252 	st.seqid = 0xffffffff;
5253 	nfsm_stateidtom(nd, &st, NFSSTATEID_PUTSTATEID);
5254 	NFSM_BUILD(tl, u_int32_t *, NFSX_HYPER + 2 * NFSX_UNSIGNED);
5255 	txdr_hyper(off, tl);
5256 	tl += 2;
5257 	/*
5258 	 * Do all writes FileSync, since the server doesn't hold onto dirty
5259 	 * buffers.  Since clients should be accessing the DS servers directly
5260 	 * using the pNFS layouts, this just needs to work correctly as a
5261 	 * fallback.
5262 	 */
5263 	*tl++ = txdr_unsigned(NFSWRITE_FILESYNC);
5264 	*tl = txdr_unsigned(len);
5265 	NFSD_DEBUG(4, "nfsrv_writedsdorpc: len=%d\n", len);
5266 
5267 	/* Put data in mbuf chain. */
5268 	nd->nd_mb->m_next = m;
5269 
5270 	/* Set nd_mb and nd_bpos to end of data. */
5271 	while (m->m_next != NULL)
5272 		m = m->m_next;
5273 	nd->nd_mb = m;
5274 	nfsm_set(nd, m->m_len);
5275 	NFSD_DEBUG(4, "nfsrv_writedsdorpc: lastmb len=%d\n", m->m_len);
5276 
5277 	/* Do a Getattr for the attributes that change upon writing. */
5278 	NFSZERO_ATTRBIT(&attrbits);
5279 	NFSSETBIT_ATTRBIT(&attrbits, NFSATTRBIT_SIZE);
5280 	NFSSETBIT_ATTRBIT(&attrbits, NFSATTRBIT_CHANGE);
5281 	NFSSETBIT_ATTRBIT(&attrbits, NFSATTRBIT_TIMEACCESS);
5282 	NFSSETBIT_ATTRBIT(&attrbits, NFSATTRBIT_TIMEMODIFY);
5283 	NFSSETBIT_ATTRBIT(&attrbits, NFSATTRBIT_SPACEUSED);
5284 	NFSM_BUILD(tl, u_int32_t *, NFSX_UNSIGNED);
5285 	*tl = txdr_unsigned(NFSV4OP_GETATTR);
5286 	(void) nfsrv_putattrbit(nd, &attrbits);
5287 	error = newnfs_request(nd, nmp, NULL, &nmp->nm_sockreq, NULL, p,
5288 	    cred, NFS_PROG, NFS_VER4, NULL, 1, NULL, NULL);
5289 	if (error != 0) {
5290 		free(nd, M_TEMP);
5291 		return (error);
5292 	}
5293 	NFSD_DEBUG(4, "nfsrv_writedsdorpc: aft writerpc=%d\n", nd->nd_repstat);
5294 	/* Get rid of weak cache consistency data for now. */
5295 	if ((nd->nd_flag & (ND_NOMOREDATA | ND_NFSV4 | ND_V4WCCATTR)) ==
5296 	    (ND_NFSV4 | ND_V4WCCATTR)) {
5297 		error = nfsv4_loadattr(nd, NULL, nap, NULL, NULL, 0, NULL, NULL,
5298 		    NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
5299 		NFSD_DEBUG(4, "nfsrv_writedsdorpc: wcc attr=%d\n", error);
5300 		if (error != 0)
5301 			goto nfsmout;
5302 		/*
5303 		 * Get rid of Op# and status for next op.
5304 		 */
5305 		NFSM_DISSECT(tl, uint32_t *, 2 * NFSX_UNSIGNED);
5306 		if (*++tl != 0)
5307 			nd->nd_flag |= ND_NOMOREDATA;
5308 	}
5309 	if (nd->nd_repstat == 0) {
5310 		NFSM_DISSECT(tl, uint32_t *, 2 * NFSX_UNSIGNED + NFSX_VERF);
5311 		retlen = fxdr_unsigned(int, *tl++);
5312 		commit = fxdr_unsigned(int, *tl);
5313 		if (commit != NFSWRITE_FILESYNC)
5314 			error = NFSERR_IO;
5315 		NFSD_DEBUG(4, "nfsrv_writedsdorpc:retlen=%d commit=%d err=%d\n",
5316 		    retlen, commit, error);
5317 	} else
5318 		error = nd->nd_repstat;
5319 	/* We have no use for the Write Verifier since we use FileSync. */
5320 
5321 	/*
5322 	 * Get the Change, Size, Access Time and Modify Time attributes and set
5323 	 * on the Metadata file, so its attributes will be what the file's
5324 	 * would be if it had been written.
5325 	 */
5326 	if (error == 0) {
5327 		NFSM_DISSECT(tl, uint32_t *, 2 * NFSX_UNSIGNED);
5328 		error = nfsv4_loadattr(nd, NULL, nap, NULL, NULL, 0, NULL, NULL,
5329 		    NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
5330 	}
5331 	NFSD_DEBUG(4, "nfsrv_writedsdorpc: aft loadattr=%d\n", error);
5332 nfsmout:
5333 	m_freem(nd->nd_mrep);
5334 	free(nd, M_TEMP);
5335 	NFSD_DEBUG(4, "nfsrv_writedsdorpc error=%d\n", error);
5336 	return (error);
5337 }
5338 
5339 /*
5340  * Start up the thread that will execute nfsrv_writedsdorpc().
5341  */
5342 static void
5343 start_writedsdorpc(void *arg, int pending)
5344 {
5345 	struct nfsrvwritedsdorpc *drpc;
5346 
5347 	drpc = (struct nfsrvwritedsdorpc *)arg;
5348 	drpc->err = nfsrv_writedsdorpc(drpc->nmp, &drpc->fh, drpc->off,
5349 	    drpc->len, NULL, drpc->m, drpc->cred, drpc->p);
5350 	drpc->done = 1;
5351 	NFSD_DEBUG(4, "start_writedsdorpc: err=%d\n", drpc->err);
5352 }
5353 
5354 static int
5355 nfsrv_writedsrpc(fhandle_t *fhp, off_t off, int len, struct ucred *cred,
5356     NFSPROC_T *p, struct vnode *vp, struct nfsmount **nmpp, int mirrorcnt,
5357     struct mbuf **mpp, char *cp, int *failposp)
5358 {
5359 	struct nfsrvwritedsdorpc *drpc, *tdrpc = NULL;
5360 	struct nfsvattr na;
5361 	struct mbuf *m;
5362 	int error, i, offs, ret, timo;
5363 
5364 	NFSD_DEBUG(4, "in nfsrv_writedsrpc\n");
5365 	KASSERT(*mpp != NULL, ("nfsrv_writedsrpc: NULL mbuf chain"));
5366 	drpc = NULL;
5367 	if (mirrorcnt > 1)
5368 		tdrpc = drpc = malloc(sizeof(*drpc) * (mirrorcnt - 1), M_TEMP,
5369 		    M_WAITOK);
5370 
5371 	/* Calculate offset in mbuf chain that data starts. */
5372 	offs = cp - mtod(*mpp, char *);
5373 	NFSD_DEBUG(4, "nfsrv_writedsrpc: mcopy offs=%d len=%d\n", offs, len);
5374 
5375 	/*
5376 	 * Do the write RPC for every DS, using a separate kernel process
5377 	 * for every DS except the last one.
5378 	 */
5379 	error = 0;
5380 	for (i = 0; i < mirrorcnt - 1; i++, tdrpc++) {
5381 		tdrpc->done = 0;
5382 		NFSBCOPY(fhp, &tdrpc->fh, sizeof(*fhp));
5383 		tdrpc->off = off;
5384 		tdrpc->len = len;
5385 		tdrpc->nmp = *nmpp;
5386 		tdrpc->cred = cred;
5387 		tdrpc->p = p;
5388 		tdrpc->inprog = 0;
5389 		tdrpc->err = 0;
5390 		tdrpc->m = m_copym(*mpp, offs, NFSM_RNDUP(len), M_WAITOK);
5391 		ret = EIO;
5392 		if (nfs_pnfsiothreads != 0) {
5393 			ret = nfs_pnfsio(start_writedsdorpc, tdrpc);
5394 			NFSD_DEBUG(4, "nfsrv_writedsrpc: nfs_pnfsio=%d\n",
5395 			    ret);
5396 		}
5397 		if (ret != 0) {
5398 			ret = nfsrv_writedsdorpc(*nmpp, fhp, off, len, NULL,
5399 			    tdrpc->m, cred, p);
5400 			if (nfsds_failerr(ret) && *failposp == -1)
5401 				*failposp = i;
5402 			else if (error == 0 && ret != 0)
5403 				error = ret;
5404 		}
5405 		nmpp++;
5406 		fhp++;
5407 	}
5408 	m = m_copym(*mpp, offs, NFSM_RNDUP(len), M_WAITOK);
5409 	ret = nfsrv_writedsdorpc(*nmpp, fhp, off, len, &na, m, cred, p);
5410 	if (nfsds_failerr(ret) && *failposp == -1 && mirrorcnt > 1)
5411 		*failposp = mirrorcnt - 1;
5412 	else if (error == 0 && ret != 0)
5413 		error = ret;
5414 	if (error == 0)
5415 		error = nfsrv_setextattr(vp, &na, p);
5416 	NFSD_DEBUG(4, "nfsrv_writedsrpc: aft setextat=%d\n", error);
5417 	tdrpc = drpc;
5418 	timo = hz / 50;		/* Wait for 20msec. */
5419 	if (timo < 1)
5420 		timo = 1;
5421 	for (i = 0; i < mirrorcnt - 1; i++, tdrpc++) {
5422 		/* Wait for RPCs on separate threads to complete. */
5423 		while (tdrpc->inprog != 0 && tdrpc->done == 0)
5424 			tsleep(&tdrpc->tsk, PVFS, "srvwrds", timo);
5425 		if (nfsds_failerr(tdrpc->err) && *failposp == -1)
5426 			*failposp = i;
5427 		else if (error == 0 && tdrpc->err != 0)
5428 			error = tdrpc->err;
5429 	}
5430 	free(drpc, M_TEMP);
5431 	return (error);
5432 }
5433 
5434 /*
5435  * Do a allocate RPC on a DS data file, using this structure for the arguments,
5436  * so that this function can be executed by a separate kernel process.
5437  */
5438 struct nfsrvallocatedsdorpc {
5439 	int			done;
5440 	int			inprog;
5441 	struct task		tsk;
5442 	fhandle_t		fh;
5443 	off_t			off;
5444 	off_t			len;
5445 	struct nfsmount		*nmp;
5446 	struct ucred		*cred;
5447 	NFSPROC_T		*p;
5448 	int			err;
5449 };
5450 
5451 static int
5452 nfsrv_allocatedsdorpc(struct nfsmount *nmp, fhandle_t *fhp, off_t off,
5453     off_t len, struct nfsvattr *nap, struct ucred *cred, NFSPROC_T *p)
5454 {
5455 	uint32_t *tl;
5456 	struct nfsrv_descript *nd;
5457 	nfsattrbit_t attrbits;
5458 	nfsv4stateid_t st;
5459 	int error;
5460 
5461 	nd = malloc(sizeof(*nd), M_TEMP, M_WAITOK | M_ZERO);
5462 	nfscl_reqstart(nd, NFSPROC_ALLOCATE, nmp, (u_int8_t *)fhp,
5463 	    sizeof(fhandle_t), NULL, NULL, 0, 0);
5464 
5465 	/*
5466 	 * Use a stateid where other is an alternating 01010 pattern and
5467 	 * seqid is 0xffffffff.  This value is not defined as special by
5468 	 * the RFC and is used by the FreeBSD NFS server to indicate an
5469 	 * MDS->DS proxy operation.
5470 	 */
5471 	st.other[0] = 0x55555555;
5472 	st.other[1] = 0x55555555;
5473 	st.other[2] = 0x55555555;
5474 	st.seqid = 0xffffffff;
5475 	nfsm_stateidtom(nd, &st, NFSSTATEID_PUTSTATEID);
5476 	NFSM_BUILD(tl, uint32_t *, 2 * NFSX_HYPER + NFSX_UNSIGNED);
5477 	txdr_hyper(off, tl); tl += 2;
5478 	txdr_hyper(len, tl); tl += 2;
5479 	NFSD_DEBUG(4, "nfsrv_allocatedsdorpc: len=%jd\n", (intmax_t)len);
5480 
5481 	*tl = txdr_unsigned(NFSV4OP_GETATTR);
5482 	NFSGETATTR_ATTRBIT(&attrbits);
5483 	nfsrv_putattrbit(nd, &attrbits);
5484 	error = newnfs_request(nd, nmp, NULL, &nmp->nm_sockreq, NULL, p,
5485 	    cred, NFS_PROG, NFS_VER4, NULL, 1, NULL, NULL);
5486 	if (error != 0) {
5487 		free(nd, M_TEMP);
5488 		return (error);
5489 	}
5490 	NFSD_DEBUG(4, "nfsrv_allocatedsdorpc: aft allocaterpc=%d\n",
5491 	    nd->nd_repstat);
5492 	if (nd->nd_repstat == 0) {
5493 		NFSM_DISSECT(tl, uint32_t *, 2 * NFSX_UNSIGNED);
5494 		error = nfsv4_loadattr(nd, NULL, nap, NULL, NULL, 0, NULL, NULL,
5495 		    NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
5496 	} else
5497 		error = nd->nd_repstat;
5498 	NFSD_DEBUG(4, "nfsrv_allocatedsdorpc: aft loadattr=%d\n", error);
5499 nfsmout:
5500 	m_freem(nd->nd_mrep);
5501 	free(nd, M_TEMP);
5502 	NFSD_DEBUG(4, "nfsrv_allocatedsdorpc error=%d\n", error);
5503 	return (error);
5504 }
5505 
5506 /*
5507  * Start up the thread that will execute nfsrv_allocatedsdorpc().
5508  */
5509 static void
5510 start_allocatedsdorpc(void *arg, int pending)
5511 {
5512 	struct nfsrvallocatedsdorpc *drpc;
5513 
5514 	drpc = (struct nfsrvallocatedsdorpc *)arg;
5515 	drpc->err = nfsrv_allocatedsdorpc(drpc->nmp, &drpc->fh, drpc->off,
5516 	    drpc->len, NULL, drpc->cred, drpc->p);
5517 	drpc->done = 1;
5518 	NFSD_DEBUG(4, "start_allocatedsdorpc: err=%d\n", drpc->err);
5519 }
5520 
5521 static int
5522 nfsrv_allocatedsrpc(fhandle_t *fhp, off_t off, off_t len, struct ucred *cred,
5523     NFSPROC_T *p, struct vnode *vp, struct nfsmount **nmpp, int mirrorcnt,
5524     int *failposp)
5525 {
5526 	struct nfsrvallocatedsdorpc *drpc, *tdrpc = NULL;
5527 	struct nfsvattr na;
5528 	int error, i, ret, timo;
5529 
5530 	NFSD_DEBUG(4, "in nfsrv_allocatedsrpc\n");
5531 	drpc = NULL;
5532 	if (mirrorcnt > 1)
5533 		tdrpc = drpc = malloc(sizeof(*drpc) * (mirrorcnt - 1), M_TEMP,
5534 		    M_WAITOK);
5535 
5536 	/*
5537 	 * Do the allocate RPC for every DS, using a separate kernel process
5538 	 * for every DS except the last one.
5539 	 */
5540 	error = 0;
5541 	for (i = 0; i < mirrorcnt - 1; i++, tdrpc++) {
5542 		tdrpc->done = 0;
5543 		NFSBCOPY(fhp, &tdrpc->fh, sizeof(*fhp));
5544 		tdrpc->off = off;
5545 		tdrpc->len = len;
5546 		tdrpc->nmp = *nmpp;
5547 		tdrpc->cred = cred;
5548 		tdrpc->p = p;
5549 		tdrpc->inprog = 0;
5550 		tdrpc->err = 0;
5551 		ret = EIO;
5552 		if (nfs_pnfsiothreads != 0) {
5553 			ret = nfs_pnfsio(start_allocatedsdorpc, tdrpc);
5554 			NFSD_DEBUG(4, "nfsrv_allocatedsrpc: nfs_pnfsio=%d\n",
5555 			    ret);
5556 		}
5557 		if (ret != 0) {
5558 			ret = nfsrv_allocatedsdorpc(*nmpp, fhp, off, len, NULL,
5559 			    cred, p);
5560 			if (nfsds_failerr(ret) && *failposp == -1)
5561 				*failposp = i;
5562 			else if (error == 0 && ret != 0)
5563 				error = ret;
5564 		}
5565 		nmpp++;
5566 		fhp++;
5567 	}
5568 	ret = nfsrv_allocatedsdorpc(*nmpp, fhp, off, len, &na, cred, p);
5569 	if (nfsds_failerr(ret) && *failposp == -1 && mirrorcnt > 1)
5570 		*failposp = mirrorcnt - 1;
5571 	else if (error == 0 && ret != 0)
5572 		error = ret;
5573 	if (error == 0)
5574 		error = nfsrv_setextattr(vp, &na, p);
5575 	NFSD_DEBUG(4, "nfsrv_allocatedsrpc: aft setextat=%d\n", error);
5576 	tdrpc = drpc;
5577 	timo = hz / 50;		/* Wait for 20msec. */
5578 	if (timo < 1)
5579 		timo = 1;
5580 	for (i = 0; i < mirrorcnt - 1; i++, tdrpc++) {
5581 		/* Wait for RPCs on separate threads to complete. */
5582 		while (tdrpc->inprog != 0 && tdrpc->done == 0)
5583 			tsleep(&tdrpc->tsk, PVFS, "srvalds", timo);
5584 		if (nfsds_failerr(tdrpc->err) && *failposp == -1)
5585 			*failposp = i;
5586 		else if (error == 0 && tdrpc->err != 0)
5587 			error = tdrpc->err;
5588 	}
5589 	free(drpc, M_TEMP);
5590 	return (error);
5591 }
5592 
5593 static int
5594 nfsrv_setattrdsdorpc(fhandle_t *fhp, struct ucred *cred, NFSPROC_T *p,
5595     struct vnode *vp, struct nfsmount *nmp, struct nfsvattr *nap,
5596     struct nfsvattr *dsnap)
5597 {
5598 	uint32_t *tl;
5599 	struct nfsrv_descript *nd;
5600 	nfsv4stateid_t st;
5601 	nfsattrbit_t attrbits;
5602 	int error;
5603 
5604 	NFSD_DEBUG(4, "in nfsrv_setattrdsdorpc\n");
5605 	nd = malloc(sizeof(*nd), M_TEMP, M_WAITOK | M_ZERO);
5606 	/*
5607 	 * Use a stateid where other is an alternating 01010 pattern and
5608 	 * seqid is 0xffffffff.  This value is not defined as special by
5609 	 * the RFC and is used by the FreeBSD NFS server to indicate an
5610 	 * MDS->DS proxy operation.
5611 	 */
5612 	st.other[0] = 0x55555555;
5613 	st.other[1] = 0x55555555;
5614 	st.other[2] = 0x55555555;
5615 	st.seqid = 0xffffffff;
5616 	nfscl_reqstart(nd, NFSPROC_SETATTR, nmp, (u_int8_t *)fhp, sizeof(*fhp),
5617 	    NULL, NULL, 0, 0);
5618 	nfsm_stateidtom(nd, &st, NFSSTATEID_PUTSTATEID);
5619 	nfscl_fillsattr(nd, &nap->na_vattr, vp, NFSSATTR_FULL, 0);
5620 
5621 	/* Do a Getattr for the attributes that change due to writing. */
5622 	NFSZERO_ATTRBIT(&attrbits);
5623 	NFSSETBIT_ATTRBIT(&attrbits, NFSATTRBIT_SIZE);
5624 	NFSSETBIT_ATTRBIT(&attrbits, NFSATTRBIT_CHANGE);
5625 	NFSSETBIT_ATTRBIT(&attrbits, NFSATTRBIT_TIMEACCESS);
5626 	NFSSETBIT_ATTRBIT(&attrbits, NFSATTRBIT_TIMEMODIFY);
5627 	NFSSETBIT_ATTRBIT(&attrbits, NFSATTRBIT_SPACEUSED);
5628 	NFSM_BUILD(tl, u_int32_t *, NFSX_UNSIGNED);
5629 	*tl = txdr_unsigned(NFSV4OP_GETATTR);
5630 	(void) nfsrv_putattrbit(nd, &attrbits);
5631 	error = newnfs_request(nd, nmp, NULL, &nmp->nm_sockreq, NULL, p, cred,
5632 	    NFS_PROG, NFS_VER4, NULL, 1, NULL, NULL);
5633 	if (error != 0) {
5634 		free(nd, M_TEMP);
5635 		return (error);
5636 	}
5637 	NFSD_DEBUG(4, "nfsrv_setattrdsdorpc: aft setattrrpc=%d\n",
5638 	    nd->nd_repstat);
5639 	/* Get rid of weak cache consistency data for now. */
5640 	if ((nd->nd_flag & (ND_NOMOREDATA | ND_NFSV4 | ND_V4WCCATTR)) ==
5641 	    (ND_NFSV4 | ND_V4WCCATTR)) {
5642 		error = nfsv4_loadattr(nd, NULL, dsnap, NULL, NULL, 0, NULL,
5643 		    NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
5644 		NFSD_DEBUG(4, "nfsrv_setattrdsdorpc: wcc attr=%d\n", error);
5645 		if (error != 0)
5646 			goto nfsmout;
5647 		/*
5648 		 * Get rid of Op# and status for next op.
5649 		 */
5650 		NFSM_DISSECT(tl, uint32_t *, 2 * NFSX_UNSIGNED);
5651 		if (*++tl != 0)
5652 			nd->nd_flag |= ND_NOMOREDATA;
5653 	}
5654 	error = nfsrv_getattrbits(nd, &attrbits, NULL, NULL);
5655 	if (error != 0)
5656 		goto nfsmout;
5657 	if (nd->nd_repstat != 0)
5658 		error = nd->nd_repstat;
5659 	/*
5660 	 * Get the Change, Size, Access Time and Modify Time attributes and set
5661 	 * on the Metadata file, so its attributes will be what the file's
5662 	 * would be if it had been written.
5663 	 */
5664 	if (error == 0) {
5665 		NFSM_DISSECT(tl, uint32_t *, 2 * NFSX_UNSIGNED);
5666 		error = nfsv4_loadattr(nd, NULL, dsnap, NULL, NULL, 0, NULL,
5667 		    NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL);
5668 	}
5669 	NFSD_DEBUG(4, "nfsrv_setattrdsdorpc: aft setattr loadattr=%d\n", error);
5670 nfsmout:
5671 	m_freem(nd->nd_mrep);
5672 	free(nd, M_TEMP);
5673 	NFSD_DEBUG(4, "nfsrv_setattrdsdorpc error=%d\n", error);
5674 	return (error);
5675 }
5676 
5677 struct nfsrvsetattrdsdorpc {
5678 	int			done;
5679 	int			inprog;
5680 	struct task		tsk;
5681 	fhandle_t		fh;
5682 	struct nfsmount		*nmp;
5683 	struct vnode		*vp;
5684 	struct ucred		*cred;
5685 	NFSPROC_T		*p;
5686 	struct nfsvattr		na;
5687 	struct nfsvattr		dsna;
5688 	int			err;
5689 };
5690 
5691 /*
5692  * Start up the thread that will execute nfsrv_setattrdsdorpc().
5693  */
5694 static void
5695 start_setattrdsdorpc(void *arg, int pending)
5696 {
5697 	struct nfsrvsetattrdsdorpc *drpc;
5698 
5699 	drpc = (struct nfsrvsetattrdsdorpc *)arg;
5700 	drpc->err = nfsrv_setattrdsdorpc(&drpc->fh, drpc->cred, drpc->p,
5701 	    drpc->vp, drpc->nmp, &drpc->na, &drpc->dsna);
5702 	drpc->done = 1;
5703 }
5704 
5705 static int
5706 nfsrv_setattrdsrpc(fhandle_t *fhp, struct ucred *cred, NFSPROC_T *p,
5707     struct vnode *vp, struct nfsmount **nmpp, int mirrorcnt,
5708     struct nfsvattr *nap, int *failposp)
5709 {
5710 	struct nfsrvsetattrdsdorpc *drpc, *tdrpc = NULL;
5711 	struct nfsvattr na;
5712 	int error, i, ret, timo;
5713 
5714 	NFSD_DEBUG(4, "in nfsrv_setattrdsrpc\n");
5715 	drpc = NULL;
5716 	if (mirrorcnt > 1)
5717 		tdrpc = drpc = malloc(sizeof(*drpc) * (mirrorcnt - 1), M_TEMP,
5718 		    M_WAITOK);
5719 
5720 	/*
5721 	 * Do the setattr RPC for every DS, using a separate kernel process
5722 	 * for every DS except the last one.
5723 	 */
5724 	error = 0;
5725 	for (i = 0; i < mirrorcnt - 1; i++, tdrpc++) {
5726 		tdrpc->done = 0;
5727 		tdrpc->inprog = 0;
5728 		NFSBCOPY(fhp, &tdrpc->fh, sizeof(*fhp));
5729 		tdrpc->nmp = *nmpp;
5730 		tdrpc->vp = vp;
5731 		tdrpc->cred = cred;
5732 		tdrpc->p = p;
5733 		tdrpc->na = *nap;
5734 		tdrpc->err = 0;
5735 		ret = EIO;
5736 		if (nfs_pnfsiothreads != 0) {
5737 			ret = nfs_pnfsio(start_setattrdsdorpc, tdrpc);
5738 			NFSD_DEBUG(4, "nfsrv_setattrdsrpc: nfs_pnfsio=%d\n",
5739 			    ret);
5740 		}
5741 		if (ret != 0) {
5742 			ret = nfsrv_setattrdsdorpc(fhp, cred, p, vp, *nmpp, nap,
5743 			    &na);
5744 			if (nfsds_failerr(ret) && *failposp == -1)
5745 				*failposp = i;
5746 			else if (error == 0 && ret != 0)
5747 				error = ret;
5748 		}
5749 		nmpp++;
5750 		fhp++;
5751 	}
5752 	ret = nfsrv_setattrdsdorpc(fhp, cred, p, vp, *nmpp, nap, &na);
5753 	if (nfsds_failerr(ret) && *failposp == -1 && mirrorcnt > 1)
5754 		*failposp = mirrorcnt - 1;
5755 	else if (error == 0 && ret != 0)
5756 		error = ret;
5757 	if (error == 0)
5758 		error = nfsrv_setextattr(vp, &na, p);
5759 	NFSD_DEBUG(4, "nfsrv_setattrdsrpc: aft setextat=%d\n", error);
5760 	tdrpc = drpc;
5761 	timo = hz / 50;		/* Wait for 20msec. */
5762 	if (timo < 1)
5763 		timo = 1;
5764 	for (i = 0; i < mirrorcnt - 1; i++, tdrpc++) {
5765 		/* Wait for RPCs on separate threads to complete. */
5766 		while (tdrpc->inprog != 0 && tdrpc->done == 0)
5767 			tsleep(&tdrpc->tsk, PVFS, "srvsads", timo);
5768 		if (nfsds_failerr(tdrpc->err) && *failposp == -1)
5769 			*failposp = i;
5770 		else if (error == 0 && tdrpc->err != 0)
5771 			error = tdrpc->err;
5772 	}
5773 	free(drpc, M_TEMP);
5774 	return (error);
5775 }
5776 
5777 /*
5778  * Do a Setattr of an NFSv4 ACL on the DS file.
5779  */
5780 static int
5781 nfsrv_setacldsdorpc(fhandle_t *fhp, struct ucred *cred, NFSPROC_T *p,
5782     struct vnode *vp, struct nfsmount *nmp, struct acl *aclp)
5783 {
5784 	struct nfsrv_descript *nd;
5785 	nfsv4stateid_t st;
5786 	nfsattrbit_t attrbits;
5787 	int error;
5788 
5789 	NFSD_DEBUG(4, "in nfsrv_setacldsdorpc\n");
5790 	nd = malloc(sizeof(*nd), M_TEMP, M_WAITOK | M_ZERO);
5791 	/*
5792 	 * Use a stateid where other is an alternating 01010 pattern and
5793 	 * seqid is 0xffffffff.  This value is not defined as special by
5794 	 * the RFC and is used by the FreeBSD NFS server to indicate an
5795 	 * MDS->DS proxy operation.
5796 	 */
5797 	st.other[0] = 0x55555555;
5798 	st.other[1] = 0x55555555;
5799 	st.other[2] = 0x55555555;
5800 	st.seqid = 0xffffffff;
5801 	nfscl_reqstart(nd, NFSPROC_SETACL, nmp, (u_int8_t *)fhp, sizeof(*fhp),
5802 	    NULL, NULL, 0, 0);
5803 	nfsm_stateidtom(nd, &st, NFSSTATEID_PUTSTATEID);
5804 	NFSZERO_ATTRBIT(&attrbits);
5805 	NFSSETBIT_ATTRBIT(&attrbits, NFSATTRBIT_ACL);
5806 	/*
5807 	 * The "vp" argument to nfsv4_fillattr() is only used for vnode_type(),
5808 	 * so passing in the metadata "vp" will be ok, since it is of
5809 	 * the same type (VREG).
5810 	 */
5811 	nfsv4_fillattr(nd, NULL, vp, aclp, NULL, NULL, 0, &attrbits, NULL,
5812 	    NULL, 0, 0, 0, 0, 0, NULL);
5813 	error = newnfs_request(nd, nmp, NULL, &nmp->nm_sockreq, NULL, p, cred,
5814 	    NFS_PROG, NFS_VER4, NULL, 1, NULL, NULL);
5815 	if (error != 0) {
5816 		free(nd, M_TEMP);
5817 		return (error);
5818 	}
5819 	NFSD_DEBUG(4, "nfsrv_setacldsdorpc: aft setaclrpc=%d\n",
5820 	    nd->nd_repstat);
5821 	error = nd->nd_repstat;
5822 	m_freem(nd->nd_mrep);
5823 	free(nd, M_TEMP);
5824 	return (error);
5825 }
5826 
5827 struct nfsrvsetacldsdorpc {
5828 	int			done;
5829 	int			inprog;
5830 	struct task		tsk;
5831 	fhandle_t		fh;
5832 	struct nfsmount		*nmp;
5833 	struct vnode		*vp;
5834 	struct ucred		*cred;
5835 	NFSPROC_T		*p;
5836 	struct acl		*aclp;
5837 	int			err;
5838 };
5839 
5840 /*
5841  * Start up the thread that will execute nfsrv_setacldsdorpc().
5842  */
5843 static void
5844 start_setacldsdorpc(void *arg, int pending)
5845 {
5846 	struct nfsrvsetacldsdorpc *drpc;
5847 
5848 	drpc = (struct nfsrvsetacldsdorpc *)arg;
5849 	drpc->err = nfsrv_setacldsdorpc(&drpc->fh, drpc->cred, drpc->p,
5850 	    drpc->vp, drpc->nmp, drpc->aclp);
5851 	drpc->done = 1;
5852 }
5853 
5854 static int
5855 nfsrv_setacldsrpc(fhandle_t *fhp, struct ucred *cred, NFSPROC_T *p,
5856     struct vnode *vp, struct nfsmount **nmpp, int mirrorcnt, struct acl *aclp,
5857     int *failposp)
5858 {
5859 	struct nfsrvsetacldsdorpc *drpc, *tdrpc = NULL;
5860 	int error, i, ret, timo;
5861 
5862 	NFSD_DEBUG(4, "in nfsrv_setacldsrpc\n");
5863 	drpc = NULL;
5864 	if (mirrorcnt > 1)
5865 		tdrpc = drpc = malloc(sizeof(*drpc) * (mirrorcnt - 1), M_TEMP,
5866 		    M_WAITOK);
5867 
5868 	/*
5869 	 * Do the setattr RPC for every DS, using a separate kernel process
5870 	 * for every DS except the last one.
5871 	 */
5872 	error = 0;
5873 	for (i = 0; i < mirrorcnt - 1; i++, tdrpc++) {
5874 		tdrpc->done = 0;
5875 		tdrpc->inprog = 0;
5876 		NFSBCOPY(fhp, &tdrpc->fh, sizeof(*fhp));
5877 		tdrpc->nmp = *nmpp;
5878 		tdrpc->vp = vp;
5879 		tdrpc->cred = cred;
5880 		tdrpc->p = p;
5881 		tdrpc->aclp = aclp;
5882 		tdrpc->err = 0;
5883 		ret = EIO;
5884 		if (nfs_pnfsiothreads != 0) {
5885 			ret = nfs_pnfsio(start_setacldsdorpc, tdrpc);
5886 			NFSD_DEBUG(4, "nfsrv_setacldsrpc: nfs_pnfsio=%d\n",
5887 			    ret);
5888 		}
5889 		if (ret != 0) {
5890 			ret = nfsrv_setacldsdorpc(fhp, cred, p, vp, *nmpp,
5891 			    aclp);
5892 			if (nfsds_failerr(ret) && *failposp == -1)
5893 				*failposp = i;
5894 			else if (error == 0 && ret != 0)
5895 				error = ret;
5896 		}
5897 		nmpp++;
5898 		fhp++;
5899 	}
5900 	ret = nfsrv_setacldsdorpc(fhp, cred, p, vp, *nmpp, aclp);
5901 	if (nfsds_failerr(ret) && *failposp == -1 && mirrorcnt > 1)
5902 		*failposp = mirrorcnt - 1;
5903 	else if (error == 0 && ret != 0)
5904 		error = ret;
5905 	NFSD_DEBUG(4, "nfsrv_setacldsrpc: aft setextat=%d\n", error);
5906 	tdrpc = drpc;
5907 	timo = hz / 50;		/* Wait for 20msec. */
5908 	if (timo < 1)
5909 		timo = 1;
5910 	for (i = 0; i < mirrorcnt - 1; i++, tdrpc++) {
5911 		/* Wait for RPCs on separate threads to complete. */
5912 		while (tdrpc->inprog != 0 && tdrpc->done == 0)
5913 			tsleep(&tdrpc->tsk, PVFS, "srvacds", timo);
5914 		if (nfsds_failerr(tdrpc->err) && *failposp == -1)
5915 			*failposp = i;
5916 		else if (error == 0 && tdrpc->err != 0)
5917 			error = tdrpc->err;
5918 	}
5919 	free(drpc, M_TEMP);
5920 	return (error);
5921 }
5922 
5923 /*
5924  * Getattr call to the DS for the attributes that change due to writing.
5925  */
5926 static int
5927 nfsrv_getattrdsrpc(fhandle_t *fhp, struct ucred *cred, NFSPROC_T *p,
5928     struct vnode *vp, struct nfsmount *nmp, struct nfsvattr *nap)
5929 {
5930 	struct nfsrv_descript *nd;
5931 	int error;
5932 	nfsattrbit_t attrbits;
5933 
5934 	NFSD_DEBUG(4, "in nfsrv_getattrdsrpc\n");
5935 	nd = malloc(sizeof(*nd), M_TEMP, M_WAITOK | M_ZERO);
5936 	nfscl_reqstart(nd, NFSPROC_GETATTR, nmp, (u_int8_t *)fhp,
5937 	    sizeof(fhandle_t), NULL, NULL, 0, 0);
5938 	NFSZERO_ATTRBIT(&attrbits);
5939 	NFSSETBIT_ATTRBIT(&attrbits, NFSATTRBIT_SIZE);
5940 	NFSSETBIT_ATTRBIT(&attrbits, NFSATTRBIT_CHANGE);
5941 	NFSSETBIT_ATTRBIT(&attrbits, NFSATTRBIT_TIMEACCESS);
5942 	NFSSETBIT_ATTRBIT(&attrbits, NFSATTRBIT_TIMEMODIFY);
5943 	NFSSETBIT_ATTRBIT(&attrbits, NFSATTRBIT_SPACEUSED);
5944 	(void) nfsrv_putattrbit(nd, &attrbits);
5945 	error = newnfs_request(nd, nmp, NULL, &nmp->nm_sockreq, NULL, p, cred,
5946 	    NFS_PROG, NFS_VER4, NULL, 1, NULL, NULL);
5947 	if (error != 0) {
5948 		free(nd, M_TEMP);
5949 		return (error);
5950 	}
5951 	NFSD_DEBUG(4, "nfsrv_getattrdsrpc: aft getattrrpc=%d\n",
5952 	    nd->nd_repstat);
5953 	if (nd->nd_repstat == 0) {
5954 		error = nfsv4_loadattr(nd, NULL, nap, NULL, NULL, 0,
5955 		    NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL,
5956 		    NULL, NULL);
5957 		/*
5958 		 * We can only save the updated values in the extended
5959 		 * attribute if the vp is exclusively locked.
5960 		 * This should happen when any of the following operations
5961 		 * occur on the vnode:
5962 		 *    Close, Delegreturn, LayoutCommit, LayoutReturn
5963 		 * As such, the updated extended attribute should get saved
5964 		 * before nfsrv_checkdsattr() returns 0 and allows the cached
5965 		 * attributes to be returned without calling this function.
5966 		 */
5967 		if (error == 0 && VOP_ISLOCKED(vp) == LK_EXCLUSIVE) {
5968 			error = nfsrv_setextattr(vp, nap, p);
5969 			NFSD_DEBUG(4, "nfsrv_getattrdsrpc: aft setextat=%d\n",
5970 			    error);
5971 		}
5972 	} else
5973 		error = nd->nd_repstat;
5974 	m_freem(nd->nd_mrep);
5975 	free(nd, M_TEMP);
5976 	NFSD_DEBUG(4, "nfsrv_getattrdsrpc error=%d\n", error);
5977 	return (error);
5978 }
5979 
5980 /*
5981  * Seek call to a DS.
5982  */
5983 static int
5984 nfsrv_seekdsrpc(fhandle_t *fhp, off_t *offp, int content, bool *eofp,
5985     struct ucred *cred, NFSPROC_T *p, struct nfsmount *nmp)
5986 {
5987 	uint32_t *tl;
5988 	struct nfsrv_descript *nd;
5989 	nfsv4stateid_t st;
5990 	int error;
5991 
5992 	NFSD_DEBUG(4, "in nfsrv_seekdsrpc\n");
5993 	/*
5994 	 * Use a stateid where other is an alternating 01010 pattern and
5995 	 * seqid is 0xffffffff.  This value is not defined as special by
5996 	 * the RFC and is used by the FreeBSD NFS server to indicate an
5997 	 * MDS->DS proxy operation.
5998 	 */
5999 	st.other[0] = 0x55555555;
6000 	st.other[1] = 0x55555555;
6001 	st.other[2] = 0x55555555;
6002 	st.seqid = 0xffffffff;
6003 	nd = malloc(sizeof(*nd), M_TEMP, M_WAITOK | M_ZERO);
6004 	nfscl_reqstart(nd, NFSPROC_SEEKDS, nmp, (u_int8_t *)fhp,
6005 	    sizeof(fhandle_t), NULL, NULL, 0, 0);
6006 	nfsm_stateidtom(nd, &st, NFSSTATEID_PUTSTATEID);
6007 	NFSM_BUILD(tl, uint32_t *, NFSX_HYPER + NFSX_UNSIGNED);
6008 	txdr_hyper(*offp, tl); tl += 2;
6009 	*tl = txdr_unsigned(content);
6010 	error = newnfs_request(nd, nmp, NULL, &nmp->nm_sockreq, NULL, p, cred,
6011 	    NFS_PROG, NFS_VER4, NULL, 1, NULL, NULL);
6012 	if (error != 0) {
6013 		free(nd, M_TEMP);
6014 		return (error);
6015 	}
6016 	NFSD_DEBUG(4, "nfsrv_seekdsrpc: aft seekrpc=%d\n", nd->nd_repstat);
6017 	if (nd->nd_repstat == 0) {
6018 		NFSM_DISSECT(tl, uint32_t *, NFSX_UNSIGNED + NFSX_HYPER);
6019 		if (*tl++ == newnfs_true)
6020 			*eofp = true;
6021 		else
6022 			*eofp = false;
6023 		*offp = fxdr_hyper(tl);
6024 	} else
6025 		error = nd->nd_repstat;
6026 nfsmout:
6027 	m_freem(nd->nd_mrep);
6028 	free(nd, M_TEMP);
6029 	NFSD_DEBUG(4, "nfsrv_seekdsrpc error=%d\n", error);
6030 	return (error);
6031 }
6032 
6033 /*
6034  * Get the device id and file handle for a DS file.
6035  */
6036 int
6037 nfsrv_dsgetdevandfh(struct vnode *vp, NFSPROC_T *p, int *mirrorcntp,
6038     fhandle_t *fhp, char *devid)
6039 {
6040 	int buflen, error;
6041 	char *buf;
6042 
6043 	buflen = 1024;
6044 	buf = malloc(buflen, M_TEMP, M_WAITOK);
6045 	error = nfsrv_dsgetsockmnt(vp, 0, buf, &buflen, mirrorcntp, p, NULL,
6046 	    fhp, devid, NULL, NULL, NULL, NULL, NULL, NULL);
6047 	free(buf, M_TEMP);
6048 	return (error);
6049 }
6050 
6051 /*
6052  * Do a Lookup against the DS for the filename.
6053  */
6054 static int
6055 nfsrv_pnfslookupds(struct vnode *vp, struct vnode *dvp, struct pnfsdsfile *pf,
6056     struct vnode **nvpp, NFSPROC_T *p)
6057 {
6058 	struct nameidata named;
6059 	struct ucred *tcred;
6060 	char *bufp;
6061 	u_long *hashp;
6062 	struct vnode *nvp;
6063 	int error;
6064 
6065 	tcred = newnfs_getcred();
6066 	named.ni_cnd.cn_nameiop = LOOKUP;
6067 	named.ni_cnd.cn_lkflags = LK_SHARED | LK_RETRY;
6068 	named.ni_cnd.cn_cred = tcred;
6069 	named.ni_cnd.cn_thread = p;
6070 	named.ni_cnd.cn_flags = ISLASTCN | LOCKPARENT | LOCKLEAF | SAVENAME;
6071 	nfsvno_setpathbuf(&named, &bufp, &hashp);
6072 	named.ni_cnd.cn_nameptr = bufp;
6073 	named.ni_cnd.cn_namelen = strlen(pf->dsf_filename);
6074 	strlcpy(bufp, pf->dsf_filename, NAME_MAX);
6075 	NFSD_DEBUG(4, "nfsrv_pnfslookupds: filename=%s\n", bufp);
6076 	error = VOP_LOOKUP(dvp, &nvp, &named.ni_cnd);
6077 	NFSD_DEBUG(4, "nfsrv_pnfslookupds: aft LOOKUP=%d\n", error);
6078 	NFSFREECRED(tcred);
6079 	nfsvno_relpathbuf(&named);
6080 	if (error == 0)
6081 		*nvpp = nvp;
6082 	NFSD_DEBUG(4, "eo nfsrv_pnfslookupds=%d\n", error);
6083 	return (error);
6084 }
6085 
6086 /*
6087  * Set the file handle to the correct one.
6088  */
6089 static void
6090 nfsrv_pnfssetfh(struct vnode *vp, struct pnfsdsfile *pf, char *devid,
6091     char *fnamep, struct vnode *nvp, NFSPROC_T *p)
6092 {
6093 	struct nfsnode *np;
6094 	int ret = 0;
6095 
6096 	np = VTONFS(nvp);
6097 	NFSBCOPY(np->n_fhp->nfh_fh, &pf->dsf_fh, NFSX_MYFH);
6098 	/*
6099 	 * We can only do a vn_set_extattr() if the vnode is exclusively
6100 	 * locked and vn_start_write() has been done.  If devid != NULL or
6101 	 * fnamep != NULL or the vnode is shared locked, vn_start_write()
6102 	 * may not have been done.
6103 	 * If not done now, it will be done on a future call.
6104 	 */
6105 	if (devid == NULL && fnamep == NULL && NFSVOPISLOCKED(vp) ==
6106 	    LK_EXCLUSIVE)
6107 		ret = vn_extattr_set(vp, IO_NODELOCKED,
6108 		    EXTATTR_NAMESPACE_SYSTEM, "pnfsd.dsfile", sizeof(*pf),
6109 		    (char *)pf, p);
6110 	NFSD_DEBUG(4, "eo nfsrv_pnfssetfh=%d\n", ret);
6111 }
6112 
6113 /*
6114  * Cause RPCs waiting on "nmp" to fail.  This is called for a DS mount point
6115  * when the DS has failed.
6116  */
6117 void
6118 nfsrv_killrpcs(struct nfsmount *nmp)
6119 {
6120 
6121 	/*
6122 	 * Call newnfs_nmcancelreqs() to cause
6123 	 * any RPCs in progress on the mount point to
6124 	 * fail.
6125 	 * This will cause any process waiting for an
6126 	 * RPC to complete while holding a vnode lock
6127 	 * on the mounted-on vnode (such as "df" or
6128 	 * a non-forced "umount") to fail.
6129 	 * This will unlock the mounted-on vnode so
6130 	 * a forced dismount can succeed.
6131 	 * The NFSMNTP_CANCELRPCS flag should be set when this function is
6132 	 * called.
6133 	 */
6134 	newnfs_nmcancelreqs(nmp);
6135 }
6136 
6137 /*
6138  * Sum up the statfs info for each of the DSs, so that the client will
6139  * receive the total for all DSs.
6140  */
6141 static int
6142 nfsrv_pnfsstatfs(struct statfs *sf, struct mount *mp)
6143 {
6144 	struct statfs *tsf;
6145 	struct nfsdevice *ds;
6146 	struct vnode **dvpp, **tdvpp, *dvp;
6147 	uint64_t tot;
6148 	int cnt, error = 0, i;
6149 
6150 	if (nfsrv_devidcnt <= 0)
6151 		return (ENXIO);
6152 	dvpp = mallocarray(nfsrv_devidcnt, sizeof(*dvpp), M_TEMP, M_WAITOK);
6153 	tsf = malloc(sizeof(*tsf), M_TEMP, M_WAITOK);
6154 
6155 	/* Get an array of the dvps for the DSs. */
6156 	tdvpp = dvpp;
6157 	i = 0;
6158 	NFSDDSLOCK();
6159 	/* First, search for matches for same file system. */
6160 	TAILQ_FOREACH(ds, &nfsrv_devidhead, nfsdev_list) {
6161 		if (ds->nfsdev_nmp != NULL && ds->nfsdev_mdsisset != 0 &&
6162 		    fsidcmp(&ds->nfsdev_mdsfsid, &mp->mnt_stat.f_fsid) == 0) {
6163 			if (++i > nfsrv_devidcnt)
6164 				break;
6165 			*tdvpp++ = ds->nfsdev_dvp;
6166 		}
6167 	}
6168 	/*
6169 	 * If no matches for same file system, total all servers not assigned
6170 	 * to a file system.
6171 	 */
6172 	if (i == 0) {
6173 		TAILQ_FOREACH(ds, &nfsrv_devidhead, nfsdev_list) {
6174 			if (ds->nfsdev_nmp != NULL &&
6175 			    ds->nfsdev_mdsisset == 0) {
6176 				if (++i > nfsrv_devidcnt)
6177 					break;
6178 				*tdvpp++ = ds->nfsdev_dvp;
6179 			}
6180 		}
6181 	}
6182 	NFSDDSUNLOCK();
6183 	cnt = i;
6184 
6185 	/* Do a VFS_STATFS() for each of the DSs and sum them up. */
6186 	tdvpp = dvpp;
6187 	for (i = 0; i < cnt && error == 0; i++) {
6188 		dvp = *tdvpp++;
6189 		error = VFS_STATFS(dvp->v_mount, tsf);
6190 		if (error == 0) {
6191 			if (sf->f_bsize == 0) {
6192 				if (tsf->f_bsize > 0)
6193 					sf->f_bsize = tsf->f_bsize;
6194 				else
6195 					sf->f_bsize = 8192;
6196 			}
6197 			if (tsf->f_blocks > 0) {
6198 				if (sf->f_bsize != tsf->f_bsize) {
6199 					tot = tsf->f_blocks * tsf->f_bsize;
6200 					sf->f_blocks += (tot / sf->f_bsize);
6201 				} else
6202 					sf->f_blocks += tsf->f_blocks;
6203 			}
6204 			if (tsf->f_bfree > 0) {
6205 				if (sf->f_bsize != tsf->f_bsize) {
6206 					tot = tsf->f_bfree * tsf->f_bsize;
6207 					sf->f_bfree += (tot / sf->f_bsize);
6208 				} else
6209 					sf->f_bfree += tsf->f_bfree;
6210 			}
6211 			if (tsf->f_bavail > 0) {
6212 				if (sf->f_bsize != tsf->f_bsize) {
6213 					tot = tsf->f_bavail * tsf->f_bsize;
6214 					sf->f_bavail += (tot / sf->f_bsize);
6215 				} else
6216 					sf->f_bavail += tsf->f_bavail;
6217 			}
6218 		}
6219 	}
6220 	free(tsf, M_TEMP);
6221 	free(dvpp, M_TEMP);
6222 	return (error);
6223 }
6224 
6225 /*
6226  * Set an NFSv4 acl.
6227  */
6228 int
6229 nfsrv_setacl(struct vnode *vp, NFSACL_T *aclp, struct ucred *cred, NFSPROC_T *p)
6230 {
6231 	int error;
6232 
6233 	if (nfsrv_useacl == 0 || nfs_supportsnfsv4acls(vp) == 0) {
6234 		error = NFSERR_ATTRNOTSUPP;
6235 		goto out;
6236 	}
6237 	/*
6238 	 * With NFSv4 ACLs, chmod(2) may need to add additional entries.
6239 	 * Make sure it has enough room for that - splitting every entry
6240 	 * into two and appending "canonical six" entries at the end.
6241 	 * Cribbed out of kern/vfs_acl.c - Rick M.
6242 	 */
6243 	if (aclp->acl_cnt > (ACL_MAX_ENTRIES - 6) / 2) {
6244 		error = NFSERR_ATTRNOTSUPP;
6245 		goto out;
6246 	}
6247 	error = VOP_SETACL(vp, ACL_TYPE_NFS4, aclp, cred, p);
6248 	if (error == 0) {
6249 		error = nfsrv_dssetacl(vp, aclp, cred, p);
6250 		if (error == ENOENT)
6251 			error = 0;
6252 	}
6253 
6254 out:
6255 	NFSEXITCODE(error);
6256 	return (error);
6257 }
6258 
6259 /*
6260  * Seek vnode op call (actually it is a VOP_IOCTL()).
6261  * This function is called with the vnode locked, but unlocks and vrele()s
6262  * the vp before returning.
6263  */
6264 int
6265 nfsvno_seek(struct nfsrv_descript *nd, struct vnode *vp, u_long cmd,
6266     off_t *offp, int content, bool *eofp, struct ucred *cred, NFSPROC_T *p)
6267 {
6268 	struct nfsvattr at;
6269 	int error, ret;
6270 
6271 	ASSERT_VOP_LOCKED(vp, "nfsvno_seek vp");
6272 	/*
6273 	 * Attempt to seek on a DS file. A return of ENOENT implies
6274 	 * there is no DS file to seek on.
6275 	 */
6276 	error = nfsrv_proxyds(vp, 0, 0, cred, p, NFSPROC_SEEKDS, NULL,
6277 	    NULL, NULL, NULL, NULL, offp, content, eofp);
6278 	if (error != ENOENT) {
6279 		vput(vp);
6280 		return (error);
6281 	}
6282 
6283 	/*
6284 	 * Do the VOP_IOCTL() call.  For the case where *offp == file_size,
6285 	 * VOP_IOCTL() will return ENXIO.  However, the correct reply for
6286 	 * NFSv4.2 is *eofp == true and error == 0 for this case.
6287 	 */
6288 	NFSVOPUNLOCK(vp);
6289 	error = VOP_IOCTL(vp, cmd, offp, 0, cred, p);
6290 	*eofp = false;
6291 	if (error == ENXIO || (error == 0 && cmd == FIOSEEKHOLE)) {
6292 		/* Handle the cases where we might be at EOF. */
6293 		ret = nfsvno_getattr(vp, &at, nd, p, 0, NULL);
6294 		if (ret == 0 && *offp == at.na_size) {
6295 			*eofp = true;
6296 			error = 0;
6297 		}
6298 		if (ret != 0 && error == 0)
6299 			error = ret;
6300 	}
6301 	vrele(vp);
6302 	NFSEXITCODE(error);
6303 	return (error);
6304 }
6305 
6306 /*
6307  * Allocate vnode op call.
6308  */
6309 int
6310 nfsvno_allocate(struct vnode *vp, off_t off, off_t len, struct ucred *cred,
6311     NFSPROC_T *p)
6312 {
6313 	int error, trycnt;
6314 
6315 	ASSERT_VOP_ELOCKED(vp, "nfsvno_allocate vp");
6316 	/*
6317 	 * Attempt to allocate on a DS file. A return of ENOENT implies
6318 	 * there is no DS file to allocate on.
6319 	 */
6320 	error = nfsrv_proxyds(vp, off, 0, cred, p, NFSPROC_ALLOCATE, NULL,
6321 	    NULL, NULL, NULL, NULL, &len, 0, NULL);
6322 	if (error != ENOENT)
6323 		return (error);
6324 	error = 0;
6325 
6326 	/*
6327 	 * Do the actual VOP_ALLOCATE(), looping a reasonable number of
6328 	 * times to achieve completion.
6329 	 */
6330 	trycnt = 0;
6331 	while (error == 0 && len > 0 && trycnt++ < 20)
6332 		error = VOP_ALLOCATE(vp, &off, &len);
6333 	if (error == 0 && len > 0)
6334 		error = NFSERR_IO;
6335 	NFSEXITCODE(error);
6336 	return (error);
6337 }
6338 
6339 /*
6340  * Get Extended Atribute vnode op into an mbuf list.
6341  */
6342 int
6343 nfsvno_getxattr(struct vnode *vp, char *name, uint32_t maxresp,
6344     struct ucred *cred, uint64_t flag, int maxextsiz, struct thread *p,
6345     struct mbuf **mpp, struct mbuf **mpendp, int *lenp)
6346 {
6347 	struct iovec *iv;
6348 	struct uio io, *uiop = &io;
6349 	struct mbuf *m, *m2;
6350 	int alen, error, len, tlen;
6351 	size_t siz;
6352 
6353 	/* First, find out the size of the extended attribute. */
6354 	error = VOP_GETEXTATTR(vp, EXTATTR_NAMESPACE_USER, name, NULL,
6355 	    &siz, cred, p);
6356 	if (error != 0)
6357 		return (NFSERR_NOXATTR);
6358 	if (siz > maxresp - NFS_MAXXDR)
6359 		return (NFSERR_XATTR2BIG);
6360 	len = siz;
6361 	tlen = NFSM_RNDUP(len);
6362 	if (tlen > 0) {
6363 		/*
6364 		 * If cnt > MCLBYTES and the reply will not be saved, use
6365 		 * ext_pgs mbufs for TLS.
6366 		 * For NFSv4.0, we do not know for sure if the reply will
6367 		 * be saved, so do not use ext_pgs mbufs for NFSv4.0.
6368 		 * Always use ext_pgs mbufs if ND_EXTPG is set.
6369 		 */
6370 		if ((flag & ND_EXTPG) != 0 || (tlen > MCLBYTES &&
6371 		    (flag & (ND_TLS | ND_SAVEREPLY)) == ND_TLS &&
6372 		    (flag & (ND_NFSV4 | ND_NFSV41)) != ND_NFSV4))
6373 			uiop->uio_iovcnt = nfsrv_createiovec_extpgs(tlen,
6374 			    maxextsiz, &m, &m2, &iv);
6375 		else
6376 			uiop->uio_iovcnt = nfsrv_createiovec(tlen, &m, &m2,
6377 			    &iv);
6378 		uiop->uio_iov = iv;
6379 	} else {
6380 		uiop->uio_iovcnt = 0;
6381 		uiop->uio_iov = iv = NULL;
6382 		m = m2 = NULL;
6383 	}
6384 	uiop->uio_offset = 0;
6385 	uiop->uio_resid = tlen;
6386 	uiop->uio_rw = UIO_READ;
6387 	uiop->uio_segflg = UIO_SYSSPACE;
6388 	uiop->uio_td = p;
6389 #ifdef MAC
6390 	error = mac_vnode_check_getextattr(cred, vp, EXTATTR_NAMESPACE_USER,
6391 	    name);
6392 	if (error != 0)
6393 		goto out;
6394 #endif
6395 
6396 	if (tlen > 0)
6397 		error = VOP_GETEXTATTR(vp, EXTATTR_NAMESPACE_USER, name, uiop,
6398 		    NULL, cred, p);
6399 	if (error != 0)
6400 		goto out;
6401 	if (uiop->uio_resid > 0) {
6402 		alen = tlen;
6403 		len = tlen - uiop->uio_resid;
6404 		tlen = NFSM_RNDUP(len);
6405 		if (alen != tlen)
6406 			printf("nfsvno_getxattr: weird size read\n");
6407 		if (tlen == 0) {
6408 			m_freem(m);
6409 			m = m2 = NULL;
6410 		} else if (alen != tlen || tlen != len)
6411 			m2 = nfsrv_adj(m, alen - tlen, tlen - len);
6412 	}
6413 	*lenp = len;
6414 	*mpp = m;
6415 	*mpendp = m2;
6416 
6417 out:
6418 	if (error != 0) {
6419 		if (m != NULL)
6420 			m_freem(m);
6421 		*lenp = 0;
6422 	}
6423 	free(iv, M_TEMP);
6424 	NFSEXITCODE(error);
6425 	return (error);
6426 }
6427 
6428 /*
6429  * Set Extended attribute vnode op from an mbuf list.
6430  */
6431 int
6432 nfsvno_setxattr(struct vnode *vp, char *name, int len, struct mbuf *m,
6433     char *cp, struct ucred *cred, struct thread *p)
6434 {
6435 	struct iovec *iv;
6436 	struct uio uio, *uiop = &uio;
6437 	int cnt, error;
6438 
6439 	error = 0;
6440 #ifdef MAC
6441 	error = mac_vnode_check_setextattr(cred, vp, EXTATTR_NAMESPACE_USER,
6442 	    name);
6443 #endif
6444 	if (error != 0)
6445 		goto out;
6446 
6447 	uiop->uio_rw = UIO_WRITE;
6448 	uiop->uio_segflg = UIO_SYSSPACE;
6449 	uiop->uio_td = p;
6450 	uiop->uio_offset = 0;
6451 	uiop->uio_resid = len;
6452 	if (len > 0) {
6453 		error = nfsrv_createiovecw(len, m, cp, &iv, &cnt);
6454 		uiop->uio_iov = iv;
6455 		uiop->uio_iovcnt = cnt;
6456 	} else {
6457 		uiop->uio_iov = iv = NULL;
6458 		uiop->uio_iovcnt = 0;
6459 	}
6460 	if (error == 0) {
6461 		error = VOP_SETEXTATTR(vp, EXTATTR_NAMESPACE_USER, name, uiop,
6462 		    cred, p);
6463 		free(iv, M_TEMP);
6464 	}
6465 
6466 out:
6467 	NFSEXITCODE(error);
6468 	return (error);
6469 }
6470 
6471 /*
6472  * Remove Extended attribute vnode op.
6473  */
6474 int
6475 nfsvno_rmxattr(struct nfsrv_descript *nd, struct vnode *vp, char *name,
6476     struct ucred *cred, struct thread *p)
6477 {
6478 	int error;
6479 
6480 	/*
6481 	 * Get rid of any delegations.  I am not sure why this is required,
6482 	 * but RFC-8276 says so.
6483 	 */
6484 	error = nfsrv_checkremove(vp, 0, nd, nd->nd_clientid, p);
6485 	if (error != 0)
6486 		goto out;
6487 #ifdef MAC
6488 	error = mac_vnode_check_deleteextattr(cred, vp, EXTATTR_NAMESPACE_USER,
6489 	    name);
6490 	if (error != 0)
6491 		goto out;
6492 #endif
6493 
6494 	error = VOP_DELETEEXTATTR(vp, EXTATTR_NAMESPACE_USER, name, cred, p);
6495 	if (error == EOPNOTSUPP)
6496 		error = VOP_SETEXTATTR(vp, EXTATTR_NAMESPACE_USER, name, NULL,
6497 		    cred, p);
6498 out:
6499 	NFSEXITCODE(error);
6500 	return (error);
6501 }
6502 
6503 /*
6504  * List Extended Atribute vnode op into an mbuf list.
6505  */
6506 int
6507 nfsvno_listxattr(struct vnode *vp, uint64_t cookie, struct ucred *cred,
6508     struct thread *p, u_char **bufp, uint32_t *lenp, bool *eofp)
6509 {
6510 	struct iovec iv;
6511 	struct uio io;
6512 	int error;
6513 	size_t siz;
6514 
6515 	*bufp = NULL;
6516 	/* First, find out the size of the extended attribute. */
6517 	error = VOP_LISTEXTATTR(vp, EXTATTR_NAMESPACE_USER, NULL, &siz, cred,
6518 	    p);
6519 	if (error != 0)
6520 		return (NFSERR_NOXATTR);
6521 	if (siz <= cookie) {
6522 		*lenp = 0;
6523 		*eofp = true;
6524 		goto out;
6525 	}
6526 	if (siz > cookie + *lenp) {
6527 		siz = cookie + *lenp;
6528 		*eofp = false;
6529 	} else
6530 		*eofp = true;
6531 	/* Just choose a sanity limit of 10Mbytes for malloc(M_TEMP). */
6532 	if (siz > 10 * 1024 * 1024) {
6533 		error = NFSERR_XATTR2BIG;
6534 		goto out;
6535 	}
6536 	*bufp = malloc(siz, M_TEMP, M_WAITOK);
6537 	iv.iov_base = *bufp;
6538 	iv.iov_len = siz;
6539 	io.uio_iovcnt = 1;
6540 	io.uio_iov = &iv;
6541 	io.uio_offset = 0;
6542 	io.uio_resid = siz;
6543 	io.uio_rw = UIO_READ;
6544 	io.uio_segflg = UIO_SYSSPACE;
6545 	io.uio_td = p;
6546 #ifdef MAC
6547 	error = mac_vnode_check_listextattr(cred, vp, EXTATTR_NAMESPACE_USER);
6548 	if (error != 0)
6549 		goto out;
6550 #endif
6551 
6552 	error = VOP_LISTEXTATTR(vp, EXTATTR_NAMESPACE_USER, &io, NULL, cred,
6553 	    p);
6554 	if (error != 0)
6555 		goto out;
6556 	if (io.uio_resid > 0)
6557 		siz -= io.uio_resid;
6558 	*lenp = siz;
6559 
6560 out:
6561 	if (error != 0) {
6562 		free(*bufp, M_TEMP);
6563 		*bufp = NULL;
6564 	}
6565 	NFSEXITCODE(error);
6566 	return (error);
6567 }
6568 
6569 /*
6570  * Trim trailing data off the mbuf list being built.
6571  */
6572 void
6573 nfsm_trimtrailing(struct nfsrv_descript *nd, struct mbuf *mb, char *bpos,
6574     int bextpg, int bextpgsiz)
6575 {
6576 	vm_page_t pg;
6577 	int fullpgsiz, i;
6578 
6579 	if (mb->m_next != NULL) {
6580 		m_freem(mb->m_next);
6581 		mb->m_next = NULL;
6582 	}
6583 	if ((mb->m_flags & M_EXTPG) != 0) {
6584 		KASSERT(bextpg >= 0 && bextpg < mb->m_epg_npgs,
6585 		    ("nfsm_trimtrailing: bextpg out of range"));
6586 		KASSERT(bpos == (char *)(void *)
6587 		    PHYS_TO_DMAP(mb->m_epg_pa[bextpg]) + PAGE_SIZE - bextpgsiz,
6588 		    ("nfsm_trimtrailing: bextpgsiz bad!"));
6589 
6590 		/* First, get rid of any pages after this position. */
6591 		for (i = mb->m_epg_npgs - 1; i > bextpg; i--) {
6592 			pg = PHYS_TO_VM_PAGE(mb->m_epg_pa[i]);
6593 			vm_page_unwire_noq(pg);
6594 			vm_page_free(pg);
6595 		}
6596 		mb->m_epg_npgs = bextpg + 1;
6597 		if (bextpg == 0)
6598 			fullpgsiz = PAGE_SIZE - mb->m_epg_1st_off;
6599 		else
6600 			fullpgsiz = PAGE_SIZE;
6601 		mb->m_epg_last_len = fullpgsiz - bextpgsiz;
6602 		mb->m_len = m_epg_pagelen(mb, 0, mb->m_epg_1st_off);
6603 		for (i = 1; i < mb->m_epg_npgs; i++)
6604 			mb->m_len += m_epg_pagelen(mb, i, 0);
6605 		nd->nd_bextpgsiz = bextpgsiz;
6606 		nd->nd_bextpg = bextpg;
6607 	} else
6608 		mb->m_len = bpos - mtod(mb, char *);
6609 	nd->nd_mb = mb;
6610 	nd->nd_bpos = bpos;
6611 }
6612 
6613 extern int (*nfsd_call_nfsd)(struct thread *, struct nfssvc_args *);
6614 
6615 /*
6616  * Called once to initialize data structures...
6617  */
6618 static int
6619 nfsd_modevent(module_t mod, int type, void *data)
6620 {
6621 	int error = 0, i;
6622 	static int loaded = 0;
6623 
6624 	switch (type) {
6625 	case MOD_LOAD:
6626 		if (loaded)
6627 			goto out;
6628 		newnfs_portinit();
6629 		for (i = 0; i < NFSRVCACHE_HASHSIZE; i++) {
6630 			mtx_init(&nfsrchash_table[i].mtx, "nfsrtc", NULL,
6631 			    MTX_DEF);
6632 			mtx_init(&nfsrcahash_table[i].mtx, "nfsrtca", NULL,
6633 			    MTX_DEF);
6634 		}
6635 		mtx_init(&nfsrc_udpmtx, "nfsuc", NULL, MTX_DEF);
6636 		mtx_init(&nfs_v4root_mutex, "nfs4rt", NULL, MTX_DEF);
6637 		mtx_init(&nfsv4root_mnt.mnt_mtx, "nfs4mnt", NULL, MTX_DEF);
6638 		mtx_init(&nfsrv_dontlistlock_mtx, "nfs4dnl", NULL, MTX_DEF);
6639 		mtx_init(&nfsrv_recalllock_mtx, "nfs4rec", NULL, MTX_DEF);
6640 		lockinit(&nfsv4root_mnt.mnt_explock, PVFS, "explock", 0, 0);
6641 		nfsrvd_initcache();
6642 		nfsd_init();
6643 		NFSD_LOCK();
6644 		nfsrvd_init(0);
6645 		NFSD_UNLOCK();
6646 		nfsd_mntinit();
6647 #ifdef VV_DISABLEDELEG
6648 		vn_deleg_ops.vndeleg_recall = nfsd_recalldelegation;
6649 		vn_deleg_ops.vndeleg_disable = nfsd_disabledelegation;
6650 #endif
6651 		nfsd_call_servertimer = nfsrv_servertimer;
6652 		nfsd_call_nfsd = nfssvc_nfsd;
6653 		loaded = 1;
6654 		break;
6655 
6656 	case MOD_UNLOAD:
6657 		if (newnfs_numnfsd != 0) {
6658 			error = EBUSY;
6659 			break;
6660 		}
6661 
6662 #ifdef VV_DISABLEDELEG
6663 		vn_deleg_ops.vndeleg_recall = NULL;
6664 		vn_deleg_ops.vndeleg_disable = NULL;
6665 #endif
6666 		nfsd_call_servertimer = NULL;
6667 		nfsd_call_nfsd = NULL;
6668 
6669 		/* Clean out all NFSv4 state. */
6670 		nfsrv_throwawayallstate(curthread);
6671 
6672 		/* Clean the NFS server reply cache */
6673 		nfsrvd_cleancache();
6674 
6675 		/* Free up the krpc server pool. */
6676 		if (nfsrvd_pool != NULL)
6677 			svcpool_destroy(nfsrvd_pool);
6678 
6679 		/* and get rid of the locks */
6680 		for (i = 0; i < NFSRVCACHE_HASHSIZE; i++) {
6681 			mtx_destroy(&nfsrchash_table[i].mtx);
6682 			mtx_destroy(&nfsrcahash_table[i].mtx);
6683 		}
6684 		mtx_destroy(&nfsrc_udpmtx);
6685 		mtx_destroy(&nfs_v4root_mutex);
6686 		mtx_destroy(&nfsv4root_mnt.mnt_mtx);
6687 		mtx_destroy(&nfsrv_dontlistlock_mtx);
6688 		mtx_destroy(&nfsrv_recalllock_mtx);
6689 		for (i = 0; i < nfsrv_sessionhashsize; i++)
6690 			mtx_destroy(&nfssessionhash[i].mtx);
6691 		if (nfslayouthash != NULL) {
6692 			for (i = 0; i < nfsrv_layouthashsize; i++)
6693 				mtx_destroy(&nfslayouthash[i].mtx);
6694 			free(nfslayouthash, M_NFSDSESSION);
6695 		}
6696 		lockdestroy(&nfsv4root_mnt.mnt_explock);
6697 		free(nfsclienthash, M_NFSDCLIENT);
6698 		free(nfslockhash, M_NFSDLOCKFILE);
6699 		free(nfssessionhash, M_NFSDSESSION);
6700 		loaded = 0;
6701 		break;
6702 	default:
6703 		error = EOPNOTSUPP;
6704 		break;
6705 	}
6706 
6707 out:
6708 	NFSEXITCODE(error);
6709 	return (error);
6710 }
6711 static moduledata_t nfsd_mod = {
6712 	"nfsd",
6713 	nfsd_modevent,
6714 	NULL,
6715 };
6716 DECLARE_MODULE(nfsd, nfsd_mod, SI_SUB_VFS, SI_ORDER_ANY);
6717 
6718 /* So that loader and kldload(2) can find us, wherever we are.. */
6719 MODULE_VERSION(nfsd, 1);
6720 MODULE_DEPEND(nfsd, nfscommon, 1, 1, 1);
6721 MODULE_DEPEND(nfsd, nfslockd, 1, 1, 1);
6722 MODULE_DEPEND(nfsd, krpc, 1, 1, 1);
6723 MODULE_DEPEND(nfsd, nfssvc, 1, 1, 1);
6724