Home | History | Annotate | Line # | Download | only in msdosfs
msdosfs_lookup.c revision 1.3.10.1
      1  1.3.10.1      kent /*	$NetBSD: msdosfs_lookup.c,v 1.3.10.1 2005/04/29 11:29:22 kent Exp $	*/
      2       1.1  jdolecek 
      3       1.1  jdolecek /*-
      4       1.1  jdolecek  * Copyright (C) 1994, 1995, 1997 Wolfgang Solfrank.
      5       1.1  jdolecek  * Copyright (C) 1994, 1995, 1997 TooLs GmbH.
      6       1.1  jdolecek  * All rights reserved.
      7       1.1  jdolecek  * Original code by Paul Popelka (paulp (at) uts.amdahl.com) (see below).
      8       1.1  jdolecek  *
      9       1.1  jdolecek  * Redistribution and use in source and binary forms, with or without
     10       1.1  jdolecek  * modification, are permitted provided that the following conditions
     11       1.1  jdolecek  * are met:
     12       1.1  jdolecek  * 1. Redistributions of source code must retain the above copyright
     13       1.1  jdolecek  *    notice, this list of conditions and the following disclaimer.
     14       1.1  jdolecek  * 2. Redistributions in binary form must reproduce the above copyright
     15       1.1  jdolecek  *    notice, this list of conditions and the following disclaimer in the
     16       1.1  jdolecek  *    documentation and/or other materials provided with the distribution.
     17       1.1  jdolecek  * 3. All advertising materials mentioning features or use of this software
     18       1.1  jdolecek  *    must display the following acknowledgement:
     19       1.1  jdolecek  *	This product includes software developed by TooLs GmbH.
     20       1.1  jdolecek  * 4. The name of TooLs GmbH may not be used to endorse or promote products
     21       1.1  jdolecek  *    derived from this software without specific prior written permission.
     22       1.1  jdolecek  *
     23       1.1  jdolecek  * THIS SOFTWARE IS PROVIDED BY TOOLS GMBH ``AS IS'' AND ANY EXPRESS OR
     24       1.1  jdolecek  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     25       1.1  jdolecek  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     26       1.1  jdolecek  * IN NO EVENT SHALL TOOLS GMBH BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
     27       1.1  jdolecek  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
     28       1.1  jdolecek  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
     29       1.1  jdolecek  * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
     30       1.1  jdolecek  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
     31       1.1  jdolecek  * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
     32       1.1  jdolecek  * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     33       1.1  jdolecek  */
     34       1.1  jdolecek /*
     35       1.1  jdolecek  * Written by Paul Popelka (paulp (at) uts.amdahl.com)
     36       1.1  jdolecek  *
     37       1.1  jdolecek  * You can do anything you want with this software, just don't say you wrote
     38       1.1  jdolecek  * it, and don't remove this notice.
     39       1.1  jdolecek  *
     40       1.1  jdolecek  * This software is provided "as is".
     41       1.1  jdolecek  *
     42       1.1  jdolecek  * The author supplies this software to be publicly redistributed on the
     43       1.1  jdolecek  * understanding that the author is not responsible for the correct
     44       1.1  jdolecek  * functioning of this software in any circumstances and is not liable for
     45       1.1  jdolecek  * any damages caused by this software.
     46       1.1  jdolecek  *
     47       1.1  jdolecek  * October 1992
     48       1.1  jdolecek  */
     49       1.1  jdolecek 
     50       1.1  jdolecek #include <sys/cdefs.h>
     51  1.3.10.1      kent __KERNEL_RCSID(0, "$NetBSD: msdosfs_lookup.c,v 1.3.10.1 2005/04/29 11:29:22 kent Exp $");
     52       1.1  jdolecek 
     53       1.1  jdolecek #include <sys/param.h>
     54       1.1  jdolecek #include <sys/systm.h>
     55       1.1  jdolecek #include <sys/namei.h>
     56       1.1  jdolecek #include <sys/buf.h>
     57       1.1  jdolecek #include <sys/vnode.h>
     58       1.1  jdolecek #include <sys/mount.h>
     59       1.1  jdolecek #include <sys/dirent.h>
     60       1.1  jdolecek 
     61       1.1  jdolecek #include <fs/msdosfs/bpb.h>
     62       1.1  jdolecek #include <fs/msdosfs/direntry.h>
     63       1.1  jdolecek #include <fs/msdosfs/denode.h>
     64       1.1  jdolecek #include <fs/msdosfs/msdosfsmount.h>
     65       1.1  jdolecek #include <fs/msdosfs/fat.h>
     66       1.1  jdolecek 
     67       1.1  jdolecek /*
     68       1.1  jdolecek  * When we search a directory the blocks containing directory entries are
     69       1.1  jdolecek  * read and examined.  The directory entries contain information that would
     70       1.1  jdolecek  * normally be in the inode of a unix filesystem.  This means that some of
     71       1.1  jdolecek  * a directory's contents may also be in memory resident denodes (sort of
     72       1.1  jdolecek  * an inode).  This can cause problems if we are searching while some other
     73       1.1  jdolecek  * process is modifying a directory.  To prevent one process from accessing
     74       1.1  jdolecek  * incompletely modified directory information we depend upon being the
     75       1.1  jdolecek  * sole owner of a directory block.  bread/brelse provide this service.
     76       1.1  jdolecek  * This being the case, when a process modifies a directory it must first
     77       1.1  jdolecek  * acquire the disk block that contains the directory entry to be modified.
     78       1.1  jdolecek  * Then update the disk block and the denode, and then write the disk block
     79       1.1  jdolecek  * out to disk.  This way disk blocks containing directory entries and in
     80       1.1  jdolecek  * memory denode's will be in synch.
     81       1.1  jdolecek  */
     82       1.1  jdolecek int
     83       1.1  jdolecek msdosfs_lookup(v)
     84       1.1  jdolecek 	void *v;
     85       1.1  jdolecek {
     86       1.1  jdolecek 	struct vop_lookup_args /* {
     87       1.1  jdolecek 		struct vnode *a_dvp;
     88       1.1  jdolecek 		struct vnode **a_vpp;
     89       1.1  jdolecek 		struct componentname *a_cnp;
     90       1.1  jdolecek 	} */ *ap = v;
     91       1.1  jdolecek 	struct vnode *vdp = ap->a_dvp;
     92       1.1  jdolecek 	struct vnode **vpp = ap->a_vpp;
     93       1.1  jdolecek 	struct componentname *cnp = ap->a_cnp;
     94       1.1  jdolecek 	daddr_t bn;
     95       1.1  jdolecek 	int error;
     96       1.1  jdolecek 	int lockparent;
     97       1.1  jdolecek 	int wantparent;
     98       1.1  jdolecek 	int slotcount;
     99       1.1  jdolecek 	int slotoffset = 0;
    100       1.1  jdolecek 	int frcn;
    101       1.1  jdolecek 	u_long cluster;
    102       1.1  jdolecek 	int blkoff;
    103       1.1  jdolecek 	int diroff;
    104       1.1  jdolecek 	int blsize;
    105       1.1  jdolecek 	int isadir;		/* ~0 if found direntry is a directory	 */
    106       1.1  jdolecek 	u_long scn;		/* starting cluster number		 */
    107       1.1  jdolecek 	struct vnode *pdp;
    108       1.1  jdolecek 	struct denode *dp;
    109       1.1  jdolecek 	struct denode *tdp;
    110       1.1  jdolecek 	struct msdosfsmount *pmp;
    111       1.1  jdolecek 	struct buf *bp = 0;
    112       1.1  jdolecek 	struct direntry *dep;
    113       1.1  jdolecek 	u_char dosfilename[12];
    114       1.1  jdolecek 	int flags;
    115       1.1  jdolecek 	int nameiop = cnp->cn_nameiop;
    116       1.1  jdolecek 	int wincnt = 1;
    117       1.1  jdolecek 	int chksum = -1, chksum_ok;
    118       1.1  jdolecek 	int olddos = 1;
    119       1.1  jdolecek 
    120       1.1  jdolecek 	cnp->cn_flags &= ~PDIRUNLOCK; /* XXX why this ?? */
    121       1.1  jdolecek 	flags = cnp->cn_flags;
    122       1.1  jdolecek 
    123       1.1  jdolecek #ifdef MSDOSFS_DEBUG
    124       1.1  jdolecek 	printf("msdosfs_lookup(): looking for %.*s\n",
    125       1.1  jdolecek 		(int)cnp->cn_namelen, cnp->cn_nameptr);
    126       1.1  jdolecek #endif
    127       1.1  jdolecek 	dp = VTODE(vdp);
    128       1.1  jdolecek 	pmp = dp->de_pmp;
    129       1.1  jdolecek 	*vpp = NULL;
    130       1.1  jdolecek 	lockparent = flags & LOCKPARENT;
    131       1.1  jdolecek 	wantparent = flags & (LOCKPARENT | WANTPARENT);
    132       1.1  jdolecek #ifdef MSDOSFS_DEBUG
    133       1.1  jdolecek 	printf("msdosfs_lookup(): vdp %p, dp %p, Attr %02x\n",
    134       1.1  jdolecek 	    vdp, dp, dp->de_Attributes);
    135       1.1  jdolecek #endif
    136       1.1  jdolecek 
    137       1.1  jdolecek 	/*
    138       1.1  jdolecek 	 * Check accessiblity of directory.
    139       1.1  jdolecek 	 */
    140       1.3      fvdl 	if ((error = VOP_ACCESS(vdp, VEXEC, cnp->cn_cred, cnp->cn_proc)) != 0)
    141       1.1  jdolecek 		return (error);
    142       1.1  jdolecek 
    143       1.1  jdolecek 	if ((flags & ISLASTCN) && (vdp->v_mount->mnt_flag & MNT_RDONLY) &&
    144       1.1  jdolecek 	    (cnp->cn_nameiop == DELETE || cnp->cn_nameiop == RENAME))
    145       1.1  jdolecek 		return (EROFS);
    146       1.1  jdolecek 
    147       1.1  jdolecek 	/*
    148       1.1  jdolecek 	 * We now have a segment name to search for, and a directory to search.
    149       1.1  jdolecek 	 *
    150       1.1  jdolecek 	 * Before tediously performing a linear scan of the directory,
    151       1.1  jdolecek 	 * check the name cache to see if the directory/name pair
    152       1.1  jdolecek 	 * we are looking for is known already.
    153       1.1  jdolecek 	 */
    154       1.1  jdolecek 	if ((error = cache_lookup(vdp, vpp, cnp)) >= 0)
    155       1.1  jdolecek 		return (error);
    156       1.1  jdolecek 
    157       1.1  jdolecek 	/*
    158       1.1  jdolecek 	 * If they are going after the . or .. entry in the root directory,
    159       1.1  jdolecek 	 * they won't find it.  DOS filesystems don't have them in the root
    160       1.1  jdolecek 	 * directory.  So, we fake it. deget() is in on this scam too.
    161       1.1  jdolecek 	 */
    162       1.1  jdolecek 	if ((vdp->v_flag & VROOT) && cnp->cn_nameptr[0] == '.' &&
    163       1.1  jdolecek 	    (cnp->cn_namelen == 1 ||
    164       1.1  jdolecek 		(cnp->cn_namelen == 2 && cnp->cn_nameptr[1] == '.'))) {
    165       1.1  jdolecek 		isadir = ATTR_DIRECTORY;
    166       1.1  jdolecek 		scn = MSDOSFSROOT;
    167       1.1  jdolecek #ifdef MSDOSFS_DEBUG
    168       1.1  jdolecek 		printf("msdosfs_lookup(): looking for . or .. in root directory\n");
    169       1.1  jdolecek #endif
    170       1.1  jdolecek 		cluster = MSDOSFSROOT;
    171       1.1  jdolecek 		blkoff = MSDOSFSROOT_OFS;
    172       1.1  jdolecek 		goto foundroot;
    173       1.1  jdolecek 	}
    174       1.1  jdolecek 
    175       1.1  jdolecek 	switch (unix2dosfn((const u_char *)cnp->cn_nameptr, dosfilename,
    176       1.1  jdolecek 	    cnp->cn_namelen, 0)) {
    177       1.1  jdolecek 	case 0:
    178       1.1  jdolecek 		return (EINVAL);
    179       1.1  jdolecek 	case 1:
    180       1.1  jdolecek 		break;
    181       1.1  jdolecek 	case 2:
    182       1.1  jdolecek 		wincnt = winSlotCnt((const u_char *)cnp->cn_nameptr,
    183       1.1  jdolecek 		    cnp->cn_namelen) + 1;
    184       1.1  jdolecek 		break;
    185       1.1  jdolecek 	case 3:
    186       1.1  jdolecek 		olddos = 0;
    187       1.1  jdolecek 		wincnt = winSlotCnt((const u_char *)cnp->cn_nameptr,
    188       1.1  jdolecek 		    cnp->cn_namelen) + 1;
    189       1.1  jdolecek 		break;
    190       1.1  jdolecek 	}
    191       1.1  jdolecek 	if (pmp->pm_flags & MSDOSFSMNT_SHORTNAME)
    192       1.1  jdolecek 		wincnt = 1;
    193       1.1  jdolecek 
    194       1.1  jdolecek 	/*
    195       1.1  jdolecek 	 * Suppress search for slots unless creating
    196       1.1  jdolecek 	 * file and at end of pathname, in which case
    197       1.1  jdolecek 	 * we watch for a place to put the new file in
    198       1.1  jdolecek 	 * case it doesn't already exist.
    199       1.1  jdolecek 	 */
    200       1.1  jdolecek 	slotcount = wincnt;
    201       1.1  jdolecek 	if ((nameiop == CREATE || nameiop == RENAME) &&
    202       1.1  jdolecek 	    (flags & ISLASTCN))
    203       1.1  jdolecek 		slotcount = 0;
    204       1.1  jdolecek 
    205       1.1  jdolecek #ifdef MSDOSFS_DEBUG
    206       1.1  jdolecek 	printf("msdosfs_lookup(): dos filename: %s\n", dosfilename);
    207       1.1  jdolecek #endif
    208       1.1  jdolecek 	/*
    209       1.1  jdolecek 	 * Search the directory pointed at by vdp for the name pointed at
    210       1.1  jdolecek 	 * by cnp->cn_nameptr.
    211       1.1  jdolecek 	 */
    212       1.1  jdolecek 	tdp = NULL;
    213       1.1  jdolecek 	/*
    214       1.1  jdolecek 	 * The outer loop ranges over the clusters that make up the
    215       1.1  jdolecek 	 * directory.  Note that the root directory is different from all
    216       1.1  jdolecek 	 * other directories.  It has a fixed number of blocks that are not
    217       1.1  jdolecek 	 * part of the pool of allocatable clusters.  So, we treat it a
    218       1.1  jdolecek 	 * little differently. The root directory starts at "cluster" 0.
    219       1.1  jdolecek 	 */
    220       1.1  jdolecek 	diroff = 0;
    221       1.1  jdolecek 	for (frcn = 0; diroff < dp->de_FileSize; frcn++) {
    222       1.1  jdolecek 		if ((error = pcbmap(dp, frcn, &bn, &cluster, &blsize)) != 0) {
    223       1.1  jdolecek 			if (error == E2BIG)
    224       1.1  jdolecek 				break;
    225       1.1  jdolecek 			return (error);
    226       1.1  jdolecek 		}
    227       1.1  jdolecek 		error = bread(pmp->pm_devvp, bn, blsize, NOCRED, &bp);
    228       1.1  jdolecek 		if (error) {
    229       1.1  jdolecek 			brelse(bp);
    230       1.1  jdolecek 			return (error);
    231       1.1  jdolecek 		}
    232       1.1  jdolecek 		for (blkoff = 0; blkoff < blsize;
    233       1.1  jdolecek 		     blkoff += sizeof(struct direntry),
    234       1.1  jdolecek 		     diroff += sizeof(struct direntry)) {
    235       1.1  jdolecek 			dep = (struct direntry *)(bp->b_data + blkoff);
    236       1.1  jdolecek 			/*
    237       1.1  jdolecek 			 * If the slot is empty and we are still looking
    238       1.1  jdolecek 			 * for an empty then remember this one.  If the
    239       1.1  jdolecek 			 * slot is not empty then check to see if it
    240       1.1  jdolecek 			 * matches what we are looking for.  If the slot
    241       1.1  jdolecek 			 * has never been filled with anything, then the
    242       1.1  jdolecek 			 * remainder of the directory has never been used,
    243       1.1  jdolecek 			 * so there is no point in searching it.
    244       1.1  jdolecek 			 */
    245       1.1  jdolecek 			if (dep->deName[0] == SLOT_EMPTY ||
    246       1.1  jdolecek 			    dep->deName[0] == SLOT_DELETED) {
    247       1.1  jdolecek 				/*
    248       1.1  jdolecek 				 * Drop memory of previous long matches
    249       1.1  jdolecek 				 */
    250       1.1  jdolecek 				chksum = -1;
    251       1.1  jdolecek 
    252       1.1  jdolecek 				if (slotcount < wincnt) {
    253       1.1  jdolecek 					slotcount++;
    254       1.1  jdolecek 					slotoffset = diroff;
    255       1.1  jdolecek 				}
    256       1.1  jdolecek 				if (dep->deName[0] == SLOT_EMPTY) {
    257       1.1  jdolecek 					brelse(bp);
    258       1.1  jdolecek 					goto notfound;
    259       1.1  jdolecek 				}
    260       1.1  jdolecek 			} else {
    261       1.1  jdolecek 				/*
    262       1.1  jdolecek 				 * If there wasn't enough space for our
    263       1.1  jdolecek 				 * winentries, forget about the empty space
    264       1.1  jdolecek 				 */
    265       1.1  jdolecek 				if (slotcount < wincnt)
    266       1.1  jdolecek 					slotcount = 0;
    267       1.1  jdolecek 
    268       1.1  jdolecek 				/*
    269       1.1  jdolecek 				 * Check for Win95 long filename entry
    270       1.1  jdolecek 				 */
    271       1.1  jdolecek 				if (dep->deAttributes == ATTR_WIN95) {
    272       1.1  jdolecek 					if (pmp->pm_flags & MSDOSFSMNT_SHORTNAME)
    273       1.1  jdolecek 						continue;
    274       1.1  jdolecek 
    275       1.1  jdolecek 					chksum = winChkName((const u_char *)cnp->cn_nameptr,
    276       1.1  jdolecek 							    cnp->cn_namelen,
    277       1.1  jdolecek 							    (struct winentry *)dep,
    278       1.1  jdolecek 							    chksum);
    279       1.1  jdolecek 					continue;
    280       1.1  jdolecek 				}
    281       1.1  jdolecek 
    282       1.1  jdolecek 				/*
    283       1.1  jdolecek 				 * Ignore volume labels (anywhere, not just
    284       1.1  jdolecek 				 * the root directory).
    285       1.1  jdolecek 				 */
    286       1.1  jdolecek 				if (dep->deAttributes & ATTR_VOLUME) {
    287       1.1  jdolecek 					chksum = -1;
    288       1.1  jdolecek 					continue;
    289       1.1  jdolecek 				}
    290       1.1  jdolecek 
    291       1.1  jdolecek 				/*
    292       1.1  jdolecek 				 * Check for a checksum or name match
    293       1.1  jdolecek 				 */
    294       1.1  jdolecek 				chksum_ok = (chksum == winChksum(dep->deName));
    295       1.1  jdolecek 				if (!chksum_ok
    296       1.1  jdolecek 				    && (!olddos || memcmp(dosfilename, dep->deName, 11))) {
    297       1.1  jdolecek 					chksum = -1;
    298       1.1  jdolecek 					continue;
    299       1.1  jdolecek 				}
    300       1.1  jdolecek #ifdef MSDOSFS_DEBUG
    301       1.1  jdolecek 				printf("msdosfs_lookup(): match blkoff %d, diroff %d\n",
    302       1.1  jdolecek 				    blkoff, diroff);
    303       1.1  jdolecek #endif
    304       1.1  jdolecek 				/*
    305       1.1  jdolecek 				 * Remember where this directory
    306       1.1  jdolecek 				 * entry came from for whoever did
    307       1.1  jdolecek 				 * this lookup.
    308       1.1  jdolecek 				 */
    309       1.1  jdolecek 				dp->de_fndoffset = diroff;
    310       1.1  jdolecek 				if (chksum_ok && nameiop == RENAME) {
    311       1.1  jdolecek 					/*
    312       1.1  jdolecek 					 * Target had correct long name
    313       1.1  jdolecek 					 * directory entries, reuse them
    314       1.1  jdolecek 					 * as needed.
    315       1.1  jdolecek 					 */
    316       1.1  jdolecek 					dp->de_fndcnt = wincnt - 1;
    317       1.1  jdolecek 				} else {
    318       1.1  jdolecek 					/*
    319       1.1  jdolecek 					 * Long name directory entries
    320       1.1  jdolecek 					 * not present or corrupt, can only
    321       1.1  jdolecek 					 * reuse dos directory entry.
    322       1.1  jdolecek 					 */
    323       1.1  jdolecek 					dp->de_fndcnt = 0;
    324       1.1  jdolecek 				}
    325       1.1  jdolecek 
    326       1.1  jdolecek 				goto found;
    327       1.1  jdolecek 			}
    328       1.1  jdolecek 		}	/* for (blkoff = 0; .... */
    329       1.1  jdolecek 		/*
    330       1.1  jdolecek 		 * Release the buffer holding the directory cluster just
    331       1.1  jdolecek 		 * searched.
    332       1.1  jdolecek 		 */
    333       1.1  jdolecek 		brelse(bp);
    334       1.1  jdolecek 	}	/* for (frcn = 0; ; frcn++) */
    335       1.1  jdolecek 
    336       1.1  jdolecek notfound:
    337       1.1  jdolecek 	/*
    338       1.1  jdolecek 	 * We hold no disk buffers at this point.
    339       1.1  jdolecek 	 */
    340       1.1  jdolecek 
    341       1.1  jdolecek 	/*
    342       1.1  jdolecek 	 * If we get here we didn't find the entry we were looking for. But
    343       1.1  jdolecek 	 * that's ok if we are creating or renaming and are at the end of
    344       1.1  jdolecek 	 * the pathname and the directory hasn't been removed.
    345       1.1  jdolecek 	 */
    346       1.1  jdolecek #ifdef MSDOSFS_DEBUG
    347       1.1  jdolecek 	printf("msdosfs_lookup(): op %d, refcnt %ld, slotcount %d, slotoffset %d\n",
    348       1.1  jdolecek 	    nameiop, dp->de_refcnt, slotcount, slotoffset);
    349       1.1  jdolecek #endif
    350       1.1  jdolecek 	if ((nameiop == CREATE || nameiop == RENAME) &&
    351       1.1  jdolecek 	    (flags & ISLASTCN) && dp->de_refcnt != 0) {
    352       1.1  jdolecek 		/*
    353       1.1  jdolecek 		 * Access for write is interpreted as allowing
    354       1.1  jdolecek 		 * creation of files in the directory.
    355       1.1  jdolecek 		 */
    356       1.3      fvdl 		error = VOP_ACCESS(vdp, VWRITE, cnp->cn_cred, cnp->cn_proc);
    357       1.1  jdolecek 		if (error)
    358       1.1  jdolecek 			return (error);
    359       1.1  jdolecek 
    360       1.1  jdolecek 		/*
    361       1.1  jdolecek 		 * Fixup the slot description to point to the place where
    362       1.1  jdolecek 		 * we might put the new DOS direntry (putting the Win95
    363       1.1  jdolecek 		 * long name entries before that)
    364       1.1  jdolecek 		 */
    365       1.1  jdolecek 		if (!slotcount) {
    366       1.1  jdolecek 			slotcount = 1;
    367       1.1  jdolecek 			slotoffset = diroff;
    368       1.1  jdolecek 		}
    369       1.1  jdolecek 		if (wincnt > slotcount) {
    370       1.1  jdolecek 			slotoffset +=
    371       1.1  jdolecek 				sizeof(struct direntry) * (wincnt - slotcount);
    372       1.1  jdolecek 		}
    373  1.3.10.1      kent 
    374       1.1  jdolecek 		/*
    375       1.1  jdolecek 		 * Return an indication of where the new directory
    376       1.1  jdolecek 		 * entry should be put.
    377       1.1  jdolecek 		 */
    378       1.1  jdolecek 		dp->de_fndoffset = slotoffset;
    379       1.1  jdolecek 		dp->de_fndcnt = wincnt - 1;
    380       1.1  jdolecek 
    381       1.1  jdolecek 		/*
    382       1.1  jdolecek 		 * We return with the directory locked, so that
    383       1.1  jdolecek 		 * the parameters we set up above will still be
    384       1.1  jdolecek 		 * valid if we actually decide to do a direnter().
    385       1.1  jdolecek 		 * We return ni_vp == NULL to indicate that the entry
    386       1.1  jdolecek 		 * does not currently exist; we leave a pointer to
    387       1.1  jdolecek 		 * the (locked) directory inode in ndp->ni_dvp.
    388       1.1  jdolecek 		 * The pathname buffer is saved so that the name
    389       1.1  jdolecek 		 * can be obtained later.
    390       1.1  jdolecek 		 *
    391       1.1  jdolecek 		 * NB - if the directory is unlocked, then this
    392       1.1  jdolecek 		 * information cannot be used.
    393       1.1  jdolecek 		 */
    394       1.1  jdolecek 		cnp->cn_flags |= SAVENAME;
    395       1.1  jdolecek 		if (!lockparent)
    396       1.1  jdolecek 			VOP_UNLOCK(vdp, 0);
    397       1.1  jdolecek 		return (EJUSTRETURN);
    398       1.1  jdolecek 	}
    399       1.1  jdolecek 
    400       1.1  jdolecek 	/*
    401       1.1  jdolecek 	 * Insert name into cache (as non-existent) if appropriate.
    402       1.1  jdolecek 	 */
    403       1.1  jdolecek 	if ((cnp->cn_flags & MAKEENTRY) && nameiop != CREATE)
    404       1.1  jdolecek 		cache_enter(vdp, *vpp, cnp);
    405       1.1  jdolecek 
    406       1.1  jdolecek 	return (ENOENT);
    407       1.1  jdolecek 
    408       1.1  jdolecek found:
    409       1.1  jdolecek 	/*
    410       1.1  jdolecek 	 * NOTE:  We still have the buffer with matched directory entry at
    411       1.1  jdolecek 	 * this point.
    412       1.1  jdolecek 	 */
    413       1.1  jdolecek 	isadir = dep->deAttributes & ATTR_DIRECTORY;
    414       1.1  jdolecek 	scn = getushort(dep->deStartCluster);
    415       1.1  jdolecek 	if (FAT32(pmp)) {
    416       1.1  jdolecek 		scn |= getushort(dep->deHighClust) << 16;
    417       1.1  jdolecek 		if (scn == pmp->pm_rootdirblk) {
    418       1.1  jdolecek 			/*
    419       1.1  jdolecek 			 * There should actually be 0 here.
    420       1.1  jdolecek 			 * Just ignore the error.
    421       1.1  jdolecek 			 */
    422       1.1  jdolecek 			scn = MSDOSFSROOT;
    423       1.1  jdolecek 		}
    424       1.1  jdolecek 	}
    425       1.1  jdolecek 
    426       1.1  jdolecek 	if (isadir) {
    427       1.1  jdolecek 		cluster = scn;
    428       1.1  jdolecek 		if (cluster == MSDOSFSROOT)
    429       1.1  jdolecek 			blkoff = MSDOSFSROOT_OFS;
    430       1.1  jdolecek 		else
    431       1.1  jdolecek 			blkoff = 0;
    432       1.1  jdolecek 	} else if (cluster == MSDOSFSROOT)
    433       1.1  jdolecek 		blkoff = diroff;
    434       1.1  jdolecek 
    435       1.1  jdolecek 	/*
    436       1.1  jdolecek 	 * Now release buf to allow deget to read the entry again.
    437       1.1  jdolecek 	 * Reserving it here and giving it to deget could result
    438       1.1  jdolecek 	 * in a deadlock.
    439       1.1  jdolecek 	 */
    440       1.1  jdolecek 	brelse(bp);
    441       1.1  jdolecek 
    442       1.1  jdolecek foundroot:
    443       1.1  jdolecek 	/*
    444       1.1  jdolecek 	 * If we entered at foundroot, then we are looking for the . or ..
    445       1.1  jdolecek 	 * entry of the filesystems root directory.  isadir and scn were
    446       1.1  jdolecek 	 * setup before jumping here.  And, bp is already null.
    447       1.1  jdolecek 	 */
    448       1.1  jdolecek 	if (FAT32(pmp) && scn == MSDOSFSROOT)
    449       1.1  jdolecek 		scn = pmp->pm_rootdirblk;
    450       1.1  jdolecek 
    451       1.1  jdolecek 	/*
    452       1.1  jdolecek 	 * If deleting, and at end of pathname, return
    453       1.1  jdolecek 	 * parameters which can be used to remove file.
    454       1.1  jdolecek 	 * If the wantparent flag isn't set, we return only
    455       1.1  jdolecek 	 * the directory (in ndp->ni_dvp), otherwise we go
    456       1.1  jdolecek 	 * on and lock the inode, being careful with ".".
    457       1.1  jdolecek 	 */
    458       1.1  jdolecek 	if (nameiop == DELETE && (flags & ISLASTCN)) {
    459       1.1  jdolecek 		/*
    460       1.1  jdolecek 		 * Don't allow deleting the root.
    461       1.1  jdolecek 		 */
    462       1.1  jdolecek 		if (blkoff == MSDOSFSROOT_OFS)
    463       1.1  jdolecek 			return EROFS;			/* really? XXX */
    464       1.1  jdolecek 
    465       1.1  jdolecek 		/*
    466       1.1  jdolecek 		 * Write access to directory required to delete files.
    467       1.1  jdolecek 		 */
    468       1.3      fvdl 		error = VOP_ACCESS(vdp, VWRITE, cnp->cn_cred, cnp->cn_proc);
    469       1.1  jdolecek 		if (error)
    470       1.1  jdolecek 			return (error);
    471       1.1  jdolecek 
    472       1.1  jdolecek 		/*
    473       1.1  jdolecek 		 * Return pointer to current entry in dp->i_offset.
    474       1.1  jdolecek 		 * Save directory inode pointer in ndp->ni_dvp for dirremove().
    475       1.1  jdolecek 		 */
    476       1.1  jdolecek 		if (dp->de_StartCluster == scn && isadir) {	/* "." */
    477       1.1  jdolecek 			VREF(vdp);
    478       1.1  jdolecek 			*vpp = vdp;
    479       1.1  jdolecek 			return (0);
    480       1.1  jdolecek 		}
    481       1.1  jdolecek 		if ((error = deget(pmp, cluster, blkoff, &tdp)) != 0)
    482       1.1  jdolecek 			return (error);
    483       1.1  jdolecek 		*vpp = DETOV(tdp);
    484       1.1  jdolecek 		if (!lockparent) {
    485       1.1  jdolecek 			VOP_UNLOCK(vdp, 0);
    486       1.1  jdolecek 			cnp->cn_flags |= PDIRUNLOCK;
    487       1.1  jdolecek 		}
    488       1.1  jdolecek 		return (0);
    489       1.1  jdolecek 	}
    490       1.1  jdolecek 
    491       1.1  jdolecek 	/*
    492       1.1  jdolecek 	 * If rewriting (RENAME), return the inode and the
    493       1.1  jdolecek 	 * information required to rewrite the present directory
    494       1.1  jdolecek 	 * Must get inode of directory entry to verify it's a
    495       1.1  jdolecek 	 * regular file, or empty directory.
    496       1.1  jdolecek 	 */
    497       1.1  jdolecek 	if (nameiop == RENAME && wantparent &&
    498       1.1  jdolecek 	    (flags & ISLASTCN)) {
    499       1.1  jdolecek 
    500       1.1  jdolecek 		if (vdp->v_mount->mnt_flag & MNT_RDONLY)
    501       1.1  jdolecek 			return (EROFS);
    502       1.1  jdolecek 
    503       1.1  jdolecek 		if (blkoff == MSDOSFSROOT_OFS)
    504       1.1  jdolecek 			return EROFS;				/* really? XXX */
    505       1.1  jdolecek 
    506       1.3      fvdl 		error = VOP_ACCESS(vdp, VWRITE, cnp->cn_cred, cnp->cn_proc);
    507       1.1  jdolecek 		if (error)
    508       1.1  jdolecek 			return (error);
    509       1.1  jdolecek 
    510       1.1  jdolecek 		/*
    511       1.1  jdolecek 		 * Careful about locking second inode.
    512       1.1  jdolecek 		 * This can only occur if the target is ".".
    513       1.1  jdolecek 		 */
    514       1.1  jdolecek 		if (dp->de_StartCluster == scn && isadir)
    515       1.1  jdolecek 			return (EISDIR);
    516       1.1  jdolecek 
    517       1.1  jdolecek 		if ((error = deget(pmp, cluster, blkoff, &tdp)) != 0)
    518       1.1  jdolecek 			return (error);
    519       1.1  jdolecek 		*vpp = DETOV(tdp);
    520       1.1  jdolecek 		cnp->cn_flags |= SAVENAME;
    521       1.1  jdolecek 		if (!lockparent) {
    522       1.1  jdolecek 			VOP_UNLOCK(vdp, 0);
    523       1.1  jdolecek 			cnp->cn_flags |= PDIRUNLOCK;
    524       1.1  jdolecek 		}
    525       1.1  jdolecek 		return (0);
    526       1.1  jdolecek 	}
    527       1.1  jdolecek 
    528       1.1  jdolecek 	/*
    529       1.1  jdolecek 	 * Step through the translation in the name.  We do not `vput' the
    530       1.1  jdolecek 	 * directory because we may need it again if a symbolic link
    531       1.1  jdolecek 	 * is relative to the current directory.  Instead we save it
    532       1.1  jdolecek 	 * unlocked as "pdp".  We must get the target inode before unlocking
    533       1.1  jdolecek 	 * the directory to insure that the inode will not be removed
    534       1.1  jdolecek 	 * before we get it.  We prevent deadlock by always fetching
    535       1.1  jdolecek 	 * inodes from the root, moving down the directory tree. Thus
    536       1.1  jdolecek 	 * when following backward pointers ".." we must unlock the
    537       1.1  jdolecek 	 * parent directory before getting the requested directory.
    538       1.1  jdolecek 	 * There is a potential race condition here if both the current
    539       1.1  jdolecek 	 * and parent directories are removed before the VFS_VGET for the
    540       1.1  jdolecek 	 * inode associated with ".." returns.  We hope that this occurs
    541       1.1  jdolecek 	 * infrequently since we cannot avoid this race condition without
    542       1.1  jdolecek 	 * implementing a sophisticated deadlock detection algorithm.
    543       1.1  jdolecek 	 * Note also that this simple deadlock detection scheme will not
    544       1.1  jdolecek 	 * work if the file system has any hard links other than ".."
    545       1.1  jdolecek 	 * that point backwards in the directory structure.
    546       1.1  jdolecek 	 */
    547       1.1  jdolecek 	pdp = vdp;
    548       1.1  jdolecek 	if (flags & ISDOTDOT) {
    549       1.1  jdolecek 		VOP_UNLOCK(pdp, 0);	/* race to get the inode */
    550       1.1  jdolecek 		cnp->cn_flags |= PDIRUNLOCK;
    551       1.1  jdolecek 		if ((error = deget(pmp, cluster, blkoff, &tdp)) != 0) {
    552       1.1  jdolecek 			if (vn_lock(pdp, LK_EXCLUSIVE | LK_RETRY) == 0)
    553       1.1  jdolecek 				cnp->cn_flags &= ~PDIRUNLOCK;
    554       1.1  jdolecek 			return (error);
    555       1.1  jdolecek 		}
    556       1.1  jdolecek 		if (lockparent && (flags & ISLASTCN)) {
    557       1.1  jdolecek 			if ((error = vn_lock(pdp, LK_EXCLUSIVE))) {
    558       1.1  jdolecek 				vput(DETOV(tdp));
    559       1.1  jdolecek 				return (error);
    560       1.1  jdolecek 			}
    561       1.1  jdolecek 			cnp->cn_flags &= ~PDIRUNLOCK;
    562       1.1  jdolecek 		}
    563       1.1  jdolecek 		*vpp = DETOV(tdp);
    564       1.1  jdolecek 	} else if (dp->de_StartCluster == scn && isadir) {
    565       1.1  jdolecek 		VREF(vdp);	/* we want ourself, ie "." */
    566       1.1  jdolecek 		*vpp = vdp;
    567       1.1  jdolecek 	} else {
    568       1.1  jdolecek 		if ((error = deget(pmp, cluster, blkoff, &tdp)) != 0)
    569       1.1  jdolecek 			return (error);
    570       1.1  jdolecek 		if (!lockparent || !(flags & ISLASTCN)) {
    571       1.1  jdolecek 			VOP_UNLOCK(pdp, 0);
    572       1.1  jdolecek 			cnp->cn_flags |= PDIRUNLOCK;
    573       1.1  jdolecek 		}
    574       1.1  jdolecek 		*vpp = DETOV(tdp);
    575       1.1  jdolecek 	}
    576       1.1  jdolecek 
    577       1.1  jdolecek 	/*
    578       1.1  jdolecek 	 * Insert name into cache if appropriate.
    579       1.1  jdolecek 	 */
    580       1.1  jdolecek 	if (cnp->cn_flags & MAKEENTRY)
    581       1.1  jdolecek 		cache_enter(vdp, *vpp, cnp);
    582       1.1  jdolecek 
    583       1.1  jdolecek 	return (0);
    584       1.1  jdolecek }
    585       1.1  jdolecek 
    586       1.1  jdolecek /*
    587       1.1  jdolecek  * dep  - directory entry to copy into the directory
    588       1.1  jdolecek  * ddep - directory to add to
    589       1.1  jdolecek  * depp - return the address of the denode for the created directory entry
    590       1.1  jdolecek  *	  if depp != 0
    591       1.1  jdolecek  * cnp  - componentname needed for Win95 long filenames
    592       1.1  jdolecek  */
    593       1.1  jdolecek int
    594       1.1  jdolecek createde(dep, ddep, depp, cnp)
    595       1.1  jdolecek 	struct denode *dep;
    596       1.1  jdolecek 	struct denode *ddep;
    597       1.1  jdolecek 	struct denode **depp;
    598       1.1  jdolecek 	struct componentname *cnp;
    599       1.1  jdolecek {
    600       1.1  jdolecek 	int error, rberror;
    601       1.1  jdolecek 	u_long dirclust, clusoffset;
    602       1.1  jdolecek 	u_long fndoffset, havecnt=0, wcnt=1;
    603       1.1  jdolecek 	struct direntry *ndep;
    604       1.1  jdolecek 	struct msdosfsmount *pmp = ddep->de_pmp;
    605       1.1  jdolecek 	struct buf *bp;
    606       1.1  jdolecek 	daddr_t bn;
    607       1.1  jdolecek 	int blsize, i;
    608       1.1  jdolecek 	int async = ddep->de_pmp->pm_mountp->mnt_flag & MNT_ASYNC;
    609       1.1  jdolecek 
    610       1.1  jdolecek #ifdef MSDOSFS_DEBUG
    611       1.1  jdolecek 	printf("createde(dep %p, ddep %p, depp %p, cnp %p)\n",
    612       1.1  jdolecek 	    dep, ddep, depp, cnp);
    613       1.1  jdolecek #endif
    614       1.1  jdolecek 
    615       1.1  jdolecek 	/*
    616       1.1  jdolecek 	 * If no space left in the directory then allocate another cluster
    617       1.1  jdolecek 	 * and chain it onto the end of the file.  There is one exception
    618       1.1  jdolecek 	 * to this.  That is, if the root directory has no more space it
    619       1.1  jdolecek 	 * can NOT be expanded.  extendfile() checks for and fails attempts
    620       1.1  jdolecek 	 * to extend the root directory.  We just return an error in that
    621       1.1  jdolecek 	 * case.
    622       1.1  jdolecek 	 */
    623       1.1  jdolecek 	if (ddep->de_fndoffset >= ddep->de_FileSize) {
    624       1.1  jdolecek 		u_long needlen = ddep->de_fndoffset + sizeof(struct direntry)
    625       1.1  jdolecek 		    - ddep->de_FileSize;
    626       1.1  jdolecek 		dirclust = de_clcount(pmp, needlen);
    627       1.1  jdolecek 		if ((error = extendfile(ddep, dirclust, 0, 0, DE_CLEAR)) != 0) {
    628       1.1  jdolecek 			(void)detrunc(ddep, ddep->de_FileSize, 0, NOCRED, NULL);
    629       1.1  jdolecek 			goto err_norollback;
    630       1.1  jdolecek 		}
    631       1.1  jdolecek 
    632       1.1  jdolecek 		/*
    633       1.1  jdolecek 		 * Update the size of the directory
    634       1.1  jdolecek 		 */
    635       1.1  jdolecek 		ddep->de_FileSize += de_cn2off(pmp, dirclust);
    636       1.1  jdolecek 	}
    637       1.1  jdolecek 
    638       1.1  jdolecek 	/*
    639       1.1  jdolecek 	 * We just read in the cluster with space.  Copy the new directory
    640       1.1  jdolecek 	 * entry in.  Then write it to disk. NOTE:  DOS directories
    641       1.1  jdolecek 	 * do not get smaller as clusters are emptied.
    642       1.1  jdolecek 	 */
    643       1.1  jdolecek 	error = pcbmap(ddep, de_cluster(pmp, ddep->de_fndoffset),
    644       1.1  jdolecek 		       &bn, &dirclust, &blsize);
    645       1.1  jdolecek 	if (error)
    646       1.1  jdolecek 		goto err_norollback;
    647       1.1  jdolecek 	clusoffset = ddep->de_fndoffset;
    648       1.1  jdolecek 	if (dirclust != MSDOSFSROOT)
    649       1.1  jdolecek 		clusoffset &= pmp->pm_crbomask;
    650       1.1  jdolecek 	if ((error = bread(pmp->pm_devvp, bn, blsize, NOCRED, &bp)) != 0) {
    651       1.1  jdolecek 		brelse(bp);
    652       1.1  jdolecek 		goto err_norollback;
    653       1.1  jdolecek 	}
    654       1.1  jdolecek 	ndep = bptoep(pmp, bp, clusoffset);
    655       1.1  jdolecek 
    656       1.1  jdolecek 	DE_EXTERNALIZE(ndep, dep);
    657       1.1  jdolecek 
    658       1.1  jdolecek 	/*
    659       1.1  jdolecek 	 * Now write the Win95 long name
    660       1.1  jdolecek 	 */
    661       1.1  jdolecek 	if (ddep->de_fndcnt > 0) {
    662       1.1  jdolecek 		u_int8_t chksum = winChksum(ndep->deName);
    663       1.1  jdolecek 		const u_char *un = (const u_char *)cnp->cn_nameptr;
    664       1.1  jdolecek 		int unlen = cnp->cn_namelen;
    665       1.1  jdolecek 		u_long havecnt;
    666       1.1  jdolecek 
    667       1.1  jdolecek 		fndoffset = ddep->de_fndoffset;
    668       1.1  jdolecek 		havecnt = ddep->de_fndcnt + 1;
    669       1.1  jdolecek 
    670       1.1  jdolecek 		for(; wcnt < havecnt; wcnt++) {
    671       1.1  jdolecek 			if ((fndoffset & pmp->pm_crbomask) == 0) {
    672       1.1  jdolecek 				/* we should never get here if ddep is root
    673       1.1  jdolecek 				 * directory */
    674       1.1  jdolecek 
    675       1.1  jdolecek 				if (async)
    676       1.1  jdolecek 					(void) bdwrite(bp);
    677       1.1  jdolecek 				else if ((error = bwrite(bp)) != 0)
    678       1.1  jdolecek 					goto rollback;
    679       1.1  jdolecek 
    680       1.1  jdolecek 				fndoffset -= sizeof(struct direntry);
    681       1.1  jdolecek 				error = pcbmap(ddep,
    682       1.1  jdolecek 					       de_cluster(pmp, fndoffset),
    683       1.1  jdolecek 					       &bn, 0, &blsize);
    684       1.1  jdolecek 				if (error)
    685       1.1  jdolecek 					goto rollback;
    686       1.1  jdolecek 
    687       1.1  jdolecek 				error = bread(pmp->pm_devvp, bn, blsize,
    688       1.1  jdolecek 					      NOCRED, &bp);
    689       1.1  jdolecek 				if (error) {
    690       1.1  jdolecek 					brelse(bp);
    691       1.1  jdolecek 					goto rollback;
    692       1.1  jdolecek 				}
    693       1.1  jdolecek 				ndep = bptoep(pmp, bp,
    694       1.1  jdolecek 						fndoffset & pmp->pm_crbomask);
    695       1.1  jdolecek 			} else {
    696       1.1  jdolecek 				ndep--;
    697       1.1  jdolecek 				fndoffset -= sizeof(struct direntry);
    698       1.1  jdolecek 			}
    699       1.1  jdolecek 			if (!unix2winfn(un, unlen, (struct winentry *)ndep,
    700       1.1  jdolecek 						wcnt, chksum))
    701       1.1  jdolecek 				break;
    702       1.1  jdolecek 		}
    703       1.1  jdolecek 	}
    704       1.1  jdolecek 
    705       1.1  jdolecek 	if (async)
    706       1.1  jdolecek 		bdwrite(bp);
    707       1.1  jdolecek 	else if ((error = bwrite(bp)) != 0)
    708       1.1  jdolecek 		goto rollback;
    709       1.1  jdolecek 
    710       1.1  jdolecek 	/*
    711       1.1  jdolecek 	 * If they want us to return with the denode gotten.
    712       1.1  jdolecek 	 */
    713       1.1  jdolecek 	if (depp) {
    714       1.1  jdolecek 		u_long diroffset = clusoffset;
    715       1.1  jdolecek 		if (dep->de_Attributes & ATTR_DIRECTORY) {
    716       1.1  jdolecek 			dirclust = dep->de_StartCluster;
    717       1.1  jdolecek 			if (FAT32(pmp) && dirclust == pmp->pm_rootdirblk)
    718       1.1  jdolecek 				dirclust = MSDOSFSROOT;
    719       1.1  jdolecek 			if (dirclust == MSDOSFSROOT)
    720       1.1  jdolecek 				diroffset = MSDOSFSROOT_OFS;
    721       1.1  jdolecek 			else
    722       1.1  jdolecek 				diroffset = 0;
    723       1.1  jdolecek 		}
    724       1.1  jdolecek 		return deget(pmp, dirclust, diroffset, depp);
    725       1.1  jdolecek 	}
    726       1.1  jdolecek 
    727       1.1  jdolecek 	return 0;
    728       1.1  jdolecek 
    729       1.1  jdolecek     rollback:
    730       1.1  jdolecek 	/*
    731       1.1  jdolecek 	 * Mark all slots modified so far as deleted. Note that we
    732       1.1  jdolecek 	 * can't just call removede(), since directory is not in
    733       1.1  jdolecek 	 * consistent state.
    734       1.1  jdolecek 	 */
    735       1.1  jdolecek 	fndoffset = ddep->de_fndoffset;
    736       1.1  jdolecek 	rberror = pcbmap(ddep, de_cluster(pmp, fndoffset),
    737       1.1  jdolecek 	       &bn, NULL, &blsize);
    738       1.1  jdolecek 	if (rberror)
    739       1.1  jdolecek 		goto err_norollback;
    740       1.1  jdolecek 	if ((rberror = bread(pmp->pm_devvp, bn, blsize, NOCRED, &bp)) != 0) {
    741       1.1  jdolecek 		brelse(bp);
    742       1.1  jdolecek 		goto err_norollback;
    743       1.1  jdolecek 	}
    744       1.1  jdolecek 	ndep = bptoep(pmp, bp, clusoffset);
    745       1.1  jdolecek 
    746       1.1  jdolecek 	havecnt = ddep->de_fndcnt + 1;
    747       1.1  jdolecek 	for(i=wcnt; i <= havecnt; i++) {
    748       1.1  jdolecek 		/* mark entry as deleted */
    749       1.1  jdolecek 		ndep->deName[0] = SLOT_DELETED;
    750       1.1  jdolecek 
    751       1.1  jdolecek 		if ((fndoffset & pmp->pm_crbomask) == 0) {
    752       1.1  jdolecek 			/* we should never get here if ddep is root
    753       1.1  jdolecek 			 * directory */
    754       1.1  jdolecek 
    755       1.1  jdolecek 			if (async)
    756       1.1  jdolecek 				bdwrite(bp);
    757       1.1  jdolecek 			else if ((rberror = bwrite(bp)) != 0)
    758       1.1  jdolecek 				goto err_norollback;
    759       1.1  jdolecek 
    760       1.1  jdolecek 			fndoffset -= sizeof(struct direntry);
    761       1.1  jdolecek 			rberror = pcbmap(ddep,
    762       1.1  jdolecek 				       de_cluster(pmp, fndoffset),
    763       1.1  jdolecek 				       &bn, 0, &blsize);
    764       1.1  jdolecek 			if (rberror)
    765       1.1  jdolecek 				goto err_norollback;
    766       1.1  jdolecek 
    767       1.1  jdolecek 			rberror = bread(pmp->pm_devvp, bn, blsize,
    768       1.1  jdolecek 				      NOCRED, &bp);
    769       1.1  jdolecek 			if (rberror) {
    770       1.1  jdolecek 				brelse(bp);
    771       1.1  jdolecek 				goto err_norollback;
    772       1.1  jdolecek 			}
    773       1.1  jdolecek 			ndep = bptoep(pmp, bp, fndoffset);
    774       1.1  jdolecek 		} else {
    775       1.1  jdolecek 			ndep--;
    776       1.1  jdolecek 			fndoffset -= sizeof(struct direntry);
    777       1.1  jdolecek 		}
    778       1.1  jdolecek 	}
    779       1.1  jdolecek 
    780       1.1  jdolecek 	/* ignore any further error */
    781       1.1  jdolecek 	if (async)
    782       1.1  jdolecek 		(void) bdwrite(bp);
    783       1.1  jdolecek 	else
    784       1.1  jdolecek 		(void) bwrite(bp);
    785       1.1  jdolecek 
    786       1.1  jdolecek     err_norollback:
    787       1.1  jdolecek 	return error;
    788       1.1  jdolecek }
    789       1.1  jdolecek 
    790       1.1  jdolecek /*
    791       1.1  jdolecek  * Be sure a directory is empty except for "." and "..". Return 1 if empty,
    792       1.1  jdolecek  * return 0 if not empty or error.
    793       1.1  jdolecek  */
    794       1.1  jdolecek int
    795       1.1  jdolecek dosdirempty(dep)
    796       1.1  jdolecek 	struct denode *dep;
    797       1.1  jdolecek {
    798       1.1  jdolecek 	int blsize;
    799       1.1  jdolecek 	int error;
    800       1.1  jdolecek 	u_long cn;
    801       1.1  jdolecek 	daddr_t bn;
    802       1.1  jdolecek 	struct buf *bp;
    803       1.1  jdolecek 	struct msdosfsmount *pmp = dep->de_pmp;
    804       1.1  jdolecek 	struct direntry *dentp;
    805       1.1  jdolecek 
    806       1.1  jdolecek 	/*
    807       1.1  jdolecek 	 * Since the filesize field in directory entries for a directory is
    808       1.1  jdolecek 	 * zero, we just have to feel our way through the directory until
    809       1.1  jdolecek 	 * we hit end of file.
    810       1.1  jdolecek 	 */
    811       1.1  jdolecek 	for (cn = 0;; cn++) {
    812       1.1  jdolecek 		if ((error = pcbmap(dep, cn, &bn, 0, &blsize)) != 0) {
    813       1.1  jdolecek 			if (error == E2BIG)
    814       1.1  jdolecek 				return (1);	/* it's empty */
    815       1.1  jdolecek 			return (0);
    816       1.1  jdolecek 		}
    817       1.1  jdolecek 		error = bread(pmp->pm_devvp, bn, blsize, NOCRED, &bp);
    818       1.1  jdolecek 		if (error) {
    819       1.1  jdolecek 			brelse(bp);
    820       1.1  jdolecek 			return (0);
    821       1.1  jdolecek 		}
    822       1.1  jdolecek 		for (dentp = (struct direntry *)bp->b_data;
    823       1.1  jdolecek 		     (char *)dentp < bp->b_data + blsize;
    824       1.1  jdolecek 		     dentp++) {
    825       1.1  jdolecek 			if (dentp->deName[0] != SLOT_DELETED &&
    826       1.1  jdolecek 			    (dentp->deAttributes & ATTR_VOLUME) == 0) {
    827       1.1  jdolecek 				/*
    828       1.1  jdolecek 				 * In dos directories an entry whose name
    829       1.1  jdolecek 				 * starts with SLOT_EMPTY (0) starts the
    830       1.1  jdolecek 				 * beginning of the unused part of the
    831       1.1  jdolecek 				 * directory, so we can just return that it
    832       1.1  jdolecek 				 * is empty.
    833       1.1  jdolecek 				 */
    834       1.1  jdolecek 				if (dentp->deName[0] == SLOT_EMPTY) {
    835       1.1  jdolecek 					brelse(bp);
    836       1.1  jdolecek 					return (1);
    837       1.1  jdolecek 				}
    838       1.1  jdolecek 				/*
    839       1.1  jdolecek 				 * Any names other than "." and ".." in a
    840       1.1  jdolecek 				 * directory mean it is not empty.
    841       1.1  jdolecek 				 */
    842       1.1  jdolecek 				if (memcmp(dentp->deName, ".          ", 11) &&
    843       1.1  jdolecek 				    memcmp(dentp->deName, "..         ", 11)) {
    844       1.1  jdolecek 					brelse(bp);
    845       1.1  jdolecek #ifdef MSDOSFS_DEBUG
    846       1.1  jdolecek 					printf("dosdirempty(): found %.11s, %d, %d\n",
    847       1.1  jdolecek 					    dentp->deName, dentp->deName[0],
    848       1.1  jdolecek 						dentp->deName[1]);
    849       1.1  jdolecek #endif
    850       1.1  jdolecek 					return (0);	/* not empty */
    851       1.1  jdolecek 				}
    852       1.1  jdolecek 			}
    853       1.1  jdolecek 		}
    854       1.1  jdolecek 		brelse(bp);
    855       1.1  jdolecek 	}
    856       1.1  jdolecek 	/* NOTREACHED */
    857       1.1  jdolecek }
    858       1.1  jdolecek 
    859       1.1  jdolecek /*
    860       1.1  jdolecek  * Check to see if the directory described by target is in some
    861       1.1  jdolecek  * subdirectory of source.  This prevents something like the following from
    862       1.1  jdolecek  * succeeding and leaving a bunch or files and directories orphaned. mv
    863       1.1  jdolecek  * /a/b/c /a/b/c/d/e/f Where c and f are directories.
    864       1.1  jdolecek  *
    865       1.1  jdolecek  * source - the inode for /a/b/c
    866       1.1  jdolecek  * target - the inode for /a/b/c/d/e/f
    867       1.1  jdolecek  *
    868       1.1  jdolecek  * Returns 0 if target is NOT a subdirectory of source.
    869       1.1  jdolecek  * Otherwise returns a non-zero error number.
    870       1.1  jdolecek  * The target inode is always unlocked on return.
    871       1.1  jdolecek  */
    872       1.1  jdolecek int
    873       1.1  jdolecek doscheckpath(source, target)
    874       1.1  jdolecek 	struct denode *source;
    875       1.1  jdolecek 	struct denode *target;
    876       1.1  jdolecek {
    877       1.1  jdolecek 	u_long scn;
    878       1.1  jdolecek 	struct msdosfsmount *pmp;
    879       1.1  jdolecek 	struct direntry *ep;
    880       1.1  jdolecek 	struct denode *dep;
    881       1.1  jdolecek 	struct buf *bp = NULL;
    882       1.1  jdolecek 	int error = 0;
    883       1.1  jdolecek 
    884       1.1  jdolecek 	dep = target;
    885       1.1  jdolecek 	if ((target->de_Attributes & ATTR_DIRECTORY) == 0 ||
    886       1.1  jdolecek 	    (source->de_Attributes & ATTR_DIRECTORY) == 0) {
    887       1.1  jdolecek 		error = ENOTDIR;
    888       1.1  jdolecek 		goto out;
    889       1.1  jdolecek 	}
    890       1.1  jdolecek 	if (dep->de_StartCluster == source->de_StartCluster) {
    891       1.1  jdolecek 		error = EEXIST;
    892       1.1  jdolecek 		goto out;
    893       1.1  jdolecek 	}
    894       1.1  jdolecek 	if (dep->de_StartCluster == MSDOSFSROOT)
    895       1.1  jdolecek 		goto out;
    896       1.1  jdolecek 	pmp = dep->de_pmp;
    897       1.1  jdolecek #ifdef	DIAGNOSTIC
    898       1.1  jdolecek 	if (pmp != source->de_pmp)
    899       1.1  jdolecek 		panic("doscheckpath: source and target on different filesystems");
    900       1.1  jdolecek #endif
    901       1.1  jdolecek 	if (FAT32(pmp) && dep->de_StartCluster == pmp->pm_rootdirblk)
    902       1.1  jdolecek 		goto out;
    903       1.1  jdolecek 
    904       1.1  jdolecek 	for (;;) {
    905       1.1  jdolecek 		if ((dep->de_Attributes & ATTR_DIRECTORY) == 0) {
    906       1.1  jdolecek 			error = ENOTDIR;
    907       1.1  jdolecek 			break;
    908       1.1  jdolecek 		}
    909       1.1  jdolecek 		scn = dep->de_StartCluster;
    910       1.1  jdolecek 		error = bread(pmp->pm_devvp, cntobn(pmp, scn),
    911       1.1  jdolecek 			      pmp->pm_bpcluster, NOCRED, &bp);
    912       1.1  jdolecek 		if (error)
    913       1.1  jdolecek 			break;
    914       1.1  jdolecek 
    915       1.1  jdolecek 		ep = (struct direntry *) bp->b_data + 1;
    916       1.1  jdolecek 		if ((ep->deAttributes & ATTR_DIRECTORY) == 0 ||
    917       1.1  jdolecek 		    memcmp(ep->deName, "..         ", 11) != 0) {
    918       1.1  jdolecek 			error = ENOTDIR;
    919       1.1  jdolecek 			break;
    920       1.1  jdolecek 		}
    921       1.1  jdolecek 		scn = getushort(ep->deStartCluster);
    922       1.1  jdolecek 		if (FAT32(pmp))
    923       1.1  jdolecek 			scn |= getushort(ep->deHighClust) << 16;
    924       1.1  jdolecek 
    925       1.1  jdolecek 		if (scn == source->de_StartCluster) {
    926       1.1  jdolecek 			error = EINVAL;
    927       1.1  jdolecek 			break;
    928       1.1  jdolecek 		}
    929       1.1  jdolecek 		if (scn == MSDOSFSROOT)
    930       1.1  jdolecek 			break;
    931       1.1  jdolecek 		if (FAT32(pmp) && scn == pmp->pm_rootdirblk) {
    932       1.1  jdolecek 			/*
    933       1.1  jdolecek 			 * scn should be 0 in this case,
    934       1.1  jdolecek 			 * but we silently ignore the error.
    935       1.1  jdolecek 			 */
    936       1.1  jdolecek 			break;
    937       1.1  jdolecek 		}
    938       1.1  jdolecek 
    939       1.1  jdolecek 		vput(DETOV(dep));
    940       1.1  jdolecek 		brelse(bp);
    941       1.1  jdolecek 		bp = NULL;
    942       1.1  jdolecek 		/* NOTE: deget() clears dep on error */
    943       1.1  jdolecek 		if ((error = deget(pmp, scn, 0, &dep)) != 0)
    944       1.1  jdolecek 			break;
    945       1.1  jdolecek 	}
    946       1.1  jdolecek out:
    947       1.1  jdolecek 	if (bp)
    948       1.1  jdolecek 		brelse(bp);
    949       1.1  jdolecek 	if (error == ENOTDIR)
    950       1.1  jdolecek 		printf("doscheckpath(): .. not a directory?\n");
    951       1.1  jdolecek 	if (dep != NULL)
    952       1.1  jdolecek 		vput(DETOV(dep));
    953       1.1  jdolecek 	return (error);
    954       1.1  jdolecek }
    955       1.1  jdolecek 
    956       1.1  jdolecek /*
    957       1.1  jdolecek  * Read in the disk block containing the directory entry (dirclu, dirofs)
    958       1.1  jdolecek  * and return the address of the buf header, and the address of the
    959       1.1  jdolecek  * directory entry within the block.
    960       1.1  jdolecek  */
    961       1.1  jdolecek int
    962       1.1  jdolecek readep(pmp, dirclust, diroffset, bpp, epp)
    963       1.1  jdolecek 	struct msdosfsmount *pmp;
    964       1.1  jdolecek 	u_long dirclust, diroffset;
    965       1.1  jdolecek 	struct buf **bpp;
    966       1.1  jdolecek 	struct direntry **epp;
    967       1.1  jdolecek {
    968       1.1  jdolecek 	int error;
    969       1.1  jdolecek 	daddr_t bn;
    970       1.1  jdolecek 	int blsize;
    971       1.1  jdolecek 
    972       1.1  jdolecek 	blsize = pmp->pm_bpcluster;
    973       1.1  jdolecek 	if (dirclust == MSDOSFSROOT
    974       1.1  jdolecek 	    && de_blk(pmp, diroffset + blsize) > pmp->pm_rootdirsize)
    975       1.1  jdolecek 		blsize = de_bn2off(pmp, pmp->pm_rootdirsize) & pmp->pm_crbomask;
    976       1.1  jdolecek 	bn = detobn(pmp, dirclust, diroffset);
    977       1.1  jdolecek 	if ((error = bread(pmp->pm_devvp, bn, blsize, NOCRED, bpp)) != 0) {
    978       1.1  jdolecek 		brelse(*bpp);
    979       1.1  jdolecek 		*bpp = NULL;
    980       1.1  jdolecek 		return (error);
    981       1.1  jdolecek 	}
    982       1.1  jdolecek 	if (epp)
    983       1.1  jdolecek 		*epp = bptoep(pmp, *bpp, diroffset);
    984       1.1  jdolecek 	return (0);
    985       1.1  jdolecek }
    986       1.1  jdolecek 
    987       1.1  jdolecek /*
    988       1.1  jdolecek  * Read in the disk block containing the directory entry dep came from and
    989       1.1  jdolecek  * return the address of the buf header, and the address of the directory
    990       1.1  jdolecek  * entry within the block.
    991       1.1  jdolecek  */
    992       1.1  jdolecek int
    993       1.1  jdolecek readde(dep, bpp, epp)
    994       1.1  jdolecek 	struct denode *dep;
    995       1.1  jdolecek 	struct buf **bpp;
    996       1.1  jdolecek 	struct direntry **epp;
    997       1.1  jdolecek {
    998       1.1  jdolecek 	return (readep(dep->de_pmp, dep->de_dirclust, dep->de_diroffset,
    999       1.1  jdolecek 			bpp, epp));
   1000       1.1  jdolecek }
   1001       1.1  jdolecek 
   1002       1.1  jdolecek /*
   1003       1.1  jdolecek  * Remove a directory entry. At this point the file represented by the
   1004       1.1  jdolecek  * directory entry to be removed is still full length until noone has it
   1005       1.1  jdolecek  * open.  When the file no longer being used msdosfs_inactive() is called
   1006       1.1  jdolecek  * and will truncate the file to 0 length.  When the vnode containing the
   1007       1.1  jdolecek  * denode is needed for some other purpose by VFS it will call
   1008       1.1  jdolecek  * msdosfs_reclaim() which will remove the denode from the denode cache.
   1009       1.1  jdolecek  */
   1010       1.1  jdolecek int
   1011       1.1  jdolecek removede(pdep, dep)
   1012       1.1  jdolecek 	struct denode *pdep;	/* directory where the entry is removed */
   1013       1.1  jdolecek 	struct denode *dep;	/* file to be removed */
   1014       1.1  jdolecek {
   1015       1.1  jdolecek 	int error;
   1016       1.1  jdolecek 	struct direntry *ep;
   1017       1.1  jdolecek 	struct buf *bp;
   1018       1.1  jdolecek 	daddr_t bn;
   1019       1.1  jdolecek 	int blsize;
   1020       1.1  jdolecek 	struct msdosfsmount *pmp = pdep->de_pmp;
   1021       1.1  jdolecek 	u_long offset = pdep->de_fndoffset;
   1022       1.1  jdolecek 	int async = pdep->de_pmp->pm_mountp->mnt_flag & MNT_ASYNC;
   1023       1.1  jdolecek 
   1024       1.1  jdolecek #ifdef MSDOSFS_DEBUG
   1025       1.1  jdolecek 	printf("removede(): filename %s, dep %p, offset %08lx\n",
   1026       1.1  jdolecek 	    dep->de_Name, dep, offset);
   1027       1.1  jdolecek #endif
   1028       1.1  jdolecek 
   1029       1.1  jdolecek 	dep->de_refcnt--;
   1030       1.1  jdolecek 	offset += sizeof(struct direntry);
   1031       1.1  jdolecek 	do {
   1032       1.1  jdolecek 		offset -= sizeof(struct direntry);
   1033       1.1  jdolecek 		error = pcbmap(pdep, de_cluster(pmp, offset), &bn, 0, &blsize);
   1034       1.1  jdolecek 		if (error)
   1035       1.1  jdolecek 			return error;
   1036       1.1  jdolecek 		error = bread(pmp->pm_devvp, bn, blsize, NOCRED, &bp);
   1037       1.1  jdolecek 		if (error) {
   1038       1.1  jdolecek 			brelse(bp);
   1039       1.1  jdolecek 			return error;
   1040       1.1  jdolecek 		}
   1041       1.1  jdolecek 		ep = bptoep(pmp, bp, offset);
   1042       1.1  jdolecek 		/*
   1043       1.1  jdolecek 		 * Check whether, if we came here the second time, i.e.
   1044       1.1  jdolecek 		 * when underflowing into the previous block, the last
   1045       1.1  jdolecek 		 * entry in this block is a longfilename entry, too.
   1046       1.1  jdolecek 		 */
   1047       1.1  jdolecek 		if (ep->deAttributes != ATTR_WIN95
   1048       1.1  jdolecek 		    && offset != pdep->de_fndoffset) {
   1049       1.1  jdolecek 			brelse(bp);
   1050       1.1  jdolecek 			break;
   1051       1.1  jdolecek 		}
   1052       1.1  jdolecek 		offset += sizeof(struct direntry);
   1053       1.1  jdolecek 		while (1) {
   1054       1.1  jdolecek 			/*
   1055       1.1  jdolecek 			 * We are a bit agressive here in that we delete any Win95
   1056       1.1  jdolecek 			 * entries preceding this entry, not just the ones we "own".
   1057       1.1  jdolecek 			 * Since these presumably aren't valid anyway,
   1058       1.1  jdolecek 			 * there should be no harm.
   1059       1.1  jdolecek 			 */
   1060       1.1  jdolecek 			offset -= sizeof(struct direntry);
   1061       1.1  jdolecek 			ep--->deName[0] = SLOT_DELETED;
   1062       1.1  jdolecek 			if ((pmp->pm_flags & MSDOSFSMNT_NOWIN95)
   1063       1.1  jdolecek 			    || !(offset & pmp->pm_crbomask)
   1064       1.1  jdolecek 			    || ep->deAttributes != ATTR_WIN95)
   1065       1.1  jdolecek 				break;
   1066       1.1  jdolecek 		}
   1067       1.1  jdolecek 		if (async)
   1068       1.1  jdolecek 			bdwrite(bp);
   1069       1.1  jdolecek 		else if ((error = bwrite(bp)) != 0)
   1070       1.1  jdolecek 			return error;
   1071       1.1  jdolecek 	} while (!(pmp->pm_flags & MSDOSFSMNT_NOWIN95)
   1072       1.1  jdolecek 	    && !(offset & pmp->pm_crbomask)
   1073       1.1  jdolecek 	    && offset);
   1074       1.1  jdolecek 	return 0;
   1075       1.1  jdolecek }
   1076       1.1  jdolecek 
   1077       1.1  jdolecek /*
   1078       1.1  jdolecek  * Create a unique DOS name in dvp
   1079       1.1  jdolecek  */
   1080       1.1  jdolecek int
   1081       1.1  jdolecek uniqdosname(dep, cnp, cp)
   1082       1.1  jdolecek 	struct denode *dep;
   1083       1.1  jdolecek 	struct componentname *cnp;
   1084       1.1  jdolecek 	u_char *cp;
   1085       1.1  jdolecek {
   1086       1.1  jdolecek 	struct msdosfsmount *pmp = dep->de_pmp;
   1087       1.1  jdolecek 	struct direntry *dentp;
   1088       1.1  jdolecek 	int gen;
   1089       1.1  jdolecek 	int blsize;
   1090       1.1  jdolecek 	u_long cn;
   1091       1.1  jdolecek 	daddr_t bn;
   1092       1.1  jdolecek 	struct buf *bp;
   1093       1.1  jdolecek 	int error;
   1094       1.1  jdolecek 
   1095       1.1  jdolecek 	for (gen = 1;; gen++) {
   1096       1.1  jdolecek 		/*
   1097       1.1  jdolecek 		 * Generate DOS name with generation number
   1098       1.1  jdolecek 		 */
   1099       1.1  jdolecek 		if (!unix2dosfn((const u_char *)cnp->cn_nameptr, cp,
   1100       1.1  jdolecek 		    cnp->cn_namelen, gen))
   1101       1.1  jdolecek 			return gen == 1 ? EINVAL : EEXIST;
   1102       1.1  jdolecek 
   1103       1.1  jdolecek 		/*
   1104       1.1  jdolecek 		 * Now look for a dir entry with this exact name
   1105       1.1  jdolecek 		 */
   1106       1.1  jdolecek 		for (cn = error = 0; !error; cn++) {
   1107       1.1  jdolecek 			if ((error = pcbmap(dep, cn, &bn, 0, &blsize)) != 0) {
   1108       1.1  jdolecek 				if (error == E2BIG)	/* EOF reached and not found */
   1109       1.1  jdolecek 					return 0;
   1110       1.1  jdolecek 				return error;
   1111       1.1  jdolecek 			}
   1112       1.1  jdolecek 			error = bread(pmp->pm_devvp, bn, blsize, NOCRED, &bp);
   1113       1.1  jdolecek 			if (error) {
   1114       1.1  jdolecek 				brelse(bp);
   1115       1.1  jdolecek 				return error;
   1116       1.1  jdolecek 			}
   1117       1.1  jdolecek 			for (dentp = (struct direntry *)bp->b_data;
   1118       1.1  jdolecek 			     (char *)dentp < bp->b_data + blsize;
   1119       1.1  jdolecek 			     dentp++) {
   1120       1.1  jdolecek 				if (dentp->deName[0] == SLOT_EMPTY) {
   1121       1.1  jdolecek 					/*
   1122       1.1  jdolecek 					 * Last used entry and not found
   1123       1.1  jdolecek 					 */
   1124       1.1  jdolecek 					brelse(bp);
   1125       1.1  jdolecek 					return 0;
   1126       1.1  jdolecek 				}
   1127       1.1  jdolecek 				/*
   1128       1.1  jdolecek 				 * Ignore volume labels and Win95 entries
   1129       1.1  jdolecek 				 */
   1130       1.1  jdolecek 				if (dentp->deAttributes & ATTR_VOLUME)
   1131       1.1  jdolecek 					continue;
   1132       1.1  jdolecek 				if (!memcmp(dentp->deName, cp, 11)) {
   1133       1.1  jdolecek 					error = EEXIST;
   1134       1.1  jdolecek 					break;
   1135       1.1  jdolecek 				}
   1136       1.1  jdolecek 			}
   1137       1.1  jdolecek 			brelse(bp);
   1138       1.1  jdolecek 		}
   1139       1.1  jdolecek 	}
   1140       1.1  jdolecek }
   1141       1.1  jdolecek 
   1142       1.1  jdolecek /*
   1143       1.1  jdolecek  * Find any Win'95 long filename entry in directory dep
   1144       1.1  jdolecek  */
   1145       1.1  jdolecek int
   1146       1.1  jdolecek findwin95(dep)
   1147       1.1  jdolecek 	struct denode *dep;
   1148       1.1  jdolecek {
   1149       1.1  jdolecek 	struct msdosfsmount *pmp = dep->de_pmp;
   1150       1.1  jdolecek 	struct direntry *dentp;
   1151       1.1  jdolecek 	int blsize;
   1152       1.1  jdolecek 	u_long cn;
   1153       1.1  jdolecek 	daddr_t bn;
   1154       1.1  jdolecek 	struct buf *bp;
   1155       1.1  jdolecek 
   1156       1.1  jdolecek 	/*
   1157       1.1  jdolecek 	 * Read through the directory looking for Win'95 entries
   1158       1.1  jdolecek 	 * XXX Note: Error currently handled just as EOF
   1159       1.1  jdolecek 	 */
   1160       1.1  jdolecek 	for (cn = 0;; cn++) {
   1161       1.1  jdolecek 		if (pcbmap(dep, cn, &bn, 0, &blsize))
   1162       1.1  jdolecek 			return 0;
   1163       1.1  jdolecek 		if (bread(pmp->pm_devvp, bn, blsize, NOCRED, &bp)) {
   1164       1.1  jdolecek 			brelse(bp);
   1165       1.1  jdolecek 			return 0;
   1166       1.1  jdolecek 		}
   1167       1.1  jdolecek 		for (dentp = (struct direntry *)bp->b_data;
   1168       1.1  jdolecek 		     (char *)dentp < bp->b_data + blsize;
   1169       1.1  jdolecek 		     dentp++) {
   1170       1.1  jdolecek 			if (dentp->deName[0] == SLOT_EMPTY) {
   1171       1.1  jdolecek 				/*
   1172       1.1  jdolecek 				 * Last used entry and not found
   1173       1.1  jdolecek 				 */
   1174       1.1  jdolecek 				brelse(bp);
   1175       1.1  jdolecek 				return 0;
   1176       1.1  jdolecek 			}
   1177       1.1  jdolecek 			if (dentp->deName[0] == SLOT_DELETED) {
   1178       1.1  jdolecek 				/*
   1179       1.1  jdolecek 				 * Ignore deleted files
   1180       1.1  jdolecek 				 * Note: might be an indication of Win'95
   1181       1.1  jdolecek 				 * anyway	XXX
   1182       1.1  jdolecek 				 */
   1183       1.1  jdolecek 				continue;
   1184       1.1  jdolecek 			}
   1185       1.1  jdolecek 			if (dentp->deAttributes == ATTR_WIN95) {
   1186       1.1  jdolecek 				brelse(bp);
   1187       1.1  jdolecek 				return 1;
   1188       1.1  jdolecek 			}
   1189       1.1  jdolecek 		}
   1190       1.1  jdolecek 		brelse(bp);
   1191       1.1  jdolecek 	}
   1192       1.1  jdolecek }
   1193