1 /* $NetBSD: msdosfs_lookup.c,v 1.29 2013/01/26 16:51:51 christos Exp $ */
4 * Copyright (C) 1994, 1995, 1997 Wolfgang Solfrank.
5 * Copyright (C) 1994, 1995, 1997 TooLs GmbH.
7 * Original code by Paul Popelka (paulp@uts.amdahl.com) (see below).
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 * 2. Redistributions in binary form must reproduce the above copyright
15 * notice, this list of conditions and the following disclaimer in the
16 * documentation and/or other materials provided with the distribution.
17 * 3. All advertising materials mentioning features or use of this software
18 * must display the following acknowledgement:
19 * This product includes software developed by TooLs GmbH.
20 * 4. The name of TooLs GmbH may not be used to endorse or promote products
21 * derived from this software without specific prior written permission.
23 * THIS SOFTWARE IS PROVIDED BY TOOLS GMBH ``AS IS'' AND ANY EXPRESS OR
24 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
25 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
26 * IN NO EVENT SHALL TOOLS GMBH BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
27 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
28 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
29 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
30 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
31 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
32 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
35 * Written by Paul Popelka (paulp@uts.amdahl.com)
37 * You can do anything you want with this software, just don't say you wrote
38 * it, and don't remove this notice.
40 * This software is provided "as is".
42 * The author supplies this software to be publicly redistributed on the
43 * understanding that the author is not responsible for the correct
44 * functioning of this software in any circumstances and is not liable for
45 * any damages caused by this software.
50 #if HAVE_NBTOOL_CONFIG_H
51 #include "nbtool_config.h"
54 #include <sys/cdefs.h>
55 __KERNEL_RCSID(0, "$NetBSD: msdosfs_lookup.c,v 1.29 2013/01/26 16:51:51 christos Exp $");
57 #include <sys/param.h>
60 #include <sys/systm.h>
61 #include <sys/mount.h>
62 #include <sys/kauth.h>
63 #include <sys/namei.h>
64 #include <sys/dirent.h>
66 #include <sys/vnode.h>
71 #include <fs/msdosfs/bpb.h>
72 #include <fs/msdosfs/direntry.h>
73 #include <fs/msdosfs/denode.h>
74 #include <fs/msdosfs/msdosfsmount.h>
75 #include <fs/msdosfs/fat.h>
80 * When we search a directory the blocks containing directory entries are
81 * read and examined. The directory entries contain information that would
82 * normally be in the inode of a unix filesystem. This means that some of
83 * a directory's contents may also be in memory resident denodes (sort of
84 * an inode). This can cause problems if we are searching while some other
85 * process is modifying a directory. To prevent one process from accessing
86 * incompletely modified directory information we depend upon being the
87 * sole owner of a directory block. bread/brelse provide this service.
88 * This being the case, when a process modifies a directory it must first
89 * acquire the disk block that contains the directory entry to be modified.
90 * Then update the disk block and the denode, and then write the disk block
91 * out to disk. This way disk blocks containing directory entries and in
92 * memory denode's will be in synch.
95 msdosfs_lookup(void *v
)
97 struct vop_lookup_args
/* {
100 struct componentname *a_cnp;
102 struct vnode
*vdp
= ap
->a_dvp
;
103 struct vnode
**vpp
= ap
->a_vpp
;
104 struct componentname
*cnp
= ap
->a_cnp
;
114 int isadir
; /* ~0 if found direntry is a directory */
115 u_long scn
; /* starting cluster number */
119 struct msdosfsmount
*pmp
;
121 struct direntry
*dep
;
122 u_char dosfilename
[12];
124 int nameiop
= cnp
->cn_nameiop
;
126 int chksum
= -1, chksum_ok
;
129 flags
= cnp
->cn_flags
;
132 printf("msdosfs_lookup(): looking for %.*s\n",
133 (int)cnp
->cn_namelen
, cnp
->cn_nameptr
);
139 printf("msdosfs_lookup(): vdp %p, dp %p, Attr %02x\n",
140 vdp
, dp
, dp
->de_Attributes
);
144 * Check accessiblity of directory.
146 if ((error
= VOP_ACCESS(vdp
, VEXEC
, cnp
->cn_cred
)) != 0)
149 if ((flags
& ISLASTCN
) && (vdp
->v_mount
->mnt_flag
& MNT_RDONLY
) &&
150 (cnp
->cn_nameiop
== DELETE
|| cnp
->cn_nameiop
== RENAME
))
154 * We now have a segment name to search for, and a directory to search.
156 * Before tediously performing a linear scan of the directory,
157 * check the name cache to see if the directory/name pair
158 * we are looking for is known already.
160 if (cache_lookup(vdp
, cnp
->cn_nameptr
, cnp
->cn_namelen
,
161 cnp
->cn_nameiop
, cnp
->cn_flags
, NULL
, vpp
)) {
162 return *vpp
== NULLVP
? ENOENT
: 0;
166 * If they are going after the . or .. entry in the root directory,
167 * they won't find it. DOS filesystems don't have them in the root
168 * directory. So, we fake it. deget() is in on this scam too.
170 if ((vdp
->v_vflag
& VV_ROOT
) && cnp
->cn_nameptr
[0] == '.' &&
171 (cnp
->cn_namelen
== 1 ||
172 (cnp
->cn_namelen
== 2 && cnp
->cn_nameptr
[1] == '.'))) {
173 isadir
= ATTR_DIRECTORY
;
176 printf("msdosfs_lookup(): looking for . or .. in root directory\n");
178 cluster
= MSDOSFSROOT
;
179 blkoff
= MSDOSFSROOT_OFS
;
183 switch (unix2dosfn((const u_char
*)cnp
->cn_nameptr
, dosfilename
,
184 cnp
->cn_namelen
, 0)) {
190 wincnt
= winSlotCnt((const u_char
*)cnp
->cn_nameptr
,
191 cnp
->cn_namelen
) + 1;
195 wincnt
= winSlotCnt((const u_char
*)cnp
->cn_nameptr
,
196 cnp
->cn_namelen
) + 1;
199 if (pmp
->pm_flags
& MSDOSFSMNT_SHORTNAME
)
203 * Suppress search for slots unless creating
204 * file and at end of pathname, in which case
205 * we watch for a place to put the new file in
206 * case it doesn't already exist.
209 if ((nameiop
== CREATE
|| nameiop
== RENAME
) &&
214 printf("msdosfs_lookup(): dos filename: %s\n", dosfilename
);
217 * Search the directory pointed at by vdp for the name pointed at
218 * by cnp->cn_nameptr.
222 * The outer loop ranges over the clusters that make up the
223 * directory. Note that the root directory is different from all
224 * other directories. It has a fixed number of blocks that are not
225 * part of the pool of allocatable clusters. So, we treat it a
226 * little differently. The root directory starts at "cluster" 0.
229 for (frcn
= 0; diroff
< dp
->de_FileSize
; frcn
++) {
230 if ((error
= pcbmap(dp
, frcn
, &bn
, &cluster
, &blsize
)) != 0) {
235 error
= bread(pmp
->pm_devvp
, de_bn2kb(pmp
, bn
), blsize
, NOCRED
,
240 for (blkoff
= 0; blkoff
< blsize
;
241 blkoff
+= sizeof(struct direntry
),
242 diroff
+= sizeof(struct direntry
)) {
243 dep
= (struct direntry
*)((char *)bp
->b_data
+ blkoff
);
245 * If the slot is empty and we are still looking
246 * for an empty then remember this one. If the
247 * slot is not empty then check to see if it
248 * matches what we are looking for. If the slot
249 * has never been filled with anything, then the
250 * remainder of the directory has never been used,
251 * so there is no point in searching it.
253 if (dep
->deName
[0] == SLOT_EMPTY
||
254 dep
->deName
[0] == SLOT_DELETED
) {
256 * Drop memory of previous long matches
260 if (slotcount
< wincnt
) {
264 if (dep
->deName
[0] == SLOT_EMPTY
) {
270 * If there wasn't enough space for our
271 * winentries, forget about the empty space
273 if (slotcount
< wincnt
)
277 * Check for Win95 long filename entry
279 if (dep
->deAttributes
== ATTR_WIN95
) {
280 if (pmp
->pm_flags
& MSDOSFSMNT_SHORTNAME
)
283 chksum
= winChkName((const u_char
*)cnp
->cn_nameptr
,
285 (struct winentry
*)dep
,
291 * Ignore volume labels (anywhere, not just
292 * the root directory).
294 if (dep
->deAttributes
& ATTR_VOLUME
) {
300 * Check for a checksum or name match
302 chksum_ok
= (chksum
== winChksum(dep
->deName
));
304 && (!olddos
|| memcmp(dosfilename
, dep
->deName
, 11))) {
309 printf("msdosfs_lookup(): match blkoff %d, diroff %d\n",
313 * Remember where this directory
314 * entry came from for whoever did
317 dp
->de_fndoffset
= diroff
;
318 if (chksum_ok
&& nameiop
== RENAME
) {
320 * Target had correct long name
321 * directory entries, reuse them
324 dp
->de_fndcnt
= wincnt
- 1;
327 * Long name directory entries
328 * not present or corrupt, can only
329 * reuse dos directory entry.
336 } /* for (blkoff = 0; .... */
338 * Release the buffer holding the directory cluster just
342 } /* for (frcn = 0; ; frcn++) */
346 * We hold no disk buffers at this point.
350 * If we get here we didn't find the entry we were looking for. But
351 * that's ok if we are creating or renaming and are at the end of
352 * the pathname and the directory hasn't been removed.
355 printf("msdosfs_lookup(): op %d, refcnt %ld, slotcount %d, slotoffset %d\n",
356 nameiop
, dp
->de_refcnt
, slotcount
, slotoffset
);
358 if ((nameiop
== CREATE
|| nameiop
== RENAME
) &&
359 (flags
& ISLASTCN
) && dp
->de_refcnt
!= 0) {
361 * Access for write is interpreted as allowing
362 * creation of files in the directory.
364 error
= VOP_ACCESS(vdp
, VWRITE
, cnp
->cn_cred
);
369 * Fixup the slot description to point to the place where
370 * we might put the new DOS direntry (putting the Win95
371 * long name entries before that)
377 if (wincnt
> slotcount
) {
379 sizeof(struct direntry
) * (wincnt
- slotcount
);
383 * Return an indication of where the new directory
384 * entry should be put.
386 dp
->de_fndoffset
= slotoffset
;
387 dp
->de_fndcnt
= wincnt
- 1;
390 * We return with the directory locked, so that
391 * the parameters we set up above will still be
392 * valid if we actually decide to do a direnter().
393 * We return ni_vp == NULL to indicate that the entry
394 * does not currently exist; we leave a pointer to
395 * the (locked) directory inode in ndp->ni_dvp.
397 * NB - if the directory is unlocked, then this
398 * information cannot be used.
400 return (EJUSTRETURN
);
405 * Insert name into cache (as non-existent) if appropriate.
407 * XXX Negative caching is broken for msdosfs because the name
408 * cache doesn't understand peculiarities such as case insensitivity
409 * and 8.3 filenames. Hence, it may not invalidate all negative
410 * entries if a file with this name is later created.
411 * e.g. creating a file 'foo' won't invalidate a negative entry
414 if (nameiop
!= CREATE
)
415 cache_enter(vdp
, *vpp
, cnp
->cn_nameptr
, cnp
->cn_namelen
,
423 * NOTE: We still have the buffer with matched directory entry at
426 isadir
= dep
->deAttributes
& ATTR_DIRECTORY
;
427 scn
= getushort(dep
->deStartCluster
);
429 scn
|= getushort(dep
->deHighClust
) << 16;
430 if (scn
== pmp
->pm_rootdirblk
) {
432 * There should actually be 0 here.
433 * Just ignore the error.
441 if (cluster
== MSDOSFSROOT
)
442 blkoff
= MSDOSFSROOT_OFS
;
445 } else if (cluster
== MSDOSFSROOT
)
449 * Now release buf to allow deget to read the entry again.
450 * Reserving it here and giving it to deget could result
457 * If we entered at foundroot, then we are looking for the . or ..
458 * entry of the filesystems root directory. isadir and scn were
459 * setup before jumping here. And, bp is already null.
461 if (FAT32(pmp
) && scn
== MSDOSFSROOT
)
462 scn
= pmp
->pm_rootdirblk
;
465 * If deleting, and at end of pathname, return
466 * parameters which can be used to remove file.
467 * Lock the inode, being careful with ".".
469 if (nameiop
== DELETE
&& (flags
& ISLASTCN
)) {
471 * Don't allow deleting the root.
473 if (blkoff
== MSDOSFSROOT_OFS
)
477 * Write access to directory required to delete files.
479 error
= VOP_ACCESS(vdp
, VWRITE
, cnp
->cn_cred
);
484 * Return pointer to current entry in dp->i_offset.
485 * Save directory inode pointer in ndp->ni_dvp for dirremove().
487 if (dp
->de_StartCluster
== scn
&& isadir
) { /* "." */
492 if ((error
= deget(pmp
, cluster
, blkoff
, &tdp
)) != 0)
499 * If rewriting (RENAME), return the inode and the
500 * information required to rewrite the present directory
501 * Must get inode of directory entry to verify it's a
502 * regular file, or empty directory.
504 if (nameiop
== RENAME
&& (flags
& ISLASTCN
)) {
506 if (vdp
->v_mount
->mnt_flag
& MNT_RDONLY
)
509 if (blkoff
== MSDOSFSROOT_OFS
)
512 error
= VOP_ACCESS(vdp
, VWRITE
, cnp
->cn_cred
);
517 * Careful about locking second inode.
518 * This can only occur if the target is ".".
520 if (dp
->de_StartCluster
== scn
&& isadir
)
523 if ((error
= deget(pmp
, cluster
, blkoff
, &tdp
)) != 0)
530 * Step through the translation in the name. We do not `vput' the
531 * directory because we may need it again if a symbolic link
532 * is relative to the current directory. Instead we save it
533 * unlocked as "pdp". We must get the target inode before unlocking
534 * the directory to insure that the inode will not be removed
535 * before we get it. We prevent deadlock by always fetching
536 * inodes from the root, moving down the directory tree. Thus
537 * when following backward pointers ".." we must unlock the
538 * parent directory before getting the requested directory.
539 * There is a potential race condition here if both the current
540 * and parent directories are removed before the VFS_VGET for the
541 * inode associated with ".." returns. We hope that this occurs
542 * infrequently since we cannot avoid this race condition without
543 * implementing a sophisticated deadlock detection algorithm.
544 * Note also that this simple deadlock detection scheme will not
545 * work if the file system has any hard links other than ".."
546 * that point backwards in the directory structure.
549 if (flags
& ISDOTDOT
) {
550 VOP_UNLOCK(pdp
); /* race to get the inode */
551 error
= deget(pmp
, cluster
, blkoff
, &tdp
);
552 vn_lock(pdp
, LK_EXCLUSIVE
| LK_RETRY
);
557 } else if (dp
->de_StartCluster
== scn
&& isadir
) {
558 vref(vdp
); /* we want ourself, ie "." */
561 if ((error
= deget(pmp
, cluster
, blkoff
, &tdp
)) != 0)
567 * Insert name into cache if appropriate.
569 cache_enter(vdp
, *vpp
, cnp
->cn_nameptr
, cnp
->cn_namelen
, cnp
->cn_flags
);
576 * dep - directory entry to copy into the directory
577 * ddep - directory to add to
578 * depp - return the address of the denode for the created directory entry
580 * cnp - componentname needed for Win95 long filenames
583 createde(struct denode
*dep
, struct denode
*ddep
, struct denode
**depp
, struct componentname
*cnp
)
586 u_long dirclust
, clusoffset
;
587 u_long fndoffset
, havecnt
= 0, wcnt
= 1, i
;
588 struct direntry
*ndep
;
589 struct msdosfsmount
*pmp
= ddep
->de_pmp
;
594 int async
= ddep
->de_pmp
->pm_mountp
->mnt_flag
& MNT_ASYNC
;
600 printf("createde(dep %p, ddep %p, depp %p, cnp %p)\n",
601 dep
, ddep
, depp
, cnp
);
605 * If no space left in the directory then allocate another cluster
606 * and chain it onto the end of the file. There is one exception
607 * to this. That is, if the root directory has no more space it
608 * can NOT be expanded. extendfile() checks for and fails attempts
609 * to extend the root directory. We just return an error in that
612 if (ddep
->de_fndoffset
>= ddep
->de_FileSize
) {
613 u_long needlen
= ddep
->de_fndoffset
+ sizeof(struct direntry
)
615 dirclust
= de_clcount(pmp
, needlen
);
616 if ((error
= extendfile(ddep
, dirclust
, 0, 0, DE_CLEAR
)) != 0) {
617 (void)detrunc(ddep
, ddep
->de_FileSize
, 0, NOCRED
);
622 * Update the size of the directory
624 ddep
->de_FileSize
+= de_cn2off(pmp
, dirclust
);
628 * We just read in the cluster with space. Copy the new directory
629 * entry in. Then write it to disk. NOTE: DOS directories
630 * do not get smaller as clusters are emptied.
632 error
= pcbmap(ddep
, de_cluster(pmp
, ddep
->de_fndoffset
),
633 &bn
, &dirclust
, &blsize
);
636 clusoffset
= ddep
->de_fndoffset
;
637 if (dirclust
!= MSDOSFSROOT
)
638 clusoffset
&= pmp
->pm_crbomask
;
639 if ((error
= bread(pmp
->pm_devvp
, de_bn2kb(pmp
, bn
), blsize
, NOCRED
,
640 B_MODIFY
, &bp
)) != 0) {
643 ndep
= bptoep(pmp
, bp
, clusoffset
);
645 DE_EXTERNALIZE(ndep
, dep
);
648 * Now write the Win95 long name
650 if (ddep
->de_fndcnt
> 0) {
651 u_int8_t chksum
= winChksum(ndep
->deName
);
652 const u_char
*un
= (const u_char
*)cnp
->cn_nameptr
;
653 int unlen
= cnp
->cn_namelen
;
656 fndoffset
= ddep
->de_fndoffset
;
657 xhavecnt
= ddep
->de_fndcnt
+ 1;
659 for(; wcnt
< xhavecnt
; wcnt
++) {
660 if ((fndoffset
& pmp
->pm_crbomask
) == 0) {
661 /* we should never get here if ddep is root
666 else if ((error
= bwrite(bp
)) != 0)
669 fndoffset
-= sizeof(struct direntry
);
671 de_cluster(pmp
, fndoffset
),
676 error
= bread(pmp
->pm_devvp
, de_bn2kb(pmp
, bn
),
677 blsize
, NOCRED
, B_MODIFY
, &bp
);
681 ndep
= bptoep(pmp
, bp
,
682 fndoffset
& pmp
->pm_crbomask
);
685 fndoffset
-= sizeof(struct direntry
);
687 if (!unix2winfn(un
, unlen
, (struct winentry
*)ndep
,
695 else if ((error
= bwrite(bp
)) != 0)
699 * If they want us to return with the denode gotten.
702 u_long diroffset
= clusoffset
;
703 if (dep
->de_Attributes
& ATTR_DIRECTORY
) {
704 dirclust
= dep
->de_StartCluster
;
705 if (FAT32(pmp
) && dirclust
== pmp
->pm_rootdirblk
)
706 dirclust
= MSDOSFSROOT
;
707 if (dirclust
== MSDOSFSROOT
)
708 diroffset
= MSDOSFSROOT_OFS
;
712 return deget(pmp
, dirclust
, diroffset
, depp
);
719 * Mark all slots modified so far as deleted. Note that we
720 * can't just call removede(), since directory is not in
723 fndoffset
= ddep
->de_fndoffset
;
724 rberror
= pcbmap(ddep
, de_cluster(pmp
, fndoffset
),
728 if ((rberror
= bread(pmp
->pm_devvp
, de_bn2kb(pmp
, bn
), blsize
, NOCRED
,
729 B_MODIFY
, &bp
)) != 0) {
732 ndep
= bptoep(pmp
, bp
, clusoffset
);
734 havecnt
= ddep
->de_fndcnt
+ 1;
735 for(i
= wcnt
; i
<= havecnt
; i
++) {
736 /* mark entry as deleted */
737 ndep
->deName
[0] = SLOT_DELETED
;
739 if ((fndoffset
& pmp
->pm_crbomask
) == 0) {
740 /* we should never get here if ddep is root
745 else if ((rberror
= bwrite(bp
)) != 0)
748 fndoffset
-= sizeof(struct direntry
);
749 rberror
= pcbmap(ddep
,
750 de_cluster(pmp
, fndoffset
),
755 rberror
= bread(pmp
->pm_devvp
, de_bn2kb(pmp
, bn
),
756 blsize
, NOCRED
, B_MODIFY
, &bp
);
760 ndep
= bptoep(pmp
, bp
, fndoffset
);
763 fndoffset
-= sizeof(struct direntry
);
767 /* ignore any further error */
778 * Be sure a directory is empty except for "." and "..". Return 1 if empty,
779 * return 0 if not empty or error.
782 dosdirempty(struct denode
*dep
)
789 struct msdosfsmount
*pmp
= dep
->de_pmp
;
790 struct direntry
*dentp
;
793 * Since the filesize field in directory entries for a directory is
794 * zero, we just have to feel our way through the directory until
795 * we hit end of file.
797 for (cn
= 0;; cn
++) {
798 if ((error
= pcbmap(dep
, cn
, &bn
, 0, &blsize
)) != 0) {
800 return (1); /* it's empty */
803 error
= bread(pmp
->pm_devvp
, de_bn2kb(pmp
, bn
), blsize
, NOCRED
,
808 for (dentp
= (struct direntry
*)bp
->b_data
;
809 (char *)dentp
< (char *)bp
->b_data
+ blsize
;
811 if (dentp
->deName
[0] != SLOT_DELETED
&&
812 (dentp
->deAttributes
& ATTR_VOLUME
) == 0) {
814 * In dos directories an entry whose name
815 * starts with SLOT_EMPTY (0) starts the
816 * beginning of the unused part of the
817 * directory, so we can just return that it
820 if (dentp
->deName
[0] == SLOT_EMPTY
) {
825 * Any names other than "." and ".." in a
826 * directory mean it is not empty.
828 if (memcmp(dentp
->deName
, ". ", 11) &&
829 memcmp(dentp
->deName
, ".. ", 11)) {
832 printf("dosdirempty(): found %.11s, %d, %d\n",
833 dentp
->deName
, dentp
->deName
[0],
836 return (0); /* not empty */
846 * Check to see if the directory described by target is in some
847 * subdirectory of source. This prevents something like the following from
848 * succeeding and leaving a bunch or files and directories orphaned. mv
849 * /a/b/c /a/b/c/d/e/f Where c and f are directories.
851 * source - the inode for /a/b/c
852 * target - the inode for /a/b/c/d/e/f
854 * Returns 0 if target is NOT a subdirectory of source.
855 * Otherwise returns a non-zero error number.
856 * The target inode is always unlocked on return.
859 doscheckpath(struct denode
*source
, struct denode
*target
)
862 struct msdosfsmount
*pmp
;
865 struct buf
*bp
= NULL
;
869 if ((target
->de_Attributes
& ATTR_DIRECTORY
) == 0 ||
870 (source
->de_Attributes
& ATTR_DIRECTORY
) == 0) {
874 if (dep
->de_StartCluster
== source
->de_StartCluster
) {
878 if (dep
->de_StartCluster
== MSDOSFSROOT
)
882 if (pmp
!= source
->de_pmp
)
883 panic("doscheckpath: source and target on different filesystems");
885 if (FAT32(pmp
) && dep
->de_StartCluster
== pmp
->pm_rootdirblk
)
889 if ((dep
->de_Attributes
& ATTR_DIRECTORY
) == 0) {
893 scn
= dep
->de_StartCluster
;
894 error
= bread(pmp
->pm_devvp
, de_bn2kb(pmp
, cntobn(pmp
, scn
)),
895 pmp
->pm_bpcluster
, NOCRED
, 0, &bp
);
899 ep
= (struct direntry
*) bp
->b_data
+ 1;
900 if ((ep
->deAttributes
& ATTR_DIRECTORY
) == 0 ||
901 memcmp(ep
->deName
, ".. ", 11) != 0) {
905 scn
= getushort(ep
->deStartCluster
);
907 scn
|= getushort(ep
->deHighClust
) << 16;
909 if (scn
== source
->de_StartCluster
) {
913 if (scn
== MSDOSFSROOT
)
915 if (FAT32(pmp
) && scn
== pmp
->pm_rootdirblk
) {
917 * scn should be 0 in this case,
918 * but we silently ignore the error.
926 /* NOTE: deget() clears dep on error */
927 if ((error
= deget(pmp
, scn
, 0, &dep
)) != 0)
933 if (error
== ENOTDIR
)
934 printf("doscheckpath(): .. not a directory?\n");
941 * Read in the disk block containing the directory entry (dirclu, dirofs)
942 * and return the address of the buf header, and the address of the
943 * directory entry within the block.
946 readep(struct msdosfsmount
*pmp
, u_long dirclust
, u_long diroffset
, struct buf
**bpp
, struct direntry
**epp
)
952 blsize
= pmp
->pm_bpcluster
;
953 if (dirclust
== MSDOSFSROOT
954 && de_blk(pmp
, diroffset
+ blsize
) > pmp
->pm_rootdirsize
)
955 blsize
= de_bn2off(pmp
, pmp
->pm_rootdirsize
) & pmp
->pm_crbomask
;
956 bn
= detobn(pmp
, dirclust
, diroffset
);
957 if ((error
= bread(pmp
->pm_devvp
, de_bn2kb(pmp
, bn
), blsize
, NOCRED
,
963 *epp
= bptoep(pmp
, *bpp
, diroffset
);
968 * Read in the disk block containing the directory entry dep came from and
969 * return the address of the buf header, and the address of the directory
970 * entry within the block.
973 readde(struct denode
*dep
, struct buf
**bpp
, struct direntry
**epp
)
975 return (readep(dep
->de_pmp
, dep
->de_dirclust
, dep
->de_diroffset
,
980 * Remove a directory entry. At this point the file represented by the
981 * directory entry to be removed is still full length until noone has it
982 * open. When the file no longer being used msdosfs_inactive() is called
983 * and will truncate the file to 0 length. When the vnode containing the
984 * denode is needed for some other purpose by VFS it will call
985 * msdosfs_reclaim() which will remove the denode from the denode cache.
988 removede(struct denode
*pdep
, struct denode
*dep
)
989 /* pdep: directory where the entry is removed */
990 /* dep: file to be removed */
997 struct msdosfsmount
*pmp
= pdep
->de_pmp
;
998 u_long offset
= pdep
->de_fndoffset
;
1000 int async
= pdep
->de_pmp
->pm_mountp
->mnt_flag
& MNT_ASYNC
;
1005 #ifdef MSDOSFS_DEBUG
1006 printf("removede(): filename %s, dep %p, offset %08lx\n",
1007 dep
->de_Name
, dep
, offset
);
1011 offset
+= sizeof(struct direntry
);
1013 offset
-= sizeof(struct direntry
);
1014 error
= pcbmap(pdep
, de_cluster(pmp
, offset
), &bn
, 0, &blsize
);
1017 error
= bread(pmp
->pm_devvp
, de_bn2kb(pmp
, bn
), blsize
, NOCRED
,
1022 ep
= bptoep(pmp
, bp
, offset
);
1024 * Check whether, if we came here the second time, i.e.
1025 * when underflowing into the previous block, the last
1026 * entry in this block is a longfilename entry, too.
1028 if (ep
->deAttributes
!= ATTR_WIN95
1029 && offset
!= pdep
->de_fndoffset
) {
1033 offset
+= sizeof(struct direntry
);
1036 * We are a bit agressive here in that we delete any Win95
1037 * entries preceding this entry, not just the ones we "own".
1038 * Since these presumably aren't valid anyway,
1039 * there should be no harm.
1041 offset
-= sizeof(struct direntry
);
1042 ep
--->deName
[0] = SLOT_DELETED
;
1043 if ((pmp
->pm_flags
& MSDOSFSMNT_NOWIN95
)
1044 || !(offset
& pmp
->pm_crbomask
)
1045 || ep
->deAttributes
!= ATTR_WIN95
)
1050 else if ((error
= bwrite(bp
)) != 0)
1052 } while (!(pmp
->pm_flags
& MSDOSFSMNT_NOWIN95
)
1053 && !(offset
& pmp
->pm_crbomask
)
1059 * Create a unique DOS name in dvp
1062 uniqdosname(struct denode
*dep
, struct componentname
*cnp
, u_char
*cp
)
1064 struct msdosfsmount
*pmp
= dep
->de_pmp
;
1065 struct direntry
*dentp
;
1073 for (gen
= 1;; gen
++) {
1075 * Generate DOS name with generation number
1077 if (!unix2dosfn((const u_char
*)cnp
->cn_nameptr
, cp
,
1078 cnp
->cn_namelen
, gen
))
1079 return gen
== 1 ? EINVAL
: EEXIST
;
1082 * Now look for a dir entry with this exact name
1084 for (cn
= error
= 0; !error
; cn
++) {
1085 if ((error
= pcbmap(dep
, cn
, &bn
, 0, &blsize
)) != 0) {
1086 if (error
== E2BIG
) /* EOF reached and not found */
1090 error
= bread(pmp
->pm_devvp
, de_bn2kb(pmp
, bn
), blsize
,
1095 for (dentp
= (struct direntry
*)bp
->b_data
;
1096 (char *)dentp
< (char *)bp
->b_data
+ blsize
;
1098 if (dentp
->deName
[0] == SLOT_EMPTY
) {
1100 * Last used entry and not found
1106 * Ignore volume labels and Win95 entries
1108 if (dentp
->deAttributes
& ATTR_VOLUME
)
1110 if (!memcmp(dentp
->deName
, cp
, 11)) {
1121 * Find any Win'95 long filename entry in directory dep
1124 findwin95(struct denode
*dep
)
1126 struct msdosfsmount
*pmp
= dep
->de_pmp
;
1127 struct direntry
*dentp
;
1135 * Read through the directory looking for Win'95 entries
1136 * XXX Note: Error currently handled just as EOF
1138 for (cn
= 0;; cn
++) {
1139 if (pcbmap(dep
, cn
, &bn
, 0, &blsize
))
1141 if (bread(pmp
->pm_devvp
, de_bn2kb(pmp
, bn
), blsize
, NOCRED
,
1145 for (dentp
= (struct direntry
*)bp
->b_data
;
1146 (char *)dentp
< (char *)bp
->b_data
+ blsize
;
1148 if (dentp
->deName
[0] == SLOT_EMPTY
) {
1150 * Last used entry and not found
1155 if (dentp
->deName
[0] == SLOT_DELETED
) {
1157 * Ignore deleted files
1158 * Note: might be an indication of Win'95
1163 if (dentp
->deAttributes
== ATTR_WIN95
) {