xref: /freebsd/sys/kern/vfs_lookup.c (revision 931983ee0864079c5f1be0a6b3b9ef097d84ffba)
1 /*-
2  * SPDX-License-Identifier: BSD-3-Clause
3  *
4  * Copyright (c) 1982, 1986, 1989, 1993
5  *	The Regents of the University of California.  All rights reserved.
6  * (c) UNIX System Laboratories, Inc.
7  * All or some portions of this file are derived from material licensed
8  * to the University of California by American Telephone and Telegraph
9  * Co. or Unix System Laboratories, Inc. and are reproduced herein with
10  * the permission of UNIX System Laboratories, Inc.
11  *
12  * Redistribution and use in source and binary forms, with or without
13  * modification, are permitted provided that the following conditions
14  * are met:
15  * 1. Redistributions of source code must retain the above copyright
16  *    notice, this list of conditions and the following disclaimer.
17  * 2. Redistributions in binary form must reproduce the above copyright
18  *    notice, this list of conditions and the following disclaimer in the
19  *    documentation and/or other materials provided with the distribution.
20  * 3. Neither the name of the University nor the names of its contributors
21  *    may be used to endorse or promote products derived from this software
22  *    without specific prior written permission.
23  *
24  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34  * SUCH DAMAGE.
35  *
36  *	@(#)vfs_lookup.c	8.4 (Berkeley) 2/16/94
37  */
38 
39 #include <sys/cdefs.h>
40 __FBSDID("$FreeBSD$");
41 
42 #include "opt_capsicum.h"
43 #include "opt_ktrace.h"
44 
45 #include <sys/param.h>
46 #include <sys/systm.h>
47 #include <sys/dirent.h>
48 #include <sys/kernel.h>
49 #include <sys/capsicum.h>
50 #include <sys/fcntl.h>
51 #include <sys/jail.h>
52 #include <sys/lock.h>
53 #include <sys/mutex.h>
54 #include <sys/namei.h>
55 #include <sys/vnode.h>
56 #include <sys/mount.h>
57 #include <sys/filedesc.h>
58 #include <sys/proc.h>
59 #include <sys/sdt.h>
60 #include <sys/syscallsubr.h>
61 #include <sys/sysctl.h>
62 #ifdef KTRACE
63 #include <sys/ktrace.h>
64 #endif
65 #ifdef INVARIANTS
66 #include <machine/_inttypes.h>
67 #endif
68 
69 #include <security/audit/audit.h>
70 #include <security/mac/mac_framework.h>
71 
72 #include <vm/uma.h>
73 
74 #define	NAMEI_DIAGNOSTIC 1
75 #undef NAMEI_DIAGNOSTIC
76 
77 SDT_PROVIDER_DEFINE(vfs);
78 SDT_PROBE_DEFINE4(vfs, namei, lookup, entry, "struct vnode *", "char *",
79     "unsigned long", "bool");
80 SDT_PROBE_DEFINE4(vfs, namei, lookup, return, "int", "struct vnode *", "bool",
81     "struct nameidata");
82 
83 /* Allocation zone for namei. */
84 uma_zone_t namei_zone;
85 
86 /* Placeholder vnode for mp traversal. */
87 static struct vnode *vp_crossmp;
88 
89 static int
90 crossmp_vop_islocked(struct vop_islocked_args *ap)
91 {
92 
93 	return (LK_SHARED);
94 }
95 
96 static int
97 crossmp_vop_lock1(struct vop_lock1_args *ap)
98 {
99 	struct vnode *vp;
100 	struct lock *lk __diagused;
101 	const char *file __diagused;
102 	int flags, line __diagused;
103 
104 	vp = ap->a_vp;
105 	lk = vp->v_vnlock;
106 	flags = ap->a_flags;
107 	file = ap->a_file;
108 	line = ap->a_line;
109 
110 	if ((flags & LK_SHARED) == 0)
111 		panic("invalid lock request for crossmp");
112 
113 	WITNESS_CHECKORDER(&lk->lock_object, LOP_NEWORDER, file, line,
114 	    flags & LK_INTERLOCK ? &VI_MTX(vp)->lock_object : NULL);
115 	WITNESS_LOCK(&lk->lock_object, 0, file, line);
116 	if ((flags & LK_INTERLOCK) != 0)
117 		VI_UNLOCK(vp);
118 	LOCK_LOG_LOCK("SLOCK", &lk->lock_object, 0, 0, ap->a_file, line);
119 	return (0);
120 }
121 
122 static int
123 crossmp_vop_unlock(struct vop_unlock_args *ap)
124 {
125 	struct vnode *vp;
126 	struct lock *lk __diagused;
127 
128 	vp = ap->a_vp;
129 	lk = vp->v_vnlock;
130 
131 	WITNESS_UNLOCK(&lk->lock_object, 0, LOCK_FILE, LOCK_LINE);
132 	LOCK_LOG_LOCK("SUNLOCK", &lk->lock_object, 0, 0, LOCK_FILE,
133 	    LOCK_LINE);
134 	return (0);
135 }
136 
137 static struct vop_vector crossmp_vnodeops = {
138 	.vop_default =		&default_vnodeops,
139 	.vop_islocked =		crossmp_vop_islocked,
140 	.vop_lock1 =		crossmp_vop_lock1,
141 	.vop_unlock =		crossmp_vop_unlock,
142 };
143 /*
144  * VFS_VOP_VECTOR_REGISTER(crossmp_vnodeops) is not used here since the vnode
145  * gets allocated early. See nameiinit for the direct call below.
146  */
147 
148 struct nameicap_tracker {
149 	struct vnode *dp;
150 	TAILQ_ENTRY(nameicap_tracker) nm_link;
151 };
152 
153 /* Zone for cap mode tracker elements used for dotdot capability checks. */
154 MALLOC_DEFINE(M_NAMEITRACKER, "namei_tracker", "namei tracking for dotdot");
155 
156 static void
157 nameiinit(void *dummy __unused)
158 {
159 
160 	namei_zone = uma_zcreate("NAMEI", MAXPATHLEN, NULL, NULL, NULL, NULL,
161 	    UMA_ALIGN_PTR, 0);
162 	vfs_vector_op_register(&crossmp_vnodeops);
163 	getnewvnode("crossmp", NULL, &crossmp_vnodeops, &vp_crossmp);
164 }
165 SYSINIT(vfs, SI_SUB_VFS, SI_ORDER_SECOND, nameiinit, NULL);
166 
167 static int lookup_cap_dotdot = 1;
168 SYSCTL_INT(_vfs, OID_AUTO, lookup_cap_dotdot, CTLFLAG_RWTUN,
169     &lookup_cap_dotdot, 0,
170     "enables \"..\" components in path lookup in capability mode");
171 static int lookup_cap_dotdot_nonlocal = 1;
172 SYSCTL_INT(_vfs, OID_AUTO, lookup_cap_dotdot_nonlocal, CTLFLAG_RWTUN,
173     &lookup_cap_dotdot_nonlocal, 0,
174     "enables \"..\" components in path lookup in capability mode "
175     "on non-local mount");
176 
177 static void
178 nameicap_tracker_add(struct nameidata *ndp, struct vnode *dp)
179 {
180 	struct nameicap_tracker *nt;
181 
182 	if ((ndp->ni_lcf & NI_LCF_CAP_DOTDOT) == 0 || dp->v_type != VDIR)
183 		return;
184 	nt = TAILQ_LAST(&ndp->ni_cap_tracker, nameicap_tracker_head);
185 	if (nt != NULL && nt->dp == dp)
186 		return;
187 	nt = malloc(sizeof(*nt), M_NAMEITRACKER, M_WAITOK);
188 	vhold(dp);
189 	nt->dp = dp;
190 	TAILQ_INSERT_TAIL(&ndp->ni_cap_tracker, nt, nm_link);
191 }
192 
193 static void
194 nameicap_cleanup_from(struct nameidata *ndp, struct nameicap_tracker *first)
195 {
196 	struct nameicap_tracker *nt, *nt1;
197 
198 	nt = first;
199 	TAILQ_FOREACH_FROM_SAFE(nt, &ndp->ni_cap_tracker, nm_link, nt1) {
200 		TAILQ_REMOVE(&ndp->ni_cap_tracker, nt, nm_link);
201 		vdrop(nt->dp);
202 		free(nt, M_NAMEITRACKER);
203 	}
204 }
205 
206 static void
207 nameicap_cleanup(struct nameidata *ndp)
208 {
209 	KASSERT(TAILQ_EMPTY(&ndp->ni_cap_tracker) ||
210 	    (ndp->ni_lcf & NI_LCF_CAP_DOTDOT) != 0, ("not strictrelative"));
211 	nameicap_cleanup_from(ndp, NULL);
212 }
213 
214 /*
215  * For dotdot lookups in capability mode, only allow the component
216  * lookup to succeed if the resulting directory was already traversed
217  * during the operation.  This catches situations where already
218  * traversed directory is moved to different parent, and then we walk
219  * over it with dotdots.
220  *
221  * Also allow to force failure of dotdot lookups for non-local
222  * filesystems, where external agents might assist local lookups to
223  * escape the compartment.
224  */
225 static int
226 nameicap_check_dotdot(struct nameidata *ndp, struct vnode *dp)
227 {
228 	struct nameicap_tracker *nt;
229 	struct mount *mp;
230 
231 	if (dp == NULL || dp->v_type != VDIR || (ndp->ni_lcf &
232 	    NI_LCF_STRICTRELATIVE) == 0)
233 		return (0);
234 	if ((ndp->ni_lcf & NI_LCF_CAP_DOTDOT) == 0)
235 		return (ENOTCAPABLE);
236 	mp = dp->v_mount;
237 	if (lookup_cap_dotdot_nonlocal == 0 && mp != NULL &&
238 	    (mp->mnt_flag & MNT_LOCAL) == 0)
239 		return (ENOTCAPABLE);
240 	TAILQ_FOREACH_REVERSE(nt, &ndp->ni_cap_tracker, nameicap_tracker_head,
241 	    nm_link) {
242 		if (dp == nt->dp) {
243 			nt = TAILQ_NEXT(nt, nm_link);
244 			if (nt != NULL)
245 				nameicap_cleanup_from(ndp, nt);
246 			return (0);
247 		}
248 	}
249 	return (ENOTCAPABLE);
250 }
251 
252 static void
253 namei_cleanup_cnp(struct componentname *cnp)
254 {
255 
256 	uma_zfree(namei_zone, cnp->cn_pnbuf);
257 #ifdef DIAGNOSTIC
258 	cnp->cn_pnbuf = NULL;
259 	cnp->cn_nameptr = NULL;
260 #endif
261 }
262 
263 static int
264 namei_handle_root(struct nameidata *ndp, struct vnode **dpp)
265 {
266 	struct componentname *cnp;
267 
268 	cnp = &ndp->ni_cnd;
269 	if ((ndp->ni_lcf & NI_LCF_STRICTRELATIVE) != 0) {
270 #ifdef KTRACE
271 		if (KTRPOINT(curthread, KTR_CAPFAIL))
272 			ktrcapfail(CAPFAIL_LOOKUP, NULL, NULL);
273 #endif
274 		return (ENOTCAPABLE);
275 	}
276 	while (*(cnp->cn_nameptr) == '/') {
277 		cnp->cn_nameptr++;
278 		ndp->ni_pathlen--;
279 	}
280 	*dpp = ndp->ni_rootdir;
281 	vrefact(*dpp);
282 	return (0);
283 }
284 
285 static int
286 namei_setup(struct nameidata *ndp, struct vnode **dpp, struct pwd **pwdp)
287 {
288 	struct componentname *cnp;
289 	struct file *dfp;
290 	struct thread *td;
291 	struct pwd *pwd;
292 	cap_rights_t rights;
293 	int error;
294 	bool startdir_used;
295 
296 	cnp = &ndp->ni_cnd;
297 	td = curthread;
298 
299 	startdir_used = false;
300 	*pwdp = NULL;
301 	*dpp = NULL;
302 
303 #ifdef CAPABILITY_MODE
304 	/*
305 	 * In capability mode, lookups must be restricted to happen in
306 	 * the subtree with the root specified by the file descriptor:
307 	 * - The root must be real file descriptor, not the pseudo-descriptor
308 	 *   AT_FDCWD.
309 	 * - The passed path must be relative and not absolute.
310 	 * - If lookup_cap_dotdot is disabled, path must not contain the
311 	 *   '..' components.
312 	 * - If lookup_cap_dotdot is enabled, we verify that all '..'
313 	 *   components lookups result in the directories which were
314 	 *   previously walked by us, which prevents an escape from
315 	 *   the relative root.
316 	 */
317 	if (IN_CAPABILITY_MODE(td) && (cnp->cn_flags & NOCAPCHECK) == 0) {
318 		ndp->ni_lcf |= NI_LCF_STRICTRELATIVE;
319 		ndp->ni_resflags |= NIRES_STRICTREL;
320 		if (ndp->ni_dirfd == AT_FDCWD) {
321 #ifdef KTRACE
322 			if (KTRPOINT(td, KTR_CAPFAIL))
323 				ktrcapfail(CAPFAIL_LOOKUP, NULL, NULL);
324 #endif
325 			return (ECAPMODE);
326 		}
327 	}
328 #endif
329 	error = 0;
330 
331 	/*
332 	 * Get starting point for the translation.
333 	 */
334 	pwd = pwd_hold(td);
335 	/*
336 	 * The reference on ni_rootdir is acquired in the block below to avoid
337 	 * back-to-back atomics for absolute lookups.
338 	 */
339 	ndp->ni_rootdir = pwd->pwd_rdir;
340 	ndp->ni_topdir = pwd->pwd_jdir;
341 
342 	if (cnp->cn_pnbuf[0] == '/') {
343 		ndp->ni_resflags |= NIRES_ABS;
344 		error = namei_handle_root(ndp, dpp);
345 	} else {
346 		if (ndp->ni_startdir != NULL) {
347 			*dpp = ndp->ni_startdir;
348 			startdir_used = true;
349 		} else if (ndp->ni_dirfd == AT_FDCWD) {
350 			*dpp = pwd->pwd_cdir;
351 			vrefact(*dpp);
352 		} else {
353 			rights = *ndp->ni_rightsneeded;
354 			cap_rights_set_one(&rights, CAP_LOOKUP);
355 
356 			if (cnp->cn_flags & AUDITVNODE1)
357 				AUDIT_ARG_ATFD1(ndp->ni_dirfd);
358 			if (cnp->cn_flags & AUDITVNODE2)
359 				AUDIT_ARG_ATFD2(ndp->ni_dirfd);
360 			/*
361 			 * Effectively inlined fgetvp_rights, because
362 			 * we need to inspect the file as well as
363 			 * grabbing the vnode.  No check for O_PATH,
364 			 * files to implement its semantic.
365 			 */
366 			error = fget_cap(td, ndp->ni_dirfd, &rights,
367 			    &dfp, &ndp->ni_filecaps);
368 			if (error != 0) {
369 				/*
370 				 * Preserve the error; it should either be EBADF
371 				 * or capability-related, both of which can be
372 				 * safely returned to the caller.
373 				 */
374 			} else {
375 				if (dfp->f_ops == &badfileops) {
376 					error = EBADF;
377 				} else if (dfp->f_vnode == NULL) {
378 					error = ENOTDIR;
379 				} else {
380 					*dpp = dfp->f_vnode;
381 					vref(*dpp);
382 
383 					if ((dfp->f_flag & FSEARCH) != 0)
384 						cnp->cn_flags |= NOEXECCHECK;
385 				}
386 				fdrop(dfp, td);
387 			}
388 #ifdef CAPABILITIES
389 			/*
390 			 * If file descriptor doesn't have all rights,
391 			 * all lookups relative to it must also be
392 			 * strictly relative.
393 			 */
394 			CAP_ALL(&rights);
395 			if (!cap_rights_contains(&ndp->ni_filecaps.fc_rights,
396 			    &rights) ||
397 			    ndp->ni_filecaps.fc_fcntls != CAP_FCNTL_ALL ||
398 			    ndp->ni_filecaps.fc_nioctls != -1) {
399 				ndp->ni_lcf |= NI_LCF_STRICTRELATIVE;
400 				ndp->ni_resflags |= NIRES_STRICTREL;
401 			}
402 #endif
403 		}
404 		if (error == 0 && (*dpp)->v_type != VDIR &&
405 		    (cnp->cn_pnbuf[0] != '\0' ||
406 		    (cnp->cn_flags & EMPTYPATH) == 0))
407 			error = ENOTDIR;
408 	}
409 	if (error == 0 && (cnp->cn_flags & RBENEATH) != 0) {
410 		if (cnp->cn_pnbuf[0] == '/') {
411 			error = ENOTCAPABLE;
412 		} else if ((ndp->ni_lcf & NI_LCF_STRICTRELATIVE) == 0) {
413 			ndp->ni_lcf |= NI_LCF_STRICTRELATIVE |
414 			    NI_LCF_CAP_DOTDOT;
415 		}
416 	}
417 
418 	/*
419 	 * If we are auditing the kernel pathname, save the user pathname.
420 	 */
421 	if (cnp->cn_flags & AUDITVNODE1)
422 		AUDIT_ARG_UPATH1_VP(td, ndp->ni_rootdir, *dpp, cnp->cn_pnbuf);
423 	if (cnp->cn_flags & AUDITVNODE2)
424 		AUDIT_ARG_UPATH2_VP(td, ndp->ni_rootdir, *dpp, cnp->cn_pnbuf);
425 	if (ndp->ni_startdir != NULL && !startdir_used)
426 		vrele(ndp->ni_startdir);
427 	if (error != 0) {
428 		if (*dpp != NULL)
429 			vrele(*dpp);
430 		pwd_drop(pwd);
431 		return (error);
432 	}
433 	if ((ndp->ni_lcf & NI_LCF_STRICTRELATIVE) != 0 &&
434 	    lookup_cap_dotdot != 0)
435 		ndp->ni_lcf |= NI_LCF_CAP_DOTDOT;
436 	SDT_PROBE4(vfs, namei, lookup, entry, *dpp, cnp->cn_pnbuf,
437 	    cnp->cn_flags, false);
438 	*pwdp = pwd;
439 	return (0);
440 }
441 
442 static int
443 namei_getpath(struct nameidata *ndp)
444 {
445 	struct componentname *cnp;
446 	int error;
447 
448 	cnp = &ndp->ni_cnd;
449 
450 	/*
451 	 * Get a buffer for the name to be translated, and copy the
452 	 * name into the buffer.
453 	 */
454 	cnp->cn_pnbuf = uma_zalloc(namei_zone, M_WAITOK);
455 	if (ndp->ni_segflg == UIO_SYSSPACE) {
456 		error = copystr(ndp->ni_dirp, cnp->cn_pnbuf, MAXPATHLEN,
457 		    &ndp->ni_pathlen);
458 	} else {
459 		error = copyinstr(ndp->ni_dirp, cnp->cn_pnbuf, MAXPATHLEN,
460 		    &ndp->ni_pathlen);
461 	}
462 
463 	if (__predict_false(error != 0))
464 		return (error);
465 
466 	cnp->cn_nameptr = cnp->cn_pnbuf;
467 	return (0);
468 }
469 
470 static int
471 namei_emptypath(struct nameidata *ndp)
472 {
473 	struct componentname *cnp;
474 	struct pwd *pwd;
475 	struct vnode *dp;
476 	int error;
477 
478 	cnp = &ndp->ni_cnd;
479 	MPASS(*cnp->cn_pnbuf == '\0');
480 	MPASS((cnp->cn_flags & EMPTYPATH) != 0);
481 	MPASS((cnp->cn_flags & (LOCKPARENT | WANTPARENT)) == 0);
482 
483 	ndp->ni_resflags |= NIRES_EMPTYPATH;
484 	error = namei_setup(ndp, &dp, &pwd);
485 	if (error != 0) {
486 		namei_cleanup_cnp(cnp);
487 		goto errout;
488 	}
489 
490 	/*
491 	 * Usecount on dp already provided by namei_setup.
492 	 */
493 	ndp->ni_vp = dp;
494 	namei_cleanup_cnp(cnp);
495 	pwd_drop(pwd);
496 	NDVALIDATE(ndp);
497 	if ((cnp->cn_flags & LOCKLEAF) != 0) {
498 		VOP_LOCK(dp, (cnp->cn_flags & LOCKSHARED) != 0 ?
499 		    LK_SHARED : LK_EXCLUSIVE);
500 		if (VN_IS_DOOMED(dp)) {
501 			vput(dp);
502 			error = ENOENT;
503 			goto errout;
504 		}
505 	}
506 	SDT_PROBE4(vfs, namei, lookup, return, 0, ndp->ni_vp, false, ndp);
507 	return (0);
508 
509 errout:
510 	SDT_PROBE4(vfs, namei, lookup, return, error, NULL, false, ndp);
511 	return (error);
512 }
513 
514 static int __noinline
515 namei_follow_link(struct nameidata *ndp)
516 {
517 	char *cp;
518 	struct iovec aiov;
519 	struct uio auio;
520 	struct componentname *cnp;
521 	struct thread *td;
522 	int error, linklen;
523 
524 	error = 0;
525 	cnp = &ndp->ni_cnd;
526 	td = curthread;
527 
528 	if (ndp->ni_loopcnt++ >= MAXSYMLINKS) {
529 		error = ELOOP;
530 		goto out;
531 	}
532 #ifdef MAC
533 	if ((cnp->cn_flags & NOMACCHECK) == 0) {
534 		error = mac_vnode_check_readlink(td->td_ucred, ndp->ni_vp);
535 		if (error != 0)
536 			goto out;
537 	}
538 #endif
539 	if (ndp->ni_pathlen > 1)
540 		cp = uma_zalloc(namei_zone, M_WAITOK);
541 	else
542 		cp = cnp->cn_pnbuf;
543 	aiov.iov_base = cp;
544 	aiov.iov_len = MAXPATHLEN;
545 	auio.uio_iov = &aiov;
546 	auio.uio_iovcnt = 1;
547 	auio.uio_offset = 0;
548 	auio.uio_rw = UIO_READ;
549 	auio.uio_segflg = UIO_SYSSPACE;
550 	auio.uio_td = td;
551 	auio.uio_resid = MAXPATHLEN;
552 	error = VOP_READLINK(ndp->ni_vp, &auio, cnp->cn_cred);
553 	if (error != 0) {
554 		if (ndp->ni_pathlen > 1)
555 			uma_zfree(namei_zone, cp);
556 		goto out;
557 	}
558 	linklen = MAXPATHLEN - auio.uio_resid;
559 	if (linklen == 0) {
560 		if (ndp->ni_pathlen > 1)
561 			uma_zfree(namei_zone, cp);
562 		error = ENOENT;
563 		goto out;
564 	}
565 	if (linklen + ndp->ni_pathlen > MAXPATHLEN) {
566 		if (ndp->ni_pathlen > 1)
567 			uma_zfree(namei_zone, cp);
568 		error = ENAMETOOLONG;
569 		goto out;
570 	}
571 	if (ndp->ni_pathlen > 1) {
572 		bcopy(ndp->ni_next, cp + linklen, ndp->ni_pathlen);
573 		uma_zfree(namei_zone, cnp->cn_pnbuf);
574 		cnp->cn_pnbuf = cp;
575 	} else
576 		cnp->cn_pnbuf[linklen] = '\0';
577 	ndp->ni_pathlen += linklen;
578 out:
579 	return (error);
580 }
581 
582 /*
583  * Convert a pathname into a pointer to a locked vnode.
584  *
585  * The FOLLOW flag is set when symbolic links are to be followed
586  * when they occur at the end of the name translation process.
587  * Symbolic links are always followed for all other pathname
588  * components other than the last.
589  *
590  * The segflg defines whether the name is to be copied from user
591  * space or kernel space.
592  *
593  * Overall outline of namei:
594  *
595  *	copy in name
596  *	get starting directory
597  *	while (!done && !error) {
598  *		call lookup to search path.
599  *		if symbolic link, massage name in buffer and continue
600  *	}
601  */
602 int
603 namei(struct nameidata *ndp)
604 {
605 	struct vnode *dp;	/* the directory we are searching */
606 	struct componentname *cnp;
607 	struct thread *td;
608 	struct pwd *pwd;
609 	int error;
610 	enum cache_fpl_status status;
611 
612 	cnp = &ndp->ni_cnd;
613 	td = curthread;
614 #ifdef INVARIANTS
615 	KASSERT((ndp->ni_debugflags & NAMEI_DBG_CALLED) == 0,
616 	    ("%s: repeated call to namei without NDREINIT", __func__));
617 	KASSERT(ndp->ni_debugflags == NAMEI_DBG_INITED,
618 	    ("%s: bad debugflags %d", __func__, ndp->ni_debugflags));
619 	ndp->ni_debugflags |= NAMEI_DBG_CALLED;
620 	if (ndp->ni_startdir != NULL)
621 		ndp->ni_debugflags |= NAMEI_DBG_HADSTARTDIR;
622 	if (cnp->cn_flags & FAILIFEXISTS) {
623 		KASSERT(cnp->cn_nameiop == CREATE,
624 		    ("%s: FAILIFEXISTS passed for op %d", __func__, cnp->cn_nameiop));
625 		/*
626 		 * The limitation below is to restrict hairy corner cases.
627 		 */
628 		KASSERT((cnp->cn_flags & (LOCKPARENT | LOCKLEAF)) == LOCKPARENT,
629 		    ("%s: FAILIFEXISTS must be passed with LOCKPARENT and without LOCKLEAF",
630 		    __func__));
631 	}
632 	/*
633 	 * For NDVALIDATE.
634 	 *
635 	 * While NDINIT may seem like a more natural place to do it, there are
636 	 * callers which directly modify flags past invoking init.
637 	 */
638 	cnp->cn_origflags = cnp->cn_flags;
639 #endif
640 	ndp->ni_cnd.cn_cred = td->td_ucred;
641 	KASSERT(ndp->ni_resflags == 0, ("%s: garbage in ni_resflags: %x\n",
642 	    __func__, ndp->ni_resflags));
643 	KASSERT(cnp->cn_cred && td->td_proc, ("namei: bad cred/proc"));
644 	KASSERT((cnp->cn_flags & NAMEI_INTERNAL_FLAGS) == 0,
645 	    ("namei: unexpected flags: %" PRIx64 "\n",
646 	    cnp->cn_flags & NAMEI_INTERNAL_FLAGS));
647 	if (cnp->cn_flags & NOCACHE)
648 		KASSERT(cnp->cn_nameiop != LOOKUP,
649 		    ("%s: NOCACHE passed with LOOKUP", __func__));
650 	MPASS(ndp->ni_startdir == NULL || ndp->ni_startdir->v_type == VDIR ||
651 	    ndp->ni_startdir->v_type == VBAD);
652 
653 	ndp->ni_lcf = 0;
654 	ndp->ni_loopcnt = 0;
655 	ndp->ni_vp = NULL;
656 
657 	error = namei_getpath(ndp);
658 	if (__predict_false(error != 0)) {
659 		namei_cleanup_cnp(cnp);
660 		SDT_PROBE4(vfs, namei, lookup, return, error, NULL,
661 		    false, ndp);
662 		return (error);
663 	}
664 
665 #ifdef KTRACE
666 	if (KTRPOINT(td, KTR_NAMEI)) {
667 		ktrnamei(cnp->cn_pnbuf);
668 	}
669 #endif
670 	TSNAMEI(curthread->td_proc->p_pid, cnp->cn_pnbuf);
671 
672 	/*
673 	 * First try looking up the target without locking any vnodes.
674 	 *
675 	 * We may need to start from scratch or pick up where it left off.
676 	 */
677 	error = cache_fplookup(ndp, &status, &pwd);
678 	switch (status) {
679 	case CACHE_FPL_STATUS_UNSET:
680 		__assert_unreachable();
681 		break;
682 	case CACHE_FPL_STATUS_HANDLED:
683 		if (error == 0)
684 			NDVALIDATE(ndp);
685 		return (error);
686 	case CACHE_FPL_STATUS_PARTIAL:
687 		TAILQ_INIT(&ndp->ni_cap_tracker);
688 		dp = ndp->ni_startdir;
689 		break;
690 	case CACHE_FPL_STATUS_DESTROYED:
691 		ndp->ni_loopcnt = 0;
692 		error = namei_getpath(ndp);
693 		if (__predict_false(error != 0)) {
694 			namei_cleanup_cnp(cnp);
695 			return (error);
696 		}
697 		/* FALLTHROUGH */
698 	case CACHE_FPL_STATUS_ABORTED:
699 		TAILQ_INIT(&ndp->ni_cap_tracker);
700 		MPASS(ndp->ni_lcf == 0);
701 		if (*cnp->cn_pnbuf == '\0') {
702 			if ((cnp->cn_flags & EMPTYPATH) != 0) {
703 				return (namei_emptypath(ndp));
704 			}
705 			namei_cleanup_cnp(cnp);
706 			SDT_PROBE4(vfs, namei, lookup, return, ENOENT, NULL,
707 			    false, ndp);
708 			return (ENOENT);
709 		}
710 		error = namei_setup(ndp, &dp, &pwd);
711 		if (error != 0) {
712 			namei_cleanup_cnp(cnp);
713 			return (error);
714 		}
715 		break;
716 	}
717 
718 	/*
719 	 * Locked lookup.
720 	 */
721 	for (;;) {
722 		ndp->ni_startdir = dp;
723 		error = vfs_lookup(ndp);
724 		if (error != 0)
725 			goto out;
726 
727 		/*
728 		 * If not a symbolic link, we're done.
729 		 */
730 		if ((cnp->cn_flags & ISSYMLINK) == 0) {
731 			SDT_PROBE4(vfs, namei, lookup, return, error,
732 			    (error == 0 ? ndp->ni_vp : NULL), false, ndp);
733 			if ((cnp->cn_flags & (SAVENAME | SAVESTART)) == 0) {
734 				namei_cleanup_cnp(cnp);
735 			} else
736 				cnp->cn_flags |= HASBUF;
737 			nameicap_cleanup(ndp);
738 			pwd_drop(pwd);
739 			if (error == 0)
740 				NDVALIDATE(ndp);
741 			return (error);
742 		}
743 		error = namei_follow_link(ndp);
744 		if (error != 0)
745 			break;
746 		vput(ndp->ni_vp);
747 		dp = ndp->ni_dvp;
748 		/*
749 		 * Check if root directory should replace current directory.
750 		 */
751 		cnp->cn_nameptr = cnp->cn_pnbuf;
752 		if (*(cnp->cn_nameptr) == '/') {
753 			vrele(dp);
754 			error = namei_handle_root(ndp, &dp);
755 			if (error != 0)
756 				goto out;
757 		}
758 	}
759 	vput(ndp->ni_vp);
760 	ndp->ni_vp = NULL;
761 	vrele(ndp->ni_dvp);
762 out:
763 	MPASS(error != 0);
764 	SDT_PROBE4(vfs, namei, lookup, return, error, NULL, false, ndp);
765 	namei_cleanup_cnp(cnp);
766 	nameicap_cleanup(ndp);
767 	pwd_drop(pwd);
768 	return (error);
769 }
770 
771 static int
772 compute_cn_lkflags(struct mount *mp, int lkflags, int cnflags)
773 {
774 
775 	if (mp == NULL || ((lkflags & LK_SHARED) &&
776 	    !(mp->mnt_kern_flag & MNTK_LOOKUP_SHARED))) {
777 		lkflags &= ~LK_SHARED;
778 		lkflags |= LK_EXCLUSIVE;
779 	}
780 	lkflags |= LK_NODDLKTREAT;
781 	return (lkflags);
782 }
783 
784 static __inline int
785 needs_exclusive_leaf(struct mount *mp, int flags)
786 {
787 
788 	/*
789 	 * Intermediate nodes can use shared locks, we only need to
790 	 * force an exclusive lock for leaf nodes.
791 	 */
792 	if ((flags & (ISLASTCN | LOCKLEAF)) != (ISLASTCN | LOCKLEAF))
793 		return (0);
794 
795 	/* Always use exclusive locks if LOCKSHARED isn't set. */
796 	if (!(flags & LOCKSHARED))
797 		return (1);
798 
799 	/*
800 	 * For lookups during open(), if the mount point supports
801 	 * extended shared operations, then use a shared lock for the
802 	 * leaf node, otherwise use an exclusive lock.
803 	 */
804 	if ((flags & ISOPEN) != 0)
805 		return (!MNT_EXTENDED_SHARED(mp));
806 
807 	/*
808 	 * Lookup requests outside of open() that specify LOCKSHARED
809 	 * only need a shared lock on the leaf vnode.
810 	 */
811 	return (0);
812 }
813 
814 /*
815  * Various filesystems expect to be able to copy a name component with length
816  * bounded by NAME_MAX into a directory entry buffer of size MAXNAMLEN.  Make
817  * sure that these are the same size.
818  */
819 _Static_assert(MAXNAMLEN == NAME_MAX,
820     "MAXNAMLEN and NAME_MAX have different values");
821 
822 static int __noinline
823 vfs_lookup_degenerate(struct nameidata *ndp, struct vnode *dp, int wantparent)
824 {
825 	struct componentname *cnp;
826 	struct mount *mp;
827 	int error;
828 
829 	cnp = &ndp->ni_cnd;
830 
831 	cnp->cn_flags |= ISLASTCN;
832 
833 	mp = atomic_load_ptr(&dp->v_mount);
834 	if (needs_exclusive_leaf(mp, cnp->cn_flags)) {
835 		cnp->cn_lkflags &= ~LK_SHARED;
836 		cnp->cn_lkflags |= LK_EXCLUSIVE;
837 	}
838 
839 	vn_lock(dp,
840 	    compute_cn_lkflags(mp, cnp->cn_lkflags | LK_RETRY,
841 	    cnp->cn_flags));
842 
843 	if (dp->v_type != VDIR) {
844 		error = ENOTDIR;
845 		goto bad;
846 	}
847 	if (cnp->cn_nameiop != LOOKUP) {
848 		error = EISDIR;
849 		goto bad;
850 	}
851 	if (wantparent) {
852 		ndp->ni_dvp = dp;
853 		VREF(dp);
854 	}
855 	ndp->ni_vp = dp;
856 
857 	if (cnp->cn_flags & AUDITVNODE1)
858 		AUDIT_ARG_VNODE1(dp);
859 	else if (cnp->cn_flags & AUDITVNODE2)
860 		AUDIT_ARG_VNODE2(dp);
861 
862 	if (!(cnp->cn_flags & (LOCKPARENT | LOCKLEAF)))
863 		VOP_UNLOCK(dp);
864 	/* XXX This should probably move to the top of function. */
865 	if (cnp->cn_flags & SAVESTART)
866 		panic("lookup: SAVESTART");
867 	return (0);
868 bad:
869 	VOP_UNLOCK(dp);
870 	return (error);
871 }
872 
873 /*
874  * FAILIFEXISTS handling.
875  *
876  * XXX namei called with LOCKPARENT but not LOCKLEAF has the strange
877  * behaviour of leaving the vnode unlocked if the target is the same
878  * vnode as the parent.
879  */
880 static int __noinline
881 vfs_lookup_failifexists(struct nameidata *ndp)
882 {
883 	struct componentname *cnp __diagused;
884 
885 	cnp = &ndp->ni_cnd;
886 
887 	MPASS((cnp->cn_flags & ISSYMLINK) == 0);
888 	if (ndp->ni_vp == ndp->ni_dvp)
889 		vrele(ndp->ni_dvp);
890 	else
891 		vput(ndp->ni_dvp);
892 	vrele(ndp->ni_vp);
893 	ndp->ni_dvp = NULL;
894 	ndp->ni_vp = NULL;
895 	NDFREE_PNBUF(ndp);
896 	return (EEXIST);
897 }
898 
899 /*
900  * Search a pathname.
901  * This is a very central and rather complicated routine.
902  *
903  * The pathname is pointed to by ni_ptr and is of length ni_pathlen.
904  * The starting directory is taken from ni_startdir. The pathname is
905  * descended until done, or a symbolic link is encountered. The variable
906  * ni_more is clear if the path is completed; it is set to one if a
907  * symbolic link needing interpretation is encountered.
908  *
909  * The flag argument is LOOKUP, CREATE, RENAME, or DELETE depending on
910  * whether the name is to be looked up, created, renamed, or deleted.
911  * When CREATE, RENAME, or DELETE is specified, information usable in
912  * creating, renaming, or deleting a directory entry may be calculated.
913  * If flag has LOCKPARENT or'ed into it, the parent directory is returned
914  * locked. If flag has WANTPARENT or'ed into it, the parent directory is
915  * returned unlocked. Otherwise the parent directory is not returned. If
916  * the target of the pathname exists and LOCKLEAF is or'ed into the flag
917  * the target is returned locked, otherwise it is returned unlocked.
918  * When creating or renaming and LOCKPARENT is specified, the target may not
919  * be ".".  When deleting and LOCKPARENT is specified, the target may be ".".
920  *
921  * Overall outline of lookup:
922  *
923  * dirloop:
924  *	identify next component of name at ndp->ni_ptr
925  *	handle degenerate case where name is null string
926  *	if .. and crossing mount points and on mounted filesys, find parent
927  *	call VOP_LOOKUP routine for next component name
928  *	    directory vnode returned in ni_dvp, unlocked unless LOCKPARENT set
929  *	    component vnode returned in ni_vp (if it exists), locked.
930  *	if result vnode is mounted on and crossing mount points,
931  *	    find mounted on vnode
932  *	if more components of name, do next level at dirloop
933  *	return the answer in ni_vp, locked if LOCKLEAF set
934  *	    if LOCKPARENT set, return locked parent in ni_dvp
935  *	    if WANTPARENT set, return unlocked parent in ni_dvp
936  */
937 int
938 vfs_lookup(struct nameidata *ndp)
939 {
940 	char *cp;			/* pointer into pathname argument */
941 	char *prev_ni_next;		/* saved ndp->ni_next */
942 	char *nulchar;			/* location of '\0' in cn_pnbuf */
943 	char *lastchar;			/* location of the last character */
944 	struct vnode *dp = NULL;	/* the directory we are searching */
945 	struct vnode *tdp;		/* saved dp */
946 	struct mount *mp;		/* mount table entry */
947 	struct prison *pr;
948 	size_t prev_ni_pathlen;		/* saved ndp->ni_pathlen */
949 	int docache;			/* == 0 do not cache last component */
950 	int wantparent;			/* 1 => wantparent or lockparent flag */
951 	int rdonly;			/* lookup read-only flag bit */
952 	int error = 0;
953 	int dpunlocked = 0;		/* dp has already been unlocked */
954 	int relookup = 0;		/* do not consume the path component */
955 	struct componentname *cnp = &ndp->ni_cnd;
956 	int lkflags_save;
957 	int ni_dvp_unlocked;
958 
959 	/*
960 	 * Setup: break out flag bits into variables.
961 	 */
962 	ni_dvp_unlocked = 0;
963 	wantparent = cnp->cn_flags & (LOCKPARENT | WANTPARENT);
964 	KASSERT(cnp->cn_nameiop == LOOKUP || wantparent,
965 	    ("CREATE, DELETE, RENAME require LOCKPARENT or WANTPARENT."));
966 	/*
967 	 * When set to zero, docache causes the last component of the
968 	 * pathname to be deleted from the cache and the full lookup
969 	 * of the name to be done (via VOP_CACHEDLOOKUP()). Often
970 	 * filesystems need some pre-computed values that are made
971 	 * during the full lookup, for instance UFS sets dp->i_offset.
972 	 *
973 	 * The docache variable is set to zero when requested by the
974 	 * NOCACHE flag and for all modifying operations except CREATE.
975 	 */
976 	docache = (cnp->cn_flags & NOCACHE) ^ NOCACHE;
977 	if (cnp->cn_nameiop == DELETE ||
978 	    (wantparent && cnp->cn_nameiop != CREATE &&
979 	     cnp->cn_nameiop != LOOKUP))
980 		docache = 0;
981 	rdonly = cnp->cn_flags & RDONLY;
982 	cnp->cn_flags &= ~ISSYMLINK;
983 	ndp->ni_dvp = NULL;
984 
985 	cnp->cn_lkflags = LK_SHARED;
986 	dp = ndp->ni_startdir;
987 	ndp->ni_startdir = NULLVP;
988 
989 	/*
990 	 * Leading slashes, if any, are supposed to be skipped by the caller.
991 	 */
992 	MPASS(cnp->cn_nameptr[0] != '/');
993 
994 	/*
995 	 * Check for degenerate name (e.g. / or "") which is a way of talking
996 	 * about a directory, e.g. like "/." or ".".
997 	 */
998 	if (__predict_false(cnp->cn_nameptr[0] == '\0')) {
999 		error = vfs_lookup_degenerate(ndp, dp, wantparent);
1000 		if (error == 0)
1001 			goto success_right_lock;
1002 		goto bad_unlocked;
1003 	}
1004 
1005 	/*
1006 	 * Nul-out trailing slashes (e.g., "foo///" -> "foo").
1007 	 *
1008 	 * This must be done before VOP_LOOKUP() because some fs's don't know
1009 	 * about trailing slashes.  Remember if there were trailing slashes to
1010 	 * handle symlinks, existing non-directories and non-existing files
1011 	 * that won't be directories specially later.
1012 	 */
1013 	MPASS(ndp->ni_pathlen >= 2);
1014 	lastchar = &cnp->cn_nameptr[ndp->ni_pathlen - 2];
1015 	if (*lastchar == '/') {
1016 		while (lastchar >= cnp->cn_pnbuf) {
1017 			*lastchar = '\0';
1018 			lastchar--;
1019 			ndp->ni_pathlen--;
1020 			if (*lastchar != '/') {
1021 				break;
1022 			}
1023 		}
1024 		cnp->cn_flags |= TRAILINGSLASH;
1025 	}
1026 
1027 	/*
1028 	 * We use shared locks until we hit the parent of the last cn then
1029 	 * we adjust based on the requesting flags.
1030 	 */
1031 	vn_lock(dp,
1032 	    compute_cn_lkflags(dp->v_mount, cnp->cn_lkflags | LK_RETRY,
1033 	    cnp->cn_flags));
1034 
1035 dirloop:
1036 	/*
1037 	 * Search a new directory.
1038 	 *
1039 	 * The last component of the filename is left accessible via
1040 	 * cnp->cn_nameptr for callers that need the name. Callers needing
1041 	 * the name set the SAVENAME flag. When done, they assume
1042 	 * responsibility for freeing the pathname buffer.
1043 	 *
1044 	 * Store / as a temporary sentinel so that we only have one character
1045 	 * to test for. Pathnames tend to be short so this should not be
1046 	 * resulting in cache misses.
1047 	 */
1048 	nulchar = &cnp->cn_nameptr[ndp->ni_pathlen - 1];
1049 	KASSERT(*nulchar == '\0',
1050 	    ("%s: expected nul at %p; string [%s]\n", __func__, nulchar,
1051 	    cnp->cn_pnbuf));
1052 	*nulchar = '/';
1053 	for (cp = cnp->cn_nameptr; *cp != '/'; cp++) {
1054 		KASSERT(*cp != '\0',
1055 		    ("%s: encountered unexpected nul; string [%s]\n", __func__,
1056 		    cnp->cn_nameptr));
1057 		continue;
1058 	}
1059 	*nulchar = '\0';
1060 	cnp->cn_namelen = cp - cnp->cn_nameptr;
1061 	if (cnp->cn_namelen > NAME_MAX) {
1062 		error = ENAMETOOLONG;
1063 		goto bad;
1064 	}
1065 #ifdef NAMEI_DIAGNOSTIC
1066 	{ char c = *cp;
1067 	*cp = '\0';
1068 	printf("{%s}: ", cnp->cn_nameptr);
1069 	*cp = c; }
1070 #endif
1071 	prev_ni_pathlen = ndp->ni_pathlen;
1072 	ndp->ni_pathlen -= cnp->cn_namelen;
1073 	KASSERT(ndp->ni_pathlen <= PATH_MAX,
1074 	    ("%s: ni_pathlen underflow to %zd\n", __func__, ndp->ni_pathlen));
1075 	prev_ni_next = ndp->ni_next;
1076 	ndp->ni_next = cp;
1077 
1078 	cnp->cn_flags |= MAKEENTRY;
1079 	if (*cp == '\0' && docache == 0)
1080 		cnp->cn_flags &= ~MAKEENTRY;
1081 	if (cnp->cn_namelen == 2 &&
1082 	    cnp->cn_nameptr[1] == '.' && cnp->cn_nameptr[0] == '.')
1083 		cnp->cn_flags |= ISDOTDOT;
1084 	else
1085 		cnp->cn_flags &= ~ISDOTDOT;
1086 	if (*ndp->ni_next == 0)
1087 		cnp->cn_flags |= ISLASTCN;
1088 	else
1089 		cnp->cn_flags &= ~ISLASTCN;
1090 
1091 	if ((cnp->cn_flags & ISLASTCN) != 0 &&
1092 	    cnp->cn_namelen == 1 && cnp->cn_nameptr[0] == '.' &&
1093 	    (cnp->cn_nameiop == DELETE || cnp->cn_nameiop == RENAME)) {
1094 		error = EINVAL;
1095 		goto bad;
1096 	}
1097 
1098 	nameicap_tracker_add(ndp, dp);
1099 
1100 	/*
1101 	 * Make sure degenerate names don't get here, their handling was
1102 	 * previously found in this spot.
1103 	 */
1104 	MPASS(cnp->cn_nameptr[0] != '\0');
1105 
1106 	/*
1107 	 * Handle "..": five special cases.
1108 	 * 0. If doing a capability lookup and lookup_cap_dotdot is
1109 	 *    disabled, return ENOTCAPABLE.
1110 	 * 1. Return an error if this is the last component of
1111 	 *    the name and the operation is DELETE or RENAME.
1112 	 * 2. If at root directory (e.g. after chroot)
1113 	 *    or at absolute root directory
1114 	 *    then ignore it so can't get out.
1115 	 * 3. If this vnode is the root of a mounted
1116 	 *    filesystem, then replace it with the
1117 	 *    vnode which was mounted on so we take the
1118 	 *    .. in the other filesystem.
1119 	 * 4. If the vnode is the top directory of
1120 	 *    the jail or chroot, don't let them out.
1121 	 * 5. If doing a capability lookup and lookup_cap_dotdot is
1122 	 *    enabled, return ENOTCAPABLE if the lookup would escape
1123 	 *    from the initial file descriptor directory.  Checks are
1124 	 *    done by ensuring that namei() already traversed the
1125 	 *    result of dotdot lookup.
1126 	 */
1127 	if (cnp->cn_flags & ISDOTDOT) {
1128 		if ((ndp->ni_lcf & (NI_LCF_STRICTRELATIVE | NI_LCF_CAP_DOTDOT))
1129 		    == NI_LCF_STRICTRELATIVE) {
1130 #ifdef KTRACE
1131 			if (KTRPOINT(curthread, KTR_CAPFAIL))
1132 				ktrcapfail(CAPFAIL_LOOKUP, NULL, NULL);
1133 #endif
1134 			error = ENOTCAPABLE;
1135 			goto bad;
1136 		}
1137 		if ((cnp->cn_flags & ISLASTCN) != 0 &&
1138 		    (cnp->cn_nameiop == DELETE || cnp->cn_nameiop == RENAME)) {
1139 			error = EINVAL;
1140 			goto bad;
1141 		}
1142 		for (;;) {
1143 			for (pr = cnp->cn_cred->cr_prison; pr != NULL;
1144 			     pr = pr->pr_parent)
1145 				if (dp == pr->pr_root)
1146 					break;
1147 			if (dp == ndp->ni_rootdir ||
1148 			    dp == ndp->ni_topdir ||
1149 			    dp == rootvnode ||
1150 			    pr != NULL ||
1151 			    ((dp->v_vflag & VV_ROOT) != 0 &&
1152 			     (cnp->cn_flags & NOCROSSMOUNT) != 0)) {
1153 				ndp->ni_dvp = dp;
1154 				ndp->ni_vp = dp;
1155 				VREF(dp);
1156 				goto nextname;
1157 			}
1158 			if ((dp->v_vflag & VV_ROOT) == 0)
1159 				break;
1160 			if (VN_IS_DOOMED(dp)) {	/* forced unmount */
1161 				error = ENOENT;
1162 				goto bad;
1163 			}
1164 			tdp = dp;
1165 			dp = dp->v_mount->mnt_vnodecovered;
1166 			VREF(dp);
1167 			vput(tdp);
1168 			vn_lock(dp,
1169 			    compute_cn_lkflags(dp->v_mount, cnp->cn_lkflags |
1170 			    LK_RETRY, ISDOTDOT));
1171 			error = nameicap_check_dotdot(ndp, dp);
1172 			if (error != 0) {
1173 #ifdef KTRACE
1174 				if (KTRPOINT(curthread, KTR_CAPFAIL))
1175 					ktrcapfail(CAPFAIL_LOOKUP, NULL, NULL);
1176 #endif
1177 				goto bad;
1178 			}
1179 		}
1180 	}
1181 
1182 	/*
1183 	 * We now have a segment name to search for, and a directory to search.
1184 	 */
1185 unionlookup:
1186 #ifdef MAC
1187 	error = mac_vnode_check_lookup(cnp->cn_cred, dp, cnp);
1188 	if (error)
1189 		goto bad;
1190 #endif
1191 	ndp->ni_dvp = dp;
1192 	ndp->ni_vp = NULL;
1193 	ASSERT_VOP_LOCKED(dp, "lookup");
1194 	/*
1195 	 * If we have a shared lock we may need to upgrade the lock for the
1196 	 * last operation.
1197 	 */
1198 	if ((cnp->cn_flags & LOCKPARENT) && (cnp->cn_flags & ISLASTCN) &&
1199 	    dp != vp_crossmp && VOP_ISLOCKED(dp) == LK_SHARED)
1200 		vn_lock(dp, LK_UPGRADE|LK_RETRY);
1201 	if (VN_IS_DOOMED(dp)) {
1202 		error = ENOENT;
1203 		goto bad;
1204 	}
1205 	/*
1206 	 * If we're looking up the last component and we need an exclusive
1207 	 * lock, adjust our lkflags.
1208 	 */
1209 	if (needs_exclusive_leaf(dp->v_mount, cnp->cn_flags))
1210 		cnp->cn_lkflags = LK_EXCLUSIVE;
1211 #ifdef NAMEI_DIAGNOSTIC
1212 	vn_printf(dp, "lookup in ");
1213 #endif
1214 	lkflags_save = cnp->cn_lkflags;
1215 	cnp->cn_lkflags = compute_cn_lkflags(dp->v_mount, cnp->cn_lkflags,
1216 	    cnp->cn_flags);
1217 	error = VOP_LOOKUP(dp, &ndp->ni_vp, cnp);
1218 	cnp->cn_lkflags = lkflags_save;
1219 	if (error != 0) {
1220 		KASSERT(ndp->ni_vp == NULL, ("leaf should be empty"));
1221 #ifdef NAMEI_DIAGNOSTIC
1222 		printf("not found\n");
1223 #endif
1224 		if ((error == ENOENT) &&
1225 		    (dp->v_vflag & VV_ROOT) && (dp->v_mount != NULL) &&
1226 		    (dp->v_mount->mnt_flag & MNT_UNION)) {
1227 			tdp = dp;
1228 			dp = dp->v_mount->mnt_vnodecovered;
1229 			VREF(dp);
1230 			vput(tdp);
1231 			vn_lock(dp,
1232 			    compute_cn_lkflags(dp->v_mount, cnp->cn_lkflags |
1233 			    LK_RETRY, cnp->cn_flags));
1234 			nameicap_tracker_add(ndp, dp);
1235 			goto unionlookup;
1236 		}
1237 
1238 		if (error == ERELOOKUP) {
1239 			vref(dp);
1240 			ndp->ni_vp = dp;
1241 			error = 0;
1242 			relookup = 1;
1243 			goto good;
1244 		}
1245 
1246 		if (error != EJUSTRETURN)
1247 			goto bad;
1248 		/*
1249 		 * At this point, we know we're at the end of the
1250 		 * pathname.  If creating / renaming, we can consider
1251 		 * allowing the file or directory to be created / renamed,
1252 		 * provided we're not on a read-only filesystem.
1253 		 */
1254 		if (rdonly) {
1255 			error = EROFS;
1256 			goto bad;
1257 		}
1258 		/* trailing slash only allowed for directories */
1259 		if ((cnp->cn_flags & TRAILINGSLASH) &&
1260 		    !(cnp->cn_flags & WILLBEDIR)) {
1261 			error = ENOENT;
1262 			goto bad;
1263 		}
1264 		if ((cnp->cn_flags & LOCKPARENT) == 0)
1265 			VOP_UNLOCK(dp);
1266 		/*
1267 		 * We return with ni_vp NULL to indicate that the entry
1268 		 * doesn't currently exist, leaving a pointer to the
1269 		 * (possibly locked) directory vnode in ndp->ni_dvp.
1270 		 */
1271 		if (cnp->cn_flags & SAVESTART) {
1272 			ndp->ni_startdir = ndp->ni_dvp;
1273 			VREF(ndp->ni_startdir);
1274 		}
1275 		goto success;
1276 	}
1277 
1278 good:
1279 #ifdef NAMEI_DIAGNOSTIC
1280 	printf("found\n");
1281 #endif
1282 	dp = ndp->ni_vp;
1283 
1284 	/*
1285 	 * Check to see if the vnode has been mounted on;
1286 	 * if so find the root of the mounted filesystem.
1287 	 */
1288 	while (dp->v_type == VDIR && (mp = dp->v_mountedhere) &&
1289 	       (cnp->cn_flags & NOCROSSMOUNT) == 0) {
1290 		if (vfs_busy(mp, 0))
1291 			continue;
1292 		vput(dp);
1293 		if (dp != ndp->ni_dvp)
1294 			vput(ndp->ni_dvp);
1295 		else
1296 			vrele(ndp->ni_dvp);
1297 		vrefact(vp_crossmp);
1298 		ndp->ni_dvp = vp_crossmp;
1299 		error = VFS_ROOT(mp, compute_cn_lkflags(mp, cnp->cn_lkflags,
1300 		    cnp->cn_flags), &tdp);
1301 		vfs_unbusy(mp);
1302 		if (vn_lock(vp_crossmp, LK_SHARED | LK_NOWAIT))
1303 			panic("vp_crossmp exclusively locked or reclaimed");
1304 		if (error) {
1305 			dpunlocked = 1;
1306 			goto bad2;
1307 		}
1308 		ndp->ni_vp = dp = tdp;
1309 	}
1310 
1311 	/*
1312 	 * Check for symbolic link
1313 	 */
1314 	if ((dp->v_type == VLNK) &&
1315 	    ((cnp->cn_flags & FOLLOW) || (cnp->cn_flags & TRAILINGSLASH) ||
1316 	     *ndp->ni_next == '/')) {
1317 		cnp->cn_flags |= ISSYMLINK;
1318 		if (VN_IS_DOOMED(dp)) {
1319 			/*
1320 			 * We can't know whether the directory was mounted with
1321 			 * NOSYMFOLLOW, so we can't follow safely.
1322 			 */
1323 			error = ENOENT;
1324 			goto bad2;
1325 		}
1326 		if (dp->v_mount->mnt_flag & MNT_NOSYMFOLLOW) {
1327 			error = EACCES;
1328 			goto bad2;
1329 		}
1330 		/*
1331 		 * Symlink code always expects an unlocked dvp.
1332 		 */
1333 		if (ndp->ni_dvp != ndp->ni_vp) {
1334 			VOP_UNLOCK(ndp->ni_dvp);
1335 			ni_dvp_unlocked = 1;
1336 		}
1337 		goto success;
1338 	}
1339 
1340 nextname:
1341 	/*
1342 	 * Not a symbolic link that we will follow.  Continue with the
1343 	 * next component if there is any; otherwise, we're done.
1344 	 */
1345 	KASSERT((cnp->cn_flags & ISLASTCN) || *ndp->ni_next == '/',
1346 	    ("lookup: invalid path state."));
1347 	if (relookup) {
1348 		relookup = 0;
1349 		ndp->ni_pathlen = prev_ni_pathlen;
1350 		ndp->ni_next = prev_ni_next;
1351 		if (ndp->ni_dvp != dp)
1352 			vput(ndp->ni_dvp);
1353 		else
1354 			vrele(ndp->ni_dvp);
1355 		goto dirloop;
1356 	}
1357 	if (cnp->cn_flags & ISDOTDOT) {
1358 		error = nameicap_check_dotdot(ndp, ndp->ni_vp);
1359 		if (error != 0) {
1360 #ifdef KTRACE
1361 			if (KTRPOINT(curthread, KTR_CAPFAIL))
1362 				ktrcapfail(CAPFAIL_LOOKUP, NULL, NULL);
1363 #endif
1364 			goto bad2;
1365 		}
1366 	}
1367 	if (*ndp->ni_next == '/') {
1368 		cnp->cn_nameptr = ndp->ni_next;
1369 		while (*cnp->cn_nameptr == '/') {
1370 			cnp->cn_nameptr++;
1371 			ndp->ni_pathlen--;
1372 		}
1373 		if (ndp->ni_dvp != dp)
1374 			vput(ndp->ni_dvp);
1375 		else
1376 			vrele(ndp->ni_dvp);
1377 		goto dirloop;
1378 	}
1379 	/*
1380 	 * If we're processing a path with a trailing slash,
1381 	 * check that the end result is a directory.
1382 	 */
1383 	if ((cnp->cn_flags & TRAILINGSLASH) && dp->v_type != VDIR) {
1384 		error = ENOTDIR;
1385 		goto bad2;
1386 	}
1387 	/*
1388 	 * Disallow directory write attempts on read-only filesystems.
1389 	 */
1390 	if (rdonly &&
1391 	    (cnp->cn_nameiop == DELETE || cnp->cn_nameiop == RENAME)) {
1392 		error = EROFS;
1393 		goto bad2;
1394 	}
1395 	if (cnp->cn_flags & SAVESTART) {
1396 		ndp->ni_startdir = ndp->ni_dvp;
1397 		VREF(ndp->ni_startdir);
1398 	}
1399 	if (!wantparent) {
1400 		ni_dvp_unlocked = 2;
1401 		if (ndp->ni_dvp != dp)
1402 			vput(ndp->ni_dvp);
1403 		else
1404 			vrele(ndp->ni_dvp);
1405 	} else if ((cnp->cn_flags & LOCKPARENT) == 0 && ndp->ni_dvp != dp) {
1406 		VOP_UNLOCK(ndp->ni_dvp);
1407 		ni_dvp_unlocked = 1;
1408 	}
1409 
1410 	if (cnp->cn_flags & AUDITVNODE1)
1411 		AUDIT_ARG_VNODE1(dp);
1412 	else if (cnp->cn_flags & AUDITVNODE2)
1413 		AUDIT_ARG_VNODE2(dp);
1414 
1415 	if ((cnp->cn_flags & LOCKLEAF) == 0)
1416 		VOP_UNLOCK(dp);
1417 success:
1418 	/*
1419 	 * FIXME: for lookups which only cross a mount point to fetch the
1420 	 * root vnode, ni_dvp will be set to vp_crossmp. This can be a problem
1421 	 * if either WANTPARENT or LOCKPARENT is set.
1422 	 */
1423 	/*
1424 	 * Because of shared lookup we may have the vnode shared locked, but
1425 	 * the caller may want it to be exclusively locked.
1426 	 */
1427 	if (needs_exclusive_leaf(dp->v_mount, cnp->cn_flags) &&
1428 	    VOP_ISLOCKED(dp) != LK_EXCLUSIVE) {
1429 		vn_lock(dp, LK_UPGRADE | LK_RETRY);
1430 		if (VN_IS_DOOMED(dp)) {
1431 			error = ENOENT;
1432 			goto bad2;
1433 		}
1434 	}
1435 success_right_lock:
1436 	if (ndp->ni_vp != NULL) {
1437 		if ((cnp->cn_flags & ISDOTDOT) == 0)
1438 			nameicap_tracker_add(ndp, ndp->ni_vp);
1439 		if ((cnp->cn_flags & (FAILIFEXISTS | ISSYMLINK)) == FAILIFEXISTS)
1440 			return (vfs_lookup_failifexists(ndp));
1441 	}
1442 	return (0);
1443 
1444 bad2:
1445 	if (ni_dvp_unlocked != 2) {
1446 		if (dp != ndp->ni_dvp && !ni_dvp_unlocked)
1447 			vput(ndp->ni_dvp);
1448 		else
1449 			vrele(ndp->ni_dvp);
1450 	}
1451 bad:
1452 	if (!dpunlocked)
1453 		vput(dp);
1454 bad_unlocked:
1455 	ndp->ni_vp = NULL;
1456 	return (error);
1457 }
1458 
1459 /*
1460  * relookup - lookup a path name component
1461  *    Used by lookup to re-acquire things.
1462  */
1463 int
1464 vfs_relookup(struct vnode *dvp, struct vnode **vpp, struct componentname *cnp)
1465 {
1466 	struct vnode *dp = NULL;		/* the directory we are searching */
1467 	int rdonly;			/* lookup read-only flag bit */
1468 	int error = 0;
1469 
1470 	KASSERT(cnp->cn_flags & ISLASTCN,
1471 	    ("relookup: Not given last component."));
1472 	/*
1473 	 * Setup: break out flag bits into variables.
1474 	 */
1475 	KASSERT((cnp->cn_flags & (LOCKPARENT | WANTPARENT)) != 0,
1476 	    ("relookup: parent not wanted"));
1477 	rdonly = cnp->cn_flags & RDONLY;
1478 	cnp->cn_flags &= ~ISSYMLINK;
1479 	dp = dvp;
1480 	cnp->cn_lkflags = LK_EXCLUSIVE;
1481 	vn_lock(dp, LK_EXCLUSIVE | LK_RETRY);
1482 
1483 	/*
1484 	 * Search a new directory.
1485 	 *
1486 	 * The last component of the filename is left accessible via
1487 	 * cnp->cn_nameptr for callers that need the name. Callers needing
1488 	 * the name set the SAVENAME flag. When done, they assume
1489 	 * responsibility for freeing the pathname buffer.
1490 	 */
1491 #ifdef NAMEI_DIAGNOSTIC
1492 	printf("{%s}: ", cnp->cn_nameptr);
1493 #endif
1494 
1495 	/*
1496 	 * Check for "" which represents the root directory after slash
1497 	 * removal.
1498 	 */
1499 	if (cnp->cn_nameptr[0] == '\0') {
1500 		/*
1501 		 * Support only LOOKUP for "/" because lookup()
1502 		 * can't succeed for CREATE, DELETE and RENAME.
1503 		 */
1504 		KASSERT(cnp->cn_nameiop == LOOKUP, ("nameiop must be LOOKUP"));
1505 		KASSERT(dp->v_type == VDIR, ("dp is not a directory"));
1506 
1507 		if (!(cnp->cn_flags & LOCKLEAF))
1508 			VOP_UNLOCK(dp);
1509 		*vpp = dp;
1510 		/* XXX This should probably move to the top of function. */
1511 		if (cnp->cn_flags & SAVESTART)
1512 			panic("lookup: SAVESTART");
1513 		return (0);
1514 	}
1515 
1516 	if (cnp->cn_flags & ISDOTDOT)
1517 		panic ("relookup: lookup on dot-dot");
1518 
1519 	/*
1520 	 * We now have a segment name to search for, and a directory to search.
1521 	 */
1522 #ifdef NAMEI_DIAGNOSTIC
1523 	vn_printf(dp, "search in ");
1524 #endif
1525 	if ((error = VOP_LOOKUP(dp, vpp, cnp)) != 0) {
1526 		KASSERT(*vpp == NULL, ("leaf should be empty"));
1527 		if (error != EJUSTRETURN)
1528 			goto bad;
1529 		/*
1530 		 * If creating and at end of pathname, then can consider
1531 		 * allowing file to be created.
1532 		 */
1533 		if (rdonly) {
1534 			error = EROFS;
1535 			goto bad;
1536 		}
1537 		/* ASSERT(dvp == ndp->ni_startdir) */
1538 		if (cnp->cn_flags & SAVESTART)
1539 			VREF(dvp);
1540 		if ((cnp->cn_flags & LOCKPARENT) == 0)
1541 			VOP_UNLOCK(dp);
1542 		/*
1543 		 * We return with ni_vp NULL to indicate that the entry
1544 		 * doesn't currently exist, leaving a pointer to the
1545 		 * (possibly locked) directory vnode in ndp->ni_dvp.
1546 		 */
1547 		return (0);
1548 	}
1549 
1550 	dp = *vpp;
1551 
1552 	/*
1553 	 * Disallow directory write attempts on read-only filesystems.
1554 	 */
1555 	if (rdonly &&
1556 	    (cnp->cn_nameiop == DELETE || cnp->cn_nameiop == RENAME)) {
1557 		if (dvp == dp)
1558 			vrele(dvp);
1559 		else
1560 			vput(dvp);
1561 		error = EROFS;
1562 		goto bad;
1563 	}
1564 	/*
1565 	 * Set the parent lock/ref state to the requested state.
1566 	 */
1567 	if ((cnp->cn_flags & LOCKPARENT) == 0 && dvp != dp)
1568 		VOP_UNLOCK(dvp);
1569 	/*
1570 	 * Check for symbolic link
1571 	 */
1572 	KASSERT(dp->v_type != VLNK || !(cnp->cn_flags & FOLLOW),
1573 	    ("relookup: symlink found.\n"));
1574 
1575 	/* ASSERT(dvp == ndp->ni_startdir) */
1576 	if (cnp->cn_flags & SAVESTART)
1577 		VREF(dvp);
1578 
1579 	if ((cnp->cn_flags & LOCKLEAF) == 0)
1580 		VOP_UNLOCK(dp);
1581 	return (0);
1582 bad:
1583 	vput(dp);
1584 	*vpp = NULL;
1585 	return (error);
1586 }
1587 
1588 /*
1589  * Free data allocated by namei(); see namei(9) for details.
1590  */
1591 void
1592 NDFREE_PNBUF(struct nameidata *ndp)
1593 {
1594 
1595 	if ((ndp->ni_cnd.cn_flags & HASBUF) != 0) {
1596 		MPASS((ndp->ni_cnd.cn_flags & (SAVENAME | SAVESTART)) != 0);
1597 		uma_zfree(namei_zone, ndp->ni_cnd.cn_pnbuf);
1598 		ndp->ni_cnd.cn_flags &= ~HASBUF;
1599 	}
1600 }
1601 
1602 /*
1603  * NDFREE_PNBUF replacement for callers that know there is no buffer.
1604  *
1605  * This is a hack. Preferably the VFS layer would not produce anything more
1606  * than it was asked to do. Unfortunately several non-LOOKUP cases can add the
1607  * HASBUF flag to the result. Even then an interface could be implemented where
1608  * the caller specifies what they expected to see in the result and what they
1609  * are going to take care of.
1610  *
1611  * In the meantime provide this kludge as a trivial replacement for NDFREE_PNBUF
1612  * calls scattered throughout the kernel where we know for a fact the flag must not
1613  * be seen.
1614  */
1615 #ifdef INVARIANTS
1616 void
1617 NDFREE_NOTHING(struct nameidata *ndp)
1618 {
1619 	struct componentname *cnp;
1620 
1621 	cnp = &ndp->ni_cnd;
1622 	KASSERT(cnp->cn_nameiop == LOOKUP, ("%s: got non-LOOKUP op %d\n",
1623 	    __func__, cnp->cn_nameiop));
1624 	KASSERT((cnp->cn_flags & (SAVENAME | HASBUF)) == 0,
1625 	    ("%s: bad flags \%" PRIx64 "\n", __func__, cnp->cn_flags));
1626 }
1627 #endif
1628 
1629 void
1630 (NDFREE)(struct nameidata *ndp, const u_int flags)
1631 {
1632 	int unlock_dvp;
1633 	int unlock_vp;
1634 
1635 	unlock_dvp = 0;
1636 	unlock_vp = 0;
1637 
1638 	if (!(flags & NDF_NO_FREE_PNBUF)) {
1639 		NDFREE_PNBUF(ndp);
1640 	}
1641 	if (!(flags & NDF_NO_VP_UNLOCK) &&
1642 	    (ndp->ni_cnd.cn_flags & LOCKLEAF) && ndp->ni_vp)
1643 		unlock_vp = 1;
1644 	if (!(flags & NDF_NO_DVP_UNLOCK) &&
1645 	    (ndp->ni_cnd.cn_flags & LOCKPARENT) &&
1646 	    ndp->ni_dvp != ndp->ni_vp)
1647 		unlock_dvp = 1;
1648 	if (!(flags & NDF_NO_VP_RELE) && ndp->ni_vp) {
1649 		if (unlock_vp) {
1650 			vput(ndp->ni_vp);
1651 			unlock_vp = 0;
1652 		} else
1653 			vrele(ndp->ni_vp);
1654 		ndp->ni_vp = NULL;
1655 	}
1656 	if (unlock_vp)
1657 		VOP_UNLOCK(ndp->ni_vp);
1658 	if (!(flags & NDF_NO_DVP_RELE) &&
1659 	    (ndp->ni_cnd.cn_flags & (LOCKPARENT|WANTPARENT))) {
1660 		if (unlock_dvp) {
1661 			vput(ndp->ni_dvp);
1662 			unlock_dvp = 0;
1663 		} else
1664 			vrele(ndp->ni_dvp);
1665 		ndp->ni_dvp = NULL;
1666 	}
1667 	if (unlock_dvp)
1668 		VOP_UNLOCK(ndp->ni_dvp);
1669 	if (!(flags & NDF_NO_STARTDIR_RELE) &&
1670 	    (ndp->ni_cnd.cn_flags & SAVESTART)) {
1671 		vrele(ndp->ni_startdir);
1672 		ndp->ni_startdir = NULL;
1673 	}
1674 }
1675 
1676 #ifdef INVARIANTS
1677 /*
1678  * Validate the final state of ndp after the lookup.
1679  *
1680  * Historically filesystems were allowed to modify cn_flags. Most notably they
1681  * can add SAVENAME to the request, resulting in HASBUF and pushing subsequent
1682  * clean up to the consumer. In practice this seems to only concern != LOOKUP
1683  * operations.
1684  *
1685  * As a step towards stricter API contract this routine validates the state to
1686  * clean up. Note validation is a work in progress with the intent of becoming
1687  * stricter over time.
1688  */
1689 #define NDMODIFYINGFLAGS (LOCKLEAF | LOCKPARENT | WANTPARENT | SAVENAME | SAVESTART | HASBUF)
1690 void
1691 NDVALIDATE(struct nameidata *ndp)
1692 {
1693 	struct componentname *cnp;
1694 	uint64_t used, orig;
1695 
1696 	cnp = &ndp->ni_cnd;
1697 	orig = cnp->cn_origflags;
1698 	used = cnp->cn_flags;
1699 	switch (cnp->cn_nameiop) {
1700 	case LOOKUP:
1701 		/*
1702 		 * For plain lookup we require strict conformance -- nothing
1703 		 * to clean up if it was not requested by the caller.
1704 		 */
1705 		orig &= NDMODIFYINGFLAGS;
1706 		used &= NDMODIFYINGFLAGS;
1707 		if ((orig & (SAVENAME | SAVESTART)) != 0)
1708 			orig |= HASBUF;
1709 		if (orig != used) {
1710 			goto out_mismatch;
1711 		}
1712 		break;
1713 	case CREATE:
1714 	case DELETE:
1715 	case RENAME:
1716 		/*
1717 		 * Some filesystems set SAVENAME to provoke HASBUF, accomodate
1718 		 * for it until it gets fixed.
1719 		 */
1720 		orig &= NDMODIFYINGFLAGS;
1721 		orig |= (SAVENAME | HASBUF);
1722 		used &= NDMODIFYINGFLAGS;
1723 		used |= (SAVENAME | HASBUF);
1724 		if (orig != used) {
1725 			goto out_mismatch;
1726 		}
1727 		break;
1728 	}
1729 	return;
1730 out_mismatch:
1731 	panic("%s: mismatched flags for op %d: added %" PRIx64 ", "
1732 	    "removed %" PRIx64" (%" PRIx64" != %" PRIx64"; stored %" PRIx64" != %" PRIx64")",
1733 	    __func__, cnp->cn_nameiop, used & ~orig, orig &~ used,
1734 	    orig, used, cnp->cn_origflags, cnp->cn_flags);
1735 }
1736 #endif
1737 
1738 /*
1739  * Determine if there is a suitable alternate filename under the specified
1740  * prefix for the specified path.  If the create flag is set, then the
1741  * alternate prefix will be used so long as the parent directory exists.
1742  * This is used by the various compatibility ABIs so that Linux binaries prefer
1743  * files under /compat/linux for example.  The chosen path (whether under
1744  * the prefix or under /) is returned in a kernel malloc'd buffer pointed
1745  * to by pathbuf.  The caller is responsible for free'ing the buffer from
1746  * the M_TEMP bucket if one is returned.
1747  */
1748 int
1749 kern_alternate_path(const char *prefix, const char *path, enum uio_seg pathseg,
1750     char **pathbuf, int create, int dirfd)
1751 {
1752 	struct nameidata nd, ndroot;
1753 	char *ptr, *buf, *cp;
1754 	size_t len, sz;
1755 	int error;
1756 
1757 	buf = (char *) malloc(MAXPATHLEN, M_TEMP, M_WAITOK);
1758 	*pathbuf = buf;
1759 
1760 	/* Copy the prefix into the new pathname as a starting point. */
1761 	len = strlcpy(buf, prefix, MAXPATHLEN);
1762 	if (len >= MAXPATHLEN) {
1763 		*pathbuf = NULL;
1764 		free(buf, M_TEMP);
1765 		return (EINVAL);
1766 	}
1767 	sz = MAXPATHLEN - len;
1768 	ptr = buf + len;
1769 
1770 	/* Append the filename to the prefix. */
1771 	if (pathseg == UIO_SYSSPACE)
1772 		error = copystr(path, ptr, sz, &len);
1773 	else
1774 		error = copyinstr(path, ptr, sz, &len);
1775 
1776 	if (error) {
1777 		*pathbuf = NULL;
1778 		free(buf, M_TEMP);
1779 		return (error);
1780 	}
1781 
1782 	/* Only use a prefix with absolute pathnames. */
1783 	if (*ptr != '/') {
1784 		error = EINVAL;
1785 		goto keeporig;
1786 	}
1787 
1788 	if (dirfd != AT_FDCWD) {
1789 		/*
1790 		 * We want the original because the "prefix" is
1791 		 * included in the already opened dirfd.
1792 		 */
1793 		bcopy(ptr, buf, len);
1794 		return (0);
1795 	}
1796 
1797 	/*
1798 	 * We know that there is a / somewhere in this pathname.
1799 	 * Search backwards for it, to find the file's parent dir
1800 	 * to see if it exists in the alternate tree. If it does,
1801 	 * and we want to create a file (cflag is set). We don't
1802 	 * need to worry about the root comparison in this case.
1803 	 */
1804 
1805 	if (create) {
1806 		for (cp = &ptr[len] - 1; *cp != '/'; cp--);
1807 		*cp = '\0';
1808 
1809 		NDINIT(&nd, LOOKUP, NOFOLLOW, UIO_SYSSPACE, buf);
1810 		error = namei(&nd);
1811 		*cp = '/';
1812 		if (error != 0)
1813 			goto keeporig;
1814 	} else {
1815 		NDINIT(&nd, LOOKUP, NOFOLLOW, UIO_SYSSPACE, buf);
1816 
1817 		error = namei(&nd);
1818 		if (error != 0)
1819 			goto keeporig;
1820 
1821 		/*
1822 		 * We now compare the vnode of the prefix to the one
1823 		 * vnode asked. If they resolve to be the same, then we
1824 		 * ignore the match so that the real root gets used.
1825 		 * This avoids the problem of traversing "../.." to find the
1826 		 * root directory and never finding it, because "/" resolves
1827 		 * to the emulation root directory. This is expensive :-(
1828 		 */
1829 		NDINIT(&ndroot, LOOKUP, FOLLOW, UIO_SYSSPACE, prefix);
1830 
1831 		/* We shouldn't ever get an error from this namei(). */
1832 		error = namei(&ndroot);
1833 		if (error == 0) {
1834 			if (nd.ni_vp == ndroot.ni_vp)
1835 				error = ENOENT;
1836 
1837 			NDFREE_PNBUF(&ndroot);
1838 			vrele(ndroot.ni_vp);
1839 		}
1840 	}
1841 
1842 	NDFREE_PNBUF(&nd);
1843 	vrele(nd.ni_vp);
1844 
1845 keeporig:
1846 	/* If there was an error, use the original path name. */
1847 	if (error)
1848 		bcopy(ptr, buf, len);
1849 	return (error);
1850 }
1851