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