ulfs_lookup.c revision 1.41 1 1.41 maya /* $NetBSD: ulfs_lookup.c,v 1.41 2017/06/10 05:29:36 maya Exp $ */
2 1.39 dholland /* from NetBSD: ufs_lookup.c,v 1.135 2015/07/11 11:04:48 mlelstv */
3 1.1 dholland
4 1.1 dholland /*
5 1.1 dholland * Copyright (c) 1989, 1993
6 1.1 dholland * The Regents of the University of California. All rights reserved.
7 1.1 dholland * (c) UNIX System Laboratories, Inc.
8 1.1 dholland * All or some portions of this file are derived from material licensed
9 1.1 dholland * to the University of California by American Telephone and Telegraph
10 1.1 dholland * Co. or Unix System Laboratories, Inc. and are reproduced herein with
11 1.1 dholland * the permission of UNIX System Laboratories, Inc.
12 1.1 dholland *
13 1.1 dholland * Redistribution and use in source and binary forms, with or without
14 1.1 dholland * modification, are permitted provided that the following conditions
15 1.1 dholland * are met:
16 1.1 dholland * 1. Redistributions of source code must retain the above copyright
17 1.1 dholland * notice, this list of conditions and the following disclaimer.
18 1.1 dholland * 2. Redistributions in binary form must reproduce the above copyright
19 1.1 dholland * notice, this list of conditions and the following disclaimer in the
20 1.1 dholland * documentation and/or other materials provided with the distribution.
21 1.1 dholland * 3. Neither the name of the University nor the names of its contributors
22 1.1 dholland * may be used to endorse or promote products derived from this software
23 1.1 dholland * without specific prior written permission.
24 1.1 dholland *
25 1.1 dholland * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
26 1.1 dholland * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27 1.1 dholland * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28 1.1 dholland * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
29 1.1 dholland * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
30 1.1 dholland * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
31 1.1 dholland * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
32 1.1 dholland * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
33 1.1 dholland * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
34 1.1 dholland * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35 1.1 dholland * SUCH DAMAGE.
36 1.1 dholland *
37 1.1 dholland * @(#)ufs_lookup.c 8.9 (Berkeley) 8/11/94
38 1.1 dholland */
39 1.1 dholland
40 1.1 dholland #include <sys/cdefs.h>
41 1.41 maya __KERNEL_RCSID(0, "$NetBSD: ulfs_lookup.c,v 1.41 2017/06/10 05:29:36 maya Exp $");
42 1.1 dholland
43 1.1 dholland #ifdef _KERNEL_OPT
44 1.3 dholland #include "opt_lfs.h"
45 1.1 dholland #endif
46 1.1 dholland
47 1.1 dholland #include <sys/param.h>
48 1.1 dholland #include <sys/systm.h>
49 1.1 dholland #include <sys/namei.h>
50 1.1 dholland #include <sys/buf.h>
51 1.1 dholland #include <sys/file.h>
52 1.1 dholland #include <sys/stat.h>
53 1.1 dholland #include <sys/mount.h>
54 1.1 dholland #include <sys/vnode.h>
55 1.1 dholland #include <sys/kernel.h>
56 1.1 dholland #include <sys/kauth.h>
57 1.1 dholland #include <sys/proc.h>
58 1.1 dholland #include <sys/kmem.h>
59 1.1 dholland
60 1.26 dholland #include <ufs/lfs/lfs.h>
61 1.26 dholland #include <ufs/lfs/lfs_accessors.h>
62 1.13 dholland #include <ufs/lfs/lfs_extern.h>
63 1.13 dholland
64 1.2 dholland #include <ufs/lfs/ulfs_inode.h>
65 1.3 dholland #ifdef LFS_DIRHASH
66 1.2 dholland #include <ufs/lfs/ulfs_dirhash.h>
67 1.1 dholland #endif
68 1.2 dholland #include <ufs/lfs/ulfsmount.h>
69 1.2 dholland #include <ufs/lfs/ulfs_extern.h>
70 1.2 dholland #include <ufs/lfs/ulfs_bswap.h>
71 1.1 dholland
72 1.1 dholland #include <miscfs/genfs/genfs.h>
73 1.1 dholland
74 1.1 dholland #ifdef DIAGNOSTIC
75 1.5 dholland int lfs_dirchk = 1;
76 1.1 dholland #else
77 1.5 dholland int lfs_dirchk = 0;
78 1.1 dholland #endif
79 1.1 dholland
80 1.1 dholland /*
81 1.1 dholland * Convert a component of a pathname into a pointer to a locked inode.
82 1.1 dholland * This is a very central and rather complicated routine.
83 1.1 dholland * If the file system is not maintained in a strict tree hierarchy,
84 1.1 dholland * this can result in a deadlock situation (see comments in code below).
85 1.1 dholland *
86 1.1 dholland * The cnp->cn_nameiop argument is LOOKUP, CREATE, RENAME, or DELETE depending
87 1.1 dholland * on whether the name is to be looked up, created, renamed, or deleted.
88 1.1 dholland * When CREATE, RENAME, or DELETE is specified, information usable in
89 1.1 dholland * creating, renaming, or deleting a directory entry may be calculated.
90 1.1 dholland * If flag has LOCKPARENT or'ed into it and the target of the pathname
91 1.1 dholland * exists, lookup returns both the target and its parent directory locked.
92 1.1 dholland * When creating or renaming and LOCKPARENT is specified, the target may
93 1.1 dholland * not be ".". When deleting and LOCKPARENT is specified, the target may
94 1.1 dholland * be "."., but the caller must check to ensure it does an vrele and vput
95 1.1 dholland * instead of two vputs.
96 1.1 dholland *
97 1.4 dholland * Overall outline of ulfs_lookup:
98 1.1 dholland *
99 1.1 dholland * check accessibility of directory
100 1.1 dholland * look for name in cache, if found, then if at end of path
101 1.1 dholland * and deleting or creating, drop it, else return name
102 1.1 dholland * search for name in directory, to found or notfound
103 1.1 dholland * notfound:
104 1.1 dholland * if creating, return locked directory, leaving info on available slots
105 1.1 dholland * else return error
106 1.1 dholland * found:
107 1.1 dholland * if at end of path and deleting, return information to allow delete
108 1.1 dholland * if at end of path and rewriting (RENAME and LOCKPARENT), lock target
109 1.1 dholland * inode and return info to allow rewrite
110 1.1 dholland * if not at end, add name to cache; if at end and neither creating
111 1.1 dholland * nor deleting, add name to cache
112 1.1 dholland */
113 1.1 dholland int
114 1.4 dholland ulfs_lookup(void *v)
115 1.1 dholland {
116 1.19 hannken struct vop_lookup_v2_args /* {
117 1.1 dholland struct vnode *a_dvp;
118 1.1 dholland struct vnode **a_vpp;
119 1.1 dholland struct componentname *a_cnp;
120 1.1 dholland } */ *ap = v;
121 1.1 dholland struct vnode *vdp = ap->a_dvp; /* vnode for directory being searched */
122 1.1 dholland struct inode *dp = VTOI(vdp); /* inode for directory being searched */
123 1.1 dholland struct buf *bp; /* a buffer of directory entries */
124 1.34 dholland LFS_DIRHEADER *ep; /* the current directory entry */
125 1.1 dholland int entryoffsetinblock; /* offset of ep in bp's buffer */
126 1.1 dholland enum {
127 1.1 dholland NONE, /* need to search a slot for our new entry */
128 1.1 dholland COMPACT, /* a compaction can make a slot in the current
129 1.1 dholland DIRBLKSIZ block */
130 1.1 dholland FOUND, /* found a slot (or no need to search) */
131 1.1 dholland } slotstatus;
132 1.1 dholland doff_t slotoffset; /* offset of area with free space.
133 1.1 dholland a special value -1 for invalid */
134 1.1 dholland int slotsize; /* size of area at slotoffset */
135 1.1 dholland int slotfreespace; /* accumulated amount of space free in
136 1.1 dholland the current DIRBLKSIZ block */
137 1.1 dholland int slotneeded; /* size of the entry we're seeking */
138 1.1 dholland int numdirpasses; /* strategy for directory search */
139 1.1 dholland doff_t endsearch; /* offset to end directory search */
140 1.1 dholland doff_t prevoff; /* previous value of ulr_offset */
141 1.24 hannken struct vnode *tdp; /* returned by vcache_get */
142 1.1 dholland doff_t enduseful; /* pointer past last used dir slot.
143 1.1 dholland used for directory truncation. */
144 1.1 dholland u_long bmask; /* block offset mask */
145 1.1 dholland int error;
146 1.1 dholland struct vnode **vpp = ap->a_vpp;
147 1.1 dholland struct componentname *cnp = ap->a_cnp;
148 1.1 dholland kauth_cred_t cred = cnp->cn_cred;
149 1.1 dholland int flags;
150 1.1 dholland int nameiop = cnp->cn_nameiop;
151 1.15 dholland struct lfs *fs = dp->i_lfs;
152 1.15 dholland int dirblksiz = fs->um_dirblksiz;
153 1.1 dholland ino_t foundino;
154 1.4 dholland struct ulfs_lookup_results *results;
155 1.1 dholland int iswhiteout; /* temp result from cache_lookup() */
156 1.1 dholland
157 1.1 dholland flags = cnp->cn_flags;
158 1.1 dholland
159 1.1 dholland bp = NULL;
160 1.1 dholland slotoffset = -1;
161 1.1 dholland *vpp = NULL;
162 1.1 dholland endsearch = 0; /* silence compiler warning */
163 1.1 dholland
164 1.1 dholland /*
165 1.1 dholland * Produce the auxiliary lookup results into i_crap. Increment
166 1.1 dholland * its serial number so elsewhere we can tell if we're using
167 1.1 dholland * stale results. This should not be done this way. XXX.
168 1.1 dholland */
169 1.1 dholland results = &dp->i_crap;
170 1.1 dholland dp->i_crapcounter++;
171 1.1 dholland
172 1.1 dholland /*
173 1.1 dholland * Check accessiblity of directory.
174 1.1 dholland */
175 1.1 dholland if ((error = VOP_ACCESS(vdp, VEXEC, cred)) != 0)
176 1.1 dholland return (error);
177 1.1 dholland
178 1.1 dholland if ((flags & ISLASTCN) && (vdp->v_mount->mnt_flag & MNT_RDONLY) &&
179 1.1 dholland (nameiop == DELETE || nameiop == RENAME))
180 1.1 dholland return (EROFS);
181 1.1 dholland
182 1.1 dholland /*
183 1.1 dholland * We now have a segment name to search for, and a directory to search.
184 1.1 dholland *
185 1.1 dholland * Before tediously performing a linear scan of the directory,
186 1.1 dholland * check the name cache to see if the directory/name pair
187 1.1 dholland * we are looking for is known already.
188 1.1 dholland */
189 1.1 dholland if (cache_lookup(vdp, cnp->cn_nameptr, cnp->cn_namelen,
190 1.1 dholland cnp->cn_nameiop, cnp->cn_flags, &iswhiteout, vpp)) {
191 1.1 dholland if (iswhiteout) {
192 1.1 dholland cnp->cn_flags |= ISWHITEOUT;
193 1.1 dholland }
194 1.1 dholland return *vpp == NULLVP ? ENOENT : 0;
195 1.1 dholland }
196 1.1 dholland if (iswhiteout) {
197 1.1 dholland /*
198 1.1 dholland * The namecache set iswhiteout without finding a
199 1.1 dholland * cache entry. As of this writing (20121014), this
200 1.1 dholland * can happen if there was a whiteout entry that has
201 1.1 dholland * been invalidated by the lookup. It is not clear if
202 1.1 dholland * it is correct to set ISWHITEOUT in this case or
203 1.1 dholland * not; however, doing so retains the prior behavior,
204 1.1 dholland * so we'll go with that until some clearer answer
205 1.1 dholland * appears. XXX
206 1.1 dholland */
207 1.1 dholland cnp->cn_flags |= ISWHITEOUT;
208 1.1 dholland }
209 1.1 dholland
210 1.1 dholland /*
211 1.1 dholland * Suppress search for slots unless creating
212 1.1 dholland * file and at end of pathname, in which case
213 1.1 dholland * we watch for a place to put the new file in
214 1.1 dholland * case it doesn't already exist.
215 1.1 dholland */
216 1.1 dholland slotstatus = FOUND;
217 1.1 dholland slotfreespace = slotsize = slotneeded = 0;
218 1.1 dholland if ((nameiop == CREATE || nameiop == RENAME) && (flags & ISLASTCN)) {
219 1.1 dholland slotstatus = NONE;
220 1.33 dholland slotneeded = LFS_DIRECTSIZ(fs, cnp->cn_namelen);
221 1.1 dholland }
222 1.1 dholland
223 1.1 dholland /*
224 1.1 dholland * If there is cached information on a previous search of
225 1.1 dholland * this directory, pick up where we last left off.
226 1.1 dholland * We cache only lookups as these are the most common
227 1.1 dholland * and have the greatest payoff. Caching CREATE has little
228 1.1 dholland * benefit as it usually must search the entire directory
229 1.1 dholland * to determine that the entry does not exist. Caching the
230 1.1 dholland * location of the last DELETE or RENAME has not reduced
231 1.1 dholland * profiling time and hence has been removed in the interest
232 1.1 dholland * of simplicity.
233 1.1 dholland */
234 1.1 dholland bmask = vdp->v_mount->mnt_stat.f_iosize - 1;
235 1.1 dholland
236 1.3 dholland #ifdef LFS_DIRHASH
237 1.1 dholland /*
238 1.1 dholland * Use dirhash for fast operations on large directories. The logic
239 1.1 dholland * to determine whether to hash the directory is contained within
240 1.4 dholland * ulfsdirhash_build(); a zero return means that it decided to hash
241 1.1 dholland * this directory and it successfully built up the hash table.
242 1.1 dholland */
243 1.4 dholland if (ulfsdirhash_build(dp) == 0) {
244 1.1 dholland /* Look for a free slot if needed. */
245 1.1 dholland enduseful = dp->i_size;
246 1.1 dholland if (slotstatus != FOUND) {
247 1.4 dholland slotoffset = ulfsdirhash_findfree(dp, slotneeded,
248 1.1 dholland &slotsize);
249 1.1 dholland if (slotoffset >= 0) {
250 1.1 dholland slotstatus = COMPACT;
251 1.4 dholland enduseful = ulfsdirhash_enduseful(dp);
252 1.1 dholland if (enduseful < 0)
253 1.1 dholland enduseful = dp->i_size;
254 1.1 dholland }
255 1.1 dholland }
256 1.1 dholland /* Look up the component. */
257 1.1 dholland numdirpasses = 1;
258 1.1 dholland entryoffsetinblock = 0; /* silence compiler warning */
259 1.4 dholland switch (ulfsdirhash_lookup(dp, cnp->cn_nameptr, cnp->cn_namelen,
260 1.1 dholland &results->ulr_offset, &bp, nameiop == DELETE ? &prevoff : NULL)) {
261 1.1 dholland case 0:
262 1.34 dholland ep = (LFS_DIRHEADER *)((char *)bp->b_data +
263 1.1 dholland (results->ulr_offset & bmask));
264 1.1 dholland goto foundentry;
265 1.1 dholland case ENOENT:
266 1.1 dholland results->ulr_offset = roundup(dp->i_size, dirblksiz);
267 1.1 dholland goto notfound;
268 1.1 dholland default:
269 1.1 dholland /* Something failed; just do a linear search. */
270 1.1 dholland break;
271 1.1 dholland }
272 1.1 dholland }
273 1.3 dholland #endif /* LFS_DIRHASH */
274 1.1 dholland
275 1.1 dholland if (nameiop != LOOKUP || results->ulr_diroff == 0 ||
276 1.1 dholland results->ulr_diroff >= dp->i_size) {
277 1.1 dholland entryoffsetinblock = 0;
278 1.1 dholland results->ulr_offset = 0;
279 1.1 dholland numdirpasses = 1;
280 1.1 dholland } else {
281 1.1 dholland results->ulr_offset = results->ulr_diroff;
282 1.1 dholland if ((entryoffsetinblock = results->ulr_offset & bmask) &&
283 1.4 dholland (error = ulfs_blkatoff(vdp, (off_t)results->ulr_offset,
284 1.1 dholland NULL, &bp, false)))
285 1.1 dholland goto out;
286 1.1 dholland numdirpasses = 2;
287 1.21 joerg namecache_count_2passes();
288 1.1 dholland }
289 1.1 dholland prevoff = results->ulr_offset;
290 1.1 dholland endsearch = roundup(dp->i_size, dirblksiz);
291 1.1 dholland enduseful = 0;
292 1.1 dholland
293 1.1 dholland searchloop:
294 1.1 dholland while (results->ulr_offset < endsearch) {
295 1.1 dholland if (curcpu()->ci_schedstate.spc_flags & SPCF_SHOULDYIELD)
296 1.1 dholland preempt();
297 1.1 dholland /*
298 1.1 dholland * If necessary, get the next directory block.
299 1.1 dholland */
300 1.1 dholland if ((results->ulr_offset & bmask) == 0) {
301 1.1 dholland if (bp != NULL)
302 1.1 dholland brelse(bp, 0);
303 1.4 dholland error = ulfs_blkatoff(vdp, (off_t)results->ulr_offset,
304 1.1 dholland NULL, &bp, false);
305 1.1 dholland if (error)
306 1.1 dholland goto out;
307 1.1 dholland entryoffsetinblock = 0;
308 1.1 dholland }
309 1.1 dholland /*
310 1.1 dholland * If still looking for a slot, and at a DIRBLKSIZ
311 1.1 dholland * boundary, have to start looking for free space again.
312 1.1 dholland */
313 1.1 dholland if (slotstatus == NONE &&
314 1.1 dholland (entryoffsetinblock & (dirblksiz - 1)) == 0) {
315 1.1 dholland slotoffset = -1;
316 1.1 dholland slotfreespace = 0;
317 1.1 dholland }
318 1.1 dholland /*
319 1.1 dholland * Get pointer to next entry.
320 1.1 dholland * Full validation checks are slow, so we only check
321 1.1 dholland * enough to insure forward progress through the
322 1.1 dholland * directory. Complete checks can be run by patching
323 1.5 dholland * "lfs_dirchk" to be true.
324 1.1 dholland */
325 1.1 dholland KASSERT(bp != NULL);
326 1.34 dholland ep = (LFS_DIRHEADER *)((char *)bp->b_data + entryoffsetinblock);
327 1.27 dholland if (lfs_dir_getreclen(fs, ep) == 0 ||
328 1.5 dholland (lfs_dirchk && ulfs_dirbadentry(vdp, ep, entryoffsetinblock))) {
329 1.1 dholland int i;
330 1.1 dholland
331 1.4 dholland ulfs_dirbad(dp, results->ulr_offset, "mangled entry");
332 1.1 dholland i = dirblksiz - (entryoffsetinblock & (dirblksiz - 1));
333 1.1 dholland results->ulr_offset += i;
334 1.1 dholland entryoffsetinblock += i;
335 1.1 dholland continue;
336 1.1 dholland }
337 1.1 dholland
338 1.1 dholland /*
339 1.1 dholland * If an appropriate sized slot has not yet been found,
340 1.1 dholland * check to see if one is available. Also accumulate space
341 1.1 dholland * in the current block so that we can determine if
342 1.1 dholland * compaction is viable.
343 1.1 dholland */
344 1.1 dholland if (slotstatus != FOUND) {
345 1.27 dholland int size = lfs_dir_getreclen(fs, ep);
346 1.1 dholland
347 1.27 dholland if (lfs_dir_getino(fs, ep) != 0)
348 1.26 dholland size -= LFS_DIRSIZ(fs, ep);
349 1.1 dholland if (size > 0) {
350 1.1 dholland if (size >= slotneeded) {
351 1.1 dholland slotstatus = FOUND;
352 1.1 dholland slotoffset = results->ulr_offset;
353 1.27 dholland slotsize = lfs_dir_getreclen(fs, ep);
354 1.1 dholland } else if (slotstatus == NONE) {
355 1.1 dholland slotfreespace += size;
356 1.1 dholland if (slotoffset == -1)
357 1.1 dholland slotoffset = results->ulr_offset;
358 1.1 dholland if (slotfreespace >= slotneeded) {
359 1.1 dholland slotstatus = COMPACT;
360 1.1 dholland slotsize = results->ulr_offset +
361 1.27 dholland lfs_dir_getreclen(fs, ep) -
362 1.1 dholland slotoffset;
363 1.1 dholland }
364 1.1 dholland }
365 1.1 dholland }
366 1.1 dholland }
367 1.1 dholland
368 1.1 dholland /*
369 1.1 dholland * Check for a name match.
370 1.1 dholland */
371 1.27 dholland if (lfs_dir_getino(fs, ep)) {
372 1.1 dholland int namlen;
373 1.1 dholland
374 1.26 dholland namlen = lfs_dir_getnamlen(fs, ep);
375 1.1 dholland if (namlen == cnp->cn_namelen &&
376 1.31 dholland !memcmp(cnp->cn_nameptr, lfs_dir_nameptr(fs, ep),
377 1.1 dholland (unsigned)namlen)) {
378 1.3 dholland #ifdef LFS_DIRHASH
379 1.1 dholland foundentry:
380 1.1 dholland #endif
381 1.1 dholland /*
382 1.1 dholland * Save directory entry's inode number and
383 1.1 dholland * reclen, and release directory buffer.
384 1.1 dholland */
385 1.26 dholland if (!FSFMT(vdp) && lfs_dir_gettype(fs, ep) == LFS_DT_WHT) {
386 1.1 dholland slotstatus = FOUND;
387 1.1 dholland slotoffset = results->ulr_offset;
388 1.27 dholland slotsize = lfs_dir_getreclen(fs, ep);
389 1.1 dholland results->ulr_reclen = slotsize;
390 1.1 dholland /*
391 1.1 dholland * This is used to set
392 1.1 dholland * results->ulr_endoff,
393 1.4 dholland * which may be used by ulfs_direnter()
394 1.1 dholland * as a length to truncate the
395 1.1 dholland * directory to. Therefore, it must
396 1.1 dholland * point past the end of the last
397 1.1 dholland * non-empty directory entry. We don't
398 1.1 dholland * know where that is in this case, so
399 1.1 dholland * we effectively disable shrinking by
400 1.1 dholland * using the existing size of the
401 1.1 dholland * directory.
402 1.1 dholland *
403 1.1 dholland * Note that we wouldn't expect to
404 1.1 dholland * shrink the directory while rewriting
405 1.1 dholland * an existing entry anyway.
406 1.1 dholland */
407 1.1 dholland enduseful = endsearch;
408 1.1 dholland cnp->cn_flags |= ISWHITEOUT;
409 1.1 dholland numdirpasses--;
410 1.1 dholland goto notfound;
411 1.1 dholland }
412 1.27 dholland foundino = lfs_dir_getino(fs, ep);
413 1.27 dholland results->ulr_reclen = lfs_dir_getreclen(fs, ep);
414 1.1 dholland goto found;
415 1.1 dholland }
416 1.1 dholland }
417 1.1 dholland prevoff = results->ulr_offset;
418 1.27 dholland results->ulr_offset += lfs_dir_getreclen(fs, ep);
419 1.27 dholland entryoffsetinblock += lfs_dir_getreclen(fs, ep);
420 1.27 dholland if (lfs_dir_getino(fs, ep))
421 1.1 dholland enduseful = results->ulr_offset;
422 1.1 dholland }
423 1.1 dholland notfound:
424 1.1 dholland /*
425 1.1 dholland * If we started in the middle of the directory and failed
426 1.1 dholland * to find our target, we must check the beginning as well.
427 1.1 dholland */
428 1.1 dholland if (numdirpasses == 2) {
429 1.1 dholland numdirpasses--;
430 1.1 dholland results->ulr_offset = 0;
431 1.1 dholland endsearch = results->ulr_diroff;
432 1.1 dholland goto searchloop;
433 1.1 dholland }
434 1.1 dholland if (bp != NULL)
435 1.1 dholland brelse(bp, 0);
436 1.1 dholland /*
437 1.1 dholland * If creating, and at end of pathname and current
438 1.1 dholland * directory has not been removed, then can consider
439 1.1 dholland * allowing file to be created.
440 1.1 dholland */
441 1.1 dholland if ((nameiop == CREATE || nameiop == RENAME ||
442 1.1 dholland (nameiop == DELETE &&
443 1.1 dholland (cnp->cn_flags & DOWHITEOUT) &&
444 1.1 dholland (cnp->cn_flags & ISWHITEOUT))) &&
445 1.1 dholland (flags & ISLASTCN) && dp->i_nlink != 0) {
446 1.1 dholland /*
447 1.1 dholland * Access for write is interpreted as allowing
448 1.1 dholland * creation of files in the directory.
449 1.1 dholland */
450 1.1 dholland error = VOP_ACCESS(vdp, VWRITE, cred);
451 1.1 dholland if (error)
452 1.1 dholland goto out;
453 1.1 dholland /*
454 1.1 dholland * Return an indication of where the new directory
455 1.1 dholland * entry should be put. If we didn't find a slot,
456 1.1 dholland * then set results->ulr_count to 0 indicating
457 1.1 dholland * that the new slot belongs at the end of the
458 1.1 dholland * directory. If we found a slot, then the new entry
459 1.1 dholland * can be put in the range from results->ulr_offset to
460 1.1 dholland * results->ulr_offset + results->ulr_count.
461 1.1 dholland */
462 1.1 dholland if (slotstatus == NONE) {
463 1.1 dholland results->ulr_offset = roundup(dp->i_size, dirblksiz);
464 1.1 dholland results->ulr_count = 0;
465 1.1 dholland enduseful = results->ulr_offset;
466 1.1 dholland } else if (nameiop == DELETE) {
467 1.1 dholland results->ulr_offset = slotoffset;
468 1.1 dholland if ((results->ulr_offset & (dirblksiz - 1)) == 0)
469 1.1 dholland results->ulr_count = 0;
470 1.1 dholland else
471 1.1 dholland results->ulr_count =
472 1.1 dholland results->ulr_offset - prevoff;
473 1.1 dholland } else {
474 1.1 dholland results->ulr_offset = slotoffset;
475 1.1 dholland results->ulr_count = slotsize;
476 1.1 dholland if (enduseful < slotoffset + slotsize)
477 1.1 dholland enduseful = slotoffset + slotsize;
478 1.1 dholland }
479 1.1 dholland results->ulr_endoff = roundup(enduseful, dirblksiz);
480 1.1 dholland #if 0 /* commented out by dbj. none of the on disk fields changed */
481 1.41 maya dp->i_state |= IN_CHANGE | IN_UPDATE;
482 1.1 dholland #endif
483 1.1 dholland /*
484 1.1 dholland * We return with the directory locked, so that
485 1.1 dholland * the parameters we set up above will still be
486 1.1 dholland * valid if we actually decide to do a direnter().
487 1.1 dholland * We return ni_vp == NULL to indicate that the entry
488 1.1 dholland * does not currently exist; we leave a pointer to
489 1.1 dholland * the (locked) directory inode in ndp->ni_dvp.
490 1.1 dholland *
491 1.1 dholland * NB - if the directory is unlocked, then this
492 1.1 dholland * information cannot be used.
493 1.1 dholland */
494 1.1 dholland error = EJUSTRETURN;
495 1.1 dholland goto out;
496 1.1 dholland }
497 1.1 dholland /*
498 1.1 dholland * Insert name into cache (as non-existent) if appropriate.
499 1.1 dholland */
500 1.1 dholland if (nameiop != CREATE) {
501 1.1 dholland cache_enter(vdp, *vpp, cnp->cn_nameptr, cnp->cn_namelen,
502 1.1 dholland cnp->cn_flags);
503 1.1 dholland }
504 1.1 dholland error = ENOENT;
505 1.1 dholland goto out;
506 1.1 dholland
507 1.1 dholland found:
508 1.1 dholland if (numdirpasses == 2)
509 1.21 joerg namecache_count_pass2();
510 1.1 dholland /*
511 1.1 dholland * Check that directory length properly reflects presence
512 1.1 dholland * of this entry.
513 1.1 dholland */
514 1.26 dholland if (results->ulr_offset + LFS_DIRSIZ(fs, ep) > dp->i_size) {
515 1.4 dholland ulfs_dirbad(dp, results->ulr_offset, "i_size too small");
516 1.1 dholland dp->i_size =
517 1.26 dholland results->ulr_offset + LFS_DIRSIZ(fs, ep);
518 1.1 dholland DIP_ASSIGN(dp, size, dp->i_size);
519 1.41 maya dp->i_state |= IN_CHANGE | IN_UPDATE;
520 1.1 dholland }
521 1.1 dholland brelse(bp, 0);
522 1.1 dholland
523 1.1 dholland /*
524 1.1 dholland * Found component in pathname.
525 1.1 dholland * If the final component of path name, save information
526 1.1 dholland * in the cache as to where the entry was found.
527 1.1 dholland */
528 1.1 dholland if ((flags & ISLASTCN) && nameiop == LOOKUP)
529 1.1 dholland results->ulr_diroff = results->ulr_offset &~ (dirblksiz - 1);
530 1.1 dholland
531 1.1 dholland /*
532 1.1 dholland * If deleting, and at end of pathname, return
533 1.1 dholland * parameters which can be used to remove file.
534 1.1 dholland * Lock the inode, being careful with ".".
535 1.1 dholland */
536 1.1 dholland if (nameiop == DELETE && (flags & ISLASTCN)) {
537 1.1 dholland /*
538 1.1 dholland * Return pointer to current entry in results->ulr_offset,
539 1.1 dholland * and distance past previous entry (if there
540 1.1 dholland * is a previous entry in this block) in results->ulr_count.
541 1.1 dholland * Save directory inode pointer in ndp->ni_dvp for dirremove().
542 1.1 dholland */
543 1.1 dholland if ((results->ulr_offset & (dirblksiz - 1)) == 0)
544 1.1 dholland results->ulr_count = 0;
545 1.1 dholland else
546 1.1 dholland results->ulr_count = results->ulr_offset - prevoff;
547 1.1 dholland if (dp->i_number == foundino) {
548 1.1 dholland vref(vdp);
549 1.1 dholland tdp = vdp;
550 1.1 dholland } else {
551 1.24 hannken error = vcache_get(vdp->v_mount,
552 1.24 hannken &foundino, sizeof(foundino), &tdp);
553 1.1 dholland if (error)
554 1.1 dholland goto out;
555 1.1 dholland }
556 1.1 dholland /*
557 1.1 dholland * Write access to directory required to delete files.
558 1.1 dholland */
559 1.1 dholland error = VOP_ACCESS(vdp, VWRITE, cred);
560 1.1 dholland if (error) {
561 1.24 hannken vrele(tdp);
562 1.1 dholland goto out;
563 1.1 dholland }
564 1.1 dholland /*
565 1.1 dholland * If directory is "sticky", then user must own
566 1.1 dholland * the directory, or the file in it, else she
567 1.1 dholland * may not delete it (unless she's root). This
568 1.1 dholland * implements append-only directories.
569 1.1 dholland */
570 1.1 dholland if (dp->i_mode & ISVTX) {
571 1.1 dholland error = kauth_authorize_vnode(cred, KAUTH_VNODE_DELETE,
572 1.1 dholland tdp, vdp, genfs_can_sticky(cred, dp->i_uid,
573 1.1 dholland VTOI(tdp)->i_uid));
574 1.1 dholland if (error) {
575 1.24 hannken vrele(tdp);
576 1.1 dholland error = EPERM;
577 1.1 dholland goto out;
578 1.1 dholland }
579 1.1 dholland }
580 1.1 dholland *vpp = tdp;
581 1.1 dholland error = 0;
582 1.1 dholland goto out;
583 1.1 dholland }
584 1.1 dholland
585 1.1 dholland /*
586 1.1 dholland * If rewriting (RENAME), return the inode and the
587 1.1 dholland * information required to rewrite the present directory
588 1.1 dholland * Must get inode of directory entry to verify it's a
589 1.1 dholland * regular file, or empty directory.
590 1.1 dholland */
591 1.1 dholland if (nameiop == RENAME && (flags & ISLASTCN)) {
592 1.1 dholland error = VOP_ACCESS(vdp, VWRITE, cred);
593 1.1 dholland if (error)
594 1.1 dholland goto out;
595 1.1 dholland /*
596 1.1 dholland * Careful about locking second inode.
597 1.1 dholland * This can only occur if the target is ".".
598 1.1 dholland */
599 1.1 dholland if (dp->i_number == foundino) {
600 1.1 dholland error = EISDIR;
601 1.1 dholland goto out;
602 1.1 dholland }
603 1.24 hannken error = vcache_get(vdp->v_mount,
604 1.24 hannken &foundino, sizeof(foundino), &tdp);
605 1.1 dholland if (error)
606 1.1 dholland goto out;
607 1.1 dholland *vpp = tdp;
608 1.1 dholland error = 0;
609 1.1 dholland goto out;
610 1.1 dholland }
611 1.1 dholland
612 1.24 hannken if (dp->i_number == foundino) {
613 1.1 dholland vref(vdp); /* we want ourself, ie "." */
614 1.1 dholland *vpp = vdp;
615 1.1 dholland } else {
616 1.24 hannken error = vcache_get(vdp->v_mount,
617 1.24 hannken &foundino, sizeof(foundino), &tdp);
618 1.1 dholland if (error)
619 1.1 dholland goto out;
620 1.1 dholland *vpp = tdp;
621 1.1 dholland }
622 1.1 dholland
623 1.1 dholland /*
624 1.1 dholland * Insert name into cache if appropriate.
625 1.1 dholland */
626 1.1 dholland cache_enter(vdp, *vpp, cnp->cn_nameptr, cnp->cn_namelen, cnp->cn_flags);
627 1.1 dholland error = 0;
628 1.1 dholland
629 1.1 dholland out:
630 1.1 dholland return error;
631 1.1 dholland }
632 1.1 dholland
633 1.1 dholland void
634 1.4 dholland ulfs_dirbad(struct inode *ip, doff_t offset, const char *how)
635 1.1 dholland {
636 1.1 dholland struct mount *mp;
637 1.1 dholland
638 1.1 dholland mp = ITOV(ip)->v_mount;
639 1.1 dholland printf("%s: bad dir ino %llu at offset %d: %s\n",
640 1.1 dholland mp->mnt_stat.f_mntonname, (unsigned long long)ip->i_number,
641 1.1 dholland offset, how);
642 1.25 mlelstv if ((mp->mnt_flag & MNT_RDONLY) == 0)
643 1.1 dholland panic("bad dir");
644 1.1 dholland }
645 1.1 dholland
646 1.1 dholland /*
647 1.1 dholland * Do consistency checking on a directory entry:
648 1.1 dholland * record length must be multiple of 4
649 1.1 dholland * entry must fit in rest of its DIRBLKSIZ block
650 1.1 dholland * record must be large enough to contain entry
651 1.8 dholland * name is not longer than LFS_MAXNAMLEN
652 1.1 dholland * name must be as long as advertised, and null terminated
653 1.1 dholland */
654 1.1 dholland int
655 1.34 dholland ulfs_dirbadentry(struct vnode *dp, LFS_DIRHEADER *ep, int entryoffsetinblock)
656 1.1 dholland {
657 1.1 dholland int i;
658 1.1 dholland int namlen;
659 1.27 dholland unsigned reclen;
660 1.4 dholland struct ulfsmount *ump = VFSTOULFS(dp->v_mount);
661 1.15 dholland struct lfs *fs = ump->um_lfs;
662 1.15 dholland int dirblksiz = fs->um_dirblksiz;
663 1.30 dholland const char *name;
664 1.1 dholland
665 1.26 dholland namlen = lfs_dir_getnamlen(fs, ep);
666 1.27 dholland reclen = lfs_dir_getreclen(fs, ep);
667 1.27 dholland if ((reclen & 0x3) != 0 ||
668 1.27 dholland reclen > dirblksiz - (entryoffsetinblock & (dirblksiz - 1)) ||
669 1.27 dholland reclen < LFS_DIRSIZ(fs, ep) || namlen > LFS_MAXNAMLEN) {
670 1.1 dholland /*return (1); */
671 1.1 dholland printf("First bad, reclen=%#x, DIRSIZ=%lu, namlen=%d, "
672 1.1 dholland "flags=%#x, entryoffsetinblock=%d, dirblksiz = %d\n",
673 1.27 dholland lfs_dir_getreclen(fs, ep),
674 1.26 dholland (u_long)LFS_DIRSIZ(fs, ep),
675 1.1 dholland namlen, dp->v_mount->mnt_flag, entryoffsetinblock,
676 1.1 dholland dirblksiz);
677 1.1 dholland goto bad;
678 1.1 dholland }
679 1.27 dholland if (lfs_dir_getino(fs, ep) == 0)
680 1.1 dholland return (0);
681 1.31 dholland name = lfs_dir_nameptr(fs, ep);
682 1.1 dholland for (i = 0; i < namlen; i++)
683 1.30 dholland if (name[i] == '\0') {
684 1.1 dholland /*return (1); */
685 1.1 dholland printf("Second bad\n");
686 1.1 dholland goto bad;
687 1.1 dholland }
688 1.30 dholland if (name[i])
689 1.1 dholland goto bad;
690 1.1 dholland return (0);
691 1.1 dholland bad:
692 1.1 dholland return (1);
693 1.1 dholland }
694 1.1 dholland
695 1.1 dholland /*
696 1.29 dholland * Assign the contents of directory entry DIRP, on volume FS.
697 1.29 dholland *
698 1.29 dholland * NAME/NAMLEN is the name, which is not necessarily null terminated.
699 1.29 dholland * INUM is the inode number, and DTYPE is the type code (LFS_DT_*).
700 1.29 dholland *
701 1.29 dholland * Note that these values typically come from:
702 1.29 dholland * cnp->cn_nameptr
703 1.29 dholland * cnp->cn_namelen
704 1.29 dholland * ip->i_number
705 1.29 dholland * LFS_IFTODT(ip->i_mode)
706 1.26 dholland *
707 1.26 dholland * Does not set d_reclen.
708 1.1 dholland */
709 1.28 dholland static void
710 1.34 dholland ulfs_direntry_assign(struct lfs *fs, LFS_DIRHEADER *dirp,
711 1.29 dholland const char *name, size_t namlen,
712 1.29 dholland ino_t inum, unsigned dtype)
713 1.26 dholland {
714 1.29 dholland lfs_dir_setino(fs, dirp, inum);
715 1.29 dholland lfs_dir_setnamlen(fs, dirp, namlen);
716 1.29 dholland lfs_dir_settype(fs, dirp, dtype);
717 1.31 dholland memcpy(lfs_dir_nameptr(fs, dirp), name, namlen);
718 1.31 dholland lfs_dir_nameptr(fs, dirp)[namlen] = '\0';
719 1.1 dholland }
720 1.1 dholland
721 1.1 dholland /*
722 1.1 dholland * Write a directory entry after a call to namei, using the parameters
723 1.4 dholland * that ulfs_lookup left in nameidata and in the ulfs_lookup_results.
724 1.1 dholland *
725 1.1 dholland * DVP is the directory to be updated. It must be locked.
726 1.4 dholland * ULR is the ulfs_lookup_results structure from the final lookup step.
727 1.1 dholland * TVP is not used. (XXX: why is it here? remove it)
728 1.1 dholland * CNP is the componentname from the final lookup step.
729 1.28 dholland * INUM is the inode number to insert into the new directory entry.
730 1.28 dholland * DTYPE is the type code (LFS_DT_*) to insert into the new directory entry.
731 1.1 dholland * NEWDIRBP is not used and (XXX) should be removed. The previous
732 1.1 dholland * comment here said it was used by the now-removed softupdates code.
733 1.1 dholland *
734 1.1 dholland * The link count of the target inode is *not* incremented; the
735 1.1 dholland * caller does that.
736 1.1 dholland *
737 1.4 dholland * If ulr->ulr_count is 0, ulfs_lookup did not find space to insert the
738 1.1 dholland * directory entry. ulr_offset, which is the place to put the entry,
739 1.1 dholland * should be on a block boundary (and should be at the end of the
740 1.1 dholland * directory AFAIK) and a fresh block is allocated to put the new
741 1.1 dholland * directory entry in.
742 1.1 dholland *
743 1.4 dholland * If ulr->ulr_count is not zero, ulfs_lookup found a slot to insert
744 1.1 dholland * the entry into. This slot ranges from ulr_offset to ulr_offset +
745 1.1 dholland * ulr_count. However, this slot may already be partially populated
746 1.1 dholland * requiring compaction. See notes below.
747 1.1 dholland *
748 1.1 dholland * Furthermore, if ulr_count is not zero and ulr_endoff is not the
749 1.1 dholland * same as i_size, the directory is truncated to size ulr_endoff.
750 1.1 dholland */
751 1.1 dholland int
752 1.4 dholland ulfs_direnter(struct vnode *dvp, const struct ulfs_lookup_results *ulr,
753 1.28 dholland struct vnode *tvp,
754 1.28 dholland struct componentname *cnp, ino_t inum, unsigned dtype,
755 1.28 dholland struct buf *newdirbp)
756 1.1 dholland {
757 1.1 dholland kauth_cred_t cr;
758 1.1 dholland int newentrysize;
759 1.1 dholland struct inode *dp;
760 1.1 dholland struct buf *bp;
761 1.1 dholland u_int dsize;
762 1.34 dholland LFS_DIRHEADER *ep, *nep;
763 1.12 christos int error, ret, lfs_blkoff, loc, spacefree;
764 1.1 dholland char *dirbuf;
765 1.1 dholland struct timespec ts;
766 1.4 dholland struct ulfsmount *ump = VFSTOULFS(dvp->v_mount);
767 1.15 dholland struct lfs *fs = ump->um_lfs;
768 1.15 dholland int dirblksiz = fs->um_dirblksiz;
769 1.29 dholland const char *name;
770 1.29 dholland unsigned namlen, reclen;
771 1.29 dholland #ifdef LFS_DIRHASH
772 1.29 dholland int dohashadd;
773 1.29 dholland #endif
774 1.1 dholland
775 1.1 dholland error = 0;
776 1.29 dholland name = cnp->cn_nameptr; /* note: not null-terminated */
777 1.29 dholland namlen = cnp->cn_namelen;
778 1.1 dholland cr = cnp->cn_cred;
779 1.1 dholland
780 1.1 dholland dp = VTOI(dvp);
781 1.33 dholland newentrysize = LFS_DIRECTSIZ(fs, namlen);
782 1.1 dholland
783 1.1 dholland if (ulr->ulr_count == 0) {
784 1.1 dholland /*
785 1.1 dholland * If ulr_count is 0, then namei could find no
786 1.1 dholland * space in the directory. Here, ulr_offset will
787 1.1 dholland * be on a directory block boundary and we will write the
788 1.1 dholland * new entry into a fresh block.
789 1.1 dholland */
790 1.1 dholland if (ulr->ulr_offset & (dirblksiz - 1))
791 1.4 dholland panic("ulfs_direnter: newblk");
792 1.14 dholland if ((error = lfs_balloc(dvp, (off_t)ulr->ulr_offset, dirblksiz,
793 1.1 dholland cr, B_CLRBUF | B_SYNC, &bp)) != 0) {
794 1.1 dholland return (error);
795 1.1 dholland }
796 1.1 dholland dp->i_size = ulr->ulr_offset + dirblksiz;
797 1.1 dholland DIP_ASSIGN(dp, size, dp->i_size);
798 1.41 maya dp->i_state |= IN_CHANGE | IN_UPDATE;
799 1.1 dholland uvm_vnp_setsize(dvp, dp->i_size);
800 1.12 christos lfs_blkoff = ulr->ulr_offset & (ump->um_mountp->mnt_stat.f_iosize - 1);
801 1.34 dholland ep = (LFS_DIRHEADER *)((char *)bp->b_data + lfs_blkoff);
802 1.29 dholland ulfs_direntry_assign(fs, ep, name, namlen, inum, dtype);
803 1.29 dholland lfs_dir_setreclen(fs, ep, dirblksiz);
804 1.3 dholland #ifdef LFS_DIRHASH
805 1.1 dholland if (dp->i_dirhash != NULL) {
806 1.4 dholland ulfsdirhash_newblk(dp, ulr->ulr_offset);
807 1.29 dholland ulfsdirhash_add(dp, ep, ulr->ulr_offset);
808 1.12 christos ulfsdirhash_checkblock(dp, (char *)bp->b_data + lfs_blkoff,
809 1.1 dholland ulr->ulr_offset);
810 1.1 dholland }
811 1.1 dholland #endif
812 1.1 dholland error = VOP_BWRITE(bp->b_vp, bp);
813 1.1 dholland vfs_timestamp(&ts);
814 1.14 dholland ret = lfs_update(dvp, &ts, &ts, UPDATE_DIROP);
815 1.1 dholland if (error == 0)
816 1.1 dholland return (ret);
817 1.1 dholland return (error);
818 1.1 dholland }
819 1.1 dholland
820 1.1 dholland /*
821 1.1 dholland * If ulr_count is non-zero, then namei found space for the new
822 1.1 dholland * entry in the range ulr_offset to ulr_offset + ulr_count
823 1.1 dholland * in the directory. To use this space, we may have to compact
824 1.1 dholland * the entries located there, by copying them together towards the
825 1.1 dholland * beginning of the block, leaving the free space in one usable
826 1.1 dholland * chunk at the end.
827 1.1 dholland */
828 1.1 dholland
829 1.1 dholland /*
830 1.1 dholland * Increase size of directory if entry eats into new space.
831 1.1 dholland * This should never push the size past a new multiple of
832 1.1 dholland * DIRBLKSIZ.
833 1.1 dholland *
834 1.1 dholland * N.B. - THIS IS AN ARTIFACT OF 4.2 AND SHOULD NEVER HAPPEN.
835 1.1 dholland */
836 1.1 dholland if (ulr->ulr_offset + ulr->ulr_count > dp->i_size) {
837 1.1 dholland #ifdef DIAGNOSTIC
838 1.4 dholland printf("ulfs_direnter: reached 4.2-only block, "
839 1.1 dholland "not supposed to happen\n");
840 1.1 dholland #endif
841 1.1 dholland dp->i_size = ulr->ulr_offset + ulr->ulr_count;
842 1.1 dholland DIP_ASSIGN(dp, size, dp->i_size);
843 1.41 maya dp->i_state |= IN_CHANGE | IN_UPDATE;
844 1.1 dholland }
845 1.1 dholland /*
846 1.1 dholland * Get the block containing the space for the new directory entry.
847 1.1 dholland */
848 1.4 dholland error = ulfs_blkatoff(dvp, (off_t)ulr->ulr_offset, &dirbuf, &bp, true);
849 1.1 dholland if (error) {
850 1.1 dholland return (error);
851 1.1 dholland }
852 1.1 dholland /*
853 1.1 dholland * Find space for the new entry. In the simple case, the entry at
854 1.1 dholland * offset base will have the space. If it does not, then namei
855 1.1 dholland * arranged that compacting the region ulr_offset to
856 1.1 dholland * ulr_offset + ulr_count would yield the space.
857 1.1 dholland */
858 1.34 dholland ep = (LFS_DIRHEADER *)dirbuf;
859 1.27 dholland dsize = (lfs_dir_getino(fs, ep) != 0) ? LFS_DIRSIZ(fs, ep) : 0;
860 1.27 dholland spacefree = lfs_dir_getreclen(fs, ep) - dsize;
861 1.27 dholland for (loc = lfs_dir_getreclen(fs, ep); loc < ulr->ulr_count; ) {
862 1.34 dholland nep = (LFS_DIRHEADER *)(dirbuf + loc);
863 1.1 dholland
864 1.1 dholland /* Trim the existing slot (NB: dsize may be zero). */
865 1.27 dholland lfs_dir_setreclen(fs, ep, dsize);
866 1.27 dholland ep = LFS_NEXTDIR(fs, ep);
867 1.1 dholland
868 1.27 dholland reclen = lfs_dir_getreclen(fs, nep);
869 1.1 dholland loc += reclen;
870 1.27 dholland if (lfs_dir_getino(fs, nep) == 0) {
871 1.1 dholland /*
872 1.1 dholland * A mid-block unused entry. Such entries are
873 1.1 dholland * never created by the kernel, but fsck_ffs
874 1.1 dholland * can create them (and it doesn't fix them).
875 1.1 dholland *
876 1.1 dholland * Add up the free space, and initialise the
877 1.1 dholland * relocated entry since we don't memcpy it.
878 1.1 dholland */
879 1.1 dholland spacefree += reclen;
880 1.27 dholland lfs_dir_setino(fs, ep, 0);
881 1.1 dholland dsize = 0;
882 1.1 dholland continue;
883 1.1 dholland }
884 1.26 dholland dsize = LFS_DIRSIZ(fs, nep);
885 1.1 dholland spacefree += reclen - dsize;
886 1.3 dholland #ifdef LFS_DIRHASH
887 1.1 dholland if (dp->i_dirhash != NULL)
888 1.4 dholland ulfsdirhash_move(dp, nep,
889 1.1 dholland ulr->ulr_offset + ((char *)nep - dirbuf),
890 1.1 dholland ulr->ulr_offset + ((char *)ep - dirbuf));
891 1.1 dholland #endif
892 1.1 dholland memcpy((void *)ep, (void *)nep, dsize);
893 1.1 dholland }
894 1.1 dholland /*
895 1.1 dholland * Here, `ep' points to a directory entry containing `dsize' in-use
896 1.1 dholland * bytes followed by `spacefree' unused bytes. If ep->d_ino == 0,
897 1.1 dholland * then the entry is completely unused (dsize == 0). The value
898 1.1 dholland * of ep->d_reclen is always indeterminate.
899 1.1 dholland *
900 1.1 dholland * Update the pointer fields in the previous entry (if any),
901 1.1 dholland * copy in the new entry, and write out the block.
902 1.1 dholland */
903 1.27 dholland if (lfs_dir_getino(fs, ep) == 0 ||
904 1.27 dholland (lfs_dir_getino(fs, ep) == ULFS_WINO &&
905 1.31 dholland memcmp(lfs_dir_nameptr(fs, ep), name, namlen) == 0)) {
906 1.1 dholland if (spacefree + dsize < newentrysize)
907 1.4 dholland panic("ulfs_direnter: compact1");
908 1.29 dholland reclen = spacefree + dsize;
909 1.29 dholland #ifdef LFS_DIRHASH
910 1.29 dholland dohashadd = (lfs_dir_getino(fs, ep) == 0);
911 1.29 dholland #endif
912 1.1 dholland } else {
913 1.1 dholland if (spacefree < newentrysize)
914 1.4 dholland panic("ulfs_direnter: compact2");
915 1.29 dholland reclen = spacefree;
916 1.27 dholland lfs_dir_setreclen(fs, ep, dsize);
917 1.27 dholland ep = LFS_NEXTDIR(fs, ep);
918 1.29 dholland #ifdef LFS_DIRHASH
919 1.29 dholland dohashadd = 1;
920 1.29 dholland #endif
921 1.27 dholland }
922 1.27 dholland
923 1.29 dholland ulfs_direntry_assign(fs, ep, name, namlen, inum, dtype);
924 1.29 dholland lfs_dir_setreclen(fs, ep, reclen);
925 1.3 dholland #ifdef LFS_DIRHASH
926 1.29 dholland if (dp->i_dirhash != NULL && dohashadd)
927 1.29 dholland ulfsdirhash_add(dp, ep, ulr->ulr_offset + ((char *)ep - dirbuf));
928 1.1 dholland if (dp->i_dirhash != NULL)
929 1.4 dholland ulfsdirhash_checkblock(dp, dirbuf -
930 1.1 dholland (ulr->ulr_offset & (dirblksiz - 1)),
931 1.1 dholland ulr->ulr_offset & ~(dirblksiz - 1));
932 1.1 dholland #endif
933 1.1 dholland error = VOP_BWRITE(bp->b_vp, bp);
934 1.41 maya dp->i_state |= IN_CHANGE | IN_UPDATE;
935 1.1 dholland /*
936 1.1 dholland * If all went well, and the directory can be shortened, proceed
937 1.1 dholland * with the truncation. Note that we have to unlock the inode for
938 1.1 dholland * the entry that we just entered, as the truncation may need to
939 1.1 dholland * lock other inodes which can lead to deadlock if we also hold a
940 1.1 dholland * lock on the newly entered node.
941 1.1 dholland */
942 1.1 dholland if (error == 0 && ulr->ulr_endoff && ulr->ulr_endoff < dp->i_size) {
943 1.3 dholland #ifdef LFS_DIRHASH
944 1.1 dholland if (dp->i_dirhash != NULL)
945 1.4 dholland ulfsdirhash_dirtrunc(dp, ulr->ulr_endoff);
946 1.1 dholland #endif
947 1.14 dholland (void) lfs_truncate(dvp, (off_t)ulr->ulr_endoff, IO_SYNC, cr);
948 1.1 dholland }
949 1.1 dholland return (error);
950 1.1 dholland }
951 1.1 dholland
952 1.1 dholland /*
953 1.1 dholland * Remove a directory entry after a call to namei, using the
954 1.4 dholland * parameters that ulfs_lookup left in nameidata and in the
955 1.4 dholland * ulfs_lookup_results.
956 1.1 dholland *
957 1.1 dholland * DVP is the directory to be updated. It must be locked.
958 1.4 dholland * ULR is the ulfs_lookup_results structure from the final lookup step.
959 1.1 dholland * IP, if not null, is the inode being unlinked.
960 1.1 dholland * FLAGS may contain DOWHITEOUT.
961 1.1 dholland * ISRMDIR is not used and (XXX) should be removed.
962 1.1 dholland *
963 1.1 dholland * If FLAGS contains DOWHITEOUT the entry is replaced with a whiteout
964 1.1 dholland * instead of being cleared.
965 1.1 dholland *
966 1.1 dholland * ulr->ulr_offset contains the position of the directory entry
967 1.1 dholland * to be removed.
968 1.1 dholland *
969 1.1 dholland * ulr->ulr_reclen contains the size of the directory entry to be
970 1.1 dholland * removed.
971 1.1 dholland *
972 1.1 dholland * ulr->ulr_count contains the size of the *previous* directory
973 1.1 dholland * entry. This allows finding it, for free space management. If
974 1.1 dholland * ulr_count is 0, the target entry is at the beginning of the
975 1.1 dholland * directory. (Does this ever happen? The first entry should be ".",
976 1.1 dholland * which should only be removed at rmdir time. Does rmdir come here
977 1.1 dholland * to clear out the "." and ".." entries? Perhaps, but I doubt it.)
978 1.1 dholland *
979 1.1 dholland * The space is marked free by adding it to the record length (not
980 1.1 dholland * name length) of the preceding entry. If the first entry becomes
981 1.1 dholland * free, it is marked free by setting the inode number to 0.
982 1.1 dholland *
983 1.1 dholland * The link count of IP is decremented. Note that this is not the
984 1.4 dholland * inverse behavior of ulfs_direnter, which does not adjust link
985 1.1 dholland * counts. Sigh.
986 1.1 dholland */
987 1.1 dholland int
988 1.4 dholland ulfs_dirremove(struct vnode *dvp, const struct ulfs_lookup_results *ulr,
989 1.1 dholland struct inode *ip, int flags, int isrmdir)
990 1.1 dholland {
991 1.1 dholland struct inode *dp = VTOI(dvp);
992 1.26 dholland struct lfs *fs = dp->i_lfs;
993 1.34 dholland LFS_DIRHEADER *ep;
994 1.1 dholland struct buf *bp;
995 1.1 dholland int error;
996 1.1 dholland
997 1.1 dholland if (flags & DOWHITEOUT) {
998 1.1 dholland /*
999 1.4 dholland * Whiteout entry: set d_ino to ULFS_WINO.
1000 1.1 dholland */
1001 1.4 dholland error = ulfs_blkatoff(dvp, (off_t)ulr->ulr_offset, (void *)&ep,
1002 1.1 dholland &bp, true);
1003 1.1 dholland if (error)
1004 1.1 dholland return (error);
1005 1.27 dholland lfs_dir_setino(fs, ep, ULFS_WINO);
1006 1.26 dholland lfs_dir_settype(fs, ep, LFS_DT_WHT);
1007 1.1 dholland goto out;
1008 1.1 dholland }
1009 1.1 dholland
1010 1.4 dholland if ((error = ulfs_blkatoff(dvp,
1011 1.1 dholland (off_t)(ulr->ulr_offset - ulr->ulr_count), (void *)&ep, &bp, true)) != 0)
1012 1.1 dholland return (error);
1013 1.1 dholland
1014 1.3 dholland #ifdef LFS_DIRHASH
1015 1.1 dholland /*
1016 1.1 dholland * Remove the dirhash entry. This is complicated by the fact
1017 1.1 dholland * that `ep' is the previous entry when ulr_count != 0.
1018 1.1 dholland */
1019 1.1 dholland if (dp->i_dirhash != NULL)
1020 1.4 dholland ulfsdirhash_remove(dp, (ulr->ulr_count == 0) ? ep :
1021 1.27 dholland LFS_NEXTDIR(fs, ep), ulr->ulr_offset);
1022 1.1 dholland #endif
1023 1.1 dholland
1024 1.1 dholland if (ulr->ulr_count == 0) {
1025 1.1 dholland /*
1026 1.1 dholland * First entry in block: set d_ino to zero.
1027 1.1 dholland */
1028 1.27 dholland lfs_dir_setino(fs, ep, 0);
1029 1.1 dholland } else {
1030 1.1 dholland /*
1031 1.1 dholland * Collapse new free space into previous entry.
1032 1.1 dholland */
1033 1.27 dholland lfs_dir_setreclen(fs, ep,
1034 1.27 dholland lfs_dir_getreclen(fs, ep) + ulr->ulr_reclen);
1035 1.1 dholland }
1036 1.1 dholland
1037 1.3 dholland #ifdef LFS_DIRHASH
1038 1.1 dholland if (dp->i_dirhash != NULL) {
1039 1.15 dholland int dirblksiz = ip->i_lfs->um_dirblksiz;
1040 1.4 dholland ulfsdirhash_checkblock(dp, (char *)ep -
1041 1.1 dholland ((ulr->ulr_offset - ulr->ulr_count) & (dirblksiz - 1)),
1042 1.1 dholland ulr->ulr_offset & ~(dirblksiz - 1));
1043 1.1 dholland }
1044 1.1 dholland #endif
1045 1.1 dholland
1046 1.1 dholland out:
1047 1.1 dholland if (ip) {
1048 1.1 dholland ip->i_nlink--;
1049 1.1 dholland DIP_ASSIGN(ip, nlink, ip->i_nlink);
1050 1.41 maya ip->i_state |= IN_CHANGE;
1051 1.1 dholland }
1052 1.1 dholland /*
1053 1.1 dholland * XXX did it ever occur to anyone that it might be a good
1054 1.1 dholland * idea to restore ip->i_nlink if this fails? Or something?
1055 1.1 dholland * Currently on error return from this function the state of
1056 1.1 dholland * ip->i_nlink depends on what happened, and callers
1057 1.1 dholland * definitely do not take this into account.
1058 1.1 dholland */
1059 1.1 dholland error = VOP_BWRITE(bp->b_vp, bp);
1060 1.41 maya dp->i_state |= IN_CHANGE | IN_UPDATE;
1061 1.1 dholland /*
1062 1.1 dholland * If the last named reference to a snapshot goes away,
1063 1.1 dholland * drop its snapshot reference so that it will be reclaimed
1064 1.1 dholland * when last open reference goes away.
1065 1.1 dholland */
1066 1.1 dholland if (ip != 0 && (ip->i_flags & SF_SNAPSHOT) != 0 &&
1067 1.1 dholland ip->i_nlink == 0)
1068 1.6 dholland ulfs_snapgone(ip);
1069 1.1 dholland return (error);
1070 1.1 dholland }
1071 1.1 dholland
1072 1.1 dholland /*
1073 1.1 dholland * Rewrite an existing directory entry to point at the inode supplied.
1074 1.1 dholland *
1075 1.1 dholland * DP is the directory to update.
1076 1.1 dholland * OFFSET is the position of the entry in question. It may come
1077 1.4 dholland * from ulr_offset of a ulfs_lookup_results.
1078 1.1 dholland * OIP is the old inode the directory previously pointed to.
1079 1.1 dholland * NEWINUM is the number of the new inode.
1080 1.1 dholland * NEWTYPE is the new value for the type field of the directory entry.
1081 1.1 dholland * (This is ignored if the fs doesn't support that.)
1082 1.1 dholland * ISRMDIR is not used and (XXX) should be removed.
1083 1.1 dholland * IFLAGS are added to DP's inode flags.
1084 1.1 dholland *
1085 1.1 dholland * The link count of OIP is decremented. Note that the link count of
1086 1.1 dholland * the new inode is *not* incremented. Yay for symmetry.
1087 1.1 dholland */
1088 1.1 dholland int
1089 1.4 dholland ulfs_dirrewrite(struct inode *dp, off_t offset,
1090 1.1 dholland struct inode *oip, ino_t newinum, int newtype,
1091 1.1 dholland int isrmdir, int iflags)
1092 1.1 dholland {
1093 1.26 dholland struct lfs *fs = dp->i_lfs;
1094 1.1 dholland struct buf *bp;
1095 1.34 dholland LFS_DIRHEADER *ep;
1096 1.1 dholland struct vnode *vdp = ITOV(dp);
1097 1.1 dholland int error;
1098 1.1 dholland
1099 1.4 dholland error = ulfs_blkatoff(vdp, offset, (void *)&ep, &bp, true);
1100 1.1 dholland if (error)
1101 1.1 dholland return (error);
1102 1.27 dholland lfs_dir_setino(fs, ep, newinum);
1103 1.26 dholland lfs_dir_settype(fs, ep, newtype);
1104 1.1 dholland oip->i_nlink--;
1105 1.1 dholland DIP_ASSIGN(oip, nlink, oip->i_nlink);
1106 1.41 maya oip->i_state |= IN_CHANGE;
1107 1.1 dholland error = VOP_BWRITE(bp->b_vp, bp);
1108 1.41 maya dp->i_state |= iflags;
1109 1.1 dholland /*
1110 1.1 dholland * If the last named reference to a snapshot goes away,
1111 1.1 dholland * drop its snapshot reference so that it will be reclaimed
1112 1.1 dholland * when last open reference goes away.
1113 1.1 dholland */
1114 1.1 dholland if ((oip->i_flags & SF_SNAPSHOT) != 0 && oip->i_nlink == 0)
1115 1.6 dholland ulfs_snapgone(oip);
1116 1.1 dholland return (error);
1117 1.1 dholland }
1118 1.1 dholland
1119 1.1 dholland /*
1120 1.1 dholland * Check if a directory is empty or not.
1121 1.1 dholland * Inode supplied must be locked.
1122 1.1 dholland *
1123 1.7 dholland * Using a struct lfs_dirtemplate here is not precisely
1124 1.7 dholland * what we want, but better than using a struct lfs_direct.
1125 1.1 dholland *
1126 1.1 dholland * NB: does not handle corrupted directories.
1127 1.1 dholland */
1128 1.1 dholland int
1129 1.4 dholland ulfs_dirempty(struct inode *ip, ino_t parentino, kauth_cred_t cred)
1130 1.1 dholland {
1131 1.26 dholland struct lfs *fs = ip->i_lfs;
1132 1.1 dholland doff_t off;
1133 1.34 dholland union lfs_dirtemplate dbuf;
1134 1.34 dholland LFS_DIRHEADER *dp = (LFS_DIRHEADER *)&dbuf;
1135 1.1 dholland int error, namlen;
1136 1.30 dholland const char *name;
1137 1.1 dholland size_t count;
1138 1.34 dholland /* XXX this should probably use LFS_DIRECTSIZ(fs, 2) */
1139 1.34 dholland #define MINDIRSIZ (sizeof (struct lfs_dirtemplate64) / 2)
1140 1.1 dholland
1141 1.27 dholland for (off = 0; off < ip->i_size; off += lfs_dir_getreclen(fs, dp)) {
1142 1.22 riastrad error = ulfs_bufio(UIO_READ, ITOV(ip), (void *)dp, MINDIRSIZ,
1143 1.22 riastrad off, IO_NODELOCKED, cred, &count, NULL);
1144 1.1 dholland /*
1145 1.1 dholland * Since we read MINDIRSIZ, residual must
1146 1.1 dholland * be 0 unless we're at end of file.
1147 1.1 dholland */
1148 1.1 dholland if (error || count != 0)
1149 1.1 dholland return (0);
1150 1.1 dholland /* avoid infinite loops */
1151 1.27 dholland if (lfs_dir_getreclen(fs, dp) == 0)
1152 1.1 dholland return (0);
1153 1.1 dholland /* skip empty entries */
1154 1.27 dholland if (lfs_dir_getino(fs, dp) == 0 ||
1155 1.27 dholland lfs_dir_getino(fs, dp) == ULFS_WINO)
1156 1.1 dholland continue;
1157 1.1 dholland /* accept only "." and ".." */
1158 1.26 dholland namlen = lfs_dir_getnamlen(fs, dp);
1159 1.31 dholland name = lfs_dir_nameptr(fs, dp);
1160 1.1 dholland if (namlen > 2)
1161 1.1 dholland return (0);
1162 1.30 dholland if (name[0] != '.')
1163 1.1 dholland return (0);
1164 1.1 dholland /*
1165 1.1 dholland * At this point namlen must be 1 or 2.
1166 1.1 dholland * 1 implies ".", 2 implies ".." if second
1167 1.1 dholland * char is also "."
1168 1.1 dholland */
1169 1.27 dholland if (namlen == 1 && lfs_dir_getino(fs, dp) == ip->i_number)
1170 1.1 dholland continue;
1171 1.30 dholland if (name[1] == '.' && lfs_dir_getino(fs, dp) == parentino)
1172 1.1 dholland continue;
1173 1.1 dholland return (0);
1174 1.1 dholland }
1175 1.1 dholland return (1);
1176 1.1 dholland }
1177 1.1 dholland
1178 1.4 dholland #define ULFS_DIRRABLKS 0
1179 1.4 dholland int ulfs_dirrablks = ULFS_DIRRABLKS;
1180 1.1 dholland
1181 1.1 dholland /*
1182 1.4 dholland * ulfs_blkatoff: Return buffer with the contents of block "offset" from
1183 1.1 dholland * the beginning of directory "vp". If "res" is non-NULL, fill it in with
1184 1.1 dholland * a pointer to the remaining space in the directory. If the caller intends
1185 1.1 dholland * to modify the buffer returned, "modify" must be true.
1186 1.1 dholland */
1187 1.1 dholland
1188 1.1 dholland int
1189 1.4 dholland ulfs_blkatoff(struct vnode *vp, off_t offset, char **res, struct buf **bpp,
1190 1.1 dholland bool modify)
1191 1.1 dholland {
1192 1.17 martin struct inode *ip __diagused;
1193 1.1 dholland struct buf *bp;
1194 1.1 dholland daddr_t lbn;
1195 1.4 dholland const int dirrablks = ulfs_dirrablks;
1196 1.1 dholland daddr_t *blks;
1197 1.1 dholland int *blksizes;
1198 1.1 dholland int run, error;
1199 1.1 dholland struct mount *mp = vp->v_mount;
1200 1.1 dholland const int bshift = mp->mnt_fs_bshift;
1201 1.1 dholland const int bsize = 1 << bshift;
1202 1.1 dholland off_t eof;
1203 1.1 dholland
1204 1.1 dholland blks = kmem_alloc((1 + dirrablks) * sizeof(daddr_t), KM_SLEEP);
1205 1.1 dholland blksizes = kmem_alloc((1 + dirrablks) * sizeof(int), KM_SLEEP);
1206 1.1 dholland ip = VTOI(vp);
1207 1.1 dholland KASSERT(vp->v_size == ip->i_size);
1208 1.1 dholland GOP_SIZE(vp, vp->v_size, &eof, 0);
1209 1.1 dholland lbn = offset >> bshift;
1210 1.1 dholland
1211 1.1 dholland for (run = 0; run <= dirrablks;) {
1212 1.1 dholland const off_t curoff = lbn << bshift;
1213 1.1 dholland const int size = MIN(eof - curoff, bsize);
1214 1.1 dholland
1215 1.1 dholland if (size == 0) {
1216 1.1 dholland break;
1217 1.1 dholland }
1218 1.1 dholland KASSERT(curoff < eof);
1219 1.1 dholland blks[run] = lbn;
1220 1.1 dholland blksizes[run] = size;
1221 1.1 dholland lbn++;
1222 1.1 dholland run++;
1223 1.1 dholland if (size != bsize) {
1224 1.1 dholland break;
1225 1.1 dholland }
1226 1.1 dholland }
1227 1.1 dholland KASSERT(run >= 1);
1228 1.1 dholland error = breadn(vp, blks[0], blksizes[0], &blks[1], &blksizes[1],
1229 1.23 maxv run - 1, (modify ? B_MODIFY : 0), &bp);
1230 1.1 dholland if (error != 0) {
1231 1.1 dholland *bpp = NULL;
1232 1.1 dholland goto out;
1233 1.1 dholland }
1234 1.1 dholland if (res) {
1235 1.1 dholland *res = (char *)bp->b_data + (offset & (bsize - 1));
1236 1.1 dholland }
1237 1.1 dholland *bpp = bp;
1238 1.1 dholland
1239 1.1 dholland out:
1240 1.1 dholland kmem_free(blks, (1 + dirrablks) * sizeof(daddr_t));
1241 1.1 dholland kmem_free(blksizes, (1 + dirrablks) * sizeof(int));
1242 1.1 dholland return error;
1243 1.1 dholland }
1244