xref: /freebsd/sys/kern/vfs_lookup.c (revision 6186fd1857626de0f7cb1a9e4dff19082f9ebb11)
1 /*-
2  * Copyright (c) 1982, 1986, 1989, 1993
3  *	The Regents of the University of California.  All rights reserved.
4  * (c) UNIX System Laboratories, Inc.
5  * All or some portions of this file are derived from material licensed
6  * to the University of California by American Telephone and Telegraph
7  * Co. or Unix System Laboratories, Inc. and are reproduced herein with
8  * the permission of UNIX System Laboratories, Inc.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions
12  * are met:
13  * 1. Redistributions of source code must retain the above copyright
14  *    notice, this list of conditions and the following disclaimer.
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in the
17  *    documentation and/or other materials provided with the distribution.
18  * 4. Neither the name of the University nor the names of its contributors
19  *    may be used to endorse or promote products derived from this software
20  *    without specific prior written permission.
21  *
22  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32  * SUCH DAMAGE.
33  *
34  *	@(#)vfs_lookup.c	8.4 (Berkeley) 2/16/94
35  */
36 
37 #include <sys/cdefs.h>
38 __FBSDID("$FreeBSD$");
39 
40 #include "opt_capsicum.h"
41 #include "opt_ktrace.h"
42 
43 #include <sys/param.h>
44 #include <sys/systm.h>
45 #include <sys/kernel.h>
46 #include <sys/capsicum.h>
47 #include <sys/fcntl.h>
48 #include <sys/jail.h>
49 #include <sys/lock.h>
50 #include <sys/mutex.h>
51 #include <sys/namei.h>
52 #include <sys/vnode.h>
53 #include <sys/mount.h>
54 #include <sys/filedesc.h>
55 #include <sys/proc.h>
56 #include <sys/sdt.h>
57 #include <sys/syscallsubr.h>
58 #include <sys/sysctl.h>
59 #ifdef KTRACE
60 #include <sys/ktrace.h>
61 #endif
62 
63 #include <security/audit/audit.h>
64 #include <security/mac/mac_framework.h>
65 
66 #include <vm/uma.h>
67 
68 #define	NAMEI_DIAGNOSTIC 1
69 #undef NAMEI_DIAGNOSTIC
70 
71 SDT_PROVIDER_DECLARE(vfs);
72 SDT_PROBE_DEFINE3(vfs, namei, lookup, entry, "struct vnode *", "char *",
73     "unsigned long");
74 SDT_PROBE_DEFINE2(vfs, namei, lookup, return, "int", "struct vnode *");
75 
76 /*
77  * Allocation zone for namei
78  */
79 uma_zone_t namei_zone;
80 /*
81  * Placeholder vnode for mp traversal
82  */
83 static struct vnode *vp_crossmp;
84 
85 static void
86 nameiinit(void *dummy __unused)
87 {
88 
89 	namei_zone = uma_zcreate("NAMEI", MAXPATHLEN, NULL, NULL, NULL, NULL,
90 	    UMA_ALIGN_PTR, 0);
91 	getnewvnode("crossmp", NULL, &dead_vnodeops, &vp_crossmp);
92 	vn_lock(vp_crossmp, LK_EXCLUSIVE);
93 	VN_LOCK_ASHARE(vp_crossmp);
94 	VOP_UNLOCK(vp_crossmp, 0);
95 }
96 SYSINIT(vfs, SI_SUB_VFS, SI_ORDER_SECOND, nameiinit, NULL);
97 
98 static int lookup_shared = 1;
99 SYSCTL_INT(_vfs, OID_AUTO, lookup_shared, CTLFLAG_RWTUN, &lookup_shared, 0,
100     "Enables/Disables shared locks for path name translation");
101 
102 /*
103  * Convert a pathname into a pointer to a locked vnode.
104  *
105  * The FOLLOW flag is set when symbolic links are to be followed
106  * when they occur at the end of the name translation process.
107  * Symbolic links are always followed for all other pathname
108  * components other than the last.
109  *
110  * The segflg defines whether the name is to be copied from user
111  * space or kernel space.
112  *
113  * Overall outline of namei:
114  *
115  *	copy in name
116  *	get starting directory
117  *	while (!done && !error) {
118  *		call lookup to search path.
119  *		if symbolic link, massage name in buffer and continue
120  *	}
121  */
122 static void
123 namei_cleanup_cnp(struct componentname *cnp)
124 {
125 	uma_zfree(namei_zone, cnp->cn_pnbuf);
126 #ifdef DIAGNOSTIC
127 	cnp->cn_pnbuf = NULL;
128 	cnp->cn_nameptr = NULL;
129 #endif
130 }
131 
132 int
133 namei(struct nameidata *ndp)
134 {
135 	struct filedesc *fdp;	/* pointer to file descriptor state */
136 	char *cp;		/* pointer into pathname argument */
137 	struct vnode *dp;	/* the directory we are searching */
138 	struct iovec aiov;		/* uio for reading symbolic links */
139 	struct uio auio;
140 	int error, linklen;
141 	struct componentname *cnp = &ndp->ni_cnd;
142 	struct thread *td = cnp->cn_thread;
143 	struct proc *p = td->td_proc;
144 
145 	ndp->ni_cnd.cn_cred = ndp->ni_cnd.cn_thread->td_ucred;
146 	KASSERT(cnp->cn_cred && p, ("namei: bad cred/proc"));
147 	KASSERT((cnp->cn_nameiop & (~OPMASK)) == 0,
148 	    ("namei: nameiop contaminated with flags"));
149 	KASSERT((cnp->cn_flags & OPMASK) == 0,
150 	    ("namei: flags contaminated with nameiops"));
151 	if (!lookup_shared)
152 		cnp->cn_flags &= ~LOCKSHARED;
153 	fdp = p->p_fd;
154 
155 	/* We will set this ourselves if we need it. */
156 	cnp->cn_flags &= ~TRAILINGSLASH;
157 
158 	/*
159 	 * Get a buffer for the name to be translated, and copy the
160 	 * name into the buffer.
161 	 */
162 	if ((cnp->cn_flags & HASBUF) == 0)
163 		cnp->cn_pnbuf = uma_zalloc(namei_zone, M_WAITOK);
164 	if (ndp->ni_segflg == UIO_SYSSPACE)
165 		error = copystr(ndp->ni_dirp, cnp->cn_pnbuf,
166 			    MAXPATHLEN, (size_t *)&ndp->ni_pathlen);
167 	else
168 		error = copyinstr(ndp->ni_dirp, cnp->cn_pnbuf,
169 			    MAXPATHLEN, (size_t *)&ndp->ni_pathlen);
170 
171 	/*
172 	 * Don't allow empty pathnames.
173 	 */
174 	if (!error && *cnp->cn_pnbuf == '\0')
175 		error = ENOENT;
176 
177 #ifdef CAPABILITY_MODE
178 	/*
179 	 * In capability mode, lookups must be "strictly relative" (i.e.
180 	 * not an absolute path, and not containing '..' components) to
181 	 * a real file descriptor, not the pseudo-descriptor AT_FDCWD.
182 	 */
183 	if (error == 0 && IN_CAPABILITY_MODE(td) &&
184 	    (cnp->cn_flags & NOCAPCHECK) == 0) {
185 		ndp->ni_strictrelative = 1;
186 		if (ndp->ni_dirfd == AT_FDCWD) {
187 #ifdef KTRACE
188 			if (KTRPOINT(td, KTR_CAPFAIL))
189 				ktrcapfail(CAPFAIL_LOOKUP, NULL, NULL);
190 #endif
191 			error = ECAPMODE;
192 		}
193 	}
194 #endif
195 	if (error) {
196 		namei_cleanup_cnp(cnp);
197 		ndp->ni_vp = NULL;
198 		return (error);
199 	}
200 	ndp->ni_loopcnt = 0;
201 #ifdef KTRACE
202 	if (KTRPOINT(td, KTR_NAMEI)) {
203 		KASSERT(cnp->cn_thread == curthread,
204 		    ("namei not using curthread"));
205 		ktrnamei(cnp->cn_pnbuf);
206 	}
207 #endif
208 	/*
209 	 * Get starting point for the translation.
210 	 */
211 	FILEDESC_SLOCK(fdp);
212 	ndp->ni_rootdir = fdp->fd_rdir;
213 	ndp->ni_topdir = fdp->fd_jdir;
214 
215 	/*
216 	 * If we are auditing the kernel pathname, save the user pathname.
217 	 */
218 	if (cnp->cn_flags & AUDITVNODE1)
219 		AUDIT_ARG_UPATH1(td, ndp->ni_dirfd, cnp->cn_pnbuf);
220 	if (cnp->cn_flags & AUDITVNODE2)
221 		AUDIT_ARG_UPATH2(td, ndp->ni_dirfd, cnp->cn_pnbuf);
222 
223 	dp = NULL;
224 	if (cnp->cn_pnbuf[0] != '/') {
225 		if (ndp->ni_startdir != NULL) {
226 			dp = ndp->ni_startdir;
227 			error = 0;
228 		} else if (ndp->ni_dirfd != AT_FDCWD) {
229 			cap_rights_t rights;
230 
231 			rights = ndp->ni_rightsneeded;
232 			cap_rights_set(&rights, CAP_LOOKUP);
233 
234 			if (cnp->cn_flags & AUDITVNODE1)
235 				AUDIT_ARG_ATFD1(ndp->ni_dirfd);
236 			if (cnp->cn_flags & AUDITVNODE2)
237 				AUDIT_ARG_ATFD2(ndp->ni_dirfd);
238 			error = fgetvp_rights(td, ndp->ni_dirfd,
239 			    &rights, &ndp->ni_filecaps, &dp);
240 #ifdef CAPABILITIES
241 			/*
242 			 * If file descriptor doesn't have all rights,
243 			 * all lookups relative to it must also be
244 			 * strictly relative.
245 			 */
246 			CAP_ALL(&rights);
247 			if (!cap_rights_contains(&ndp->ni_filecaps.fc_rights,
248 			    &rights) ||
249 			    ndp->ni_filecaps.fc_fcntls != CAP_FCNTL_ALL ||
250 			    ndp->ni_filecaps.fc_nioctls != -1) {
251 				ndp->ni_strictrelative = 1;
252 			}
253 #endif
254 		}
255 		if (error != 0 || dp != NULL) {
256 			FILEDESC_SUNLOCK(fdp);
257 			if (error == 0 && dp->v_type != VDIR) {
258 				vrele(dp);
259 				error = ENOTDIR;
260 			}
261 		}
262 		if (error) {
263 			namei_cleanup_cnp(cnp);
264 			return (error);
265 		}
266 	}
267 	if (dp == NULL) {
268 		dp = fdp->fd_cdir;
269 		VREF(dp);
270 		FILEDESC_SUNLOCK(fdp);
271 		if (ndp->ni_startdir != NULL)
272 			vrele(ndp->ni_startdir);
273 	}
274 	SDT_PROBE(vfs, namei, lookup, entry, dp, cnp->cn_pnbuf,
275 	    cnp->cn_flags, 0, 0);
276 	for (;;) {
277 		/*
278 		 * Check if root directory should replace current directory.
279 		 * Done at start of translation and after symbolic link.
280 		 */
281 		cnp->cn_nameptr = cnp->cn_pnbuf;
282 		if (*(cnp->cn_nameptr) == '/') {
283 			vrele(dp);
284 			if (ndp->ni_strictrelative != 0) {
285 #ifdef KTRACE
286 				if (KTRPOINT(curthread, KTR_CAPFAIL))
287 					ktrcapfail(CAPFAIL_LOOKUP, NULL, NULL);
288 #endif
289 				namei_cleanup_cnp(cnp);
290 				return (ENOTCAPABLE);
291 			}
292 			while (*(cnp->cn_nameptr) == '/') {
293 				cnp->cn_nameptr++;
294 				ndp->ni_pathlen--;
295 			}
296 			dp = ndp->ni_rootdir;
297 			VREF(dp);
298 		}
299 		ndp->ni_startdir = dp;
300 		error = lookup(ndp);
301 		if (error) {
302 			namei_cleanup_cnp(cnp);
303 			SDT_PROBE(vfs, namei, lookup, return, error, NULL, 0,
304 			    0, 0);
305 			return (error);
306 		}
307 		/*
308 		 * If not a symbolic link, we're done.
309 		 */
310 		if ((cnp->cn_flags & ISSYMLINK) == 0) {
311 			if ((cnp->cn_flags & (SAVENAME | SAVESTART)) == 0) {
312 				namei_cleanup_cnp(cnp);
313 			} else
314 				cnp->cn_flags |= HASBUF;
315 
316 			SDT_PROBE(vfs, namei, lookup, return, 0, ndp->ni_vp,
317 			    0, 0, 0);
318 			return (0);
319 		}
320 		if (ndp->ni_loopcnt++ >= MAXSYMLINKS) {
321 			error = ELOOP;
322 			break;
323 		}
324 #ifdef MAC
325 		if ((cnp->cn_flags & NOMACCHECK) == 0) {
326 			error = mac_vnode_check_readlink(td->td_ucred,
327 			    ndp->ni_vp);
328 			if (error)
329 				break;
330 		}
331 #endif
332 		if (ndp->ni_pathlen > 1)
333 			cp = uma_zalloc(namei_zone, M_WAITOK);
334 		else
335 			cp = cnp->cn_pnbuf;
336 		aiov.iov_base = cp;
337 		aiov.iov_len = MAXPATHLEN;
338 		auio.uio_iov = &aiov;
339 		auio.uio_iovcnt = 1;
340 		auio.uio_offset = 0;
341 		auio.uio_rw = UIO_READ;
342 		auio.uio_segflg = UIO_SYSSPACE;
343 		auio.uio_td = td;
344 		auio.uio_resid = MAXPATHLEN;
345 		error = VOP_READLINK(ndp->ni_vp, &auio, cnp->cn_cred);
346 		if (error) {
347 			if (ndp->ni_pathlen > 1)
348 				uma_zfree(namei_zone, cp);
349 			break;
350 		}
351 		linklen = MAXPATHLEN - auio.uio_resid;
352 		if (linklen == 0) {
353 			if (ndp->ni_pathlen > 1)
354 				uma_zfree(namei_zone, cp);
355 			error = ENOENT;
356 			break;
357 		}
358 		if (linklen + ndp->ni_pathlen >= MAXPATHLEN) {
359 			if (ndp->ni_pathlen > 1)
360 				uma_zfree(namei_zone, cp);
361 			error = ENAMETOOLONG;
362 			break;
363 		}
364 		if (ndp->ni_pathlen > 1) {
365 			bcopy(ndp->ni_next, cp + linklen, ndp->ni_pathlen);
366 			uma_zfree(namei_zone, cnp->cn_pnbuf);
367 			cnp->cn_pnbuf = cp;
368 		} else
369 			cnp->cn_pnbuf[linklen] = '\0';
370 		ndp->ni_pathlen += linklen;
371 		vput(ndp->ni_vp);
372 		dp = ndp->ni_dvp;
373 	}
374 	namei_cleanup_cnp(cnp);
375 	vput(ndp->ni_vp);
376 	ndp->ni_vp = NULL;
377 	vrele(ndp->ni_dvp);
378 	SDT_PROBE(vfs, namei, lookup, return, error, NULL, 0, 0, 0);
379 	return (error);
380 }
381 
382 static int
383 compute_cn_lkflags(struct mount *mp, int lkflags, int cnflags)
384 {
385 
386 	if (mp == NULL || ((lkflags & LK_SHARED) &&
387 	    (!(mp->mnt_kern_flag & MNTK_LOOKUP_SHARED) ||
388 	    ((cnflags & ISDOTDOT) &&
389 	    (mp->mnt_kern_flag & MNTK_LOOKUP_EXCL_DOTDOT))))) {
390 		lkflags &= ~LK_SHARED;
391 		lkflags |= LK_EXCLUSIVE;
392 	}
393 	return (lkflags);
394 }
395 
396 static __inline int
397 needs_exclusive_leaf(struct mount *mp, int flags)
398 {
399 
400 	/*
401 	 * Intermediate nodes can use shared locks, we only need to
402 	 * force an exclusive lock for leaf nodes.
403 	 */
404 	if ((flags & (ISLASTCN | LOCKLEAF)) != (ISLASTCN | LOCKLEAF))
405 		return (0);
406 
407 	/* Always use exclusive locks if LOCKSHARED isn't set. */
408 	if (!(flags & LOCKSHARED))
409 		return (1);
410 
411 	/*
412 	 * For lookups during open(), if the mount point supports
413 	 * extended shared operations, then use a shared lock for the
414 	 * leaf node, otherwise use an exclusive lock.
415 	 */
416 	if ((flags & ISOPEN) != 0)
417 		return (!MNT_EXTENDED_SHARED(mp));
418 
419 	/*
420 	 * Lookup requests outside of open() that specify LOCKSHARED
421 	 * only need a shared lock on the leaf vnode.
422 	 */
423 	return (0);
424 }
425 
426 /*
427  * Search a pathname.
428  * This is a very central and rather complicated routine.
429  *
430  * The pathname is pointed to by ni_ptr and is of length ni_pathlen.
431  * The starting directory is taken from ni_startdir. The pathname is
432  * descended until done, or a symbolic link is encountered. The variable
433  * ni_more is clear if the path is completed; it is set to one if a
434  * symbolic link needing interpretation is encountered.
435  *
436  * The flag argument is LOOKUP, CREATE, RENAME, or DELETE depending on
437  * whether the name is to be looked up, created, renamed, or deleted.
438  * When CREATE, RENAME, or DELETE is specified, information usable in
439  * creating, renaming, or deleting a directory entry may be calculated.
440  * If flag has LOCKPARENT or'ed into it, the parent directory is returned
441  * locked. If flag has WANTPARENT or'ed into it, the parent directory is
442  * returned unlocked. Otherwise the parent directory is not returned. If
443  * the target of the pathname exists and LOCKLEAF is or'ed into the flag
444  * the target is returned locked, otherwise it is returned unlocked.
445  * When creating or renaming and LOCKPARENT is specified, the target may not
446  * be ".".  When deleting and LOCKPARENT is specified, the target may be ".".
447  *
448  * Overall outline of lookup:
449  *
450  * dirloop:
451  *	identify next component of name at ndp->ni_ptr
452  *	handle degenerate case where name is null string
453  *	if .. and crossing mount points and on mounted filesys, find parent
454  *	call VOP_LOOKUP routine for next component name
455  *	    directory vnode returned in ni_dvp, unlocked unless LOCKPARENT set
456  *	    component vnode returned in ni_vp (if it exists), locked.
457  *	if result vnode is mounted on and crossing mount points,
458  *	    find mounted on vnode
459  *	if more components of name, do next level at dirloop
460  *	return the answer in ni_vp, locked if LOCKLEAF set
461  *	    if LOCKPARENT set, return locked parent in ni_dvp
462  *	    if WANTPARENT set, return unlocked parent in ni_dvp
463  */
464 int
465 lookup(struct nameidata *ndp)
466 {
467 	char *cp;		/* pointer into pathname argument */
468 	struct vnode *dp = 0;	/* the directory we are searching */
469 	struct vnode *tdp;		/* saved dp */
470 	struct mount *mp;		/* mount table entry */
471 	struct prison *pr;
472 	int docache;			/* == 0 do not cache last component */
473 	int wantparent;			/* 1 => wantparent or lockparent flag */
474 	int rdonly;			/* lookup read-only flag bit */
475 	int error = 0;
476 	int dpunlocked = 0;		/* dp has already been unlocked */
477 	struct componentname *cnp = &ndp->ni_cnd;
478 	int lkflags_save;
479 	int ni_dvp_unlocked;
480 
481 	/*
482 	 * Setup: break out flag bits into variables.
483 	 */
484 	ni_dvp_unlocked = 0;
485 	wantparent = cnp->cn_flags & (LOCKPARENT | WANTPARENT);
486 	KASSERT(cnp->cn_nameiop == LOOKUP || wantparent,
487 	    ("CREATE, DELETE, RENAME require LOCKPARENT or WANTPARENT."));
488 	docache = (cnp->cn_flags & NOCACHE) ^ NOCACHE;
489 	if (cnp->cn_nameiop == DELETE ||
490 	    (wantparent && cnp->cn_nameiop != CREATE &&
491 	     cnp->cn_nameiop != LOOKUP))
492 		docache = 0;
493 	rdonly = cnp->cn_flags & RDONLY;
494 	cnp->cn_flags &= ~ISSYMLINK;
495 	ndp->ni_dvp = NULL;
496 	/*
497 	 * We use shared locks until we hit the parent of the last cn then
498 	 * we adjust based on the requesting flags.
499 	 */
500 	if (lookup_shared)
501 		cnp->cn_lkflags = LK_SHARED;
502 	else
503 		cnp->cn_lkflags = LK_EXCLUSIVE;
504 	dp = ndp->ni_startdir;
505 	ndp->ni_startdir = NULLVP;
506 	vn_lock(dp,
507 	    compute_cn_lkflags(dp->v_mount, cnp->cn_lkflags | LK_RETRY,
508 	    cnp->cn_flags));
509 
510 dirloop:
511 	/*
512 	 * Search a new directory.
513 	 *
514 	 * The last component of the filename is left accessible via
515 	 * cnp->cn_nameptr for callers that need the name. Callers needing
516 	 * the name set the SAVENAME flag. When done, they assume
517 	 * responsibility for freeing the pathname buffer.
518 	 */
519 	cnp->cn_consume = 0;
520 	for (cp = cnp->cn_nameptr; *cp != 0 && *cp != '/'; cp++)
521 		continue;
522 	cnp->cn_namelen = cp - cnp->cn_nameptr;
523 	if (cnp->cn_namelen > NAME_MAX) {
524 		error = ENAMETOOLONG;
525 		goto bad;
526 	}
527 #ifdef NAMEI_DIAGNOSTIC
528 	{ char c = *cp;
529 	*cp = '\0';
530 	printf("{%s}: ", cnp->cn_nameptr);
531 	*cp = c; }
532 #endif
533 	ndp->ni_pathlen -= cnp->cn_namelen;
534 	ndp->ni_next = cp;
535 
536 	/*
537 	 * Replace multiple slashes by a single slash and trailing slashes
538 	 * by a null.  This must be done before VOP_LOOKUP() because some
539 	 * fs's don't know about trailing slashes.  Remember if there were
540 	 * trailing slashes to handle symlinks, existing non-directories
541 	 * and non-existing files that won't be directories specially later.
542 	 */
543 	while (*cp == '/' && (cp[1] == '/' || cp[1] == '\0')) {
544 		cp++;
545 		ndp->ni_pathlen--;
546 		if (*cp == '\0') {
547 			*ndp->ni_next = '\0';
548 			cnp->cn_flags |= TRAILINGSLASH;
549 		}
550 	}
551 	ndp->ni_next = cp;
552 
553 	cnp->cn_flags |= MAKEENTRY;
554 	if (*cp == '\0' && docache == 0)
555 		cnp->cn_flags &= ~MAKEENTRY;
556 	if (cnp->cn_namelen == 2 &&
557 	    cnp->cn_nameptr[1] == '.' && cnp->cn_nameptr[0] == '.')
558 		cnp->cn_flags |= ISDOTDOT;
559 	else
560 		cnp->cn_flags &= ~ISDOTDOT;
561 	if (*ndp->ni_next == 0)
562 		cnp->cn_flags |= ISLASTCN;
563 	else
564 		cnp->cn_flags &= ~ISLASTCN;
565 
566 	if ((cnp->cn_flags & ISLASTCN) != 0 &&
567 	    cnp->cn_namelen == 1 && cnp->cn_nameptr[0] == '.' &&
568 	    (cnp->cn_nameiop == DELETE || cnp->cn_nameiop == RENAME)) {
569 		error = EINVAL;
570 		goto bad;
571 	}
572 
573 	/*
574 	 * Check for degenerate name (e.g. / or "")
575 	 * which is a way of talking about a directory,
576 	 * e.g. like "/." or ".".
577 	 */
578 	if (cnp->cn_nameptr[0] == '\0') {
579 		if (dp->v_type != VDIR) {
580 			error = ENOTDIR;
581 			goto bad;
582 		}
583 		if (cnp->cn_nameiop != LOOKUP) {
584 			error = EISDIR;
585 			goto bad;
586 		}
587 		if (wantparent) {
588 			ndp->ni_dvp = dp;
589 			VREF(dp);
590 		}
591 		ndp->ni_vp = dp;
592 
593 		if (cnp->cn_flags & AUDITVNODE1)
594 			AUDIT_ARG_VNODE1(dp);
595 		else if (cnp->cn_flags & AUDITVNODE2)
596 			AUDIT_ARG_VNODE2(dp);
597 
598 		if (!(cnp->cn_flags & (LOCKPARENT | LOCKLEAF)))
599 			VOP_UNLOCK(dp, 0);
600 		/* XXX This should probably move to the top of function. */
601 		if (cnp->cn_flags & SAVESTART)
602 			panic("lookup: SAVESTART");
603 		goto success;
604 	}
605 
606 	/*
607 	 * Handle "..": five special cases.
608 	 * 0. If doing a capability lookup, return ENOTCAPABLE (this is a
609 	 *    fairly conservative design choice, but it's the only one that we
610 	 *    are satisfied guarantees the property we're looking for).
611 	 * 1. Return an error if this is the last component of
612 	 *    the name and the operation is DELETE or RENAME.
613 	 * 2. If at root directory (e.g. after chroot)
614 	 *    or at absolute root directory
615 	 *    then ignore it so can't get out.
616 	 * 3. If this vnode is the root of a mounted
617 	 *    filesystem, then replace it with the
618 	 *    vnode which was mounted on so we take the
619 	 *    .. in the other filesystem.
620 	 * 4. If the vnode is the top directory of
621 	 *    the jail or chroot, don't let them out.
622 	 */
623 	if (cnp->cn_flags & ISDOTDOT) {
624 		if (ndp->ni_strictrelative != 0) {
625 #ifdef KTRACE
626 			if (KTRPOINT(curthread, KTR_CAPFAIL))
627 				ktrcapfail(CAPFAIL_LOOKUP, NULL, NULL);
628 #endif
629 			error = ENOTCAPABLE;
630 			goto bad;
631 		}
632 		if ((cnp->cn_flags & ISLASTCN) != 0 &&
633 		    (cnp->cn_nameiop == DELETE || cnp->cn_nameiop == RENAME)) {
634 			error = EINVAL;
635 			goto bad;
636 		}
637 		for (;;) {
638 			for (pr = cnp->cn_cred->cr_prison; pr != NULL;
639 			     pr = pr->pr_parent)
640 				if (dp == pr->pr_root)
641 					break;
642 			if (dp == ndp->ni_rootdir ||
643 			    dp == ndp->ni_topdir ||
644 			    dp == rootvnode ||
645 			    pr != NULL ||
646 			    ((dp->v_vflag & VV_ROOT) != 0 &&
647 			     (cnp->cn_flags & NOCROSSMOUNT) != 0)) {
648 				ndp->ni_dvp = dp;
649 				ndp->ni_vp = dp;
650 				VREF(dp);
651 				goto nextname;
652 			}
653 			if ((dp->v_vflag & VV_ROOT) == 0)
654 				break;
655 			if (dp->v_iflag & VI_DOOMED) {	/* forced unmount */
656 				error = ENOENT;
657 				goto bad;
658 			}
659 			tdp = dp;
660 			dp = dp->v_mount->mnt_vnodecovered;
661 			VREF(dp);
662 			vput(tdp);
663 			vn_lock(dp,
664 			    compute_cn_lkflags(dp->v_mount, cnp->cn_lkflags |
665 			    LK_RETRY, ISDOTDOT));
666 		}
667 	}
668 
669 	/*
670 	 * We now have a segment name to search for, and a directory to search.
671 	 */
672 unionlookup:
673 #ifdef MAC
674 	if ((cnp->cn_flags & NOMACCHECK) == 0) {
675 		error = mac_vnode_check_lookup(cnp->cn_thread->td_ucred, dp,
676 		    cnp);
677 		if (error)
678 			goto bad;
679 	}
680 #endif
681 	ndp->ni_dvp = dp;
682 	ndp->ni_vp = NULL;
683 	ASSERT_VOP_LOCKED(dp, "lookup");
684 	/*
685 	 * If we have a shared lock we may need to upgrade the lock for the
686 	 * last operation.
687 	 */
688 	if (dp != vp_crossmp &&
689 	    VOP_ISLOCKED(dp) == LK_SHARED &&
690 	    (cnp->cn_flags & ISLASTCN) && (cnp->cn_flags & LOCKPARENT))
691 		vn_lock(dp, LK_UPGRADE|LK_RETRY);
692 	if ((dp->v_iflag & VI_DOOMED) != 0) {
693 		error = ENOENT;
694 		goto bad;
695 	}
696 	/*
697 	 * If we're looking up the last component and we need an exclusive
698 	 * lock, adjust our lkflags.
699 	 */
700 	if (needs_exclusive_leaf(dp->v_mount, cnp->cn_flags))
701 		cnp->cn_lkflags = LK_EXCLUSIVE;
702 #ifdef NAMEI_DIAGNOSTIC
703 	vprint("lookup in", dp);
704 #endif
705 	lkflags_save = cnp->cn_lkflags;
706 	cnp->cn_lkflags = compute_cn_lkflags(dp->v_mount, cnp->cn_lkflags,
707 	    cnp->cn_flags);
708 	if ((error = VOP_LOOKUP(dp, &ndp->ni_vp, cnp)) != 0) {
709 		cnp->cn_lkflags = lkflags_save;
710 		KASSERT(ndp->ni_vp == NULL, ("leaf should be empty"));
711 #ifdef NAMEI_DIAGNOSTIC
712 		printf("not found\n");
713 #endif
714 		if ((error == ENOENT) &&
715 		    (dp->v_vflag & VV_ROOT) && (dp->v_mount != NULL) &&
716 		    (dp->v_mount->mnt_flag & MNT_UNION)) {
717 			tdp = dp;
718 			dp = dp->v_mount->mnt_vnodecovered;
719 			VREF(dp);
720 			vput(tdp);
721 			vn_lock(dp,
722 			    compute_cn_lkflags(dp->v_mount, cnp->cn_lkflags |
723 			    LK_RETRY, cnp->cn_flags));
724 			goto unionlookup;
725 		}
726 
727 		if (error != EJUSTRETURN)
728 			goto bad;
729 		/*
730 		 * At this point, we know we're at the end of the
731 		 * pathname.  If creating / renaming, we can consider
732 		 * allowing the file or directory to be created / renamed,
733 		 * provided we're not on a read-only filesystem.
734 		 */
735 		if (rdonly) {
736 			error = EROFS;
737 			goto bad;
738 		}
739 		/* trailing slash only allowed for directories */
740 		if ((cnp->cn_flags & TRAILINGSLASH) &&
741 		    !(cnp->cn_flags & WILLBEDIR)) {
742 			error = ENOENT;
743 			goto bad;
744 		}
745 		if ((cnp->cn_flags & LOCKPARENT) == 0)
746 			VOP_UNLOCK(dp, 0);
747 		/*
748 		 * We return with ni_vp NULL to indicate that the entry
749 		 * doesn't currently exist, leaving a pointer to the
750 		 * (possibly locked) directory vnode in ndp->ni_dvp.
751 		 */
752 		if (cnp->cn_flags & SAVESTART) {
753 			ndp->ni_startdir = ndp->ni_dvp;
754 			VREF(ndp->ni_startdir);
755 		}
756 		goto success;
757 	} else
758 		cnp->cn_lkflags = lkflags_save;
759 #ifdef NAMEI_DIAGNOSTIC
760 	printf("found\n");
761 #endif
762 	/*
763 	 * Take into account any additional components consumed by
764 	 * the underlying filesystem.
765 	 */
766 	if (cnp->cn_consume > 0) {
767 		cnp->cn_nameptr += cnp->cn_consume;
768 		ndp->ni_next += cnp->cn_consume;
769 		ndp->ni_pathlen -= cnp->cn_consume;
770 		cnp->cn_consume = 0;
771 	}
772 
773 	dp = ndp->ni_vp;
774 
775 	/*
776 	 * Check to see if the vnode has been mounted on;
777 	 * if so find the root of the mounted filesystem.
778 	 */
779 	while (dp->v_type == VDIR && (mp = dp->v_mountedhere) &&
780 	       (cnp->cn_flags & NOCROSSMOUNT) == 0) {
781 		if (vfs_busy(mp, 0))
782 			continue;
783 		vput(dp);
784 		if (dp != ndp->ni_dvp)
785 			vput(ndp->ni_dvp);
786 		else
787 			vrele(ndp->ni_dvp);
788 		vref(vp_crossmp);
789 		ndp->ni_dvp = vp_crossmp;
790 		error = VFS_ROOT(mp, compute_cn_lkflags(mp, cnp->cn_lkflags,
791 		    cnp->cn_flags), &tdp);
792 		vfs_unbusy(mp);
793 		if (vn_lock(vp_crossmp, LK_SHARED | LK_NOWAIT))
794 			panic("vp_crossmp exclusively locked or reclaimed");
795 		if (error) {
796 			dpunlocked = 1;
797 			goto bad2;
798 		}
799 		ndp->ni_vp = dp = tdp;
800 	}
801 
802 	/*
803 	 * Check for symbolic link
804 	 */
805 	if ((dp->v_type == VLNK) &&
806 	    ((cnp->cn_flags & FOLLOW) || (cnp->cn_flags & TRAILINGSLASH) ||
807 	     *ndp->ni_next == '/')) {
808 		cnp->cn_flags |= ISSYMLINK;
809 		if (dp->v_iflag & VI_DOOMED) {
810 			/*
811 			 * We can't know whether the directory was mounted with
812 			 * NOSYMFOLLOW, so we can't follow safely.
813 			 */
814 			error = ENOENT;
815 			goto bad2;
816 		}
817 		if (dp->v_mount->mnt_flag & MNT_NOSYMFOLLOW) {
818 			error = EACCES;
819 			goto bad2;
820 		}
821 		/*
822 		 * Symlink code always expects an unlocked dvp.
823 		 */
824 		if (ndp->ni_dvp != ndp->ni_vp) {
825 			VOP_UNLOCK(ndp->ni_dvp, 0);
826 			ni_dvp_unlocked = 1;
827 		}
828 		goto success;
829 	}
830 
831 nextname:
832 	/*
833 	 * Not a symbolic link that we will follow.  Continue with the
834 	 * next component if there is any; otherwise, we're done.
835 	 */
836 	KASSERT((cnp->cn_flags & ISLASTCN) || *ndp->ni_next == '/',
837 	    ("lookup: invalid path state."));
838 	if (*ndp->ni_next == '/') {
839 		cnp->cn_nameptr = ndp->ni_next;
840 		while (*cnp->cn_nameptr == '/') {
841 			cnp->cn_nameptr++;
842 			ndp->ni_pathlen--;
843 		}
844 		if (ndp->ni_dvp != dp)
845 			vput(ndp->ni_dvp);
846 		else
847 			vrele(ndp->ni_dvp);
848 		goto dirloop;
849 	}
850 	/*
851 	 * If we're processing a path with a trailing slash,
852 	 * check that the end result is a directory.
853 	 */
854 	if ((cnp->cn_flags & TRAILINGSLASH) && dp->v_type != VDIR) {
855 		error = ENOTDIR;
856 		goto bad2;
857 	}
858 	/*
859 	 * Disallow directory write attempts on read-only filesystems.
860 	 */
861 	if (rdonly &&
862 	    (cnp->cn_nameiop == DELETE || cnp->cn_nameiop == RENAME)) {
863 		error = EROFS;
864 		goto bad2;
865 	}
866 	if (cnp->cn_flags & SAVESTART) {
867 		ndp->ni_startdir = ndp->ni_dvp;
868 		VREF(ndp->ni_startdir);
869 	}
870 	if (!wantparent) {
871 		ni_dvp_unlocked = 2;
872 		if (ndp->ni_dvp != dp)
873 			vput(ndp->ni_dvp);
874 		else
875 			vrele(ndp->ni_dvp);
876 	} else if ((cnp->cn_flags & LOCKPARENT) == 0 && ndp->ni_dvp != dp) {
877 		VOP_UNLOCK(ndp->ni_dvp, 0);
878 		ni_dvp_unlocked = 1;
879 	}
880 
881 	if (cnp->cn_flags & AUDITVNODE1)
882 		AUDIT_ARG_VNODE1(dp);
883 	else if (cnp->cn_flags & AUDITVNODE2)
884 		AUDIT_ARG_VNODE2(dp);
885 
886 	if ((cnp->cn_flags & LOCKLEAF) == 0)
887 		VOP_UNLOCK(dp, 0);
888 success:
889 	/*
890 	 * Because of lookup_shared we may have the vnode shared locked, but
891 	 * the caller may want it to be exclusively locked.
892 	 */
893 	if (needs_exclusive_leaf(dp->v_mount, cnp->cn_flags) &&
894 	    VOP_ISLOCKED(dp) != LK_EXCLUSIVE) {
895 		vn_lock(dp, LK_UPGRADE | LK_RETRY);
896 		if (dp->v_iflag & VI_DOOMED) {
897 			error = ENOENT;
898 			goto bad2;
899 		}
900 	}
901 	return (0);
902 
903 bad2:
904 	if (ni_dvp_unlocked != 2) {
905 		if (dp != ndp->ni_dvp && !ni_dvp_unlocked)
906 			vput(ndp->ni_dvp);
907 		else
908 			vrele(ndp->ni_dvp);
909 	}
910 bad:
911 	if (!dpunlocked)
912 		vput(dp);
913 	ndp->ni_vp = NULL;
914 	return (error);
915 }
916 
917 /*
918  * relookup - lookup a path name component
919  *    Used by lookup to re-acquire things.
920  */
921 int
922 relookup(struct vnode *dvp, struct vnode **vpp, struct componentname *cnp)
923 {
924 	struct vnode *dp = 0;		/* the directory we are searching */
925 	int wantparent;			/* 1 => wantparent or lockparent flag */
926 	int rdonly;			/* lookup read-only flag bit */
927 	int error = 0;
928 
929 	KASSERT(cnp->cn_flags & ISLASTCN,
930 	    ("relookup: Not given last component."));
931 	/*
932 	 * Setup: break out flag bits into variables.
933 	 */
934 	wantparent = cnp->cn_flags & (LOCKPARENT|WANTPARENT);
935 	KASSERT(wantparent, ("relookup: parent not wanted."));
936 	rdonly = cnp->cn_flags & RDONLY;
937 	cnp->cn_flags &= ~ISSYMLINK;
938 	dp = dvp;
939 	cnp->cn_lkflags = LK_EXCLUSIVE;
940 	vn_lock(dp, LK_EXCLUSIVE | LK_RETRY);
941 
942 	/*
943 	 * Search a new directory.
944 	 *
945 	 * The last component of the filename is left accessible via
946 	 * cnp->cn_nameptr for callers that need the name. Callers needing
947 	 * the name set the SAVENAME flag. When done, they assume
948 	 * responsibility for freeing the pathname buffer.
949 	 */
950 #ifdef NAMEI_DIAGNOSTIC
951 	printf("{%s}: ", cnp->cn_nameptr);
952 #endif
953 
954 	/*
955 	 * Check for "" which represents the root directory after slash
956 	 * removal.
957 	 */
958 	if (cnp->cn_nameptr[0] == '\0') {
959 		/*
960 		 * Support only LOOKUP for "/" because lookup()
961 		 * can't succeed for CREATE, DELETE and RENAME.
962 		 */
963 		KASSERT(cnp->cn_nameiop == LOOKUP, ("nameiop must be LOOKUP"));
964 		KASSERT(dp->v_type == VDIR, ("dp is not a directory"));
965 
966 		if (!(cnp->cn_flags & LOCKLEAF))
967 			VOP_UNLOCK(dp, 0);
968 		*vpp = dp;
969 		/* XXX This should probably move to the top of function. */
970 		if (cnp->cn_flags & SAVESTART)
971 			panic("lookup: SAVESTART");
972 		return (0);
973 	}
974 
975 	if (cnp->cn_flags & ISDOTDOT)
976 		panic ("relookup: lookup on dot-dot");
977 
978 	/*
979 	 * We now have a segment name to search for, and a directory to search.
980 	 */
981 #ifdef NAMEI_DIAGNOSTIC
982 	vprint("search in:", dp);
983 #endif
984 	if ((error = VOP_LOOKUP(dp, vpp, cnp)) != 0) {
985 		KASSERT(*vpp == NULL, ("leaf should be empty"));
986 		if (error != EJUSTRETURN)
987 			goto bad;
988 		/*
989 		 * If creating and at end of pathname, then can consider
990 		 * allowing file to be created.
991 		 */
992 		if (rdonly) {
993 			error = EROFS;
994 			goto bad;
995 		}
996 		/* ASSERT(dvp == ndp->ni_startdir) */
997 		if (cnp->cn_flags & SAVESTART)
998 			VREF(dvp);
999 		if ((cnp->cn_flags & LOCKPARENT) == 0)
1000 			VOP_UNLOCK(dp, 0);
1001 		/*
1002 		 * We return with ni_vp NULL to indicate that the entry
1003 		 * doesn't currently exist, leaving a pointer to the
1004 		 * (possibly locked) directory vnode in ndp->ni_dvp.
1005 		 */
1006 		return (0);
1007 	}
1008 
1009 	dp = *vpp;
1010 
1011 	/*
1012 	 * Disallow directory write attempts on read-only filesystems.
1013 	 */
1014 	if (rdonly &&
1015 	    (cnp->cn_nameiop == DELETE || cnp->cn_nameiop == RENAME)) {
1016 		if (dvp == dp)
1017 			vrele(dvp);
1018 		else
1019 			vput(dvp);
1020 		error = EROFS;
1021 		goto bad;
1022 	}
1023 	/*
1024 	 * Set the parent lock/ref state to the requested state.
1025 	 */
1026 	if ((cnp->cn_flags & LOCKPARENT) == 0 && dvp != dp) {
1027 		if (wantparent)
1028 			VOP_UNLOCK(dvp, 0);
1029 		else
1030 			vput(dvp);
1031 	} else if (!wantparent)
1032 		vrele(dvp);
1033 	/*
1034 	 * Check for symbolic link
1035 	 */
1036 	KASSERT(dp->v_type != VLNK || !(cnp->cn_flags & FOLLOW),
1037 	    ("relookup: symlink found.\n"));
1038 
1039 	/* ASSERT(dvp == ndp->ni_startdir) */
1040 	if (cnp->cn_flags & SAVESTART)
1041 		VREF(dvp);
1042 
1043 	if ((cnp->cn_flags & LOCKLEAF) == 0)
1044 		VOP_UNLOCK(dp, 0);
1045 	return (0);
1046 bad:
1047 	vput(dp);
1048 	*vpp = NULL;
1049 	return (error);
1050 }
1051 
1052 void
1053 NDINIT_ALL(struct nameidata *ndp, u_long op, u_long flags, enum uio_seg segflg,
1054     const char *namep, int dirfd, struct vnode *startdir, cap_rights_t *rightsp,
1055     struct thread *td)
1056 {
1057 
1058 	ndp->ni_cnd.cn_nameiop = op;
1059 	ndp->ni_cnd.cn_flags = flags;
1060 	ndp->ni_segflg = segflg;
1061 	ndp->ni_dirp = namep;
1062 	ndp->ni_dirfd = dirfd;
1063 	ndp->ni_startdir = startdir;
1064 	ndp->ni_strictrelative = 0;
1065 	if (rightsp != NULL)
1066 		ndp->ni_rightsneeded = *rightsp;
1067 	else
1068 		cap_rights_init(&ndp->ni_rightsneeded);
1069 	filecaps_init(&ndp->ni_filecaps);
1070 	ndp->ni_cnd.cn_thread = td;
1071 }
1072 
1073 /*
1074  * Free data allocated by namei(); see namei(9) for details.
1075  */
1076 void
1077 NDFREE(struct nameidata *ndp, const u_int flags)
1078 {
1079 	int unlock_dvp;
1080 	int unlock_vp;
1081 
1082 	unlock_dvp = 0;
1083 	unlock_vp = 0;
1084 
1085 	if (!(flags & NDF_NO_FREE_PNBUF) &&
1086 	    (ndp->ni_cnd.cn_flags & HASBUF)) {
1087 		uma_zfree(namei_zone, ndp->ni_cnd.cn_pnbuf);
1088 		ndp->ni_cnd.cn_flags &= ~HASBUF;
1089 	}
1090 	if (!(flags & NDF_NO_VP_UNLOCK) &&
1091 	    (ndp->ni_cnd.cn_flags & LOCKLEAF) && ndp->ni_vp)
1092 		unlock_vp = 1;
1093 	if (!(flags & NDF_NO_VP_RELE) && ndp->ni_vp) {
1094 		if (unlock_vp) {
1095 			vput(ndp->ni_vp);
1096 			unlock_vp = 0;
1097 		} else
1098 			vrele(ndp->ni_vp);
1099 		ndp->ni_vp = NULL;
1100 	}
1101 	if (unlock_vp)
1102 		VOP_UNLOCK(ndp->ni_vp, 0);
1103 	if (!(flags & NDF_NO_DVP_UNLOCK) &&
1104 	    (ndp->ni_cnd.cn_flags & LOCKPARENT) &&
1105 	    ndp->ni_dvp != ndp->ni_vp)
1106 		unlock_dvp = 1;
1107 	if (!(flags & NDF_NO_DVP_RELE) &&
1108 	    (ndp->ni_cnd.cn_flags & (LOCKPARENT|WANTPARENT))) {
1109 		if (unlock_dvp) {
1110 			vput(ndp->ni_dvp);
1111 			unlock_dvp = 0;
1112 		} else
1113 			vrele(ndp->ni_dvp);
1114 		ndp->ni_dvp = NULL;
1115 	}
1116 	if (unlock_dvp)
1117 		VOP_UNLOCK(ndp->ni_dvp, 0);
1118 	if (!(flags & NDF_NO_STARTDIR_RELE) &&
1119 	    (ndp->ni_cnd.cn_flags & SAVESTART)) {
1120 		vrele(ndp->ni_startdir);
1121 		ndp->ni_startdir = NULL;
1122 	}
1123 }
1124 
1125 /*
1126  * Determine if there is a suitable alternate filename under the specified
1127  * prefix for the specified path.  If the create flag is set, then the
1128  * alternate prefix will be used so long as the parent directory exists.
1129  * This is used by the various compatiblity ABIs so that Linux binaries prefer
1130  * files under /compat/linux for example.  The chosen path (whether under
1131  * the prefix or under /) is returned in a kernel malloc'd buffer pointed
1132  * to by pathbuf.  The caller is responsible for free'ing the buffer from
1133  * the M_TEMP bucket if one is returned.
1134  */
1135 int
1136 kern_alternate_path(struct thread *td, const char *prefix, const char *path,
1137     enum uio_seg pathseg, char **pathbuf, int create, int dirfd)
1138 {
1139 	struct nameidata nd, ndroot;
1140 	char *ptr, *buf, *cp;
1141 	size_t len, sz;
1142 	int error;
1143 
1144 	buf = (char *) malloc(MAXPATHLEN, M_TEMP, M_WAITOK);
1145 	*pathbuf = buf;
1146 
1147 	/* Copy the prefix into the new pathname as a starting point. */
1148 	len = strlcpy(buf, prefix, MAXPATHLEN);
1149 	if (len >= MAXPATHLEN) {
1150 		*pathbuf = NULL;
1151 		free(buf, M_TEMP);
1152 		return (EINVAL);
1153 	}
1154 	sz = MAXPATHLEN - len;
1155 	ptr = buf + len;
1156 
1157 	/* Append the filename to the prefix. */
1158 	if (pathseg == UIO_SYSSPACE)
1159 		error = copystr(path, ptr, sz, &len);
1160 	else
1161 		error = copyinstr(path, ptr, sz, &len);
1162 
1163 	if (error) {
1164 		*pathbuf = NULL;
1165 		free(buf, M_TEMP);
1166 		return (error);
1167 	}
1168 
1169 	/* Only use a prefix with absolute pathnames. */
1170 	if (*ptr != '/') {
1171 		error = EINVAL;
1172 		goto keeporig;
1173 	}
1174 
1175 	if (dirfd != AT_FDCWD) {
1176 		/*
1177 		 * We want the original because the "prefix" is
1178 		 * included in the already opened dirfd.
1179 		 */
1180 		bcopy(ptr, buf, len);
1181 		return (0);
1182 	}
1183 
1184 	/*
1185 	 * We know that there is a / somewhere in this pathname.
1186 	 * Search backwards for it, to find the file's parent dir
1187 	 * to see if it exists in the alternate tree. If it does,
1188 	 * and we want to create a file (cflag is set). We don't
1189 	 * need to worry about the root comparison in this case.
1190 	 */
1191 
1192 	if (create) {
1193 		for (cp = &ptr[len] - 1; *cp != '/'; cp--);
1194 		*cp = '\0';
1195 
1196 		NDINIT(&nd, LOOKUP, FOLLOW, UIO_SYSSPACE, buf, td);
1197 		error = namei(&nd);
1198 		*cp = '/';
1199 		if (error != 0)
1200 			goto keeporig;
1201 	} else {
1202 		NDINIT(&nd, LOOKUP, FOLLOW, UIO_SYSSPACE, buf, td);
1203 
1204 		error = namei(&nd);
1205 		if (error != 0)
1206 			goto keeporig;
1207 
1208 		/*
1209 		 * We now compare the vnode of the prefix to the one
1210 		 * vnode asked. If they resolve to be the same, then we
1211 		 * ignore the match so that the real root gets used.
1212 		 * This avoids the problem of traversing "../.." to find the
1213 		 * root directory and never finding it, because "/" resolves
1214 		 * to the emulation root directory. This is expensive :-(
1215 		 */
1216 		NDINIT(&ndroot, LOOKUP, FOLLOW, UIO_SYSSPACE, prefix,
1217 		    td);
1218 
1219 		/* We shouldn't ever get an error from this namei(). */
1220 		error = namei(&ndroot);
1221 		if (error == 0) {
1222 			if (nd.ni_vp == ndroot.ni_vp)
1223 				error = ENOENT;
1224 
1225 			NDFREE(&ndroot, NDF_ONLY_PNBUF);
1226 			vrele(ndroot.ni_vp);
1227 		}
1228 	}
1229 
1230 	NDFREE(&nd, NDF_ONLY_PNBUF);
1231 	vrele(nd.ni_vp);
1232 
1233 keeporig:
1234 	/* If there was an error, use the original path name. */
1235 	if (error)
1236 		bcopy(ptr, buf, len);
1237 	return (error);
1238 }
1239