Home | History | Annotate | Line # | Download | only in kern
vfs_syscalls.c revision 1.103
      1  1.103   mycroft /*	$NetBSD: vfs_syscalls.c,v 1.103 1997/10/19 03:29:20 mycroft Exp $	*/
      2   1.31       cgd 
      3   1.31       cgd /*
      4   1.31       cgd  * Copyright (c) 1989, 1993
      5   1.31       cgd  *	The Regents of the University of California.  All rights reserved.
      6   1.31       cgd  * (c) UNIX System Laboratories, Inc.
      7   1.31       cgd  * All or some portions of this file are derived from material licensed
      8   1.31       cgd  * to the University of California by American Telephone and Telegraph
      9   1.31       cgd  * Co. or Unix System Laboratories, Inc. and are reproduced herein with
     10   1.31       cgd  * the permission of UNIX System Laboratories, Inc.
     11   1.31       cgd  *
     12   1.31       cgd  * Redistribution and use in source and binary forms, with or without
     13   1.31       cgd  * modification, are permitted provided that the following conditions
     14   1.31       cgd  * are met:
     15   1.31       cgd  * 1. Redistributions of source code must retain the above copyright
     16   1.31       cgd  *    notice, this list of conditions and the following disclaimer.
     17   1.31       cgd  * 2. Redistributions in binary form must reproduce the above copyright
     18   1.31       cgd  *    notice, this list of conditions and the following disclaimer in the
     19   1.31       cgd  *    documentation and/or other materials provided with the distribution.
     20   1.31       cgd  * 3. All advertising materials mentioning features or use of this software
     21   1.31       cgd  *    must display the following acknowledgement:
     22   1.31       cgd  *	This product includes software developed by the University of
     23   1.31       cgd  *	California, Berkeley and its contributors.
     24   1.31       cgd  * 4. Neither the name of the University nor the names of its contributors
     25   1.31       cgd  *    may be used to endorse or promote products derived from this software
     26   1.31       cgd  *    without specific prior written permission.
     27   1.31       cgd  *
     28   1.31       cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     29   1.31       cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     30   1.31       cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     31   1.31       cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     32   1.31       cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     33   1.31       cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     34   1.31       cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     35   1.31       cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     36   1.31       cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     37   1.31       cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     38   1.31       cgd  * SUCH DAMAGE.
     39   1.31       cgd  *
     40   1.43   mycroft  *	@(#)vfs_syscalls.c	8.28 (Berkeley) 12/10/94
     41   1.31       cgd  */
     42   1.31       cgd 
     43   1.31       cgd #include <sys/param.h>
     44   1.31       cgd #include <sys/systm.h>
     45   1.31       cgd #include <sys/namei.h>
     46   1.31       cgd #include <sys/filedesc.h>
     47   1.31       cgd #include <sys/kernel.h>
     48   1.31       cgd #include <sys/file.h>
     49   1.31       cgd #include <sys/stat.h>
     50   1.31       cgd #include <sys/vnode.h>
     51   1.31       cgd #include <sys/mount.h>
     52   1.31       cgd #include <sys/proc.h>
     53   1.31       cgd #include <sys/uio.h>
     54   1.31       cgd #include <sys/malloc.h>
     55   1.31       cgd #include <sys/dirent.h>
     56   1.31       cgd 
     57   1.35       cgd #include <sys/syscallargs.h>
     58   1.35       cgd 
     59   1.31       cgd #include <vm/vm.h>
     60   1.31       cgd #include <sys/sysctl.h>
     61   1.63  christos 
     62   1.63  christos static int change_dir __P((struct nameidata *, struct proc *));
     63   1.97     enami static int change_mode __P((struct vnode *, int, struct proc *p));
     64   1.86    kleink static int change_owner __P((struct vnode *, uid_t, gid_t, struct proc *));
     65   1.97     enami static int change_utimes __P((struct vnode *vp, const struct timeval *,
     66   1.97     enami 	       struct proc *p));
     67   1.90    kleink static int rename_files __P((const char *, const char *, struct proc *, int));
     68   1.63  christos 
     69   1.63  christos void checkdirs __P((struct vnode *));
     70   1.63  christos int dounmount __P((struct mount *, int, struct proc *));
     71   1.31       cgd 
     72   1.31       cgd /*
     73   1.31       cgd  * Virtual File System System Calls
     74   1.31       cgd  */
     75   1.31       cgd 
     76   1.31       cgd /*
     77   1.31       cgd  * Mount a file system.
     78   1.31       cgd  */
     79   1.99   thorpej 
     80   1.99   thorpej #if defined(COMPAT_09) || defined(COMPAT_43)
     81   1.99   thorpej /*
     82   1.99   thorpej  * This table is used to maintain compatibility with 4.3BSD
     83   1.99   thorpej  * and NetBSD 0.9 mount syscalls.  Note, the order is important!
     84   1.99   thorpej  */
     85   1.99   thorpej static const char *mountcompatnames[] = {
     86   1.99   thorpej 	NULL,		/* 0 = MOUNT_NONE */
     87   1.99   thorpej 	MOUNT_FFS,	/* 1 */
     88   1.99   thorpej 	MOUNT_NFS,	/* 2 */
     89   1.99   thorpej 	MOUNT_MFS,	/* 3 */
     90   1.99   thorpej 	MOUNT_MSDOS,	/* 4 */
     91   1.99   thorpej 	MOUNT_LFS,	/* 5 */
     92   1.99   thorpej 	NULL,		/* 6 = MOUNT_LOFS */
     93   1.99   thorpej 	MOUNT_FDESC,	/* 7 */
     94   1.99   thorpej 	MOUNT_PORTAL,	/* 8 */
     95   1.99   thorpej 	MOUNT_NULL,	/* 9 */
     96   1.99   thorpej 	MOUNT_UMAP,	/* 10 */
     97   1.99   thorpej 	MOUNT_KERNFS,	/* 11 */
     98   1.99   thorpej 	MOUNT_PROCFS,	/* 12 */
     99   1.99   thorpej 	MOUNT_AFS,	/* 13 */
    100   1.99   thorpej 	MOUNT_CD9660,	/* 14 = MOUNT_ISOFS */
    101   1.99   thorpej 	MOUNT_UNION,	/* 15 */
    102   1.99   thorpej 	MOUNT_ADOSFS,	/* 16 */
    103   1.99   thorpej 	MOUNT_EXT2FS,	/* 17 */
    104   1.99   thorpej };
    105   1.99   thorpej static const int nmountcompatnames = sizeof(mountcompatnames) /
    106   1.99   thorpej     sizeof(mountcompatnames[0]);
    107   1.99   thorpej #endif /* COMPAT_09 || COMPAT_43 */
    108   1.99   thorpej 
    109   1.31       cgd /* ARGSUSED */
    110   1.63  christos int
    111   1.57   mycroft sys_mount(p, v, retval)
    112   1.31       cgd 	struct proc *p;
    113   1.56   thorpej 	void *v;
    114   1.56   thorpej 	register_t *retval;
    115   1.56   thorpej {
    116   1.57   mycroft 	register struct sys_mount_args /* {
    117   1.74       cgd 		syscallarg(const char *) type;
    118   1.74       cgd 		syscallarg(const char *) path;
    119   1.35       cgd 		syscallarg(int) flags;
    120   1.74       cgd 		syscallarg(void *) data;
    121   1.56   thorpej 	} */ *uap = v;
    122   1.31       cgd 	register struct vnode *vp;
    123   1.31       cgd 	register struct mount *mp;
    124   1.63  christos 	int error, flag = 0;
    125  1.101      fvdl 	u_long fsindex = 0;
    126   1.31       cgd 	char fstypename[MFSNAMELEN];
    127   1.43   mycroft 	struct vattr va;
    128   1.31       cgd 	struct nameidata nd;
    129   1.31       cgd 
    130   1.31       cgd 	/*
    131   1.31       cgd 	 * Get vnode to be covered
    132   1.31       cgd 	 */
    133   1.35       cgd 	NDINIT(&nd, LOOKUP, FOLLOW | LOCKLEAF, UIO_USERSPACE,
    134   1.35       cgd 	    SCARG(uap, path), p);
    135   1.63  christos 	if ((error = namei(&nd)) != 0)
    136   1.31       cgd 		return (error);
    137   1.31       cgd 	vp = nd.ni_vp;
    138   1.35       cgd 	if (SCARG(uap, flags) & MNT_UPDATE) {
    139   1.31       cgd 		if ((vp->v_flag & VROOT) == 0) {
    140   1.31       cgd 			vput(vp);
    141   1.31       cgd 			return (EINVAL);
    142   1.31       cgd 		}
    143   1.31       cgd 		mp = vp->v_mount;
    144   1.31       cgd 		flag = mp->mnt_flag;
    145   1.31       cgd 		/*
    146   1.31       cgd 		 * We only allow the filesystem to be reloaded if it
    147   1.31       cgd 		 * is currently mounted read-only.
    148   1.31       cgd 		 */
    149   1.35       cgd 		if ((SCARG(uap, flags) & MNT_RELOAD) &&
    150   1.31       cgd 		    ((mp->mnt_flag & MNT_RDONLY) == 0)) {
    151   1.31       cgd 			vput(vp);
    152   1.31       cgd 			return (EOPNOTSUPP);	/* Needs translation */
    153   1.31       cgd 		}
    154   1.31       cgd 		mp->mnt_flag |=
    155   1.35       cgd 		    SCARG(uap, flags) & (MNT_RELOAD | MNT_FORCE | MNT_UPDATE);
    156   1.43   mycroft 		/*
    157   1.43   mycroft 		 * Only root, or the user that did the original mount is
    158   1.43   mycroft 		 * permitted to update it.
    159   1.43   mycroft 		 */
    160   1.43   mycroft 		if (mp->mnt_stat.f_owner != p->p_ucred->cr_uid &&
    161   1.93     enami 		    (error = suser(p->p_ucred, &p->p_acflag)) != 0) {
    162   1.43   mycroft 			vput(vp);
    163   1.43   mycroft 			return (error);
    164   1.43   mycroft 		}
    165   1.43   mycroft 		/*
    166   1.43   mycroft 		 * Do not allow NFS export by non-root users. Silently
    167   1.43   mycroft 		 * enforce MNT_NOSUID and MNT_NODEV for non-root users.
    168   1.43   mycroft 		 */
    169   1.43   mycroft 		if (p->p_ucred->cr_uid != 0) {
    170   1.43   mycroft 			if (SCARG(uap, flags) & MNT_EXPORTED) {
    171   1.43   mycroft 				vput(vp);
    172   1.43   mycroft 				return (EPERM);
    173   1.43   mycroft 			}
    174   1.43   mycroft 			SCARG(uap, flags) |= MNT_NOSUID | MNT_NODEV;
    175   1.43   mycroft 		}
    176   1.31       cgd 		VOP_UNLOCK(vp);
    177   1.31       cgd 		goto update;
    178   1.31       cgd 	}
    179   1.43   mycroft 	/*
    180   1.43   mycroft 	 * If the user is not root, ensure that they own the directory
    181   1.43   mycroft 	 * onto which we are attempting to mount.
    182   1.43   mycroft 	 */
    183   1.93     enami 	if ((error = VOP_GETATTR(vp, &va, p->p_ucred, p)) != 0 ||
    184   1.43   mycroft 	    (va.va_uid != p->p_ucred->cr_uid &&
    185   1.93     enami 		(error = suser(p->p_ucred, &p->p_acflag)) != 0)) {
    186   1.43   mycroft 		vput(vp);
    187   1.43   mycroft 		return (error);
    188   1.43   mycroft 	}
    189   1.43   mycroft 	/*
    190   1.43   mycroft 	 * Do not allow NFS export by non-root users. Silently
    191   1.43   mycroft 	 * enforce MNT_NOSUID and MNT_NODEV for non-root users.
    192   1.43   mycroft 	 */
    193   1.43   mycroft 	if (p->p_ucred->cr_uid != 0) {
    194   1.43   mycroft 		if (SCARG(uap, flags) & MNT_EXPORTED) {
    195   1.43   mycroft 			vput(vp);
    196   1.43   mycroft 			return (EPERM);
    197   1.43   mycroft 		}
    198   1.43   mycroft 		SCARG(uap, flags) |= MNT_NOSUID | MNT_NODEV;
    199   1.43   mycroft 	}
    200   1.63  christos 	if ((error = vinvalbuf(vp, V_SAVE, p->p_ucred, p, 0, 0)) != 0)
    201   1.31       cgd 		return (error);
    202   1.31       cgd 	if (vp->v_type != VDIR) {
    203   1.31       cgd 		vput(vp);
    204   1.31       cgd 		return (ENOTDIR);
    205   1.31       cgd 	}
    206   1.63  christos 	error = copyinstr(SCARG(uap, type), fstypename, MFSNAMELEN, NULL);
    207   1.63  christos 	if (error) {
    208   1.54       cgd #if defined(COMPAT_09) || defined(COMPAT_43)
    209   1.54       cgd 		/*
    210   1.54       cgd 		 * Historically filesystem types were identified by number.
    211   1.54       cgd 		 * If we get an integer for the filesystem type instead of a
    212   1.54       cgd 		 * string, we check to see if it matches one of the historic
    213   1.54       cgd 		 * filesystem types.
    214   1.54       cgd 		 */
    215   1.54       cgd 		fsindex = (u_long)SCARG(uap, type);
    216   1.99   thorpej 		if (fsindex >= nmountcompatnames ||
    217   1.99   thorpej 		    mountcompatnames[fsindex] == NULL) {
    218   1.54       cgd 			vput(vp);
    219   1.54       cgd 			return (ENODEV);
    220   1.54       cgd 		}
    221   1.99   thorpej 		strncpy(fstypename, mountcompatnames[fsindex], MFSNAMELEN);
    222   1.31       cgd #else
    223   1.31       cgd 		vput(vp);
    224   1.31       cgd 		return (error);
    225   1.31       cgd #endif
    226   1.31       cgd 	}
    227   1.58       gwr #ifdef	COMPAT_10
    228   1.59   mycroft 	/* Accept `ufs' as an alias for `ffs'. */
    229   1.59   mycroft 	if (!strncmp(fstypename, "ufs", MFSNAMELEN))
    230   1.59   mycroft 		strncpy(fstypename, "ffs", MFSNAMELEN);
    231   1.58       gwr #endif
    232  1.101      fvdl 	for (fsindex = 0; fsindex < nvfssw; fsindex++)
    233  1.101      fvdl 		if (vfssw[fsindex] != NULL &&
    234  1.101      fvdl 		    !strncmp(vfssw[fsindex]->vfs_name, fstypename, MFSNAMELEN))
    235  1.101      fvdl 			break;
    236  1.101      fvdl 	if (fsindex >= nvfssw) {
    237   1.31       cgd 		vput(vp);
    238   1.31       cgd 		return (ENODEV);
    239   1.31       cgd 	}
    240   1.43   mycroft 	if (vp->v_mountedhere != NULL) {
    241   1.43   mycroft 		vput(vp);
    242   1.43   mycroft 		return (EBUSY);
    243   1.43   mycroft 	}
    244   1.31       cgd 
    245   1.31       cgd 	/*
    246   1.31       cgd 	 * Allocate and initialize the file system.
    247   1.31       cgd 	 */
    248   1.31       cgd 	mp = (struct mount *)malloc((u_long)sizeof(struct mount),
    249   1.31       cgd 		M_MOUNT, M_WAITOK);
    250   1.31       cgd 	bzero((char *)mp, (u_long)sizeof(struct mount));
    251  1.101      fvdl 	mp->mnt_op = vfssw[fsindex];
    252   1.63  christos 	if ((error = vfs_lock(mp)) != 0) {
    253   1.31       cgd 		free((caddr_t)mp, M_MOUNT);
    254   1.31       cgd 		vput(vp);
    255   1.31       cgd 		return (error);
    256   1.31       cgd 	}
    257   1.34   mycroft 	/* Do this early in case we block later. */
    258  1.101      fvdl 	vfssw[fsindex]->vfs_refcount++;
    259   1.31       cgd 	vp->v_mountedhere = mp;
    260   1.31       cgd 	mp->mnt_vnodecovered = vp;
    261   1.43   mycroft 	mp->mnt_stat.f_owner = p->p_ucred->cr_uid;
    262   1.31       cgd update:
    263   1.31       cgd 	/*
    264   1.31       cgd 	 * Set the mount level flags.
    265   1.31       cgd 	 */
    266   1.35       cgd 	if (SCARG(uap, flags) & MNT_RDONLY)
    267   1.31       cgd 		mp->mnt_flag |= MNT_RDONLY;
    268   1.31       cgd 	else if (mp->mnt_flag & MNT_RDONLY)
    269   1.31       cgd 		mp->mnt_flag |= MNT_WANTRDWR;
    270   1.31       cgd 	mp->mnt_flag &=~ (MNT_NOSUID | MNT_NOEXEC | MNT_NODEV |
    271   1.79      fvdl 	    MNT_SYNCHRONOUS | MNT_UNION | MNT_ASYNC | MNT_NOCOREDUMP |
    272   1.79      fvdl 	    MNT_NOATIME);
    273   1.35       cgd 	mp->mnt_flag |= SCARG(uap, flags) & (MNT_NOSUID | MNT_NOEXEC |
    274   1.73       cgd 	    MNT_NODEV | MNT_SYNCHRONOUS | MNT_UNION | MNT_ASYNC |
    275   1.79      fvdl 	    MNT_NOCOREDUMP | MNT_NOATIME);
    276   1.31       cgd 	/*
    277   1.31       cgd 	 * Mount the filesystem.
    278   1.31       cgd 	 */
    279   1.35       cgd 	error = VFS_MOUNT(mp, SCARG(uap, path), SCARG(uap, data), &nd, p);
    280   1.31       cgd 	if (mp->mnt_flag & MNT_UPDATE) {
    281   1.31       cgd 		vrele(vp);
    282   1.31       cgd 		if (mp->mnt_flag & MNT_WANTRDWR)
    283   1.31       cgd 			mp->mnt_flag &= ~MNT_RDONLY;
    284   1.31       cgd 		mp->mnt_flag &=~
    285   1.31       cgd 		    (MNT_UPDATE | MNT_RELOAD | MNT_FORCE | MNT_WANTRDWR);
    286   1.31       cgd 		if (error)
    287   1.31       cgd 			mp->mnt_flag = flag;
    288   1.31       cgd 		return (error);
    289   1.31       cgd 	}
    290   1.31       cgd 	/*
    291   1.31       cgd 	 * Put the new filesystem on the mount list after root.
    292   1.31       cgd 	 */
    293   1.31       cgd 	cache_purge(vp);
    294   1.31       cgd 	if (!error) {
    295   1.47   mycroft 		CIRCLEQ_INSERT_TAIL(&mountlist, mp, mnt_list);
    296   1.43   mycroft 		checkdirs(vp);
    297   1.31       cgd 		VOP_UNLOCK(vp);
    298   1.31       cgd 		vfs_unlock(mp);
    299   1.46   mycroft 		(void) VFS_STATFS(mp, &mp->mnt_stat, p);
    300   1.31       cgd 		error = VFS_START(mp, 0, p);
    301   1.31       cgd 	} else {
    302   1.31       cgd 		mp->mnt_vnodecovered->v_mountedhere = (struct mount *)0;
    303  1.101      fvdl 		vfssw[fsindex]->vfs_refcount--;
    304   1.31       cgd 		vfs_unlock(mp);
    305   1.31       cgd 		free((caddr_t)mp, M_MOUNT);
    306   1.31       cgd 		vput(vp);
    307   1.31       cgd 	}
    308   1.31       cgd 	return (error);
    309   1.31       cgd }
    310   1.31       cgd 
    311   1.31       cgd /*
    312   1.43   mycroft  * Scan all active processes to see if any of them have a current
    313   1.43   mycroft  * or root directory onto which the new filesystem has just been
    314   1.43   mycroft  * mounted. If so, replace them with the new mount point.
    315   1.43   mycroft  */
    316   1.63  christos void
    317   1.43   mycroft checkdirs(olddp)
    318   1.43   mycroft 	struct vnode *olddp;
    319   1.43   mycroft {
    320   1.43   mycroft 	struct filedesc *fdp;
    321   1.43   mycroft 	struct vnode *newdp;
    322   1.43   mycroft 	struct proc *p;
    323   1.43   mycroft 
    324   1.43   mycroft 	if (olddp->v_usecount == 1)
    325   1.43   mycroft 		return;
    326   1.43   mycroft 	if (VFS_ROOT(olddp->v_mountedhere, &newdp))
    327   1.43   mycroft 		panic("mount: lost mount");
    328   1.43   mycroft 	for (p = allproc.lh_first; p != 0; p = p->p_list.le_next) {
    329   1.43   mycroft 		fdp = p->p_fd;
    330   1.43   mycroft 		if (fdp->fd_cdir == olddp) {
    331   1.43   mycroft 			vrele(fdp->fd_cdir);
    332   1.43   mycroft 			VREF(newdp);
    333   1.43   mycroft 			fdp->fd_cdir = newdp;
    334   1.43   mycroft 		}
    335   1.43   mycroft 		if (fdp->fd_rdir == olddp) {
    336   1.43   mycroft 			vrele(fdp->fd_rdir);
    337   1.43   mycroft 			VREF(newdp);
    338   1.43   mycroft 			fdp->fd_rdir = newdp;
    339   1.43   mycroft 		}
    340   1.43   mycroft 	}
    341   1.43   mycroft 	if (rootvnode == olddp) {
    342   1.43   mycroft 		vrele(rootvnode);
    343   1.43   mycroft 		VREF(newdp);
    344   1.43   mycroft 		rootvnode = newdp;
    345   1.43   mycroft 	}
    346   1.43   mycroft 	vput(newdp);
    347   1.43   mycroft }
    348   1.43   mycroft 
    349   1.43   mycroft /*
    350   1.31       cgd  * Unmount a file system.
    351   1.31       cgd  *
    352   1.31       cgd  * Note: unmount takes a path to the vnode mounted on as argument,
    353   1.31       cgd  * not special file (as before).
    354   1.31       cgd  */
    355   1.31       cgd /* ARGSUSED */
    356   1.63  christos int
    357   1.57   mycroft sys_unmount(p, v, retval)
    358   1.31       cgd 	struct proc *p;
    359   1.56   thorpej 	void *v;
    360   1.56   thorpej 	register_t *retval;
    361   1.56   thorpej {
    362   1.57   mycroft 	register struct sys_unmount_args /* {
    363   1.74       cgd 		syscallarg(const char *) path;
    364   1.35       cgd 		syscallarg(int) flags;
    365   1.56   thorpej 	} */ *uap = v;
    366   1.31       cgd 	register struct vnode *vp;
    367   1.31       cgd 	struct mount *mp;
    368   1.31       cgd 	int error;
    369   1.31       cgd 	struct nameidata nd;
    370   1.31       cgd 
    371   1.35       cgd 	NDINIT(&nd, LOOKUP, FOLLOW | LOCKLEAF, UIO_USERSPACE,
    372   1.35       cgd 	    SCARG(uap, path), p);
    373   1.63  christos 	if ((error = namei(&nd)) != 0)
    374   1.31       cgd 		return (error);
    375   1.31       cgd 	vp = nd.ni_vp;
    376   1.43   mycroft 	mp = vp->v_mount;
    377   1.31       cgd 
    378   1.31       cgd 	/*
    379   1.43   mycroft 	 * Only root, or the user that did the original mount is
    380   1.43   mycroft 	 * permitted to unmount this filesystem.
    381   1.31       cgd 	 */
    382   1.43   mycroft 	if ((mp->mnt_stat.f_owner != p->p_ucred->cr_uid) &&
    383   1.93     enami 	    (error = suser(p->p_ucred, &p->p_acflag)) != 0) {
    384   1.31       cgd 		vput(vp);
    385   1.31       cgd 		return (error);
    386   1.31       cgd 	}
    387   1.31       cgd 
    388   1.31       cgd 	/*
    389   1.47   mycroft 	 * Don't allow unmounting the root file system.
    390   1.47   mycroft 	 */
    391   1.47   mycroft 	if (mp->mnt_flag & MNT_ROOTFS) {
    392   1.47   mycroft 		vput(vp);
    393   1.47   mycroft 		return (EINVAL);
    394   1.47   mycroft 	}
    395   1.47   mycroft 
    396   1.47   mycroft 	/*
    397   1.31       cgd 	 * Must be the root of the filesystem
    398   1.31       cgd 	 */
    399   1.31       cgd 	if ((vp->v_flag & VROOT) == 0) {
    400   1.31       cgd 		vput(vp);
    401   1.31       cgd 		return (EINVAL);
    402   1.31       cgd 	}
    403   1.31       cgd 	vput(vp);
    404   1.78      fvdl 
    405   1.78      fvdl 	if (vfs_busy(mp))
    406   1.78      fvdl 		return (EBUSY);
    407   1.78      fvdl 
    408   1.35       cgd 	return (dounmount(mp, SCARG(uap, flags), p));
    409   1.31       cgd }
    410   1.31       cgd 
    411   1.31       cgd /*
    412   1.78      fvdl  * Do the actual file system unmount. File system is assumed to have been
    413   1.78      fvdl  * marked busy by the caller.
    414   1.31       cgd  */
    415   1.63  christos int
    416   1.31       cgd dounmount(mp, flags, p)
    417   1.31       cgd 	register struct mount *mp;
    418   1.31       cgd 	int flags;
    419   1.31       cgd 	struct proc *p;
    420   1.31       cgd {
    421   1.31       cgd 	struct vnode *coveredvp;
    422   1.31       cgd 	int error;
    423   1.31       cgd 
    424   1.31       cgd 	coveredvp = mp->mnt_vnodecovered;
    425   1.31       cgd 	mp->mnt_flag |= MNT_UNMOUNT;
    426   1.78      fvdl 	if ((error = vfs_lock(mp)) != 0) {
    427   1.78      fvdl 		vfs_unbusy(mp);
    428   1.31       cgd 		return (error);
    429   1.78      fvdl 	}
    430   1.91      fvdl 
    431   1.91      fvdl 	if (mp->mnt_flag & MNT_EXPUBLIC)
    432   1.91      fvdl 		vfs_setpublicfs(NULL, NULL, NULL);
    433   1.31       cgd 
    434   1.31       cgd 	mp->mnt_flag &=~ MNT_ASYNC;
    435   1.31       cgd 	vnode_pager_umount(mp);	/* release cached vnodes */
    436   1.31       cgd 	cache_purgevfs(mp);	/* remove cache entries for this file sys */
    437   1.31       cgd 	if ((error = VFS_SYNC(mp, MNT_WAIT, p->p_ucred, p)) == 0 ||
    438   1.31       cgd 	    (flags & MNT_FORCE))
    439   1.31       cgd 		error = VFS_UNMOUNT(mp, flags, p);
    440   1.31       cgd 	mp->mnt_flag &= ~MNT_UNMOUNT;
    441   1.31       cgd 	vfs_unbusy(mp);
    442   1.31       cgd 	if (error) {
    443   1.31       cgd 		vfs_unlock(mp);
    444   1.31       cgd 	} else {
    445   1.47   mycroft 		CIRCLEQ_REMOVE(&mountlist, mp, mnt_list);
    446   1.47   mycroft 		if (coveredvp != NULLVP) {
    447   1.47   mycroft 			vrele(coveredvp);
    448   1.47   mycroft 			coveredvp->v_mountedhere = (struct mount *)0;
    449   1.47   mycroft 		}
    450   1.34   mycroft 		mp->mnt_op->vfs_refcount--;
    451   1.31       cgd 		vfs_unlock(mp);
    452   1.31       cgd 		if (mp->mnt_vnodelist.lh_first != NULL)
    453   1.31       cgd 			panic("unmount: dangling vnode");
    454   1.31       cgd 		free((caddr_t)mp, M_MOUNT);
    455   1.31       cgd 	}
    456   1.31       cgd 	return (error);
    457   1.31       cgd }
    458   1.31       cgd 
    459   1.31       cgd /*
    460   1.31       cgd  * Sync each mounted filesystem.
    461   1.31       cgd  */
    462   1.31       cgd #ifdef DEBUG
    463   1.31       cgd int syncprt = 0;
    464   1.31       cgd struct ctldebug debug0 = { "syncprt", &syncprt };
    465   1.31       cgd #endif
    466   1.31       cgd 
    467   1.31       cgd /* ARGSUSED */
    468   1.63  christos int
    469   1.57   mycroft sys_sync(p, v, retval)
    470   1.31       cgd 	struct proc *p;
    471   1.57   mycroft 	void *v;
    472   1.35       cgd 	register_t *retval;
    473   1.31       cgd {
    474   1.31       cgd 	register struct mount *mp, *nmp;
    475   1.31       cgd 	int asyncflag;
    476   1.31       cgd 
    477   1.77     mikel 	for (mp = mountlist.cqh_last; mp != (void *)&mountlist; mp = nmp) {
    478   1.43   mycroft 		/*
    479   1.77     mikel 		 * Get the prev pointer in case we hang on vfs_busy
    480   1.43   mycroft 		 * while we are being unmounted.
    481   1.43   mycroft 		 */
    482   1.77     mikel 		nmp = mp->mnt_list.cqe_prev;
    483   1.31       cgd 		/*
    484   1.31       cgd 		 * The lock check below is to avoid races with mount
    485   1.31       cgd 		 * and unmount.
    486   1.31       cgd 		 */
    487   1.31       cgd 		if ((mp->mnt_flag & (MNT_MLOCK|MNT_RDONLY|MNT_MPBUSY)) == 0 &&
    488   1.31       cgd 		    !vfs_busy(mp)) {
    489   1.31       cgd 			asyncflag = mp->mnt_flag & MNT_ASYNC;
    490   1.31       cgd 			mp->mnt_flag &= ~MNT_ASYNC;
    491   1.76       tls 			vnode_pager_sync(mp);
    492   1.31       cgd 			VFS_SYNC(mp, MNT_NOWAIT, p->p_ucred, p);
    493   1.31       cgd 			if (asyncflag)
    494   1.31       cgd 				mp->mnt_flag |= MNT_ASYNC;
    495   1.43   mycroft 			/*
    496   1.77     mikel 			 * Get the prev pointer again, as the prior filesystem
    497   1.43   mycroft 			 * might have been unmounted while we were sync'ing.
    498   1.43   mycroft 			 */
    499   1.77     mikel 			nmp = mp->mnt_list.cqe_prev;
    500   1.31       cgd 			vfs_unbusy(mp);
    501   1.31       cgd 		}
    502   1.31       cgd 	}
    503   1.31       cgd #ifdef DEBUG
    504   1.31       cgd 	if (syncprt)
    505   1.31       cgd 		vfs_bufstats();
    506   1.31       cgd #endif /* DEBUG */
    507   1.31       cgd 	return (0);
    508   1.31       cgd }
    509   1.31       cgd 
    510   1.31       cgd /*
    511   1.31       cgd  * Change filesystem quotas.
    512   1.31       cgd  */
    513   1.31       cgd /* ARGSUSED */
    514   1.63  christos int
    515   1.57   mycroft sys_quotactl(p, v, retval)
    516   1.31       cgd 	struct proc *p;
    517   1.56   thorpej 	void *v;
    518   1.56   thorpej 	register_t *retval;
    519   1.56   thorpej {
    520   1.57   mycroft 	register struct sys_quotactl_args /* {
    521   1.74       cgd 		syscallarg(const char *) path;
    522   1.35       cgd 		syscallarg(int) cmd;
    523   1.35       cgd 		syscallarg(int) uid;
    524   1.35       cgd 		syscallarg(caddr_t) arg;
    525   1.56   thorpej 	} */ *uap = v;
    526   1.31       cgd 	register struct mount *mp;
    527   1.31       cgd 	int error;
    528   1.31       cgd 	struct nameidata nd;
    529   1.31       cgd 
    530   1.35       cgd 	NDINIT(&nd, LOOKUP, FOLLOW, UIO_USERSPACE, SCARG(uap, path), p);
    531   1.63  christos 	if ((error = namei(&nd)) != 0)
    532   1.31       cgd 		return (error);
    533   1.31       cgd 	mp = nd.ni_vp->v_mount;
    534   1.31       cgd 	vrele(nd.ni_vp);
    535   1.35       cgd 	return (VFS_QUOTACTL(mp, SCARG(uap, cmd), SCARG(uap, uid),
    536   1.35       cgd 	    SCARG(uap, arg), p));
    537   1.31       cgd }
    538   1.31       cgd 
    539   1.31       cgd /*
    540   1.31       cgd  * Get filesystem statistics.
    541   1.31       cgd  */
    542   1.31       cgd /* ARGSUSED */
    543   1.63  christos int
    544   1.57   mycroft sys_statfs(p, v, retval)
    545   1.31       cgd 	struct proc *p;
    546   1.56   thorpej 	void *v;
    547   1.56   thorpej 	register_t *retval;
    548   1.56   thorpej {
    549   1.57   mycroft 	register struct sys_statfs_args /* {
    550   1.74       cgd 		syscallarg(const char *) path;
    551   1.35       cgd 		syscallarg(struct statfs *) buf;
    552   1.56   thorpej 	} */ *uap = v;
    553   1.31       cgd 	register struct mount *mp;
    554   1.31       cgd 	register struct statfs *sp;
    555   1.31       cgd 	int error;
    556   1.31       cgd 	struct nameidata nd;
    557   1.31       cgd 
    558   1.35       cgd 	NDINIT(&nd, LOOKUP, FOLLOW, UIO_USERSPACE, SCARG(uap, path), p);
    559   1.63  christos 	if ((error = namei(&nd)) != 0)
    560   1.31       cgd 		return (error);
    561   1.31       cgd 	mp = nd.ni_vp->v_mount;
    562   1.31       cgd 	sp = &mp->mnt_stat;
    563   1.31       cgd 	vrele(nd.ni_vp);
    564   1.63  christos 	if ((error = VFS_STATFS(mp, sp, p)) != 0)
    565   1.31       cgd 		return (error);
    566   1.31       cgd 	sp->f_flags = mp->mnt_flag & MNT_VISFLAGMASK;
    567   1.74       cgd 	return (copyout(sp, SCARG(uap, buf), sizeof(*sp)));
    568   1.31       cgd }
    569   1.31       cgd 
    570   1.31       cgd /*
    571   1.31       cgd  * Get filesystem statistics.
    572   1.31       cgd  */
    573   1.31       cgd /* ARGSUSED */
    574   1.63  christos int
    575   1.57   mycroft sys_fstatfs(p, v, retval)
    576   1.31       cgd 	struct proc *p;
    577   1.56   thorpej 	void *v;
    578   1.56   thorpej 	register_t *retval;
    579   1.56   thorpej {
    580   1.57   mycroft 	register struct sys_fstatfs_args /* {
    581   1.35       cgd 		syscallarg(int) fd;
    582   1.35       cgd 		syscallarg(struct statfs *) buf;
    583   1.56   thorpej 	} */ *uap = v;
    584   1.31       cgd 	struct file *fp;
    585   1.31       cgd 	struct mount *mp;
    586   1.31       cgd 	register struct statfs *sp;
    587   1.31       cgd 	int error;
    588   1.31       cgd 
    589   1.63  christos 	if ((error = getvnode(p->p_fd, SCARG(uap, fd), &fp)) != 0)
    590   1.31       cgd 		return (error);
    591   1.62   mycroft 	mp = ((struct vnode *)fp->f_data)->v_mount;
    592   1.31       cgd 	sp = &mp->mnt_stat;
    593   1.63  christos 	if ((error = VFS_STATFS(mp, sp, p)) != 0)
    594   1.31       cgd 		return (error);
    595   1.31       cgd 	sp->f_flags = mp->mnt_flag & MNT_VISFLAGMASK;
    596   1.74       cgd 	return (copyout(sp, SCARG(uap, buf), sizeof(*sp)));
    597   1.31       cgd }
    598   1.31       cgd 
    599   1.31       cgd /*
    600   1.31       cgd  * Get statistics on all filesystems.
    601   1.31       cgd  */
    602   1.63  christos int
    603   1.57   mycroft sys_getfsstat(p, v, retval)
    604   1.31       cgd 	struct proc *p;
    605   1.56   thorpej 	void *v;
    606   1.56   thorpej 	register_t *retval;
    607   1.56   thorpej {
    608   1.57   mycroft 	register struct sys_getfsstat_args /* {
    609   1.35       cgd 		syscallarg(struct statfs *) buf;
    610   1.35       cgd 		syscallarg(long) bufsize;
    611   1.35       cgd 		syscallarg(int) flags;
    612   1.56   thorpej 	} */ *uap = v;
    613   1.31       cgd 	register struct mount *mp, *nmp;
    614   1.31       cgd 	register struct statfs *sp;
    615   1.31       cgd 	caddr_t sfsp;
    616   1.31       cgd 	long count, maxcount, error;
    617   1.31       cgd 
    618   1.35       cgd 	maxcount = SCARG(uap, bufsize) / sizeof(struct statfs);
    619   1.35       cgd 	sfsp = (caddr_t)SCARG(uap, buf);
    620   1.47   mycroft 	for (count = 0,
    621   1.47   mycroft 	     mp = mountlist.cqh_first; mp != (void *)&mountlist; mp = nmp) {
    622   1.47   mycroft 		nmp = mp->mnt_list.cqe_next;
    623   1.31       cgd 		if (sfsp && count < maxcount &&
    624   1.31       cgd 		    ((mp->mnt_flag & MNT_MLOCK) == 0)) {
    625   1.31       cgd 			sp = &mp->mnt_stat;
    626   1.31       cgd 			/*
    627   1.31       cgd 			 * If MNT_NOWAIT is specified, do not refresh the
    628   1.31       cgd 			 * fsstat cache. MNT_WAIT overrides MNT_NOWAIT.
    629   1.31       cgd 			 */
    630   1.35       cgd 			if (((SCARG(uap, flags) & MNT_NOWAIT) == 0 ||
    631   1.35       cgd 			    (SCARG(uap, flags) & MNT_WAIT)) &&
    632   1.93     enami 			    (error = VFS_STATFS(mp, sp, p)) != 0)
    633   1.31       cgd 				continue;
    634   1.31       cgd 			sp->f_flags = mp->mnt_flag & MNT_VISFLAGMASK;
    635   1.74       cgd 			error = copyout(sp, sfsp, sizeof(*sp));
    636   1.63  christos 			if (error)
    637   1.31       cgd 				return (error);
    638   1.31       cgd 			sfsp += sizeof(*sp);
    639   1.31       cgd 		}
    640   1.31       cgd 		count++;
    641   1.31       cgd 	}
    642   1.31       cgd 	if (sfsp && count > maxcount)
    643   1.31       cgd 		*retval = maxcount;
    644   1.31       cgd 	else
    645   1.31       cgd 		*retval = count;
    646   1.31       cgd 	return (0);
    647   1.31       cgd }
    648   1.31       cgd 
    649   1.31       cgd /*
    650   1.31       cgd  * Change current working directory to a given file descriptor.
    651   1.31       cgd  */
    652   1.31       cgd /* ARGSUSED */
    653   1.63  christos int
    654   1.57   mycroft sys_fchdir(p, v, retval)
    655   1.31       cgd 	struct proc *p;
    656   1.56   thorpej 	void *v;
    657   1.56   thorpej 	register_t *retval;
    658   1.56   thorpej {
    659   1.57   mycroft 	struct sys_fchdir_args /* {
    660   1.35       cgd 		syscallarg(int) fd;
    661   1.56   thorpej 	} */ *uap = v;
    662   1.31       cgd 	register struct filedesc *fdp = p->p_fd;
    663   1.43   mycroft 	struct vnode *vp, *tdp;
    664   1.43   mycroft 	struct mount *mp;
    665   1.31       cgd 	struct file *fp;
    666   1.31       cgd 	int error;
    667   1.31       cgd 
    668   1.63  christos 	if ((error = getvnode(fdp, SCARG(uap, fd), &fp)) != 0)
    669   1.31       cgd 		return (error);
    670   1.62   mycroft 	vp = (struct vnode *)fp->f_data;
    671   1.43   mycroft 	VREF(vp);
    672   1.31       cgd 	VOP_LOCK(vp);
    673   1.31       cgd 	if (vp->v_type != VDIR)
    674   1.31       cgd 		error = ENOTDIR;
    675   1.31       cgd 	else
    676   1.89   mycroft 		error = VOP_ACCESS(vp, VEXEC, p->p_ucred, p);
    677   1.43   mycroft 	while (!error && (mp = vp->v_mountedhere) != NULL) {
    678   1.43   mycroft 		if (mp->mnt_flag & MNT_MLOCK) {
    679   1.43   mycroft 			mp->mnt_flag |= MNT_MWAIT;
    680   1.43   mycroft 			sleep((caddr_t)mp, PVFS);
    681   1.43   mycroft 			continue;
    682   1.43   mycroft 		}
    683   1.63  christos 		if ((error = VFS_ROOT(mp, &tdp)) != 0)
    684   1.43   mycroft 			break;
    685   1.43   mycroft 		vput(vp);
    686   1.43   mycroft 		vp = tdp;
    687   1.43   mycroft 	}
    688   1.31       cgd 	VOP_UNLOCK(vp);
    689   1.43   mycroft 	if (error) {
    690   1.43   mycroft 		vrele(vp);
    691   1.31       cgd 		return (error);
    692   1.43   mycroft 	}
    693   1.31       cgd 	vrele(fdp->fd_cdir);
    694   1.31       cgd 	fdp->fd_cdir = vp;
    695   1.31       cgd 	return (0);
    696   1.31       cgd }
    697   1.31       cgd 
    698   1.31       cgd /*
    699   1.31       cgd  * Change current working directory (``.'').
    700   1.31       cgd  */
    701   1.31       cgd /* ARGSUSED */
    702   1.63  christos int
    703   1.57   mycroft sys_chdir(p, v, retval)
    704   1.31       cgd 	struct proc *p;
    705   1.56   thorpej 	void *v;
    706   1.56   thorpej 	register_t *retval;
    707   1.56   thorpej {
    708   1.57   mycroft 	struct sys_chdir_args /* {
    709   1.74       cgd 		syscallarg(const char *) path;
    710   1.56   thorpej 	} */ *uap = v;
    711   1.31       cgd 	register struct filedesc *fdp = p->p_fd;
    712   1.31       cgd 	int error;
    713   1.31       cgd 	struct nameidata nd;
    714   1.31       cgd 
    715   1.35       cgd 	NDINIT(&nd, LOOKUP, FOLLOW | LOCKLEAF, UIO_USERSPACE,
    716   1.35       cgd 	    SCARG(uap, path), p);
    717   1.63  christos 	if ((error = change_dir(&nd, p)) != 0)
    718   1.31       cgd 		return (error);
    719   1.31       cgd 	vrele(fdp->fd_cdir);
    720   1.31       cgd 	fdp->fd_cdir = nd.ni_vp;
    721   1.31       cgd 	return (0);
    722   1.31       cgd }
    723   1.31       cgd 
    724   1.31       cgd /*
    725   1.31       cgd  * Change notion of root (``/'') directory.
    726   1.31       cgd  */
    727   1.31       cgd /* ARGSUSED */
    728   1.63  christos int
    729   1.57   mycroft sys_chroot(p, v, retval)
    730   1.31       cgd 	struct proc *p;
    731   1.56   thorpej 	void *v;
    732   1.56   thorpej 	register_t *retval;
    733   1.56   thorpej {
    734   1.57   mycroft 	struct sys_chroot_args /* {
    735   1.74       cgd 		syscallarg(const char *) path;
    736   1.56   thorpej 	} */ *uap = v;
    737   1.31       cgd 	register struct filedesc *fdp = p->p_fd;
    738   1.31       cgd 	int error;
    739   1.31       cgd 	struct nameidata nd;
    740   1.31       cgd 
    741   1.63  christos 	if ((error = suser(p->p_ucred, &p->p_acflag)) != 0)
    742   1.31       cgd 		return (error);
    743   1.35       cgd 	NDINIT(&nd, LOOKUP, FOLLOW | LOCKLEAF, UIO_USERSPACE,
    744   1.35       cgd 	    SCARG(uap, path), p);
    745   1.63  christos 	if ((error = change_dir(&nd, p)) != 0)
    746   1.31       cgd 		return (error);
    747   1.31       cgd 	if (fdp->fd_rdir != NULL)
    748   1.31       cgd 		vrele(fdp->fd_rdir);
    749   1.31       cgd 	fdp->fd_rdir = nd.ni_vp;
    750   1.31       cgd 	return (0);
    751   1.31       cgd }
    752   1.31       cgd 
    753   1.31       cgd /*
    754   1.31       cgd  * Common routine for chroot and chdir.
    755   1.31       cgd  */
    756   1.31       cgd static int
    757   1.31       cgd change_dir(ndp, p)
    758   1.31       cgd 	register struct nameidata *ndp;
    759   1.31       cgd 	struct proc *p;
    760   1.31       cgd {
    761   1.31       cgd 	struct vnode *vp;
    762   1.31       cgd 	int error;
    763   1.31       cgd 
    764   1.63  christos 	if ((error = namei(ndp)) != 0)
    765   1.31       cgd 		return (error);
    766   1.31       cgd 	vp = ndp->ni_vp;
    767   1.31       cgd 	if (vp->v_type != VDIR)
    768   1.31       cgd 		error = ENOTDIR;
    769   1.31       cgd 	else
    770   1.89   mycroft 		error = VOP_ACCESS(vp, VEXEC, p->p_ucred, p);
    771   1.31       cgd 	VOP_UNLOCK(vp);
    772   1.31       cgd 	if (error)
    773   1.31       cgd 		vrele(vp);
    774   1.31       cgd 	return (error);
    775   1.31       cgd }
    776   1.31       cgd 
    777   1.31       cgd /*
    778   1.31       cgd  * Check permissions, allocate an open file structure,
    779   1.31       cgd  * and call the device open routine if any.
    780   1.31       cgd  */
    781   1.63  christos int
    782   1.57   mycroft sys_open(p, v, retval)
    783   1.31       cgd 	struct proc *p;
    784   1.56   thorpej 	void *v;
    785   1.56   thorpej 	register_t *retval;
    786   1.56   thorpej {
    787   1.57   mycroft 	register struct sys_open_args /* {
    788   1.74       cgd 		syscallarg(const char *) path;
    789   1.35       cgd 		syscallarg(int) flags;
    790   1.35       cgd 		syscallarg(int) mode;
    791   1.56   thorpej 	} */ *uap = v;
    792   1.31       cgd 	register struct filedesc *fdp = p->p_fd;
    793   1.31       cgd 	register struct file *fp;
    794   1.31       cgd 	register struct vnode *vp;
    795   1.31       cgd 	int flags, cmode;
    796   1.31       cgd 	struct file *nfp;
    797   1.31       cgd 	int type, indx, error;
    798   1.31       cgd 	struct flock lf;
    799   1.31       cgd 	struct nameidata nd;
    800   1.31       cgd 	extern struct fileops vnops;
    801   1.31       cgd 
    802   1.63  christos 	if ((error = falloc(p, &nfp, &indx)) != 0)
    803   1.31       cgd 		return (error);
    804   1.31       cgd 	fp = nfp;
    805   1.35       cgd 	flags = FFLAGS(SCARG(uap, flags));
    806   1.35       cgd 	cmode = ((SCARG(uap, mode) &~ fdp->fd_cmask) & ALLPERMS) &~ S_ISTXT;
    807   1.35       cgd 	NDINIT(&nd, LOOKUP, FOLLOW, UIO_USERSPACE, SCARG(uap, path), p);
    808   1.31       cgd 	p->p_dupfd = -indx - 1;			/* XXX check for fdopen */
    809   1.63  christos 	if ((error = vn_open(&nd, flags, cmode)) != 0) {
    810   1.31       cgd 		ffree(fp);
    811   1.45   mycroft 		if ((error == ENODEV || error == ENXIO) &&
    812   1.45   mycroft 		    p->p_dupfd >= 0 &&			/* XXX from fdopen */
    813   1.45   mycroft 		    (error =
    814   1.45   mycroft 			dupfdopen(fdp, indx, p->p_dupfd, flags, error)) == 0) {
    815   1.45   mycroft 			*retval = indx;
    816   1.45   mycroft 			return (0);
    817   1.45   mycroft 		}
    818   1.45   mycroft 		if (error == ERESTART)
    819   1.44   mycroft 			error = EINTR;
    820   1.31       cgd 		fdp->fd_ofiles[indx] = NULL;
    821   1.31       cgd 		return (error);
    822   1.31       cgd 	}
    823   1.31       cgd 	p->p_dupfd = 0;
    824   1.31       cgd 	vp = nd.ni_vp;
    825   1.31       cgd 	fp->f_flag = flags & FMASK;
    826   1.31       cgd 	fp->f_type = DTYPE_VNODE;
    827   1.31       cgd 	fp->f_ops = &vnops;
    828   1.31       cgd 	fp->f_data = (caddr_t)vp;
    829   1.31       cgd 	if (flags & (O_EXLOCK | O_SHLOCK)) {
    830   1.31       cgd 		lf.l_whence = SEEK_SET;
    831   1.31       cgd 		lf.l_start = 0;
    832   1.31       cgd 		lf.l_len = 0;
    833   1.31       cgd 		if (flags & O_EXLOCK)
    834   1.31       cgd 			lf.l_type = F_WRLCK;
    835   1.31       cgd 		else
    836   1.31       cgd 			lf.l_type = F_RDLCK;
    837   1.31       cgd 		type = F_FLOCK;
    838   1.31       cgd 		if ((flags & FNONBLOCK) == 0)
    839   1.31       cgd 			type |= F_WAIT;
    840   1.31       cgd 		VOP_UNLOCK(vp);
    841   1.63  christos 		error = VOP_ADVLOCK(vp, (caddr_t)fp, F_SETLK, &lf, type);
    842   1.63  christos 		if (error) {
    843   1.31       cgd 			(void) vn_close(vp, fp->f_flag, fp->f_cred, p);
    844   1.31       cgd 			ffree(fp);
    845   1.31       cgd 			fdp->fd_ofiles[indx] = NULL;
    846   1.31       cgd 			return (error);
    847   1.31       cgd 		}
    848   1.31       cgd 		VOP_LOCK(vp);
    849   1.31       cgd 		fp->f_flag |= FHASLOCK;
    850   1.31       cgd 	}
    851   1.31       cgd 	VOP_UNLOCK(vp);
    852   1.31       cgd 	*retval = indx;
    853   1.31       cgd 	return (0);
    854   1.31       cgd }
    855   1.31       cgd 
    856   1.31       cgd /*
    857   1.31       cgd  * Create a special file.
    858   1.31       cgd  */
    859   1.31       cgd /* ARGSUSED */
    860   1.63  christos int
    861   1.57   mycroft sys_mknod(p, v, retval)
    862   1.31       cgd 	struct proc *p;
    863   1.56   thorpej 	void *v;
    864   1.56   thorpej 	register_t *retval;
    865   1.56   thorpej {
    866   1.57   mycroft 	register struct sys_mknod_args /* {
    867   1.74       cgd 		syscallarg(const char *) path;
    868   1.35       cgd 		syscallarg(int) mode;
    869   1.35       cgd 		syscallarg(int) dev;
    870   1.56   thorpej 	} */ *uap = v;
    871   1.31       cgd 	register struct vnode *vp;
    872   1.31       cgd 	struct vattr vattr;
    873   1.31       cgd 	int error;
    874   1.63  christos 	int whiteout = 0;
    875   1.31       cgd 	struct nameidata nd;
    876   1.31       cgd 
    877   1.63  christos 	if ((error = suser(p->p_ucred, &p->p_acflag)) != 0)
    878   1.31       cgd 		return (error);
    879   1.35       cgd 	NDINIT(&nd, CREATE, LOCKPARENT, UIO_USERSPACE, SCARG(uap, path), p);
    880   1.63  christos 	if ((error = namei(&nd)) != 0)
    881   1.31       cgd 		return (error);
    882   1.31       cgd 	vp = nd.ni_vp;
    883   1.43   mycroft 	if (vp != NULL)
    884   1.31       cgd 		error = EEXIST;
    885   1.43   mycroft 	else {
    886   1.43   mycroft 		VATTR_NULL(&vattr);
    887   1.94     enami 		vattr.va_mode =
    888   1.94     enami 		    (SCARG(uap, mode) & ALLPERMS) &~ p->p_fd->fd_cmask;
    889   1.43   mycroft 		vattr.va_rdev = SCARG(uap, dev);
    890   1.43   mycroft 		whiteout = 0;
    891   1.43   mycroft 
    892   1.43   mycroft 		switch (SCARG(uap, mode) & S_IFMT) {
    893   1.43   mycroft 		case S_IFMT:	/* used by badsect to flag bad sectors */
    894   1.43   mycroft 			vattr.va_type = VBAD;
    895   1.43   mycroft 			break;
    896   1.43   mycroft 		case S_IFCHR:
    897   1.43   mycroft 			vattr.va_type = VCHR;
    898   1.43   mycroft 			break;
    899   1.43   mycroft 		case S_IFBLK:
    900   1.43   mycroft 			vattr.va_type = VBLK;
    901   1.43   mycroft 			break;
    902   1.43   mycroft 		case S_IFWHT:
    903   1.43   mycroft 			whiteout = 1;
    904   1.43   mycroft 			break;
    905   1.43   mycroft 		default:
    906   1.43   mycroft 			error = EINVAL;
    907   1.43   mycroft 			break;
    908   1.43   mycroft 		}
    909   1.31       cgd 	}
    910   1.43   mycroft 	if (!error) {
    911   1.43   mycroft 		VOP_LEASE(nd.ni_dvp, p, p->p_ucred, LEASE_WRITE);
    912   1.43   mycroft 		if (whiteout) {
    913   1.43   mycroft 			error = VOP_WHITEOUT(nd.ni_dvp, &nd.ni_cnd, CREATE);
    914   1.43   mycroft 			if (error)
    915   1.43   mycroft 				VOP_ABORTOP(nd.ni_dvp, &nd.ni_cnd);
    916   1.43   mycroft 			vput(nd.ni_dvp);
    917   1.43   mycroft 		} else {
    918   1.43   mycroft 			error = VOP_MKNOD(nd.ni_dvp, &nd.ni_vp,
    919   1.43   mycroft 						&nd.ni_cnd, &vattr);
    920   1.43   mycroft 		}
    921   1.43   mycroft 	} else {
    922   1.43   mycroft 		VOP_ABORTOP(nd.ni_dvp, &nd.ni_cnd);
    923   1.43   mycroft 		if (nd.ni_dvp == vp)
    924   1.43   mycroft 			vrele(nd.ni_dvp);
    925   1.43   mycroft 		else
    926   1.43   mycroft 			vput(nd.ni_dvp);
    927   1.43   mycroft 		if (vp)
    928   1.43   mycroft 			vrele(vp);
    929   1.31       cgd 	}
    930   1.31       cgd 	return (error);
    931   1.31       cgd }
    932   1.31       cgd 
    933   1.31       cgd /*
    934   1.31       cgd  * Create a named pipe.
    935   1.31       cgd  */
    936   1.31       cgd /* ARGSUSED */
    937   1.63  christos int
    938   1.57   mycroft sys_mkfifo(p, v, retval)
    939   1.31       cgd 	struct proc *p;
    940   1.56   thorpej 	void *v;
    941   1.56   thorpej 	register_t *retval;
    942   1.56   thorpej {
    943   1.70   thorpej #ifndef FIFO
    944   1.70   thorpej 	return (EOPNOTSUPP);
    945   1.70   thorpej #else
    946   1.57   mycroft 	register struct sys_mkfifo_args /* {
    947   1.74       cgd 		syscallarg(const char *) path;
    948   1.35       cgd 		syscallarg(int) mode;
    949   1.56   thorpej 	} */ *uap = v;
    950   1.31       cgd 	struct vattr vattr;
    951   1.31       cgd 	int error;
    952   1.31       cgd 	struct nameidata nd;
    953   1.31       cgd 
    954   1.35       cgd 	NDINIT(&nd, CREATE, LOCKPARENT, UIO_USERSPACE, SCARG(uap, path), p);
    955   1.63  christos 	if ((error = namei(&nd)) != 0)
    956   1.31       cgd 		return (error);
    957   1.31       cgd 	if (nd.ni_vp != NULL) {
    958   1.31       cgd 		VOP_ABORTOP(nd.ni_dvp, &nd.ni_cnd);
    959   1.31       cgd 		if (nd.ni_dvp == nd.ni_vp)
    960   1.31       cgd 			vrele(nd.ni_dvp);
    961   1.31       cgd 		else
    962   1.31       cgd 			vput(nd.ni_dvp);
    963   1.31       cgd 		vrele(nd.ni_vp);
    964   1.31       cgd 		return (EEXIST);
    965   1.31       cgd 	}
    966   1.31       cgd 	VATTR_NULL(&vattr);
    967   1.31       cgd 	vattr.va_type = VFIFO;
    968   1.35       cgd 	vattr.va_mode = (SCARG(uap, mode) & ALLPERMS) &~ p->p_fd->fd_cmask;
    969   1.42   mycroft 	VOP_LEASE(nd.ni_dvp, p, p->p_ucred, LEASE_WRITE);
    970   1.31       cgd 	return (VOP_MKNOD(nd.ni_dvp, &nd.ni_vp, &nd.ni_cnd, &vattr));
    971   1.31       cgd #endif /* FIFO */
    972   1.31       cgd }
    973   1.31       cgd 
    974   1.31       cgd /*
    975   1.31       cgd  * Make a hard file link.
    976   1.31       cgd  */
    977   1.31       cgd /* ARGSUSED */
    978   1.63  christos int
    979   1.57   mycroft sys_link(p, v, retval)
    980   1.31       cgd 	struct proc *p;
    981   1.56   thorpej 	void *v;
    982   1.56   thorpej 	register_t *retval;
    983   1.56   thorpej {
    984   1.57   mycroft 	register struct sys_link_args /* {
    985   1.74       cgd 		syscallarg(const char *) path;
    986   1.74       cgd 		syscallarg(const char *) link;
    987   1.56   thorpej 	} */ *uap = v;
    988   1.31       cgd 	register struct vnode *vp;
    989   1.31       cgd 	struct nameidata nd;
    990   1.31       cgd 	int error;
    991   1.31       cgd 
    992   1.35       cgd 	NDINIT(&nd, LOOKUP, FOLLOW, UIO_USERSPACE, SCARG(uap, path), p);
    993   1.63  christos 	if ((error = namei(&nd)) != 0)
    994   1.31       cgd 		return (error);
    995   1.31       cgd 	vp = nd.ni_vp;
    996   1.66   mycroft 	NDINIT(&nd, CREATE, LOCKPARENT, UIO_USERSPACE, SCARG(uap, link), p);
    997   1.66   mycroft 	if ((error = namei(&nd)) != 0)
    998   1.66   mycroft 		goto out;
    999   1.66   mycroft 	if (nd.ni_vp) {
   1000   1.66   mycroft 		VOP_ABORTOP(nd.ni_dvp, &nd.ni_cnd);
   1001   1.66   mycroft 		if (nd.ni_dvp == nd.ni_vp)
   1002   1.66   mycroft 			vrele(nd.ni_dvp);
   1003   1.66   mycroft 		else
   1004   1.66   mycroft 			vput(nd.ni_dvp);
   1005   1.66   mycroft 		vrele(nd.ni_vp);
   1006   1.66   mycroft 		error = EEXIST;
   1007   1.66   mycroft 		goto out;
   1008   1.31       cgd 	}
   1009   1.66   mycroft 	VOP_LEASE(nd.ni_dvp, p, p->p_ucred, LEASE_WRITE);
   1010   1.66   mycroft 	VOP_LEASE(vp, p, p->p_ucred, LEASE_WRITE);
   1011   1.66   mycroft 	error = VOP_LINK(nd.ni_dvp, vp, &nd.ni_cnd);
   1012   1.66   mycroft out:
   1013   1.31       cgd 	vrele(vp);
   1014   1.31       cgd 	return (error);
   1015   1.31       cgd }
   1016   1.31       cgd 
   1017   1.31       cgd /*
   1018   1.31       cgd  * Make a symbolic link.
   1019   1.31       cgd  */
   1020   1.31       cgd /* ARGSUSED */
   1021   1.63  christos int
   1022   1.57   mycroft sys_symlink(p, v, retval)
   1023   1.31       cgd 	struct proc *p;
   1024   1.56   thorpej 	void *v;
   1025   1.56   thorpej 	register_t *retval;
   1026   1.56   thorpej {
   1027   1.57   mycroft 	register struct sys_symlink_args /* {
   1028   1.74       cgd 		syscallarg(const char *) path;
   1029   1.74       cgd 		syscallarg(const char *) link;
   1030   1.56   thorpej 	} */ *uap = v;
   1031   1.31       cgd 	struct vattr vattr;
   1032   1.31       cgd 	char *path;
   1033   1.31       cgd 	int error;
   1034   1.31       cgd 	struct nameidata nd;
   1035   1.31       cgd 
   1036   1.31       cgd 	MALLOC(path, char *, MAXPATHLEN, M_NAMEI, M_WAITOK);
   1037   1.63  christos 	error = copyinstr(SCARG(uap, path), path, MAXPATHLEN, NULL);
   1038   1.63  christos 	if (error)
   1039   1.43   mycroft 		goto out;
   1040   1.35       cgd 	NDINIT(&nd, CREATE, LOCKPARENT, UIO_USERSPACE, SCARG(uap, link), p);
   1041   1.63  christos 	if ((error = namei(&nd)) != 0)
   1042   1.43   mycroft 		goto out;
   1043   1.31       cgd 	if (nd.ni_vp) {
   1044   1.31       cgd 		VOP_ABORTOP(nd.ni_dvp, &nd.ni_cnd);
   1045   1.31       cgd 		if (nd.ni_dvp == nd.ni_vp)
   1046   1.31       cgd 			vrele(nd.ni_dvp);
   1047   1.31       cgd 		else
   1048   1.31       cgd 			vput(nd.ni_dvp);
   1049   1.31       cgd 		vrele(nd.ni_vp);
   1050   1.31       cgd 		error = EEXIST;
   1051   1.43   mycroft 		goto out;
   1052   1.31       cgd 	}
   1053   1.31       cgd 	VATTR_NULL(&vattr);
   1054   1.31       cgd 	vattr.va_mode = ACCESSPERMS &~ p->p_fd->fd_cmask;
   1055   1.42   mycroft 	VOP_LEASE(nd.ni_dvp, p, p->p_ucred, LEASE_WRITE);
   1056   1.31       cgd 	error = VOP_SYMLINK(nd.ni_dvp, &nd.ni_vp, &nd.ni_cnd, &vattr, path);
   1057   1.43   mycroft out:
   1058   1.31       cgd 	FREE(path, M_NAMEI);
   1059   1.31       cgd 	return (error);
   1060   1.31       cgd }
   1061   1.31       cgd 
   1062   1.31       cgd /*
   1063   1.43   mycroft  * Delete a whiteout from the filesystem.
   1064   1.43   mycroft  */
   1065   1.43   mycroft /* ARGSUSED */
   1066   1.63  christos int
   1067   1.57   mycroft sys_undelete(p, v, retval)
   1068   1.43   mycroft 	struct proc *p;
   1069   1.56   thorpej 	void *v;
   1070   1.56   thorpej 	register_t *retval;
   1071   1.56   thorpej {
   1072   1.57   mycroft 	register struct sys_undelete_args /* {
   1073   1.74       cgd 		syscallarg(const char *) path;
   1074   1.56   thorpej 	} */ *uap = v;
   1075   1.43   mycroft 	int error;
   1076   1.43   mycroft 	struct nameidata nd;
   1077   1.43   mycroft 
   1078   1.43   mycroft 	NDINIT(&nd, DELETE, LOCKPARENT|DOWHITEOUT, UIO_USERSPACE,
   1079   1.43   mycroft 	    SCARG(uap, path), p);
   1080   1.43   mycroft 	error = namei(&nd);
   1081   1.43   mycroft 	if (error)
   1082   1.43   mycroft 		return (error);
   1083   1.43   mycroft 
   1084   1.43   mycroft 	if (nd.ni_vp != NULLVP || !(nd.ni_cnd.cn_flags & ISWHITEOUT)) {
   1085   1.43   mycroft 		VOP_ABORTOP(nd.ni_dvp, &nd.ni_cnd);
   1086   1.43   mycroft 		if (nd.ni_dvp == nd.ni_vp)
   1087   1.43   mycroft 			vrele(nd.ni_dvp);
   1088   1.43   mycroft 		else
   1089   1.43   mycroft 			vput(nd.ni_dvp);
   1090   1.43   mycroft 		if (nd.ni_vp)
   1091   1.43   mycroft 			vrele(nd.ni_vp);
   1092   1.43   mycroft 		return (EEXIST);
   1093   1.43   mycroft 	}
   1094   1.43   mycroft 
   1095   1.43   mycroft 	VOP_LEASE(nd.ni_dvp, p, p->p_ucred, LEASE_WRITE);
   1096   1.63  christos 	if ((error = VOP_WHITEOUT(nd.ni_dvp, &nd.ni_cnd, DELETE)) != 0)
   1097   1.43   mycroft 		VOP_ABORTOP(nd.ni_dvp, &nd.ni_cnd);
   1098   1.43   mycroft 	vput(nd.ni_dvp);
   1099   1.43   mycroft 	return (error);
   1100   1.43   mycroft }
   1101   1.43   mycroft 
   1102   1.43   mycroft /*
   1103   1.31       cgd  * Delete a name from the filesystem.
   1104   1.31       cgd  */
   1105   1.31       cgd /* ARGSUSED */
   1106   1.63  christos int
   1107   1.57   mycroft sys_unlink(p, v, retval)
   1108   1.31       cgd 	struct proc *p;
   1109   1.56   thorpej 	void *v;
   1110   1.56   thorpej 	register_t *retval;
   1111   1.56   thorpej {
   1112   1.57   mycroft 	struct sys_unlink_args /* {
   1113   1.74       cgd 		syscallarg(const char *) path;
   1114   1.56   thorpej 	} */ *uap = v;
   1115   1.31       cgd 	register struct vnode *vp;
   1116   1.31       cgd 	int error;
   1117   1.31       cgd 	struct nameidata nd;
   1118   1.31       cgd 
   1119   1.67   mycroft 	NDINIT(&nd, DELETE, LOCKPARENT | LOCKLEAF, UIO_USERSPACE,
   1120   1.67   mycroft 	    SCARG(uap, path), p);
   1121   1.63  christos 	if ((error = namei(&nd)) != 0)
   1122   1.31       cgd 		return (error);
   1123   1.31       cgd 	vp = nd.ni_vp;
   1124   1.31       cgd 
   1125   1.66   mycroft 	/*
   1126   1.66   mycroft 	 * The root of a mounted filesystem cannot be deleted.
   1127   1.66   mycroft 	 */
   1128   1.66   mycroft 	if (vp->v_flag & VROOT) {
   1129   1.43   mycroft 		VOP_ABORTOP(nd.ni_dvp, &nd.ni_cnd);
   1130   1.43   mycroft 		if (nd.ni_dvp == vp)
   1131   1.43   mycroft 			vrele(nd.ni_dvp);
   1132   1.43   mycroft 		else
   1133   1.43   mycroft 			vput(nd.ni_dvp);
   1134   1.66   mycroft 		vput(vp);
   1135   1.66   mycroft 		error = EBUSY;
   1136   1.66   mycroft 		goto out;
   1137   1.31       cgd 	}
   1138   1.66   mycroft 
   1139   1.69      fvdl 	(void)vnode_pager_uncache(vp);
   1140   1.69      fvdl 
   1141   1.66   mycroft 	VOP_LEASE(nd.ni_dvp, p, p->p_ucred, LEASE_WRITE);
   1142   1.67   mycroft 	VOP_LEASE(vp, p, p->p_ucred, LEASE_WRITE);
   1143   1.66   mycroft 	error = VOP_REMOVE(nd.ni_dvp, nd.ni_vp, &nd.ni_cnd);
   1144   1.66   mycroft out:
   1145   1.31       cgd 	return (error);
   1146   1.31       cgd }
   1147   1.31       cgd 
   1148   1.31       cgd /*
   1149   1.31       cgd  * Reposition read/write file offset.
   1150   1.31       cgd  */
   1151   1.63  christos int
   1152   1.57   mycroft sys_lseek(p, v, retval)
   1153   1.31       cgd 	struct proc *p;
   1154   1.56   thorpej 	void *v;
   1155   1.56   thorpej 	register_t *retval;
   1156   1.56   thorpej {
   1157   1.57   mycroft 	register struct sys_lseek_args /* {
   1158   1.35       cgd 		syscallarg(int) fd;
   1159   1.35       cgd 		syscallarg(int) pad;
   1160   1.35       cgd 		syscallarg(off_t) offset;
   1161   1.35       cgd 		syscallarg(int) whence;
   1162   1.56   thorpej 	} */ *uap = v;
   1163   1.31       cgd 	struct ucred *cred = p->p_ucred;
   1164   1.31       cgd 	register struct filedesc *fdp = p->p_fd;
   1165   1.31       cgd 	register struct file *fp;
   1166   1.84    kleink 	struct vnode *vp;
   1167   1.31       cgd 	struct vattr vattr;
   1168   1.84    kleink 	register off_t newoff;
   1169   1.31       cgd 	int error;
   1170   1.31       cgd 
   1171   1.35       cgd 	if ((u_int)SCARG(uap, fd) >= fdp->fd_nfiles ||
   1172   1.35       cgd 	    (fp = fdp->fd_ofiles[SCARG(uap, fd)]) == NULL)
   1173   1.31       cgd 		return (EBADF);
   1174   1.84    kleink 
   1175   1.84    kleink 	vp = (struct vnode *)fp->f_data;
   1176   1.72       jtc 	if (fp->f_type != DTYPE_VNODE
   1177   1.72       jtc #ifdef FIFO
   1178   1.84    kleink 	    || vp->v_type == VFIFO
   1179   1.72       jtc #endif
   1180   1.72       jtc 	)
   1181   1.31       cgd 		return (ESPIPE);
   1182   1.84    kleink 
   1183   1.35       cgd 	switch (SCARG(uap, whence)) {
   1184   1.92    kleink 	case SEEK_CUR:
   1185   1.84    kleink 		newoff = fp->f_offset + SCARG(uap, offset);
   1186   1.31       cgd 		break;
   1187   1.92    kleink 	case SEEK_END:
   1188   1.85    kleink 		error = VOP_GETATTR(vp, &vattr, cred, p);
   1189   1.63  christos 		if (error)
   1190   1.31       cgd 			return (error);
   1191   1.84    kleink 		newoff = SCARG(uap, offset) + vattr.va_size;
   1192   1.31       cgd 		break;
   1193   1.92    kleink 	case SEEK_SET:
   1194   1.84    kleink 		newoff = SCARG(uap, offset);
   1195   1.31       cgd 		break;
   1196   1.31       cgd 	default:
   1197   1.31       cgd 		return (EINVAL);
   1198   1.31       cgd 	}
   1199   1.84    kleink 	if ((error = VOP_SEEK(vp, fp->f_offset, newoff, cred)) != 0)
   1200   1.84    kleink 		return (error);
   1201   1.84    kleink 
   1202   1.84    kleink 	*(off_t *)retval = fp->f_offset = newoff;
   1203   1.31       cgd 	return (0);
   1204   1.31       cgd }
   1205   1.31       cgd 
   1206   1.31       cgd /*
   1207   1.31       cgd  * Check access permissions.
   1208   1.31       cgd  */
   1209   1.63  christos int
   1210   1.57   mycroft sys_access(p, v, retval)
   1211   1.31       cgd 	struct proc *p;
   1212   1.56   thorpej 	void *v;
   1213   1.56   thorpej 	register_t *retval;
   1214   1.56   thorpej {
   1215   1.57   mycroft 	register struct sys_access_args /* {
   1216   1.74       cgd 		syscallarg(const char *) path;
   1217   1.35       cgd 		syscallarg(int) flags;
   1218   1.56   thorpej 	} */ *uap = v;
   1219   1.31       cgd 	register struct ucred *cred = p->p_ucred;
   1220   1.31       cgd 	register struct vnode *vp;
   1221   1.31       cgd 	int error, flags, t_gid, t_uid;
   1222   1.31       cgd 	struct nameidata nd;
   1223   1.31       cgd 
   1224   1.31       cgd 	t_uid = cred->cr_uid;
   1225   1.53       jtc 	t_gid = cred->cr_gid;
   1226   1.31       cgd 	cred->cr_uid = p->p_cred->p_ruid;
   1227   1.53       jtc 	cred->cr_gid = p->p_cred->p_rgid;
   1228   1.35       cgd 	NDINIT(&nd, LOOKUP, FOLLOW | LOCKLEAF, UIO_USERSPACE,
   1229   1.35       cgd 	    SCARG(uap, path), p);
   1230   1.63  christos 	if ((error = namei(&nd)) != 0)
   1231   1.31       cgd 		goto out1;
   1232   1.31       cgd 	vp = nd.ni_vp;
   1233   1.31       cgd 
   1234   1.31       cgd 	/* Flags == 0 means only check for existence. */
   1235   1.35       cgd 	if (SCARG(uap, flags)) {
   1236   1.31       cgd 		flags = 0;
   1237   1.35       cgd 		if (SCARG(uap, flags) & R_OK)
   1238   1.31       cgd 			flags |= VREAD;
   1239   1.35       cgd 		if (SCARG(uap, flags) & W_OK)
   1240   1.31       cgd 			flags |= VWRITE;
   1241   1.89   mycroft 		if (SCARG(uap, flags) & X_OK)
   1242   1.89   mycroft 			flags |= VEXEC;
   1243   1.31       cgd 		if ((flags & VWRITE) == 0 || (error = vn_writechk(vp)) == 0)
   1244   1.31       cgd 			error = VOP_ACCESS(vp, flags, cred, p);
   1245   1.31       cgd 	}
   1246   1.31       cgd 	vput(vp);
   1247   1.31       cgd out1:
   1248   1.31       cgd 	cred->cr_uid = t_uid;
   1249   1.53       jtc 	cred->cr_gid = t_gid;
   1250   1.31       cgd 	return (error);
   1251   1.31       cgd }
   1252   1.31       cgd 
   1253   1.31       cgd /*
   1254   1.31       cgd  * Get file status; this version follows links.
   1255   1.31       cgd  */
   1256   1.31       cgd /* ARGSUSED */
   1257   1.63  christos int
   1258   1.57   mycroft sys_stat(p, v, retval)
   1259   1.31       cgd 	struct proc *p;
   1260   1.56   thorpej 	void *v;
   1261   1.56   thorpej 	register_t *retval;
   1262   1.56   thorpej {
   1263   1.57   mycroft 	register struct sys_stat_args /* {
   1264   1.74       cgd 		syscallarg(const char *) path;
   1265   1.35       cgd 		syscallarg(struct stat *) ub;
   1266   1.56   thorpej 	} */ *uap = v;
   1267   1.31       cgd 	struct stat sb;
   1268   1.31       cgd 	int error;
   1269   1.31       cgd 	struct nameidata nd;
   1270   1.31       cgd 
   1271   1.35       cgd 	NDINIT(&nd, LOOKUP, FOLLOW | LOCKLEAF, UIO_USERSPACE,
   1272   1.35       cgd 	    SCARG(uap, path), p);
   1273   1.63  christos 	if ((error = namei(&nd)) != 0)
   1274   1.31       cgd 		return (error);
   1275   1.31       cgd 	error = vn_stat(nd.ni_vp, &sb, p);
   1276   1.31       cgd 	vput(nd.ni_vp);
   1277   1.31       cgd 	if (error)
   1278   1.31       cgd 		return (error);
   1279   1.74       cgd 	error = copyout(&sb, SCARG(uap, ub), sizeof (sb));
   1280   1.31       cgd 	return (error);
   1281   1.31       cgd }
   1282   1.31       cgd 
   1283   1.31       cgd /*
   1284   1.31       cgd  * Get file status; this version does not follow links.
   1285   1.31       cgd  */
   1286   1.31       cgd /* ARGSUSED */
   1287   1.63  christos int
   1288   1.57   mycroft sys_lstat(p, v, retval)
   1289   1.31       cgd 	struct proc *p;
   1290   1.56   thorpej 	void *v;
   1291   1.56   thorpej 	register_t *retval;
   1292   1.56   thorpej {
   1293   1.57   mycroft 	register struct sys_lstat_args /* {
   1294   1.74       cgd 		syscallarg(const char *) path;
   1295   1.35       cgd 		syscallarg(struct stat *) ub;
   1296   1.56   thorpej 	} */ *uap = v;
   1297   1.65   mycroft 	struct stat sb;
   1298   1.31       cgd 	int error;
   1299   1.31       cgd 	struct nameidata nd;
   1300   1.31       cgd 
   1301   1.65   mycroft 	NDINIT(&nd, LOOKUP, NOFOLLOW | LOCKLEAF, UIO_USERSPACE,
   1302   1.35       cgd 	    SCARG(uap, path), p);
   1303   1.63  christos 	if ((error = namei(&nd)) != 0)
   1304   1.31       cgd 		return (error);
   1305   1.65   mycroft 	error = vn_stat(nd.ni_vp, &sb, p);
   1306   1.65   mycroft 	vput(nd.ni_vp);
   1307   1.64       jtc 	if (error)
   1308   1.64       jtc 		return (error);
   1309   1.74       cgd 	error = copyout(&sb, SCARG(uap, ub), sizeof (sb));
   1310   1.31       cgd 	return (error);
   1311   1.31       cgd }
   1312   1.31       cgd 
   1313   1.31       cgd /*
   1314   1.31       cgd  * Get configurable pathname variables.
   1315   1.31       cgd  */
   1316   1.31       cgd /* ARGSUSED */
   1317   1.63  christos int
   1318   1.57   mycroft sys_pathconf(p, v, retval)
   1319   1.31       cgd 	struct proc *p;
   1320   1.56   thorpej 	void *v;
   1321   1.56   thorpej 	register_t *retval;
   1322   1.56   thorpej {
   1323   1.57   mycroft 	register struct sys_pathconf_args /* {
   1324   1.74       cgd 		syscallarg(const char *) path;
   1325   1.35       cgd 		syscallarg(int) name;
   1326   1.56   thorpej 	} */ *uap = v;
   1327   1.31       cgd 	int error;
   1328   1.31       cgd 	struct nameidata nd;
   1329   1.31       cgd 
   1330   1.35       cgd 	NDINIT(&nd, LOOKUP, FOLLOW | LOCKLEAF, UIO_USERSPACE,
   1331   1.35       cgd 	    SCARG(uap, path), p);
   1332   1.63  christos 	if ((error = namei(&nd)) != 0)
   1333   1.31       cgd 		return (error);
   1334   1.35       cgd 	error = VOP_PATHCONF(nd.ni_vp, SCARG(uap, name), retval);
   1335   1.31       cgd 	vput(nd.ni_vp);
   1336   1.31       cgd 	return (error);
   1337   1.31       cgd }
   1338   1.31       cgd 
   1339   1.31       cgd /*
   1340   1.31       cgd  * Return target name of a symbolic link.
   1341   1.31       cgd  */
   1342   1.31       cgd /* ARGSUSED */
   1343   1.63  christos int
   1344   1.57   mycroft sys_readlink(p, v, retval)
   1345   1.31       cgd 	struct proc *p;
   1346   1.56   thorpej 	void *v;
   1347   1.56   thorpej 	register_t *retval;
   1348   1.56   thorpej {
   1349   1.57   mycroft 	register struct sys_readlink_args /* {
   1350   1.74       cgd 		syscallarg(const char *) path;
   1351   1.35       cgd 		syscallarg(char *) buf;
   1352   1.35       cgd 		syscallarg(int) count;
   1353   1.56   thorpej 	} */ *uap = v;
   1354   1.31       cgd 	register struct vnode *vp;
   1355   1.31       cgd 	struct iovec aiov;
   1356   1.31       cgd 	struct uio auio;
   1357   1.31       cgd 	int error;
   1358   1.31       cgd 	struct nameidata nd;
   1359   1.31       cgd 
   1360   1.35       cgd 	NDINIT(&nd, LOOKUP, NOFOLLOW | LOCKLEAF, UIO_USERSPACE,
   1361   1.35       cgd 	    SCARG(uap, path), p);
   1362   1.63  christos 	if ((error = namei(&nd)) != 0)
   1363   1.31       cgd 		return (error);
   1364   1.31       cgd 	vp = nd.ni_vp;
   1365   1.31       cgd 	if (vp->v_type != VLNK)
   1366   1.31       cgd 		error = EINVAL;
   1367  1.102     enami 	else if ((error = VOP_ACCESS(vp, VREAD, p->p_ucred, p)) == 0) {
   1368   1.35       cgd 		aiov.iov_base = SCARG(uap, buf);
   1369   1.35       cgd 		aiov.iov_len = SCARG(uap, count);
   1370   1.31       cgd 		auio.uio_iov = &aiov;
   1371   1.31       cgd 		auio.uio_iovcnt = 1;
   1372   1.31       cgd 		auio.uio_offset = 0;
   1373   1.31       cgd 		auio.uio_rw = UIO_READ;
   1374   1.31       cgd 		auio.uio_segflg = UIO_USERSPACE;
   1375   1.31       cgd 		auio.uio_procp = p;
   1376   1.35       cgd 		auio.uio_resid = SCARG(uap, count);
   1377   1.31       cgd 		error = VOP_READLINK(vp, &auio, p->p_ucred);
   1378   1.31       cgd 	}
   1379   1.31       cgd 	vput(vp);
   1380   1.35       cgd 	*retval = SCARG(uap, count) - auio.uio_resid;
   1381   1.31       cgd 	return (error);
   1382   1.31       cgd }
   1383   1.31       cgd 
   1384   1.31       cgd /*
   1385   1.31       cgd  * Change flags of a file given a path name.
   1386   1.31       cgd  */
   1387   1.31       cgd /* ARGSUSED */
   1388   1.63  christos int
   1389   1.57   mycroft sys_chflags(p, v, retval)
   1390   1.31       cgd 	struct proc *p;
   1391   1.56   thorpej 	void *v;
   1392   1.56   thorpej 	register_t *retval;
   1393   1.56   thorpej {
   1394   1.57   mycroft 	register struct sys_chflags_args /* {
   1395   1.74       cgd 		syscallarg(const char *) path;
   1396   1.74       cgd 		syscallarg(u_long) flags;
   1397   1.56   thorpej 	} */ *uap = v;
   1398   1.31       cgd 	register struct vnode *vp;
   1399   1.31       cgd 	struct vattr vattr;
   1400   1.31       cgd 	int error;
   1401   1.31       cgd 	struct nameidata nd;
   1402   1.31       cgd 
   1403   1.35       cgd 	NDINIT(&nd, LOOKUP, FOLLOW, UIO_USERSPACE, SCARG(uap, path), p);
   1404   1.63  christos 	if ((error = namei(&nd)) != 0)
   1405   1.31       cgd 		return (error);
   1406   1.31       cgd 	vp = nd.ni_vp;
   1407   1.42   mycroft 	VOP_LEASE(vp, p, p->p_ucred, LEASE_WRITE);
   1408   1.31       cgd 	VOP_LOCK(vp);
   1409   1.31       cgd 	if (vp->v_mount->mnt_flag & MNT_RDONLY)
   1410   1.31       cgd 		error = EROFS;
   1411   1.31       cgd 	else {
   1412   1.31       cgd 		VATTR_NULL(&vattr);
   1413   1.35       cgd 		vattr.va_flags = SCARG(uap, flags);
   1414   1.31       cgd 		error = VOP_SETATTR(vp, &vattr, p->p_ucred, p);
   1415   1.31       cgd 	}
   1416   1.31       cgd 	vput(vp);
   1417   1.31       cgd 	return (error);
   1418   1.31       cgd }
   1419   1.31       cgd 
   1420   1.31       cgd /*
   1421   1.31       cgd  * Change flags of a file given a file descriptor.
   1422   1.31       cgd  */
   1423   1.31       cgd /* ARGSUSED */
   1424   1.63  christos int
   1425   1.57   mycroft sys_fchflags(p, v, retval)
   1426   1.31       cgd 	struct proc *p;
   1427   1.56   thorpej 	void *v;
   1428   1.56   thorpej 	register_t *retval;
   1429   1.56   thorpej {
   1430   1.57   mycroft 	register struct sys_fchflags_args /* {
   1431   1.35       cgd 		syscallarg(int) fd;
   1432   1.74       cgd 		syscallarg(u_long) flags;
   1433   1.56   thorpej 	} */ *uap = v;
   1434   1.31       cgd 	struct vattr vattr;
   1435   1.31       cgd 	struct vnode *vp;
   1436   1.31       cgd 	struct file *fp;
   1437   1.31       cgd 	int error;
   1438   1.31       cgd 
   1439   1.63  christos 	if ((error = getvnode(p->p_fd, SCARG(uap, fd), &fp)) != 0)
   1440   1.31       cgd 		return (error);
   1441   1.62   mycroft 	vp = (struct vnode *)fp->f_data;
   1442   1.42   mycroft 	VOP_LEASE(vp, p, p->p_ucred, LEASE_WRITE);
   1443   1.31       cgd 	VOP_LOCK(vp);
   1444   1.31       cgd 	if (vp->v_mount->mnt_flag & MNT_RDONLY)
   1445   1.31       cgd 		error = EROFS;
   1446   1.31       cgd 	else {
   1447   1.31       cgd 		VATTR_NULL(&vattr);
   1448   1.35       cgd 		vattr.va_flags = SCARG(uap, flags);
   1449   1.31       cgd 		error = VOP_SETATTR(vp, &vattr, p->p_ucred, p);
   1450   1.31       cgd 	}
   1451   1.31       cgd 	VOP_UNLOCK(vp);
   1452   1.31       cgd 	return (error);
   1453   1.31       cgd }
   1454   1.31       cgd 
   1455   1.31       cgd /*
   1456   1.98     enami  * Change mode of a file given path name; this version follows links.
   1457   1.31       cgd  */
   1458   1.31       cgd /* ARGSUSED */
   1459   1.63  christos int
   1460   1.57   mycroft sys_chmod(p, v, retval)
   1461   1.31       cgd 	struct proc *p;
   1462   1.56   thorpej 	void *v;
   1463   1.56   thorpej 	register_t *retval;
   1464   1.56   thorpej {
   1465   1.57   mycroft 	register struct sys_chmod_args /* {
   1466   1.74       cgd 		syscallarg(const char *) path;
   1467   1.35       cgd 		syscallarg(int) mode;
   1468   1.56   thorpej 	} */ *uap = v;
   1469   1.31       cgd 	int error;
   1470   1.31       cgd 	struct nameidata nd;
   1471   1.31       cgd 
   1472   1.35       cgd 	NDINIT(&nd, LOOKUP, FOLLOW, UIO_USERSPACE, SCARG(uap, path), p);
   1473   1.63  christos 	if ((error = namei(&nd)) != 0)
   1474   1.31       cgd 		return (error);
   1475   1.97     enami 
   1476   1.97     enami 	error = change_mode(nd.ni_vp, SCARG(uap, mode), p);
   1477   1.97     enami 
   1478   1.97     enami 	vrele(nd.ni_vp);
   1479   1.31       cgd 	return (error);
   1480   1.31       cgd }
   1481   1.31       cgd 
   1482   1.31       cgd /*
   1483   1.31       cgd  * Change mode of a file given a file descriptor.
   1484   1.31       cgd  */
   1485   1.31       cgd /* ARGSUSED */
   1486   1.63  christos int
   1487   1.57   mycroft sys_fchmod(p, v, retval)
   1488   1.31       cgd 	struct proc *p;
   1489   1.56   thorpej 	void *v;
   1490   1.56   thorpej 	register_t *retval;
   1491   1.56   thorpej {
   1492   1.57   mycroft 	register struct sys_fchmod_args /* {
   1493   1.35       cgd 		syscallarg(int) fd;
   1494   1.35       cgd 		syscallarg(int) mode;
   1495   1.56   thorpej 	} */ *uap = v;
   1496   1.31       cgd 	struct file *fp;
   1497   1.31       cgd 	int error;
   1498   1.31       cgd 
   1499   1.63  christos 	if ((error = getvnode(p->p_fd, SCARG(uap, fd), &fp)) != 0)
   1500   1.31       cgd 		return (error);
   1501   1.97     enami 
   1502   1.97     enami 	return (change_mode((struct vnode *)fp->f_data, SCARG(uap, mode), p));
   1503   1.97     enami }
   1504   1.97     enami 
   1505   1.97     enami /*
   1506   1.98     enami  * Change mode of a file given path name; this version does not follow links.
   1507   1.98     enami  */
   1508   1.98     enami /* ARGSUSED */
   1509   1.98     enami int
   1510   1.98     enami sys_lchmod(p, v, retval)
   1511   1.98     enami 	struct proc *p;
   1512   1.98     enami 	void *v;
   1513   1.98     enami 	register_t *retval;
   1514   1.98     enami {
   1515   1.98     enami 	register struct sys_lchmod_args /* {
   1516   1.98     enami 		syscallarg(const char *) path;
   1517   1.98     enami 		syscallarg(int) mode;
   1518   1.98     enami 	} */ *uap = v;
   1519   1.98     enami 	int error;
   1520   1.98     enami 	struct nameidata nd;
   1521   1.98     enami 
   1522   1.98     enami 	NDINIT(&nd, LOOKUP, NOFOLLOW, UIO_USERSPACE, SCARG(uap, path), p);
   1523   1.98     enami 	if ((error = namei(&nd)) != 0)
   1524   1.98     enami 		return (error);
   1525   1.98     enami 
   1526   1.98     enami 	error = change_mode(nd.ni_vp, SCARG(uap, mode), p);
   1527   1.98     enami 
   1528   1.98     enami 	vrele(nd.ni_vp);
   1529   1.98     enami 	return (error);
   1530   1.98     enami }
   1531   1.98     enami 
   1532   1.98     enami /*
   1533   1.97     enami  * Common routine to set mode given a vnode.
   1534   1.97     enami  */
   1535   1.97     enami static int
   1536   1.97     enami change_mode(vp, mode, p)
   1537   1.97     enami 	struct vnode *vp;
   1538   1.97     enami 	int mode;
   1539   1.97     enami 	struct proc *p;
   1540   1.97     enami {
   1541   1.97     enami 	struct vattr vattr;
   1542   1.97     enami 	int error;
   1543   1.97     enami 
   1544   1.42   mycroft 	VOP_LEASE(vp, p, p->p_ucred, LEASE_WRITE);
   1545   1.31       cgd 	VOP_LOCK(vp);
   1546   1.31       cgd 	if (vp->v_mount->mnt_flag & MNT_RDONLY)
   1547   1.31       cgd 		error = EROFS;
   1548   1.31       cgd 	else {
   1549   1.31       cgd 		VATTR_NULL(&vattr);
   1550   1.97     enami 		vattr.va_mode = mode & ALLPERMS;
   1551   1.31       cgd 		error = VOP_SETATTR(vp, &vattr, p->p_ucred, p);
   1552   1.31       cgd 	}
   1553   1.31       cgd 	VOP_UNLOCK(vp);
   1554   1.31       cgd 	return (error);
   1555   1.31       cgd }
   1556   1.31       cgd 
   1557   1.31       cgd /*
   1558   1.98     enami  * Set ownership given a path name; this version follows links.
   1559   1.31       cgd  */
   1560   1.31       cgd /* ARGSUSED */
   1561   1.63  christos int
   1562   1.57   mycroft sys_chown(p, v, retval)
   1563   1.31       cgd 	struct proc *p;
   1564   1.56   thorpej 	void *v;
   1565   1.56   thorpej 	register_t *retval;
   1566   1.56   thorpej {
   1567   1.57   mycroft 	register struct sys_chown_args /* {
   1568   1.74       cgd 		syscallarg(const char *) path;
   1569   1.74       cgd 		syscallarg(uid_t) uid;
   1570   1.74       cgd 		syscallarg(gid_t) gid;
   1571   1.56   thorpej 	} */ *uap = v;
   1572   1.31       cgd 	int error;
   1573   1.31       cgd 	struct nameidata nd;
   1574   1.31       cgd 
   1575   1.35       cgd 	NDINIT(&nd, LOOKUP, FOLLOW, UIO_USERSPACE, SCARG(uap, path), p);
   1576   1.63  christos 	if ((error = namei(&nd)) != 0)
   1577   1.31       cgd 		return (error);
   1578   1.86    kleink 
   1579   1.86    kleink 	error = change_owner(nd.ni_vp, SCARG(uap, uid), SCARG(uap, gid), p);
   1580   1.86    kleink 
   1581   1.86    kleink 	vrele(nd.ni_vp);
   1582   1.31       cgd 	return (error);
   1583   1.31       cgd }
   1584   1.31       cgd 
   1585   1.31       cgd /*
   1586   1.31       cgd  * Set ownership given a file descriptor.
   1587   1.31       cgd  */
   1588   1.31       cgd /* ARGSUSED */
   1589   1.63  christos int
   1590   1.57   mycroft sys_fchown(p, v, retval)
   1591   1.31       cgd 	struct proc *p;
   1592   1.56   thorpej 	void *v;
   1593   1.56   thorpej 	register_t *retval;
   1594   1.56   thorpej {
   1595   1.57   mycroft 	register struct sys_fchown_args /* {
   1596   1.35       cgd 		syscallarg(int) fd;
   1597   1.74       cgd 		syscallarg(uid_t) uid;
   1598   1.74       cgd 		syscallarg(gid_t) gid;
   1599   1.56   thorpej 	} */ *uap = v;
   1600   1.71   mycroft 	int error;
   1601   1.31       cgd 	struct file *fp;
   1602   1.31       cgd 
   1603   1.63  christos 	if ((error = getvnode(p->p_fd, SCARG(uap, fd), &fp)) != 0)
   1604   1.31       cgd 		return (error);
   1605   1.86    kleink 
   1606   1.86    kleink 	return (change_owner((struct vnode *)fp->f_data, SCARG(uap, uid),
   1607   1.86    kleink 	    SCARG(uap, gid), p));
   1608   1.86    kleink }
   1609   1.86    kleink 
   1610   1.86    kleink /*
   1611   1.98     enami  * Set ownership given a path name; this version does not follow links.
   1612   1.98     enami  */
   1613   1.98     enami /* ARGSUSED */
   1614   1.98     enami int
   1615   1.98     enami sys_lchown(p, v, retval)
   1616   1.98     enami 	struct proc *p;
   1617   1.98     enami 	void *v;
   1618   1.98     enami 	register_t *retval;
   1619   1.98     enami {
   1620   1.98     enami 	register struct sys_lchown_args /* {
   1621   1.98     enami 		syscallarg(const char *) path;
   1622   1.98     enami 		syscallarg(uid_t) uid;
   1623   1.98     enami 		syscallarg(gid_t) gid;
   1624   1.98     enami 	} */ *uap = v;
   1625   1.98     enami 	int error;
   1626   1.98     enami 	struct nameidata nd;
   1627   1.98     enami 
   1628   1.98     enami 	NDINIT(&nd, LOOKUP, NOFOLLOW, UIO_USERSPACE, SCARG(uap, path), p);
   1629   1.98     enami 	if ((error = namei(&nd)) != 0)
   1630   1.98     enami 		return (error);
   1631   1.98     enami 
   1632   1.98     enami 	error = change_owner(nd.ni_vp, SCARG(uap, uid), SCARG(uap, gid), p);
   1633   1.98     enami 
   1634   1.98     enami 	vrele(nd.ni_vp);
   1635   1.98     enami 	return (error);
   1636   1.98     enami }
   1637   1.98     enami 
   1638   1.98     enami /*
   1639   1.86    kleink  * Common routine to set ownership given a vnode.
   1640   1.86    kleink  */
   1641   1.86    kleink static int
   1642   1.86    kleink change_owner(vp, uid, gid, p)
   1643   1.86    kleink 	register struct vnode *vp;
   1644   1.86    kleink 	uid_t uid;
   1645   1.86    kleink 	gid_t gid;
   1646   1.86    kleink 	struct proc *p;
   1647   1.86    kleink {
   1648   1.86    kleink 	struct vattr vattr;
   1649   1.86    kleink 	mode_t newmode = VNOVAL;
   1650   1.86    kleink 	int error;
   1651   1.86    kleink 
   1652   1.42   mycroft 	VOP_LEASE(vp, p, p->p_ucred, LEASE_WRITE);
   1653   1.31       cgd 	VOP_LOCK(vp);
   1654   1.86    kleink 	if (vp->v_mount->mnt_flag & MNT_RDONLY) {
   1655   1.31       cgd 		error = EROFS;
   1656   1.86    kleink 		goto out;
   1657   1.31       cgd 	}
   1658   1.93     enami 	if ((error = VOP_GETATTR(vp, &vattr, p->p_ucred, p)) != 0)
   1659   1.86    kleink 		goto out;
   1660   1.86    kleink 
   1661   1.87   mycroft 	/* Clear (S_ISUID | S_ISGID) bits: alter va_mode only if necessary. */
   1662   1.87   mycroft 	if (vattr.va_mode & (S_ISUID | S_ISGID))
   1663   1.87   mycroft 		newmode = vattr.va_mode & ~(S_ISUID | S_ISGID);
   1664   1.86    kleink 
   1665   1.86    kleink 	VATTR_NULL(&vattr);
   1666   1.86    kleink 	vattr.va_uid = uid;
   1667   1.86    kleink 	vattr.va_gid = gid;
   1668   1.86    kleink 	vattr.va_mode = newmode;
   1669   1.86    kleink 	error = VOP_SETATTR(vp, &vattr, p->p_ucred, p);
   1670   1.86    kleink 
   1671   1.86    kleink out:
   1672   1.31       cgd 	VOP_UNLOCK(vp);
   1673   1.31       cgd 	return (error);
   1674   1.31       cgd }
   1675   1.31       cgd 
   1676   1.31       cgd /*
   1677   1.98     enami  * Set the access and modification times given a path name; this
   1678   1.98     enami  * version follows links.
   1679   1.31       cgd  */
   1680   1.31       cgd /* ARGSUSED */
   1681   1.63  christos int
   1682   1.57   mycroft sys_utimes(p, v, retval)
   1683   1.31       cgd 	struct proc *p;
   1684   1.56   thorpej 	void *v;
   1685   1.56   thorpej 	register_t *retval;
   1686   1.56   thorpej {
   1687   1.57   mycroft 	register struct sys_utimes_args /* {
   1688   1.74       cgd 		syscallarg(const char *) path;
   1689   1.74       cgd 		syscallarg(const struct timeval *) tptr;
   1690   1.56   thorpej 	} */ *uap = v;
   1691   1.31       cgd 	int error;
   1692   1.31       cgd 	struct nameidata nd;
   1693   1.31       cgd 
   1694   1.96     enami 	NDINIT(&nd, LOOKUP, FOLLOW, UIO_USERSPACE, SCARG(uap, path), p);
   1695   1.96     enami 	if ((error = namei(&nd)) != 0)
   1696   1.96     enami 		return (error);
   1697   1.97     enami 
   1698   1.97     enami 	error = change_utimes(nd.ni_vp, SCARG(uap, tptr), p);
   1699   1.97     enami 
   1700   1.97     enami 	vrele(nd.ni_vp);
   1701   1.71   mycroft 	return (error);
   1702   1.71   mycroft }
   1703   1.71   mycroft 
   1704   1.71   mycroft /*
   1705   1.71   mycroft  * Set the access and modification times given a file descriptor.
   1706   1.71   mycroft  */
   1707   1.71   mycroft /* ARGSUSED */
   1708   1.71   mycroft int
   1709   1.71   mycroft sys_futimes(p, v, retval)
   1710   1.71   mycroft 	struct proc *p;
   1711   1.71   mycroft 	void *v;
   1712   1.71   mycroft 	register_t *retval;
   1713   1.71   mycroft {
   1714   1.71   mycroft 	register struct sys_futimes_args /* {
   1715   1.71   mycroft 		syscallarg(int) fd;
   1716   1.74       cgd 		syscallarg(const struct timeval *) tptr;
   1717   1.71   mycroft 	} */ *uap = v;
   1718   1.71   mycroft 	int error;
   1719   1.71   mycroft 	struct file *fp;
   1720   1.71   mycroft 
   1721   1.96     enami 	if ((error = getvnode(p->p_fd, SCARG(uap, fd), &fp)) != 0)
   1722   1.96     enami 		return (error);
   1723   1.97     enami 
   1724   1.97     enami 	return (change_utimes((struct vnode *)fp->f_data, SCARG(uap, tptr),
   1725   1.97     enami 	    p));
   1726   1.98     enami }
   1727   1.98     enami 
   1728   1.98     enami /*
   1729   1.98     enami  * Set the access and modification times given a path name; this
   1730   1.98     enami  * version does not follow links.
   1731   1.98     enami  */
   1732   1.98     enami /* ARGSUSED */
   1733   1.98     enami int
   1734   1.98     enami sys_lutimes(p, v, retval)
   1735   1.98     enami 	struct proc *p;
   1736   1.98     enami 	void *v;
   1737   1.98     enami 	register_t *retval;
   1738   1.98     enami {
   1739   1.98     enami 	register struct sys_lutimes_args /* {
   1740   1.98     enami 		syscallarg(const char *) path;
   1741   1.98     enami 		syscallarg(const struct timeval *) tptr;
   1742   1.98     enami 	} */ *uap = v;
   1743   1.98     enami 	int error;
   1744   1.98     enami 	struct nameidata nd;
   1745   1.98     enami 
   1746   1.98     enami 	NDINIT(&nd, LOOKUP, NOFOLLOW, UIO_USERSPACE, SCARG(uap, path), p);
   1747   1.98     enami 	if ((error = namei(&nd)) != 0)
   1748   1.98     enami 		return (error);
   1749   1.98     enami 
   1750   1.98     enami 	error = change_utimes(nd.ni_vp, SCARG(uap, tptr), p);
   1751   1.98     enami 
   1752   1.98     enami 	vrele(nd.ni_vp);
   1753   1.98     enami 	return (error);
   1754   1.97     enami }
   1755   1.97     enami 
   1756   1.97     enami /*
   1757   1.97     enami  * Common routine to set access and modification times given a vnode.
   1758   1.97     enami  */
   1759   1.97     enami static int
   1760   1.97     enami change_utimes(vp, tptr, p)
   1761   1.97     enami 	struct vnode *vp;
   1762   1.97     enami 	const struct timeval *tptr;
   1763   1.97     enami 	struct proc *p;
   1764   1.97     enami {
   1765   1.97     enami 	struct timeval tv[2];
   1766   1.97     enami 	struct vattr vattr;
   1767   1.97     enami 	int error;
   1768   1.97     enami 
   1769   1.71   mycroft 	VATTR_NULL(&vattr);
   1770   1.97     enami 	if (tptr == NULL) {
   1771   1.71   mycroft 		microtime(&tv[0]);
   1772   1.71   mycroft 		tv[1] = tv[0];
   1773   1.71   mycroft 		vattr.va_vaflags |= VA_UTIMES_NULL;
   1774   1.71   mycroft 	} else {
   1775   1.97     enami 		error = copyin(tptr, tv, sizeof (tv));
   1776   1.71   mycroft 		if (error)
   1777   1.71   mycroft 			return (error);
   1778   1.71   mycroft 	}
   1779   1.71   mycroft 	VOP_LEASE(vp, p, p->p_ucred, LEASE_WRITE);
   1780   1.71   mycroft 	VOP_LOCK(vp);
   1781   1.71   mycroft 	if (vp->v_mount->mnt_flag & MNT_RDONLY)
   1782   1.71   mycroft 		error = EROFS;
   1783   1.71   mycroft 	else {
   1784   1.71   mycroft 		vattr.va_atime.tv_sec = tv[0].tv_sec;
   1785   1.71   mycroft 		vattr.va_atime.tv_nsec = tv[0].tv_usec * 1000;
   1786   1.71   mycroft 		vattr.va_mtime.tv_sec = tv[1].tv_sec;
   1787   1.71   mycroft 		vattr.va_mtime.tv_nsec = tv[1].tv_usec * 1000;
   1788   1.71   mycroft 		error = VOP_SETATTR(vp, &vattr, p->p_ucred, p);
   1789   1.71   mycroft 	}
   1790   1.71   mycroft 	VOP_UNLOCK(vp);
   1791   1.31       cgd 	return (error);
   1792   1.31       cgd }
   1793   1.31       cgd 
   1794   1.31       cgd /*
   1795   1.31       cgd  * Truncate a file given its path name.
   1796   1.31       cgd  */
   1797   1.31       cgd /* ARGSUSED */
   1798   1.63  christos int
   1799   1.57   mycroft sys_truncate(p, v, retval)
   1800   1.31       cgd 	struct proc *p;
   1801   1.56   thorpej 	void *v;
   1802   1.56   thorpej 	register_t *retval;
   1803   1.56   thorpej {
   1804   1.57   mycroft 	register struct sys_truncate_args /* {
   1805   1.74       cgd 		syscallarg(const char *) path;
   1806   1.35       cgd 		syscallarg(int) pad;
   1807   1.35       cgd 		syscallarg(off_t) length;
   1808   1.56   thorpej 	} */ *uap = v;
   1809   1.31       cgd 	register struct vnode *vp;
   1810   1.31       cgd 	struct vattr vattr;
   1811   1.31       cgd 	int error;
   1812   1.31       cgd 	struct nameidata nd;
   1813   1.31       cgd 
   1814   1.35       cgd 	NDINIT(&nd, LOOKUP, FOLLOW, UIO_USERSPACE, SCARG(uap, path), p);
   1815   1.63  christos 	if ((error = namei(&nd)) != 0)
   1816   1.31       cgd 		return (error);
   1817   1.31       cgd 	vp = nd.ni_vp;
   1818   1.42   mycroft 	VOP_LEASE(vp, p, p->p_ucred, LEASE_WRITE);
   1819   1.31       cgd 	VOP_LOCK(vp);
   1820   1.31       cgd 	if (vp->v_type == VDIR)
   1821   1.31       cgd 		error = EISDIR;
   1822   1.31       cgd 	else if ((error = vn_writechk(vp)) == 0 &&
   1823   1.31       cgd 	    (error = VOP_ACCESS(vp, VWRITE, p->p_ucred, p)) == 0) {
   1824   1.31       cgd 		VATTR_NULL(&vattr);
   1825   1.35       cgd 		vattr.va_size = SCARG(uap, length);
   1826   1.31       cgd 		error = VOP_SETATTR(vp, &vattr, p->p_ucred, p);
   1827   1.31       cgd 	}
   1828   1.31       cgd 	vput(vp);
   1829   1.31       cgd 	return (error);
   1830   1.31       cgd }
   1831   1.31       cgd 
   1832   1.31       cgd /*
   1833   1.31       cgd  * Truncate a file given a file descriptor.
   1834   1.31       cgd  */
   1835   1.31       cgd /* ARGSUSED */
   1836   1.63  christos int
   1837   1.57   mycroft sys_ftruncate(p, v, retval)
   1838   1.31       cgd 	struct proc *p;
   1839   1.56   thorpej 	void *v;
   1840   1.56   thorpej 	register_t *retval;
   1841   1.56   thorpej {
   1842   1.57   mycroft 	register struct sys_ftruncate_args /* {
   1843   1.35       cgd 		syscallarg(int) fd;
   1844   1.35       cgd 		syscallarg(int) pad;
   1845   1.35       cgd 		syscallarg(off_t) length;
   1846   1.56   thorpej 	} */ *uap = v;
   1847   1.31       cgd 	struct vattr vattr;
   1848   1.31       cgd 	struct vnode *vp;
   1849   1.31       cgd 	struct file *fp;
   1850   1.31       cgd 	int error;
   1851   1.31       cgd 
   1852   1.63  christos 	if ((error = getvnode(p->p_fd, SCARG(uap, fd), &fp)) != 0)
   1853   1.31       cgd 		return (error);
   1854   1.31       cgd 	if ((fp->f_flag & FWRITE) == 0)
   1855   1.31       cgd 		return (EINVAL);
   1856   1.62   mycroft 	vp = (struct vnode *)fp->f_data;
   1857   1.42   mycroft 	VOP_LEASE(vp, p, p->p_ucred, LEASE_WRITE);
   1858   1.31       cgd 	VOP_LOCK(vp);
   1859   1.31       cgd 	if (vp->v_type == VDIR)
   1860   1.31       cgd 		error = EISDIR;
   1861   1.31       cgd 	else if ((error = vn_writechk(vp)) == 0) {
   1862   1.31       cgd 		VATTR_NULL(&vattr);
   1863   1.35       cgd 		vattr.va_size = SCARG(uap, length);
   1864   1.31       cgd 		error = VOP_SETATTR(vp, &vattr, fp->f_cred, p);
   1865   1.31       cgd 	}
   1866   1.31       cgd 	VOP_UNLOCK(vp);
   1867   1.31       cgd 	return (error);
   1868   1.31       cgd }
   1869   1.31       cgd 
   1870   1.31       cgd /*
   1871   1.31       cgd  * Sync an open file.
   1872   1.31       cgd  */
   1873   1.31       cgd /* ARGSUSED */
   1874   1.63  christos int
   1875   1.57   mycroft sys_fsync(p, v, retval)
   1876   1.31       cgd 	struct proc *p;
   1877   1.56   thorpej 	void *v;
   1878   1.56   thorpej 	register_t *retval;
   1879   1.56   thorpej {
   1880   1.57   mycroft 	struct sys_fsync_args /* {
   1881   1.35       cgd 		syscallarg(int) fd;
   1882   1.56   thorpej 	} */ *uap = v;
   1883   1.62   mycroft 	register struct vnode *vp;
   1884   1.31       cgd 	struct file *fp;
   1885   1.31       cgd 	int error;
   1886   1.31       cgd 
   1887   1.63  christos 	if ((error = getvnode(p->p_fd, SCARG(uap, fd), &fp)) != 0)
   1888   1.31       cgd 		return (error);
   1889   1.62   mycroft 	vp = (struct vnode *)fp->f_data;
   1890   1.31       cgd 	VOP_LOCK(vp);
   1891   1.31       cgd 	error = VOP_FSYNC(vp, fp->f_cred, MNT_WAIT, p);
   1892   1.31       cgd 	VOP_UNLOCK(vp);
   1893   1.31       cgd 	return (error);
   1894   1.31       cgd }
   1895   1.31       cgd 
   1896   1.31       cgd /*
   1897   1.90    kleink  * Rename files, (standard) BSD semantics frontend.
   1898   1.31       cgd  */
   1899   1.31       cgd /* ARGSUSED */
   1900   1.63  christos int
   1901   1.57   mycroft sys_rename(p, v, retval)
   1902   1.31       cgd 	struct proc *p;
   1903   1.56   thorpej 	void *v;
   1904   1.56   thorpej 	register_t *retval;
   1905   1.56   thorpej {
   1906   1.57   mycroft 	register struct sys_rename_args /* {
   1907   1.74       cgd 		syscallarg(const char *) from;
   1908   1.74       cgd 		syscallarg(const char *) to;
   1909   1.56   thorpej 	} */ *uap = v;
   1910   1.90    kleink 
   1911   1.90    kleink 	return (rename_files(SCARG(uap, from), SCARG(uap, to), p, 0));
   1912   1.90    kleink }
   1913   1.90    kleink 
   1914   1.90    kleink /*
   1915   1.90    kleink  * Rename files, POSIX semantics frontend.
   1916   1.90    kleink  */
   1917   1.90    kleink /* ARGSUSED */
   1918   1.90    kleink int
   1919   1.90    kleink sys_posix_rename(p, v, retval)
   1920   1.90    kleink 	struct proc *p;
   1921   1.90    kleink 	void *v;
   1922   1.90    kleink 	register_t *retval;
   1923   1.90    kleink {
   1924   1.90    kleink 	register struct sys_posix_rename_args /* {
   1925   1.90    kleink 		syscallarg(const char *) from;
   1926   1.90    kleink 		syscallarg(const char *) to;
   1927   1.90    kleink 	} */ *uap = v;
   1928   1.90    kleink 
   1929   1.90    kleink 	return (rename_files(SCARG(uap, from), SCARG(uap, to), p, 1));
   1930   1.90    kleink }
   1931   1.90    kleink 
   1932   1.90    kleink /*
   1933   1.90    kleink  * Rename files.  Source and destination must either both be directories,
   1934   1.90    kleink  * or both not be directories.  If target is a directory, it must be empty.
   1935   1.90    kleink  * If `from' and `to' refer to the same object, the value of the `retain'
   1936   1.90    kleink  * argument is used to determine whether `from' will be
   1937   1.90    kleink  *
   1938   1.90    kleink  * (retain == 0)	deleted unless `from' and `to' refer to the same
   1939   1.90    kleink  *			object in the file system's name space (BSD).
   1940   1.90    kleink  * (retain == 1)	always retained (POSIX).
   1941   1.90    kleink  */
   1942   1.90    kleink static int
   1943   1.90    kleink rename_files(from, to, p, retain)
   1944   1.90    kleink 	const char *from, *to;
   1945   1.90    kleink 	struct proc *p;
   1946   1.90    kleink 	int retain;
   1947   1.90    kleink {
   1948   1.31       cgd 	register struct vnode *tvp, *fvp, *tdvp;
   1949   1.31       cgd 	struct nameidata fromnd, tond;
   1950   1.31       cgd 	int error;
   1951   1.31       cgd 
   1952   1.31       cgd 	NDINIT(&fromnd, DELETE, WANTPARENT | SAVESTART, UIO_USERSPACE,
   1953   1.90    kleink 	    from, p);
   1954   1.63  christos 	if ((error = namei(&fromnd)) != 0)
   1955   1.31       cgd 		return (error);
   1956   1.31       cgd 	fvp = fromnd.ni_vp;
   1957   1.31       cgd 	NDINIT(&tond, RENAME, LOCKPARENT | LOCKLEAF | NOCACHE | SAVESTART,
   1958   1.90    kleink 	    UIO_USERSPACE, to, p);
   1959   1.63  christos 	if ((error = namei(&tond)) != 0) {
   1960   1.31       cgd 		VOP_ABORTOP(fromnd.ni_dvp, &fromnd.ni_cnd);
   1961   1.31       cgd 		vrele(fromnd.ni_dvp);
   1962   1.31       cgd 		vrele(fvp);
   1963   1.31       cgd 		goto out1;
   1964   1.31       cgd 	}
   1965   1.31       cgd 	tdvp = tond.ni_dvp;
   1966   1.31       cgd 	tvp = tond.ni_vp;
   1967   1.90    kleink 
   1968   1.31       cgd 	if (tvp != NULL) {
   1969   1.31       cgd 		if (fvp->v_type == VDIR && tvp->v_type != VDIR) {
   1970   1.31       cgd 			error = ENOTDIR;
   1971   1.31       cgd 			goto out;
   1972   1.31       cgd 		} else if (fvp->v_type != VDIR && tvp->v_type == VDIR) {
   1973   1.31       cgd 			error = EISDIR;
   1974   1.31       cgd 			goto out;
   1975   1.31       cgd 		}
   1976   1.31       cgd 	}
   1977   1.90    kleink 
   1978   1.31       cgd 	if (fvp == tdvp)
   1979   1.31       cgd 		error = EINVAL;
   1980   1.90    kleink 
   1981   1.82    kleink 	/*
   1982   1.90    kleink 	 * Source and destination refer to the same object.
   1983   1.82    kleink 	 */
   1984   1.90    kleink 	if (fvp == tvp) {
   1985   1.90    kleink 		if (retain)
   1986   1.90    kleink 			error = -1;
   1987   1.90    kleink 		else if (fromnd.ni_dvp == tdvp &&
   1988   1.90    kleink 		    fromnd.ni_cnd.cn_namelen == tond.ni_cnd.cn_namelen &&
   1989   1.90    kleink 		    !bcmp(fromnd.ni_cnd.cn_nameptr,
   1990   1.90    kleink 		          tond.ni_cnd.cn_nameptr,
   1991   1.90    kleink 		          fromnd.ni_cnd.cn_namelen))
   1992   1.82    kleink 		error = -1;
   1993   1.90    kleink 	}
   1994   1.90    kleink 
   1995   1.31       cgd out:
   1996   1.31       cgd 	if (!error) {
   1997   1.42   mycroft 		VOP_LEASE(tdvp, p, p->p_ucred, LEASE_WRITE);
   1998   1.31       cgd 		if (fromnd.ni_dvp != tdvp)
   1999   1.42   mycroft 			VOP_LEASE(fromnd.ni_dvp, p, p->p_ucred, LEASE_WRITE);
   2000   1.75      fvdl 		if (tvp) {
   2001   1.75      fvdl 			(void)vnode_pager_uncache(tvp);
   2002   1.42   mycroft 			VOP_LEASE(tvp, p, p->p_ucred, LEASE_WRITE);
   2003   1.75      fvdl 		}
   2004   1.31       cgd 		error = VOP_RENAME(fromnd.ni_dvp, fromnd.ni_vp, &fromnd.ni_cnd,
   2005   1.31       cgd 				   tond.ni_dvp, tond.ni_vp, &tond.ni_cnd);
   2006   1.31       cgd 	} else {
   2007   1.31       cgd 		VOP_ABORTOP(tond.ni_dvp, &tond.ni_cnd);
   2008   1.31       cgd 		if (tdvp == tvp)
   2009   1.31       cgd 			vrele(tdvp);
   2010   1.31       cgd 		else
   2011   1.31       cgd 			vput(tdvp);
   2012   1.31       cgd 		if (tvp)
   2013   1.31       cgd 			vput(tvp);
   2014   1.31       cgd 		VOP_ABORTOP(fromnd.ni_dvp, &fromnd.ni_cnd);
   2015   1.31       cgd 		vrele(fromnd.ni_dvp);
   2016   1.31       cgd 		vrele(fvp);
   2017   1.31       cgd 	}
   2018   1.31       cgd 	vrele(tond.ni_startdir);
   2019   1.31       cgd 	FREE(tond.ni_cnd.cn_pnbuf, M_NAMEI);
   2020   1.31       cgd out1:
   2021   1.31       cgd 	if (fromnd.ni_startdir)
   2022   1.31       cgd 		vrele(fromnd.ni_startdir);
   2023   1.31       cgd 	FREE(fromnd.ni_cnd.cn_pnbuf, M_NAMEI);
   2024   1.80    kleink 	return (error == -1 ? 0 : error);
   2025   1.31       cgd }
   2026   1.31       cgd 
   2027   1.31       cgd /*
   2028   1.31       cgd  * Make a directory file.
   2029   1.31       cgd  */
   2030   1.31       cgd /* ARGSUSED */
   2031   1.63  christos int
   2032   1.57   mycroft sys_mkdir(p, v, retval)
   2033   1.31       cgd 	struct proc *p;
   2034   1.56   thorpej 	void *v;
   2035   1.56   thorpej 	register_t *retval;
   2036   1.56   thorpej {
   2037   1.57   mycroft 	register struct sys_mkdir_args /* {
   2038   1.74       cgd 		syscallarg(const char *) path;
   2039   1.35       cgd 		syscallarg(int) mode;
   2040   1.56   thorpej 	} */ *uap = v;
   2041   1.31       cgd 	register struct vnode *vp;
   2042   1.31       cgd 	struct vattr vattr;
   2043   1.31       cgd 	int error;
   2044   1.31       cgd 	struct nameidata nd;
   2045   1.31       cgd 
   2046   1.35       cgd 	NDINIT(&nd, CREATE, LOCKPARENT, UIO_USERSPACE, SCARG(uap, path), p);
   2047   1.63  christos 	if ((error = namei(&nd)) != 0)
   2048   1.31       cgd 		return (error);
   2049   1.31       cgd 	vp = nd.ni_vp;
   2050   1.31       cgd 	if (vp != NULL) {
   2051   1.31       cgd 		VOP_ABORTOP(nd.ni_dvp, &nd.ni_cnd);
   2052   1.31       cgd 		if (nd.ni_dvp == vp)
   2053   1.31       cgd 			vrele(nd.ni_dvp);
   2054   1.31       cgd 		else
   2055   1.31       cgd 			vput(nd.ni_dvp);
   2056   1.31       cgd 		vrele(vp);
   2057   1.31       cgd 		return (EEXIST);
   2058   1.31       cgd 	}
   2059   1.31       cgd 	VATTR_NULL(&vattr);
   2060   1.31       cgd 	vattr.va_type = VDIR;
   2061   1.35       cgd 	vattr.va_mode = (SCARG(uap, mode) & ACCESSPERMS) &~ p->p_fd->fd_cmask;
   2062   1.42   mycroft 	VOP_LEASE(nd.ni_dvp, p, p->p_ucred, LEASE_WRITE);
   2063   1.31       cgd 	error = VOP_MKDIR(nd.ni_dvp, &nd.ni_vp, &nd.ni_cnd, &vattr);
   2064   1.31       cgd 	if (!error)
   2065   1.31       cgd 		vput(nd.ni_vp);
   2066   1.31       cgd 	return (error);
   2067   1.31       cgd }
   2068   1.31       cgd 
   2069   1.31       cgd /*
   2070   1.31       cgd  * Remove a directory file.
   2071   1.31       cgd  */
   2072   1.31       cgd /* ARGSUSED */
   2073   1.63  christos int
   2074   1.57   mycroft sys_rmdir(p, v, retval)
   2075   1.31       cgd 	struct proc *p;
   2076   1.56   thorpej 	void *v;
   2077   1.56   thorpej 	register_t *retval;
   2078   1.56   thorpej {
   2079   1.57   mycroft 	struct sys_rmdir_args /* {
   2080   1.74       cgd 		syscallarg(const char *) path;
   2081   1.56   thorpej 	} */ *uap = v;
   2082   1.31       cgd 	register struct vnode *vp;
   2083   1.31       cgd 	int error;
   2084   1.31       cgd 	struct nameidata nd;
   2085   1.31       cgd 
   2086   1.35       cgd 	NDINIT(&nd, DELETE, LOCKPARENT | LOCKLEAF, UIO_USERSPACE,
   2087   1.35       cgd 	    SCARG(uap, path), p);
   2088   1.63  christos 	if ((error = namei(&nd)) != 0)
   2089   1.31       cgd 		return (error);
   2090   1.31       cgd 	vp = nd.ni_vp;
   2091   1.31       cgd 	if (vp->v_type != VDIR) {
   2092   1.31       cgd 		error = ENOTDIR;
   2093   1.31       cgd 		goto out;
   2094   1.31       cgd 	}
   2095   1.31       cgd 	/*
   2096   1.31       cgd 	 * No rmdir "." please.
   2097   1.31       cgd 	 */
   2098   1.31       cgd 	if (nd.ni_dvp == vp) {
   2099   1.31       cgd 		error = EINVAL;
   2100   1.31       cgd 		goto out;
   2101   1.31       cgd 	}
   2102   1.31       cgd 	/*
   2103   1.31       cgd 	 * The root of a mounted filesystem cannot be deleted.
   2104   1.31       cgd 	 */
   2105   1.31       cgd 	if (vp->v_flag & VROOT)
   2106   1.31       cgd 		error = EBUSY;
   2107   1.31       cgd out:
   2108   1.31       cgd 	if (!error) {
   2109   1.42   mycroft 		VOP_LEASE(nd.ni_dvp, p, p->p_ucred, LEASE_WRITE);
   2110   1.42   mycroft 		VOP_LEASE(vp, p, p->p_ucred, LEASE_WRITE);
   2111   1.31       cgd 		error = VOP_RMDIR(nd.ni_dvp, nd.ni_vp, &nd.ni_cnd);
   2112   1.31       cgd 	} else {
   2113   1.31       cgd 		VOP_ABORTOP(nd.ni_dvp, &nd.ni_cnd);
   2114   1.31       cgd 		if (nd.ni_dvp == vp)
   2115   1.31       cgd 			vrele(nd.ni_dvp);
   2116   1.31       cgd 		else
   2117   1.31       cgd 			vput(nd.ni_dvp);
   2118   1.31       cgd 		vput(vp);
   2119   1.31       cgd 	}
   2120   1.31       cgd 	return (error);
   2121   1.31       cgd }
   2122   1.31       cgd 
   2123   1.31       cgd /*
   2124   1.31       cgd  * Read a block of directory entries in a file system independent format.
   2125   1.31       cgd  */
   2126   1.63  christos int
   2127  1.101      fvdl sys_getdents(p, v, retval)
   2128   1.31       cgd 	struct proc *p;
   2129   1.56   thorpej 	void *v;
   2130   1.56   thorpej 	register_t *retval;
   2131   1.56   thorpej {
   2132  1.101      fvdl 	register struct sys_getdents_args /* {
   2133   1.35       cgd 		syscallarg(int) fd;
   2134   1.35       cgd 		syscallarg(char *) buf;
   2135  1.101      fvdl 		syscallarg(size_t) count;
   2136   1.56   thorpej 	} */ *uap = v;
   2137   1.31       cgd 	struct file *fp;
   2138  1.101      fvdl 	int error, done;
   2139   1.31       cgd 
   2140   1.63  christos 	if ((error = getvnode(p->p_fd, SCARG(uap, fd), &fp)) != 0)
   2141   1.31       cgd 		return (error);
   2142   1.31       cgd 	if ((fp->f_flag & FREAD) == 0)
   2143   1.31       cgd 		return (EBADF);
   2144  1.101      fvdl 	error = vn_readdir(fp, SCARG(uap, buf), UIO_USERSPACE,
   2145  1.101      fvdl 			SCARG(uap, count), &done, p, 0, 0);
   2146  1.101      fvdl 	*retval = done;
   2147   1.31       cgd 	return (error);
   2148   1.31       cgd }
   2149   1.31       cgd 
   2150   1.31       cgd /*
   2151   1.31       cgd  * Set the mode mask for creation of filesystem nodes.
   2152   1.31       cgd  */
   2153   1.56   thorpej int
   2154   1.57   mycroft sys_umask(p, v, retval)
   2155   1.31       cgd 	struct proc *p;
   2156   1.56   thorpej 	void *v;
   2157   1.56   thorpej 	register_t *retval;
   2158   1.56   thorpej {
   2159   1.57   mycroft 	struct sys_umask_args /* {
   2160  1.103   mycroft 		syscallarg(mode_t) newmask;
   2161   1.56   thorpej 	} */ *uap = v;
   2162   1.31       cgd 	register struct filedesc *fdp;
   2163   1.31       cgd 
   2164   1.31       cgd 	fdp = p->p_fd;
   2165   1.31       cgd 	*retval = fdp->fd_cmask;
   2166   1.35       cgd 	fdp->fd_cmask = SCARG(uap, newmask) & ALLPERMS;
   2167   1.31       cgd 	return (0);
   2168   1.31       cgd }
   2169   1.31       cgd 
   2170   1.31       cgd /*
   2171   1.31       cgd  * Void all references to file by ripping underlying filesystem
   2172   1.31       cgd  * away from vnode.
   2173   1.31       cgd  */
   2174   1.31       cgd /* ARGSUSED */
   2175   1.63  christos int
   2176   1.57   mycroft sys_revoke(p, v, retval)
   2177   1.31       cgd 	struct proc *p;
   2178   1.56   thorpej 	void *v;
   2179   1.56   thorpej 	register_t *retval;
   2180   1.56   thorpej {
   2181   1.57   mycroft 	register struct sys_revoke_args /* {
   2182   1.74       cgd 		syscallarg(const char *) path;
   2183   1.56   thorpej 	} */ *uap = v;
   2184   1.31       cgd 	register struct vnode *vp;
   2185   1.31       cgd 	struct vattr vattr;
   2186   1.31       cgd 	int error;
   2187   1.31       cgd 	struct nameidata nd;
   2188   1.31       cgd 
   2189   1.35       cgd 	NDINIT(&nd, LOOKUP, FOLLOW, UIO_USERSPACE, SCARG(uap, path), p);
   2190   1.63  christos 	if ((error = namei(&nd)) != 0)
   2191   1.31       cgd 		return (error);
   2192   1.31       cgd 	vp = nd.ni_vp;
   2193   1.31       cgd 	if (vp->v_type != VCHR && vp->v_type != VBLK) {
   2194   1.31       cgd 		error = EINVAL;
   2195   1.31       cgd 		goto out;
   2196   1.31       cgd 	}
   2197   1.63  christos 	if ((error = VOP_GETATTR(vp, &vattr, p->p_ucred, p)) != 0)
   2198   1.31       cgd 		goto out;
   2199   1.31       cgd 	if (p->p_ucred->cr_uid != vattr.va_uid &&
   2200   1.93     enami 	    (error = suser(p->p_ucred, &p->p_acflag)) != 0)
   2201   1.31       cgd 		goto out;
   2202   1.31       cgd 	if (vp->v_usecount > 1 || (vp->v_flag & VALIASED))
   2203   1.31       cgd 		vgoneall(vp);
   2204   1.31       cgd out:
   2205   1.31       cgd 	vrele(vp);
   2206   1.31       cgd 	return (error);
   2207   1.31       cgd }
   2208   1.31       cgd 
   2209   1.31       cgd /*
   2210   1.31       cgd  * Convert a user file descriptor to a kernel file entry.
   2211   1.31       cgd  */
   2212   1.60   mycroft int
   2213   1.62   mycroft getvnode(fdp, fd, fpp)
   2214   1.31       cgd 	struct filedesc *fdp;
   2215   1.60   mycroft 	int fd;
   2216   1.31       cgd 	struct file **fpp;
   2217   1.31       cgd {
   2218   1.60   mycroft 	struct vnode *vp;
   2219   1.31       cgd 	struct file *fp;
   2220   1.31       cgd 
   2221   1.31       cgd 	if ((u_int)fd >= fdp->fd_nfiles ||
   2222   1.31       cgd 	    (fp = fdp->fd_ofiles[fd]) == NULL)
   2223   1.31       cgd 		return (EBADF);
   2224   1.31       cgd 	if (fp->f_type != DTYPE_VNODE)
   2225   1.31       cgd 		return (EINVAL);
   2226   1.60   mycroft 	vp = (struct vnode *)fp->f_data;
   2227   1.60   mycroft 	if (vp->v_type == VBAD)
   2228   1.60   mycroft 		return (EBADF);
   2229   1.31       cgd 	*fpp = fp;
   2230   1.31       cgd 	return (0);
   2231   1.31       cgd }
   2232