formating
[unix-history] / usr / src / sys / ufs / ffs / ufs_vnops.c
index 7483dec..85c4a23 100644 (file)
-/*     ufs_vnops.c     3.1     %H%     */
+/*
+ * Copyright (c) 1982, 1986, 1989 Regents of the University of California.
+ * All rights reserved.
+ *
+ * %sccs.include.redist.c%
+ *
+ *     @(#)ufs_vnops.c 7.74 (Berkeley) %G%
+ */
+
+#include <sys/param.h>
+#include <sys/systm.h>
+#include <sys/namei.h>
+#include <sys/resourcevar.h>
+#include <sys/kernel.h>
+#include <sys/file.h>
+#include <sys/stat.h>
+#include <sys/buf.h>
+#include <sys/proc.h>
+#include <sys/conf.h>
+#include <sys/mount.h>
+#include <sys/vnode.h>
+#include <sys/specdev.h>
+#include <sys/fifo.h>
+#include <sys/malloc.h>
+
+#include <ufs/ufs/lockf.h>
+#include <ufs/ufs/quota.h>
+#include <ufs/ufs/inode.h>
+#include <ufs/ufs/dir.h>
+#include <ufs/ufs/ufsmount.h>
+#include <ufs/ufs/ufs_extern.h>
 
 
-#include "../h/param.h"
-#include "../h/systm.h"
-#include "../h/mount.h"
-#include "../h/ino.h"
-#include "../h/reg.h"
-#include "../h/buf.h"
-#include "../h/filsys.h"
-#include "../h/dir.h"
-#include "../h/user.h"
-#include "../h/inode.h"
-#include "../h/file.h"
-#include "../h/conf.h"
-#include "../h/stat.h"
+int ufs_chmod __P((struct vnode *, int, struct proc *));
+int ufs_chown __P((struct vnode *, u_int, u_int, struct proc *));
+
+enum vtype iftovt_tab[16] = {
+       VNON, VFIFO, VCHR, VNON, VDIR, VNON, VBLK, VNON,
+       VREG, VNON, VLNK, VNON, VSOCK, VNON, VNON, VBAD,
+};
+int    vttoif_tab[9] = {
+       0, IFREG, IFDIR, IFBLK, IFCHR, IFLNK, IFSOCK, IFIFO, IFMT,
+};
+
+#ifdef _NOQUAD
+#define        SETHIGH(q, h)   (q).val[_QUAD_HIGHWORD] = (h)
+#define        SETLOW(q, l)    (q).val[_QUAD_LOWWORD] = (l)
+#else /* QUAD */
+union _qcvt {
+       quad_t qcvt;
+       long val[2];
+};
+#define SETHIGH(q, h) { \
+       union _qcvt tmp; \
+       tmp.qcvt = (q); \
+       tmp.val[_QUAD_HIGHWORD] = (h); \
+       (q) = tmp.qcvt; \
+}
+#define SETLOW(q, l) { \
+       union _qcvt tmp; \
+       tmp.qcvt = (q); \
+       tmp.val[_QUAD_LOWWORD] = (l); \
+       (q) = tmp.qcvt; \
+}
+#endif /* QUAD */
 
 /*
 
 /*
- * the fstat system call.
+ * Create a regular file
  */
  */
