xref: /dragonfly/sys/vfs/nfs/nfs_socket.c (revision 0bb9290e)
1 /*
2  * Copyright (c) 1989, 1991, 1993, 1995
3  *	The Regents of the University of California.  All rights reserved.
4  *
5  * This code is derived from software contributed to Berkeley by
6  * Rick Macklem at The University of Guelph.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  * 3. All advertising materials mentioning features or use of this software
17  *    must display the following acknowledgement:
18  *	This product includes software developed by the University of
19  *	California, Berkeley and its contributors.
20  * 4. Neither the name of the University nor the names of its contributors
21  *    may be used to endorse or promote products derived from this software
22  *    without specific prior written permission.
23  *
24  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34  * SUCH DAMAGE.
35  *
36  *	@(#)nfs_socket.c	8.5 (Berkeley) 3/30/95
37  * $FreeBSD: src/sys/nfs/nfs_socket.c,v 1.60.2.6 2003/03/26 01:44:46 alfred Exp $
38  * $DragonFly: src/sys/vfs/nfs/nfs_socket.c,v 1.35 2006/06/13 08:12:04 dillon Exp $
39  */
40 
41 /*
42  * Socket operations for use by nfs
43  */
44 
45 #include <sys/param.h>
46 #include <sys/systm.h>
47 #include <sys/proc.h>
48 #include <sys/malloc.h>
49 #include <sys/mount.h>
50 #include <sys/kernel.h>
51 #include <sys/mbuf.h>
52 #include <sys/vnode.h>
53 #include <sys/fcntl.h>
54 #include <sys/protosw.h>
55 #include <sys/resourcevar.h>
56 #include <sys/socket.h>
57 #include <sys/socketvar.h>
58 #include <sys/socketops.h>
59 #include <sys/syslog.h>
60 #include <sys/thread.h>
61 #include <sys/tprintf.h>
62 #include <sys/sysctl.h>
63 #include <sys/signalvar.h>
64 
65 #include <netinet/in.h>
66 #include <netinet/tcp.h>
67 #include <sys/thread2.h>
68 
69 #include "rpcv2.h"
70 #include "nfsproto.h"
71 #include "nfs.h"
72 #include "xdr_subs.h"
73 #include "nfsm_subs.h"
74 #include "nfsmount.h"
75 #include "nfsnode.h"
76 #include "nfsrtt.h"
77 
78 #define	TRUE	1
79 #define	FALSE	0
80 
81 /*
82  * Estimate rto for an nfs rpc sent via. an unreliable datagram.
83  * Use the mean and mean deviation of rtt for the appropriate type of rpc
84  * for the frequent rpcs and a default for the others.
85  * The justification for doing "other" this way is that these rpcs
86  * happen so infrequently that timer est. would probably be stale.
87  * Also, since many of these rpcs are
88  * non-idempotent, a conservative timeout is desired.
89  * getattr, lookup - A+2D
90  * read, write     - A+4D
91  * other           - nm_timeo
92  */
93 #define	NFS_RTO(n, t) \
94 	((t) == 0 ? (n)->nm_timeo : \
95 	 ((t) < 3 ? \
96 	  (((((n)->nm_srtt[t-1] + 3) >> 2) + (n)->nm_sdrtt[t-1] + 1) >> 1) : \
97 	  ((((n)->nm_srtt[t-1] + 7) >> 3) + (n)->nm_sdrtt[t-1] + 1)))
98 #define	NFS_SRTT(r)	(r)->r_nmp->nm_srtt[proct[(r)->r_procnum] - 1]
99 #define	NFS_SDRTT(r)	(r)->r_nmp->nm_sdrtt[proct[(r)->r_procnum] - 1]
100 /*
101  * External data, mostly RPC constants in XDR form
102  */
103 extern u_int32_t rpc_reply, rpc_msgdenied, rpc_mismatch, rpc_vers,
104 	rpc_auth_unix, rpc_msgaccepted, rpc_call, rpc_autherr,
105 	rpc_auth_kerb;
106 extern u_int32_t nfs_prog;
107 extern struct nfsstats nfsstats;
108 extern int nfsv3_procid[NFS_NPROCS];
109 extern int nfs_ticks;
110 
111 /*
112  * Defines which timer to use for the procnum.
113  * 0 - default
114  * 1 - getattr
115  * 2 - lookup
116  * 3 - read
117  * 4 - write
118  */
119 static int proct[NFS_NPROCS] = {
120 	0, 1, 0, 2, 1, 3, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0,
121 	0, 0, 0,
122 };
123 
124 static int nfs_realign_test;
125 static int nfs_realign_count;
126 static int nfs_bufpackets = 4;
127 static int nfs_timer_raced;
128 
129 SYSCTL_DECL(_vfs_nfs);
130 
131 SYSCTL_INT(_vfs_nfs, OID_AUTO, realign_test, CTLFLAG_RW, &nfs_realign_test, 0, "");
132 SYSCTL_INT(_vfs_nfs, OID_AUTO, realign_count, CTLFLAG_RW, &nfs_realign_count, 0, "");
133 SYSCTL_INT(_vfs_nfs, OID_AUTO, bufpackets, CTLFLAG_RW, &nfs_bufpackets, 0, "");
134 
135 
136 /*
137  * There is a congestion window for outstanding rpcs maintained per mount
138  * point. The cwnd size is adjusted in roughly the way that:
139  * Van Jacobson, Congestion avoidance and Control, In "Proceedings of
140  * SIGCOMM '88". ACM, August 1988.
141  * describes for TCP. The cwnd size is chopped in half on a retransmit timeout
142  * and incremented by 1/cwnd when each rpc reply is received and a full cwnd
143  * of rpcs is in progress.
144  * (The sent count and cwnd are scaled for integer arith.)
145  * Variants of "slow start" were tried and were found to be too much of a
146  * performance hit (ave. rtt 3 times larger),
147  * I suspect due to the large rtt that nfs rpcs have.
148  */
149 #define	NFS_CWNDSCALE	256
150 #define	NFS_MAXCWND	(NFS_CWNDSCALE * 32)
151 static int nfs_backoff[8] = { 2, 4, 8, 16, 32, 64, 128, 256, };
152 int nfsrtton = 0;
153 struct nfsrtt nfsrtt;
154 struct callout	nfs_timer_handle;
155 
156 static int	nfs_msg (struct thread *,char *,char *);
157 static int	nfs_rcvlock (struct nfsreq *);
158 static void	nfs_rcvunlock (struct nfsreq *);
159 static void	nfs_realign (struct mbuf **pm, int hsiz);
160 static int	nfs_receive (struct nfsreq *rep, struct sockaddr **aname,
161 				 struct mbuf **mp);
162 static void	nfs_softterm (struct nfsreq *rep);
163 static int	nfs_reconnect (struct nfsreq *rep);
164 #ifndef NFS_NOSERVER
165 static int	nfsrv_getstream (struct nfssvc_sock *, int, int *);
166 
167 int (*nfsrv3_procs[NFS_NPROCS]) (struct nfsrv_descript *nd,
168 				    struct nfssvc_sock *slp,
169 				    struct thread *td,
170 				    struct mbuf **mreqp) = {
171 	nfsrv_null,
172 	nfsrv_getattr,
173 	nfsrv_setattr,
174 	nfsrv_lookup,
175 	nfsrv3_access,
176 	nfsrv_readlink,
177 	nfsrv_read,
178 	nfsrv_write,
179 	nfsrv_create,
180 	nfsrv_mkdir,
181 	nfsrv_symlink,
182 	nfsrv_mknod,
183 	nfsrv_remove,
184 	nfsrv_rmdir,
185 	nfsrv_rename,
186 	nfsrv_link,
187 	nfsrv_readdir,
188 	nfsrv_readdirplus,
189 	nfsrv_statfs,
190 	nfsrv_fsinfo,
191 	nfsrv_pathconf,
192 	nfsrv_commit,
193 	nfsrv_noop,
194 	nfsrv_noop,
195 	nfsrv_noop,
196 	nfsrv_noop
197 };
198 #endif /* NFS_NOSERVER */
199 
200 /*
201  * Initialize sockets and congestion for a new NFS connection.
202  * We do not free the sockaddr if error.
203  */
204 int
205 nfs_connect(struct nfsmount *nmp, struct nfsreq *rep)
206 {
207 	struct socket *so;
208 	int error, rcvreserve, sndreserve;
209 	int pktscale;
210 	struct sockaddr *saddr;
211 	struct sockaddr_in *sin;
212 	struct thread *td = &thread0; /* only used for socreate and sobind */
213 
214 	nmp->nm_so = (struct socket *)0;
215 	saddr = nmp->nm_nam;
216 	error = socreate(saddr->sa_family, &nmp->nm_so, nmp->nm_sotype,
217 		nmp->nm_soproto, td);
218 	if (error)
219 		goto bad;
220 	so = nmp->nm_so;
221 	nmp->nm_soflags = so->so_proto->pr_flags;
222 
223 	/*
224 	 * Some servers require that the client port be a reserved port number.
225 	 */
226 	if (saddr->sa_family == AF_INET && (nmp->nm_flag & NFSMNT_RESVPORT)) {
227 		struct sockopt sopt;
228 		int ip;
229 		struct sockaddr_in ssin;
230 
231 		bzero(&sopt, sizeof sopt);
232 		ip = IP_PORTRANGE_LOW;
233 		sopt.sopt_level = IPPROTO_IP;
234 		sopt.sopt_name = IP_PORTRANGE;
235 		sopt.sopt_val = (void *)&ip;
236 		sopt.sopt_valsize = sizeof(ip);
237 		sopt.sopt_td = NULL;
238 		error = sosetopt(so, &sopt);
239 		if (error)
240 			goto bad;
241 		bzero(&ssin, sizeof ssin);
242 		sin = &ssin;
243 		sin->sin_len = sizeof (struct sockaddr_in);
244 		sin->sin_family = AF_INET;
245 		sin->sin_addr.s_addr = INADDR_ANY;
246 		sin->sin_port = htons(0);
247 		error = sobind(so, (struct sockaddr *)sin, td);
248 		if (error)
249 			goto bad;
250 		bzero(&sopt, sizeof sopt);
251 		ip = IP_PORTRANGE_DEFAULT;
252 		sopt.sopt_level = IPPROTO_IP;
253 		sopt.sopt_name = IP_PORTRANGE;
254 		sopt.sopt_val = (void *)&ip;
255 		sopt.sopt_valsize = sizeof(ip);
256 		sopt.sopt_td = NULL;
257 		error = sosetopt(so, &sopt);
258 		if (error)
259 			goto bad;
260 	}
261 
262 	/*
263 	 * Protocols that do not require connections may be optionally left
264 	 * unconnected for servers that reply from a port other than NFS_PORT.
265 	 */
266 	if (nmp->nm_flag & NFSMNT_NOCONN) {
267 		if (nmp->nm_soflags & PR_CONNREQUIRED) {
268 			error = ENOTCONN;
269 			goto bad;
270 		}
271 	} else {
272 		error = soconnect(so, nmp->nm_nam, td);
273 		if (error)
274 			goto bad;
275 
276 		/*
277 		 * Wait for the connection to complete. Cribbed from the
278 		 * connect system call but with the wait timing out so
279 		 * that interruptible mounts don't hang here for a long time.
280 		 */
281 		crit_enter();
282 		while ((so->so_state & SS_ISCONNECTING) && so->so_error == 0) {
283 			(void) tsleep((caddr_t)&so->so_timeo, 0,
284 				"nfscon", 2 * hz);
285 			if ((so->so_state & SS_ISCONNECTING) &&
286 			    so->so_error == 0 && rep &&
287 			    (error = nfs_sigintr(nmp, rep, rep->r_td)) != 0){
288 				so->so_state &= ~SS_ISCONNECTING;
289 				crit_exit();
290 				goto bad;
291 			}
292 		}
293 		if (so->so_error) {
294 			error = so->so_error;
295 			so->so_error = 0;
296 			crit_exit();
297 			goto bad;
298 		}
299 		crit_exit();
300 	}
301 	so->so_rcv.sb_timeo = (5 * hz);
302 	so->so_snd.sb_timeo = (5 * hz);
303 
304 	/*
305 	 * Get buffer reservation size from sysctl, but impose reasonable
306 	 * limits.
307 	 */
308 	pktscale = nfs_bufpackets;
309 	if (pktscale < 2)
310 		pktscale = 2;
311 	if (pktscale > 64)
312 		pktscale = 64;
313 
314 	if (nmp->nm_sotype == SOCK_DGRAM) {
315 		sndreserve = (nmp->nm_wsize + NFS_MAXPKTHDR) * pktscale;
316 		rcvreserve = (max(nmp->nm_rsize, nmp->nm_readdirsize) +
317 		    NFS_MAXPKTHDR) * pktscale;
318 	} else if (nmp->nm_sotype == SOCK_SEQPACKET) {
319 		sndreserve = (nmp->nm_wsize + NFS_MAXPKTHDR) * pktscale;
320 		rcvreserve = (max(nmp->nm_rsize, nmp->nm_readdirsize) +
321 		    NFS_MAXPKTHDR) * pktscale;
322 	} else {
323 		if (nmp->nm_sotype != SOCK_STREAM)
324 			panic("nfscon sotype");
325 		if (so->so_proto->pr_flags & PR_CONNREQUIRED) {
326 			struct sockopt sopt;
327 			int val;
328 
329 			bzero(&sopt, sizeof sopt);
330 			sopt.sopt_level = SOL_SOCKET;
331 			sopt.sopt_name = SO_KEEPALIVE;
332 			sopt.sopt_val = &val;
333 			sopt.sopt_valsize = sizeof val;
334 			val = 1;
335 			sosetopt(so, &sopt);
336 		}
337 		if (so->so_proto->pr_protocol == IPPROTO_TCP) {
338 			struct sockopt sopt;
339 			int val;
340 
341 			bzero(&sopt, sizeof sopt);
342 			sopt.sopt_level = IPPROTO_TCP;
343 			sopt.sopt_name = TCP_NODELAY;
344 			sopt.sopt_val = &val;
345 			sopt.sopt_valsize = sizeof val;
346 			val = 1;
347 			sosetopt(so, &sopt);
348 		}
349 		sndreserve = (nmp->nm_wsize + NFS_MAXPKTHDR +
350 		    sizeof (u_int32_t)) * pktscale;
351 		rcvreserve = (nmp->nm_rsize + NFS_MAXPKTHDR +
352 		    sizeof (u_int32_t)) * pktscale;
353 	}
354 	error = soreserve(so, sndreserve, rcvreserve,
355 			  &td->td_proc->p_rlimit[RLIMIT_SBSIZE]);
356 	if (error)
357 		goto bad;
358 	so->so_rcv.sb_flags |= SB_NOINTR;
359 	so->so_snd.sb_flags |= SB_NOINTR;
360 
361 	/* Initialize other non-zero congestion variables */
362 	nmp->nm_srtt[0] = nmp->nm_srtt[1] = nmp->nm_srtt[2] =
363 		nmp->nm_srtt[3] = (NFS_TIMEO << 3);
364 	nmp->nm_sdrtt[0] = nmp->nm_sdrtt[1] = nmp->nm_sdrtt[2] =
365 		nmp->nm_sdrtt[3] = 0;
366 	nmp->nm_cwnd = NFS_MAXCWND / 2;	    /* Initial send window */
367 	nmp->nm_sent = 0;
368 	nmp->nm_timeouts = 0;
369 	return (0);
370 
371 bad:
372 	nfs_disconnect(nmp);
373 	return (error);
374 }
375 
376 /*
377  * Reconnect routine:
378  * Called when a connection is broken on a reliable protocol.
379  * - clean up the old socket
380  * - nfs_connect() again
381  * - set R_MUSTRESEND for all outstanding requests on mount point
382  * If this fails the mount point is DEAD!
383  * nb: Must be called with the nfs_sndlock() set on the mount point.
384  */
385 static int
386 nfs_reconnect(struct nfsreq *rep)
387 {
388 	struct nfsreq *rp;
389 	struct nfsmount *nmp = rep->r_nmp;
390 	int error;
391 
392 	nfs_disconnect(nmp);
393 	while ((error = nfs_connect(nmp, rep)) != 0) {
394 		if (error == EINTR || error == ERESTART)
395 			return (EINTR);
396 		(void) tsleep((caddr_t)&lbolt, 0, "nfscon", 0);
397 	}
398 
399 	/*
400 	 * Loop through outstanding request list and fix up all requests
401 	 * on old socket.
402 	 */
403 	crit_enter();
404 	TAILQ_FOREACH(rp, &nfs_reqq, r_chain) {
405 		if (rp->r_nmp == nmp)
406 			rp->r_flags |= R_MUSTRESEND;
407 	}
408 	crit_exit();
409 	return (0);
410 }
411 
412 /*
413  * NFS disconnect. Clean up and unlink.
414  */
415 void
416 nfs_disconnect(struct nfsmount *nmp)
417 {
418 	struct socket *so;
419 
420 	if (nmp->nm_so) {
421 		so = nmp->nm_so;
422 		nmp->nm_so = (struct socket *)0;
423 		soshutdown(so, 2);
424 		soclose(so, FNONBLOCK);
425 	}
426 }
427 
428 void
429 nfs_safedisconnect(struct nfsmount *nmp)
430 {
431 	struct nfsreq dummyreq;
432 
433 	bzero(&dummyreq, sizeof(dummyreq));
434 	dummyreq.r_nmp = nmp;
435 	dummyreq.r_td = NULL;
436 	nfs_rcvlock(&dummyreq);
437 	nfs_disconnect(nmp);
438 	nfs_rcvunlock(&dummyreq);
439 }
440 
441 /*
442  * This is the nfs send routine. For connection based socket types, it
443  * must be called with an nfs_sndlock() on the socket.
444  * "rep == NULL" indicates that it has been called from a server.
445  * For the client side:
446  * - return EINTR if the RPC is terminated, 0 otherwise
447  * - set R_MUSTRESEND if the send fails for any reason
448  * - do any cleanup required by recoverable socket errors (?)
449  * For the server side:
450  * - return EINTR or ERESTART if interrupted by a signal
451  * - return EPIPE if a connection is lost for connection based sockets (TCP...)
452  * - do any cleanup required by recoverable socket errors (?)
453  */
454 int
455 nfs_send(struct socket *so, struct sockaddr *nam, struct mbuf *top,
456 	 struct nfsreq *rep)
457 {
458 	struct sockaddr *sendnam;
459 	int error, soflags, flags;
460 
461 	if (rep) {
462 		if (rep->r_flags & R_SOFTTERM) {
463 			m_freem(top);
464 			return (EINTR);
465 		}
466 		if ((so = rep->r_nmp->nm_so) == NULL) {
467 			rep->r_flags |= R_MUSTRESEND;
468 			m_freem(top);
469 			return (0);
470 		}
471 		rep->r_flags &= ~R_MUSTRESEND;
472 		soflags = rep->r_nmp->nm_soflags;
473 	} else
474 		soflags = so->so_proto->pr_flags;
475 	if ((soflags & PR_CONNREQUIRED) || (so->so_state & SS_ISCONNECTED))
476 		sendnam = (struct sockaddr *)0;
477 	else
478 		sendnam = nam;
479 	if (so->so_type == SOCK_SEQPACKET)
480 		flags = MSG_EOR;
481 	else
482 		flags = 0;
483 
484 	error = so_pru_sosend(so, sendnam, NULL, top, NULL, flags,
485 	    curthread /*XXX*/);
486 	/*
487 	 * ENOBUFS for dgram sockets is transient and non fatal.
488 	 * No need to log, and no need to break a soft mount.
489 	 */
490 	if (error == ENOBUFS && so->so_type == SOCK_DGRAM) {
491 		error = 0;
492 		if (rep)		/* do backoff retransmit on client */
493 			rep->r_flags |= R_MUSTRESEND;
494 	}
495 
496 	if (error) {
497 		if (rep) {
498 			log(LOG_INFO, "nfs send error %d for server %s\n",error,
499 			    rep->r_nmp->nm_mountp->mnt_stat.f_mntfromname);
500 			/*
501 			 * Deal with errors for the client side.
502 			 */
503 			if (rep->r_flags & R_SOFTTERM)
504 				error = EINTR;
505 			else
506 				rep->r_flags |= R_MUSTRESEND;
507 		} else
508 			log(LOG_INFO, "nfsd send error %d\n", error);
509 
510 		/*
511 		 * Handle any recoverable (soft) socket errors here. (?)
512 		 */
513 		if (error != EINTR && error != ERESTART &&
514 			error != EWOULDBLOCK && error != EPIPE)
515 			error = 0;
516 	}
517 	return (error);
518 }
519 
520 /*
521  * Receive a Sun RPC Request/Reply. For SOCK_DGRAM, the work is all
522  * done by soreceive(), but for SOCK_STREAM we must deal with the Record
523  * Mark and consolidate the data into a new mbuf list.
524  * nb: Sometimes TCP passes the data up to soreceive() in long lists of
525  *     small mbufs.
526  * For SOCK_STREAM we must be very careful to read an entire record once
527  * we have read any of it, even if the system call has been interrupted.
528  */
529 static int
530 nfs_receive(struct nfsreq *rep, struct sockaddr **aname, struct mbuf **mp)
531 {
532 	struct socket *so;
533 	struct uio auio;
534 	struct iovec aio;
535 	struct mbuf *m;
536 	struct mbuf *control;
537 	u_int32_t len;
538 	struct sockaddr **getnam;
539 	int error, sotype, rcvflg;
540 	struct thread *td = curthread;	/* XXX */
541 
542 	/*
543 	 * Set up arguments for soreceive()
544 	 */
545 	*mp = (struct mbuf *)0;
546 	*aname = (struct sockaddr *)0;
547 	sotype = rep->r_nmp->nm_sotype;
548 
549 	/*
550 	 * For reliable protocols, lock against other senders/receivers
551 	 * in case a reconnect is necessary.
552 	 * For SOCK_STREAM, first get the Record Mark to find out how much
553 	 * more there is to get.
554 	 * We must lock the socket against other receivers
555 	 * until we have an entire rpc request/reply.
556 	 */
557 	if (sotype != SOCK_DGRAM) {
558 		error = nfs_sndlock(rep);
559 		if (error)
560 			return (error);
561 tryagain:
562 		/*
563 		 * Check for fatal errors and resending request.
564 		 */
565 		/*
566 		 * Ugh: If a reconnect attempt just happened, nm_so
567 		 * would have changed. NULL indicates a failed
568 		 * attempt that has essentially shut down this
569 		 * mount point.
570 		 */
571 		if (rep->r_mrep || (rep->r_flags & R_SOFTTERM)) {
572 			nfs_sndunlock(rep);
573 			return (EINTR);
574 		}
575 		so = rep->r_nmp->nm_so;
576 		if (!so) {
577 			error = nfs_reconnect(rep);
578 			if (error) {
579 				nfs_sndunlock(rep);
580 				return (error);
581 			}
582 			goto tryagain;
583 		}
584 		while (rep->r_flags & R_MUSTRESEND) {
585 			m = m_copym(rep->r_mreq, 0, M_COPYALL, MB_WAIT);
586 			nfsstats.rpcretries++;
587 			error = nfs_send(so, rep->r_nmp->nm_nam, m, rep);
588 			if (error) {
589 				if (error == EINTR || error == ERESTART ||
590 				    (error = nfs_reconnect(rep)) != 0) {
591 					nfs_sndunlock(rep);
592 					return (error);
593 				}
594 				goto tryagain;
595 			}
596 		}
597 		nfs_sndunlock(rep);
598 		if (sotype == SOCK_STREAM) {
599 			aio.iov_base = (caddr_t) &len;
600 			aio.iov_len = sizeof(u_int32_t);
601 			auio.uio_iov = &aio;
602 			auio.uio_iovcnt = 1;
603 			auio.uio_segflg = UIO_SYSSPACE;
604 			auio.uio_rw = UIO_READ;
605 			auio.uio_offset = 0;
606 			auio.uio_resid = sizeof(u_int32_t);
607 			auio.uio_td = td;
608 			do {
609 			   rcvflg = MSG_WAITALL;
610 			   error = so_pru_soreceive(so, NULL, &auio, NULL,
611 			       NULL, &rcvflg);
612 			   if (error == EWOULDBLOCK && rep) {
613 				if (rep->r_flags & R_SOFTTERM)
614 					return (EINTR);
615 			   }
616 			} while (error == EWOULDBLOCK);
617 			if (!error && auio.uio_resid > 0) {
618 			    /*
619 			     * Don't log a 0 byte receive; it means
620 			     * that the socket has been closed, and
621 			     * can happen during normal operation
622 			     * (forcible unmount or Solaris server).
623 			     */
624 			    if (auio.uio_resid != sizeof (u_int32_t))
625 			    log(LOG_INFO,
626 				 "short receive (%d/%d) from nfs server %s\n",
627 				 (int)(sizeof(u_int32_t) - auio.uio_resid),
628 				 (int)sizeof(u_int32_t),
629 				 rep->r_nmp->nm_mountp->mnt_stat.f_mntfromname);
630 			    error = EPIPE;
631 			}
632 			if (error)
633 				goto errout;
634 			len = ntohl(len) & ~0x80000000;
635 			/*
636 			 * This is SERIOUS! We are out of sync with the sender
637 			 * and forcing a disconnect/reconnect is all I can do.
638 			 */
639 			if (len > NFS_MAXPACKET) {
640 			    log(LOG_ERR, "%s (%d) from nfs server %s\n",
641 				"impossible packet length",
642 				len,
643 				rep->r_nmp->nm_mountp->mnt_stat.f_mntfromname);
644 			    error = EFBIG;
645 			    goto errout;
646 			}
647 			auio.uio_resid = len;
648 			do {
649 			    rcvflg = MSG_WAITALL;
650 			    error =  so_pru_soreceive(so, NULL, &auio, mp,
651 			        NULL, &rcvflg);
652 			} while (error == EWOULDBLOCK || error == EINTR ||
653 				 error == ERESTART);
654 			if (!error && auio.uio_resid > 0) {
655 			    if (len != auio.uio_resid)
656 			    log(LOG_INFO,
657 				"short receive (%d/%d) from nfs server %s\n",
658 				len - auio.uio_resid, len,
659 				rep->r_nmp->nm_mountp->mnt_stat.f_mntfromname);
660 			    error = EPIPE;
661 			}
662 		} else {
663 			/*
664 			 * NB: Since uio_resid is big, MSG_WAITALL is ignored
665 			 * and soreceive() will return when it has either a
666 			 * control msg or a data msg.
667 			 * We have no use for control msg., but must grab them
668 			 * and then throw them away so we know what is going
669 			 * on.
670 			 */
671 			auio.uio_resid = len = 100000000; /* Anything Big */
672 			auio.uio_td = td;
673 			do {
674 			    rcvflg = 0;
675 			    error =  so_pru_soreceive(so, NULL, &auio, mp,
676 			        &control, &rcvflg);
677 			    if (control)
678 				m_freem(control);
679 			    if (error == EWOULDBLOCK && rep) {
680 				if (rep->r_flags & R_SOFTTERM)
681 					return (EINTR);
682 			    }
683 			} while (error == EWOULDBLOCK ||
684 				 (!error && *mp == NULL && control));
685 			if ((rcvflg & MSG_EOR) == 0)
686 				printf("Egad!!\n");
687 			if (!error && *mp == NULL)
688 				error = EPIPE;
689 			len -= auio.uio_resid;
690 		}
691 errout:
692 		if (error && error != EINTR && error != ERESTART) {
693 			m_freem(*mp);
694 			*mp = (struct mbuf *)0;
695 			if (error != EPIPE)
696 				log(LOG_INFO,
697 				    "receive error %d from nfs server %s\n",
698 				    error,
699 				 rep->r_nmp->nm_mountp->mnt_stat.f_mntfromname);
700 			error = nfs_sndlock(rep);
701 			if (!error) {
702 				error = nfs_reconnect(rep);
703 				if (!error)
704 					goto tryagain;
705 				else
706 					nfs_sndunlock(rep);
707 			}
708 		}
709 	} else {
710 		if ((so = rep->r_nmp->nm_so) == NULL)
711 			return (EACCES);
712 		if (so->so_state & SS_ISCONNECTED)
713 			getnam = (struct sockaddr **)0;
714 		else
715 			getnam = aname;
716 		auio.uio_resid = len = 1000000;
717 		auio.uio_td = td;
718 		do {
719 			rcvflg = 0;
720 			error =  so_pru_soreceive(so, getnam, &auio, mp, NULL,
721 			    &rcvflg);
722 			if (error == EWOULDBLOCK &&
723 			    (rep->r_flags & R_SOFTTERM))
724 				return (EINTR);
725 		} while (error == EWOULDBLOCK);
726 		len -= auio.uio_resid;
727 	}
728 	if (error) {
729 		m_freem(*mp);
730 		*mp = (struct mbuf *)0;
731 	}
732 	/*
733 	 * Search for any mbufs that are not a multiple of 4 bytes long
734 	 * or with m_data not longword aligned.
735 	 * These could cause pointer alignment problems, so copy them to
736 	 * well aligned mbufs.
737 	 */
738 	nfs_realign(mp, 5 * NFSX_UNSIGNED);
739 	return (error);
740 }
741 
742 /*
743  * Implement receipt of reply on a socket.
744  * We must search through the list of received datagrams matching them
745  * with outstanding requests using the xid, until ours is found.
746  */
747 /* ARGSUSED */
748 int
749 nfs_reply(struct nfsreq *myrep)
750 {
751 	struct nfsreq *rep;
752 	struct nfsmount *nmp = myrep->r_nmp;
753 	int32_t t1;
754 	struct mbuf *mrep, *md;
755 	struct sockaddr *nam;
756 	u_int32_t rxid, *tl;
757 	caddr_t dpos, cp2;
758 	int error;
759 
760 	/*
761 	 * Loop around until we get our own reply
762 	 */
763 	for (;;) {
764 		/*
765 		 * Lock against other receivers so that I don't get stuck in
766 		 * sbwait() after someone else has received my reply for me.
767 		 * Also necessary for connection based protocols to avoid
768 		 * race conditions during a reconnect.
769 		 * If nfs_rcvlock() returns EALREADY, that means that
770 		 * the reply has already been recieved by another
771 		 * process and we can return immediately.  In this
772 		 * case, the lock is not taken to avoid races with
773 		 * other processes.
774 		 */
775 		error = nfs_rcvlock(myrep);
776 		if (error == EALREADY)
777 			return (0);
778 		if (error)
779 			return (error);
780 		/*
781 		 * Get the next Rpc reply off the socket
782 		 */
783 		error = nfs_receive(myrep, &nam, &mrep);
784 		nfs_rcvunlock(myrep);
785 		if (error) {
786 			/*
787 			 * Ignore routing errors on connectionless protocols??
788 			 */
789 			if (NFSIGNORE_SOERROR(nmp->nm_soflags, error)) {
790 				nmp->nm_so->so_error = 0;
791 				if (myrep->r_flags & R_GETONEREP)
792 					return (0);
793 				continue;
794 			}
795 			return (error);
796 		}
797 		if (nam)
798 			FREE(nam, M_SONAME);
799 
800 		/*
801 		 * Get the xid and check that it is an rpc reply
802 		 */
803 		md = mrep;
804 		dpos = mtod(md, caddr_t);
805 		nfsm_dissect(tl, u_int32_t *, 2*NFSX_UNSIGNED);
806 		rxid = *tl++;
807 		if (*tl != rpc_reply) {
808 			nfsstats.rpcinvalid++;
809 			m_freem(mrep);
810 nfsmout:
811 			if (myrep->r_flags & R_GETONEREP)
812 				return (0);
813 			continue;
814 		}
815 
816 		/*
817 		 * Loop through the request list to match up the reply
818 		 * Iff no match, just drop the datagram.  On match, set
819 		 * r_mrep atomically to prevent the timer from messing
820 		 * around with the request after we have exited the critical
821 		 * section.
822 		 */
823 		crit_enter();
824 		TAILQ_FOREACH(rep, &nfs_reqq, r_chain) {
825 			if (rep->r_mrep == NULL && rxid == rep->r_xid) {
826 				rep->r_mrep = mrep;
827 				break;
828 			}
829 		}
830 		crit_exit();
831 
832 		/*
833 		 * Fill in the rest of the reply if we found a match.
834 		 */
835 		if (rep) {
836 			rep->r_md = md;
837 			rep->r_dpos = dpos;
838 			if (nfsrtton) {
839 				struct rttl *rt;
840 
841 				rt = &nfsrtt.rttl[nfsrtt.pos];
842 				rt->proc = rep->r_procnum;
843 				rt->rto = NFS_RTO(nmp, proct[rep->r_procnum]);
844 				rt->sent = nmp->nm_sent;
845 				rt->cwnd = nmp->nm_cwnd;
846 				rt->srtt = nmp->nm_srtt[proct[rep->r_procnum] - 1];
847 				rt->sdrtt = nmp->nm_sdrtt[proct[rep->r_procnum] - 1];
848 				rt->fsid = nmp->nm_mountp->mnt_stat.f_fsid;
849 				getmicrotime(&rt->tstamp);
850 				if (rep->r_flags & R_TIMING)
851 					rt->rtt = rep->r_rtt;
852 				else
853 					rt->rtt = 1000000;
854 				nfsrtt.pos = (nfsrtt.pos + 1) % NFSRTTLOGSIZ;
855 			}
856 			/*
857 			 * Update congestion window.
858 			 * Do the additive increase of
859 			 * one rpc/rtt.
860 			 */
861 			if (nmp->nm_cwnd <= nmp->nm_sent) {
862 				nmp->nm_cwnd +=
863 				   (NFS_CWNDSCALE * NFS_CWNDSCALE +
864 				   (nmp->nm_cwnd >> 1)) / nmp->nm_cwnd;
865 				if (nmp->nm_cwnd > NFS_MAXCWND)
866 					nmp->nm_cwnd = NFS_MAXCWND;
867 			}
868 			crit_enter();	/* nfs_timer interlock for nm_sent */
869 			if (rep->r_flags & R_SENT) {
870 				rep->r_flags &= ~R_SENT;
871 				nmp->nm_sent -= NFS_CWNDSCALE;
872 			}
873 			crit_exit();
874 			/*
875 			 * Update rtt using a gain of 0.125 on the mean
876 			 * and a gain of 0.25 on the deviation.
877 			 */
878 			if (rep->r_flags & R_TIMING) {
879 				/*
880 				 * Since the timer resolution of
881 				 * NFS_HZ is so course, it can often
882 				 * result in r_rtt == 0. Since
883 				 * r_rtt == N means that the actual
884 				 * rtt is between N+dt and N+2-dt ticks,
885 				 * add 1.
886 				 */
887 				t1 = rep->r_rtt + 1;
888 				t1 -= (NFS_SRTT(rep) >> 3);
889 				NFS_SRTT(rep) += t1;
890 				if (t1 < 0)
891 					t1 = -t1;
892 				t1 -= (NFS_SDRTT(rep) >> 2);
893 				NFS_SDRTT(rep) += t1;
894 			}
895 			nmp->nm_timeouts = 0;
896 		}
897 		/*
898 		 * If not matched to a request, drop it.
899 		 * If it's mine, get out.
900 		 */
901 		if (rep == NULL) {
902 			nfsstats.rpcunexpected++;
903 			m_freem(mrep);
904 		} else if (rep == myrep) {
905 			if (rep->r_mrep == NULL)
906 				panic("nfsreply nil");
907 			return (0);
908 		}
909 		if (myrep->r_flags & R_GETONEREP)
910 			return (0);
911 	}
912 }
913 
914 /*
915  * nfs_request - goes something like this
916  *	- fill in request struct
917  *	- links it into list
918  *	- calls nfs_send() for first transmit
919  *	- calls nfs_receive() to get reply
920  *	- break down rpc header and return with nfs reply pointed to
921  *	  by mrep or error
922  * nb: always frees up mreq mbuf list
923  */
924 int
925 nfs_request(struct vnode *vp, struct mbuf *mrest, int procnum,
926 	    struct thread *td, struct ucred *cred, struct mbuf **mrp,
927 	    struct mbuf **mdp, caddr_t *dposp)
928 {
929 	struct mbuf *mrep, *m2;
930 	struct nfsreq *rep;
931 	u_int32_t *tl;
932 	int i;
933 	struct nfsmount *nmp;
934 	struct mbuf *m, *md, *mheadend;
935 	char nickv[RPCX_NICKVERF];
936 	time_t waituntil;
937 	caddr_t dpos, cp2;
938 	int t1, error = 0, mrest_len, auth_len, auth_type;
939 	int trylater_delay = 15, trylater_cnt = 0, failed_auth = 0;
940 	int verf_len, verf_type;
941 	u_int32_t xid;
942 	char *auth_str, *verf_str;
943 	NFSKERBKEY_T key;		/* save session key */
944 
945 	/* Reject requests while attempting a forced unmount. */
946 	if (vp->v_mount->mnt_kern_flag & MNTK_UNMOUNTF) {
947 		m_freem(mrest);
948 		return (ESTALE);
949 	}
950 	nmp = VFSTONFS(vp->v_mount);
951 	MALLOC(rep, struct nfsreq *, sizeof(struct nfsreq), M_NFSREQ, M_WAITOK);
952 	rep->r_nmp = nmp;
953 	rep->r_vp = vp;
954 	rep->r_td = td;
955 	rep->r_procnum = procnum;
956 	rep->r_mreq = NULL;
957 	i = 0;
958 	m = mrest;
959 	while (m) {
960 		i += m->m_len;
961 		m = m->m_next;
962 	}
963 	mrest_len = i;
964 
965 	/*
966 	 * Get the RPC header with authorization.
967 	 */
968 kerbauth:
969 	verf_str = auth_str = (char *)0;
970 	if (nmp->nm_flag & NFSMNT_KERB) {
971 		verf_str = nickv;
972 		verf_len = sizeof (nickv);
973 		auth_type = RPCAUTH_KERB4;
974 		bzero((caddr_t)key, sizeof (key));
975 		if (failed_auth || nfs_getnickauth(nmp, cred, &auth_str,
976 			&auth_len, verf_str, verf_len)) {
977 			error = nfs_getauth(nmp, rep, cred, &auth_str,
978 				&auth_len, verf_str, &verf_len, key);
979 			if (error) {
980 				free((caddr_t)rep, M_NFSREQ);
981 				m_freem(mrest);
982 				return (error);
983 			}
984 		}
985 	} else {
986 		auth_type = RPCAUTH_UNIX;
987 		if (cred->cr_ngroups < 1)
988 			panic("nfsreq nogrps");
989 		auth_len = ((((cred->cr_ngroups - 1) > nmp->nm_numgrps) ?
990 			nmp->nm_numgrps : (cred->cr_ngroups - 1)) << 2) +
991 			5 * NFSX_UNSIGNED;
992 	}
993 	m = nfsm_rpchead(cred, nmp->nm_flag, procnum, auth_type, auth_len,
994 	     auth_str, verf_len, verf_str, mrest, mrest_len, &mheadend, &xid);
995 	if (auth_str)
996 		free(auth_str, M_TEMP);
997 
998 	/*
999 	 * For stream protocols, insert a Sun RPC Record Mark.
1000 	 */
1001 	if (nmp->nm_sotype == SOCK_STREAM) {
1002 		M_PREPEND(m, NFSX_UNSIGNED, MB_WAIT);
1003 		if (m == NULL) {
1004 			free(rep, M_NFSREQ);
1005 			return (ENOBUFS);
1006 		}
1007 		*mtod(m, u_int32_t *) = htonl(0x80000000 |
1008 			 (m->m_pkthdr.len - NFSX_UNSIGNED));
1009 	}
1010 	rep->r_mreq = m;
1011 	rep->r_xid = xid;
1012 tryagain:
1013 	if (nmp->nm_flag & NFSMNT_SOFT)
1014 		rep->r_retry = nmp->nm_retry;
1015 	else
1016 		rep->r_retry = NFS_MAXREXMIT + 1;	/* past clip limit */
1017 	rep->r_rtt = rep->r_rexmit = 0;
1018 	if (proct[procnum] > 0)
1019 		rep->r_flags = R_TIMING | R_MASKTIMER;
1020 	else
1021 		rep->r_flags = R_MASKTIMER;
1022 	rep->r_mrep = NULL;
1023 
1024 	/*
1025 	 * Do the client side RPC.
1026 	 */
1027 	nfsstats.rpcrequests++;
1028 
1029 	/*
1030 	 * Chain request into list of outstanding requests. Be sure
1031 	 * to put it LAST so timer finds oldest requests first.  Note
1032 	 * that R_MASKTIMER is set at the moment to prevent any timer
1033 	 * action on this request while we are still doing processing on
1034 	 * it below.  splsoftclock() primarily protects nm_sent.  Note
1035 	 * that we may block in this code so there is no atomicy guarentee.
1036 	 */
1037 	crit_enter();
1038 	TAILQ_INSERT_TAIL(&nfs_reqq, rep, r_chain);
1039 
1040 	/*
1041 	 * If backing off another request or avoiding congestion, don't
1042 	 * send this one now but let timer do it.  If not timing a request,
1043 	 * do it now.
1044 	 *
1045 	 * Even though the timer will not mess with our request there is
1046 	 * still the possibility that we will race a reply (which clears
1047 	 * R_SENT), especially on localhost connections, so be very careful
1048 	 * when setting R_SENT.  We could set R_SENT prior to calling
1049 	 * nfs_send() but why bother if the response occurs that quickly?
1050 	 */
1051 	if (nmp->nm_so && (nmp->nm_sotype != SOCK_DGRAM ||
1052 	    (nmp->nm_flag & NFSMNT_DUMBTIMR) ||
1053 	    nmp->nm_sent < nmp->nm_cwnd)) {
1054 		if (nmp->nm_soflags & PR_CONNREQUIRED)
1055 			error = nfs_sndlock(rep);
1056 		if (!error) {
1057 			m2 = m_copym(m, 0, M_COPYALL, MB_WAIT);
1058 			error = nfs_send(nmp->nm_so, nmp->nm_nam, m2, rep);
1059 			if (nmp->nm_soflags & PR_CONNREQUIRED)
1060 				nfs_sndunlock(rep);
1061 		}
1062 		if (!error && (rep->r_flags & R_MUSTRESEND) == 0 &&
1063 		    rep->r_mrep == NULL) {
1064 			KASSERT((rep->r_flags & R_SENT) == 0,
1065 				("R_SENT ASSERT %p", rep));
1066 			nmp->nm_sent += NFS_CWNDSCALE;
1067 			rep->r_flags |= R_SENT;
1068 		}
1069 	} else {
1070 		rep->r_rtt = -1;
1071 	}
1072 
1073 	/*
1074 	 * Let the timer do what it will with the request, then
1075 	 * wait for the reply from our send or the timer's.
1076 	 */
1077 	if (!error || error == EPIPE) {
1078 		rep->r_flags &= ~R_MASKTIMER;
1079 		crit_exit();
1080 		error = nfs_reply(rep);
1081 		crit_enter();
1082 	}
1083 
1084 	/*
1085 	 * RPC done, unlink the request, but don't rip it out from under
1086 	 * the callout timer.
1087 	 */
1088 	while (rep->r_flags & R_LOCKED) {
1089 		nfs_timer_raced = 1;
1090 		tsleep(&nfs_timer_raced, 0, "nfstrac", 0);
1091 	}
1092 	TAILQ_REMOVE(&nfs_reqq, rep, r_chain);
1093 
1094 	/*
1095 	 * Decrement the outstanding request count.
1096 	 */
1097 	if (rep->r_flags & R_SENT) {
1098 		rep->r_flags &= ~R_SENT;
1099 		nmp->nm_sent -= NFS_CWNDSCALE;
1100 	}
1101 	crit_exit();
1102 
1103 	/*
1104 	 * If there was a successful reply and a tprintf msg.
1105 	 * tprintf a response.
1106 	 */
1107 	if (!error && (rep->r_flags & R_TPRINTFMSG))
1108 		nfs_msg(rep->r_td, nmp->nm_mountp->mnt_stat.f_mntfromname,
1109 		    "is alive again");
1110 	mrep = rep->r_mrep;
1111 	md = rep->r_md;
1112 	dpos = rep->r_dpos;
1113 	if (error) {
1114 		m_freem(rep->r_mreq);
1115 		free((caddr_t)rep, M_NFSREQ);
1116 		return (error);
1117 	}
1118 
1119 	/*
1120 	 * break down the rpc header and check if ok
1121 	 */
1122 	nfsm_dissect(tl, u_int32_t *, 3 * NFSX_UNSIGNED);
1123 	if (*tl++ == rpc_msgdenied) {
1124 		if (*tl == rpc_mismatch)
1125 			error = EOPNOTSUPP;
1126 		else if ((nmp->nm_flag & NFSMNT_KERB) && *tl++ == rpc_autherr) {
1127 			if (!failed_auth) {
1128 				failed_auth++;
1129 				mheadend->m_next = (struct mbuf *)0;
1130 				m_freem(mrep);
1131 				m_freem(rep->r_mreq);
1132 				goto kerbauth;
1133 			} else
1134 				error = EAUTH;
1135 		} else
1136 			error = EACCES;
1137 		m_freem(mrep);
1138 		m_freem(rep->r_mreq);
1139 		free((caddr_t)rep, M_NFSREQ);
1140 		return (error);
1141 	}
1142 
1143 	/*
1144 	 * Grab any Kerberos verifier, otherwise just throw it away.
1145 	 */
1146 	verf_type = fxdr_unsigned(int, *tl++);
1147 	i = fxdr_unsigned(int32_t, *tl);
1148 	if ((nmp->nm_flag & NFSMNT_KERB) && verf_type == RPCAUTH_KERB4) {
1149 		error = nfs_savenickauth(nmp, cred, i, key, &md, &dpos, mrep);
1150 		if (error)
1151 			goto nfsmout;
1152 	} else if (i > 0)
1153 		nfsm_adv(nfsm_rndup(i));
1154 	nfsm_dissect(tl, u_int32_t *, NFSX_UNSIGNED);
1155 	/* 0 == ok */
1156 	if (*tl == 0) {
1157 		nfsm_dissect(tl, u_int32_t *, NFSX_UNSIGNED);
1158 		if (*tl != 0) {
1159 			error = fxdr_unsigned(int, *tl);
1160 			if ((nmp->nm_flag & NFSMNT_NFSV3) &&
1161 				error == NFSERR_TRYLATER) {
1162 				m_freem(mrep);
1163 				error = 0;
1164 				waituntil = time_second + trylater_delay;
1165 				while (time_second < waituntil)
1166 					(void) tsleep((caddr_t)&lbolt,
1167 						0, "nqnfstry", 0);
1168 				trylater_delay *= nfs_backoff[trylater_cnt];
1169 				if (trylater_cnt < 7)
1170 					trylater_cnt++;
1171 				goto tryagain;
1172 			}
1173 
1174 			/*
1175 			 * If the File Handle was stale, invalidate the
1176 			 * lookup cache, just in case.
1177 			 */
1178 			if (error == ESTALE) {
1179 				cache_inval_vp(vp, CINV_CHILDREN);
1180 			}
1181 			if (nmp->nm_flag & NFSMNT_NFSV3) {
1182 				*mrp = mrep;
1183 				*mdp = md;
1184 				*dposp = dpos;
1185 				error |= NFSERR_RETERR;
1186 			} else
1187 				m_freem(mrep);
1188 			m_freem(rep->r_mreq);
1189 			free((caddr_t)rep, M_NFSREQ);
1190 			return (error);
1191 		}
1192 
1193 		*mrp = mrep;
1194 		*mdp = md;
1195 		*dposp = dpos;
1196 		m_freem(rep->r_mreq);
1197 		FREE((caddr_t)rep, M_NFSREQ);
1198 		return (0);
1199 	}
1200 	m_freem(mrep);
1201 	error = EPROTONOSUPPORT;
1202 nfsmout:
1203 	m_freem(rep->r_mreq);
1204 	free((caddr_t)rep, M_NFSREQ);
1205 	return (error);
1206 }
1207 
1208 #ifndef NFS_NOSERVER
1209 /*
1210  * Generate the rpc reply header
1211  * siz arg. is used to decide if adding a cluster is worthwhile
1212  */
1213 int
1214 nfs_rephead(int siz, struct nfsrv_descript *nd, struct nfssvc_sock *slp,
1215 	    int err, struct mbuf **mrq, struct mbuf **mbp, caddr_t *bposp)
1216 {
1217 	u_int32_t *tl;
1218 	struct mbuf *mreq;
1219 	caddr_t bpos;
1220 	struct mbuf *mb, *mb2;
1221 
1222 	siz += RPC_REPLYSIZ;
1223 	mb = mreq = m_getl(max_hdr + siz, MB_WAIT, MT_DATA, M_PKTHDR, NULL);
1224 	mreq->m_pkthdr.len = 0;
1225 	/*
1226 	 * If this is not a cluster, try and leave leading space
1227 	 * for the lower level headers.
1228 	 */
1229 	if ((max_hdr + siz) < MINCLSIZE)
1230 		mreq->m_data += max_hdr;
1231 	tl = mtod(mreq, u_int32_t *);
1232 	mreq->m_len = 6 * NFSX_UNSIGNED;
1233 	bpos = ((caddr_t)tl) + mreq->m_len;
1234 	*tl++ = txdr_unsigned(nd->nd_retxid);
1235 	*tl++ = rpc_reply;
1236 	if (err == ERPCMISMATCH || (err & NFSERR_AUTHERR)) {
1237 		*tl++ = rpc_msgdenied;
1238 		if (err & NFSERR_AUTHERR) {
1239 			*tl++ = rpc_autherr;
1240 			*tl = txdr_unsigned(err & ~NFSERR_AUTHERR);
1241 			mreq->m_len -= NFSX_UNSIGNED;
1242 			bpos -= NFSX_UNSIGNED;
1243 		} else {
1244 			*tl++ = rpc_mismatch;
1245 			*tl++ = txdr_unsigned(RPC_VER2);
1246 			*tl = txdr_unsigned(RPC_VER2);
1247 		}
1248 	} else {
1249 		*tl++ = rpc_msgaccepted;
1250 
1251 		/*
1252 		 * For Kerberos authentication, we must send the nickname
1253 		 * verifier back, otherwise just RPCAUTH_NULL.
1254 		 */
1255 		if (nd->nd_flag & ND_KERBFULL) {
1256 		    struct nfsuid *nuidp;
1257 		    struct timeval ktvin, ktvout;
1258 
1259 		    for (nuidp = NUIDHASH(slp, nd->nd_cr.cr_uid)->lh_first;
1260 			nuidp != 0; nuidp = nuidp->nu_hash.le_next) {
1261 			if (nuidp->nu_cr.cr_uid == nd->nd_cr.cr_uid &&
1262 			    (!nd->nd_nam2 || netaddr_match(NU_NETFAM(nuidp),
1263 			     &nuidp->nu_haddr, nd->nd_nam2)))
1264 			    break;
1265 		    }
1266 		    if (nuidp) {
1267 			ktvin.tv_sec =
1268 			    txdr_unsigned(nuidp->nu_timestamp.tv_sec - 1);
1269 			ktvin.tv_usec =
1270 			    txdr_unsigned(nuidp->nu_timestamp.tv_usec);
1271 
1272 			/*
1273 			 * Encrypt the timestamp in ecb mode using the
1274 			 * session key.
1275 			 */
1276 #ifdef NFSKERB
1277 			XXX
1278 #endif
1279 
1280 			*tl++ = rpc_auth_kerb;
1281 			*tl++ = txdr_unsigned(3 * NFSX_UNSIGNED);
1282 			*tl = ktvout.tv_sec;
1283 			nfsm_build(tl, u_int32_t *, 3 * NFSX_UNSIGNED);
1284 			*tl++ = ktvout.tv_usec;
1285 			*tl++ = txdr_unsigned(nuidp->nu_cr.cr_uid);
1286 		    } else {
1287 			*tl++ = 0;
1288 			*tl++ = 0;
1289 		    }
1290 		} else {
1291 			*tl++ = 0;
1292 			*tl++ = 0;
1293 		}
1294 		switch (err) {
1295 		case EPROGUNAVAIL:
1296 			*tl = txdr_unsigned(RPC_PROGUNAVAIL);
1297 			break;
1298 		case EPROGMISMATCH:
1299 			*tl = txdr_unsigned(RPC_PROGMISMATCH);
1300 			nfsm_build(tl, u_int32_t *, 2 * NFSX_UNSIGNED);
1301 			*tl++ = txdr_unsigned(2);
1302 			*tl = txdr_unsigned(3);
1303 			break;
1304 		case EPROCUNAVAIL:
1305 			*tl = txdr_unsigned(RPC_PROCUNAVAIL);
1306 			break;
1307 		case EBADRPC:
1308 			*tl = txdr_unsigned(RPC_GARBAGE);
1309 			break;
1310 		default:
1311 			*tl = 0;
1312 			if (err != NFSERR_RETVOID) {
1313 				nfsm_build(tl, u_int32_t *, NFSX_UNSIGNED);
1314 				if (err)
1315 				    *tl = txdr_unsigned(nfsrv_errmap(nd, err));
1316 				else
1317 				    *tl = 0;
1318 			}
1319 			break;
1320 		};
1321 	}
1322 
1323 	if (mrq != NULL)
1324 	    *mrq = mreq;
1325 	*mbp = mb;
1326 	*bposp = bpos;
1327 	if (err != 0 && err != NFSERR_RETVOID)
1328 		nfsstats.srvrpc_errs++;
1329 	return (0);
1330 }
1331 
1332 
1333 #endif /* NFS_NOSERVER */
1334 /*
1335  * Nfs timer routine
1336  * Scan the nfsreq list and retranmit any requests that have timed out
1337  * To avoid retransmission attempts on STREAM sockets (in the future) make
1338  * sure to set the r_retry field to 0 (implies nm_retry == 0).
1339  */
1340 void
1341 nfs_timer(void *arg /* never used */)
1342 {
1343 	struct nfsreq *rep;
1344 	struct mbuf *m;
1345 	struct socket *so;
1346 	struct nfsmount *nmp;
1347 	int timeo;
1348 	int error;
1349 #ifndef NFS_NOSERVER
1350 	struct nfssvc_sock *slp;
1351 	u_quad_t cur_usec;
1352 #endif /* NFS_NOSERVER */
1353 	struct thread *td = &thread0; /* XXX for credentials, will break if sleep */
1354 
1355 	crit_enter();
1356 	TAILQ_FOREACH(rep, &nfs_reqq, r_chain) {
1357 		nmp = rep->r_nmp;
1358 		if (rep->r_mrep || (rep->r_flags & (R_SOFTTERM|R_MASKTIMER)))
1359 			continue;
1360 		rep->r_flags |= R_LOCKED;
1361 		if (nfs_sigintr(nmp, rep, rep->r_td)) {
1362 			nfs_softterm(rep);
1363 			goto skip;
1364 		}
1365 		if (rep->r_rtt >= 0) {
1366 			rep->r_rtt++;
1367 			if (nmp->nm_flag & NFSMNT_DUMBTIMR)
1368 				timeo = nmp->nm_timeo;
1369 			else
1370 				timeo = NFS_RTO(nmp, proct[rep->r_procnum]);
1371 			if (nmp->nm_timeouts > 0)
1372 				timeo *= nfs_backoff[nmp->nm_timeouts - 1];
1373 			if (rep->r_rtt <= timeo)
1374 				goto skip;
1375 			if (nmp->nm_timeouts < 8)
1376 				nmp->nm_timeouts++;
1377 		}
1378 		/*
1379 		 * Check for server not responding
1380 		 */
1381 		if ((rep->r_flags & R_TPRINTFMSG) == 0 &&
1382 		     rep->r_rexmit > nmp->nm_deadthresh) {
1383 			nfs_msg(rep->r_td,
1384 			    nmp->nm_mountp->mnt_stat.f_mntfromname,
1385 			    "not responding");
1386 			rep->r_flags |= R_TPRINTFMSG;
1387 		}
1388 		if (rep->r_rexmit >= rep->r_retry) {	/* too many */
1389 			nfsstats.rpctimeouts++;
1390 			nfs_softterm(rep);
1391 			goto skip;
1392 		}
1393 		if (nmp->nm_sotype != SOCK_DGRAM) {
1394 			if (++rep->r_rexmit > NFS_MAXREXMIT)
1395 				rep->r_rexmit = NFS_MAXREXMIT;
1396 			goto skip;
1397 		}
1398 		if ((so = nmp->nm_so) == NULL)
1399 			goto skip;
1400 
1401 		/*
1402 		 * If there is enough space and the window allows..
1403 		 *	Resend it
1404 		 * Set r_rtt to -1 in case we fail to send it now.
1405 		 */
1406 		rep->r_rtt = -1;
1407 		if (sbspace(&so->so_snd) >= rep->r_mreq->m_pkthdr.len &&
1408 		   ((nmp->nm_flag & NFSMNT_DUMBTIMR) ||
1409 		    (rep->r_flags & R_SENT) ||
1410 		    nmp->nm_sent < nmp->nm_cwnd) &&
1411 		   (m = m_copym(rep->r_mreq, 0, M_COPYALL, MB_DONTWAIT))){
1412 			if ((nmp->nm_flag & NFSMNT_NOCONN) == 0)
1413 			    error = so_pru_send(so, 0, m, (struct sockaddr *)0,
1414 				     (struct mbuf *)0, td);
1415 			else
1416 			    error = so_pru_send(so, 0, m, nmp->nm_nam,
1417 			        (struct mbuf *)0, td);
1418 			if (error) {
1419 				if (NFSIGNORE_SOERROR(nmp->nm_soflags, error))
1420 					so->so_error = 0;
1421 			} else if (rep->r_mrep == NULL) {
1422 				/*
1423 				 * Iff first send, start timing
1424 				 * else turn timing off, backoff timer
1425 				 * and divide congestion window by 2.
1426 				 *
1427 				 * It is possible for the so_pru_send() to
1428 				 * block and for us to race a reply so we
1429 				 * only do this if the reply field has not
1430 				 * been filled in.  R_LOCKED will prevent
1431 				 * the request from being ripped out from under
1432 				 * us entirely.
1433 				 */
1434 				if (rep->r_flags & R_SENT) {
1435 					rep->r_flags &= ~R_TIMING;
1436 					if (++rep->r_rexmit > NFS_MAXREXMIT)
1437 						rep->r_rexmit = NFS_MAXREXMIT;
1438 					nmp->nm_cwnd >>= 1;
1439 					if (nmp->nm_cwnd < NFS_CWNDSCALE)
1440 						nmp->nm_cwnd = NFS_CWNDSCALE;
1441 					nfsstats.rpcretries++;
1442 				} else {
1443 					rep->r_flags |= R_SENT;
1444 					nmp->nm_sent += NFS_CWNDSCALE;
1445 				}
1446 				rep->r_rtt = 0;
1447 			}
1448 		}
1449 skip:
1450 		rep->r_flags &= ~R_LOCKED;
1451 	}
1452 #ifndef NFS_NOSERVER
1453 
1454 	/*
1455 	 * Scan the write gathering queues for writes that need to be
1456 	 * completed now.
1457 	 */
1458 	cur_usec = nfs_curusec();
1459 	TAILQ_FOREACH(slp, &nfssvc_sockhead, ns_chain) {
1460 	    if (slp->ns_tq.lh_first && slp->ns_tq.lh_first->nd_time<=cur_usec)
1461 		nfsrv_wakenfsd(slp, 1);
1462 	}
1463 #endif /* NFS_NOSERVER */
1464 
1465 	/*
1466 	 * Due to possible blocking, a client operation may be waiting for
1467 	 * us to finish processing this request so it can remove it.
1468 	 */
1469 	if (nfs_timer_raced) {
1470 		nfs_timer_raced = 0;
1471 		wakeup(&nfs_timer_raced);
1472 	}
1473 	crit_exit();
1474 	callout_reset(&nfs_timer_handle, nfs_ticks, nfs_timer, NULL);
1475 }
1476 
1477 /*
1478  * Mark all of an nfs mount's outstanding requests with R_SOFTTERM and
1479  * wait for all requests to complete. This is used by forced unmounts
1480  * to terminate any outstanding RPCs.
1481  */
1482 int
1483 nfs_nmcancelreqs(struct nfsmount *nmp)
1484 {
1485 	struct nfsreq *req;
1486 	int i;
1487 
1488 	crit_enter();
1489 	TAILQ_FOREACH(req, &nfs_reqq, r_chain) {
1490 		if (nmp != req->r_nmp || req->r_mrep != NULL ||
1491 		    (req->r_flags & R_SOFTTERM)) {
1492 			continue;
1493 		}
1494 		nfs_softterm(req);
1495 	}
1496 	crit_exit();
1497 
1498 	for (i = 0; i < 30; i++) {
1499 		crit_enter();
1500 		TAILQ_FOREACH(req, &nfs_reqq, r_chain) {
1501 			if (nmp == req->r_nmp)
1502 				break;
1503 		}
1504 		crit_exit();
1505 		if (req == NULL)
1506 			return (0);
1507 		tsleep(&lbolt, 0, "nfscancel", 0);
1508 	}
1509 	return (EBUSY);
1510 }
1511 
1512 /*
1513  * Flag a request as being about to terminate (due to NFSMNT_INT/NFSMNT_SOFT).
1514  * The nm_send count is decremented now to avoid deadlocks when the process in
1515  * soreceive() hasn't yet managed to send its own request.
1516  *
1517  * This routine must be called at splsoftclock() to protect r_flags and
1518  * nm_sent.
1519  */
1520 
1521 static void
1522 nfs_softterm(struct nfsreq *rep)
1523 {
1524 	rep->r_flags |= R_SOFTTERM;
1525 
1526 	if (rep->r_flags & R_SENT) {
1527 		rep->r_nmp->nm_sent -= NFS_CWNDSCALE;
1528 		rep->r_flags &= ~R_SENT;
1529 	}
1530 }
1531 
1532 /*
1533  * Test for a termination condition pending on the process.
1534  * This is used for NFSMNT_INT mounts.
1535  */
1536 int
1537 nfs_sigintr(struct nfsmount *nmp, struct nfsreq *rep, struct thread *td)
1538 {
1539 	sigset_t tmpset;
1540 	struct proc *p;
1541 
1542 	if (rep && (rep->r_flags & R_SOFTTERM))
1543 		return (EINTR);
1544 	/* Terminate all requests while attempting a forced unmount. */
1545 	if (nmp->nm_mountp->mnt_kern_flag & MNTK_UNMOUNTF)
1546 		return (EINTR);
1547 	if (!(nmp->nm_flag & NFSMNT_INT))
1548 		return (0);
1549 	/* td might be NULL YYY */
1550 	if (td == NULL || (p = td->td_proc) == NULL)
1551 		return (0);
1552 
1553 	tmpset = p->p_siglist;
1554 	SIGSETNAND(tmpset, p->p_sigmask);
1555 	SIGSETNAND(tmpset, p->p_sigignore);
1556 	if (SIGNOTEMPTY(p->p_siglist) && NFSINT_SIGMASK(tmpset))
1557 		return (EINTR);
1558 
1559 	return (0);
1560 }
1561 
1562 /*
1563  * Lock a socket against others.
1564  * Necessary for STREAM sockets to ensure you get an entire rpc request/reply
1565  * and also to avoid race conditions between the processes with nfs requests
1566  * in progress when a reconnect is necessary.
1567  */
1568 int
1569 nfs_sndlock(struct nfsreq *rep)
1570 {
1571 	int *statep = &rep->r_nmp->nm_state;
1572 	struct thread *td;
1573 	int slptimeo;
1574 	int slpflag;
1575 	int error;
1576 
1577 	slpflag = 0;
1578 	slptimeo = 0;
1579 	td = rep->r_td;
1580 	if (rep->r_nmp->nm_flag & NFSMNT_INT)
1581 		slpflag = PCATCH;
1582 
1583 	error = 0;
1584 	crit_enter();
1585 	while (*statep & NFSSTA_SNDLOCK) {
1586 		*statep |= NFSSTA_WANTSND;
1587 		if (nfs_sigintr(rep->r_nmp, rep, td)) {
1588 			error = EINTR;
1589 			break;
1590 		}
1591 		tsleep((caddr_t)statep, slpflag, "nfsndlck", slptimeo);
1592 		if (slpflag == PCATCH) {
1593 			slpflag = 0;
1594 			slptimeo = 2 * hz;
1595 		}
1596 	}
1597 	/* Always fail if our request has been cancelled. */
1598 	if ((rep->r_flags & R_SOFTTERM))
1599 		error = EINTR;
1600 	if (error == 0)
1601 		*statep |= NFSSTA_SNDLOCK;
1602 	crit_exit();
1603 	return (error);
1604 }
1605 
1606 /*
1607  * Unlock the stream socket for others.
1608  */
1609 void
1610 nfs_sndunlock(struct nfsreq *rep)
1611 {
1612 	int *statep = &rep->r_nmp->nm_state;
1613 
1614 	if ((*statep & NFSSTA_SNDLOCK) == 0)
1615 		panic("nfs sndunlock");
1616 	crit_enter();
1617 	*statep &= ~NFSSTA_SNDLOCK;
1618 	if (*statep & NFSSTA_WANTSND) {
1619 		*statep &= ~NFSSTA_WANTSND;
1620 		wakeup((caddr_t)statep);
1621 	}
1622 	crit_exit();
1623 }
1624 
1625 static int
1626 nfs_rcvlock(struct nfsreq *rep)
1627 {
1628 	int *statep = &rep->r_nmp->nm_state;
1629 	int slpflag;
1630 	int slptimeo;
1631 	int error;
1632 
1633 	/*
1634 	 * Unconditionally check for completion in case another nfsiod
1635 	 * get the packet while the caller was blocked, before the caller
1636 	 * called us.  Packet reception is handled by mainline code which
1637 	 * is protected by the BGL at the moment.
1638 	 *
1639 	 * We do not strictly need the second check just before the
1640 	 * tsleep(), but it's good defensive programming.
1641 	 */
1642 	if (rep->r_mrep != NULL)
1643 		return (EALREADY);
1644 
1645 	if (rep->r_nmp->nm_flag & NFSMNT_INT)
1646 		slpflag = PCATCH;
1647 	else
1648 		slpflag = 0;
1649 	slptimeo = 0;
1650 	error = 0;
1651 	crit_enter();
1652 	while (*statep & NFSSTA_RCVLOCK) {
1653 		if (nfs_sigintr(rep->r_nmp, rep, rep->r_td)) {
1654 			error = EINTR;
1655 			break;
1656 		}
1657 		if (rep->r_mrep != NULL) {
1658 			error = EALREADY;
1659 			break;
1660 		}
1661 		*statep |= NFSSTA_WANTRCV;
1662 		tsleep((caddr_t)statep, slpflag, "nfsrcvlk", slptimeo);
1663 		/*
1664 		 * If our reply was recieved while we were sleeping,
1665 		 * then just return without taking the lock to avoid a
1666 		 * situation where a single iod could 'capture' the
1667 		 * recieve lock.
1668 		 */
1669 		if (rep->r_mrep != NULL) {
1670 			error = EALREADY;
1671 			break;
1672 		}
1673 		if (slpflag == PCATCH) {
1674 			slpflag = 0;
1675 			slptimeo = 2 * hz;
1676 		}
1677 	}
1678 	if (error == 0) {
1679 		*statep |= NFSSTA_RCVLOCK;
1680 		rep->r_nmp->nm_rcvlock_td = curthread;	/* DEBUGGING */
1681 	}
1682 	crit_exit();
1683 	return (error);
1684 }
1685 
1686 /*
1687  * Unlock the stream socket for others.
1688  */
1689 static void
1690 nfs_rcvunlock(struct nfsreq *rep)
1691 {
1692 	int *statep = &rep->r_nmp->nm_state;
1693 
1694 	if ((*statep & NFSSTA_RCVLOCK) == 0)
1695 		panic("nfs rcvunlock");
1696 	crit_enter();
1697 	rep->r_nmp->nm_rcvlock_td = (void *)-1;	/* DEBUGGING */
1698 	*statep &= ~NFSSTA_RCVLOCK;
1699 	if (*statep & NFSSTA_WANTRCV) {
1700 		*statep &= ~NFSSTA_WANTRCV;
1701 		wakeup((caddr_t)statep);
1702 	}
1703 	crit_exit();
1704 }
1705 
1706 /*
1707  *	nfs_realign:
1708  *
1709  *	Check for badly aligned mbuf data and realign by copying the unaligned
1710  *	portion of the data into a new mbuf chain and freeing the portions
1711  *	of the old chain that were replaced.
1712  *
1713  *	We cannot simply realign the data within the existing mbuf chain
1714  *	because the underlying buffers may contain other rpc commands and
1715  *	we cannot afford to overwrite them.
1716  *
1717  *	We would prefer to avoid this situation entirely.  The situation does
1718  *	not occur with NFS/UDP and is supposed to only occassionally occur
1719  *	with TCP.  Use vfs.nfs.realign_count and realign_test to check this.
1720  */
1721 static void
1722 nfs_realign(struct mbuf **pm, int hsiz)
1723 {
1724 	struct mbuf *m;
1725 	struct mbuf *n = NULL;
1726 	int off = 0;
1727 
1728 	++nfs_realign_test;
1729 
1730 	while ((m = *pm) != NULL) {
1731 		if ((m->m_len & 0x3) || (mtod(m, intptr_t) & 0x3)) {
1732 			n = m_getl(m->m_len, MB_WAIT, MT_DATA, 0, NULL);
1733 			n->m_len = 0;
1734 			break;
1735 		}
1736 		pm = &m->m_next;
1737 	}
1738 
1739 	/*
1740 	 * If n is non-NULL, loop on m copying data, then replace the
1741 	 * portion of the chain that had to be realigned.
1742 	 */
1743 	if (n != NULL) {
1744 		++nfs_realign_count;
1745 		while (m) {
1746 			m_copyback(n, off, m->m_len, mtod(m, caddr_t));
1747 			off += m->m_len;
1748 			m = m->m_next;
1749 		}
1750 		m_freem(*pm);
1751 		*pm = n;
1752 	}
1753 }
1754 
1755 #ifndef NFS_NOSERVER
1756 
1757 /*
1758  * Parse an RPC request
1759  * - verify it
1760  * - fill in the cred struct.
1761  */
1762 int
1763 nfs_getreq(struct nfsrv_descript *nd, struct nfsd *nfsd, int has_header)
1764 {
1765 	int len, i;
1766 	u_int32_t *tl;
1767 	int32_t t1;
1768 	struct uio uio;
1769 	struct iovec iov;
1770 	caddr_t dpos, cp2, cp;
1771 	u_int32_t nfsvers, auth_type;
1772 	uid_t nickuid;
1773 	int error = 0, ticklen;
1774 	struct mbuf *mrep, *md;
1775 	struct nfsuid *nuidp;
1776 	struct timeval tvin, tvout;
1777 #if 0				/* until encrypted keys are implemented */
1778 	NFSKERBKEYSCHED_T keys;	/* stores key schedule */
1779 #endif
1780 
1781 	mrep = nd->nd_mrep;
1782 	md = nd->nd_md;
1783 	dpos = nd->nd_dpos;
1784 	if (has_header) {
1785 		nfsm_dissect(tl, u_int32_t *, 10 * NFSX_UNSIGNED);
1786 		nd->nd_retxid = fxdr_unsigned(u_int32_t, *tl++);
1787 		if (*tl++ != rpc_call) {
1788 			m_freem(mrep);
1789 			return (EBADRPC);
1790 		}
1791 	} else
1792 		nfsm_dissect(tl, u_int32_t *, 8 * NFSX_UNSIGNED);
1793 	nd->nd_repstat = 0;
1794 	nd->nd_flag = 0;
1795 	if (*tl++ != rpc_vers) {
1796 		nd->nd_repstat = ERPCMISMATCH;
1797 		nd->nd_procnum = NFSPROC_NOOP;
1798 		return (0);
1799 	}
1800 	if (*tl != nfs_prog) {
1801 		nd->nd_repstat = EPROGUNAVAIL;
1802 		nd->nd_procnum = NFSPROC_NOOP;
1803 		return (0);
1804 	}
1805 	tl++;
1806 	nfsvers = fxdr_unsigned(u_int32_t, *tl++);
1807 	if (nfsvers < NFS_VER2 || nfsvers > NFS_VER3) {
1808 		nd->nd_repstat = EPROGMISMATCH;
1809 		nd->nd_procnum = NFSPROC_NOOP;
1810 		return (0);
1811 	}
1812 	if (nfsvers == NFS_VER3)
1813 		nd->nd_flag = ND_NFSV3;
1814 	nd->nd_procnum = fxdr_unsigned(u_int32_t, *tl++);
1815 	if (nd->nd_procnum == NFSPROC_NULL)
1816 		return (0);
1817 	if (nd->nd_procnum >= NFS_NPROCS ||
1818 		(nd->nd_procnum >= NQNFSPROC_GETLEASE) ||
1819 		(!nd->nd_flag && nd->nd_procnum > NFSV2PROC_STATFS)) {
1820 		nd->nd_repstat = EPROCUNAVAIL;
1821 		nd->nd_procnum = NFSPROC_NOOP;
1822 		return (0);
1823 	}
1824 	if ((nd->nd_flag & ND_NFSV3) == 0)
1825 		nd->nd_procnum = nfsv3_procid[nd->nd_procnum];
1826 	auth_type = *tl++;
1827 	len = fxdr_unsigned(int, *tl++);
1828 	if (len < 0 || len > RPCAUTH_MAXSIZ) {
1829 		m_freem(mrep);
1830 		return (EBADRPC);
1831 	}
1832 
1833 	nd->nd_flag &= ~ND_KERBAUTH;
1834 	/*
1835 	 * Handle auth_unix or auth_kerb.
1836 	 */
1837 	if (auth_type == rpc_auth_unix) {
1838 		len = fxdr_unsigned(int, *++tl);
1839 		if (len < 0 || len > NFS_MAXNAMLEN) {
1840 			m_freem(mrep);
1841 			return (EBADRPC);
1842 		}
1843 		nfsm_adv(nfsm_rndup(len));
1844 		nfsm_dissect(tl, u_int32_t *, 3 * NFSX_UNSIGNED);
1845 		bzero((caddr_t)&nd->nd_cr, sizeof (struct ucred));
1846 		nd->nd_cr.cr_ref = 1;
1847 		nd->nd_cr.cr_uid = fxdr_unsigned(uid_t, *tl++);
1848 		nd->nd_cr.cr_gid = fxdr_unsigned(gid_t, *tl++);
1849 		len = fxdr_unsigned(int, *tl);
1850 		if (len < 0 || len > RPCAUTH_UNIXGIDS) {
1851 			m_freem(mrep);
1852 			return (EBADRPC);
1853 		}
1854 		nfsm_dissect(tl, u_int32_t *, (len + 2) * NFSX_UNSIGNED);
1855 		for (i = 1; i <= len; i++)
1856 		    if (i < NGROUPS)
1857 			nd->nd_cr.cr_groups[i] = fxdr_unsigned(gid_t, *tl++);
1858 		    else
1859 			tl++;
1860 		nd->nd_cr.cr_ngroups = (len >= NGROUPS) ? NGROUPS : (len + 1);
1861 		if (nd->nd_cr.cr_ngroups > 1)
1862 		    nfsrvw_sort(nd->nd_cr.cr_groups, nd->nd_cr.cr_ngroups);
1863 		len = fxdr_unsigned(int, *++tl);
1864 		if (len < 0 || len > RPCAUTH_MAXSIZ) {
1865 			m_freem(mrep);
1866 			return (EBADRPC);
1867 		}
1868 		if (len > 0)
1869 			nfsm_adv(nfsm_rndup(len));
1870 	} else if (auth_type == rpc_auth_kerb) {
1871 		switch (fxdr_unsigned(int, *tl++)) {
1872 		case RPCAKN_FULLNAME:
1873 			ticklen = fxdr_unsigned(int, *tl);
1874 			*((u_int32_t *)nfsd->nfsd_authstr) = *tl;
1875 			uio.uio_resid = nfsm_rndup(ticklen) + NFSX_UNSIGNED;
1876 			nfsd->nfsd_authlen = uio.uio_resid + NFSX_UNSIGNED;
1877 			if (uio.uio_resid > (len - 2 * NFSX_UNSIGNED)) {
1878 				m_freem(mrep);
1879 				return (EBADRPC);
1880 			}
1881 			uio.uio_offset = 0;
1882 			uio.uio_iov = &iov;
1883 			uio.uio_iovcnt = 1;
1884 			uio.uio_segflg = UIO_SYSSPACE;
1885 			iov.iov_base = (caddr_t)&nfsd->nfsd_authstr[4];
1886 			iov.iov_len = RPCAUTH_MAXSIZ - 4;
1887 			nfsm_mtouio(&uio, uio.uio_resid);
1888 			nfsm_dissect(tl, u_int32_t *, 2 * NFSX_UNSIGNED);
1889 			if (*tl++ != rpc_auth_kerb ||
1890 				fxdr_unsigned(int, *tl) != 4 * NFSX_UNSIGNED) {
1891 				printf("Bad kerb verifier\n");
1892 				nd->nd_repstat = (NFSERR_AUTHERR|AUTH_BADVERF);
1893 				nd->nd_procnum = NFSPROC_NOOP;
1894 				return (0);
1895 			}
1896 			nfsm_dissect(cp, caddr_t, 4 * NFSX_UNSIGNED);
1897 			tl = (u_int32_t *)cp;
1898 			if (fxdr_unsigned(int, *tl) != RPCAKN_FULLNAME) {
1899 				printf("Not fullname kerb verifier\n");
1900 				nd->nd_repstat = (NFSERR_AUTHERR|AUTH_BADVERF);
1901 				nd->nd_procnum = NFSPROC_NOOP;
1902 				return (0);
1903 			}
1904 			cp += NFSX_UNSIGNED;
1905 			bcopy(cp, nfsd->nfsd_verfstr, 3 * NFSX_UNSIGNED);
1906 			nfsd->nfsd_verflen = 3 * NFSX_UNSIGNED;
1907 			nd->nd_flag |= ND_KERBFULL;
1908 			nfsd->nfsd_flag |= NFSD_NEEDAUTH;
1909 			break;
1910 		case RPCAKN_NICKNAME:
1911 			if (len != 2 * NFSX_UNSIGNED) {
1912 				printf("Kerb nickname short\n");
1913 				nd->nd_repstat = (NFSERR_AUTHERR|AUTH_BADCRED);
1914 				nd->nd_procnum = NFSPROC_NOOP;
1915 				return (0);
1916 			}
1917 			nickuid = fxdr_unsigned(uid_t, *tl);
1918 			nfsm_dissect(tl, u_int32_t *, 2 * NFSX_UNSIGNED);
1919 			if (*tl++ != rpc_auth_kerb ||
1920 				fxdr_unsigned(int, *tl) != 3 * NFSX_UNSIGNED) {
1921 				printf("Kerb nick verifier bad\n");
1922 				nd->nd_repstat = (NFSERR_AUTHERR|AUTH_BADVERF);
1923 				nd->nd_procnum = NFSPROC_NOOP;
1924 				return (0);
1925 			}
1926 			nfsm_dissect(tl, u_int32_t *, 3 * NFSX_UNSIGNED);
1927 			tvin.tv_sec = *tl++;
1928 			tvin.tv_usec = *tl;
1929 
1930 			for (nuidp = NUIDHASH(nfsd->nfsd_slp,nickuid)->lh_first;
1931 			    nuidp != 0; nuidp = nuidp->nu_hash.le_next) {
1932 				if (nuidp->nu_cr.cr_uid == nickuid &&
1933 				    (!nd->nd_nam2 ||
1934 				     netaddr_match(NU_NETFAM(nuidp),
1935 				      &nuidp->nu_haddr, nd->nd_nam2)))
1936 					break;
1937 			}
1938 			if (!nuidp) {
1939 				nd->nd_repstat =
1940 					(NFSERR_AUTHERR|AUTH_REJECTCRED);
1941 				nd->nd_procnum = NFSPROC_NOOP;
1942 				return (0);
1943 			}
1944 
1945 			/*
1946 			 * Now, decrypt the timestamp using the session key
1947 			 * and validate it.
1948 			 */
1949 #ifdef NFSKERB
1950 			XXX
1951 #endif
1952 
1953 			tvout.tv_sec = fxdr_unsigned(long, tvout.tv_sec);
1954 			tvout.tv_usec = fxdr_unsigned(long, tvout.tv_usec);
1955 			if (nuidp->nu_expire < time_second ||
1956 			    nuidp->nu_timestamp.tv_sec > tvout.tv_sec ||
1957 			    (nuidp->nu_timestamp.tv_sec == tvout.tv_sec &&
1958 			     nuidp->nu_timestamp.tv_usec > tvout.tv_usec)) {
1959 				nuidp->nu_expire = 0;
1960 				nd->nd_repstat =
1961 				    (NFSERR_AUTHERR|AUTH_REJECTVERF);
1962 				nd->nd_procnum = NFSPROC_NOOP;
1963 				return (0);
1964 			}
1965 			nfsrv_setcred(&nuidp->nu_cr, &nd->nd_cr);
1966 			nd->nd_flag |= ND_KERBNICK;
1967 		};
1968 	} else {
1969 		nd->nd_repstat = (NFSERR_AUTHERR | AUTH_REJECTCRED);
1970 		nd->nd_procnum = NFSPROC_NOOP;
1971 		return (0);
1972 	}
1973 
1974 	nd->nd_md = md;
1975 	nd->nd_dpos = dpos;
1976 	return (0);
1977 nfsmout:
1978 	return (error);
1979 }
1980 
1981 #endif
1982 
1983 /*
1984  * Send a message to the originating process's terminal.  The thread and/or
1985  * process may be NULL.  YYY the thread should not be NULL but there may
1986  * still be some uio_td's that are still being passed as NULL through to
1987  * nfsm_request().
1988  */
1989 static int
1990 nfs_msg(struct thread *td, char *server, char *msg)
1991 {
1992 	tpr_t tpr;
1993 
1994 	if (td && td->td_proc)
1995 		tpr = tprintf_open(td->td_proc);
1996 	else
1997 		tpr = NULL;
1998 	tprintf(tpr, "nfs server %s: %s\n", server, msg);
1999 	tprintf_close(tpr);
2000 	return (0);
2001 }
2002 
2003 #ifndef NFS_NOSERVER
2004 /*
2005  * Socket upcall routine for the nfsd sockets.
2006  * The caddr_t arg is a pointer to the "struct nfssvc_sock".
2007  * Essentially do as much as possible non-blocking, else punt and it will
2008  * be called with MB_WAIT from an nfsd.
2009  */
2010 void
2011 nfsrv_rcv(struct socket *so, void *arg, int waitflag)
2012 {
2013 	struct nfssvc_sock *slp = (struct nfssvc_sock *)arg;
2014 	struct mbuf *m;
2015 	struct mbuf *mp;
2016 	struct sockaddr *nam;
2017 	struct uio auio;
2018 	int flags, error;
2019 	int nparallel_wakeup = 0;
2020 
2021 	if ((slp->ns_flag & SLP_VALID) == 0)
2022 		return;
2023 
2024 	/*
2025 	 * Do not allow an infinite number of completed RPC records to build
2026 	 * up before we stop reading data from the socket.  Otherwise we could
2027 	 * end up holding onto an unreasonable number of mbufs for requests
2028 	 * waiting for service.
2029 	 *
2030 	 * This should give pretty good feedback to the TCP
2031 	 * layer and prevents a memory crunch for other protocols.
2032 	 *
2033 	 * Note that the same service socket can be dispatched to several
2034 	 * nfs servers simultaniously.
2035 	 *
2036 	 * the tcp protocol callback calls us with MB_DONTWAIT.
2037 	 * nfsd calls us with MB_WAIT (typically).
2038 	 */
2039 	if (waitflag == MB_DONTWAIT && slp->ns_numrec >= nfsd_waiting / 2 + 1) {
2040 		slp->ns_flag |= SLP_NEEDQ;
2041 		goto dorecs;
2042 	}
2043 
2044 	/*
2045 	 * Handle protocol specifics to parse an RPC request.  We always
2046 	 * pull from the socket using non-blocking I/O.
2047 	 */
2048 	auio.uio_td = NULL;
2049 	if (so->so_type == SOCK_STREAM) {
2050 		/*
2051 		 * The data has to be read in an orderly fashion from a TCP
2052 		 * stream, unlike a UDP socket.  It is possible for soreceive
2053 		 * and/or nfsrv_getstream() to block, so make sure only one
2054 		 * entity is messing around with the TCP stream at any given
2055 		 * moment.  The receive sockbuf's lock in soreceive is not
2056 		 * sufficient.
2057 		 *
2058 		 * Note that this procedure can be called from any number of
2059 		 * NFS severs *OR* can be upcalled directly from a TCP
2060 		 * protocol thread.
2061 		 */
2062 		if (slp->ns_flag & SLP_GETSTREAM) {
2063 			slp->ns_flag |= SLP_NEEDQ;
2064 			goto dorecs;
2065 		}
2066 		slp->ns_flag |= SLP_GETSTREAM;
2067 
2068 		/*
2069 		 * Do soreceive().
2070 		 */
2071 		auio.uio_resid = 1000000000;
2072 		flags = MSG_DONTWAIT;
2073 		error = so_pru_soreceive(so, &nam, &auio, &mp, NULL, &flags);
2074 		if (error || mp == (struct mbuf *)0) {
2075 			if (error == EWOULDBLOCK)
2076 				slp->ns_flag |= SLP_NEEDQ;
2077 			else
2078 				slp->ns_flag |= SLP_DISCONN;
2079 			slp->ns_flag &= ~SLP_GETSTREAM;
2080 			goto dorecs;
2081 		}
2082 		m = mp;
2083 		if (slp->ns_rawend) {
2084 			slp->ns_rawend->m_next = m;
2085 			slp->ns_cc += 1000000000 - auio.uio_resid;
2086 		} else {
2087 			slp->ns_raw = m;
2088 			slp->ns_cc = 1000000000 - auio.uio_resid;
2089 		}
2090 		while (m->m_next)
2091 			m = m->m_next;
2092 		slp->ns_rawend = m;
2093 
2094 		/*
2095 		 * Now try and parse as many record(s) as we can out of the
2096 		 * raw stream data.
2097 		 */
2098 		error = nfsrv_getstream(slp, waitflag, &nparallel_wakeup);
2099 		if (error) {
2100 			if (error == EPERM)
2101 				slp->ns_flag |= SLP_DISCONN;
2102 			else
2103 				slp->ns_flag |= SLP_NEEDQ;
2104 		}
2105 		slp->ns_flag &= ~SLP_GETSTREAM;
2106 	} else {
2107 		/*
2108 		 * For UDP soreceive typically pulls just one packet, loop
2109 		 * to get the whole batch.
2110 		 */
2111 		do {
2112 			auio.uio_resid = 1000000000;
2113 			flags = MSG_DONTWAIT;
2114 			error = so_pru_soreceive(so, &nam, &auio, &mp, NULL,
2115 			    &flags);
2116 			if (mp) {
2117 				struct nfsrv_rec *rec;
2118 				int mf = (waitflag & MB_DONTWAIT) ?
2119 					    M_NOWAIT : M_WAITOK;
2120 				rec = malloc(sizeof(struct nfsrv_rec),
2121 					     M_NFSRVDESC, mf);
2122 				if (!rec) {
2123 					if (nam)
2124 						FREE(nam, M_SONAME);
2125 					m_freem(mp);
2126 					continue;
2127 				}
2128 				nfs_realign(&mp, 10 * NFSX_UNSIGNED);
2129 				rec->nr_address = nam;
2130 				rec->nr_packet = mp;
2131 				STAILQ_INSERT_TAIL(&slp->ns_rec, rec, nr_link);
2132 				++slp->ns_numrec;
2133 				++nparallel_wakeup;
2134 			}
2135 			if (error) {
2136 				if ((so->so_proto->pr_flags & PR_CONNREQUIRED)
2137 					&& error != EWOULDBLOCK) {
2138 					slp->ns_flag |= SLP_DISCONN;
2139 					goto dorecs;
2140 				}
2141 			}
2142 		} while (mp);
2143 	}
2144 
2145 	/*
2146 	 * If we were upcalled from the tcp protocol layer and we have
2147 	 * fully parsed records ready to go, or there is new data pending,
2148 	 * or something went wrong, try to wake up an nfsd thread to deal
2149 	 * with it.
2150 	 */
2151 dorecs:
2152 	if (waitflag == MB_DONTWAIT && (slp->ns_numrec > 0
2153 	     || (slp->ns_flag & (SLP_NEEDQ | SLP_DISCONN)))) {
2154 		nfsrv_wakenfsd(slp, nparallel_wakeup);
2155 	}
2156 }
2157 
2158 /*
2159  * Try and extract an RPC request from the mbuf data list received on a
2160  * stream socket. The "waitflag" argument indicates whether or not it
2161  * can sleep.
2162  */
2163 static int
2164 nfsrv_getstream(struct nfssvc_sock *slp, int waitflag, int *countp)
2165 {
2166 	struct mbuf *m, **mpp;
2167 	char *cp1, *cp2;
2168 	int len;
2169 	struct mbuf *om, *m2, *recm;
2170 	u_int32_t recmark;
2171 
2172 	for (;;) {
2173 	    if (slp->ns_reclen == 0) {
2174 		if (slp->ns_cc < NFSX_UNSIGNED)
2175 			return (0);
2176 		m = slp->ns_raw;
2177 		if (m->m_len >= NFSX_UNSIGNED) {
2178 			bcopy(mtod(m, caddr_t), (caddr_t)&recmark, NFSX_UNSIGNED);
2179 			m->m_data += NFSX_UNSIGNED;
2180 			m->m_len -= NFSX_UNSIGNED;
2181 		} else {
2182 			cp1 = (caddr_t)&recmark;
2183 			cp2 = mtod(m, caddr_t);
2184 			while (cp1 < ((caddr_t)&recmark) + NFSX_UNSIGNED) {
2185 				while (m->m_len == 0) {
2186 					m = m->m_next;
2187 					cp2 = mtod(m, caddr_t);
2188 				}
2189 				*cp1++ = *cp2++;
2190 				m->m_data++;
2191 				m->m_len--;
2192 			}
2193 		}
2194 		slp->ns_cc -= NFSX_UNSIGNED;
2195 		recmark = ntohl(recmark);
2196 		slp->ns_reclen = recmark & ~0x80000000;
2197 		if (recmark & 0x80000000)
2198 			slp->ns_flag |= SLP_LASTFRAG;
2199 		else
2200 			slp->ns_flag &= ~SLP_LASTFRAG;
2201 		if (slp->ns_reclen > NFS_MAXPACKET || slp->ns_reclen <= 0) {
2202 			log(LOG_ERR, "%s (%d) from nfs client\n",
2203 			    "impossible packet length",
2204 			    slp->ns_reclen);
2205 			return (EPERM);
2206 		}
2207 	    }
2208 
2209 	    /*
2210 	     * Now get the record part.
2211 	     *
2212 	     * Note that slp->ns_reclen may be 0.  Linux sometimes
2213 	     * generates 0-length RPCs
2214 	     */
2215 	    recm = NULL;
2216 	    if (slp->ns_cc == slp->ns_reclen) {
2217 		recm = slp->ns_raw;
2218 		slp->ns_raw = slp->ns_rawend = (struct mbuf *)0;
2219 		slp->ns_cc = slp->ns_reclen = 0;
2220 	    } else if (slp->ns_cc > slp->ns_reclen) {
2221 		len = 0;
2222 		m = slp->ns_raw;
2223 		om = (struct mbuf *)0;
2224 
2225 		while (len < slp->ns_reclen) {
2226 			if ((len + m->m_len) > slp->ns_reclen) {
2227 				m2 = m_copym(m, 0, slp->ns_reclen - len,
2228 					waitflag);
2229 				if (m2) {
2230 					if (om) {
2231 						om->m_next = m2;
2232 						recm = slp->ns_raw;
2233 					} else
2234 						recm = m2;
2235 					m->m_data += slp->ns_reclen - len;
2236 					m->m_len -= slp->ns_reclen - len;
2237 					len = slp->ns_reclen;
2238 				} else {
2239 					return (EWOULDBLOCK);
2240 				}
2241 			} else if ((len + m->m_len) == slp->ns_reclen) {
2242 				om = m;
2243 				len += m->m_len;
2244 				m = m->m_next;
2245 				recm = slp->ns_raw;
2246 				om->m_next = (struct mbuf *)0;
2247 			} else {
2248 				om = m;
2249 				len += m->m_len;
2250 				m = m->m_next;
2251 			}
2252 		}
2253 		slp->ns_raw = m;
2254 		slp->ns_cc -= len;
2255 		slp->ns_reclen = 0;
2256 	    } else {
2257 		return (0);
2258 	    }
2259 
2260 	    /*
2261 	     * Accumulate the fragments into a record.
2262 	     */
2263 	    mpp = &slp->ns_frag;
2264 	    while (*mpp)
2265 		mpp = &((*mpp)->m_next);
2266 	    *mpp = recm;
2267 	    if (slp->ns_flag & SLP_LASTFRAG) {
2268 		struct nfsrv_rec *rec;
2269 		int mf = (waitflag & MB_DONTWAIT) ? M_NOWAIT : M_WAITOK;
2270 		rec = malloc(sizeof(struct nfsrv_rec), M_NFSRVDESC, mf);
2271 		if (!rec) {
2272 		    m_freem(slp->ns_frag);
2273 		} else {
2274 		    nfs_realign(&slp->ns_frag, 10 * NFSX_UNSIGNED);
2275 		    rec->nr_address = (struct sockaddr *)0;
2276 		    rec->nr_packet = slp->ns_frag;
2277 		    STAILQ_INSERT_TAIL(&slp->ns_rec, rec, nr_link);
2278 		    ++slp->ns_numrec;
2279 		    ++*countp;
2280 		}
2281 		slp->ns_frag = (struct mbuf *)0;
2282 	    }
2283 	}
2284 }
2285 
2286 /*
2287  * Parse an RPC header.
2288  */
2289 int
2290 nfsrv_dorec(struct nfssvc_sock *slp, struct nfsd *nfsd,
2291 	    struct nfsrv_descript **ndp)
2292 {
2293 	struct nfsrv_rec *rec;
2294 	struct mbuf *m;
2295 	struct sockaddr *nam;
2296 	struct nfsrv_descript *nd;
2297 	int error;
2298 
2299 	*ndp = NULL;
2300 	if ((slp->ns_flag & SLP_VALID) == 0 || !STAILQ_FIRST(&slp->ns_rec))
2301 		return (ENOBUFS);
2302 	rec = STAILQ_FIRST(&slp->ns_rec);
2303 	STAILQ_REMOVE_HEAD(&slp->ns_rec, nr_link);
2304 	KKASSERT(slp->ns_numrec > 0);
2305 	--slp->ns_numrec;
2306 	nam = rec->nr_address;
2307 	m = rec->nr_packet;
2308 	free(rec, M_NFSRVDESC);
2309 	MALLOC(nd, struct nfsrv_descript *, sizeof (struct nfsrv_descript),
2310 		M_NFSRVDESC, M_WAITOK);
2311 	nd->nd_md = nd->nd_mrep = m;
2312 	nd->nd_nam2 = nam;
2313 	nd->nd_dpos = mtod(m, caddr_t);
2314 	error = nfs_getreq(nd, nfsd, TRUE);
2315 	if (error) {
2316 		if (nam) {
2317 			FREE(nam, M_SONAME);
2318 		}
2319 		free((caddr_t)nd, M_NFSRVDESC);
2320 		return (error);
2321 	}
2322 	*ndp = nd;
2323 	nfsd->nfsd_nd = nd;
2324 	return (0);
2325 }
2326 
2327 /*
2328  * Try to assign service sockets to nfsd threads based on the number
2329  * of new rpc requests that have been queued on the service socket.
2330  *
2331  * If no nfsd's are available or additonal requests are pending, set the
2332  * NFSD_CHECKSLP flag so that one of the running nfsds will go look for
2333  * the work in the nfssvc_sock list when it is finished processing its
2334  * current work.  This flag is only cleared when an nfsd can not find
2335  * any new work to perform.
2336  */
2337 void
2338 nfsrv_wakenfsd(struct nfssvc_sock *slp, int nparallel)
2339 {
2340 	struct nfsd *nd;
2341 
2342 	if ((slp->ns_flag & SLP_VALID) == 0)
2343 		return;
2344 	if (nparallel <= 1)
2345 		nparallel = 1;
2346 	TAILQ_FOREACH(nd, &nfsd_head, nfsd_chain) {
2347 		if (nd->nfsd_flag & NFSD_WAITING) {
2348 			nd->nfsd_flag &= ~NFSD_WAITING;
2349 			if (nd->nfsd_slp)
2350 				panic("nfsd wakeup");
2351 			slp->ns_sref++;
2352 			nd->nfsd_slp = slp;
2353 			wakeup((caddr_t)nd);
2354 			if (--nparallel == 0)
2355 				break;
2356 		}
2357 	}
2358 	if (nparallel) {
2359 		slp->ns_flag |= SLP_DOREC;
2360 		nfsd_head_flag |= NFSD_CHECKSLP;
2361 	}
2362 }
2363 #endif /* NFS_NOSERVER */
2364