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