nfs_syscalls.c revision 1.28 1 1.28 thorpej /* $NetBSD: nfs_syscalls.c,v 1.28 1998/02/19 00:54:13 thorpej Exp $ */
2 1.11 cgd
3 1.1 cgd /*
4 1.10 mycroft * Copyright (c) 1989, 1993
5 1.10 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.19 fvdl * @(#)nfs_syscalls.c 8.5 (Berkeley) 3/30/95
39 1.1 cgd */
40 1.28 thorpej
41 1.28 thorpej #include "fs_nfs.h"
42 1.1 cgd
43 1.7 mycroft #include <sys/param.h>
44 1.7 mycroft #include <sys/systm.h>
45 1.7 mycroft #include <sys/kernel.h>
46 1.7 mycroft #include <sys/file.h>
47 1.7 mycroft #include <sys/stat.h>
48 1.7 mycroft #include <sys/vnode.h>
49 1.7 mycroft #include <sys/mount.h>
50 1.7 mycroft #include <sys/proc.h>
51 1.10 mycroft #include <sys/uio.h>
52 1.7 mycroft #include <sys/malloc.h>
53 1.7 mycroft #include <sys/buf.h>
54 1.7 mycroft #include <sys/mbuf.h>
55 1.7 mycroft #include <sys/socket.h>
56 1.7 mycroft #include <sys/socketvar.h>
57 1.7 mycroft #include <sys/domain.h>
58 1.7 mycroft #include <sys/protosw.h>
59 1.10 mycroft #include <sys/namei.h>
60 1.10 mycroft #include <sys/syslog.h>
61 1.18 christos #include <sys/filedesc.h>
62 1.1 cgd
63 1.13 cgd #include <sys/syscallargs.h>
64 1.13 cgd
65 1.7 mycroft #include <netinet/in.h>
66 1.7 mycroft #include <netinet/tcp.h>
67 1.10 mycroft #ifdef ISO
68 1.10 mycroft #include <netiso/iso.h>
69 1.10 mycroft #endif
70 1.19 fvdl #include <nfs/xdr_subs.h>
71 1.10 mycroft #include <nfs/rpcv2.h>
72 1.19 fvdl #include <nfs/nfsproto.h>
73 1.7 mycroft #include <nfs/nfs.h>
74 1.19 fvdl #include <nfs/nfsm_subs.h>
75 1.7 mycroft #include <nfs/nfsrvcache.h>
76 1.10 mycroft #include <nfs/nfsmount.h>
77 1.10 mycroft #include <nfs/nfsnode.h>
78 1.10 mycroft #include <nfs/nqnfs.h>
79 1.10 mycroft #include <nfs/nfsrtt.h>
80 1.18 christos #include <nfs/nfs_var.h>
81 1.1 cgd
82 1.19 fvdl void nfsrv_zapsock __P((struct nfssvc_sock *));
83 1.19 fvdl
84 1.1 cgd /* Global defs. */
85 1.19 fvdl extern int32_t (*nfsrv3_procs[NFS_NPROCS]) __P((struct nfsrv_descript *,
86 1.19 fvdl struct nfssvc_sock *,
87 1.19 fvdl struct proc *, struct mbuf **));
88 1.1 cgd extern int nfs_numasync;
89 1.10 mycroft extern time_t nqnfsstarttime;
90 1.10 mycroft extern int nqsrv_writeslack;
91 1.10 mycroft extern int nfsrtton;
92 1.19 fvdl extern struct nfsstats nfsstats;
93 1.19 fvdl extern int nfsrvw_procrastinate;
94 1.10 mycroft struct nfssvc_sock *nfs_udpsock, *nfs_cltpsock;
95 1.10 mycroft int nuidhash_max = NFS_MAXUIDHASH;
96 1.18 christos int nfsd_waiting = 0;
97 1.18 christos #ifdef NFSSERVER
98 1.10 mycroft static int nfs_numnfsd = 0;
99 1.10 mycroft static int notstarted = 1;
100 1.10 mycroft static int modify_flag = 0;
101 1.10 mycroft static struct nfsdrt nfsdrt;
102 1.26 fvdl extern struct nfs_public nfs_pub;
103 1.18 christos #endif
104 1.1 cgd
105 1.1 cgd #define TRUE 1
106 1.1 cgd #define FALSE 0
107 1.1 cgd
108 1.24 thorpej #ifdef NFS
109 1.1 cgd static int nfs_asyncdaemon[NFS_MAXASYNCDAEMON];
110 1.23 thorpej #endif
111 1.19 fvdl
112 1.18 christos #ifdef NFSSERVER
113 1.19 fvdl static void nfsd_rt __P((int, struct nfsrv_descript *, int));
114 1.18 christos #endif
115 1.19 fvdl
116 1.1 cgd /*
117 1.1 cgd * NFS server system calls
118 1.1 cgd * getfh() lives here too, but maybe should move to kern/vfs_syscalls.c
119 1.1 cgd */
120 1.1 cgd
121 1.1 cgd /*
122 1.1 cgd * Get file handle system call
123 1.1 cgd */
124 1.18 christos int
125 1.16 mycroft sys_getfh(p, v, retval)
126 1.1 cgd struct proc *p;
127 1.18 christos register void *v;
128 1.15 thorpej register_t *retval;
129 1.15 thorpej {
130 1.16 mycroft register struct sys_getfh_args /* {
131 1.13 cgd syscallarg(char *) fname;
132 1.13 cgd syscallarg(fhandle_t *) fhp;
133 1.15 thorpej } */ *uap = v;
134 1.1 cgd register struct vnode *vp;
135 1.1 cgd fhandle_t fh;
136 1.1 cgd int error;
137 1.1 cgd struct nameidata nd;
138 1.1 cgd
139 1.1 cgd /*
140 1.1 cgd * Must be super user
141 1.1 cgd */
142 1.19 fvdl error = suser(p->p_ucred, &p->p_acflag);
143 1.25 mycroft if (error)
144 1.1 cgd return (error);
145 1.13 cgd NDINIT(&nd, LOOKUP, FOLLOW | LOCKLEAF, UIO_USERSPACE,
146 1.13 cgd SCARG(uap, fname), p);
147 1.19 fvdl error = namei(&nd);
148 1.19 fvdl if (error)
149 1.1 cgd return (error);
150 1.10 mycroft vp = nd.ni_vp;
151 1.1 cgd bzero((caddr_t)&fh, sizeof(fh));
152 1.1 cgd fh.fh_fsid = vp->v_mount->mnt_stat.f_fsid;
153 1.1 cgd error = VFS_VPTOFH(vp, &fh.fh_fid);
154 1.1 cgd vput(vp);
155 1.1 cgd if (error)
156 1.1 cgd return (error);
157 1.13 cgd error = copyout((caddr_t)&fh, (caddr_t)SCARG(uap, fhp), sizeof (fh));
158 1.1 cgd return (error);
159 1.1 cgd }
160 1.1 cgd
161 1.1 cgd /*
162 1.19 fvdl * Nfs server pseudo system call for the nfsd's
163 1.10 mycroft * Based on the flag value it either:
164 1.10 mycroft * - adds a socket to the selection list
165 1.10 mycroft * - remains in the kernel as an nfsd
166 1.10 mycroft * - remains in the kernel as an nfsiod
167 1.1 cgd */
168 1.18 christos int
169 1.16 mycroft sys_nfssvc(p, v, retval)
170 1.1 cgd struct proc *p;
171 1.15 thorpej void *v;
172 1.15 thorpej register_t *retval;
173 1.15 thorpej {
174 1.16 mycroft register struct sys_nfssvc_args /* {
175 1.13 cgd syscallarg(int) flag;
176 1.13 cgd syscallarg(caddr_t) argp;
177 1.15 thorpej } */ *uap = v;
178 1.23 thorpej int error;
179 1.24 thorpej #ifdef NFS
180 1.10 mycroft struct nameidata nd;
181 1.18 christos struct nfsmount *nmp;
182 1.19 fvdl struct nfsd_cargs ncd;
183 1.19 fvdl #endif
184 1.18 christos #ifdef NFSSERVER
185 1.1 cgd struct file *fp;
186 1.10 mycroft struct mbuf *nam;
187 1.10 mycroft struct nfsd_args nfsdarg;
188 1.10 mycroft struct nfsd_srvargs nfsd_srvargs, *nsd = &nfsd_srvargs;
189 1.10 mycroft struct nfsd *nfsd;
190 1.10 mycroft struct nfssvc_sock *slp;
191 1.18 christos struct nfsuid *nuidp;
192 1.18 christos #endif
193 1.1 cgd
194 1.1 cgd /*
195 1.1 cgd * Must be super user
196 1.1 cgd */
197 1.19 fvdl error = suser(p->p_ucred, &p->p_acflag);
198 1.19 fvdl if(error)
199 1.1 cgd return (error);
200 1.12 mycroft while (nfssvc_sockhead_flag & SLP_INIT) {
201 1.19 fvdl nfssvc_sockhead_flag |= SLP_WANTINIT;
202 1.10 mycroft (void) tsleep((caddr_t)&nfssvc_sockhead, PSOCK, "nfsd init", 0);
203 1.10 mycroft }
204 1.13 cgd if (SCARG(uap, flag) & NFSSVC_BIOD) {
205 1.24 thorpej #ifdef NFS
206 1.19 fvdl error = nfssvc_iod(p);
207 1.19 fvdl #else
208 1.10 mycroft error = ENOSYS;
209 1.19 fvdl #endif
210 1.13 cgd } else if (SCARG(uap, flag) & NFSSVC_MNTD) {
211 1.24 thorpej #ifndef NFS
212 1.10 mycroft error = ENOSYS;
213 1.19 fvdl #else
214 1.18 christos error = copyin(SCARG(uap, argp), (caddr_t)&ncd, sizeof (ncd));
215 1.18 christos if (error)
216 1.10 mycroft return (error);
217 1.10 mycroft NDINIT(&nd, LOOKUP, FOLLOW | LOCKLEAF, UIO_USERSPACE,
218 1.10 mycroft ncd.ncd_dirp, p);
219 1.19 fvdl error = namei(&nd);
220 1.19 fvdl if (error)
221 1.10 mycroft return (error);
222 1.10 mycroft if ((nd.ni_vp->v_flag & VROOT) == 0)
223 1.10 mycroft error = EINVAL;
224 1.10 mycroft nmp = VFSTONFS(nd.ni_vp->v_mount);
225 1.10 mycroft vput(nd.ni_vp);
226 1.10 mycroft if (error)
227 1.10 mycroft return (error);
228 1.27 fvdl if ((nmp->nm_iflag & NFSMNT_MNTD) &&
229 1.19 fvdl (SCARG(uap, flag) & NFSSVC_GOTAUTH) == 0)
230 1.10 mycroft return (0);
231 1.27 fvdl nmp->nm_iflag |= NFSMNT_MNTD;
232 1.13 cgd error = nqnfs_clientd(nmp, p->p_ucred, &ncd, SCARG(uap, flag),
233 1.19 fvdl SCARG(uap, argp), p);
234 1.24 thorpej #endif /* NFS */
235 1.13 cgd } else if (SCARG(uap, flag) & NFSSVC_ADDSOCK) {
236 1.10 mycroft #ifndef NFSSERVER
237 1.10 mycroft error = ENOSYS;
238 1.19 fvdl #else
239 1.18 christos error = copyin(SCARG(uap, argp), (caddr_t)&nfsdarg,
240 1.19 fvdl sizeof(nfsdarg));
241 1.18 christos if (error)
242 1.10 mycroft return (error);
243 1.19 fvdl error = getsock(p->p_fd, nfsdarg.sock, &fp);
244 1.19 fvdl if (error)
245 1.10 mycroft return (error);
246 1.10 mycroft /*
247 1.10 mycroft * Get the client address for connected sockets.
248 1.10 mycroft */
249 1.10 mycroft if (nfsdarg.name == NULL || nfsdarg.namelen == 0)
250 1.10 mycroft nam = (struct mbuf *)0;
251 1.18 christos else {
252 1.18 christos error = sockargs(&nam, nfsdarg.name, nfsdarg.namelen,
253 1.19 fvdl MT_SONAME);
254 1.18 christos if (error)
255 1.18 christos return (error);
256 1.18 christos }
257 1.10 mycroft error = nfssvc_addsock(fp, nam);
258 1.10 mycroft #endif /* !NFSSERVER */
259 1.10 mycroft } else {
260 1.10 mycroft #ifndef NFSSERVER
261 1.10 mycroft error = ENOSYS;
262 1.19 fvdl #else
263 1.18 christos error = copyin(SCARG(uap, argp), (caddr_t)nsd, sizeof (*nsd));
264 1.18 christos if (error)
265 1.10 mycroft return (error);
266 1.13 cgd if ((SCARG(uap, flag) & NFSSVC_AUTHIN) &&
267 1.19 fvdl ((nfsd = nsd->nsd_nfsd)) != NULL &&
268 1.19 fvdl (nfsd->nfsd_slp->ns_flag & SLP_VALID)) {
269 1.19 fvdl slp = nfsd->nfsd_slp;
270 1.10 mycroft
271 1.10 mycroft /*
272 1.10 mycroft * First check to see if another nfsd has already
273 1.10 mycroft * added this credential.
274 1.10 mycroft */
275 1.19 fvdl for (nuidp = NUIDHASH(slp,nsd->nsd_cr.cr_uid)->lh_first;
276 1.12 mycroft nuidp != 0; nuidp = nuidp->nu_hash.le_next) {
277 1.19 fvdl if (nuidp->nu_cr.cr_uid == nsd->nsd_cr.cr_uid &&
278 1.19 fvdl (!nfsd->nfsd_nd->nd_nam2 ||
279 1.19 fvdl netaddr_match(NU_NETFAM(nuidp),
280 1.19 fvdl &nuidp->nu_haddr, nfsd->nfsd_nd->nd_nam2)))
281 1.10 mycroft break;
282 1.10 mycroft }
283 1.19 fvdl if (nuidp) {
284 1.19 fvdl nfsrv_setcred(&nuidp->nu_cr,&nfsd->nfsd_nd->nd_cr);
285 1.19 fvdl nfsd->nfsd_nd->nd_flag |= ND_KERBFULL;
286 1.19 fvdl } else {
287 1.10 mycroft /*
288 1.10 mycroft * Nope, so we will.
289 1.10 mycroft */
290 1.10 mycroft if (slp->ns_numuids < nuidhash_max) {
291 1.10 mycroft slp->ns_numuids++;
292 1.10 mycroft nuidp = (struct nfsuid *)
293 1.10 mycroft malloc(sizeof (struct nfsuid), M_NFSUID,
294 1.10 mycroft M_WAITOK);
295 1.10 mycroft } else
296 1.10 mycroft nuidp = (struct nfsuid *)0;
297 1.10 mycroft if ((slp->ns_flag & SLP_VALID) == 0) {
298 1.10 mycroft if (nuidp)
299 1.10 mycroft free((caddr_t)nuidp, M_NFSUID);
300 1.10 mycroft } else {
301 1.10 mycroft if (nuidp == (struct nfsuid *)0) {
302 1.12 mycroft nuidp = slp->ns_uidlruhead.tqh_first;
303 1.12 mycroft LIST_REMOVE(nuidp, nu_hash);
304 1.12 mycroft TAILQ_REMOVE(&slp->ns_uidlruhead, nuidp,
305 1.12 mycroft nu_lru);
306 1.19 fvdl if (nuidp->nu_flag & NU_NAM)
307 1.19 fvdl m_freem(nuidp->nu_nam);
308 1.10 mycroft }
309 1.19 fvdl nuidp->nu_flag = 0;
310 1.10 mycroft nuidp->nu_cr = nsd->nsd_cr;
311 1.10 mycroft if (nuidp->nu_cr.cr_ngroups > NGROUPS)
312 1.19 fvdl nuidp->nu_cr.cr_ngroups = NGROUPS;
313 1.10 mycroft nuidp->nu_cr.cr_ref = 1;
314 1.19 fvdl nuidp->nu_timestamp = nsd->nsd_timestamp;
315 1.19 fvdl nuidp->nu_expire = time.tv_sec + nsd->nsd_ttl;
316 1.19 fvdl /*
317 1.19 fvdl * and save the session key in nu_key.
318 1.19 fvdl */
319 1.19 fvdl bcopy(nsd->nsd_key, nuidp->nu_key,
320 1.19 fvdl sizeof (nsd->nsd_key));
321 1.19 fvdl if (nfsd->nfsd_nd->nd_nam2) {
322 1.19 fvdl struct sockaddr_in *saddr;
323 1.19 fvdl
324 1.19 fvdl saddr = mtod(nfsd->nfsd_nd->nd_nam2,
325 1.19 fvdl struct sockaddr_in *);
326 1.19 fvdl switch (saddr->sin_family) {
327 1.19 fvdl case AF_INET:
328 1.19 fvdl nuidp->nu_flag |= NU_INETADDR;
329 1.19 fvdl nuidp->nu_inetaddr =
330 1.19 fvdl saddr->sin_addr.s_addr;
331 1.19 fvdl break;
332 1.19 fvdl case AF_ISO:
333 1.19 fvdl default:
334 1.19 fvdl nuidp->nu_flag |= NU_NAM;
335 1.19 fvdl nuidp->nu_nam = m_copym(
336 1.19 fvdl nfsd->nfsd_nd->nd_nam2, 0,
337 1.19 fvdl M_COPYALL, M_WAIT);
338 1.19 fvdl break;
339 1.19 fvdl };
340 1.19 fvdl }
341 1.12 mycroft TAILQ_INSERT_TAIL(&slp->ns_uidlruhead, nuidp,
342 1.19 fvdl nu_lru);
343 1.12 mycroft LIST_INSERT_HEAD(NUIDHASH(slp, nsd->nsd_uid),
344 1.19 fvdl nuidp, nu_hash);
345 1.19 fvdl nfsrv_setcred(&nuidp->nu_cr,
346 1.19 fvdl &nfsd->nfsd_nd->nd_cr);
347 1.19 fvdl nfsd->nfsd_nd->nd_flag |= ND_KERBFULL;
348 1.10 mycroft }
349 1.10 mycroft }
350 1.10 mycroft }
351 1.13 cgd if ((SCARG(uap, flag) & NFSSVC_AUTHINFAIL) &&
352 1.13 cgd (nfsd = nsd->nsd_nfsd))
353 1.19 fvdl nfsd->nfsd_flag |= NFSD_AUTHFAIL;
354 1.13 cgd error = nfssvc_nfsd(nsd, SCARG(uap, argp), p);
355 1.10 mycroft #endif /* !NFSSERVER */
356 1.10 mycroft }
357 1.10 mycroft if (error == EINTR || error == ERESTART)
358 1.10 mycroft error = 0;
359 1.10 mycroft return (error);
360 1.10 mycroft }
361 1.10 mycroft
362 1.10 mycroft #ifdef NFSSERVER
363 1.10 mycroft /*
364 1.10 mycroft * Adds a socket to the list for servicing by nfsds.
365 1.10 mycroft */
366 1.18 christos int
367 1.10 mycroft nfssvc_addsock(fp, mynam)
368 1.10 mycroft struct file *fp;
369 1.10 mycroft struct mbuf *mynam;
370 1.10 mycroft {
371 1.10 mycroft register struct mbuf *m;
372 1.10 mycroft register int siz;
373 1.10 mycroft register struct nfssvc_sock *slp;
374 1.10 mycroft register struct socket *so;
375 1.10 mycroft struct nfssvc_sock *tslp;
376 1.10 mycroft int error, s;
377 1.10 mycroft
378 1.1 cgd so = (struct socket *)fp->f_data;
379 1.10 mycroft tslp = (struct nfssvc_sock *)0;
380 1.10 mycroft /*
381 1.10 mycroft * Add it to the list, as required.
382 1.10 mycroft */
383 1.10 mycroft if (so->so_proto->pr_protocol == IPPROTO_UDP) {
384 1.10 mycroft tslp = nfs_udpsock;
385 1.10 mycroft if (tslp->ns_flag & SLP_VALID) {
386 1.10 mycroft m_freem(mynam);
387 1.10 mycroft return (EPERM);
388 1.10 mycroft }
389 1.10 mycroft #ifdef ISO
390 1.10 mycroft } else if (so->so_proto->pr_protocol == ISOPROTO_CLTP) {
391 1.10 mycroft tslp = nfs_cltpsock;
392 1.10 mycroft if (tslp->ns_flag & SLP_VALID) {
393 1.10 mycroft m_freem(mynam);
394 1.10 mycroft return (EPERM);
395 1.10 mycroft }
396 1.10 mycroft #endif /* ISO */
397 1.10 mycroft }
398 1.10 mycroft if (so->so_type == SOCK_STREAM)
399 1.19 fvdl siz = NFS_MAXPACKET + sizeof (u_long);
400 1.10 mycroft else
401 1.1 cgd siz = NFS_MAXPACKET;
402 1.19 fvdl error = soreserve(so, siz, siz);
403 1.19 fvdl if (error) {
404 1.10 mycroft m_freem(mynam);
405 1.10 mycroft return (error);
406 1.10 mycroft }
407 1.1 cgd
408 1.1 cgd /*
409 1.1 cgd * Set protocol specific options { for now TCP only } and
410 1.1 cgd * reserve some space. For datagram sockets, this can get called
411 1.1 cgd * repeatedly for the same socket, but that isn't harmful.
412 1.1 cgd */
413 1.10 mycroft if (so->so_type == SOCK_STREAM) {
414 1.1 cgd MGET(m, M_WAIT, MT_SOOPTS);
415 1.19 fvdl *mtod(m, int32_t *) = 1;
416 1.19 fvdl m->m_len = sizeof(int32_t);
417 1.1 cgd sosetopt(so, SOL_SOCKET, SO_KEEPALIVE, m);
418 1.1 cgd }
419 1.1 cgd if (so->so_proto->pr_domain->dom_family == AF_INET &&
420 1.10 mycroft so->so_proto->pr_protocol == IPPROTO_TCP) {
421 1.1 cgd MGET(m, M_WAIT, MT_SOOPTS);
422 1.19 fvdl *mtod(m, int32_t *) = 1;
423 1.19 fvdl m->m_len = sizeof(int32_t);
424 1.1 cgd sosetopt(so, IPPROTO_TCP, TCP_NODELAY, m);
425 1.1 cgd }
426 1.1 cgd so->so_rcv.sb_flags &= ~SB_NOINTR;
427 1.1 cgd so->so_rcv.sb_timeo = 0;
428 1.1 cgd so->so_snd.sb_flags &= ~SB_NOINTR;
429 1.1 cgd so->so_snd.sb_timeo = 0;
430 1.10 mycroft if (tslp)
431 1.10 mycroft slp = tslp;
432 1.10 mycroft else {
433 1.10 mycroft slp = (struct nfssvc_sock *)
434 1.10 mycroft malloc(sizeof (struct nfssvc_sock), M_NFSSVC, M_WAITOK);
435 1.10 mycroft bzero((caddr_t)slp, sizeof (struct nfssvc_sock));
436 1.12 mycroft TAILQ_INIT(&slp->ns_uidlruhead);
437 1.12 mycroft TAILQ_INSERT_TAIL(&nfssvc_sockhead, slp, ns_chain);
438 1.10 mycroft }
439 1.10 mycroft slp->ns_so = so;
440 1.10 mycroft slp->ns_nam = mynam;
441 1.10 mycroft fp->f_count++;
442 1.10 mycroft slp->ns_fp = fp;
443 1.14 mycroft s = splsoftnet();
444 1.10 mycroft so->so_upcallarg = (caddr_t)slp;
445 1.10 mycroft so->so_upcall = nfsrv_rcv;
446 1.10 mycroft slp->ns_flag = (SLP_VALID | SLP_NEEDQ);
447 1.10 mycroft nfsrv_wakenfsd(slp);
448 1.10 mycroft splx(s);
449 1.10 mycroft return (0);
450 1.10 mycroft }
451 1.1 cgd
452 1.10 mycroft /*
453 1.10 mycroft * Called by nfssvc() for nfsds. Just loops around servicing rpc requests
454 1.10 mycroft * until it is killed by a signal.
455 1.10 mycroft */
456 1.18 christos int
457 1.10 mycroft nfssvc_nfsd(nsd, argp, p)
458 1.10 mycroft struct nfsd_srvargs *nsd;
459 1.10 mycroft caddr_t argp;
460 1.10 mycroft struct proc *p;
461 1.10 mycroft {
462 1.19 fvdl register struct mbuf *m;
463 1.10 mycroft register int siz;
464 1.10 mycroft register struct nfssvc_sock *slp;
465 1.10 mycroft register struct socket *so;
466 1.10 mycroft register int *solockp;
467 1.19 fvdl struct nfsd *nfsd = nsd->nsd_nfsd;
468 1.19 fvdl struct nfsrv_descript *nd = NULL;
469 1.19 fvdl struct mbuf *mreq;
470 1.19 fvdl int error = 0, cacherep, s, sotype, writes_todo;
471 1.19 fvdl u_quad_t cur_usec;
472 1.19 fvdl
473 1.19 fvdl #ifndef nolint
474 1.19 fvdl cacherep = RC_DOIT;
475 1.19 fvdl writes_todo = 0;
476 1.19 fvdl #endif
477 1.14 mycroft s = splsoftnet();
478 1.19 fvdl if (nfsd == (struct nfsd *)0) {
479 1.19 fvdl nsd->nsd_nfsd = nfsd = (struct nfsd *)
480 1.10 mycroft malloc(sizeof (struct nfsd), M_NFSD, M_WAITOK);
481 1.19 fvdl bzero((caddr_t)nfsd, sizeof (struct nfsd));
482 1.19 fvdl nfsd->nfsd_procp = p;
483 1.19 fvdl TAILQ_INSERT_TAIL(&nfsd_head, nfsd, nfsd_chain);
484 1.10 mycroft nfs_numnfsd++;
485 1.10 mycroft }
486 1.1 cgd /*
487 1.10 mycroft * Loop getting rpc requests until SIGKILL.
488 1.1 cgd */
489 1.1 cgd for (;;) {
490 1.19 fvdl if ((nfsd->nfsd_flag & NFSD_REQINPROG) == 0) {
491 1.19 fvdl while (nfsd->nfsd_slp == (struct nfssvc_sock *)0 &&
492 1.12 mycroft (nfsd_head_flag & NFSD_CHECKSLP) == 0) {
493 1.19 fvdl nfsd->nfsd_flag |= NFSD_WAITING;
494 1.10 mycroft nfsd_waiting++;
495 1.19 fvdl error = tsleep((caddr_t)nfsd, PSOCK | PCATCH,
496 1.19 fvdl "nfsd", 0);
497 1.10 mycroft nfsd_waiting--;
498 1.10 mycroft if (error)
499 1.10 mycroft goto done;
500 1.10 mycroft }
501 1.19 fvdl if (nfsd->nfsd_slp == (struct nfssvc_sock *)0 &&
502 1.12 mycroft (nfsd_head_flag & NFSD_CHECKSLP) != 0) {
503 1.12 mycroft for (slp = nfssvc_sockhead.tqh_first; slp != 0;
504 1.12 mycroft slp = slp->ns_chain.tqe_next) {
505 1.10 mycroft if ((slp->ns_flag & (SLP_VALID | SLP_DOREC))
506 1.10 mycroft == (SLP_VALID | SLP_DOREC)) {
507 1.10 mycroft slp->ns_flag &= ~SLP_DOREC;
508 1.10 mycroft slp->ns_sref++;
509 1.19 fvdl nfsd->nfsd_slp = slp;
510 1.10 mycroft break;
511 1.10 mycroft }
512 1.10 mycroft }
513 1.12 mycroft if (slp == 0)
514 1.12 mycroft nfsd_head_flag &= ~NFSD_CHECKSLP;
515 1.10 mycroft }
516 1.19 fvdl if ((slp = nfsd->nfsd_slp) == (struct nfssvc_sock *)0)
517 1.10 mycroft continue;
518 1.10 mycroft if (slp->ns_flag & SLP_VALID) {
519 1.10 mycroft if (slp->ns_flag & SLP_DISCONN)
520 1.10 mycroft nfsrv_zapsock(slp);
521 1.10 mycroft else if (slp->ns_flag & SLP_NEEDQ) {
522 1.10 mycroft slp->ns_flag &= ~SLP_NEEDQ;
523 1.10 mycroft (void) nfs_sndlock(&slp->ns_solock,
524 1.10 mycroft (struct nfsreq *)0);
525 1.10 mycroft nfsrv_rcv(slp->ns_so, (caddr_t)slp,
526 1.10 mycroft M_WAIT);
527 1.10 mycroft nfs_sndunlock(&slp->ns_solock);
528 1.10 mycroft }
529 1.19 fvdl error = nfsrv_dorec(slp, nfsd, &nd);
530 1.19 fvdl cur_usec = (u_quad_t)time.tv_sec * 1000000 +
531 1.19 fvdl (u_quad_t)time.tv_usec;
532 1.19 fvdl if (error && slp->ns_tq.lh_first &&
533 1.19 fvdl slp->ns_tq.lh_first->nd_time <= cur_usec) {
534 1.19 fvdl error = 0;
535 1.19 fvdl cacherep = RC_DOIT;
536 1.19 fvdl writes_todo = 1;
537 1.19 fvdl } else
538 1.19 fvdl writes_todo = 0;
539 1.19 fvdl nfsd->nfsd_flag |= NFSD_REQINPROG;
540 1.1 cgd }
541 1.10 mycroft } else {
542 1.10 mycroft error = 0;
543 1.19 fvdl slp = nfsd->nfsd_slp;
544 1.10 mycroft }
545 1.10 mycroft if (error || (slp->ns_flag & SLP_VALID) == 0) {
546 1.19 fvdl if (nd) {
547 1.19 fvdl free((caddr_t)nd, M_NFSRVDESC);
548 1.19 fvdl nd = NULL;
549 1.19 fvdl }
550 1.19 fvdl nfsd->nfsd_slp = (struct nfssvc_sock *)0;
551 1.19 fvdl nfsd->nfsd_flag &= ~NFSD_REQINPROG;
552 1.10 mycroft nfsrv_slpderef(slp);
553 1.1 cgd continue;
554 1.1 cgd }
555 1.10 mycroft splx(s);
556 1.10 mycroft so = slp->ns_so;
557 1.10 mycroft sotype = so->so_type;
558 1.10 mycroft if (so->so_proto->pr_flags & PR_CONNREQUIRED)
559 1.10 mycroft solockp = &slp->ns_solock;
560 1.10 mycroft else
561 1.10 mycroft solockp = (int *)0;
562 1.19 fvdl if (nd) {
563 1.19 fvdl nd->nd_starttime = time;
564 1.19 fvdl if (nd->nd_nam2)
565 1.19 fvdl nd->nd_nam = nd->nd_nam2;
566 1.19 fvdl else
567 1.19 fvdl nd->nd_nam = slp->ns_nam;
568 1.19 fvdl
569 1.19 fvdl /*
570 1.19 fvdl * Check to see if authorization is needed.
571 1.19 fvdl */
572 1.19 fvdl if (nfsd->nfsd_flag & NFSD_NEEDAUTH) {
573 1.19 fvdl nfsd->nfsd_flag &= ~NFSD_NEEDAUTH;
574 1.19 fvdl nsd->nsd_haddr = mtod(nd->nd_nam,
575 1.19 fvdl struct sockaddr_in *)->sin_addr.s_addr;
576 1.19 fvdl nsd->nsd_authlen = nfsd->nfsd_authlen;
577 1.19 fvdl nsd->nsd_verflen = nfsd->nfsd_verflen;
578 1.19 fvdl if (!copyout(nfsd->nfsd_authstr,nsd->nsd_authstr,
579 1.19 fvdl nfsd->nfsd_authlen) &&
580 1.19 fvdl !copyout(nfsd->nfsd_verfstr, nsd->nsd_verfstr,
581 1.19 fvdl nfsd->nfsd_verflen) &&
582 1.19 fvdl !copyout((caddr_t)nsd, argp, sizeof (*nsd)))
583 1.19 fvdl return (ENEEDAUTH);
584 1.19 fvdl cacherep = RC_DROPIT;
585 1.19 fvdl } else
586 1.19 fvdl cacherep = nfsrv_getcache(nd, slp, &mreq);
587 1.19 fvdl
588 1.19 fvdl /*
589 1.19 fvdl * Check for just starting up for NQNFS and send
590 1.19 fvdl * fake "try again later" replies to the NQNFS clients.
591 1.19 fvdl */
592 1.19 fvdl if (notstarted && nqnfsstarttime <= time.tv_sec) {
593 1.10 mycroft if (modify_flag) {
594 1.10 mycroft nqnfsstarttime = time.tv_sec + nqsrv_writeslack;
595 1.10 mycroft modify_flag = 0;
596 1.10 mycroft } else
597 1.10 mycroft notstarted = 0;
598 1.19 fvdl }
599 1.19 fvdl if (notstarted) {
600 1.19 fvdl if ((nd->nd_flag & ND_NQNFS) == 0)
601 1.10 mycroft cacherep = RC_DROPIT;
602 1.10 mycroft else if (nd->nd_procnum != NFSPROC_WRITE) {
603 1.10 mycroft nd->nd_procnum = NFSPROC_NOOP;
604 1.10 mycroft nd->nd_repstat = NQNFS_TRYLATER;
605 1.10 mycroft cacherep = RC_DOIT;
606 1.10 mycroft } else
607 1.10 mycroft modify_flag = 1;
608 1.19 fvdl } else if (nfsd->nfsd_flag & NFSD_AUTHFAIL) {
609 1.19 fvdl nfsd->nfsd_flag &= ~NFSD_AUTHFAIL;
610 1.10 mycroft nd->nd_procnum = NFSPROC_NOOP;
611 1.19 fvdl nd->nd_repstat = (NFSERR_AUTHERR | AUTH_TOOWEAK);
612 1.1 cgd cacherep = RC_DOIT;
613 1.19 fvdl }
614 1.10 mycroft }
615 1.10 mycroft
616 1.19 fvdl /*
617 1.19 fvdl * Loop to get all the write rpc relies that have been
618 1.19 fvdl * gathered together.
619 1.19 fvdl */
620 1.19 fvdl do {
621 1.19 fvdl switch (cacherep) {
622 1.19 fvdl case RC_DOIT:
623 1.19 fvdl if (writes_todo || (nd->nd_procnum == NFSPROC_WRITE &&
624 1.19 fvdl nfsrvw_procrastinate > 0 && !notstarted))
625 1.19 fvdl error = nfsrv_writegather(&nd, slp,
626 1.19 fvdl nfsd->nfsd_procp, &mreq);
627 1.19 fvdl else
628 1.19 fvdl error = (*(nfsrv3_procs[nd->nd_procnum]))(nd,
629 1.19 fvdl slp, nfsd->nfsd_procp, &mreq);
630 1.19 fvdl if (mreq == NULL)
631 1.19 fvdl break;
632 1.10 mycroft if (error) {
633 1.10 mycroft if (nd->nd_procnum != NQNFSPROC_VACATED)
634 1.10 mycroft nfsstats.srv_errs++;
635 1.19 fvdl nfsrv_updatecache(nd, FALSE, mreq);
636 1.19 fvdl if (nd->nd_nam2)
637 1.19 fvdl m_freem(nd->nd_nam2);
638 1.1 cgd break;
639 1.1 cgd }
640 1.10 mycroft nfsstats.srvrpccnt[nd->nd_procnum]++;
641 1.19 fvdl nfsrv_updatecache(nd, TRUE, mreq);
642 1.10 mycroft nd->nd_mrep = (struct mbuf *)0;
643 1.19 fvdl case RC_REPLY:
644 1.1 cgd m = mreq;
645 1.1 cgd siz = 0;
646 1.1 cgd while (m) {
647 1.1 cgd siz += m->m_len;
648 1.1 cgd m = m->m_next;
649 1.1 cgd }
650 1.1 cgd if (siz <= 0 || siz > NFS_MAXPACKET) {
651 1.21 christos printf("mbuf siz=%d\n",siz);
652 1.1 cgd panic("Bad nfs svc reply");
653 1.1 cgd }
654 1.10 mycroft m = mreq;
655 1.10 mycroft m->m_pkthdr.len = siz;
656 1.10 mycroft m->m_pkthdr.rcvif = (struct ifnet *)0;
657 1.1 cgd /*
658 1.10 mycroft * For stream protocols, prepend a Sun RPC
659 1.1 cgd * Record Mark.
660 1.1 cgd */
661 1.10 mycroft if (sotype == SOCK_STREAM) {
662 1.10 mycroft M_PREPEND(m, NFSX_UNSIGNED, M_WAIT);
663 1.17 cgd *mtod(m, u_int32_t *) = htonl(0x80000000 | siz);
664 1.10 mycroft }
665 1.10 mycroft if (solockp)
666 1.10 mycroft (void) nfs_sndlock(solockp, (struct nfsreq *)0);
667 1.10 mycroft if (slp->ns_flag & SLP_VALID)
668 1.19 fvdl error = nfs_send(so, nd->nd_nam2, m, NULL);
669 1.10 mycroft else {
670 1.10 mycroft error = EPIPE;
671 1.10 mycroft m_freem(m);
672 1.10 mycroft }
673 1.10 mycroft if (nfsrtton)
674 1.19 fvdl nfsd_rt(sotype, nd, cacherep);
675 1.19 fvdl if (nd->nd_nam2)
676 1.19 fvdl MFREE(nd->nd_nam2, m);
677 1.10 mycroft if (nd->nd_mrep)
678 1.10 mycroft m_freem(nd->nd_mrep);
679 1.10 mycroft if (error == EPIPE)
680 1.10 mycroft nfsrv_zapsock(slp);
681 1.10 mycroft if (solockp)
682 1.10 mycroft nfs_sndunlock(solockp);
683 1.10 mycroft if (error == EINTR || error == ERESTART) {
684 1.19 fvdl free((caddr_t)nd, M_NFSRVDESC);
685 1.10 mycroft nfsrv_slpderef(slp);
686 1.14 mycroft s = splsoftnet();
687 1.10 mycroft goto done;
688 1.1 cgd }
689 1.1 cgd break;
690 1.19 fvdl case RC_DROPIT:
691 1.10 mycroft if (nfsrtton)
692 1.19 fvdl nfsd_rt(sotype, nd, cacherep);
693 1.10 mycroft m_freem(nd->nd_mrep);
694 1.19 fvdl m_freem(nd->nd_nam2);
695 1.1 cgd break;
696 1.19 fvdl };
697 1.19 fvdl if (nd) {
698 1.19 fvdl FREE((caddr_t)nd, M_NFSRVDESC);
699 1.19 fvdl nd = NULL;
700 1.19 fvdl }
701 1.19 fvdl
702 1.19 fvdl /*
703 1.19 fvdl * Check to see if there are outstanding writes that
704 1.19 fvdl * need to be serviced.
705 1.19 fvdl */
706 1.19 fvdl cur_usec = (u_quad_t)time.tv_sec * 1000000 +
707 1.19 fvdl (u_quad_t)time.tv_usec;
708 1.19 fvdl s = splsoftclock();
709 1.19 fvdl if (slp->ns_tq.lh_first &&
710 1.19 fvdl slp->ns_tq.lh_first->nd_time <= cur_usec) {
711 1.19 fvdl cacherep = RC_DOIT;
712 1.19 fvdl writes_todo = 1;
713 1.19 fvdl } else
714 1.19 fvdl writes_todo = 0;
715 1.19 fvdl splx(s);
716 1.19 fvdl } while (writes_todo);
717 1.14 mycroft s = splsoftnet();
718 1.19 fvdl if (nfsrv_dorec(slp, nfsd, &nd)) {
719 1.19 fvdl nfsd->nfsd_flag &= ~NFSD_REQINPROG;
720 1.19 fvdl nfsd->nfsd_slp = NULL;
721 1.10 mycroft nfsrv_slpderef(slp);
722 1.10 mycroft }
723 1.1 cgd }
724 1.10 mycroft done:
725 1.19 fvdl TAILQ_REMOVE(&nfsd_head, nfsd, nfsd_chain);
726 1.10 mycroft splx(s);
727 1.19 fvdl free((caddr_t)nfsd, M_NFSD);
728 1.10 mycroft nsd->nsd_nfsd = (struct nfsd *)0;
729 1.10 mycroft if (--nfs_numnfsd == 0)
730 1.10 mycroft nfsrv_init(TRUE); /* Reinitialize everything */
731 1.1 cgd return (error);
732 1.1 cgd }
733 1.1 cgd
734 1.10 mycroft /*
735 1.10 mycroft * Shut down a socket associated with an nfssvc_sock structure.
736 1.10 mycroft * Should be called with the send lock set, if required.
737 1.10 mycroft * The trick here is to increment the sref at the start, so that the nfsds
738 1.10 mycroft * will stop using it and clear ns_flag at the end so that it will not be
739 1.10 mycroft * reassigned during cleanup.
740 1.10 mycroft */
741 1.18 christos void
742 1.10 mycroft nfsrv_zapsock(slp)
743 1.10 mycroft register struct nfssvc_sock *slp;
744 1.10 mycroft {
745 1.12 mycroft register struct nfsuid *nuidp, *nnuidp;
746 1.19 fvdl register struct nfsrv_descript *nwp, *nnwp;
747 1.10 mycroft struct socket *so;
748 1.10 mycroft struct file *fp;
749 1.10 mycroft struct mbuf *m;
750 1.19 fvdl int s;
751 1.10 mycroft
752 1.10 mycroft slp->ns_flag &= ~SLP_ALLFLAGS;
753 1.19 fvdl fp = slp->ns_fp;
754 1.19 fvdl if (fp) {
755 1.10 mycroft slp->ns_fp = (struct file *)0;
756 1.10 mycroft so = slp->ns_so;
757 1.10 mycroft so->so_upcall = NULL;
758 1.10 mycroft soshutdown(so, 2);
759 1.10 mycroft closef(fp, (struct proc *)0);
760 1.10 mycroft if (slp->ns_nam)
761 1.10 mycroft MFREE(slp->ns_nam, m);
762 1.10 mycroft m_freem(slp->ns_raw);
763 1.10 mycroft m_freem(slp->ns_rec);
764 1.12 mycroft for (nuidp = slp->ns_uidlruhead.tqh_first; nuidp != 0;
765 1.12 mycroft nuidp = nnuidp) {
766 1.12 mycroft nnuidp = nuidp->nu_lru.tqe_next;
767 1.12 mycroft LIST_REMOVE(nuidp, nu_hash);
768 1.12 mycroft TAILQ_REMOVE(&slp->ns_uidlruhead, nuidp, nu_lru);
769 1.19 fvdl if (nuidp->nu_flag & NU_NAM)
770 1.19 fvdl m_freem(nuidp->nu_nam);
771 1.12 mycroft free((caddr_t)nuidp, M_NFSUID);
772 1.12 mycroft }
773 1.19 fvdl s = splsoftclock();
774 1.19 fvdl for (nwp = slp->ns_tq.lh_first; nwp; nwp = nnwp) {
775 1.19 fvdl nnwp = nwp->nd_tq.le_next;
776 1.19 fvdl LIST_REMOVE(nwp, nd_tq);
777 1.19 fvdl free((caddr_t)nwp, M_NFSRVDESC);
778 1.19 fvdl }
779 1.19 fvdl LIST_INIT(&slp->ns_tq);
780 1.19 fvdl splx(s);
781 1.10 mycroft }
782 1.10 mycroft }
783 1.10 mycroft
784 1.10 mycroft /*
785 1.10 mycroft * Derefence a server socket structure. If it has no more references and
786 1.10 mycroft * is no longer valid, you can throw it away.
787 1.10 mycroft */
788 1.10 mycroft void
789 1.10 mycroft nfsrv_slpderef(slp)
790 1.10 mycroft register struct nfssvc_sock *slp;
791 1.10 mycroft {
792 1.10 mycroft if (--(slp->ns_sref) == 0 && (slp->ns_flag & SLP_VALID) == 0) {
793 1.12 mycroft TAILQ_REMOVE(&nfssvc_sockhead, slp, ns_chain);
794 1.10 mycroft free((caddr_t)slp, M_NFSSVC);
795 1.10 mycroft }
796 1.10 mycroft }
797 1.10 mycroft
798 1.10 mycroft /*
799 1.10 mycroft * Initialize the data structures for the server.
800 1.10 mycroft * Handshake with any new nfsds starting up to avoid any chance of
801 1.10 mycroft * corruption.
802 1.10 mycroft */
803 1.10 mycroft void
804 1.10 mycroft nfsrv_init(terminating)
805 1.10 mycroft int terminating;
806 1.10 mycroft {
807 1.12 mycroft register struct nfssvc_sock *slp, *nslp;
808 1.10 mycroft
809 1.12 mycroft if (nfssvc_sockhead_flag & SLP_INIT)
810 1.10 mycroft panic("nfsd init");
811 1.12 mycroft nfssvc_sockhead_flag |= SLP_INIT;
812 1.10 mycroft if (terminating) {
813 1.12 mycroft for (slp = nfssvc_sockhead.tqh_first; slp != 0; slp = nslp) {
814 1.12 mycroft nslp = slp->ns_chain.tqe_next;
815 1.10 mycroft if (slp->ns_flag & SLP_VALID)
816 1.10 mycroft nfsrv_zapsock(slp);
817 1.12 mycroft TAILQ_REMOVE(&nfssvc_sockhead, slp, ns_chain);
818 1.12 mycroft free((caddr_t)slp, M_NFSSVC);
819 1.10 mycroft }
820 1.10 mycroft nfsrv_cleancache(); /* And clear out server cache */
821 1.26 fvdl } else
822 1.26 fvdl nfs_pub.np_valid = 0;
823 1.12 mycroft
824 1.12 mycroft TAILQ_INIT(&nfssvc_sockhead);
825 1.12 mycroft nfssvc_sockhead_flag &= ~SLP_INIT;
826 1.12 mycroft if (nfssvc_sockhead_flag & SLP_WANTINIT) {
827 1.12 mycroft nfssvc_sockhead_flag &= ~SLP_WANTINIT;
828 1.12 mycroft wakeup((caddr_t)&nfssvc_sockhead);
829 1.12 mycroft }
830 1.12 mycroft
831 1.12 mycroft TAILQ_INIT(&nfsd_head);
832 1.12 mycroft nfsd_head_flag &= ~NFSD_CHECKSLP;
833 1.12 mycroft
834 1.10 mycroft nfs_udpsock = (struct nfssvc_sock *)
835 1.10 mycroft malloc(sizeof (struct nfssvc_sock), M_NFSSVC, M_WAITOK);
836 1.10 mycroft bzero((caddr_t)nfs_udpsock, sizeof (struct nfssvc_sock));
837 1.12 mycroft TAILQ_INIT(&nfs_udpsock->ns_uidlruhead);
838 1.12 mycroft TAILQ_INSERT_HEAD(&nfssvc_sockhead, nfs_udpsock, ns_chain);
839 1.12 mycroft
840 1.10 mycroft nfs_cltpsock = (struct nfssvc_sock *)
841 1.10 mycroft malloc(sizeof (struct nfssvc_sock), M_NFSSVC, M_WAITOK);
842 1.10 mycroft bzero((caddr_t)nfs_cltpsock, sizeof (struct nfssvc_sock));
843 1.12 mycroft TAILQ_INIT(&nfs_cltpsock->ns_uidlruhead);
844 1.12 mycroft TAILQ_INSERT_TAIL(&nfssvc_sockhead, nfs_cltpsock, ns_chain);
845 1.10 mycroft }
846 1.10 mycroft
847 1.10 mycroft /*
848 1.10 mycroft * Add entries to the server monitor log.
849 1.10 mycroft */
850 1.10 mycroft static void
851 1.19 fvdl nfsd_rt(sotype, nd, cacherep)
852 1.10 mycroft int sotype;
853 1.19 fvdl register struct nfsrv_descript *nd;
854 1.10 mycroft int cacherep;
855 1.10 mycroft {
856 1.10 mycroft register struct drt *rt;
857 1.10 mycroft
858 1.10 mycroft rt = &nfsdrt.drt[nfsdrt.pos];
859 1.10 mycroft if (cacherep == RC_DOIT)
860 1.10 mycroft rt->flag = 0;
861 1.10 mycroft else if (cacherep == RC_REPLY)
862 1.10 mycroft rt->flag = DRT_CACHEREPLY;
863 1.10 mycroft else
864 1.10 mycroft rt->flag = DRT_CACHEDROP;
865 1.10 mycroft if (sotype == SOCK_STREAM)
866 1.10 mycroft rt->flag |= DRT_TCP;
867 1.19 fvdl if (nd->nd_flag & ND_NQNFS)
868 1.10 mycroft rt->flag |= DRT_NQNFS;
869 1.19 fvdl else if (nd->nd_flag & ND_NFSV3)
870 1.19 fvdl rt->flag |= DRT_NFSV3;
871 1.10 mycroft rt->proc = nd->nd_procnum;
872 1.19 fvdl if (mtod(nd->nd_nam, struct sockaddr *)->sa_family == AF_INET)
873 1.19 fvdl rt->ipadr = mtod(nd->nd_nam, struct sockaddr_in *)->sin_addr.s_addr;
874 1.10 mycroft else
875 1.19 fvdl rt->ipadr = INADDR_ANY;
876 1.19 fvdl rt->resptime = ((time.tv_sec - nd->nd_starttime.tv_sec) * 1000000) +
877 1.19 fvdl (time.tv_usec - nd->nd_starttime.tv_usec);
878 1.10 mycroft rt->tstamp = time;
879 1.10 mycroft nfsdrt.pos = (nfsdrt.pos + 1) % NFSRTTLOGSIZ;
880 1.10 mycroft }
881 1.3 glass #endif /* NFSSERVER */
882 1.3 glass
883 1.24 thorpej #ifdef NFS
884 1.22 thorpej
885 1.22 thorpej int nfs_defect = 0;
886 1.1 cgd /*
887 1.10 mycroft * Asynchronous I/O daemons for client nfs.
888 1.10 mycroft * They do read-ahead and write-behind operations on the block I/O cache.
889 1.10 mycroft * Never returns unless it fails or gets killed.
890 1.1 cgd */
891 1.18 christos int
892 1.10 mycroft nfssvc_iod(p)
893 1.1 cgd struct proc *p;
894 1.1 cgd {
895 1.22 thorpej register struct buf *bp;
896 1.1 cgd register int i, myiod;
897 1.22 thorpej struct nfsmount *nmp;
898 1.22 thorpej int error = 0;
899 1.1 cgd
900 1.1 cgd /*
901 1.1 cgd * Assign my position or return error if too many already running
902 1.1 cgd */
903 1.1 cgd myiod = -1;
904 1.1 cgd for (i = 0; i < NFS_MAXASYNCDAEMON; i++)
905 1.1 cgd if (nfs_asyncdaemon[i] == 0) {
906 1.1 cgd nfs_asyncdaemon[i]++;
907 1.1 cgd myiod = i;
908 1.1 cgd break;
909 1.1 cgd }
910 1.1 cgd if (myiod == -1)
911 1.1 cgd return (EBUSY);
912 1.1 cgd nfs_numasync++;
913 1.1 cgd /*
914 1.1 cgd * Just loop around doin our stuff until SIGKILL
915 1.1 cgd */
916 1.1 cgd for (;;) {
917 1.22 thorpej while (((nmp = nfs_iodmount[myiod]) == NULL
918 1.22 thorpej || nmp->nm_bufq.tqh_first == NULL)
919 1.22 thorpej && error == 0) {
920 1.22 thorpej if (nmp)
921 1.22 thorpej nmp->nm_bufqiods--;
922 1.19 fvdl nfs_iodwant[myiod] = p;
923 1.22 thorpej nfs_iodmount[myiod] = NULL;
924 1.19 fvdl error = tsleep((caddr_t)&nfs_iodwant[myiod],
925 1.19 fvdl PWAIT | PCATCH, "nfsidl", 0);
926 1.19 fvdl }
927 1.22 thorpej if (error) {
928 1.22 thorpej nfs_asyncdaemon[myiod] = 0;
929 1.22 thorpej if (nmp)
930 1.22 thorpej nmp->nm_bufqiods--;
931 1.22 thorpej nfs_iodmount[myiod] = NULL;
932 1.22 thorpej nfs_numasync--;
933 1.22 thorpej return (error);
934 1.22 thorpej }
935 1.22 thorpej while ((bp = nmp->nm_bufq.tqh_first) != NULL) {
936 1.19 fvdl /* Take one off the front of the list */
937 1.22 thorpej TAILQ_REMOVE(&nmp->nm_bufq, bp, b_freelist);
938 1.22 thorpej nmp->nm_bufqlen--;
939 1.22 thorpej if (nmp->nm_bufqwant && nmp->nm_bufqlen < 2 * nfs_numasync) {
940 1.22 thorpej nmp->nm_bufqwant = FALSE;
941 1.22 thorpej wakeup(&nmp->nm_bufq);
942 1.22 thorpej }
943 1.19 fvdl if (bp->b_flags & B_READ)
944 1.19 fvdl (void) nfs_doio(bp, bp->b_rcred, (struct proc *)0);
945 1.22 thorpej else
946 1.19 fvdl (void) nfs_doio(bp, bp->b_wcred, (struct proc *)0);
947 1.22 thorpej /*
948 1.22 thorpej * If there are more than one iod on this mount, then defect
949 1.22 thorpej * so that the iods can be shared out fairly between the mounts
950 1.22 thorpej */
951 1.22 thorpej if (nfs_defect && nmp->nm_bufqiods > 1) {
952 1.22 thorpej nfs_iodmount[myiod] = NULL;
953 1.22 thorpej nmp->nm_bufqiods--;
954 1.22 thorpej break;
955 1.22 thorpej }
956 1.19 fvdl }
957 1.1 cgd }
958 1.1 cgd }
959 1.3 glass
960 1.19 fvdl
961 1.10 mycroft /*
962 1.10 mycroft * Get an authorization string for the uid by having the mount_nfs sitting
963 1.10 mycroft * on this mount point porpous out of the kernel and do it.
964 1.10 mycroft */
965 1.18 christos int
966 1.19 fvdl nfs_getauth(nmp, rep, cred, auth_str, auth_len, verf_str, verf_len, key)
967 1.10 mycroft register struct nfsmount *nmp;
968 1.10 mycroft struct nfsreq *rep;
969 1.10 mycroft struct ucred *cred;
970 1.10 mycroft char **auth_str;
971 1.10 mycroft int *auth_len;
972 1.19 fvdl char *verf_str;
973 1.19 fvdl int *verf_len;
974 1.19 fvdl NFSKERBKEY_T key; /* return session key */
975 1.10 mycroft {
976 1.10 mycroft int error = 0;
977 1.10 mycroft
978 1.27 fvdl while ((nmp->nm_iflag & NFSMNT_WAITAUTH) == 0) {
979 1.27 fvdl nmp->nm_iflag |= NFSMNT_WANTAUTH;
980 1.10 mycroft (void) tsleep((caddr_t)&nmp->nm_authtype, PSOCK,
981 1.10 mycroft "nfsauth1", 2 * hz);
982 1.18 christos error = nfs_sigintr(nmp, rep, rep->r_procp);
983 1.18 christos if (error) {
984 1.27 fvdl nmp->nm_iflag &= ~NFSMNT_WANTAUTH;
985 1.10 mycroft return (error);
986 1.10 mycroft }
987 1.10 mycroft }
988 1.27 fvdl nmp->nm_iflag &= ~(NFSMNT_WAITAUTH | NFSMNT_WANTAUTH);
989 1.10 mycroft nmp->nm_authstr = *auth_str = (char *)malloc(RPCAUTH_MAXSIZ, M_TEMP, M_WAITOK);
990 1.19 fvdl nmp->nm_authlen = RPCAUTH_MAXSIZ;
991 1.19 fvdl nmp->nm_verfstr = verf_str;
992 1.19 fvdl nmp->nm_verflen = *verf_len;
993 1.10 mycroft nmp->nm_authuid = cred->cr_uid;
994 1.10 mycroft wakeup((caddr_t)&nmp->nm_authstr);
995 1.3 glass
996 1.10 mycroft /*
997 1.10 mycroft * And wait for mount_nfs to do its stuff.
998 1.10 mycroft */
999 1.27 fvdl while ((nmp->nm_iflag & NFSMNT_HASAUTH) == 0 && error == 0) {
1000 1.10 mycroft (void) tsleep((caddr_t)&nmp->nm_authlen, PSOCK,
1001 1.10 mycroft "nfsauth2", 2 * hz);
1002 1.10 mycroft error = nfs_sigintr(nmp, rep, rep->r_procp);
1003 1.10 mycroft }
1004 1.27 fvdl if (nmp->nm_iflag & NFSMNT_AUTHERR) {
1005 1.27 fvdl nmp->nm_iflag &= ~NFSMNT_AUTHERR;
1006 1.10 mycroft error = EAUTH;
1007 1.10 mycroft }
1008 1.10 mycroft if (error)
1009 1.10 mycroft free((caddr_t)*auth_str, M_TEMP);
1010 1.10 mycroft else {
1011 1.10 mycroft *auth_len = nmp->nm_authlen;
1012 1.19 fvdl *verf_len = nmp->nm_verflen;
1013 1.19 fvdl bcopy((caddr_t)nmp->nm_key, (caddr_t)key, sizeof (key));
1014 1.10 mycroft }
1015 1.27 fvdl nmp->nm_iflag &= ~NFSMNT_HASAUTH;
1016 1.27 fvdl nmp->nm_iflag |= NFSMNT_WAITAUTH;
1017 1.27 fvdl if (nmp->nm_iflag & NFSMNT_WANTAUTH) {
1018 1.27 fvdl nmp->nm_iflag &= ~NFSMNT_WANTAUTH;
1019 1.10 mycroft wakeup((caddr_t)&nmp->nm_authtype);
1020 1.10 mycroft }
1021 1.19 fvdl return (error);
1022 1.19 fvdl }
1023 1.19 fvdl
1024 1.19 fvdl /*
1025 1.19 fvdl * Get a nickname authenticator and verifier.
1026 1.19 fvdl */
1027 1.19 fvdl int
1028 1.19 fvdl nfs_getnickauth(nmp, cred, auth_str, auth_len, verf_str, verf_len)
1029 1.19 fvdl struct nfsmount *nmp;
1030 1.19 fvdl struct ucred *cred;
1031 1.19 fvdl char **auth_str;
1032 1.19 fvdl int *auth_len;
1033 1.19 fvdl char *verf_str;
1034 1.19 fvdl int verf_len;
1035 1.19 fvdl {
1036 1.19 fvdl register struct nfsuid *nuidp;
1037 1.19 fvdl register u_int32_t *nickp, *verfp;
1038 1.19 fvdl struct timeval ktvin, ktvout;
1039 1.19 fvdl
1040 1.19 fvdl #ifdef DIAGNOSTIC
1041 1.19 fvdl if (verf_len < (4 * NFSX_UNSIGNED))
1042 1.19 fvdl panic("nfs_getnickauth verf too small");
1043 1.19 fvdl #endif
1044 1.19 fvdl for (nuidp = NMUIDHASH(nmp, cred->cr_uid)->lh_first;
1045 1.19 fvdl nuidp != 0; nuidp = nuidp->nu_hash.le_next) {
1046 1.19 fvdl if (nuidp->nu_cr.cr_uid == cred->cr_uid)
1047 1.19 fvdl break;
1048 1.19 fvdl }
1049 1.19 fvdl if (!nuidp || nuidp->nu_expire < time.tv_sec)
1050 1.19 fvdl return (EACCES);
1051 1.19 fvdl
1052 1.19 fvdl /*
1053 1.19 fvdl * Move to the end of the lru list (end of lru == most recently used).
1054 1.19 fvdl */
1055 1.19 fvdl TAILQ_REMOVE(&nmp->nm_uidlruhead, nuidp, nu_lru);
1056 1.19 fvdl TAILQ_INSERT_TAIL(&nmp->nm_uidlruhead, nuidp, nu_lru);
1057 1.19 fvdl
1058 1.19 fvdl nickp = (u_int32_t *)malloc(2 * NFSX_UNSIGNED, M_TEMP, M_WAITOK);
1059 1.19 fvdl *nickp++ = txdr_unsigned(RPCAKN_NICKNAME);
1060 1.19 fvdl *nickp = txdr_unsigned(nuidp->nu_nickname);
1061 1.19 fvdl *auth_str = (char *)nickp;
1062 1.19 fvdl *auth_len = 2 * NFSX_UNSIGNED;
1063 1.19 fvdl
1064 1.19 fvdl /*
1065 1.19 fvdl * Now we must encrypt the verifier and package it up.
1066 1.19 fvdl */
1067 1.19 fvdl verfp = (u_int32_t *)verf_str;
1068 1.19 fvdl *verfp++ = txdr_unsigned(RPCAKN_NICKNAME);
1069 1.19 fvdl if (time.tv_sec > nuidp->nu_timestamp.tv_sec ||
1070 1.19 fvdl (time.tv_sec == nuidp->nu_timestamp.tv_sec &&
1071 1.19 fvdl time.tv_usec > nuidp->nu_timestamp.tv_usec))
1072 1.19 fvdl nuidp->nu_timestamp = time;
1073 1.19 fvdl else
1074 1.19 fvdl nuidp->nu_timestamp.tv_usec++;
1075 1.19 fvdl ktvin.tv_sec = txdr_unsigned(nuidp->nu_timestamp.tv_sec);
1076 1.19 fvdl ktvin.tv_usec = txdr_unsigned(nuidp->nu_timestamp.tv_usec);
1077 1.19 fvdl
1078 1.19 fvdl /*
1079 1.19 fvdl * Now encrypt the timestamp verifier in ecb mode using the session
1080 1.19 fvdl * key.
1081 1.19 fvdl */
1082 1.19 fvdl #ifdef NFSKERB
1083 1.19 fvdl XXX
1084 1.19 fvdl #endif
1085 1.19 fvdl
1086 1.19 fvdl *verfp++ = ktvout.tv_sec;
1087 1.19 fvdl *verfp++ = ktvout.tv_usec;
1088 1.19 fvdl *verfp = 0;
1089 1.19 fvdl return (0);
1090 1.19 fvdl }
1091 1.19 fvdl
1092 1.19 fvdl /*
1093 1.19 fvdl * Save the current nickname in a hash list entry on the mount point.
1094 1.19 fvdl */
1095 1.19 fvdl int
1096 1.19 fvdl nfs_savenickauth(nmp, cred, len, key, mdp, dposp, mrep)
1097 1.19 fvdl register struct nfsmount *nmp;
1098 1.19 fvdl struct ucred *cred;
1099 1.19 fvdl int len;
1100 1.19 fvdl NFSKERBKEY_T key;
1101 1.19 fvdl struct mbuf **mdp;
1102 1.19 fvdl char **dposp;
1103 1.19 fvdl struct mbuf *mrep;
1104 1.19 fvdl {
1105 1.19 fvdl register struct nfsuid *nuidp;
1106 1.19 fvdl register u_int32_t *tl;
1107 1.19 fvdl register int32_t t1;
1108 1.19 fvdl struct mbuf *md = *mdp;
1109 1.19 fvdl struct timeval ktvin, ktvout;
1110 1.19 fvdl u_int32_t nick;
1111 1.19 fvdl char *dpos = *dposp, *cp2;
1112 1.19 fvdl int deltasec, error = 0;
1113 1.19 fvdl
1114 1.19 fvdl if (len == (3 * NFSX_UNSIGNED)) {
1115 1.19 fvdl nfsm_dissect(tl, u_int32_t *, 3 * NFSX_UNSIGNED);
1116 1.19 fvdl ktvin.tv_sec = *tl++;
1117 1.19 fvdl ktvin.tv_usec = *tl++;
1118 1.19 fvdl nick = fxdr_unsigned(u_int32_t, *tl);
1119 1.19 fvdl
1120 1.19 fvdl /*
1121 1.19 fvdl * Decrypt the timestamp in ecb mode.
1122 1.19 fvdl */
1123 1.19 fvdl #ifdef NFSKERB
1124 1.19 fvdl XXX
1125 1.19 fvdl #endif
1126 1.19 fvdl ktvout.tv_sec = fxdr_unsigned(long, ktvout.tv_sec);
1127 1.19 fvdl ktvout.tv_usec = fxdr_unsigned(long, ktvout.tv_usec);
1128 1.19 fvdl deltasec = time.tv_sec - ktvout.tv_sec;
1129 1.19 fvdl if (deltasec < 0)
1130 1.19 fvdl deltasec = -deltasec;
1131 1.19 fvdl /*
1132 1.19 fvdl * If ok, add it to the hash list for the mount point.
1133 1.19 fvdl */
1134 1.19 fvdl if (deltasec <= NFS_KERBCLOCKSKEW) {
1135 1.19 fvdl if (nmp->nm_numuids < nuidhash_max) {
1136 1.19 fvdl nmp->nm_numuids++;
1137 1.19 fvdl nuidp = (struct nfsuid *)
1138 1.19 fvdl malloc(sizeof (struct nfsuid), M_NFSUID,
1139 1.19 fvdl M_WAITOK);
1140 1.19 fvdl } else {
1141 1.19 fvdl nuidp = nmp->nm_uidlruhead.tqh_first;
1142 1.19 fvdl LIST_REMOVE(nuidp, nu_hash);
1143 1.19 fvdl TAILQ_REMOVE(&nmp->nm_uidlruhead, nuidp,
1144 1.19 fvdl nu_lru);
1145 1.19 fvdl }
1146 1.19 fvdl nuidp->nu_flag = 0;
1147 1.19 fvdl nuidp->nu_cr.cr_uid = cred->cr_uid;
1148 1.19 fvdl nuidp->nu_expire = time.tv_sec + NFS_KERBTTL;
1149 1.19 fvdl nuidp->nu_timestamp = ktvout;
1150 1.19 fvdl nuidp->nu_nickname = nick;
1151 1.19 fvdl bcopy(key, nuidp->nu_key, sizeof (key));
1152 1.19 fvdl TAILQ_INSERT_TAIL(&nmp->nm_uidlruhead, nuidp,
1153 1.19 fvdl nu_lru);
1154 1.19 fvdl LIST_INSERT_HEAD(NMUIDHASH(nmp, cred->cr_uid),
1155 1.19 fvdl nuidp, nu_hash);
1156 1.19 fvdl }
1157 1.19 fvdl } else
1158 1.19 fvdl nfsm_adv(nfsm_rndup(len));
1159 1.19 fvdl nfsmout:
1160 1.19 fvdl *mdp = md;
1161 1.19 fvdl *dposp = dpos;
1162 1.10 mycroft return (error);
1163 1.10 mycroft }
1164 1.24 thorpej #endif /* NFS */
1165