nfs_vfree prototype changed for vn_if
[unix-history] / usr / src / sys / nfs / nfs_vfsops.c
index 7208e90..da2c524 100644 (file)
@@ -5,66 +5,48 @@
  * This code is derived from software contributed to Berkeley by
  * Rick Macklem at The University of Guelph.
  *
  * This code is derived from software contributed to Berkeley by
  * Rick Macklem at The University of Guelph.
  *
- * Redistribution and use in source and binary forms are permitted
- * provided that the above copyright notice and this paragraph are
- * duplicated in all such forms and that any documentation,
- * advertising materials, and other materials related to such
- * distribution and use acknowledge that the software was developed
- * by the University of California, Berkeley.  The name of the
- * University may not be used to endorse or promote products derived
- * from this software without specific prior written permission.
- * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
- * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
+ * %sccs.include.redist.c%
  *
  *
- *     @(#)nfs_vfsops.c        7.12 (Berkeley) %G%
+ *     @(#)nfs_vfsops.c        7.38 (Berkeley) %G%
  */
 
 #include "param.h"
  */
 
 #include "param.h"
+#include "conf.h"
+#include "ioctl.h"
 #include "signal.h"
 #include "signal.h"
-#include "user.h"
 #include "proc.h"
 #include "proc.h"
-#include "uio.h"
-#include "ucred.h"
-#include "systm.h"
-#include "../ufs/dir.h"
 #include "namei.h"
 #include "vnode.h"
 #include "namei.h"
 #include "vnode.h"
+#include "kernel.h"
 #include "mount.h"
 #include "mount.h"
-#include "errno.h"
-#include "malloc.h"
+#include "buf.h"
 #include "mbuf.h"
 #include "mbuf.h"
-#undef m_data
 #include "socket.h"
 #include "socket.h"
-#include "socketvar.h"
-#include "../netinet/in.h"
+#include "systm.h"
+
+#include "net/if.h"
+#include "net/route.h"
+#include "netinet/in.h"
+
+#include "rpcv2.h"
 #include "nfsv2.h"
 #include "nfsnode.h"
 #include "nfsmount.h"
 #include "nfs.h"
 #include "nfsv2.h"
 #include "nfsnode.h"
 #include "nfsmount.h"
 #include "nfs.h"
-
-#ifndef shouldbe
-#include "conf.h"
-#endif
+#include "xdr_subs.h"
+#include "nfsm_subs.h"
+#include "nfsdiskless.h"
+#include "nqnfs.h"
 
 /*
  * nfs vfs operations.
  */
 
 /*
  * nfs vfs operations.
  */
-int nfs_mount();
-int nfs_start();
-int nfs_unmount();
-int nfs_root();
-int nfs_statfs();
-int nfs_sync();
-int nfs_fhtovp();
-int nfs_vptofh();
-int nfs_init();
-
 struct vfsops nfs_vfsops = {
        nfs_mount,
        nfs_start,
        nfs_unmount,
        nfs_root,
 struct vfsops nfs_vfsops = {
        nfs_mount,
        nfs_start,
        nfs_unmount,
        nfs_root,
+       nfs_quotactl,
        nfs_statfs,
        nfs_sync,
        nfs_fhtovp,
        nfs_statfs,
        nfs_sync,
        nfs_fhtovp,
@@ -72,16 +54,228 @@ struct vfsops nfs_vfsops = {
        nfs_init,
 };
 
        nfs_init,
 };
 
-extern struct nfsreq nfsreqh;
+/*
+ * This structure must be filled in by a primary bootstrap or bootstrap
+ * server for a diskless/dataless machine. It is initialized below just
+ * to ensure that it is allocated to initialized data (.data not .bss).
+ */
+struct nfs_diskless nfs_diskless = { 0 };
+
 static u_char nfs_mntid;
 static u_char nfs_mntid;
+extern u_long nfs_procids[NFS_NPROCS];
+extern u_long nfs_prog, nfs_vers;
+void nfs_disconnect(), nfsargs_ntoh();
+
+#define TRUE   1
+#define        FALSE   0
+
+/*
+ * nfs statfs call
+ */
+nfs_statfs(mp, sbp, p)
+       struct mount *mp;
+       register struct statfs *sbp;
+       struct proc *p;
+{
+       register struct vnode *vp;
+       register struct nfsv2_statfs *sfp;
+       register caddr_t cp;
+       register long t1;
+       caddr_t bpos, dpos, cp2;
+       u_long xid;
+       int error = 0;
+       struct mbuf *mreq, *mrep, *md, *mb, *mb2;
+       struct nfsmount *nmp;
+       struct ucred *cred;
+       struct nfsnode *np;
+
+       nmp = VFSTONFS(mp);
+       if (error = nfs_nget(mp, &nmp->nm_fh, &np))
+               return (error);
+       vp = NFSTOV(np);
+       nfsstats.rpccnt[NFSPROC_STATFS]++;
+       cred = crget();
+       cred->cr_ngroups = 1;
+       nfsm_reqhead(vp, NFSPROC_STATFS, NFSX_FH);
+       nfsm_fhtom(vp);
+       nfsm_request(vp, NFSPROC_STATFS, p, cred);
+       nfsm_dissect(sfp, struct nfsv2_statfs *, NFSX_STATFS);
+       sbp->f_type = MOUNT_NFS;
+       sbp->f_flags = nmp->nm_flag;
+       sbp->f_iosize = NFS_MAXDGRAMDATA;
+       sbp->f_bsize = fxdr_unsigned(long, sfp->sf_bsize);
+       sbp->f_blocks = fxdr_unsigned(long, sfp->sf_blocks);
+       sbp->f_bfree = fxdr_unsigned(long, sfp->sf_bfree);
+       sbp->f_bavail = fxdr_unsigned(long, sfp->sf_bavail);
+       sbp->f_files = 0;
+       sbp->f_ffree = 0;
+       if (sbp != &mp->mnt_stat) {
+               bcopy(mp->mnt_stat.f_mntonname, sbp->f_mntonname, MNAMELEN);
+               bcopy(mp->mnt_stat.f_mntfromname, sbp->f_mntfromname, MNAMELEN);
+       }
+       nfsm_reqdone;
+       vrele(vp);
+       crfree(cred);
+       return (error);
+}
 
 /*
 
 /*
- * Called by vfs_mountroot when nfs is going to be mounted as root
- * Not Yet (By a LONG shot)
+ * Mount a remote root fs via. nfs. This depends on the info in the
+ * nfs_diskless structure that has been filled in properly by some primary
+ * bootstrap.
+ * It goes something like this:
+ * - do enough of "ifconfig" by calling ifioctl() so that the system
+ *   can talk to the server
+ * - If nfs_diskless.mygateway is filled in, use that address as
+ *   a default gateway.
+ * - hand craft the swap nfs vnode hanging off a fake mount point
+ *     if swdevt[0].sw_dev == NODEV
+ * - build the rootfs mount point and call mountnfs() to do the rest.
  */
 nfs_mountroot()
 {
  */
 nfs_mountroot()
 {
-       return (ENODEV);
+       register struct mount *mp;
+       register struct mbuf *m;
+       struct socket *so;
+       struct vnode *vp;
+       int error, i;
+
+       /*
+        * Do enough of ifconfig(8) so that the critical net interface can
+        * talk to the server.
+        */
+       if (socreate(nfs_diskless.myif.ifra_addr.sa_family, &so, SOCK_DGRAM, 0))
+               panic("nfs ifconf");
+       if (ifioctl(so, SIOCAIFADDR, &nfs_diskless.myif, curproc)) /* XXX */
+               panic("nfs ifconf2");
+       soclose(so);
+
+       /*
+        * If the gateway field is filled in, set it as the default route.
+        */
+       if (nfs_diskless.mygateway.sin_len != 0) {
+               struct sockaddr_in sin;
+               extern struct sockaddr_in icmpmask;
+
+               sin.sin_len = sizeof (struct sockaddr_in);
+               sin.sin_family = AF_INET;
+               sin.sin_addr.s_addr = 0;        /* default */
+               in_sockmaskof(sin.sin_addr, &icmpmask);
+               if (rtrequest(RTM_ADD, (struct sockaddr *)&sin,
+                       (struct sockaddr *)&nfs_diskless.mygateway,
+                       (struct sockaddr *)&icmpmask,
+                       RTF_UP | RTF_GATEWAY, (struct rtentry **)0))
+                       panic("nfs root route");
+       }
+
+       /*
+        * If swapping to an nfs node (indicated by swdevt[0].sw_dev == NODEV):
+        * Create a fake mount point just for the swap vnode so that the
+        * swap file can be on a different server from the rootfs.
+        */
+       if (swdevt[0].sw_dev == NODEV) {
+               mp = (struct mount *)malloc((u_long)sizeof(struct mount),
+                       M_MOUNT, M_NOWAIT);
+               if (mp == NULL)
+                       panic("nfs root mount");
+               mp->mnt_op = &nfs_vfsops;
+               mp->mnt_flag = 0;
+               mp->mnt_mounth = NULLVP;
+       
+               /*
+                * Set up the diskless nfs_args for the swap mount point
+                * and then call mountnfs() to mount it.
+                * Since the swap file is not the root dir of a file system,
+                * hack it to a regular file.
+                */
+               nfs_diskless.swap_args.fh = (nfsv2fh_t *)nfs_diskless.swap_fh;
+               MGET(m, MT_SONAME, M_DONTWAIT);
+               if (m == NULL)
+                       panic("nfs root mbuf");
+               bcopy((caddr_t)&nfs_diskless.swap_saddr, mtod(m, caddr_t),
+                       nfs_diskless.swap_saddr.sin_len);
+               m->m_len = (int)nfs_diskless.swap_saddr.sin_len;
+               nfsargs_ntoh(&nfs_diskless.swap_args);
+               if (mountnfs(&nfs_diskless.swap_args, mp, m, "/swap",
+                       nfs_diskless.swap_hostnam, &vp))
+                       panic("nfs swap");
+               vp->v_type = VREG;
+               vp->v_flag = 0;
+               swapdev_vp = vp;
+               VREF(vp);
+               swdevt[0].sw_vp = vp;
+               swdevt[0].sw_nblks = ntohl(nfs_diskless.swap_nblks);
+       }
+
+       /*
+        * Create the rootfs mount point.
+        */
+       mp = (struct mount *)malloc((u_long)sizeof(struct mount),
+               M_MOUNT, M_NOWAIT);
+       if (mp == NULL)
+               panic("nfs root mount2");
+       mp->mnt_op = &nfs_vfsops;
+       mp->mnt_flag = MNT_RDONLY;
+       mp->mnt_mounth = NULLVP;
+
+       /*
+        * Set up the root fs args and call mountnfs() to do the rest.
+        */
+       nfs_diskless.root_args.fh = (nfsv2fh_t *)nfs_diskless.root_fh;
+       MGET(m, MT_SONAME, M_DONTWAIT);
+       if (m == NULL)
+               panic("nfs root mbuf2");
+       bcopy((caddr_t)&nfs_diskless.root_saddr, mtod(m, caddr_t),
+               nfs_diskless.root_saddr.sin_len);
+       m->m_len = (int)nfs_diskless.root_saddr.sin_len;
+       nfsargs_ntoh(&nfs_diskless.root_args);
+       if (mountnfs(&nfs_diskless.root_args, mp, m, "/",
+               nfs_diskless.root_hostnam, &vp))
+               panic("nfs root");
+       if (vfs_lock(mp))
+               panic("nfs root2");
+       rootfs = mp;
+       mp->mnt_next = mp;
+       mp->mnt_prev = mp;
+       mp->mnt_vnodecovered = NULLVP;
+       vfs_unlock(mp);
+       rootvp = vp;
+
+       /*
+        * This is not really an nfs issue, but it is much easier to
+        * set hostname here and then let the "/etc/rc.xxx" files
+        * mount the right /var based upon its preset value.
+        */
+       bcopy(nfs_diskless.my_hostnam, hostname, MAXHOSTNAMELEN);
+       hostname[MAXHOSTNAMELEN - 1] = '\0';
+       for (i = 0; i < MAXHOSTNAMELEN; i++)
+               if (hostname[i] == '\0')
+                       break;
+       hostnamelen = i;
+       inittodr((time_t)0);    /* There is no time in the nfs fsstat so ?? */
+       return (0);
+}
+
+/*
+ * Convert the integer fields of the nfs_args structure from net byte order
+ * to host byte order. Called by nfs_mountroot() above.
+ */
+void
+nfsargs_ntoh(nfsp)
+       register struct nfs_args *nfsp;
+{
+
+       NTOHL(nfsp->sotype);
+       NTOHL(nfsp->proto);
+       NTOHL(nfsp->flags);
+       NTOHL(nfsp->wsize);
+       NTOHL(nfsp->rsize);
+       NTOHL(nfsp->timeo);
+       NTOHL(nfsp->retrans);
+       NTOHL(nfsp->maxgrouplist);
+       NTOHL(nfsp->readahead);
+       NTOHL(nfsp->leaseterm);
+       NTOHL(nfsp->deadthresh);
 }
 
 /*
 }
 
 /*
@@ -94,57 +288,61 @@ nfs_mountroot()
  * an error after that means that I have to release the mbuf.
  */
 /* ARGSUSED */
  * an error after that means that I have to release the mbuf.
  */
 /* ARGSUSED */
-nfs_mount(mp, path, data, ndp)
+nfs_mount(mp, path, data, ndp, p)
        struct mount *mp;
        char *path;
        caddr_t data;
        struct nameidata *ndp;
        struct mount *mp;
        char *path;
        caddr_t data;
        struct nameidata *ndp;
+       struct proc *p;
 {
        int error;
        struct nfs_args args;
 {
        int error;
        struct nfs_args args;
-       struct mbuf *saddr;
+       struct mbuf *nam;
+       struct vnode *vp;
        char pth[MNAMELEN], hst[MNAMELEN];
        char pth[MNAMELEN], hst[MNAMELEN];
-       int len;
+       u_int len;
        nfsv2fh_t nfh;
 
        nfsv2fh_t nfh;
 
-       if (mp->m_flag & M_UPDATE)
+       if (mp->mnt_flag & MNT_UPDATE)
                return (0);
        if (error = copyin(data, (caddr_t)&args, sizeof (struct nfs_args)))
                return (error);
                return (0);
        if (error = copyin(data, (caddr_t)&args, sizeof (struct nfs_args)))
                return (error);
-       if (error=copyin((caddr_t)args.fh, (caddr_t)&nfh, sizeof (nfsv2fh_t)))
+       if (error = copyin((caddr_t)args.fh, (caddr_t)&nfh, sizeof (nfsv2fh_t)))
                return (error);
        if (error = copyinstr(path, pth, MNAMELEN-1, &len))
                return (error);
                return (error);
        if (error = copyinstr(path, pth, MNAMELEN-1, &len))
                return (error);
-       bzero(&pth[len], MNAMELEN-len);
+       bzero(&pth[len], MNAMELEN - len);
        if (error = copyinstr(args.hostname, hst, MNAMELEN-1, &len))
                return (error);
        if (error = copyinstr(args.hostname, hst, MNAMELEN-1, &len))
                return (error);
-       bzero(&hst[len], MNAMELEN-len);
+       bzero(&hst[len], MNAMELEN - len);
        /* sockargs() call must be after above copyin() calls */
        /* sockargs() call must be after above copyin() calls */
-       if (error = sockargs(&saddr, (caddr_t)args.addr,
-               sizeof (struct sockaddr_in), MT_SONAME))
+       if (error = sockargs(&nam, (caddr_t)args.addr,
+               args.addrlen, MT_SONAME))
                return (error);
        args.fh = &nfh;
                return (error);
        args.fh = &nfh;
-       error = mountnfs(&args, mp, saddr, pth, hst);
+       error = mountnfs(&args, mp, nam, pth, hst, &vp);
        return (error);
 }
 
 /*
  * Common code for mount and mountroot
  */
        return (error);
 }
 
 /*
  * Common code for mount and mountroot
  */
-mountnfs(argp, mp, saddr, pth, hst)
+mountnfs(argp, mp, nam, pth, hst, vpp)
        register struct nfs_args *argp;
        register struct mount *mp;
        register struct nfs_args *argp;
        register struct mount *mp;
-       register struct mbuf *saddr;
+       struct mbuf *nam;
        char *pth, *hst;
        char *pth, *hst;
+       struct vnode **vpp;
 {
        register struct nfsmount *nmp;
        struct nfsnode *np;
 {
        register struct nfsmount *nmp;
        struct nfsnode *np;
-       fsid_t tfsid;
        int error;
        int error;
+       fsid_t tfsid;
 
 
-       nmp = (struct nfsmount *)malloc(sizeof (struct nfsmount), M_NFSMNT,
-           M_WAITOK);
-       mp->m_data = (qaddr_t)nmp;
+       MALLOC(nmp, struct nfsmount *, sizeof (struct nfsmount), M_NFSMNT,
+               M_WAITOK);
+       bzero((caddr_t)nmp, sizeof (struct nfsmount));
+       mp->mnt_data = (qaddr_t)nmp;
        /*
         * Generate a unique nfs mount id. The problem is that a dev number
         * is not unique across multiple systems. The techique is as follows:
        /*
         * Generate a unique nfs mount id. The problem is that a dev number
         * is not unique across multiple systems. The techique is as follows:
@@ -159,13 +357,13 @@ mountnfs(argp, mp, saddr, pth, hst)
         *     simply makes the major dev number tick up. The upper bound is
         *     set to major dev 127 to avoid any sign extention problems
         */
         *     simply makes the major dev number tick up. The upper bound is
         *     set to major dev 127 to avoid any sign extention problems
         */
-       mp->m_fsid.val[0] = makedev(nblkdev, 0);
-       mp->m_fsid.val[1] = MOUNT_NFS;
+       mp->mnt_stat.f_fsid.val[0] = makedev(nblkdev, 0);
+       mp->mnt_stat.f_fsid.val[1] = MOUNT_NFS;
        if (++nfs_mntid == 0)
                ++nfs_mntid;
        tfsid.val[0] = makedev(nblkdev, nfs_mntid);
        tfsid.val[1] = MOUNT_NFS;
        if (++nfs_mntid == 0)
                ++nfs_mntid;
        tfsid.val[0] = makedev(nblkdev, nfs_mntid);
        tfsid.val[1] = MOUNT_NFS;
-       while (getvfs(&tfsid)) {
+       while (rootfs && getvfs(&tfsid)) {
                tfsid.val[0]++;
                nfs_mntid++;
        }
                tfsid.val[0]++;
                nfs_mntid++;
        }
@@ -173,43 +371,104 @@ mountnfs(argp, mp, saddr, pth, hst)
                error = ENOENT;
                goto bad;
        }
                error = ENOENT;
                goto bad;
        }
-       mp->m_fsid.val[0] = tfsid.val[0];
+       mp->mnt_stat.f_fsid.val[0] = tfsid.val[0];
        nmp->nm_mountp = mp;
        nmp->nm_flag = argp->flags;
        nmp->nm_mountp = mp;
        nmp->nm_flag = argp->flags;
-       nmp->nm_sockaddr = saddr;
-       /* Set up the sockets */
-       if (error = socreate(AF_INET, &nmp->nm_so, SOCK_DGRAM, 0))
+       if ((nmp->nm_flag & (NFSMNT_NQNFS | NFSMNT_MYWRITE)) ==
+               (NFSMNT_NQNFS | NFSMNT_MYWRITE)) {
+               error = EPERM;
                goto bad;
                goto bad;
-       if (error = soconnect(nmp->nm_so, saddr))
+       }
+       if ((nmp->nm_flag & (NFSMNT_RDIRALOOK | NFSMNT_LEASETERM)) &&
+           (nmp->nm_flag & NFSMNT_NQNFS) == 0) {
+               error = EPERM;
                goto bad;
                goto bad;
-       if ((argp->flags & NFSMNT_TIMEO) && argp->timeo >= 1)
-               nmp->nm_timeo = argp->timeo;
-       else
-               nmp->nm_timeo = NFS_TIMEO;
-       if ((argp->flags & NFSMNT_RETRANS) && argp->retrans > 0)
-               nmp->nm_retrans = argp->retrans;
-       else
-               nmp->nm_retrans = NFS_RETRANS;
-       if ((argp->flags & NFSMNT_WSIZE) &&
-           argp->wsize <= NFS_MAXDATA && argp->wsize > 0 &&
-          (argp->wsize & 0x1ff) == 0)
+       }
+       nmp->nm_timeo = NFS_TIMEO;
+       nmp->nm_retry = NFS_RETRANS;
+       nmp->nm_wsize = NFS_WSIZE;
+       nmp->nm_rsize = NFS_RSIZE;
+       nmp->nm_numgrps = NFS_MAXGRPS;
+       nmp->nm_readahead = NFS_DEFRAHEAD;
+       nmp->nm_leaseterm = NQ_DEFLEASE;
+       nmp->nm_deadthresh = NQ_DEADTHRESH;
+       nmp->nm_tnext = (struct nfsnode *)nmp;
+       nmp->nm_tprev = (struct nfsnode *)nmp;
+       nmp->nm_inprog = NULLVP;
+       bcopy((caddr_t)argp->fh, (caddr_t)&nmp->nm_fh, sizeof(nfsv2fh_t));
+       mp->mnt_stat.f_type = MOUNT_NFS;
+       bcopy(hst, mp->mnt_stat.f_mntfromname, MNAMELEN);
+       bcopy(pth, mp->mnt_stat.f_mntonname, MNAMELEN);
+       nmp->nm_nam = nam;
+
+       if ((argp->flags & NFSMNT_TIMEO) && argp->timeo > 0) {
+               nmp->nm_timeo = (argp->timeo * NFS_HZ + 5) / 10;
+               if (nmp->nm_timeo < NFS_MINTIMEO)
+                       nmp->nm_timeo = NFS_MINTIMEO;
+               else if (nmp->nm_timeo > NFS_MAXTIMEO)
+                       nmp->nm_timeo = NFS_MAXTIMEO;
+       }
+
+       if ((argp->flags & NFSMNT_RETRANS) && argp->retrans > 1) {
+               nmp->nm_retry = argp->retrans;
+               if (nmp->nm_retry > NFS_MAXREXMIT)
+                       nmp->nm_retry = NFS_MAXREXMIT;
+       }
+
+       if ((argp->flags & NFSMNT_WSIZE) && argp->wsize > 0) {
                nmp->nm_wsize = argp->wsize;
                nmp->nm_wsize = argp->wsize;
-       else
-               nmp->nm_wsize = NFS_WSIZE;
-       if ((argp->flags & NFSMNT_RSIZE) &&
-           argp->rsize <= NFS_MAXDATA && argp->rsize > 0 &&
-          (argp->rsize & 0x1ff) == 0)
+               /* Round down to multiple of blocksize */
+               nmp->nm_wsize &= ~0x1ff;
+               if (nmp->nm_wsize <= 0)
+                       nmp->nm_wsize = 512;
+               else if (nmp->nm_wsize > NFS_MAXDATA)
+                       nmp->nm_wsize = NFS_MAXDATA;
+       }
+       if (nmp->nm_wsize > MAXBSIZE)
+               nmp->nm_wsize = MAXBSIZE;
+
+       if ((argp->flags & NFSMNT_RSIZE) && argp->rsize > 0) {
                nmp->nm_rsize = argp->rsize;
                nmp->nm_rsize = argp->rsize;
-       else
-               nmp->nm_rsize = NFS_RSIZE;
-       bcopy((caddr_t)argp->fh, (caddr_t)&nmp->nm_fh, sizeof(nfsv2fh_t));
-       bcopy(pth, nmp->nm_path, MNAMELEN);
-       bcopy(hst, nmp->nm_host, MNAMELEN);
+               /* Round down to multiple of blocksize */
+               nmp->nm_rsize &= ~0x1ff;
+               if (nmp->nm_rsize <= 0)
+                       nmp->nm_rsize = 512;
+               else if (nmp->nm_rsize > NFS_MAXDATA)
+                       nmp->nm_rsize = NFS_MAXDATA;
+       }
+       if (nmp->nm_rsize > MAXBSIZE)
+               nmp->nm_rsize = MAXBSIZE;
+       if ((argp->flags & NFSMNT_MAXGRPS) && argp->maxgrouplist >= 0 &&
+               argp->maxgrouplist <= NFS_MAXGRPS)
+               nmp->nm_numgrps = argp->maxgrouplist;
+       if ((argp->flags & NFSMNT_READAHEAD) && argp->readahead >= 0 &&
+               argp->readahead <= NFS_MAXRAHEAD)
+               nmp->nm_readahead = argp->readahead;
+       if ((argp->flags & NFSMNT_LEASETERM) && argp->leaseterm >= 2 &&
+               argp->leaseterm <= NQ_MAXLEASE)
+               nmp->nm_leaseterm = argp->leaseterm;
+       if ((argp->flags & NFSMNT_DEADTHRESH) && argp->deadthresh >= 1 &&
+               argp->deadthresh <= NQ_NEVERDEAD)
+               nmp->nm_deadthresh = argp->deadthresh;
+       /* Set up the sockets and per-host congestion */
+       nmp->nm_sotype = argp->sotype;
+       nmp->nm_soproto = argp->proto;
+
        /*
        /*
-        * Set to CLBYTES so that vinifod() doesn't get confused.
-        * Actually any exact multiple of CLBYTES will do
+        * For Connection based sockets (TCP,...) defer the connect until
+        * the first request, in case the server is not responding.
         */
         */
-       mp->m_bsize = mp->m_fsize = CLBYTES;
+       if (nmp->nm_sotype == SOCK_DGRAM &&
+               (error = nfs_connect(nmp, (struct nfsreq *)0)))
+               goto bad;
+
+       /*
+        * This is silly, but it has to be set so that vinifod() works.
+        * We do not want to do an nfs_statfs() here since we can get
+        * stuck on a dead server and we are holding a lock on the mount
+        * point.
+        */
+       mp->mnt_stat.f_iosize = NFS_MAXDGRAMDATA;
        /*
         * A reference count is needed on the nfsnode representing the
         * remote root.  If this object is not persistent, then backward
        /*
         * A reference count is needed on the nfsnode representing the
         * remote root.  If this object is not persistent, then backward
@@ -220,34 +479,36 @@ mountnfs(argp, mp, saddr, pth, hst)
         */
        if (error = nfs_nget(mp, &nmp->nm_fh, &np))
                goto bad;
         */
        if (error = nfs_nget(mp, &nmp->nm_fh, &np))
                goto bad;
-       /*
-        * Unlock it, but keep the reference count.
-        */
-       nfs_unlock(NFSTOV(np));
+       *vpp = NFSTOV(np);
+
        return (0);
 bad:
        return (0);
 bad:
-       m_freem(saddr);
+       nfs_disconnect(nmp);
        free((caddr_t)nmp, M_NFSMNT);
        free((caddr_t)nmp, M_NFSMNT);
+       m_freem(nam);
        return (error);
 }
 
 /*
  * unmount system call
  */
        return (error);
 }
 
 /*
  * unmount system call
  */
-nfs_unmount(mp, flags)
+nfs_unmount(mp, mntflags, p)
        struct mount *mp;
        struct mount *mp;
-       int flags;
+       int mntflags;
+       struct proc *p;
 {
        register struct nfsmount *nmp;
 {
        register struct nfsmount *nmp;
-       register struct nfsreq *rep;
-       struct nfsreq *rep2;
        struct nfsnode *np;
        struct nfsnode *np;
-       int error;
-       int s;
+       struct vnode *vp;
+       int error, flags = 0;
+       extern int doforce;
 
 
-       if (flags & MNT_FORCE)
-               return (EINVAL);
-       nmp = vfs_to_nfs(mp);
+       if (mntflags & MNT_FORCE) {
+               if (!doforce || mp == rootfs)
+                       return (EINVAL);
+               flags |= FORCECLOSE;
+       }
+       nmp = VFSTONFS(mp);
        /*
         * Clear out the buffer cache
         */
        /*
         * Clear out the buffer cache
         */
@@ -256,10 +517,10 @@ nfs_unmount(mp, flags)
                return (EBUSY);
        /*
         * Goes something like this..
                return (EBUSY);
        /*
         * Goes something like this..
-        * - Decrement reference on the nfsnode representing remote root.
-        *   Must do this first, otherwise vflush will return EBUSY.
-        * - Call vflush() to clear out vnodes for this file system
-        * - Flush out lookup cache
+        * - Check for activity on the root vnode (other than ourselves).
+        * - Call vflush() to clear out vnodes for this file system,
+        *   except for the root vnode.
+        * - Decrement reference on the vnode representing remote root.
         * - Close the socket
         * - Free up the data structures
         */
         * - Close the socket
         * - Free up the data structures
         */
@@ -270,34 +531,42 @@ nfs_unmount(mp, flags)
         */
        if (error = nfs_nget(mp, &nmp->nm_fh, &np))
                return(error);
         */
        if (error = nfs_nget(mp, &nmp->nm_fh, &np))
                return(error);
+       vp = NFSTOV(np);
+       if (vp->v_usecount > 2) {
+               vput(vp);
+               return (EBUSY);
+       }
+
        /*
        /*
-        * Get rid of two reference counts, and unlock it on the second.
+        * Must handshake with nqnfs_clientd() if it is active.
         */
         */
-       vrele(NFSTOV(np));
-       vput(NFSTOV(np));
-       if (error = vflush(mp, (struct vnode *)0, flags))
+       nmp->nm_flag |= NFSMNT_DISMINPROG;
+       while (nmp->nm_inprog != NULLVP)
+               (void) tsleep((caddr_t)&lbolt, PSOCK, "nfsdism", 0);
+       if (error = vflush(mp, vp, flags)) {
+               vput(vp);
+               nmp->nm_flag &= ~NFSMNT_DISMINPROG;
                return (error);
                return (error);
+       }
+
        /*
        /*
-        * Scan the request list for any requests left hanging about
+        * We are now committed to the unmount.
+        * For NQNFS, let the server daemon free the nfsmount structure.
         */
         */
-       s = splnet();
-       rep = nfsreqh.r_next;
-       while (rep && rep != &nfsreqh) {
-               if (rep->r_mntp == nmp) {
-                       rep->r_prev->r_next = rep2 = rep->r_next;
-                       rep->r_next->r_prev = rep->r_prev;
-                       m_freem(rep->r_mreq);
-                       if (rep->r_mrep != NULL)
-                               m_freem(rep->r_mrep);
-                       free((caddr_t)rep, M_NFSREQ);
-                       rep = rep2;
-               } else
-                       rep = rep->r_next;
-       }
-       splx(s);
-       soclose(nmp->nm_so);
-       m_freem(nmp->nm_sockaddr);
-       free((caddr_t)nmp, M_NFSMNT);
+       if (nmp->nm_flag & (NFSMNT_NQNFS | NFSMNT_KERB))
+               nmp->nm_flag |= NFSMNT_DISMNT;
+
+       /*
+        * There are two reference counts to get rid of here.
+        */
+       vrele(vp);
+       vrele(vp);
+       vgone(vp);
+       nfs_disconnect(nmp);
+       m_freem(nmp->nm_nam);
+
+       if ((nmp->nm_flag & (NFSMNT_NQNFS | NFSMNT_KERB)) == 0)
+               free((caddr_t)nmp, M_NFSMNT);
        return (0);
 }
 
        return (0);
 }
 
@@ -313,7 +582,7 @@ nfs_root(mp, vpp)
        struct nfsnode *np;
        int error;
 
        struct nfsnode *np;
        int error;
 
-       nmp = vfs_to_nfs(mp);
+       nmp = VFSTONFS(mp);
        if (error = nfs_nget(mp, &nmp->nm_fh, &np))
                return (error);
        vp = NFSTOV(np);
        if (error = nfs_nget(mp, &nmp->nm_fh, &np))
                return (error);
        vp = NFSTOV(np);
@@ -334,11 +603,11 @@ nfs_sync(mp, waitfor)
        int waitfor;
 {
        if (syncprt)
        int waitfor;
 {
        if (syncprt)
-               bufstats();
+               ufs_bufstats();
        /*
         * Force stale buffer cache information to be flushed.
         */
        /*
         * Force stale buffer cache information to be flushed.
         */
-       mntflushbuf(mp);
+       mntflushbuf(mp, waitfor == MNT_WAIT ? B_SYNC : 0);
        return (0);
 }
 
        return (0);
 }
 
@@ -346,9 +615,10 @@ nfs_sync(mp, waitfor)
  * At this point, this should never happen
  */
 /* ARGSUSED */
  * At this point, this should never happen
  */
 /* ARGSUSED */
-nfs_fhtovp(mp, fhp, vpp)
+nfs_fhtovp(mp, fhp, setgen, vpp)
        struct mount *mp;
        struct fid *fhp;
        struct mount *mp;
        struct fid *fhp;
+       int setgen;
        struct vnode **vpp;
 {
 
        struct vnode **vpp;
 {
 
@@ -359,10 +629,9 @@ nfs_fhtovp(mp, fhp, vpp)
  * Vnode pointer to File handle, should never happen either
  */
 /* ARGSUSED */
  * Vnode pointer to File handle, should never happen either
  */
 /* ARGSUSED */
-nfs_vptofh(mp, fhp, vpp)
-       struct mount *mp;
+nfs_vptofh(vp, fhp)
+       struct vnode *vp;
        struct fid *fhp;
        struct fid *fhp;
-       struct vnode **vpp;
 {
 
        return (EINVAL);
 {
 
        return (EINVAL);
@@ -372,10 +641,26 @@ nfs_vptofh(mp, fhp, vpp)
  * Vfs start routine, a no-op.
  */
 /* ARGSUSED */
  * Vfs start routine, a no-op.
  */
 /* ARGSUSED */
-nfs_start(mp, flags)
+nfs_start(mp, flags, p)
        struct mount *mp;
        int flags;
        struct mount *mp;
        int flags;
+       struct proc *p;
 {
 
        return (0);
 }
 {
 
        return (0);
 }
+
+/*
+ * Do operations associated with quotas, not supported
+ */
+/* ARGSUSED */
+nfs_quotactl(mp, cmd, uid, arg, p)
+       struct mount *mp;
+       int cmd;
+       u_int uid;
+       caddr_t arg;
+       struct proc *p;
+{
+
+       return (EOPNOTSUPP);
+}