adlookup.c revision 1.9 1 1.9 chs /* $NetBSD: adlookup.c,v 1.9 2006/12/09 16:11:50 chs Exp $ */
2 1.1 jdolecek
3 1.1 jdolecek /*
4 1.1 jdolecek * Copyright (c) 1994 Christian E. Hopps
5 1.1 jdolecek * Copyright (c) 1996 Matthias Scheler
6 1.1 jdolecek * All rights reserved.
7 1.1 jdolecek *
8 1.1 jdolecek * Redistribution and use in source and binary forms, with or without
9 1.1 jdolecek * modification, are permitted provided that the following conditions
10 1.1 jdolecek * are met:
11 1.1 jdolecek * 1. Redistributions of source code must retain the above copyright
12 1.1 jdolecek * notice, this list of conditions and the following disclaimer.
13 1.1 jdolecek * 2. Redistributions in binary form must reproduce the above copyright
14 1.1 jdolecek * notice, this list of conditions and the following disclaimer in the
15 1.1 jdolecek * documentation and/or other materials provided with the distribution.
16 1.1 jdolecek * 3. All advertising materials mentioning features or use of this software
17 1.1 jdolecek * must display the following acknowledgement:
18 1.1 jdolecek * This product includes software developed by Christian E. Hopps.
19 1.1 jdolecek * 4. The name of the author may not be used to endorse or promote products
20 1.1 jdolecek * derived from this software without specific prior written permission
21 1.1 jdolecek *
22 1.1 jdolecek * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
23 1.1 jdolecek * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
24 1.1 jdolecek * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
25 1.1 jdolecek * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
26 1.1 jdolecek * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
27 1.1 jdolecek * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28 1.1 jdolecek * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29 1.1 jdolecek * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30 1.1 jdolecek * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
31 1.1 jdolecek * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 1.1 jdolecek */
33 1.1 jdolecek
34 1.1 jdolecek #include <sys/cdefs.h>
35 1.9 chs __KERNEL_RCSID(0, "$NetBSD: adlookup.c,v 1.9 2006/12/09 16:11:50 chs Exp $");
36 1.1 jdolecek
37 1.1 jdolecek #include <sys/param.h>
38 1.1 jdolecek #include <sys/systm.h>
39 1.1 jdolecek #include <sys/vnode.h>
40 1.1 jdolecek #include <sys/namei.h>
41 1.1 jdolecek #include <sys/mount.h>
42 1.1 jdolecek #include <sys/time.h>
43 1.1 jdolecek #include <sys/queue.h>
44 1.1 jdolecek #include <fs/adosfs/adosfs.h>
45 1.1 jdolecek
46 1.1 jdolecek #ifdef ADOSFS_EXACTMATCH
47 1.1 jdolecek #define strmatch(s1, l1, s2, l2, i) \
48 1.1 jdolecek ((l1) == (l2) && memcmp((s1), (s2), (l1)) == 0)
49 1.1 jdolecek #else
50 1.1 jdolecek #define strmatch(s1, l1, s2, l2, i) \
51 1.1 jdolecek ((l1) == (l2) && adoscaseequ((s1), (s2), (l1), (i)))
52 1.1 jdolecek #endif
53 1.1 jdolecek
54 1.1 jdolecek /*
55 1.1 jdolecek * adosfs lookup. enters with:
56 1.1 jdolecek * pvp (parent vnode) referenced and locked.
57 1.1 jdolecek * exit with:
58 1.1 jdolecek * target vp referenced and locked.
59 1.9 chs * parent pvp locked.
60 1.1 jdolecek * special cases:
61 1.1 jdolecek * pvp == vp, just ref pvp, pvp already holds a ref and lock from
62 1.1 jdolecek * caller, this will not occur with RENAME or CREATE.
63 1.1 jdolecek */
64 1.1 jdolecek int
65 1.1 jdolecek adosfs_lookup(v)
66 1.1 jdolecek void *v;
67 1.1 jdolecek {
68 1.1 jdolecek struct vop_lookup_args /* {
69 1.1 jdolecek struct vnode *a_dvp;
70 1.1 jdolecek struct vnode **a_vpp;
71 1.1 jdolecek struct componentname *a_cnp;
72 1.1 jdolecek } */ *sp = v;
73 1.9 chs int nameiop, last, flags, error, nocache, i;
74 1.1 jdolecek struct componentname *cnp;
75 1.1 jdolecek struct vnode **vpp; /* place to store result */
76 1.1 jdolecek struct anode *ap; /* anode to find */
77 1.1 jdolecek struct vnode *vdp; /* vnode of search dir */
78 1.1 jdolecek struct anode *adp; /* anode of search dir */
79 1.8 elad kauth_cred_t ucp; /* lookup credentials */
80 1.1 jdolecek u_long bn, plen, hval;
81 1.1 jdolecek const u_char *pelt;
82 1.1 jdolecek
83 1.1 jdolecek #ifdef ADOSFS_DIAGNOSTIC
84 1.1 jdolecek advopprint(sp);
85 1.1 jdolecek #endif
86 1.1 jdolecek cnp = sp->a_cnp;
87 1.1 jdolecek vdp = sp->a_dvp;
88 1.1 jdolecek adp = VTOA(vdp);
89 1.1 jdolecek vpp = sp->a_vpp;
90 1.1 jdolecek *vpp = NULL;
91 1.1 jdolecek ucp = cnp->cn_cred;
92 1.1 jdolecek nameiop = cnp->cn_nameiop;
93 1.1 jdolecek flags = cnp->cn_flags;
94 1.1 jdolecek last = flags & ISLASTCN;
95 1.1 jdolecek pelt = (const u_char *)cnp->cn_nameptr;
96 1.1 jdolecek plen = cnp->cn_namelen;
97 1.1 jdolecek nocache = 0;
98 1.6 perry
99 1.6 perry /*
100 1.1 jdolecek * Check accessiblity of directory.
101 1.1 jdolecek */
102 1.7 christos if ((error = VOP_ACCESS(vdp, VEXEC, ucp, cnp->cn_lwp)) != 0)
103 1.1 jdolecek return (error);
104 1.1 jdolecek
105 1.1 jdolecek if ((flags & ISLASTCN) && (vdp->v_mount->mnt_flag & MNT_RDONLY) &&
106 1.1 jdolecek (cnp->cn_nameiop == DELETE || cnp->cn_nameiop == RENAME))
107 1.1 jdolecek return (EROFS);
108 1.1 jdolecek
109 1.1 jdolecek /*
110 1.1 jdolecek * Before tediously performing a linear scan of the directory,
111 1.1 jdolecek * check the name cache to see if the directory/name pair
112 1.1 jdolecek * we are looking for is known already.
113 1.1 jdolecek */
114 1.1 jdolecek if ((error = cache_lookup(vdp, vpp, cnp)) >= 0)
115 1.1 jdolecek return (error);
116 1.1 jdolecek
117 1.1 jdolecek /*
118 1.1 jdolecek * fake a '.'
119 1.1 jdolecek */
120 1.1 jdolecek if (plen == 1 && pelt[0] == '.') {
121 1.1 jdolecek /* see special cases in prologue. */
122 1.1 jdolecek *vpp = vdp;
123 1.1 jdolecek goto found;
124 1.1 jdolecek }
125 1.1 jdolecek /*
126 1.1 jdolecek * fake a ".."
127 1.1 jdolecek */
128 1.1 jdolecek if (flags & ISDOTDOT) {
129 1.6 perry if (vdp->v_type == VDIR && (vdp->v_flag & VROOT))
130 1.1 jdolecek panic("adosfs .. attempted through root");
131 1.1 jdolecek /*
132 1.1 jdolecek * cannot get `..' while `vdp' is locked
133 1.1 jdolecek * e.g. procA holds lock on `..' and waits for `vdp'
134 1.1 jdolecek * we wait for `..' and hold lock on `vdp'. deadlock.
135 1.5 wiz * because `vdp' may have been achieved through symlink
136 1.1 jdolecek * fancy detection code that decreases the race
137 1.1 jdolecek * window size is not reasonably possible.
138 1.1 jdolecek *
139 1.1 jdolecek * basically unlock the parent, try and lock the child (..)
140 1.6 perry * if that fails relock the parent (ignoring error) and
141 1.9 chs * fail. Otherwise we have the child (..), attempt to
142 1.1 jdolecek * relock the parent. If that fails unlock the child (..)
143 1.1 jdolecek * and fail. Otherwise we have succeded.
144 1.6 perry *
145 1.1 jdolecek */
146 1.1 jdolecek VOP_UNLOCK(vdp, 0); /* race */
147 1.9 chs error = VFS_VGET(vdp->v_mount, (ino_t)adp->pblock, vpp);
148 1.9 chs vn_lock(vdp, LK_EXCLUSIVE | LK_RETRY);
149 1.1 jdolecek if (error) {
150 1.1 jdolecek *vpp = NULL;
151 1.1 jdolecek return (error);
152 1.1 jdolecek }
153 1.1 jdolecek goto found_lockdone;
154 1.1 jdolecek }
155 1.1 jdolecek
156 1.1 jdolecek /*
157 1.1 jdolecek * hash the name and grab the first block in chain
158 1.1 jdolecek * then walk the chain. if chain has not been fully
159 1.1 jdolecek * walked before, track the count in `tabi'
160 1.1 jdolecek */
161 1.1 jdolecek hval = adoshash(pelt, plen, adp->ntabent, IS_INTER(adp->amp));
162 1.1 jdolecek bn = adp->tab[hval];
163 1.1 jdolecek i = min(adp->tabi[hval], 0);
164 1.1 jdolecek while (bn != 0) {
165 1.7 christos if ((error = VFS_VGET(vdp->v_mount, (ino_t)bn, vpp
166 1.7 christos )) != 0) {
167 1.1 jdolecek #ifdef ADOSFS_DIAGNOSTIC
168 1.1 jdolecek printf("[aget] %d)", error);
169 1.1 jdolecek #endif
170 1.1 jdolecek return(error);
171 1.1 jdolecek }
172 1.1 jdolecek ap = VTOA(*vpp);
173 1.1 jdolecek if (i <= 0) {
174 1.1 jdolecek if (--i < adp->tabi[hval])
175 1.6 perry adp->tabi[hval] = i;
176 1.1 jdolecek /*
177 1.1 jdolecek * last header in chain lock count down by
178 1.1 jdolecek * negating it to positive
179 1.1 jdolecek */
180 1.1 jdolecek if (ap->hashf == 0) {
181 1.1 jdolecek #ifdef DEBUG
182 1.1 jdolecek if (i != adp->tabi[hval])
183 1.1 jdolecek panic("adlookup: wrong chain count");
184 1.1 jdolecek #endif
185 1.1 jdolecek adp->tabi[hval] = -adp->tabi[hval];
186 1.1 jdolecek }
187 1.1 jdolecek }
188 1.6 perry if (strmatch(pelt, plen, ap->name, strlen(ap->name),
189 1.1 jdolecek IS_INTER(adp->amp)))
190 1.1 jdolecek goto found;
191 1.1 jdolecek bn = ap->hashf;
192 1.1 jdolecek vput(*vpp);
193 1.1 jdolecek }
194 1.1 jdolecek *vpp = NULL;
195 1.1 jdolecek /*
196 1.1 jdolecek * not found
197 1.1 jdolecek */
198 1.1 jdolecek if ((nameiop == CREATE || nameiop == RENAME) && last) {
199 1.1 jdolecek
200 1.1 jdolecek if (vdp->v_mount->mnt_flag & MNT_RDONLY)
201 1.1 jdolecek return (EROFS);
202 1.1 jdolecek
203 1.7 christos if ((error = VOP_ACCESS(vdp, VWRITE, ucp, cnp->cn_lwp)) != 0) {
204 1.1 jdolecek #ifdef ADOSFS_DIAGNOSTIC
205 1.1 jdolecek printf("[VOP_ACCESS] %d)", error);
206 1.1 jdolecek #endif
207 1.1 jdolecek return (error);
208 1.1 jdolecek }
209 1.1 jdolecek cnp->cn_nameiop |= SAVENAME;
210 1.1 jdolecek #ifdef ADOSFS_DIAGNOSTIC
211 1.1 jdolecek printf("EJUSTRETURN)");
212 1.1 jdolecek #endif
213 1.1 jdolecek return(EJUSTRETURN);
214 1.1 jdolecek }
215 1.1 jdolecek if ((cnp->cn_flags & MAKEENTRY) && nameiop != CREATE)
216 1.1 jdolecek cache_enter(vdp, NULL, cnp);
217 1.1 jdolecek #ifdef ADOSFS_DIAGNOSTIC
218 1.1 jdolecek printf("ENOENT)");
219 1.1 jdolecek #endif
220 1.1 jdolecek return(ENOENT);
221 1.1 jdolecek
222 1.1 jdolecek found:
223 1.1 jdolecek if (nameiop == DELETE && last) {
224 1.7 christos if ((error = VOP_ACCESS(vdp, VWRITE, ucp, cnp->cn_lwp)) != 0) {
225 1.1 jdolecek if (vdp != *vpp)
226 1.1 jdolecek vput(*vpp);
227 1.1 jdolecek *vpp = NULL;
228 1.1 jdolecek return (error);
229 1.1 jdolecek }
230 1.1 jdolecek nocache = 1;
231 1.6 perry }
232 1.9 chs if (nameiop == RENAME && last) {
233 1.1 jdolecek if (vdp == *vpp)
234 1.1 jdolecek return(EISDIR);
235 1.7 christos if ((error = VOP_ACCESS(vdp, VWRITE, ucp, cnp->cn_lwp)) != 0) {
236 1.1 jdolecek vput(*vpp);
237 1.1 jdolecek *vpp = NULL;
238 1.1 jdolecek return (error);
239 1.1 jdolecek }
240 1.1 jdolecek cnp->cn_flags |= SAVENAME;
241 1.1 jdolecek nocache = 1;
242 1.1 jdolecek }
243 1.1 jdolecek if (vdp == *vpp)
244 1.1 jdolecek VREF(vdp);
245 1.1 jdolecek found_lockdone:
246 1.1 jdolecek if ((cnp->cn_flags & MAKEENTRY) && nocache == 0)
247 1.1 jdolecek cache_enter(vdp, *vpp, cnp);
248 1.1 jdolecek
249 1.1 jdolecek #ifdef ADOSFS_DIAGNOSTIC
250 1.1 jdolecek printf("0)\n");
251 1.1 jdolecek #endif
252 1.1 jdolecek return(0);
253 1.1 jdolecek }
254