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