NetBSD/sys/kern/vfs_lookup.c

718 lines
20 KiB
C
Raw Normal View History

/* $NetBSD: vfs_lookup.c,v 1.25 1997/10/30 22:47:06 enami Exp $ */
1994-05-17 08:21:49 +04:00
/*
1994-06-08 15:28:29 +04:00
* Copyright (c) 1982, 1986, 1989, 1993
* The Regents of the University of California. All rights reserved.
1994-05-17 08:21:49 +04:00
* (c) UNIX System Laboratories, Inc.
* All or some portions of this file are derived from material licensed
* to the University of California by American Telephone and Telegraph
* Co. or Unix System Laboratories, Inc. and are reproduced herein with
* the permission of UNIX System Laboratories, Inc.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by the University of
* California, Berkeley and its contributors.
* 4. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
1994-12-14 22:41:23 +03:00
* @(#)vfs_lookup.c 8.6 (Berkeley) 11/21/94
1994-05-17 08:21:49 +04:00
*/
#include <sys/param.h>
1995-03-08 04:20:50 +03:00
#include <sys/systm.h>
1994-05-17 08:21:49 +04:00
#include <sys/syslimits.h>
#include <sys/time.h>
#include <sys/namei.h>
#include <sys/vnode.h>
#include <sys/mount.h>
#include <sys/errno.h>
#include <sys/malloc.h>
#include <sys/filedesc.h>
#include <sys/proc.h>
1994-06-08 15:28:29 +04:00
1994-05-17 08:21:49 +04:00
#ifdef KTRACE
#include <sys/ktrace.h>
#endif
/*
* Convert a pathname into a pointer to a locked inode.
*
* The FOLLOW flag is set when symbolic links are to be followed
* when they occur at the end of the name translation process.
* Symbolic links are always followed for all other pathname
* components other than the last.
*
* The segflg defines whether the name is to be copied from user
* space or kernel space.
*
* Overall outline of namei:
*
* copy in name
* get starting directory
* while (!done && !error) {
* call lookup to search path.
* if symbolic link, massage name in buffer and continue
* }
*/
1994-06-08 15:28:29 +04:00
int
namei(ndp)
1994-05-17 08:21:49 +04:00
register struct nameidata *ndp;
{
register struct filedesc *fdp; /* pointer to file descriptor state */
register char *cp; /* pointer into pathname argument */
register struct vnode *dp; /* the directory we are searching */
struct iovec aiov; /* uio for reading symbolic links */
struct uio auio;
int error, linklen;
1994-06-08 15:28:29 +04:00
struct componentname *cnp = &ndp->ni_cnd;
1994-05-17 08:21:49 +04:00
1994-06-08 15:28:29 +04:00
ndp->ni_cnd.cn_cred = ndp->ni_cnd.cn_proc->p_ucred;
#ifdef DIAGNOSTIC
if (!cnp->cn_cred || !cnp->cn_proc)
panic ("namei: bad cred/proc");
if (cnp->cn_nameiop & (~OPMASK))
panic ("namei: nameiop contaminated with flags");
if (cnp->cn_flags & OPMASK)
panic ("namei: flags contaminated with nameiops");
#endif
fdp = cnp->cn_proc->p_fd;
1994-05-17 08:21:49 +04:00
/*
* Get a buffer for the name to be translated, and copy the
* name into the buffer.
*/
1994-06-08 15:28:29 +04:00
if ((cnp->cn_flags & HASBUF) == 0)
MALLOC(cnp->cn_pnbuf, caddr_t, MAXPATHLEN, M_NAMEI, M_WAITOK);
1994-05-17 08:21:49 +04:00
if (ndp->ni_segflg == UIO_SYSSPACE)
1994-06-08 15:28:29 +04:00
error = copystr(ndp->ni_dirp, cnp->cn_pnbuf,
1994-05-17 08:21:49 +04:00
MAXPATHLEN, &ndp->ni_pathlen);
else
1994-06-08 15:28:29 +04:00
error = copyinstr(ndp->ni_dirp, cnp->cn_pnbuf,
1994-05-17 08:21:49 +04:00
MAXPATHLEN, &ndp->ni_pathlen);
/*
* POSIX.1 requirement: "" is not a valid file name.
*/
if (!error && ndp->ni_pathlen == 1)
error = ENOENT;
1994-05-17 08:21:49 +04:00
if (error) {
1994-06-08 15:28:29 +04:00
free(cnp->cn_pnbuf, M_NAMEI);
1994-05-17 08:21:49 +04:00
ndp->ni_vp = NULL;
return (error);
}
ndp->ni_loopcnt = 0;
1994-05-17 08:21:49 +04:00
#ifdef KTRACE
1994-06-08 15:28:29 +04:00
if (KTRPOINT(cnp->cn_proc, KTR_NAMEI))
ktrnamei(cnp->cn_proc->p_tracep, cnp->cn_pnbuf);
1994-05-17 08:21:49 +04:00
#endif
/*
* Get starting point for the translation.
*/
if ((ndp->ni_rootdir = fdp->fd_rdir) == NULL)
ndp->ni_rootdir = rootvnode;
/*
* Check if starting from root directory or current directory.
*/
if (cnp->cn_pnbuf[0] == '/') {
dp = ndp->ni_rootdir;
VREF(dp);
} else {
dp = fdp->fd_cdir;
VREF(dp);
}
1994-05-17 08:21:49 +04:00
for (;;) {
1994-06-08 15:28:29 +04:00
cnp->cn_nameptr = cnp->cn_pnbuf;
1994-05-17 08:21:49 +04:00
ndp->ni_startdir = dp;
1996-02-04 05:17:43 +03:00
if ((error = lookup(ndp)) != 0) {
1994-06-08 15:28:29 +04:00
FREE(cnp->cn_pnbuf, M_NAMEI);
1994-05-17 08:21:49 +04:00
return (error);
}
/*
* Check for symbolic link
*/
1994-06-08 15:28:29 +04:00
if ((cnp->cn_flags & ISSYMLINK) == 0) {
if ((cnp->cn_flags & (SAVENAME | SAVESTART)) == 0)
FREE(cnp->cn_pnbuf, M_NAMEI);
1994-05-17 08:21:49 +04:00
else
1994-06-08 15:28:29 +04:00
cnp->cn_flags |= HASBUF;
1994-05-17 08:21:49 +04:00
return (0);
}
1994-06-08 15:28:29 +04:00
if ((cnp->cn_flags & LOCKPARENT) && ndp->ni_pathlen == 1)
1994-05-17 08:21:49 +04:00
VOP_UNLOCK(ndp->ni_dvp);
if (ndp->ni_loopcnt++ >= MAXSYMLINKS) {
error = ELOOP;
break;
}
if (ndp->ni_vp->v_mount->mnt_flag & MNT_SYMPERM) {
error = VOP_ACCESS(ndp->ni_vp, VEXEC, cnp->cn_cred,
cnp->cn_proc);
if (error != 0)
break;
}
1994-05-17 08:21:49 +04:00
if (ndp->ni_pathlen > 1)
MALLOC(cp, char *, MAXPATHLEN, M_NAMEI, M_WAITOK);
else
1994-06-08 15:28:29 +04:00
cp = cnp->cn_pnbuf;
1994-05-17 08:21:49 +04:00
aiov.iov_base = cp;
aiov.iov_len = MAXPATHLEN;
auio.uio_iov = &aiov;
auio.uio_iovcnt = 1;
auio.uio_offset = 0;
auio.uio_rw = UIO_READ;
auio.uio_segflg = UIO_SYSSPACE;
auio.uio_procp = (struct proc *)0;
auio.uio_resid = MAXPATHLEN;
1996-02-04 05:17:43 +03:00
error = VOP_READLINK(ndp->ni_vp, &auio, cnp->cn_cred);
if (error) {
badlink:
1994-05-17 08:21:49 +04:00
if (ndp->ni_pathlen > 1)
FREE(cp, M_NAMEI);
1994-05-17 08:21:49 +04:00
break;
}
linklen = MAXPATHLEN - auio.uio_resid;
if (linklen == 0) {
error = ENOENT;
goto badlink;
}
1994-05-17 08:21:49 +04:00
if (linklen + ndp->ni_pathlen >= MAXPATHLEN) {
error = ENAMETOOLONG;
goto badlink;
1994-05-17 08:21:49 +04:00
}
if (ndp->ni_pathlen > 1) {
bcopy(ndp->ni_next, cp + linklen, ndp->ni_pathlen);
1994-06-08 15:28:29 +04:00
FREE(cnp->cn_pnbuf, M_NAMEI);
cnp->cn_pnbuf = cp;
1994-05-17 08:21:49 +04:00
} else
1994-06-08 15:28:29 +04:00
cnp->cn_pnbuf[linklen] = '\0';
1994-05-17 08:21:49 +04:00
ndp->ni_pathlen += linklen;
vput(ndp->ni_vp);
dp = ndp->ni_dvp;
/*
* Check if root directory should replace current directory.
*/
if (cnp->cn_pnbuf[0] == '/') {
vrele(dp);
dp = ndp->ni_rootdir;
VREF(dp);
}
1994-05-17 08:21:49 +04:00
}
1994-06-08 15:28:29 +04:00
FREE(cnp->cn_pnbuf, M_NAMEI);
1994-05-17 08:21:49 +04:00
vrele(ndp->ni_dvp);
vput(ndp->ni_vp);
ndp->ni_vp = NULL;
return (error);
}
/*
* Search a pathname.
* This is a very central and rather complicated routine.
*
* The pathname is pointed to by ni_ptr and is of length ni_pathlen.
* The starting directory is taken from ni_startdir. The pathname is
* descended until done, or a symbolic link is encountered. The variable
* ni_more is clear if the path is completed; it is set to one if a
* symbolic link needing interpretation is encountered.
*
* The flag argument is LOOKUP, CREATE, RENAME, or DELETE depending on
* whether the name is to be looked up, created, renamed, or deleted.
* When CREATE, RENAME, or DELETE is specified, information usable in
* creating, renaming, or deleting a directory entry may be calculated.
* If flag has LOCKPARENT or'ed into it, the parent directory is returned
* locked. If flag has WANTPARENT or'ed into it, the parent directory is
* returned unlocked. Otherwise the parent directory is not returned. If
* the target of the pathname exists and LOCKLEAF is or'ed into the flag
* the target is returned locked, otherwise it is returned unlocked.
* When creating or renaming and LOCKPARENT is specified, the target may not
* be ".". When deleting and LOCKPARENT is specified, the target may be ".".
*
* Overall outline of lookup:
*
* dirloop:
* identify next component of name at ndp->ni_ptr
* handle degenerate case where name is null string
* if .. and crossing mount points and on mounted filesys, find parent
* call VOP_LOOKUP routine for next component name
* directory vnode returned in ni_dvp, unlocked unless LOCKPARENT set
* component vnode returned in ni_vp (if it exists), locked.
* if result vnode is mounted on and crossing mount points,
* find mounted on vnode
* if more components of name, do next level at dirloop
* return the answer in ni_vp, locked if LOCKLEAF set
* if LOCKPARENT set, return locked parent in ni_dvp
* if WANTPARENT set, return unlocked parent in ni_dvp
*/
1994-06-08 15:28:29 +04:00
int
lookup(ndp)
1994-05-17 08:21:49 +04:00
register struct nameidata *ndp;
{
register const char *cp; /* pointer into pathname argument */
1994-05-17 08:21:49 +04:00
register struct vnode *dp = 0; /* the directory we are searching */
struct vnode *tdp; /* saved dp */
struct mount *mp; /* mount table entry */
int docache; /* == 0 do not cache last component */
int wantparent; /* 1 => wantparent or lockparent flag */
1994-06-08 15:28:29 +04:00
int rdonly; /* lookup read-only flag bit */
1994-05-17 08:21:49 +04:00
int error = 0;
int slashes;
1994-06-08 15:28:29 +04:00
struct componentname *cnp = &ndp->ni_cnd;
1994-05-17 08:21:49 +04:00
/*
* Setup: break out flag bits into variables.
*/
1994-06-08 15:28:29 +04:00
wantparent = cnp->cn_flags & (LOCKPARENT | WANTPARENT);
docache = (cnp->cn_flags & NOCACHE) ^ NOCACHE;
if (cnp->cn_nameiop == DELETE ||
(wantparent && cnp->cn_nameiop != CREATE))
1994-05-17 08:21:49 +04:00
docache = 0;
1994-06-08 15:28:29 +04:00
rdonly = cnp->cn_flags & RDONLY;
1994-05-17 08:21:49 +04:00
ndp->ni_dvp = NULL;
1994-06-08 15:28:29 +04:00
cnp->cn_flags &= ~ISSYMLINK;
1994-05-17 08:21:49 +04:00
dp = ndp->ni_startdir;
ndp->ni_startdir = NULLVP;
VOP_LOCK(dp);
/*
* If we have a leading string of slashes, remove them, and just make
* sure the current node is a directory.
*/
cp = cnp->cn_nameptr;
if (*cp == '/') {
do {
cp++;
} while (*cp == '/');
ndp->ni_pathlen -= cp - cnp->cn_nameptr;
cnp->cn_nameptr = cp;
if (dp->v_type != VDIR) {
error = ENOTDIR;
goto bad;
}
/*
* If we've exhausted the path name, then just return the
* current node. If the caller requested the parent node (i.e.
* it's a CREATE, DELETE, or RENAME), and we don't have one
* (because this is the root directory), then we must fail.
*/
if (cnp->cn_nameptr[0] == '\0') {
if (ndp->ni_dvp == NULL && wantparent) {
error = EISDIR;
goto bad;
}
ndp->ni_vp = dp;
cnp->cn_flags |= ISLASTCN;
goto terminal;
}
}
1994-05-17 08:21:49 +04:00
dirloop:
/*
* Search a new directory.
*
1994-06-08 15:28:29 +04:00
* The cn_hash value is for use by vfs_cache.
1994-05-17 08:21:49 +04:00
* The last component of the filename is left accessible via
1994-06-08 15:28:29 +04:00
* cnp->cn_nameptr for callers that need the name. Callers needing
1994-05-17 08:21:49 +04:00
* the name set the SAVENAME flag. When done, they assume
* responsibility for freeing the pathname buffer.
*/
1994-06-08 15:28:29 +04:00
cnp->cn_consume = 0;
cnp->cn_hash = 0;
for (cp = cnp->cn_nameptr; *cp != '\0' && *cp != '/'; cp++)
1994-06-08 15:28:29 +04:00
cnp->cn_hash += (unsigned char)*cp;
cnp->cn_namelen = cp - cnp->cn_nameptr;
if (cnp->cn_namelen > NAME_MAX) {
1994-05-17 08:21:49 +04:00
error = ENAMETOOLONG;
goto bad;
}
#ifdef NAMEI_DIAGNOSTIC
{ char c = *cp;
*cp = '\0';
1996-10-13 06:32:29 +04:00
printf("{%s}: ", cnp->cn_nameptr);
1994-05-17 08:21:49 +04:00
*cp = c; }
#endif
1994-06-08 15:28:29 +04:00
ndp->ni_pathlen -= cnp->cn_namelen;
1994-05-17 08:21:49 +04:00
ndp->ni_next = cp;
/*
* If this component is followed by a slash, then move the pointer to
* the next component forward, and remember that this component must be
* a directory.
*/
if (*cp == '/') {
do {
cp++;
} while (*cp == '/');
slashes = cp - ndp->ni_next;
ndp->ni_pathlen -= slashes;
ndp->ni_next = cp;
cnp->cn_flags |= REQUIREDIR;
} else {
slashes = 0;
cnp->cn_flags &= ~REQUIREDIR;
}
/*
* We do special processing on the last component, whether or not it's
* a directory. Cache all intervening lookups, but not the final one.
*/
if (*cp == '\0') {
if (docache)
cnp->cn_flags |= MAKEENTRY;
else
cnp->cn_flags &= ~MAKEENTRY;
cnp->cn_flags |= ISLASTCN;
} else {
cnp->cn_flags |= MAKEENTRY;
cnp->cn_flags &= ~ISLASTCN;
}
1994-06-08 15:28:29 +04:00
if (cnp->cn_namelen == 2 &&
cnp->cn_nameptr[1] == '.' && cnp->cn_nameptr[0] == '.')
cnp->cn_flags |= ISDOTDOT;
else
cnp->cn_flags &= ~ISDOTDOT;
1994-05-17 08:21:49 +04:00
/*
* Handle "..": two special cases.
* 1. If at root directory (e.g. after chroot)
1994-06-08 15:28:29 +04:00
* or at absolute root directory
1994-05-17 08:21:49 +04:00
* then ignore it so can't get out.
* 2. If this vnode is the root of a mounted
* filesystem, then replace it with the
* vnode which was mounted on so we take the
* .. in the other file system.
*/
1994-06-08 15:28:29 +04:00
if (cnp->cn_flags & ISDOTDOT) {
1994-05-17 08:21:49 +04:00
for (;;) {
1994-06-08 15:28:29 +04:00
if (dp == ndp->ni_rootdir || dp == rootvnode) {
1994-05-17 08:21:49 +04:00
ndp->ni_dvp = dp;
ndp->ni_vp = dp;
VREF(dp);
goto nextname;
}
if ((dp->v_flag & VROOT) == 0 ||
1994-06-08 15:28:29 +04:00
(cnp->cn_flags & NOCROSSMOUNT))
1994-05-17 08:21:49 +04:00
break;
tdp = dp;
dp = dp->v_mount->mnt_vnodecovered;
vput(tdp);
VREF(dp);
VOP_LOCK(dp);
}
}
/*
* We now have a segment name to search for, and a directory to search.
*/
1994-06-08 15:28:29 +04:00
unionlookup:
ndp->ni_dvp = dp;
1996-02-04 05:17:43 +03:00
if ((error = VOP_LOOKUP(dp, &ndp->ni_vp, cnp)) != 0) {
1994-05-17 08:21:49 +04:00
#ifdef DIAGNOSTIC
if (ndp->ni_vp != NULL)
panic("leaf should be empty");
#endif
#ifdef NAMEI_DIAGNOSTIC
1996-10-13 06:32:29 +04:00
printf("not found\n");
1994-05-17 08:21:49 +04:00
#endif
1994-06-08 15:28:29 +04:00
if ((error == ENOENT) &&
1994-05-17 08:21:49 +04:00
(dp->v_flag & VROOT) &&
(dp->v_mount->mnt_flag & MNT_UNION)) {
tdp = dp;
dp = dp->v_mount->mnt_vnodecovered;
vput(tdp);
VREF(dp);
VOP_LOCK(dp);
1994-06-08 15:28:29 +04:00
goto unionlookup;
1994-05-17 08:21:49 +04:00
}
1994-06-08 15:28:29 +04:00
1994-05-17 08:21:49 +04:00
if (error != EJUSTRETURN)
goto bad;
/*
* If this was not the last component, or there were trailing
* slashes, then the name must exist.
*/
if (cnp->cn_flags & REQUIREDIR) {
error = ENOENT;
goto bad;
}
1994-05-17 08:21:49 +04:00
/*
* If creating and at end of pathname, then can consider
* allowing file to be created.
*/
1994-06-08 15:28:29 +04:00
if (rdonly || (ndp->ni_dvp->v_mount->mnt_flag & MNT_RDONLY)) {
1994-05-17 08:21:49 +04:00
error = EROFS;
goto bad;
}
/*
* We return with ni_vp NULL to indicate that the entry
* doesn't currently exist, leaving a pointer to the
* (possibly locked) directory inode in ndp->ni_dvp.
*/
1994-06-08 15:28:29 +04:00
if (cnp->cn_flags & SAVESTART) {
1994-05-17 08:21:49 +04:00
ndp->ni_startdir = ndp->ni_dvp;
VREF(ndp->ni_startdir);
}
return (0);
}
#ifdef NAMEI_DIAGNOSTIC
1996-10-13 06:32:29 +04:00
printf("found\n");
1994-05-17 08:21:49 +04:00
#endif
1994-06-08 15:28:29 +04:00
/*
* Take into account any additional components consumed by the
* underlying filesystem. This will include any trailing slashes after
* the last component consumed.
1994-06-08 15:28:29 +04:00
*/
if (cnp->cn_consume > 0) {
ndp->ni_pathlen -= cnp->cn_consume - slashes;
ndp->ni_next += cnp->cn_consume - slashes;
1994-06-08 15:28:29 +04:00
cnp->cn_consume = 0;
if (ndp->ni_next[0] == '\0')
cnp->cn_flags |= ISLASTCN;
1994-06-08 15:28:29 +04:00
}
1994-05-17 08:21:49 +04:00
dp = ndp->ni_vp;
/*
* Check to see if the vnode has been mounted on;
* if so find the root of the mounted file system.
*/
while (dp->v_type == VDIR && (mp = dp->v_mountedhere) &&
1994-06-08 15:28:29 +04:00
(cnp->cn_flags & NOCROSSMOUNT) == 0) {
if (mp->mnt_flag & MNT_MLOCK) {
1994-05-17 08:21:49 +04:00
mp->mnt_flag |= MNT_MWAIT;
1994-06-08 15:28:29 +04:00
sleep((caddr_t)mp, PVFS);
continue;
1994-05-17 08:21:49 +04:00
}
1996-02-04 05:17:43 +03:00
if ((error = VFS_ROOT(dp->v_mountedhere, &tdp)) != 0)
1994-05-17 08:21:49 +04:00
goto bad2;
vput(dp);
ndp->ni_vp = dp = tdp;
}
1994-12-14 22:41:23 +03:00
/*
* Check for symbolic link. Back up over any slashes that we skipped,
* as we will need them again.
1994-12-14 22:41:23 +03:00
*/
if ((dp->v_type == VLNK) && (cnp->cn_flags & (FOLLOW|REQUIREDIR))) {
ndp->ni_pathlen += slashes;
ndp->ni_next -= slashes;
1994-12-14 22:41:23 +03:00
cnp->cn_flags |= ISSYMLINK;
return (0);
}
/*
* Check for directory, if the component was followed by a series of
* slashes.
*/
if ((dp->v_type != VDIR) && (cnp->cn_flags & REQUIREDIR)) {
error = ENOTDIR;
goto bad2;
}
1994-05-17 08:21:49 +04:00
nextname:
/*
* Not a symbolic link. If this was not the last component, then
* continue at the next component, else return.
1994-05-17 08:21:49 +04:00
*/
if (!(cnp->cn_flags & ISLASTCN)) {
1994-06-08 15:28:29 +04:00
cnp->cn_nameptr = ndp->ni_next;
1994-05-17 08:21:49 +04:00
vrele(ndp->ni_dvp);
goto dirloop;
}
terminal:
1994-05-17 08:21:49 +04:00
/*
* Check for read-only file systems.
*/
1994-06-08 15:28:29 +04:00
if (cnp->cn_nameiop == DELETE || cnp->cn_nameiop == RENAME) {
1994-05-17 08:21:49 +04:00
/*
* Disallow directory write attempts on read-only
* file systems.
*/
1994-06-08 15:28:29 +04:00
if (rdonly || (dp->v_mount->mnt_flag & MNT_RDONLY) ||
(wantparent &&
(ndp->ni_dvp->v_mount->mnt_flag & MNT_RDONLY))) {
1994-05-17 08:21:49 +04:00
error = EROFS;
goto bad2;
}
}
if (ndp->ni_dvp != NULL) {
if (cnp->cn_flags & SAVESTART) {
ndp->ni_startdir = ndp->ni_dvp;
VREF(ndp->ni_startdir);
}
if (!wantparent)
vrele(ndp->ni_dvp);
1994-05-17 08:21:49 +04:00
}
1994-06-08 15:28:29 +04:00
if ((cnp->cn_flags & LOCKLEAF) == 0)
1994-05-17 08:21:49 +04:00
VOP_UNLOCK(dp);
return (0);
bad2:
if ((cnp->cn_flags & LOCKPARENT) && (cnp->cn_flags & ISLASTCN))
1994-05-17 08:21:49 +04:00
VOP_UNLOCK(ndp->ni_dvp);
vrele(ndp->ni_dvp);
bad:
vput(dp);
ndp->ni_vp = NULL;
return (error);
}
1994-06-08 15:28:29 +04:00
/*
* Reacquire a path name component.
*/
int
relookup(dvp, vpp, cnp)
struct vnode *dvp, **vpp;
struct componentname *cnp;
{
register struct vnode *dp = 0; /* the directory we are searching */
int docache; /* == 0 do not cache last component */
int wantparent; /* 1 => wantparent or lockparent flag */
int rdonly; /* lookup read-only flag bit */
int error = 0;
#ifdef NAMEI_DIAGNOSTIC
int newhash; /* DEBUG: check name hash */
char *cp; /* DEBUG: check name ptr/len */
#endif
/*
* Setup: break out flag bits into variables.
*/
wantparent = cnp->cn_flags & (LOCKPARENT|WANTPARENT);
docache = (cnp->cn_flags & NOCACHE) ^ NOCACHE;
if (cnp->cn_nameiop == DELETE ||
(wantparent && cnp->cn_nameiop != CREATE))
docache = 0;
rdonly = cnp->cn_flags & RDONLY;
cnp->cn_flags &= ~ISSYMLINK;
dp = dvp;
VOP_LOCK(dp);
/* dirloop: */
/*
* Search a new directory.
*
* The cn_hash value is for use by vfs_cache.
* The last component of the filename is left accessible via
* cnp->cn_nameptr for callers that need the name. Callers needing
* the name set the SAVENAME flag. When done, they assume
* responsibility for freeing the pathname buffer.
*/
#ifdef NAMEI_DIAGNOSTIC
for (newhash = 0, cp = cnp->cn_nameptr; *cp != 0 && *cp != '/'; cp++)
newhash += (unsigned char)*cp;
if (newhash != cnp->cn_hash)
panic("relookup: bad hash");
if (cnp->cn_namelen != cp - cnp->cn_nameptr)
panic ("relookup: bad len");
if (*cp != 0)
panic("relookup: not last component");
1996-10-13 06:32:29 +04:00
printf("{%s}: ", cnp->cn_nameptr);
1994-06-08 15:28:29 +04:00
#endif
/*
* Check for degenerate name (e.g. / or "")
* which is a way of talking about a directory,
* e.g. like "/." or ".".
*/
if (cnp->cn_nameptr[0] == '\0')
panic("relookup: null name");
1994-06-08 15:28:29 +04:00
if (cnp->cn_flags & ISDOTDOT)
panic ("relookup: lookup on dot-dot");
/*
* We now have a segment name to search for, and a directory to search.
*/
1996-02-04 05:17:43 +03:00
if ((error = VOP_LOOKUP(dp, vpp, cnp)) != 0) {
1994-06-08 15:28:29 +04:00
#ifdef DIAGNOSTIC
if (*vpp != NULL)
panic("leaf should be empty");
#endif
if (error != EJUSTRETURN)
goto bad;
/*
* If creating and at end of pathname, then can consider
* allowing file to be created.
*/
if (rdonly || (dvp->v_mount->mnt_flag & MNT_RDONLY)) {
error = EROFS;
goto bad;
}
/* ASSERT(dvp == ndp->ni_startdir) */
if (cnp->cn_flags & SAVESTART)
VREF(dvp);
/*
* We return with ni_vp NULL to indicate that the entry
* doesn't currently exist, leaving a pointer to the
* (possibly locked) directory inode in ndp->ni_dvp.
*/
return (0);
}
dp = *vpp;
#ifdef DIAGNOSTIC
/*
* Check for symbolic link
*/
if (dp->v_type == VLNK && (cnp->cn_flags & FOLLOW))
panic ("relookup: symlink found.\n");
#endif
/*
* Check for read-only file systems.
*/
if (cnp->cn_nameiop == DELETE || cnp->cn_nameiop == RENAME) {
/*
* Disallow directory write attempts on read-only
* file systems.
*/
if (rdonly || (dp->v_mount->mnt_flag & MNT_RDONLY) ||
(wantparent &&
(dvp->v_mount->mnt_flag & MNT_RDONLY))) {
error = EROFS;
goto bad2;
}
}
/* ASSERT(dvp == ndp->ni_startdir) */
if (cnp->cn_flags & SAVESTART)
VREF(dvp);
if (!wantparent)
vrele(dvp);
if ((cnp->cn_flags & LOCKLEAF) == 0)
VOP_UNLOCK(dp);
return (0);
bad2:
if ((cnp->cn_flags & LOCKPARENT) && (cnp->cn_flags & ISLASTCN))
VOP_UNLOCK(dvp);
vrele(dvp);
bad:
vput(dp);
*vpp = NULL;
return (error);
}