sys/gnu/vfs/ext2fs: Rename ROOTINO to EXT2_ROOTINO
[dragonfly.git] / sys / gnu / vfs / ext2fs / ext2_lookup.c
1 /*
2  *  modified for Lites 1.1
3  *
4  *  Aug 1995, Godmar Back (gback@cs.utah.edu)
5  *  University of Utah, Department of Computer Science
6  *
7  * $FreeBSD: src/sys/gnu/ext2fs/ext2_lookup.c,v 1.21.2.3 2002/11/17 02:02:42 bde Exp $
8  */
9 /*
10  * Copyright (c) 1989, 1993
11  *      The Regents of the University of California.  All rights reserved.
12  * (c) UNIX System Laboratories, Inc.
13  * All or some portions of this file are derived from material licensed
14  * to the University of California by American Telephone and Telegraph
15  * Co. or Unix System Laboratories, Inc. and are reproduced herein with
16  * the permission of UNIX System Laboratories, Inc.
17  *
18  * Redistribution and use in source and binary forms, with or without
19  * modification, are permitted provided that the following conditions
20  * are met:
21  * 1. Redistributions of source code must retain the above copyright
22  *    notice, this list of conditions and the following disclaimer.
23  * 2. Redistributions in binary form must reproduce the above copyright
24  *    notice, this list of conditions and the following disclaimer in the
25  *    documentation and/or other materials provided with the distribution.
26  * 3. All advertising materials mentioning features or use of this software
27  *    must display the following acknowledgement:
28  *      This product includes software developed by the University of
29  *      California, Berkeley and its contributors.
30  * 4. Neither the name of the University nor the names of its contributors
31  *    may be used to endorse or promote products derived from this software
32  *    without specific prior written permission.
33  *
34  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
35  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
36  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
37  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
38  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
39  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
40  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
41  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
42  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
43  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
44  * SUCH DAMAGE.
45  *
46  *      @(#)ufs_lookup.c        8.6 (Berkeley) 4/1/94
47  */
48
49 #include <sys/param.h>
50 #include <sys/systm.h>
51 #include <sys/namei.h>
52 #include <sys/buf.h>
53 #include <sys/mount.h>
54 #include <sys/vnode.h>
55 #include <sys/malloc.h>
56 #include <sys/dirent.h>
57
58 #include "quota.h"
59 #include "inode.h"
60 #include "dir.h"
61 #include "ext2mount.h"
62 #include "ext2_extern.h"
63 #include "ext2_fs.h"
64 #include "ext2_fs_sb.h"
65
66 /*
67    DIRBLKSIZE in ffs is DEV_BSIZE (in most cases 512)
68    while it is the native blocksize in ext2fs - thus, a #define
69    is no longer appropriate
70 */
71 #undef  DIRBLKSIZ
72
73 extern  int dirchk;
74
75 static u_char ext2_ft_to_dt[] = {
76         DT_UNKNOWN,             /* EXT2_FT_UNKNOWN */
77         DT_REG,                 /* EXT2_FT_REG_FILE */
78         DT_DIR,                 /* EXT2_FT_DIR */
79         DT_CHR,                 /* EXT2_FT_CHRDEV */
80         DT_BLK,                 /* EXT2_FT_BLKDEV */
81         DT_FIFO,                /* EXT2_FT_FIFO */
82         DT_SOCK,                /* EXT2_FT_SOCK */
83         DT_LNK,                 /* EXT2_FT_SYMLINK */
84 };
85 #define FTTODT(ft)                                              \
86     ((ft) > NELEM(ext2_ft_to_dt) ?      \
87     DT_UNKNOWN : ext2_ft_to_dt[(ft)])
88
89 static u_char dt_to_ext2_ft[] = {
90         EXT2_FT_UNKNOWN,        /* DT_UNKNOWN */
91         EXT2_FT_FIFO,           /* DT_FIFO */
92         EXT2_FT_CHRDEV,         /* DT_CHR */
93         EXT2_FT_UNKNOWN,        /* unused */
94         EXT2_FT_DIR,            /* DT_DIR */
95         EXT2_FT_UNKNOWN,        /* unused */
96         EXT2_FT_BLKDEV,         /* DT_BLK */
97         EXT2_FT_UNKNOWN,        /* unused */
98         EXT2_FT_REG_FILE,       /* DT_REG */
99         EXT2_FT_UNKNOWN,        /* unused */
100         EXT2_FT_SYMLINK,        /* DT_LNK */
101         EXT2_FT_UNKNOWN,        /* unused */
102         EXT2_FT_SOCK,           /* DT_SOCK */
103         EXT2_FT_UNKNOWN,        /* unused */
104         EXT2_FT_UNKNOWN,        /* DT_WHT */
105 };
106 #define DTTOFT(dt)                                              \
107     ((dt) > NELEM(dt_to_ext2_ft) ?      \
108     EXT2_FT_UNKNOWN : dt_to_ext2_ft[(dt)])
109
110 static int      ext2_dirbadentry (struct vnode *dp,
111                                       struct ext2_dir_entry_2 *de,
112                                       int entryoffsetinblock);
113
114 /*
115  * Vnode op for reading directories.
116  *
117  * The routine below assumes that the on-disk format of a directory
118  * is the same as that defined by <sys/dirent.h>. If the on-disk
119  * format changes, then it will be necessary to do a conversion
120  * from the on-disk format that read returns to the format defined
121  * by <sys/dirent.h>.
122  */
123 /*
124  * this is exactly what we do here - the problem is that the conversion
125  * will blow up some entries by four bytes, so it can't be done in place.
126  * This is too bad. Right now the conversion is done entry by entry, the
127  * converted entry is sent via uiomove.
128  *
129  * XXX allocate a buffer, convert as many entries as possible, then send
130  * the whole buffer to uiomove
131  *
132  * ext2_readdir(struct vnode *a_vp, struct uio *a_uio, struct ucred *a_cred)
133  */
134 int
135 ext2_readdir(struct vop_readdir_args *ap)
136 {
137         struct uio *uio = ap->a_uio;
138         int count, error;
139         struct ext2_dir_entry_2 *edp, *dp;
140         int ncookies;
141         struct uio auio;
142         struct iovec aiov;
143         caddr_t dirbuf;
144         int DIRBLKSIZ = VTOI(ap->a_vp)->i_e2fs->s_blocksize;
145         int readcnt, retval;
146         off_t startoffset = uio->uio_offset;
147
148         error = vn_lock(ap->a_vp, LK_EXCLUSIVE | LK_RETRY | LK_FAILRECLAIM);
149         if (error)
150                 return(error);
151
152         count = uio->uio_resid;
153         /*
154          * Avoid complications for partial directory entries by adjusting
155          * the i/o to end at a block boundary.  Don't give up (like ufs
156          * does) if the initial adjustment gives a negative count, since
157          * many callers don't supply a large enough buffer.  The correct
158          * size is a little larger than DIRBLKSIZ to allow for expansion
159          * of directory entries, but some callers just use 512.
160          */
161         count -= (uio->uio_offset + count) & (DIRBLKSIZ -1);
162         if (count <= 0)
163                 count += DIRBLKSIZ;
164         if (count > MAXBSIZE)           /* limit to a reasonable size */
165                 count = MAXBSIZE;
166
167 #ifdef EXT2FS_DEBUG
168         kprintf("ext2_readdir: uio_offset = %lld, uio_resid = %d, count = %d\n",
169             uio->uio_offset, uio->uio_resid, count);
170 #endif
171
172         auio = *uio;
173         auio.uio_iov = &aiov;
174         auio.uio_iovcnt = 1;
175         auio.uio_resid = count;
176         auio.uio_segflg = UIO_SYSSPACE;
177         aiov.iov_len = count;
178         dirbuf = kmalloc(count, M_TEMP, M_WAITOK);
179         aiov.iov_base = dirbuf;
180         error = VOP_READ(ap->a_vp, &auio, 0, ap->a_cred);
181         if (error == 0) {
182                 readcnt = count - auio.uio_resid;
183                 edp = (struct ext2_dir_entry_2 *)&dirbuf[readcnt];
184                 ncookies = 0;
185                 for (dp = (struct ext2_dir_entry_2 *)dirbuf;
186                     !error && uio->uio_resid > 0 && dp < edp; ) {
187                         /*-
188                          * "New" ext2fs directory entries differ in 3 ways
189                          * from ufs on-disk ones:
190                          * - the name is not necessarily NUL-terminated.
191                          * - the file type field always exists and always
192                          * follows the name length field.
193                          * - the file type is encoded in a different way.
194                          *
195                          * "Old" ext2fs directory entries need no special
196                          * conversions, since they binary compatible with
197                          * "new" entries having a file type of 0 (i.e.,
198                          * EXT2_FT_UNKNOWN).  Splitting the old name length
199                          * field didn't make a mess like it did in ufs,
200                          * because ext2fs uses a machine-dependent disk
201                          * layout.
202                          */
203                         if (dp->rec_len <= 0) {
204                                 error = EIO;
205                                 break;
206                         }
207                         retval = vop_write_dirent(&error, uio, dp->inode,
208                             FTTODT(dp->file_type), dp->name_len, dp->name);
209
210                         if (retval)
211                                 break;
212                         /* advance dp */
213                         dp = (struct ext2_dir_entry_2 *)((char *)dp + dp->rec_len);
214                         if (!error)
215                                 ncookies++;
216                 }
217                 /* we need to correct uio_offset */
218                 uio->uio_offset = startoffset + (caddr_t)dp - dirbuf;
219
220                 if (!error && ap->a_ncookies != NULL) {
221                         off_t *cookiep, *cookies, *ecookies;
222                         off_t off;
223
224                         if (uio->uio_segflg != UIO_SYSSPACE || uio->uio_iovcnt != 1)
225                                 panic("ext2fs_readdir: unexpected uio from NFS server");
226                         if (ncookies) {
227                                 cookies = kmalloc(ncookies * sizeof(off_t),
228                                                   M_TEMP, M_WAITOK);
229                         } else {
230                                 cookies = kmalloc(sizeof(off_t), M_TEMP,
231                                                   M_WAITOK);
232                         }
233                         off = startoffset;
234                         for (dp = (struct ext2_dir_entry_2 *)dirbuf,
235                              cookiep = cookies, ecookies = cookies + ncookies;
236                              cookiep < ecookies;
237                              dp = (struct ext2_dir_entry_2 *)((caddr_t) dp + dp->rec_len)) {
238                                 off += dp->rec_len;
239                                 *cookiep++ = off;
240                         }
241                         *ap->a_ncookies = ncookies;
242                         *ap->a_cookies = cookies;
243                 }
244         }
245         kfree(dirbuf, M_TEMP);
246         if (ap->a_eofflag)
247                 *ap->a_eofflag = VTOI(ap->a_vp)->i_size <= uio->uio_offset;
248         vn_unlock(ap->a_vp);
249         return (error);
250 }
251
252 /*
253  * Convert a component of a pathname into a pointer to a locked inode.
254  * This is a very central and rather complicated routine.
255  * If the file system is not maintained in a strict tree hierarchy,
256  * this can result in a deadlock situation (see comments in code below).
257  *
258  * The cnp->cn_nameiop argument is LOOKUP, CREATE, RENAME, or DELETE depending
259  * on whether the name is to be looked up, created, renamed, or deleted.
260  * When CREATE, RENAME, or DELETE is specified, information usable in
261  * creating, renaming, or deleting a directory entry may be calculated.
262  * If flag has LOCKPARENT or'ed into it and the target of the pathname
263  * exists, lookup returns both the target and its parent directory locked.
264  * When creating or renaming and LOCKPARENT is specified, the target may
265  * not be ".".  When deleting and LOCKPARENT is specified, the target may
266  * be "."., but the caller must check to ensure it does an vrele and vput
267  * instead of two vputs.
268  *
269  * Overall outline of ufs_lookup:
270  *
271  *      search for name in directory, to found or notfound
272  * notfound:
273  *      if creating, return locked directory, leaving info on available slots
274  *      else return error
275  * found:
276  *      if at end of path and deleting, return information to allow delete
277  *      if at end of path and rewriting (RENAME and LOCKPARENT), lock target
278  *        inode and return info to allow rewrite
279  *      if not at end, add name to cache; if at end and neither creating
280  *        nor deleting, add name to cache
281  *
282  * ext2_lookup(struct vnode *a_dvp, struct vnode **a_vpp,
283  *             struct componentname *a_cnp)
284  */
285 int
286 ext2_lookup(struct vop_old_lookup_args *ap)
287 {
288         struct vnode *vdp;      /* vnode for directory being searched */
289         struct inode *dp;       /* inode for directory being searched */
290         struct buf *bp;                 /* a buffer of directory entries */
291         struct ext2_dir_entry_2 *ep; /* the current directory entry */
292         int entryoffsetinblock;         /* offset of ep in bp's buffer */
293         enum {NONE, COMPACT, FOUND} slotstatus;
294         doff_t slotoffset;              /* offset of area with free space */
295         int slotsize;                   /* size of area at slotoffset */
296         int slotfreespace;              /* amount of space free in slot */
297         int slotneeded;                 /* size of the entry we're seeking */
298         int numdirpasses;               /* strategy for directory search */
299         doff_t endsearch;               /* offset to end directory search */
300         doff_t prevoff;                 /* prev entry dp->i_offset */
301         struct vnode *pdp;              /* saved dp during symlink work */
302         struct vnode *tdp;              /* returned by VFS_VGET */
303         doff_t enduseful;               /* pointer past last used dir slot */
304         u_long bmask;                   /* block offset mask */
305         int lockparent;                 /* 1 => lockparent flag is set */
306         int wantparent;                 /* 1 => wantparent or lockparent flag */
307         int namlen, error;
308         struct vnode **vpp = ap->a_vpp;
309         struct componentname *cnp = ap->a_cnp;
310         struct ucred *cred = cnp->cn_cred;
311         int flags = cnp->cn_flags;
312         int nameiop = cnp->cn_nameiop;
313
314         int     DIRBLKSIZ = VTOI(ap->a_dvp)->i_e2fs->s_blocksize;
315
316         bp = NULL;
317         slotoffset = -1;
318         *vpp = NULL;
319         vdp = ap->a_dvp;
320         dp = VTOI(vdp);
321         lockparent = flags & CNP_LOCKPARENT;
322         wantparent = flags & (CNP_LOCKPARENT|CNP_WANTPARENT);
323
324         /*
325          * We now have a segment name to search for, and a directory to search.
326          */
327
328         /*
329          * Suppress search for slots unless creating
330          * file and at end of pathname, in which case
331          * we watch for a place to put the new file in
332          * case it doesn't already exist.
333          */
334         slotstatus = FOUND;
335         slotfreespace = slotsize = slotneeded = 0;
336         if (nameiop == NAMEI_CREATE || nameiop == NAMEI_RENAME) {
337                 slotstatus = NONE;
338                 slotneeded = EXT2_DIR_REC_LEN(cnp->cn_namelen);
339                 /* was
340                 slotneeded = (sizeof(struct direct) - MAXNAMLEN +
341                         cnp->cn_namelen + 3) &~ 3; */
342         }
343
344         /*
345          * If there is cached information on a previous search of
346          * this directory, pick up where we last left off.
347          * We cache only lookups as these are the most common
348          * and have the greatest payoff. Caching CREATE has little
349          * benefit as it usually must search the entire directory
350          * to determine that the entry does not exist. Caching the
351          * location of the last DELETE or RENAME has not reduced
352          * profiling time and hence has been removed in the interest
353          * of simplicity.
354          */
355         bmask = VFSTOEXT2(vdp->v_mount)->um_mountp->mnt_stat.f_iosize - 1;
356         if (nameiop != NAMEI_LOOKUP || dp->i_diroff == 0 ||
357             dp->i_diroff > dp->i_size) {
358                 entryoffsetinblock = 0;
359                 dp->i_offset = 0;
360                 numdirpasses = 1;
361         } else {
362                 dp->i_offset = dp->i_diroff;
363                 if ((entryoffsetinblock = dp->i_offset & bmask) &&
364                     (error = EXT2_BLKATOFF(vdp, (off_t)dp->i_offset, NULL, &bp)))
365                         return (error);
366                 numdirpasses = 2;
367         }
368         prevoff = dp->i_offset;
369         endsearch = roundup(dp->i_size, DIRBLKSIZ);
370         enduseful = 0;
371
372 searchloop:
373         while (dp->i_offset < endsearch) {
374                 /*
375                  * If necessary, get the next directory block.
376                  */
377                 if ((dp->i_offset & bmask) == 0) {
378                         if (bp != NULL)
379                                 brelse(bp);
380                         if ((error =
381                             EXT2_BLKATOFF(vdp, (off_t)dp->i_offset, NULL, &bp)) != 0)
382                                 return (error);
383                         entryoffsetinblock = 0;
384                 }
385                 /*
386                  * If still looking for a slot, and at a DIRBLKSIZE
387                  * boundary, have to start looking for free space again.
388                  */
389                 if (slotstatus == NONE &&
390                     (entryoffsetinblock & (DIRBLKSIZ - 1)) == 0) {
391                         slotoffset = -1;
392                         slotfreespace = 0;
393                 }
394                 /*
395                  * Get pointer to next entry.
396                  * Full validation checks are slow, so we only check
397                  * enough to insure forward progress through the
398                  * directory. Complete checks can be run by patching
399                  * "dirchk" to be true.
400                  */
401                 ep = (struct ext2_dir_entry_2 *)
402                         ((char *)bp->b_data + entryoffsetinblock);
403                 if (ep->rec_len == 0 ||
404                     (dirchk && ext2_dirbadentry(vdp, ep, entryoffsetinblock))) {
405                         int i;
406                         ext2_dirbad(dp, dp->i_offset, "mangled entry");
407                         i = DIRBLKSIZ - (entryoffsetinblock & (DIRBLKSIZ - 1));
408                         dp->i_offset += i;
409                         entryoffsetinblock += i;
410                         continue;
411                 }
412
413                 /*
414                  * If an appropriate sized slot has not yet been found,
415                  * check to see if one is available. Also accumulate space
416                  * in the current block so that we can determine if
417                  * compaction is viable.
418                  */
419                 if (slotstatus != FOUND) {
420                         int size = ep->rec_len;
421
422                         if (ep->inode != 0)
423                                 size -= EXT2_DIR_REC_LEN(ep->name_len);
424                         if (size > 0) {
425                                 if (size >= slotneeded) {
426                                         slotstatus = FOUND;
427                                         slotoffset = dp->i_offset;
428                                         slotsize = ep->rec_len;
429                                 } else if (slotstatus == NONE) {
430                                         slotfreespace += size;
431                                         if (slotoffset == -1)
432                                                 slotoffset = dp->i_offset;
433                                         if (slotfreespace >= slotneeded) {
434                                                 slotstatus = COMPACT;
435                                                 slotsize = dp->i_offset +
436                                                       ep->rec_len - slotoffset;
437                                         }
438                                 }
439                         }
440                 }
441
442                 /*
443                  * Check for a name match.
444                  */
445                 if (ep->inode) {
446                         namlen = ep->name_len;
447                         if (namlen == cnp->cn_namelen &&
448                             !bcmp(cnp->cn_nameptr, ep->name,
449                                 (unsigned)namlen)) {
450                                 /*
451                                  * Save directory entry's inode number and
452                                  * reclen in ndp->ni_ufs area, and release
453                                  * directory buffer.
454                                  */
455                                 dp->i_ino = ep->inode;
456                                 dp->i_reclen = ep->rec_len;
457                                 goto found;
458                         }
459                 }
460                 prevoff = dp->i_offset;
461                 dp->i_offset += ep->rec_len;
462                 entryoffsetinblock += ep->rec_len;
463                 if (ep->inode)
464                         enduseful = dp->i_offset;
465         }
466 /* notfound: */
467         /*
468          * If we started in the middle of the directory and failed
469          * to find our target, we must check the beginning as well.
470          */
471         if (numdirpasses == 2) {
472                 numdirpasses--;
473                 dp->i_offset = 0;
474                 endsearch = dp->i_diroff;
475                 goto searchloop;
476         }
477         if (bp != NULL)
478                 brelse(bp);
479         /*
480          * If creating, and at end of pathname and current
481          * directory has not been removed, then can consider
482          * allowing file to be created.
483          */
484         if ((nameiop == NAMEI_CREATE || nameiop == NAMEI_RENAME) &&
485             dp->i_nlink != 0) {
486                 /*
487                  * Access for write is interpreted as allowing
488                  * creation of files in the directory.
489                  */
490                 if ((error = VOP_EACCESS(vdp, VWRITE, cred)) != 0)
491                         return (error);
492                 /*
493                  * Return an indication of where the new directory
494                  * entry should be put.  If we didn't find a slot,
495                  * then set dp->i_count to 0 indicating
496                  * that the new slot belongs at the end of the
497                  * directory. If we found a slot, then the new entry
498                  * can be put in the range from dp->i_offset to
499                  * dp->i_offset + dp->i_count.
500                  */
501                 if (slotstatus == NONE) {
502                         dp->i_offset = roundup(dp->i_size, DIRBLKSIZ);
503                         dp->i_count = 0;
504                         enduseful = dp->i_offset;
505                 } else {
506                         dp->i_offset = slotoffset;
507                         dp->i_count = slotsize;
508                         if (enduseful < slotoffset + slotsize)
509                                 enduseful = slotoffset + slotsize;
510                 }
511                 dp->i_endoff = roundup(enduseful, DIRBLKSIZ);
512                 dp->i_flag |= IN_CHANGE | IN_UPDATE;
513                 /*
514                  * We return with the directory locked, so that
515                  * the parameters we set up above will still be
516                  * valid if we actually decide to do a direnter().
517                  * We return ni_vp == NULL to indicate that the entry
518                  * does not currently exist; we leave a pointer to
519                  * the (locked) directory inode in ndp->ni_dvp.
520                  * The pathname buffer is saved so that the name
521                  * can be obtained later.
522                  *
523                  * NB - if the directory is unlocked, then this
524                  * information cannot be used.
525                  */
526                 if (!lockparent)
527                         vn_unlock(vdp);
528                 return (EJUSTRETURN);
529         }
530         return (ENOENT);
531
532 found:
533         /*
534          * Check that directory length properly reflects presence
535          * of this entry.
536          */
537         if (entryoffsetinblock + EXT2_DIR_REC_LEN(ep->name_len)
538                 > dp->i_size) {
539                 ext2_dirbad(dp, dp->i_offset, "i_size too small");
540                 dp->i_size = entryoffsetinblock+EXT2_DIR_REC_LEN(ep->name_len);
541                 dp->i_flag |= IN_CHANGE | IN_UPDATE;
542         }
543         brelse(bp);
544
545         /*
546          * Found component in pathname.
547          * If the final component of path name, save information
548          * in the cache as to where the entry was found.
549          */
550         if (nameiop == NAMEI_LOOKUP)
551                 dp->i_diroff = dp->i_offset &~ (DIRBLKSIZ - 1);
552
553         /*
554          * If deleting, and at end of pathname, return
555          * parameters which can be used to remove file.
556          * If the wantparent flag isn't set, we return only
557          * the directory (in ndp->ni_dvp), otherwise we go
558          * on and lock the inode, being careful with ".".
559          */
560         if (nameiop == NAMEI_DELETE) {
561                 /*
562                  * Write access to directory required to delete files.
563                  */
564                 if ((error = VOP_EACCESS(vdp, VWRITE, cred)) != 0)
565                         return (error);
566                 /*
567                  * Return pointer to current entry in dp->i_offset,
568                  * and distance past previous entry (if there
569                  * is a previous entry in this block) in dp->i_count.
570                  * Save directory inode pointer in ndp->ni_dvp for dirremove().
571                  */
572                 if ((dp->i_offset & (DIRBLKSIZ - 1)) == 0)
573                         dp->i_count = 0;
574                 else
575                         dp->i_count = dp->i_offset - prevoff;
576                 if (dp->i_number == dp->i_ino) {
577                         vref(vdp);
578                         *vpp = vdp;
579                         return (0);
580                 }
581                 if ((error = VFS_VGET(vdp->v_mount, NULL, dp->i_ino, &tdp)) != 0)
582                         return (error);
583                 /*
584                  * If directory is "sticky", then user must own
585                  * the directory, or the file in it, else she
586                  * may not delete it (unless she's root). This
587                  * implements append-only directories.
588                  */
589                 if ((dp->i_mode & ISVTX) &&
590                     cred->cr_uid != 0 &&
591                     cred->cr_uid != dp->i_uid &&
592                     VTOI(tdp)->i_uid != cred->cr_uid) {
593                         vput(tdp);
594                         return (EPERM);
595                 }
596                 *vpp = tdp;
597                 if (!lockparent)
598                         vn_unlock(vdp);
599                 return (0);
600         }
601
602         /*
603          * If rewriting (RENAME), return the inode and the
604          * information required to rewrite the present directory
605          * Must get inode of directory entry to verify it's a
606          * regular file, or empty directory.
607          */
608         if (nameiop == NAMEI_RENAME && wantparent) {
609                 if ((error = VOP_EACCESS(vdp, VWRITE, cred)) != 0)
610                         return (error);
611                 /*
612                  * Careful about locking second inode.
613                  * This can only occur if the target is ".".
614                  */
615                 if (dp->i_number == dp->i_ino)
616                         return (EISDIR);
617                 if ((error = VFS_VGET(vdp->v_mount, NULL, dp->i_ino, &tdp)) != 0)
618                         return (error);
619                 *vpp = tdp;
620                 if (!lockparent)
621                         vn_unlock(vdp);
622                 return (0);
623         }
624
625         /*
626          * Step through the translation in the name.  We do not `vput' the
627          * directory because we may need it again if a symbolic link
628          * is relative to the current directory.  Instead we save it
629          * unlocked as "pdp".  We must get the target inode before unlocking
630          * the directory to insure that the inode will not be removed
631          * before we get it.  We prevent deadlock by always fetching
632          * inodes from the root, moving down the directory tree. Thus
633          * when following backward pointers ".." we must unlock the
634          * parent directory before getting the requested directory.
635          * There is a potential race condition here if both the current
636          * and parent directories are removed before the VFS_VGET for the
637          * inode associated with ".." returns.  We hope that this occurs
638          * infrequently since we cannot avoid this race condition without
639          * implementing a sophisticated deadlock detection algorithm.
640          * Note also that this simple deadlock detection scheme will not
641          * work if the file system has any hard links other than ".."
642          * that point backwards in the directory structure.
643          */
644         pdp = vdp;
645         if (flags & CNP_ISDOTDOT) {
646                 vn_unlock(pdp); /* race to get the inode */
647                 error = VFS_VGET(vdp->v_mount, NULL, dp->i_ino, &tdp);
648                 if (error) {
649                         vn_lock(pdp, LK_EXCLUSIVE | LK_RETRY);
650                         return (error);
651                 }
652                 if (lockparent) {
653                         error = vn_lock(pdp, LK_EXCLUSIVE | LK_FAILRECLAIM);
654                         if (error) {
655                                 vput(tdp);
656                                 return (error);
657                         }
658                 }
659                 *vpp = tdp;
660         } else if (dp->i_number == dp->i_ino) {
661                 vref(vdp);      /* we want ourself, ie "." */
662                 *vpp = vdp;
663         } else {
664                 if ((error = VFS_VGET(vdp->v_mount, NULL, dp->i_ino, &tdp)) != 0)
665                         return (error);
666                 if (!lockparent) {
667                         vn_unlock(pdp);
668                         cnp->cn_flags |= CNP_PDIRUNLOCK;
669                 }
670                 *vpp = tdp;
671         }
672         return (0);
673 }
674
675 void
676 ext2_dirbad(struct inode *ip, doff_t offset, char *how)
677 {
678         struct mount *mp;
679
680         mp = ITOV(ip)->v_mount;
681         kprintf("%s: bad dir ino %lu at offset %ld: %s\n",
682                mp->mnt_stat.f_mntfromname, (u_long)ip->i_number,
683                (long)offset, how);
684         if ((mp->mnt_flag & MNT_RDONLY) == 0)
685                 panic("ufs_dirbad: bad dir");
686 }
687
688 /*
689  * Do consistency checking on a directory entry:
690  *      record length must be multiple of 4
691  *      entry must fit in rest of its DIRBLKSIZ block
692  *      record must be large enough to contain entry
693  *      name is not longer than MAXNAMLEN
694  *      name must be as long as advertised, and null terminated
695  */
696 /*
697  *      changed so that it confirms to ext2_check_dir_entry
698  */
699 static int
700 ext2_dirbadentry(struct vnode *dp, struct ext2_dir_entry_2 *de,
701                  int entryoffsetinblock)
702 {
703         int     DIRBLKSIZ = VTOI(dp)->i_e2fs->s_blocksize;
704
705         char * error_msg = NULL;
706
707         if (de->rec_len < EXT2_DIR_REC_LEN(1))
708                 error_msg = "rec_len is smaller than minimal";
709         else if (de->rec_len % 4 != 0)
710                 error_msg = "rec_len % 4 != 0";
711         else if (de->rec_len < EXT2_DIR_REC_LEN(de->name_len))
712                 error_msg = "reclen is too small for name_len";
713         else if (entryoffsetinblock + de->rec_len > DIRBLKSIZ)
714                 error_msg = "directory entry across blocks";
715         /* else LATER
716              if (de->inode > dir->i_sb->u.ext2_sb.s_es->s_inodes_count)
717                 error_msg = "inode out of bounds";
718         */
719
720         if (error_msg != NULL) {
721                 kprintf("bad directory entry: %s\n", error_msg);
722                 kprintf("offset=%d, inode=%lu, rec_len=%u, name_len=%u\n",
723                         entryoffsetinblock, (unsigned long)de->inode,
724                         de->rec_len, de->name_len);
725         }
726         return error_msg == NULL ? 0 : 1;
727 }
728
729 /*
730  * Write a directory entry after a call to namei, using the parameters
731  * that it left in the directory inode.  The argument ip is the inode which
732  * the new directory entry will refer to.  Dvp is a pointer to the directory
733  * to be written, which was left locked by namei. Remaining parameters
734  * (dp->i_offset, dp->i_count) indicate how the space for the new
735  * entry is to be obtained.
736  */
737 int
738 ext2_direnter(struct inode *ip, struct vnode *dvp, struct componentname *cnp)
739 {
740         struct ext2_dir_entry_2 *ep, *nep;
741         struct inode *dp;
742         struct buf *bp;
743         struct ext2_dir_entry_2 newdir;
744         struct iovec aiov;
745         struct uio auio;
746         u_int dsize;
747         int error, loc, newentrysize, spacefree;
748         char *dirbuf;
749         int     DIRBLKSIZ = ip->i_e2fs->s_blocksize;
750
751
752         dp = VTOI(dvp);
753         newdir.inode = ip->i_number;
754         newdir.name_len = cnp->cn_namelen;
755         if (EXT2_HAS_INCOMPAT_FEATURE(ip->i_e2fs->s_es,
756             EXT2_FEATURE_INCOMPAT_FILETYPE))
757                 newdir.file_type = DTTOFT(IFTODT(ip->i_mode));
758         else
759                 newdir.file_type = EXT2_FT_UNKNOWN;
760         bcopy(cnp->cn_nameptr, newdir.name, (unsigned)cnp->cn_namelen + 1);
761         newentrysize = EXT2_DIR_REC_LEN(newdir.name_len);
762         if (dp->i_count == 0) {
763                 /*
764                  * If dp->i_count is 0, then namei could find no
765                  * space in the directory. Here, dp->i_offset will
766                  * be on a directory block boundary and we will write the
767                  * new entry into a fresh block.
768                  */
769                 if (dp->i_offset & (DIRBLKSIZ - 1))
770                         panic("ext2_direnter: newblk");
771                 auio.uio_offset = dp->i_offset;
772                 newdir.rec_len = DIRBLKSIZ;
773                 auio.uio_resid = newentrysize;
774                 aiov.iov_len = newentrysize;
775                 aiov.iov_base = (caddr_t)&newdir;
776                 auio.uio_iov = &aiov;
777                 auio.uio_iovcnt = 1;
778                 auio.uio_rw = UIO_WRITE;
779                 auio.uio_segflg = UIO_SYSSPACE;
780                 auio.uio_td = NULL;
781                 error = VOP_WRITE(dvp, &auio, IO_SYNC, cnp->cn_cred);
782                 if (DIRBLKSIZ >
783                     VFSTOEXT2(dvp->v_mount)->um_mountp->mnt_stat.f_bsize)
784                         /* XXX should grow with balloc() */
785                         panic("ext2_direnter: frag size");
786                 else if (!error) {
787                         dp->i_size = roundup(dp->i_size, DIRBLKSIZ);
788                         dp->i_flag |= IN_CHANGE;
789                 }
790                 return (error);
791         }
792
793         /*
794          * If dp->i_count is non-zero, then namei found space
795          * for the new entry in the range dp->i_offset to
796          * dp->i_offset + dp->i_count in the directory.
797          * To use this space, we may have to compact the entries located
798          * there, by copying them together towards the beginning of the
799          * block, leaving the free space in one usable chunk at the end.
800          */
801
802         /*
803          * Increase size of directory if entry eats into new space.
804          * This should never push the size past a new multiple of
805          * DIRBLKSIZE.
806          *
807          * N.B. - THIS IS AN ARTIFACT OF 4.2 AND SHOULD NEVER HAPPEN.
808          */
809         if (dp->i_offset + dp->i_count > dp->i_size)
810                 dp->i_size = dp->i_offset + dp->i_count;
811         /*
812          * Get the block containing the space for the new directory entry.
813          */
814         if ((error = EXT2_BLKATOFF(dvp, (off_t)dp->i_offset, &dirbuf, &bp)) != 0)
815                 return (error);
816         /*
817          * Find space for the new entry. In the simple case, the entry at
818          * offset base will have the space. If it does not, then namei
819          * arranged that compacting the region dp->i_offset to
820          * dp->i_offset + dp->i_count would yield the
821          * space.
822          */
823         ep = (struct ext2_dir_entry_2 *)dirbuf;
824         dsize = EXT2_DIR_REC_LEN(ep->name_len);
825         spacefree = ep->rec_len - dsize;
826         for (loc = ep->rec_len; loc < dp->i_count; ) {
827                 nep = (struct ext2_dir_entry_2 *)(dirbuf + loc);
828                 if (ep->inode) {
829                         /* trim the existing slot */
830                         ep->rec_len = dsize;
831                         ep = (struct ext2_dir_entry_2 *)((char *)ep + dsize);
832                 } else {
833                         /* overwrite; nothing there; header is ours */
834                         spacefree += dsize;
835                 }
836                 dsize = EXT2_DIR_REC_LEN(nep->name_len);
837                 spacefree += nep->rec_len - dsize;
838                 loc += nep->rec_len;
839                 bcopy((caddr_t)nep, (caddr_t)ep, dsize);
840         }
841         /*
842          * Update the pointer fields in the previous entry (if any),
843          * copy in the new entry, and write out the block.
844          */
845         if (ep->inode == 0) {
846                 if (spacefree + dsize < newentrysize)
847                         panic("ext2_direnter: compact1");
848                 newdir.rec_len = spacefree + dsize;
849         } else {
850                 if (spacefree < newentrysize)
851                         panic("ext2_direnter: compact2");
852                 newdir.rec_len = spacefree;
853                 ep->rec_len = dsize;
854                 ep = (struct ext2_dir_entry_2 *)((char *)ep + dsize);
855         }
856         bcopy((caddr_t)&newdir, (caddr_t)ep, (u_int)newentrysize);
857         error = bwrite(bp);
858         dp->i_flag |= IN_CHANGE | IN_UPDATE;
859         if (!error && dp->i_endoff && dp->i_endoff < dp->i_size)
860                 error = EXT2_TRUNCATE(dvp, (off_t)dp->i_endoff, IO_SYNC,
861                                       cnp->cn_cred);
862         return (error);
863 }
864
865 /*
866  * Remove a directory entry after a call to namei, using
867  * the parameters which it left in the directory inode. The entry
868  * dp->i_offset contains the offset into the directory of the
869  * entry to be eliminated.  The dp->i_count field contains the
870  * size of the previous record in the directory.  If this
871  * is 0, the first entry is being deleted, so we need only
872  * zero the inode number to mark the entry as free.  If the
873  * entry is not the first in the directory, we must reclaim
874  * the space of the now empty record by adding the record size
875  * to the size of the previous entry.
876  */
877 int
878 ext2_dirremove(struct vnode *dvp, struct componentname *cnp)
879 {
880         struct inode *dp;
881         struct ext2_dir_entry_2 *ep;
882         struct buf *bp;
883         int error;
884
885         dp = VTOI(dvp);
886         if (dp->i_count == 0) {
887                 /*
888                  * First entry in block: set d_ino to zero.
889                  */
890                 if ((error =
891                     EXT2_BLKATOFF(dvp, (off_t)dp->i_offset, (char **)&ep, &bp)) != 0)
892                         return (error);
893                 ep->inode = 0;
894                 error = bwrite(bp);
895                 dp->i_flag |= IN_CHANGE | IN_UPDATE;
896                 return (error);
897         }
898         /*
899          * Collapse new free space into previous entry.
900          */
901         if ((error = EXT2_BLKATOFF(dvp, (off_t)(dp->i_offset - dp->i_count),
902             (char **)&ep, &bp)) != 0)
903                 return (error);
904         ep->rec_len += dp->i_reclen;
905         error = bwrite(bp);
906         dp->i_flag |= IN_CHANGE | IN_UPDATE;
907         return (error);
908 }
909
910 /*
911  * Rewrite an existing directory entry to point at the inode
912  * supplied.  The parameters describing the directory entry are
913  * set up by a call to namei.
914  */
915 int
916 ext2_dirrewrite(struct inode *dp, struct inode *ip, struct componentname *cnp)
917 {
918         struct buf *bp;
919         struct ext2_dir_entry_2 *ep;
920         struct vnode *vdp = ITOV(dp);
921         int error;
922
923         if ((error = EXT2_BLKATOFF(vdp, (off_t)dp->i_offset, (char **)&ep, &bp)) != 0)
924                 return (error);
925         ep->inode = ip->i_number;
926         if (EXT2_HAS_INCOMPAT_FEATURE(ip->i_e2fs->s_es,
927             EXT2_FEATURE_INCOMPAT_FILETYPE))
928                 ep->file_type = DTTOFT(IFTODT(ip->i_mode));
929         else
930                 ep->file_type = EXT2_FT_UNKNOWN;
931         error = bwrite(bp);
932         dp->i_flag |= IN_CHANGE | IN_UPDATE;
933         return (error);
934 }
935
936 /*
937  * Check if a directory is empty or not.
938  * Inode supplied must be locked.
939  *
940  * Using a struct dirtemplate here is not precisely
941  * what we want, but better than using a struct direct.
942  *
943  * NB: does not handle corrupted directories.
944  */
945 int
946 ext2_dirempty(struct inode *ip, ino_t parentino, struct ucred *cred)
947 {
948         off_t off;
949         struct dirtemplate dbuf;
950         struct ext2_dir_entry_2 *dp = (struct ext2_dir_entry_2 *)&dbuf;
951         int error, count, namlen;
952
953 #define MINDIRSIZ (sizeof (struct dirtemplate) / 2)
954
955         for (off = 0; off < ip->i_size; off += dp->rec_len) {
956                 error = vn_rdwr(UIO_READ, ITOV(ip), (caddr_t)dp, MINDIRSIZ, off,
957                                 UIO_SYSSPACE, IO_NODELOCKED, cred, &count);
958                 /*
959                  * Since we read MINDIRSIZ, residual must
960                  * be 0 unless we're at end of file.
961                  */
962                 if (error || count != 0)
963                         return (0);
964                 /* avoid infinite loops */
965                 if (dp->rec_len == 0)
966                         return (0);
967                 /* skip empty entries */
968                 if (dp->inode == 0)
969                         continue;
970                 /* accept only "." and ".." */
971                 namlen = dp->name_len;
972                 if (namlen > 2)
973                         return (0);
974                 if (dp->name[0] != '.')
975                         return (0);
976                 /*
977                  * At this point namlen must be 1 or 2.
978                  * 1 implies ".", 2 implies ".." if second
979                  * char is also "."
980                  */
981                 if (namlen == 1)
982                         continue;
983                 if (dp->name[1] == '.' && dp->inode == parentino)
984                         continue;
985                 return (0);
986         }
987         return (1);
988 }
989
990 /*
991  * Check if source directory is in the path of the target directory.
992  * Target is supplied locked, source is unlocked.
993  * The target is always vput before returning.
994  */
995 int
996 ext2_checkpath(struct inode *source, struct inode *target, struct ucred *cred)
997 {
998         struct vnode *vp;
999         int error, rootino, namlen;
1000         struct dirtemplate dirbuf;
1001
1002         vp = ITOV(target);
1003         if (target->i_number == source->i_number) {
1004                 error = EEXIST;
1005                 goto out;
1006         }
1007         rootino = EXT2_ROOTINO;
1008         error = 0;
1009         if (target->i_number == rootino)
1010                 goto out;
1011
1012         for (;;) {
1013                 if (vp->v_type != VDIR) {
1014                         error = ENOTDIR;
1015                         break;
1016                 }
1017                 error = vn_rdwr(UIO_READ, vp, (caddr_t)&dirbuf,
1018                                 sizeof (struct dirtemplate), (off_t)0,
1019                                 UIO_SYSSPACE, IO_NODELOCKED, cred, NULL);
1020                 if (error != 0)
1021                         break;
1022                 namlen = dirbuf.dotdot_type;    /* like ufs little-endian */
1023                 if (namlen != 2 ||
1024                     dirbuf.dotdot_name[0] != '.' ||
1025                     dirbuf.dotdot_name[1] != '.') {
1026                         error = ENOTDIR;
1027                         break;
1028                 }
1029                 if (dirbuf.dotdot_ino == source->i_number) {
1030                         error = EINVAL;
1031                         break;
1032                 }
1033                 if (dirbuf.dotdot_ino == rootino)
1034                         break;
1035                 vput(vp);
1036                 if ((error = VFS_VGET(vp->v_mount, NULL, dirbuf.dotdot_ino, &vp)) != 0) {
1037                         vp = NULL;
1038                         break;
1039                 }
1040         }
1041
1042 out:
1043         if (error == ENOTDIR)
1044                 kprintf("checkpath: .. not a directory\n");
1045         if (vp != NULL)
1046                 vput(vp);
1047         return (error);
1048 }