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