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