Home | History | Annotate | Line # | Download | only in msdosfs
msdosfsmount.h revision 1.2
      1 /*	$NetBSD: msdosfsmount.h,v 1.2 2003/02/01 06:23:41 thorpej Exp $	*/
      2 
      3 /*-
      4  * Copyright (C) 1994, 1995, 1997 Wolfgang Solfrank.
      5  * Copyright (C) 1994, 1995, 1997 TooLs GmbH.
      6  * All rights reserved.
      7  * Original code by Paul Popelka (paulp (at) uts.amdahl.com) (see below).
      8  *
      9  * Redistribution and use in source and binary forms, with or without
     10  * modification, are permitted provided that the following conditions
     11  * are met:
     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.
     22  *
     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.
     33  */
     34 /*
     35  * Written by Paul Popelka (paulp (at) uts.amdahl.com)
     36  *
     37  * You can do anything you want with this software, just don't say you wrote
     38  * it, and don't remove this notice.
     39  *
     40  * This software is provided "as is".
     41  *
     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.
     46  *
     47  * October 1992
     48  */
     49 
     50 /*
     51  *  Arguments to mount MSDOS filesystems.
     52  */
     53 struct msdosfs_args {
     54 	char	*fspec;		/* blocks special holding the fs to mount */
     55 	struct	export_args export;	/* network export information */
     56 	uid_t	uid;		/* uid that owns msdosfs files */
     57 	gid_t	gid;		/* gid that owns msdosfs files */
     58 	mode_t  mask;		/* mask to be applied for msdosfs perms */
     59 	int	flags;		/* see below */
     60 };
     61 
     62 /*
     63  * Msdosfs mount options:
     64  */
     65 #define	MSDOSFSMNT_SHORTNAME	1	/* Force old DOS short names only */
     66 #define	MSDOSFSMNT_LONGNAME	2	/* Force Win'95 long names */
     67 #define	MSDOSFSMNT_NOWIN95	4	/* Completely ignore Win95 entries */
     68 #define	MSDOSFSMNT_GEMDOSFS	8	/* This is a gemdos-flavour */
     69 
     70 /* All flags above: */
     71 #define	MSDOSFSMNT_MNTOPT \
     72 	(MSDOSFSMNT_SHORTNAME|MSDOSFSMNT_LONGNAME|MSDOSFSMNT_NOWIN95 \
     73 	 |MSDOSFSMNT_GEMDOSFS)
     74 #define	MSDOSFSMNT_RONLY	0x80000000	/* mounted read-only	*/
     75 #define	MSDOSFSMNT_WAITONFAT	0x40000000	/* mounted synchronous	*/
     76 #define	MSDOSFS_FATMIRROR	0x20000000	/* FAT is mirrored */
     77 
     78 #define MSDOSFSMNT_BITS "\177\20" \
     79     "b\00shortname\0b\01longname\0b\02nowin95\0bgemdosfs\0" \
     80     "b\037ronly\0b\036waitonfat\0b\035fatmirror"
     81 
     82 #ifdef _KERNEL
     83 #include <sys/mallocvar.h>
     84 MALLOC_DECLARE(M_MSDOSFSMNT);
     85 
     86 /*
     87  * Layout of the mount control block for a msdos file system.
     88  */
     89 struct msdosfsmount {
     90 	struct mount *pm_mountp;/* vfs mount struct for this fs */
     91 	dev_t pm_dev;		/* block special device mounted */
     92 	uid_t pm_uid;		/* uid to set as owner of the files */
     93 	gid_t pm_gid;		/* gid to set as owner of the files */
     94 	mode_t pm_mask;		/* mask to and with file protection bits */
     95 	struct vnode *pm_devvp;	/* vnode for block device mntd */
     96 	struct bpb50 pm_bpb;	/* BIOS parameter blk for this fs */
     97 	u_long pm_FATsecs;	/* actual number of fat sectors */
     98 	u_long pm_fatblk;	/* block # of first FAT */
     99 	u_long pm_rootdirblk;	/* block # (cluster # for FAT32) of root directory number */
    100 	u_long pm_rootdirsize;	/* size in blocks (not clusters) */
    101 	u_long pm_firstcluster;	/* block number of first cluster */
    102 	u_long pm_nmbrofclusters;	/* # of clusters in filesystem */
    103 	u_long pm_maxcluster;	/* maximum cluster number */
    104 	u_long pm_freeclustercount;	/* number of free clusters */
    105 	u_long pm_cnshift;	/* shift file offset right this amount to get a cluster number */
    106 	u_long pm_crbomask;	/* and a file offset with this mask to get cluster rel offset */
    107 	u_long pm_bnshift;	/* shift file offset right this amount to get a block number */
    108 	u_long pm_bpcluster;	/* bytes per cluster */
    109 	u_long pm_fmod;		/* ~0 if fs is modified, this can rollover to 0	*/
    110 	u_long pm_fatblocksize;	/* size of fat blocks in bytes */
    111 	u_long pm_fatblocksec;	/* size of fat blocks in sectors */
    112 	u_long pm_fatsize;	/* size of fat in bytes */
    113 	u_long pm_fatmask;	/* mask to use for fat numbers */
    114 	u_long pm_fsinfo;	/* fsinfo block number */
    115 	u_long pm_nxtfree;	/* next free cluster in fsinfo block */
    116 	u_int pm_fatmult;	/* these 2 values are used in fat */
    117 	u_int pm_fatdiv;	/*	offset computation */
    118 	u_int pm_curfat;	/* current fat for FAT32 (0 otherwise) */
    119 	u_int *pm_inusemap;	/* ptr to bitmap of in-use clusters */
    120 	u_int pm_flags;		/* see below */
    121 	struct netexport pm_export;	/* export information */
    122 };
    123 /* Byte offset in FAT on filesystem pmp, cluster cn */
    124 #define	FATOFS(pmp, cn)	((cn) * (pmp)->pm_fatmult / (pmp)->pm_fatdiv)
    125 
    126 #define	VFSTOMSDOSFS(mp)	((struct msdosfsmount *)mp->mnt_data)
    127 
    128 /* Number of bits in one pm_inusemap item: */
    129 #define	N_INUSEBITS	(8 * sizeof(u_int))
    130 
    131 /*
    132  * Shorthand for fields in the bpb contained in the msdosfsmount structure.
    133  */
    134 #define	pm_BytesPerSec	pm_bpb.bpbBytesPerSec
    135 #define	pm_ResSectors	pm_bpb.bpbResSectors
    136 #define	pm_FATs		pm_bpb.bpbFATs
    137 #define	pm_RootDirEnts	pm_bpb.bpbRootDirEnts
    138 #define	pm_Sectors	pm_bpb.bpbSectors
    139 #define	pm_Media	pm_bpb.bpbMedia
    140 #define	pm_SecPerTrack	pm_bpb.bpbSecPerTrack
    141 #define	pm_Heads	pm_bpb.bpbHeads
    142 #define	pm_HiddenSects	pm_bpb.bpbHiddenSecs
    143 #define	pm_HugeSectors	pm_bpb.bpbHugeSectors
    144 
    145 /*
    146  * Convert pointer to buffer -> pointer to direntry
    147  */
    148 #define	bptoep(pmp, bp, dirofs) \
    149 	((struct direntry *)(((bp)->b_data)	\
    150 	 + ((dirofs) & (pmp)->pm_crbomask)))
    151 
    152 /*
    153  * Convert block number to cluster number
    154  */
    155 #define	de_bn2cn(pmp, bn) \
    156 	((bn) >> ((pmp)->pm_cnshift - (pmp)->pm_bnshift))
    157 
    158 /*
    159  * Convert cluster number to block number
    160  */
    161 #define	de_cn2bn(pmp, cn) \
    162 	((cn) << ((pmp)->pm_cnshift - (pmp)->pm_bnshift))
    163 
    164 /*
    165  * Convert file offset to cluster number
    166  */
    167 #define de_cluster(pmp, off) \
    168 	((off) >> (pmp)->pm_cnshift)
    169 
    170 /*
    171  * Clusters required to hold size bytes
    172  */
    173 #define	de_clcount(pmp, size) \
    174 	(((size) + (pmp)->pm_bpcluster - 1) >> (pmp)->pm_cnshift)
    175 
    176 /*
    177  * Convert file offset to block number
    178  */
    179 #define de_blk(pmp, off) \
    180 	(de_cn2bn(pmp, de_cluster((pmp), (off))))
    181 
    182 /*
    183  * Convert cluster number to file offset
    184  */
    185 #define	de_cn2off(pmp, cn) \
    186 	((cn) << (pmp)->pm_cnshift)
    187 
    188 /*
    189  * Convert block number to file offset
    190  */
    191 #define	de_bn2off(pmp, bn) \
    192 	((bn) << (pmp)->pm_bnshift)
    193 /*
    194  * Map a cluster number into a filesystem relative block number.
    195  */
    196 #define	cntobn(pmp, cn) \
    197 	(de_cn2bn((pmp), (cn)-CLUST_FIRST) + (pmp)->pm_firstcluster)
    198 
    199 /*
    200  * Calculate block number for directory entry in root dir, offset dirofs
    201  */
    202 #define	roottobn(pmp, dirofs) \
    203 	(de_blk((pmp), (dirofs)) + (pmp)->pm_rootdirblk)
    204 
    205 /*
    206  * Calculate block number for directory entry at cluster dirclu, offset
    207  * dirofs
    208  */
    209 #define	detobn(pmp, dirclu, dirofs) \
    210 	((dirclu) == MSDOSFSROOT \
    211 	 ? roottobn((pmp), (dirofs)) \
    212 	 : cntobn((pmp), (dirclu)))
    213 
    214 /*
    215  * Prototypes for MSDOSFS virtual filesystem operations
    216  */
    217 void msdosfs_init __P((void));
    218 void msdosfs_reinit __P((void));
    219 void msdosfs_done __P((void));
    220 
    221 #endif /* _KERNEL */
    222