Merge from vendor branch NCURSES:
[dragonfly.git] / sys / kern / vfs_lookup.c
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  * 3. All advertising materials mentioning features or use of this software
19  *    must display the following acknowledgement:
20  *      This product includes software developed by the University of
21  *      California, Berkeley and its contributors.
22  * 4. Neither the name of the University nor the names of its contributors
23  *    may be used to endorse or promote products derived from this software
24  *    without specific prior written permission.
25  *
26  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
27  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
30  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36  * SUCH DAMAGE.
37  *
38  *      @(#)vfs_lookup.c        8.4 (Berkeley) 2/16/94
39  * $FreeBSD: src/sys/kern/vfs_lookup.c,v 1.38.2.3 2001/08/31 19:36:49 dillon Exp $
40  * $DragonFly: src/sys/kern/vfs_lookup.c,v 1.21 2004/11/12 00:09:24 dillon Exp $
41  */
42
43 #include "opt_ktrace.h"
44
45 #include <sys/param.h>
46 #include <sys/systm.h>
47 #include <sys/kernel.h>
48 #include <sys/vnode.h>
49 #include <sys/mount.h>
50 #include <sys/filedesc.h>
51 #include <sys/proc.h>
52 #include <sys/namei.h>
53 #include <sys/sysctl.h>
54
55 #ifdef KTRACE
56 #include <sys/ktrace.h>
57 #endif
58
59 #include <vm/vm_zone.h>
60
61 int varsym_enable = 0;
62 SYSCTL_INT(_vfs, OID_AUTO, varsym_enable, CTLFLAG_RW, &varsym_enable, 0,
63             "Enable Variant Symlinks");
64
65 /*
66  * OLD API FUNCTION
67  *
68  * Relookup a path name component.  This function is only used by the
69  * old API *_rename() code under very specific conditions.  CNP_LOCKPARENT
70  * must be set in the cnp.  dvp must be unlocked on entry and will be left
71  * unlocked if an error occurs.
72  *
73  * The returned *vpp will be NULL if an error occurs.  Note that no error
74  * will occur (error == 0) for CREATE requests on a non-existant target, but
75  * *vpp will be NULL in that case.  Both dvp and *vpp (if not NULL) will be
76  * locked in the no-error case.   No additional references are made to dvp,
77  * only the locking state changes.
78  */
79 int
80 relookup(struct vnode *dvp, struct vnode **vpp, struct componentname *cnp)
81 {
82         struct thread *td = cnp->cn_td;
83         int rdonly;                     /* lookup read-only flag bit */
84         int error = 0;
85
86         /*
87          * Setup: break out flag bits into variables.
88          */
89         KKASSERT(cnp->cn_flags & CNP_LOCKPARENT);
90         KKASSERT(cnp->cn_flags & CNP_PDIRUNLOCK);
91         vn_lock(dvp, LK_EXCLUSIVE | LK_RETRY, td);
92         cnp->cn_flags &= ~CNP_PDIRUNLOCK;
93
94         *vpp = NULL;
95         rdonly = cnp->cn_flags & CNP_RDONLY;
96
97         /*
98          * Search a new directory.
99          */
100
101         /*
102          * Degenerate lookups (e.g. "/", "..", derived from "/.", etc)
103          * are not allowed.
104          */
105         if (cnp->cn_nameptr[0] == '\0') {
106                 error = EISDIR;
107                 goto bad;
108         }
109         if (cnp->cn_flags & CNP_ISDOTDOT)
110                 panic ("relookup: lookup on dot-dot");
111
112         /*
113          * We now have a segment name to search for, and a directory to search.
114          */
115         if ((error = VOP_OLD_LOOKUP(dvp, vpp, cnp)) != 0) {
116                 KASSERT(*vpp == NULL, ("leaf should be empty"));
117                 if (error != EJUSTRETURN)
118                         goto bad;
119                 /*
120                  * If creating and at end of pathname, then can consider
121                  * allowing file to be created.
122                  */
123                 if (rdonly) {
124                         error = EROFS;
125                         goto bad;
126                 }
127                 /*
128                  * We return with ni_vp NULL to indicate that the entry
129                  * doesn't currently exist, leaving a pointer to the
130                  * (possibly locked) directory inode in ndp->ni_dvp.
131                  */
132                 return (0);
133         }
134
135         /*
136          * Check for symbolic link
137          */
138         KASSERT((*vpp)->v_type != VLNK || !(cnp->cn_flags & CNP_FOLLOW),
139             ("relookup: symlink found.\n"));
140
141         /*
142          * Disallow directory write attempts on read-only file systems.
143          */
144         if (rdonly && (cnp->cn_nameiop == NAMEI_DELETE || 
145                         cnp->cn_nameiop == NAMEI_RENAME)) {
146                 error = EROFS;
147                 goto bad;
148         }
149         KKASSERT((cnp->cn_flags & CNP_PDIRUNLOCK) == 0);
150         return (0);
151
152 bad:
153         if ((cnp->cn_flags & CNP_PDIRUNLOCK) == 0) {
154                 cnp->cn_flags |= CNP_PDIRUNLOCK;
155                 VOP_UNLOCK(dvp, 0, td);
156         }
157         if (*vpp) {
158                 vput(*vpp);
159                 *vpp = NULL;
160         }
161         return (error);
162 }
163