-fstat()
+int
+ufs_create(dvp, vpp, cnp, vap)
+       struct vnode *dvp;
+       struct vnode **vpp;
+       struct componentname *cnp;
+       struct vattr *vap;
 {
 {
-       register struct file *fp;
-       register struct a {
-               int     fdes;
-               struct stat *sb;
-       } *uap;
+       int error;
 
 
-       uap = (struct a *)u.u_ap;
-       fp = getf(uap->fdes);
-       if(fp == NULL)
-               return;
-       stat1(fp->f_inode, uap->sb, fp->f_flag&FPIPE? fp->f_un.f_offset: 0);
+       if (error =
+           ufs_makeinode(MAKEIMODE(vap->va_type, vap->va_mode), dvp, vpp, cnp))
+               return (error);
+       return (0);
 }
 
 /*
 }
 
 /*
- * the stat system call.
+ * Mknod vnode call
  */
  */
-stat()
+/* ARGSUSED */
+int
+ufs_mknod(dvp, vpp, cnp, vap)
+       struct vnode *dvp;
+       struct vnode **vpp;
+       struct componentname *cnp;
+       struct vattr *vap;
 {
        register struct inode *ip;
 {
        register struct inode *ip;
-       register struct a {
-               char    *fname;
-               struct stat *sb;
-       } *uap;
+       int error;
 
 
-       uap = (struct a *)u.u_ap;
-       ip = namei(uchar, 0);
-       if(ip == NULL)
-               return;
-       stat1(ip, uap->sb, (off_t)0);
-       iput(ip);
+       if (error =
+           ufs_makeinode(MAKEIMODE(vap->va_type, vap->va_mode), dvp, vpp, cnp))
+               return (error);
+       ip = VTOI(*vpp);
+       ip->i_flag |= IACC|IUPD|ICHG;
+       if (vap->va_rdev != VNOVAL) {
+               /*
+                * Want to be able to use this to make badblock
+                * inodes, so don't truncate the dev number.
+                */
+               ip->i_rdev = vap->va_rdev;
+       }
+       /*
+        * Remove inode so that it will be reloaded by iget and
+        * checked to see if it is an alias of an existing entry
+        * in the inode cache.
+        */
+       vput(*vpp);
+       (*vpp)->v_type = VNON;
+       vgone(*vpp);
+       *vpp = 0;
+       return (0);
 }
 
 /*
 }
 
 /*
- * The basic routine for fstat and stat:
- * get the inode and pass appropriate parts back.
+ * Open called.
+ *
+ * Nothing to do.
  */
  */
-stat1(ip, ub, pipeadj)
-register struct inode *ip;
-struct stat *ub;
-off_t pipeadj;
+/* ARGSUSED */
+int
+ufs_open(vp, mode, cred, p)
+       struct vnode *vp;
+       int mode;
+       struct ucred *cred;
+       struct proc *p;
 {
 {
-       register struct dinode *dp;
-       register struct buf *bp;
-       struct stat ds;
-
-       iupdat(ip, &time, &time);
-       /*
-        * first copy from inode table
-        */
-       ds.st_dev = ip->i_dev;
-       ds.st_ino = ip->i_number;
-       ds.st_mode = ip->i_mode;
-       ds.st_nlink = ip->i_nlink;
-       ds.st_uid = ip->i_uid;
-       ds.st_gid = ip->i_gid;
-       ds.st_rdev = (dev_t)ip->i_un.i_rdev;
-       ds.st_size = ip->i_size - pipeadj;
-       /*
-        * next the dates in the disk
-        */
-       bp = bread(ip->i_dev, itod(ip->i_number));
-       dp = bp->b_un.b_dino;
-       dp += itoo(ip->i_number);
-       ds.st_atime = dp->di_atime;
-       ds.st_mtime = dp->di_mtime;
-       ds.st_ctime = dp->di_ctime;
-       brelse(bp);
-       if (copyout((caddr_t)&ds, (caddr_t)ub, sizeof(ds)) < 0)
-               u.u_error = EFAULT;
-}
-
-/*
- * the dup system call.
- */
-dup()
-{
-       register struct file *fp;
-       register struct a {
-               int     fdes;
-               int     fdes2;
-       } *uap;
-       register i, m;
-
-       uap = (struct a *)u.u_ap;
-       m = uap->fdes & ~077;
-       uap->fdes &= 077;
-       fp = getf(uap->fdes);
-       if(fp == NULL)
-               return;
-       if ((m&0100) == 0) {
-               if ((i = ufalloc()) < 0)
-                       return;
-       } else {
-               i = uap->fdes2;
-               if (i<0 || i>=NOFILE) {
-                       u.u_error = EBADF;
-                       return;
+
+       return (0);
+}
+
+/*
+ * Close called
+ *
+ * Update the times on the inode.
+ */
+/* ARGSUSED */
+int
+ufs_close(vp, fflag, cred, p)
+       struct vnode *vp;
+       int fflag;
+       struct ucred *cred;
+       struct proc *p;
+{
+       register struct inode *ip;
+
+       ip = VTOI(vp);
+       if (vp->v_usecount > 1 && !(ip->i_flag & ILOCKED))
+               ITIMES(ip, &time, &time);
+       return (0);
+}
+
+/*
+ * Check mode permission on inode pointer. Mode is READ, WRITE or EXEC.
+ * The mode is shifted to select the owner/group/other fields. The
+ * super user is granted all permissions.
+ */
+int
+ufs_access(vp, mode, cred, p)
+       struct vnode *vp;
+       register int mode;
+       struct ucred *cred;
+       struct proc *p;
+{
+       register struct inode *ip = VTOI(vp);
+       register gid_t *gp;
+       int i, error;
+
+#ifdef DIAGNOSTIC
+       if (!VOP_ISLOCKED(vp)) {
+               vprint("ufs_access: not locked", vp);
+               panic("ufs_access: not locked");
+       }
+#endif
+#ifdef QUOTA
+       if (mode & VWRITE) {
+               switch (vp->v_type) {
+               case VREG: case VDIR: case VLNK:
+                       if (error = getinoquota(ip))
+                               return (error);
+               }
+       }
+#endif /* QUOTA */
+       /*
+        * If you're the super-user, you always get access.
+        */
+       if (cred->cr_uid == 0)
+               return (0);
+       /*
+        * Access check is based on only one of owner, group, public.
+        * If not owner, then check group. If not a member of the
+        * group, then check public access.
+        */
+       if (cred->cr_uid != ip->i_uid) {
+               mode >>= 3;
+               gp = cred->cr_groups;
+               for (i = 0; i < cred->cr_ngroups; i++, gp++)
+                       if (ip->i_gid == *gp)
+                               goto found;
+               mode >>= 3;
+found:
+               ;
+       }
+       if ((ip->i_mode & mode) != 0)
+               return (0);
+       return (EACCES);
+}
+
+/* ARGSUSED */
+int
+ufs_getattr(vp, vap, cred, p)
+       struct vnode *vp;
+       register struct vattr *vap;
+       struct ucred *cred;
+       struct proc *p;
+{
+       register struct inode *ip;
+
+       ip = VTOI(vp);
+       ITIMES(ip, &time, &time);
+       /*
+        * Copy from inode table
+        */
+       vap->va_fsid = ip->i_dev;
+       vap->va_fileid = ip->i_number;
+       vap->va_mode = ip->i_mode & ~IFMT;
+       vap->va_nlink = ip->i_nlink;
+       vap->va_uid = ip->i_uid;
+       vap->va_gid = ip->i_gid;
+       vap->va_rdev = (dev_t)ip->i_rdev;
+#ifdef tahoe
+       vap->va_size = ip->i_size;
+       vap->va_size_rsv = 0;
+#else
+       vap->va_qsize = ip->i_din.di_qsize;
+#endif
+       vap->va_atime.tv_sec = ip->i_atime;
+       vap->va_atime.tv_usec = 0;
+       vap->va_mtime.tv_sec = ip->i_mtime;
+       vap->va_mtime.tv_usec = 0;
+       vap->va_ctime.tv_sec = ip->i_ctime;
+       vap->va_ctime.tv_usec = 0;
+       vap->va_flags = ip->i_flags;
+       vap->va_gen = ip->i_gen;
+       /* this doesn't belong here */
+       if (vp->v_type == VBLK)
+               vap->va_blocksize = BLKDEV_IOSIZE;
+       else if (vp->v_type == VCHR)
+               vap->va_blocksize = MAXBSIZE;
+       else
+               vap->va_blocksize = vp->v_mount->mnt_stat.f_iosize;
+       vap->va_bytes = dbtob(ip->i_blocks);
+#ifdef _NOQUAD
+       vap->va_bytes_rsv = 0;
+#endif
+       vap->va_type = vp->v_type;
+       vap->va_filerev = ip->i_modrev;
+       return (0);
+}
+
+/*
+ * Set attribute vnode op. called from several syscalls
+ */
+int
+ufs_setattr(vp, vap, cred, p)
+       register struct vnode *vp;
+       register struct vattr *vap;
+       register struct ucred *cred;
+       struct proc *p;
+{
+       register struct inode *ip;
+       int error;
+
+       /*
+        * Check for unsettable attributes.
+        */
+       if ((vap->va_type != VNON) || (vap->va_nlink != VNOVAL) ||
+           (vap->va_fsid != VNOVAL) || (vap->va_fileid != VNOVAL) ||
+           (vap->va_blocksize != VNOVAL) || (vap->va_rdev != VNOVAL) ||
+           ((int)vap->va_bytes != VNOVAL) || (vap->va_gen != VNOVAL)) {
+               return (EINVAL);
+       }
+       /*
+        * Go through the fields and update iff not VNOVAL.
+        */
+       if (vap->va_uid != (u_short)VNOVAL || vap->va_gid != (u_short)VNOVAL)
+               if (error = ufs_chown(vp, vap->va_uid, vap->va_gid, p))
+                       return (error);
+       if (vap->va_size != VNOVAL) {
+               if (vp->v_type == VDIR)
+                       return (EISDIR);
+               if (error = VOP_TRUNCATE(vp, vap->va_size, 0)) /* IO_SYNC? */
+                       return (error);
+       }
+       ip = VTOI(vp);
+       if (vap->va_atime.tv_sec != VNOVAL || vap->va_mtime.tv_sec != VNOVAL) {
+               if (cred->cr_uid != ip->i_uid &&
+                   (error = suser(cred, &p->p_acflag)))
+                       return (error);
+               if (vap->va_atime.tv_sec != VNOVAL)
+                       ip->i_flag |= IACC;
+               if (vap->va_mtime.tv_sec != VNOVAL)
+                       ip->i_flag |= IUPD;
+               ip->i_flag |= ICHG;
+               if (error = VOP_UPDATE(vp, &vap->va_atime, &vap->va_mtime, 1))
+                       return (error);
+       }
+       error = 0;
+       if (vap->va_mode != (u_short)VNOVAL)
+               error = ufs_chmod(vp, (int)vap->va_mode, p);
+       if (vap->va_flags != VNOVAL) {
+               if (cred->cr_uid != ip->i_uid &&
+                   (error = suser(cred, &p->p_acflag)))
+                       return (error);
+               if (cred->cr_uid == 0) {
+                       ip->i_flags = vap->va_flags;
+               } else {
+                       ip->i_flags &= 0xffff0000;
+                       ip->i_flags |= (vap->va_flags & 0xffff);
                }
                }
-               if (u.u_vrpages[i]) {
-                       u.u_error = ETXTBSY;
-                       return;
+               ip->i_flag |= ICHG;
+       }
+       return (error);
+}
+
+/*
+ * Change the mode on a file.
+ * Inode must be locked before calling.
+ */
+static int
+ufs_chmod(vp, mode, p)
+       register struct vnode *vp;
+       register int mode;
+       struct proc *p;
+{
+       register struct ucred *cred = p->p_ucred;
+       register struct inode *ip = VTOI(vp);
+       int error;
+
+       if (cred->cr_uid != ip->i_uid &&
+           (error = suser(cred, &p->p_acflag)))
+               return (error);
+       if (cred->cr_uid) {
+               if (vp->v_type != VDIR && (mode & ISVTX))
+                       return (EFTYPE);
+               if (!groupmember(ip->i_gid, cred) && (mode & ISGID))
+                       return (EPERM);
+       }
+       ip->i_mode &= ~07777;
+       ip->i_mode |= mode & 07777;
+       ip->i_flag |= ICHG;
+       if ((vp->v_flag & VTEXT) && (ip->i_mode & ISVTX) == 0)
+               (void) vnode_pager_uncache(vp);
+       return (0);
+}
+
+/*
+ * Perform chown operation on inode ip;
+ * inode must be locked prior to call.
+ */
+static int
+ufs_chown(vp, uid, gid, p)
+       register struct vnode *vp;
+       u_int uid;
+       u_int gid;
+       struct proc *p;
+{
+       register struct inode *ip = VTOI(vp);
+       register struct ucred *cred = p->p_ucred;
+       uid_t ouid;
+       gid_t ogid;
+       int error = 0;
+#ifdef QUOTA
+       register int i;
+       long change;
+#endif
+
+       if (uid == (u_short)VNOVAL)
+               uid = ip->i_uid;
+       if (gid == (u_short)VNOVAL)
+               gid = ip->i_gid;
+       /*
+        * If we don't own the file, are trying to change the owner
+        * of the file, or are not a member of the target group,
+        * the caller must be superuser or the call fails.
+        */
+       if ((cred->cr_uid != ip->i_uid || uid != ip->i_uid ||
+           !groupmember((gid_t)gid, cred)) &&
+           (error = suser(cred, &p->p_acflag)))
+               return (error);
+       ouid = ip->i_uid;
+       ogid = ip->i_gid;
+#ifdef QUOTA
+       if (error = getinoquota(ip))
+               return (error);
+       if (ouid == uid) {
+               dqrele(vp, ip->i_dquot[USRQUOTA]);
+               ip->i_dquot[USRQUOTA] = NODQUOT;
+       }
+       if (ogid == gid) {
+               dqrele(vp, ip->i_dquot[GRPQUOTA]);
+               ip->i_dquot[GRPQUOTA] = NODQUOT;
+       }
+       change = ip->i_blocks;
+       (void) chkdq(ip, -change, cred, CHOWN);
+       (void) chkiq(ip, -1, cred, CHOWN);
+       for (i = 0; i < MAXQUOTAS; i++) {
+               dqrele(vp, ip->i_dquot[i]);
+               ip->i_dquot[i] = NODQUOT;
+       }
+#endif
+       ip->i_uid = uid;
+       ip->i_gid = gid;
+#ifdef QUOTA
+       if ((error = getinoquota(ip)) == 0) {
+               if (ouid == uid) {
+                       dqrele(vp, ip->i_dquot[USRQUOTA]);
+                       ip->i_dquot[USRQUOTA] = NODQUOT;
+               }
+               if (ogid == gid) {
+                       dqrele(vp, ip->i_dquot[GRPQUOTA]);
+                       ip->i_dquot[GRPQUOTA] = NODQUOT;
+               }
+               if ((error = chkdq(ip, change, cred, CHOWN)) == 0) {
+                       if ((error = chkiq(ip, 1, cred, CHOWN)) == 0)
+                               goto good;
+                       else
+                               (void) chkdq(ip, -change, cred, CHOWN|FORCE);
+               }
+               for (i = 0; i < MAXQUOTAS; i++) {
+                       dqrele(vp, ip->i_dquot[i]);
+                       ip->i_dquot[i] = NODQUOT;
                }
                }
-               u.u_r.r_val1 = i;
        }
        }
-       if (i!=uap->fdes) {
-               if (u.u_ofile[i]!=NULL)
-                       closef(u.u_ofile[i]);
-               u.u_ofile[i] = fp;
-               fp->f_count++;
+       ip->i_uid = ouid;
+       ip->i_gid = ogid;
+       if (getinoquota(ip) == 0) {
+               if (ouid == uid) {
+                       dqrele(vp, ip->i_dquot[USRQUOTA]);
+                       ip->i_dquot[USRQUOTA] = NODQUOT;
+               }
+               if (ogid == gid) {
+                       dqrele(vp, ip->i_dquot[GRPQUOTA]);
+                       ip->i_dquot[GRPQUOTA] = NODQUOT;
+               }
+               (void) chkdq(ip, change, cred, FORCE|CHOWN);
+               (void) chkiq(ip, 1, cred, FORCE|CHOWN);
+               (void) getinoquota(ip);
        }
        }
+       return (error);
+good:
+       if (getinoquota(ip))
+               panic("chown: lost quota");
+#endif /* QUOTA */
+       if (ouid != uid || ogid != gid)
+               ip->i_flag |= ICHG;
+       if (ouid != uid && cred->cr_uid != 0)
+               ip->i_mode &= ~ISUID;
+       if (ogid != gid && cred->cr_uid != 0)
+               ip->i_mode &= ~ISGID;
+       return (0);
+}
+
+/* ARGSUSED */
+int
+ufs_ioctl(vp, com, data, fflag, cred, p)
+       struct vnode *vp;
+       int com;
+       caddr_t data;
+       int fflag;
+       struct ucred *cred;
+       struct proc *p;
+{
+
+       return (ENOTTY);
+}
+
+/* ARGSUSED */
+int
+ufs_select(vp, which, fflags, cred, p)
+       struct vnode *vp;
+       int which, fflags;
+       struct ucred *cred;
+       struct proc *p;
+{
+
+       /*
+        * We should really check to see if I/O is possible.
+        */
+       return (1);
+}
+
+/*
+ * Mmap a file
+ *
+ * NB Currently unsupported.
+ */
+/* ARGSUSED */
+int
+ufs_mmap(vp, fflags, cred, p)
+       struct vnode *vp;
+       int fflags;
+       struct ucred *cred;
+       struct proc *p;
+{
+
+       return (EINVAL);
 }
 
 /*
 }
 
 /*
- * the mount system call.
+ * Seek on a file
+ *
+ * Nothing to do, so just return.
  */
  */
-smount()
+/* ARGSUSED */
+int
+ufs_seek(vp, oldoff, newoff, cred)
+       struct vnode *vp;
+       off_t oldoff, newoff;
+       struct ucred *cred;
+{
+
+       return (0);
+}
+
+/*
+ * ufs remove
+ * Hard to avoid races here, especially
+ * in unlinking directories.
+ */
+int
+ufs_remove(dvp, vp, cnp)
+       struct vnode *dvp, *vp;
+       struct componentname *cnp;
+{
+       register struct inode *ip, *dp;
+       int error;
+
+       ip = VTOI(vp);
+       dp = VTOI(dvp);
+       error = ufs_dirremove(dvp, cnp);
+       if (!error) {
+               ip->i_nlink--;
+               ip->i_flag |= ICHG;
+       }
+       if (dp == ip)
+               vrele(ITOV(ip));
+       else
+               ufs_iput(ip);
+       ufs_iput(dp);
+       return (error);
+}
+
+/*
+ * link vnode call
+ */
+int
+ufs_link(vp, tdvp, cnp)
+       register struct vnode *vp;   /* source vnode */
+       struct vnode *tdvp;
+       struct componentname *cnp;
 {
 {
-       dev_t dev;
        register struct inode *ip;
        register struct inode *ip;
-       register struct mount *mp;
-       struct mount *smp;
-       register struct filsys *fp;
-       struct buf *bp;
-       register struct a {
-               char    *fspec;
-               char    *freg;
-               int     ronly;
-       } *uap;
-
-       uap = (struct a *)u.u_ap;
-       dev = getmdev();
-       if(u.u_error)
-               return;
-       u.u_dirp = (caddr_t)uap->freg;
-       ip = namei(uchar, 0);
-       if(ip == NULL)
-               return;
-       if(ip->i_count!=1 || (ip->i_mode&(IFBLK&IFCHR))!=0)
-               goto out;
-       smp = NULL;
-       for(mp = &mount[0]; mp < &mount[NMOUNT]; mp++) {
-               if(mp->m_bufp != NULL) {
-                       if(dev == mp->m_dev)
-                               goto out;
-               } else
-               if(smp == NULL)
-                       smp = mp;
-       }
-       mp = smp;
-       if(mp == NULL)
+       int error;
+
+#ifdef DIANOSTIC
+       if ((cnp->cn_flags & HASBUF) == 0)
+               panic("ufs_link: no name");
+#endif
+       ip = VTOI(vp);
+       if ((unsigned short)ip->i_nlink >= LINK_MAX) {
+               free(cnp->cn_pnbuf, M_NAMEI);
+               return (EMLINK);
+       }
+       if (tdvp != vp)
+               ILOCK(ip);
+       ip->i_nlink++;
+       ip->i_flag |= ICHG;
+       error = VOP_UPDATE(vp, &time, &time, 1);
+       if (!error)
+               error = ufs_direnter(ip, tdvp, cnp);
+       if (tdvp != vp)
+               IUNLOCK(ip);
+       FREE(cnp->cn_pnbuf, M_NAMEI);
+       vput(tdvp);
+       if (error) {
+               ip->i_nlink--;
+               ip->i_flag |= ICHG;
+       }
+       return (error);
+}
+
+
+
+/*
+ * relookup - lookup a path name component
+ *    Used by lookup to re-aquire things.
+ */
+int
+relookup(dvp, vpp, cnp)
+       struct vnode *dvp, **vpp;
+       struct componentname *cnp;
+{
+       register char *cp;              /* pointer into pathname argument */
+       register struct vnode *dp = 0;  /* the directory we are searching */
+       struct vnode *tdp;              /* saved dp */
+       struct mount *mp;               /* mount table entry */
+       int docache;                    /* == 0 do not cache last component */
+       int wantparent;                 /* 1 => wantparent or lockparent flag */
+       int rdonly;                     /* lookup read-only flag bit */
+       int error = 0;
+       int newhash;
+
+       /*
+        * Setup: break out flag bits into variables.
+        */
+       wantparent = cnp->cn_flags & (LOCKPARENT|WANTPARENT);
+       docache = (cnp->cn_flags & NOCACHE) ^ NOCACHE;
+       if (cnp->cn_nameiop == DELETE ||
+           (wantparent && cnp->cn_nameiop != CREATE))
+               docache = 0;
+       rdonly = cnp->cn_flags & RDONLY;
+       cnp->cn_flags &= ~ISSYMLINK;
+       dp = dvp;
+       VOP_LOCK(dp);
+
+/* dirloop: */
+       /*
+        * Search a new directory.
+        *
+        * The cn_hash value is for use by vfs_cache.
+        * The last component of the filename is left accessible via
+        * cnp->cn_nameptr for callers that need the name. Callers needing
+        * the name set the SAVENAME flag. When done, they assume
+        * responsibility for freeing the pathname buffer.
+        */
+#ifdef NAMEI_DIAGNOSTIC
+       newhash = 0;
+       for (cp = cnp->cn_nameptr; *cp != 0 && *cp != '/'; cp++)
+               newhash += (unsigned char)*cp;
+       if (newhash != cnp->cn_hash)
+               panic("relookup: bad hash");
+       if (cnp->cn_namelen != cp - cnp->cn_nameptr)
+               panic ("relookup: bad len");
+       { char c = *cp;
+       *cp = '\0';
+       printf("{%s}: ", cnp->cn_nameptr);
+       *cp = c; }
+#endif
+
+       /*
+        * Check for degenerate name (e.g. / or "")
+        * which is a way of talking about a directory,
+        * e.g. like "/." or ".".
+        */
+       if (cnp->cn_nameptr[0] == '\0') {
+               if (cnp->cn_nameiop != LOOKUP || wantparent) {
+                       error = EISDIR;
+                       goto bad;
+               }
+               if (dp->v_type != VDIR) {
+                       error = ENOTDIR;
+                       goto bad;
+               }
+               if (!(cnp->cn_flags & LOCKLEAF))
+                       VOP_UNLOCK(dp);
+               *vpp = dp;
+               if (cnp->cn_flags & SAVESTART)
+                       panic("lookup: SAVESTART");
+               return (0);
+       }
+
+       if (cnp->cn_flags & ISDOTDOT)
+               panic ("relookup: lookup on dot-dot");
+
+       /*
+        * We now have a segment name to search for, and a directory to search.
+        */
+       if (error = VOP_LOOKUP(dp, vpp, cnp)) {
+#ifdef DIAGNOSTIC
+               if (*vpp != NULL)
+                       panic("leaf should be empty");
+#endif
+#ifdef NAMEI_DIAGNOSTIC
+               printf("not found\n");
+#endif
+               if (cnp->cn_nameiop == LOOKUP || cnp->cn_nameiop == DELETE ||
+                   error != ENOENT || *cp != 0)
+                       goto bad;
+               /*
+                * If creating and at end of pathname, then can consider
+                * allowing file to be created.
+                */
+               if (rdonly || (dvp->v_mount->mnt_flag & MNT_RDONLY)) {
+                       error = EROFS;
+                       goto bad;
+               }
+               /*
+                * We return with ni_vp NULL to indicate that the entry
+                * doesn't currently exist, leaving a pointer to the
+                * (possibly locked) directory inode in ndp->ni_dvp.
+                */
+               if (cnp->cn_flags & SAVESTART) {
+                       /*
+                        * startdir == dvp, always
+                        */
+                       VREF(dvp);
+               }
+               return (0);
+       }
+#ifdef NAMEI_DIAGNOSTIC
+       printf("found\n");
+#endif
+
+       dp = *vpp;
+#ifdef DIAGNOSTIC
+       /*
+        * Check for symbolic link
+        */
+       if (dp->v_type == VLNK) {
+               panic ("relookup: symlink found.\n");
+       };
+
+       /*
+        * Check to see if the vnode has been mounted on;
+        * if so find the root of the mounted file system.
+        */
+#endif
+
+
+nextname:
+       /*
+        * Check for read-only file systems.
+        */
+       if (cnp->cn_nameiop == DELETE || cnp->cn_nameiop == RENAME) {
+               /*
+                * Disallow directory write attempts on read-only
+                * file systems.
+                */
+               if (rdonly || (dp->v_mount->mnt_flag & MNT_RDONLY) ||
+                   (wantparent &&
+                    (dvp->v_mount->mnt_flag & MNT_RDONLY))) {
+                       error = EROFS;
+                       goto bad2;
+               }
+       }
+       if (cnp->cn_flags & SAVESTART) {
+               /* ASSERT(dvp==ndp->ni_startdir) */
+               VREF(dvp);
+       }
+       
+       if (!wantparent)
+               vrele(dvp);
+       if ((cnp->cn_flags & LOCKLEAF) == 0)
+               VOP_UNLOCK(dp);
+       return (0);
+
+bad2:
+       if ((cnp->cn_flags & LOCKPARENT) && (cnp->cn_flags & ISLASTCN))
+               VOP_UNLOCK(dvp);
+       vrele(dvp);
+bad:
+       vput(dp);
+       *vpp = NULL;
+       return (error);
+}
+
+
+/*
+ * Rename system call.
+ *     rename("foo", "bar");
+ * is essentially
+ *     unlink("bar");
+ *     link("foo", "bar");
+ *     unlink("foo");
+ * but ``atomically''.  Can't do full commit without saving state in the
+ * inode on disk which isn't feasible at this time.  Best we can do is
+ * always guarantee the target exists.
+ *
+ * Basic algorithm is:
+ *
+ * 1) Bump link count on source while we're linking it to the
+ *    target.  This also ensure the inode won't be deleted out
+ *    from underneath us while we work (it may be truncated by
+ *    a concurrent `trunc' or `open' for creation).
+ * 2) Link source to destination.  If destination already exists,
+ *    delete it first.
+ * 3) Unlink source reference to inode if still around. If a
+ *    directory was moved and the parent of the destination
+ *    is different from the source, patch the ".." entry in the
+ *    directory.
+ */
+int
+ufs_rename(fdvp, fvp, fcnp,
+          tdvp, tvp, tcnp)
+       struct vnode *fdvp, *fvp;
+       struct componentname *fcnp;
+       struct vnode *tdvp, *tvp;
+       struct componentname *tcnp;
+{
+       register struct inode *ip, *xp, *dp;
+       struct dirtemplate dirbuf;
+       int doingdirectory = 0, oldparent = 0, newparent = 0;
+       int error = 0;
+       int fdvpneedsrele = 1, tdvpneedsrele = 1;
+
+#ifdef DIANOSTIC
+       if ((tcnp->cn_flags & HASBUF) == 0 ||
+           (fcnp->cn_flags & HASBUF) == 0)
+               panic("ufs_rename: no name");
+#endif
+       dp = VTOI(fdvp);
+       ip = VTOI(fvp);
+       /*
+        * Check if just deleting a link name.
+        */
+       if (fvp == tvp) {
+               VOP_ABORTOP(tdvp, tcnp);
+               vput(tdvp);
+               vput(tvp);
+               vrele(fdvp);
+               if ((ip->i_mode&IFMT) == IFDIR) {
+                       VOP_ABORTOP(fdvp, fcnp);
+                       vrele(fvp);
+                       return (EINVAL);
+               }
+               doingdirectory = 0;
+               goto unlinkit;
+       }
+       ILOCK(ip);
+       if ((ip->i_mode&IFMT) == IFDIR) {
+               /*
+                * Avoid ".", "..", and aliases of "." for obvious reasons.
+                */
+               if ((fcnp->cn_namelen == 1 && fcnp->cn_nameptr[0] == '.') ||
+                   dp == ip || (fcnp->cn_flags&ISDOTDOT) || (ip->i_flag & IRENAME)) {
+                       VOP_ABORTOP(tdvp, tcnp);
+                       vput(tdvp);
+                       if (tvp)
+                               vput(tvp);
+                       VOP_ABORTOP(fdvp, fcnp);
+                       vrele(fdvp);
+                       vput(fvp);
+                       return (EINVAL);
+               }
+               ip->i_flag |= IRENAME;
+               oldparent = dp->i_number;
+               doingdirectory++;
+       }
+       vrele(fdvp);
+
+       /*
+        * 1) Bump link count while we're moving stuff
+        *    around.  If we crash somewhere before
+        *    completing our work, the link count
+        *    may be wrong, but correctable.
+        */
+       ip->i_nlink++;
+       ip->i_flag |= ICHG;
+       error = VOP_UPDATE(fvp, &time, &time, 1);
+       IUNLOCK(ip);
+
+       /*
+        * When the target exists, both the directory
+        * and target vnodes are returned locked.
+        */
+       dp = VTOI(tdvp);
+       xp = NULL;
+       if (tvp)
+               xp = VTOI(tvp);
+       /*
+        * If ".." must be changed (ie the directory gets a new
+        * parent) then the source directory must not be in the
+        * directory heirarchy above the target, as this would
+        * orphan everything below the source directory. Also
+        * the user must have write permission in the source so
+        * as to be able to change "..". We must repeat the call 
+        * to namei, as the parent directory is unlocked by the
+        * call to checkpath().
+        */
+       if (oldparent != dp->i_number)
+               newparent = dp->i_number;
+       if (doingdirectory && newparent) {
+               VOP_LOCK(fvp);
+               error = ufs_access(fvp, VWRITE, tcnp->cn_cred, tcnp->cn_proc);
+               VOP_UNLOCK(fvp);
+               if (error)
+                       goto bad;
+               if (xp != NULL)
+                       ufs_iput(xp);
+               if (error = ufs_checkpath(ip, dp, tcnp->cn_cred))
+                       goto out;
+               if ((tcnp->cn_flags & SAVESTART) == 0)
+                       panic("ufs_rename: lost to startdir");
+               p->p_spare[1]--;
+               if (error = relookup(tdvp, &tvp, tcnp))
+                       goto out;
+               dp = VTOI(tdvp);
+               xp = NULL;
+               if (tvp)
+                       xp = VTOI(tvp);
+       }
+       /*
+        * 2) If target doesn't exist, link the target
+        *    to the source and unlink the source. 
+        *    Otherwise, rewrite the target directory
+        *    entry to reference the source inode and
+        *    expunge the original entry's existence.
+        */
+       if (xp == NULL) {
+               if (dp->i_dev != ip->i_dev)
+                       panic("rename: EXDEV");
+               /*
+                * Account for ".." in new directory.
+                * When source and destination have the same
+                * parent we don't fool with the link count.
+                */
+               if (doingdirectory && newparent) {
+                       if ((unsigned short)dp->i_nlink >= LINK_MAX) {
+                               error = EMLINK;
+                               goto bad;
+                       }
+                       dp->i_nlink++;
+                       dp->i_flag |= ICHG;
+                       if (error = VOP_UPDATE(ITOV(dp), &time, &time, 1))
+                               goto bad;
+               }
+               if (error = ufs_direnter(ip, tdvp, tcnp)) {
+                       if (doingdirectory && newparent) {
+                               dp->i_nlink--;
+                               dp->i_flag |= ICHG;
+                               (void)VOP_UPDATE(ITOV(dp), &time, &time, 1);
+                       }
+                       goto bad;
+               }
+               ufs_iput(dp);
+       } else {
+               if (xp->i_dev != dp->i_dev || xp->i_dev != ip->i_dev)
+                       panic("rename: EXDEV");
+               /*
+                * Short circuit rename(foo, foo).
+                */
+               if (xp->i_number == ip->i_number)
+                       panic("rename: same file");
+               /*
+                * If the parent directory is "sticky", then the user must
+                * own the parent directory, or the destination of the rename,
+                * otherwise the destination may not be changed (except by
+                * root). This implements append-only directories.
+                */
+               if ((dp->i_mode & ISVTX) && tcnp->cn_cred->cr_uid != 0 &&
+                   tcnp->cn_cred->cr_uid != dp->i_uid &&
+                   xp->i_uid != tcnp->cn_cred->cr_uid) {
+                       error = EPERM;
+                       goto bad;
+               }
+               /*
+                * Target must be empty if a directory and have no links
+                * to it. Also, ensure source and target are compatible
+                * (both directories, or both not directories).
+                */
+               if ((xp->i_mode&IFMT) == IFDIR) {
+                       if (!ufs_dirempty(xp, dp->i_number, tcnp->cn_cred) || 
+                           xp->i_nlink > 2) {
+                               error = ENOTEMPTY;
+                               goto bad;
+                       }
+                       if (!doingdirectory) {
+                               error = ENOTDIR;
+                               goto bad;
+                       }
+                       cache_purge(ITOV(dp));
+               } else if (doingdirectory) {
+                       error = EISDIR;
+                       goto bad;
+               }
+               if (error = ufs_dirrewrite(dp, ip, tcnp))
+                       goto bad;
+               /*
+                * If the target directory is in the same
+                * directory as the source directory,
+                * decrement the link count on the parent
+                * of the target directory.
+                */
+                if (doingdirectory && !newparent) {
+                       dp->i_nlink--;
+                       dp->i_flag |= ICHG;
+               }
+               ufs_iput(dp);
+               /*
+                * Adjust the link count of the target to
+                * reflect the dirrewrite above.  If this is
+                * a directory it is empty and there are
+                * no links to it, so we can squash the inode and
+                * any space associated with it.  We disallowed
+                * renaming over top of a directory with links to
+                * it above, as the remaining link would point to
+                * a directory without "." or ".." entries.
+                */
+               xp->i_nlink--;
+               if (doingdirectory) {
+                       if (--xp->i_nlink != 0)
+                               panic("rename: linked directory");
+                       error = VOP_TRUNCATE(ITOV(xp), (u_long)0, IO_SYNC);
+               }
+               xp->i_flag |= ICHG;
+               ufs_iput(xp);
+               xp = NULL;
+       }
+
+       /*
+        * 3) Unlink the source.
+        */
+unlinkit:
+       fcnp->cn_flags &= ~MODMASK;
+       fcnp->cn_flags |= LOCKPARENT | LOCKLEAF;
+       if ((fcnp->cn_flags & SAVESTART) == 0)
+               panic("ufs_rename: lost from startdir");
+       p->p_spare[1]--;
+       (void) relookup(fdvp, &fvp, fcnp);   /* NEEDSWORK: startdir stuff */
+       if (fvp != NULL) {
+               xp = VTOI(fvp);
+               dp = VTOI(fdvp);
+       } else {
+               /*
+                * From name has disappeared.
+                */
+               if (doingdirectory)
+                       panic("rename: lost dir entry");
+               vrele(ITOV(ip));
+               return (0);
+       }
+       /*
+        * Ensure that the directory entry still exists and has not
+        * changed while the new name has been entered. If the source is
+        * a file then the entry may have been unlinked or renamed. In
+        * either case there is no further work to be done. If the source
+        * is a directory then it cannot have been rmdir'ed; its link
+        * count of three would cause a rmdir to fail with ENOTEMPTY.
+        * The IRENAME flag ensures that it cannot be moved by another
+        * rename.
+        */
+       if (xp != ip) {
+               if (doingdirectory)
+                       panic("rename: lost dir entry");
+       } else {
+               /*
+                * If the source is a directory with a
+                * new parent, the link count of the old
+                * parent directory must be decremented
+                * and ".." set to point to the new parent.
+                */
+               if (doingdirectory && newparent) {
+                       dp->i_nlink--;
+                       dp->i_flag |= ICHG;
+                       error = vn_rdwr(UIO_READ, ITOV(xp), (caddr_t)&dirbuf,
+                               sizeof (struct dirtemplate), (off_t)0,
+                               UIO_SYSSPACE, IO_NODELOCKED, 
+                               tcnp->cn_cred, (int *)0, (struct proc *)0);
+                       if (error == 0) {
+                               if (dirbuf.dotdot_namlen != 2 ||
+                                   dirbuf.dotdot_name[0] != '.' ||
+                                   dirbuf.dotdot_name[1] != '.') {
+                                       ufs_dirbad(xp, 12,
+                                           "rename: mangled dir");
+                               } else {
+                                       dirbuf.dotdot_ino = newparent;
+                                       (void) vn_rdwr(UIO_WRITE, ITOV(xp),
+                                           (caddr_t)&dirbuf,
+                                           sizeof (struct dirtemplate),
+                                           (off_t)0, UIO_SYSSPACE,
+                                           IO_NODELOCKED|IO_SYNC,
+                                           tcnp->cn_cred, (int *)0,
+                                           (struct proc *)0);
+                                       cache_purge(ITOV(dp));
+                               }
+                       }
+               }
+               error = ufs_dirremove(fdvp, fcnp);
+               if (!error) {
+                       xp->i_nlink--;
+                       xp->i_flag |= ICHG;
+               }
+               xp->i_flag &= ~IRENAME;
+       }
+       if (dp)
+               vput(ITOV(dp));
+       if (xp)
+               vput(ITOV(xp));
+       vrele(ITOV(ip));
+       return (error);
+
+bad:
+       if (xp)
+               vput(ITOV(xp));
+       vput(ITOV(dp));
+out:
+       ip->i_nlink--;
+       ip->i_flag |= ICHG;
+       vrele(ITOV(ip));
+       return (error);
+}
+
+/*
+ * A virgin directory (no blushing please).
+ */
+static struct dirtemplate mastertemplate = {
+       0, 12, 1, ".",
+       0, DIRBLKSIZ - 12, 2, ".."
+};
+
+/*
+ * Mkdir system call
+ */
+int
+ufs_mkdir(dvp, vpp, cnp, vap)
+       struct vnode *dvp;
+       struct vnode **vpp;
+       struct componentname *cnp;
+       struct vattr *vap;
+{
+       register struct inode *ip, *dp;
+       struct vnode *tvp;
+       struct dirtemplate dirtemplate;
+       int error;
+       int dmode;
+
+#ifdef DIANOSTIC
+       if ((cnp->cn_flags & HASBUF) == 0)
+               panic("ufs_mkdir: no name");
+#endif
+       dp = VTOI(dvp);
+       if ((unsigned short)dp->i_nlink >= LINK_MAX) {
+               free(cnp->cn_pnbuf, M_NAMEI);
+               ufs_iput(dp);
+               return (EMLINK);
+       }
+       dmode = vap->va_mode&0777;
+       dmode |= IFDIR;
+       /*
+        * Must simulate part of maknode here to acquire the inode, but
+        * not have it entered in the parent directory. The entry is made
+        * later after writing "." and ".." entries.
+        */
+       if (error = VOP_VALLOC(dvp, dmode, cnp->cn_cred, &tvp)) {
+               free(cnp->cn_pnbuf, M_NAMEI);
+               ufs_iput(dp);
+               return (error);
+       }
+       ip = VTOI(tvp);
+       ip->i_uid = cnp->cn_cred->cr_uid;
+       ip->i_gid = dp->i_gid;
+#ifdef QUOTA
+       if ((error = getinoquota(ip)) ||
+           (error = chkiq(ip, 1, cnp->cn_cred, 0))) {
+               free(cnp->cn_pnbuf, M_NAMEI);
+               VOP_VFREE(tvp, ip->i_number, dmode);
+               ufs_iput(ip);
+               ufs_iput(dp);
+               return (error);
+       }
+#endif
+       ip->i_flag |= IACC|IUPD|ICHG;
+       ip->i_mode = dmode;
+       ITOV(ip)->v_type = VDIR;        /* Rest init'd in iget() */
+       ip->i_nlink = 2;
+       error = VOP_UPDATE(ITOV(ip), &time, &time, 1);
+
+       /*
+        * Bump link count in parent directory
+        * to reflect work done below.  Should
+        * be done before reference is created
+        * so reparation is possible if we crash.
+        */
+       dp->i_nlink++;
+       dp->i_flag |= ICHG;
+       if (error = VOP_UPDATE(ITOV(dp), &time, &time, 1))
+               goto bad;
+
+       /* Initialize directory with "." and ".." from static template. */
+       dirtemplate = mastertemplate;
+       dirtemplate.dot_ino = ip->i_number;
+       dirtemplate.dotdot_ino = dp->i_number;
+       error = vn_rdwr(UIO_WRITE, ITOV(ip), (caddr_t)&dirtemplate,
+           sizeof (dirtemplate), (off_t)0, UIO_SYSSPACE,
+           IO_NODELOCKED|IO_SYNC, cnp->cn_cred, (int *)0, (struct proc *)0);
+       if (error) {
+               dp->i_nlink--;
+               dp->i_flag |= ICHG;
+               goto bad;
+       }
+       if (DIRBLKSIZ > VFSTOUFS(dvp->v_mount)->um_mountp->mnt_stat.f_bsize)
+               panic("ufs_mkdir: blksize"); /* XXX should grow with balloc() */
+       else {
+               ip->i_size = DIRBLKSIZ;
+               ip->i_flag |= ICHG;
+       }
+
+       /* Directory set up, now install it's entry in the parent directory. */
+       if (error = ufs_direnter(ip, dvp, cnp)) {
+               dp->i_nlink--;
+               dp->i_flag |= ICHG;
+       }
+bad:
+       /*
+        * No need to do an explicit VOP_TRUNCATE here, vrele will do this
+        * for us because we set the link count to 0.
+        */
+       if (error) {
+               ip->i_nlink = 0;
+               ip->i_flag |= ICHG;
+               ufs_iput(ip);
+       } else
+               *vpp = ITOV(ip);
+       FREE(cnp->cn_pnbuf, M_NAMEI);
+       ufs_iput(dp);
+       return (error);
+}
+
+/*
+ * Rmdir system call.
+ */
+int
+ufs_rmdir(dvp, vp, cnp)
+       struct vnode *dvp;
+       struct vnode *vp;
+       struct componentname *cnp;
+{
+       register struct inode *ip, *dp;
+       int error;
+
+       ip = VTOI(vp);
+       dp = VTOI(dvp);
+       /*
+        * No rmdir "." please.
+        */
+       if (dp == ip) {
+               vrele(dvp);
+               ufs_iput(ip);
+               return (EINVAL);
+       }
+       /*
+        * Verify the directory is empty (and valid).
+        * (Rmdir ".." won't be valid since
+        *  ".." will contain a reference to
+        *  the current directory and thus be
+        *  non-empty.)
+        */
+       error = 0;
+       if (ip->i_nlink != 2 ||
+           !ufs_dirempty(ip, dp->i_number, cnp->cn_cred)) {
+               error = ENOTEMPTY;
                goto out;
                goto out;
-       (*bdevsw[major(dev)].d_open)(dev, !uap->ronly);
-       if(u.u_error)
+       }
+       /*
+        * Delete reference to directory before purging
+        * inode.  If we crash in between, the directory
+        * will be reattached to lost+found,
+        */
+       if (error = ufs_dirremove(dvp, cnp))
                goto out;
                goto out;
-       bp = bread(dev, SUPERB);
-       if(u.u_error) {
-               brelse(bp);
-               goto out1;
-       }
-       mp->m_inodp = ip;
-       mp->m_dev = dev;
-       mp->m_bufp = geteblk();
-       bcopy((caddr_t)bp->b_un.b_addr, mp->m_bufp->b_un.b_addr, BSIZE);
-       fp = mp->m_bufp->b_un.b_filsys;
-       fp->s_ilock = 0;
-       fp->s_flock = 0;
-       fp->s_ronly = uap->ronly & 1;
-       fp->s_nbehind = 0;
-       fp->s_lasti = 1;
-       brelse(bp);
-       ip->i_flag |= IMOUNT;
-       prele(ip);
-       return;
-
+       dp->i_nlink--;
+       dp->i_flag |= ICHG;
+       cache_purge(dvp);
+       ufs_iput(dp);
+       dvp = NULL;
+       /*
+        * Truncate inode.  The only stuff left
+        * in the directory is "." and "..".  The
+        * "." reference is inconsequential since
+        * we're quashing it.  The ".." reference
+        * has already been adjusted above.  We've
+        * removed the "." reference and the reference
+        * in the parent directory, but there may be
+        * other hard links so decrement by 2 and
+        * worry about them later.
+        */
+       ip->i_nlink -= 2;
+       error = VOP_TRUNCATE(vp, (u_long)0, IO_SYNC);
+       cache_purge(ITOV(ip));
 out:
 out:
-       u.u_error = EBUSY;
-out1:
-       iput(ip);
+       if (dvp)
+               ufs_iput(dp);
+       ufs_iput(ip);
+       return (error);
+}
+
+/*
+ * symlink -- make a symbolic link
+ */
+int
+ufs_symlink(dvp, vpp, cnp, vap, target)
+       struct vnode *dvp;
+       struct vnode **vpp;
+       struct componentname *cnp;
+       struct vattr *vap;
+       char *target;
+{
+       int error;
+
+       if (error = ufs_makeinode(IFLNK | vap->va_mode, dvp, vpp, cnp))
+               return (error);
+       error = vn_rdwr(UIO_WRITE, *vpp, target, strlen(target), (off_t)0,
+               UIO_SYSSPACE, IO_NODELOCKED, cnp->cn_cred, (int *)0,
+               (struct proc *)0);
+       vput(*vpp);
+       return (error);
+}
+
+/*
+ * Vnode op for read and write
+ */
+int
+ufs_readdir(vp, uio, cred, eofflagp)
+       struct vnode *vp;
+       register struct uio *uio;
+       struct ucred *cred;
+       int *eofflagp;
+{
+       int count, lost, error;
+
+       count = uio->uio_resid;
+       count &= ~(DIRBLKSIZ - 1);
+       lost = uio->uio_resid - count;
+       if (count < DIRBLKSIZ || (uio->uio_offset & (DIRBLKSIZ -1)))
+               return (EINVAL);
+       uio->uio_resid = count;
+       uio->uio_iov->iov_len = count;
+       error = VOP_READ(vp, uio, 0, cred);
+       uio->uio_resid += lost;
+       if ((VTOI(vp)->i_size - uio->uio_offset) <= 0)
+               *eofflagp = 1;
+       else
+               *eofflagp = 0;
+       return (error);
 }
 
 /*
 }
 
 /*
- * the umount system call.
+ * Return target name of a symbolic link
  */
  */
-sumount()
+int
+ufs_readlink(vp, uiop, cred)
+       struct vnode *vp;
+       struct uio *uiop;
+       struct ucred *cred;
+{
+
+       return (VOP_READ(vp, uiop, 0, cred));
+}
+
+/*
+ * Ufs abort op, called after namei() when a CREATE/DELETE isn't actually
+ * done. If a buffer has been saved in anticipation of a CREATE, delete it.
+ */
+/* ARGSUSED */
+int
+ufs_abortop(dvp, cnp)
+       struct vnode *dvp;
+       struct componentname *cnp;
+{
+       if ((cnp->cn_flags & (HASBUF | SAVESTART)) == HASBUF)
+               FREE(cnp->cn_pnbuf, M_NAMEI);
+       return (0);
+}
+
+/*
+ * Lock an inode.
+ */
+int
+ufs_lock(vp)
+       struct vnode *vp;
+{
+       register struct inode *ip = VTOI(vp);
+
+       ILOCK(ip);
+       return (0);
+}
+
+/*
+ * Unlock an inode.
+ */
+int
+ufs_unlock(vp)
+       struct vnode *vp;
+{
+       register struct inode *ip = VTOI(vp);
+
+       if (!(ip->i_flag & ILOCKED))
+               panic("ufs_unlock NOT LOCKED");
+       IUNLOCK(ip);
+       return (0);
+}
+
+/*
+ * Check for a locked inode.
+ */
+int
+ufs_islocked(vp)
+       struct vnode *vp;
+{
+
+       if (VTOI(vp)->i_flag & ILOCKED)
+               return (1);
+       return (0);
+}
+
+/*
+ * Calculate the logical to physical mapping if not done already,
+ * then call the device strategy routine.
+ */
+int checkoverlap = 0;
+
+int
+ufs_strategy(bp)
+       register struct buf *bp;
 {
 {
-       dev_t dev;
        register struct inode *ip;
        register struct inode *ip;
-       register struct mount *mp;
-       struct buf *bp;
-       register struct a {
-               char    *fspec;
-       };
+       struct vnode *vp;
+       int error;
 
 
-       dev = getmdev();
-       if(u.u_error)
-               return;
-       xumount(dev);   /* remove unused sticky files from text table */
-       update();
-       for(mp = &mount[0]; mp < &mount[NMOUNT]; mp++)
-               if(mp->m_bufp != NULL && dev == mp->m_dev)
-                       goto found;
-       u.u_error = EINVAL;
-       return;
+       ip = VTOI(bp->b_vp);
+       if (bp->b_vp->v_type == VBLK || bp->b_vp->v_type == VCHR)
+               panic("ufs_strategy: spec");
+       if (bp->b_blkno == bp->b_lblkno) {
+               if (error =
+                   VOP_BMAP(bp->b_vp, bp->b_lblkno, NULL, &bp->b_blkno))
+                       return (error);
+               if ((long)bp->b_blkno == -1)
+                       clrbuf(bp);
+       }
+       if ((long)bp->b_blkno == -1) {
+               biodone(bp);
+               return (0);
+       }
+#ifdef DIAGNOSTIC
+       if (checkoverlap && bp->b_vp->v_mount->mnt_stat.f_type == MOUNT_UFS)
+               ffs_checkoverlap(bp, ip);
+#endif
+               
+       vp = ip->i_devvp;
+       bp->b_dev = vp->v_rdev;
+       (vp->v_op->vop_strategy)(bp);
+       return (0);
+}
 
 
-found:
-       for(ip = &inode[0]; ip < &inode[NINODE]; ip++)
-               if(ip->i_number != 0 && dev == ip->i_dev) {
-                       u.u_error = EBUSY;
-                       return;
+/*
+ * Print out the contents of an inode.
+ */
+int
+ufs_print(vp)
+       struct vnode *vp;
+{
+       register struct inode *ip = VTOI(vp);
+
+       printf("tag VT_UFS, ino %d, on dev %d, %d", ip->i_number,
+               major(ip->i_dev), minor(ip->i_dev));
+#ifdef FIFO
+       if (vp->v_type == VFIFO)
+               fifo_printinfo(vp);
+#endif /* FIFO */
+       printf("%s\n", (ip->i_flag & ILOCKED) ? " (LOCKED)" : "");
+       if (ip->i_lockholder == 0)
+               return (0);
+       printf("\towner pid %d", ip->i_lockholder);
+       if (ip->i_lockwaiter)
+               printf(" waiting pid %d", ip->i_lockwaiter);
+       printf("\n");
+       return (0);
+}
+
+/*
+ * Read wrapper for special devices.
+ */
+int
+ufsspec_read(vp, uio, ioflag, cred)
+       struct vnode *vp;
+       struct uio *uio;
+       int ioflag;
+       struct ucred *cred;
+{
+
+       /*
+        * Set access flag.
+        */
+       VTOI(vp)->i_flag |= IACC;
+       return (spec_read(vp, uio, ioflag, cred));
+}
+
+/*
+ * Write wrapper for special devices.
+ */
+int
+ufsspec_write(vp, uio, ioflag, cred)
+       struct vnode *vp;
+       struct uio *uio;
+       int ioflag;
+       struct ucred *cred;
+{
+
+       /*
+        * Set update and change flags.
+        */
+       VTOI(vp)->i_flag |= IUPD|ICHG;
+       return (spec_write(vp, uio, ioflag, cred));
+}
+
+/*
+ * Close wrapper for special devices.
+ *
+ * Update the times on the inode then do device close.
+ */
+int
+ufsspec_close(vp, fflag, cred, p)
+       struct vnode *vp;
+       int fflag;
+       struct ucred *cred;
+       struct proc *p;
+{
+       register struct inode *ip = VTOI(vp);
+
+       if (vp->v_usecount > 1 && !(ip->i_flag & ILOCKED))
+               ITIMES(ip, &time, &time);
+       return (spec_close(vp, fflag, cred, p));
+}
+
+#ifdef FIFO
+/*
+ * Read wrapper for fifo's
+ */
+int
+ufsfifo_read(vp, uio, ioflag, cred)
+       struct vnode *vp;
+       struct uio *uio;
+       int ioflag;
+       struct ucred *cred;
+{
+
+       /*
+        * Set access flag.
+        */
+       VTOI(vp)->i_flag |= IACC;
+       return (fifo_read(vp, uio, ioflag, cred));
+}
+
+/*
+ * Write wrapper for fifo's.
+ */
+int
+ufsfifo_write(vp, uio, ioflag, cred)
+       struct vnode *vp;
+       struct uio *uio;
+       int ioflag;
+       struct ucred *cred;
+{
+
+       /*
+        * Set update and change flags.
+        */
+       VTOI(vp)->i_flag |= IUPD|ICHG;
+       return (fifo_write(vp, uio, ioflag, cred));
+}
+
+/*
+ * Close wrapper for fifo's.
+ *
+ * Update the times on the inode then do device close.
+ */
+ufsfifo_close(vp, fflag, cred, p)
+       struct vnode *vp;
+       int fflag;
+       struct ucred *cred;
+       struct proc *p;
+{
+       register struct inode *ip = VTOI(vp);
+
+       if (vp->v_usecount > 1 && !(ip->i_flag & ILOCKED))
+               ITIMES(ip, &time, &time);
+       return (fifo_close(vp, fflag, cred, p));
+}
+#endif /* FIFO */
+
+/*
+ * Advisory record locking support
+ */
+int
+ufs_advlock(vp, id, op, fl, flags)
+       struct vnode *vp;
+       caddr_t id;
+       int op;
+       register struct flock *fl;
+       int flags;
+{
+       register struct inode *ip = VTOI(vp);
+       register struct lockf *lock;
+       off_t start, end;
+       int error;
+
+       /*
+        * Avoid the common case of unlocking when inode has no locks.
+        */
+       if (ip->i_lockf == (struct lockf *)0) {
+               if (op != F_SETLK) {
+                       fl->l_type = F_UNLCK;
+                       return (0);
                }
                }
-       (*bdevsw[major(dev)].d_close)(dev, 0);
-       ip = mp->m_inodp;
-       ip->i_flag &= ~IMOUNT;
-       plock(ip);
-       iput(ip);
-       bp = mp->m_bufp;
-       mp->m_bufp = NULL;
-       brelse(bp);
+       }
+       /*
+        * Convert the flock structure into a start and end.
+        */
+       switch (fl->l_whence) {
+
+       case SEEK_SET:
+       case SEEK_CUR:
+               /*
+                * Caller is responsible for adding any necessary offset
+                * when SEEK_CUR is used.
+                */
+               start = fl->l_start;
+               break;
+
+       case SEEK_END:
+               start = ip->i_size + fl->l_start;
+               break;
+
+       default:
+               return (EINVAL);
+       }
+       if (start < 0)
+               return (EINVAL);
+       if (fl->l_len == 0)
+               end = -1;
+       else
+               end = start + fl->l_len - 1;
+       /*
+        * Create the lockf structure
+        */
+       MALLOC(lock, struct lockf *, sizeof *lock, M_LOCKF, M_WAITOK);
+       lock->lf_start = start;
+       lock->lf_end = end;
+       lock->lf_id = id;
+       lock->lf_inode = ip;
+       lock->lf_type = fl->l_type;
+       lock->lf_next = (struct lockf *)0;
+       lock->lf_block = (struct lockf *)0;
+       lock->lf_flags = flags;
+       /*
+        * Do the requested operation.
+        */
+       switch(op) {
+       case F_SETLK:
+               return (lf_setlock(lock));
+
+       case F_UNLCK:
+               error = lf_clearlock(lock);
+               FREE(lock, M_LOCKF);
+               return (error);
+
+       case F_GETLK:
+               error = lf_getlock(lock, fl);
+               FREE(lock, M_LOCKF);
+               return (error);
+       
+       default:
+               free(lock, M_LOCKF);
+               return (EINVAL);
+       }
+       /* NOTREACHED */
 }
 
 /*
 }
 
 /*
- * Common code for mount and umount.
- * Check that the user's argument is a reasonable
- * thing on which to mount, and return the device number if so.
+ * Initialize the vnode associated with a new inode, handle aliased
+ * vnodes.
  */
  */
-dev_t
-getmdev()
+int
+ufs_vinit(mntp, specops, fifoops, vpp)
+       struct mount *mntp;
+       struct vnodeops *specops, *fifoops;
+       struct vnode **vpp;
 {
 {
-       dev_t dev;
-       register struct inode *ip;
+       struct inode *ip, *nip;
+       struct vnode *vp, *nvp;
+       extern struct vnodeops spec_vnodeops;
+
+       vp = *vpp;
+       ip = VTOI(vp);
+       switch(vp->v_type = IFTOVT(ip->i_mode)) {
+       case VCHR:
+       case VBLK:
+               vp->v_op = specops;
+               if (nvp = checkalias(vp, ip->i_rdev, mntp)) {
+                       /*
+                        * Discard unneeded vnode, but save its inode.
+                        */
+                       remque(ip);
+                       IUNLOCK(ip);
+                       nvp->v_data = vp->v_data;
+                       vp->v_data = NULL;
+                       vp->v_op = &spec_vnodeops;
+                       vrele(vp);
+                       vgone(vp);
+                       /*
+                        * Reinitialize aliased inode.
+                        */
+                       vp = nvp;
+                       ip->i_vnode = vp;
+                       ufs_ihashins(ip);
+               }
+               break;
+       case VFIFO:
+#ifdef FIFO
+               vp->v_op = fifoops;
+               break;
+#else
+               return (EOPNOTSUPP);
+#endif
+       }
+       if (ip->i_number == ROOTINO)
+                vp->v_flag |= VROOT;
+       /*
+        * Initialize modrev times
+        */
+       SETHIGH(ip->i_modrev, mono_time.tv_sec);
+       SETLOW(ip->i_modrev, mono_time.tv_usec * 4294);
+       *vpp = vp;
+       return (0);
+}
 
 
-#ifdef UCB
-       if (!suser())
-               return(NODEV);
+/*
+ * Allocate a new inode.
+ */
+int
+ufs_makeinode(mode, dvp, vpp, cnp)
+       int mode;
+       struct vnode *dvp;
+       struct vnode **vpp;
+       struct componentname *cnp;
+{
+       register struct inode *ip, *pdir;
+       struct vnode *tvp;
+       int error;
+
+       pdir = VTOI(dvp);
+#ifdef DIANOSTIC
+       if ((cnp->cn_flags & HASBUF) == 0)
+               panic("ufs_makeinode: no name");
 #endif
 #endif
-       ip = namei(uchar, 0);
-       if(ip == NULL)
-               return(NODEV);
-       if((ip->i_mode&IFMT) != IFBLK)
-               u.u_error = ENOTBLK;
-       dev = (dev_t)ip->i_un.i_rdev;
-       if(major(dev) >= nblkdev)
-               u.u_error = ENXIO;
-       iput(ip);
-       return(dev);
+       *vpp = NULL;
+       if ((mode & IFMT) == 0)
+               mode |= IFREG;
+
+       if (error = VOP_VALLOC(dvp, mode, cnp->cn_cred, &tvp)) {
+               free(cnp->cn_pnbuf, M_NAMEI);
+               ufs_iput(pdir);
+               return (error);
+       }
+       ip = VTOI(tvp);
+       ip->i_uid = cnp->cn_cred->cr_uid;
+       ip->i_gid = pdir->i_gid;
+#ifdef QUOTA
+       if ((error = getinoquota(ip)) ||
+           (error = chkiq(ip, 1, cnp->cn_cred, 0))) {
+               free(cnp->cn_pnbuf, M_NAMEI);
+               VOP_VFREE(tvp, ip->i_number, mode);
+               ufs_iput(ip);
+               ufs_iput(pdir);
+               return (error);
+       }
+#endif
+       ip->i_flag |= IACC|IUPD|ICHG;
+       ip->i_mode = mode;
+       tvp->v_type = IFTOVT(mode);     /* Rest init'd in iget() */
+       ip->i_nlink = 1;
+       if ((ip->i_mode & ISGID) && !groupmember(ip->i_gid, cnp->cn_cred) &&
+           suser(cnp->cn_cred, NULL))
+               ip->i_mode &= ~ISGID;
+
+       /*
+        * Make sure inode goes to disk before directory entry.
+        */
+       if (error = VOP_UPDATE(tvp, &time, &time, 1))
+               goto bad;
+       if (error = ufs_direnter(ip, dvp, cnp))
+               goto bad;
+       if ((cnp->cn_flags & SAVESTART) == 0)
+               FREE(cnp->cn_pnbuf, M_NAMEI);
+       ufs_iput(pdir);
+       *vpp = tvp;
+       return (0);
+
+bad:
+       /*
+        * Write error occurred trying to update the inode
+        * or the directory so must deallocate the inode.
+        */
+       free(cnp->cn_pnbuf, M_NAMEI);
+       ufs_iput(pdir);
+       ip->i_nlink = 0;
+       ip->i_flag |= ICHG;
+       ufs_iput(ip);
+       return (error);
+}
+
+
+#if defined(JOHNH) && 0
+/*
+ * A hack to get the kernel to compile.
+ */
+int
+hang_addrlist()
+{
+    return 0;
+}
+int
+free_addrlist()
+{
+    return 0;
 }
 }
+#endif
+