Home | History | Annotate | Line # | Download | only in adosfs
adosfs.h revision 1.3
      1  1.3    atatat /*	$NetBSD: adosfs.h,v 1.3 2004/05/20 06:34:26 atatat Exp $	*/
      2  1.1  jdolecek 
      3  1.1  jdolecek /*
      4  1.1  jdolecek  * Copyright (c) 1994 Christian E. Hopps
      5  1.1  jdolecek  * Copyright (c) 1996 Matthias Scheler
      6  1.1  jdolecek  * All rights reserved.
      7  1.1  jdolecek  *
      8  1.1  jdolecek  * Redistribution and use in source and binary forms, with or without
      9  1.1  jdolecek  * modification, are permitted provided that the following conditions
     10  1.1  jdolecek  * are met:
     11  1.1  jdolecek  * 1. Redistributions of source code must retain the above copyright
     12  1.1  jdolecek  *    notice, this list of conditions and the following disclaimer.
     13  1.1  jdolecek  * 2. Redistributions in binary form must reproduce the above copyright
     14  1.1  jdolecek  *    notice, this list of conditions and the following disclaimer in the
     15  1.1  jdolecek  *    documentation and/or other materials provided with the distribution.
     16  1.1  jdolecek  * 3. All advertising materials mentioning features or use of this software
     17  1.1  jdolecek  *    must display the following acknowledgement:
     18  1.1  jdolecek  *      This product includes software developed by Christian E. Hopps.
     19  1.1  jdolecek  * 4. The name of the author may not be used to endorse or promote products
     20  1.1  jdolecek  *    derived from this software without specific prior written permission
     21  1.1  jdolecek  *
     22  1.1  jdolecek  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     23  1.1  jdolecek  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     24  1.1  jdolecek  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     25  1.1  jdolecek  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     26  1.1  jdolecek  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     27  1.1  jdolecek  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     28  1.1  jdolecek  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     29  1.1  jdolecek  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     30  1.1  jdolecek  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     31  1.1  jdolecek  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     32  1.1  jdolecek  */
     33  1.1  jdolecek 
     34  1.1  jdolecek /*
     35  1.1  jdolecek  * Arguments to mount amigados filesystems.
     36  1.1  jdolecek  */
     37  1.1  jdolecek struct adosfs_args {
     38  1.1  jdolecek 	char	*fspec;		/* blocks special holding the fs to mount */
     39  1.1  jdolecek 	struct	export_args export;	/* network export information */
     40  1.1  jdolecek 	uid_t	uid;		/* uid that owns adosfs files */
     41  1.1  jdolecek 	gid_t	gid;		/* gid that owns adosfs files */
     42  1.1  jdolecek 	mode_t	mask;		/* mask to be applied for adosfs perms */
     43  1.1  jdolecek };
     44  1.1  jdolecek 
     45  1.1  jdolecek #ifdef _KERNEL
     46  1.2   thorpej #include <sys/mallocvar.h>
     47  1.1  jdolecek #include <miscfs/genfs/genfs_node.h>
     48  1.2   thorpej 
     49  1.2   thorpej MALLOC_DECLARE(M_ANODE);
     50  1.1  jdolecek 
     51  1.1  jdolecek /*
     52  1.1  jdolecek  * Amigados datestamp. (from 1/1/1978 00:00:00 local)
     53  1.1  jdolecek  */
     54  1.1  jdolecek struct datestamp {
     55  1.1  jdolecek 	u_int32_t days;
     56  1.1  jdolecek 	u_int32_t mins;
     57  1.1  jdolecek 	u_int32_t ticks;	/* 20000 * (ticks % 50) = useconds */
     58  1.1  jdolecek 				/* ticks / 50 = seconds */
     59  1.1  jdolecek };
     60  1.1  jdolecek 
     61  1.1  jdolecek enum anode_type { AROOT, ADIR, AFILE, ALDIR, ALFILE, ASLINK };
     62  1.1  jdolecek 
     63  1.1  jdolecek /*
     64  1.1  jdolecek  * similar to inode's, we use to represent:
     65  1.1  jdolecek  * the root dir, reg dirs, reg files and extension blocks
     66  1.1  jdolecek  * note the ``tab'' is a hash table for r/d, and a data block
     67  1.1  jdolecek  * table for f/e. it is always ANODETABSZ(ap) bytes in size.
     68  1.1  jdolecek  */
     69  1.1  jdolecek struct anode {
     70  1.1  jdolecek 	struct genfs_node gnode;
     71  1.1  jdolecek 	LIST_ENTRY(anode) link;
     72  1.1  jdolecek 	enum anode_type type;
     73  1.1  jdolecek 	char name[31];		/* (r/d/f) name for object */
     74  1.1  jdolecek 	struct datestamp mtimev;	/* (r) volume modified */
     75  1.1  jdolecek 	struct datestamp created;	/* (r) volume created */
     76  1.1  jdolecek 	struct datestamp mtime;	/* (r/d/f) last modified */
     77  1.1  jdolecek 	struct adosfsmount *amp;	/* owner file system */
     78  1.1  jdolecek 	struct vnode *vp;	/* owner vnode */
     79  1.1  jdolecek 	u_long fsize;		/* (f) size of file in bytes */
     80  1.1  jdolecek 	u_long block;		/* block num */
     81  1.1  jdolecek 	u_long pblock;		/* (d/f/e) parent block */
     82  1.1  jdolecek 	u_long hashf;		/* (d/f) hash forward */
     83  1.1  jdolecek 	u_long extb;		/* (f/e) extension block number */
     84  1.1  jdolecek 	u_long linkto;		/* (hd/hf) header this link points at */
     85  1.1  jdolecek 	u_long linknext;	/* (d/f/hd/hf) next link (or head) in chain */
     86  1.1  jdolecek 	u_long lastlindblk;	/* (f/hf) last logical indirect block */
     87  1.1  jdolecek 	u_long lastindblk;	/* (f/hf) last indirect block read */
     88  1.1  jdolecek 	u_long *tab;		/* (r/d) hash table */
     89  1.1  jdolecek 	int *tabi;		/* (r/d) table info */
     90  1.1  jdolecek 	int ntabent;		/* (r/d) number of entries in table */
     91  1.1  jdolecek 	int nwords;		/* size of blocks in long words */
     92  1.1  jdolecek 	int adprot;		/* (d/f) amigados protection bits */
     93  1.1  jdolecek 	uid_t  uid;		/* (d/f) uid of directory/file */
     94  1.1  jdolecek 	gid_t  gid;		/* (d/f) gid of directory/file */
     95  1.1  jdolecek 	int flags;		/* misc flags */
     96  1.1  jdolecek 	char *slinkto;		/* name of file or dir */
     97  1.1  jdolecek };
     98  1.1  jdolecek #define VTOA(vp)		((struct anode *)(vp)->v_data)
     99  1.1  jdolecek #define ATOV(ap)		((ap)->vp)
    100  1.1  jdolecek #define ANODETABSZ(ap)		(((ap)->nwords - 56) * sizeof(long))
    101  1.1  jdolecek #define ANODETABENT(ap)		((ap)->nwords - 56)
    102  1.1  jdolecek #define ANODENDATBLKENT(ap)	((ap)->nwords - 56)
    103  1.1  jdolecek 
    104  1.1  jdolecek /*
    105  1.1  jdolecek  * mount data
    106  1.1  jdolecek  */
    107  1.1  jdolecek #define ANODEHASHSZ (512)
    108  1.1  jdolecek 
    109  1.1  jdolecek struct adosfsmount {
    110  1.1  jdolecek 	LIST_HEAD(anodechain, anode) anodetab[ANODEHASHSZ];
    111  1.1  jdolecek 	struct mount *mp;	/* owner mount */
    112  1.1  jdolecek 	u_int32_t dostype;	/* type of volume */
    113  1.1  jdolecek 	u_long rootb;		/* root block number */
    114  1.1  jdolecek 	u_long secsperblk;	/* sectors per block */
    115  1.1  jdolecek 	u_long bsize;		/* size of blocks */
    116  1.1  jdolecek 	u_long nwords;		/* size of blocks in long words */
    117  1.1  jdolecek 	u_long dbsize;		/* data bytes per block */
    118  1.1  jdolecek 	uid_t  uid;		/* uid of mounting user */
    119  1.1  jdolecek 	gid_t  gid;		/* gid of mounting user */
    120  1.1  jdolecek 	u_long mask;		/* mode mask */
    121  1.1  jdolecek 	struct vnode *devvp;	/* blk device mounted on */
    122  1.1  jdolecek 	struct vnode *rootvp;	/* out root vnode */
    123  1.1  jdolecek 	struct netexport export;
    124  1.1  jdolecek 	u_long *bitmap;		/* allocation bitmap */
    125  1.1  jdolecek 	u_long numblks;		/* number of usable blocks */
    126  1.1  jdolecek 	u_long freeblks;	/* number of free blocks */
    127  1.1  jdolecek };
    128  1.1  jdolecek 
    129  1.1  jdolecek #define VFSTOADOSFS(mp) ((struct adosfsmount *)(mp)->mnt_data)
    130  1.1  jdolecek 
    131  1.1  jdolecek #define IS_FFS(amp)	((amp)->dostype & 1)
    132  1.1  jdolecek #define IS_INTER(amp)	(((amp)->dostype & 7) > 1)
    133  1.1  jdolecek 
    134  1.1  jdolecek /*
    135  1.1  jdolecek  * AmigaDOS block stuff.
    136  1.1  jdolecek  */
    137  1.1  jdolecek #define BBOFF		(0)
    138  1.1  jdolecek 
    139  1.1  jdolecek #define BPT_SHORT	((u_int32_t)2)
    140  1.1  jdolecek #define BPT_DATA	((u_int32_t)8)
    141  1.1  jdolecek #define BPT_LIST	((u_int32_t)16)
    142  1.1  jdolecek 
    143  1.1  jdolecek #define BST_RDIR	((u_int32_t)1)
    144  1.1  jdolecek #define BST_UDIR	((u_int32_t)2)
    145  1.1  jdolecek #define BST_SLINK	((u_int32_t)3)
    146  1.1  jdolecek #define BST_LDIR	((u_int32_t)4)
    147  1.1  jdolecek #define BST_FILE	((u_int32_t)-3)
    148  1.1  jdolecek #define BST_LFILE	((u_int32_t)-4)
    149  1.1  jdolecek 
    150  1.1  jdolecek #define	OFS_DATA_OFFSET	(24)
    151  1.1  jdolecek 
    152  1.1  jdolecek extern struct pool adosfs_node_pool;
    153  1.1  jdolecek 
    154  1.1  jdolecek /*
    155  1.1  jdolecek  * utility protos
    156  1.1  jdolecek  */
    157  1.1  jdolecek #if BYTE_ORDER != BIG_ENDIAN
    158  1.1  jdolecek u_int32_t adoswordn __P((struct buf *, int));
    159  1.1  jdolecek #else
    160  1.1  jdolecek #define adoswordn(bp,wn) (*((u_int32_t *)(bp)->b_data + (wn)))
    161  1.1  jdolecek #endif
    162  1.1  jdolecek 
    163  1.1  jdolecek u_int32_t adoscksum __P((struct buf *, int));
    164  1.1  jdolecek int adoscaseequ __P((const u_char *, const u_char *, int, int));
    165  1.1  jdolecek int adoshash __P((const u_char *, int, int, int));
    166  1.1  jdolecek int adunixprot __P((int));
    167  1.1  jdolecek int adosfs_getblktype __P((struct adosfsmount *, struct buf *));
    168  1.1  jdolecek 
    169  1.1  jdolecek struct vnode *adosfs_ahashget __P((struct mount *, ino_t));
    170  1.1  jdolecek void adosfs_ainshash __P((struct adosfsmount *, struct anode *));
    171  1.1  jdolecek void adosfs_aremhash __P((struct anode *));
    172  1.1  jdolecek 
    173  1.1  jdolecek int adosfs_lookup __P((void *));
    174  1.1  jdolecek 
    175  1.1  jdolecek extern int (**adosfs_vnodeop_p) __P((void *));
    176  1.3    atatat 
    177  1.3    atatat #ifdef SYSCTL_SETUP_PROTO
    178  1.3    atatat SYSCTL_SETUP_PROTO(sysctl_vfs_adosfs_setup);
    179  1.3    atatat #endif /* SYSCTL_SETUP_PROTO */
    180  1.1  jdolecek #endif /* _KERNEL */
    181