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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
|
/*
* fundamental constants
*/
#define NAMELEN 28 /* size of names */
#define NDBLOCK 6 /* number of direct blocks in Dentry */
#define MAXDAT 8192 /* max allowable data message */
#define NTLOCK 200 /* number of active file Tlocks */
typedef struct Fbuf Fbuf;
typedef struct Super1 Super1;
typedef struct Superb Superb;
// typedef struct Qid Qid;
typedef struct Dentry Dentry;
typedef struct Tag Tag;
typedef struct Device Device;
typedef struct Qid9p1 Qid9p1;
typedef struct File File;
typedef struct Filsys Filsys;
typedef struct Filta Filta;
typedef struct Filter Filter;
typedef ulong Float;
typedef struct Hiob Hiob;
typedef struct Iobuf Iobuf;
typedef struct P9call P9call;
typedef struct Tlock Tlock;
// typedef struct Tm Tm;
typedef struct Uid Uid;
typedef struct Wpath Wpath;
typedef struct AuthRpc AuthRpc;
/*
* DONT TOUCH -- data structures stored on disk
*/
/* DONT TOUCH, this is the disk structure */
struct Qid9p1
{
long path;
long version;
};
/* DONT TOUCH, this is the disk structure */
struct Dentry
{
char name[NAMELEN];
short uid;
short gid;
ushort mode;
#define DALLOC 0x8000
#define DDIR 0x4000
#define DAPND 0x2000
#define DLOCK 0x1000
#define DREAD 0x4
#define DWRITE 0x2
#define DEXEC 0x1
Qid9p1 qid;
long size;
long dblock[NDBLOCK];
long iblock;
long diblock;
long atime;
long mtime;
};
/* DONT TOUCH, this is the disk structure */
struct Tag
{
short pad;
short tag;
long path;
};
/* DONT TOUCH, this is the disk structure */
struct Super1
{
long fstart;
long fsize;
long tfree;
long qidgen; /* generator for unique ids */
long fsok; /* file system ok */
/*
* garbage for WWC device
*/
long roraddr; /* dump root addr */
long last; /* last super block addr */
long next; /* next super block addr */
};
/* DONT TOUCH, this is the disk structure */
struct Fbuf
{
long nfree;
long free[1]; /* changes based on BUFSIZE */
};
/* DONT TOUCH, this is the disk structure */
struct Superb
{
Super1;
Fbuf fbuf;
};
struct Device
{
char type;
char ctrl;
char unit;
char part;
};
/*
* for load stats
*/
struct Filter
{
ulong count; /* count and old count kept separate */
ulong oldcount; /* so interrput can read them */
Float filter[3]; /* filters for 1m 10m 100m */
};
struct Filta
{
Filter* f;
int scale;
};
/*
* array of qids that are locked
*/
struct Tlock
{
Device dev;
long time;
long qpath;
File* file;
};
struct File
{
QLock;
Qid qid;
Wpath* wpath;
Chan* cp; /* null means a free slot */
Tlock* tlock; /* if file is locked */
File* next; /* in cp->flist */
File* list; /* in list of free files */
Filsys* fs;
long addr;
long slot;
long lastra; /* read ahead address */
short fid;
short uid;
char open;
#define FREAD 1
#define FWRITE 2
#define FREMOV 4
#define FWSTAT 8
long doffset; /* directory reading */
ulong dvers;
long dslot;
/* for network authentication */
AuthRpc *rpc;
short cuid;
};
struct Filsys
{
char* name; /* name of filesys */
Device dev; /* device that filesys is on */
int flags;
#define FREAM (1<<1) /* mkfs */
#define FRECOVER (1<<2) /* install last dump */
};
struct Hiob
{
Iobuf* link;
Lock;
};
struct Iobuf
{
QLock;
Device dev;
Iobuf *next; /* for hash */
Iobuf *fore; /* for lru */
Iobuf *back; /* for lru */
char *iobuf; /* only active while locked */
char *xiobuf; /* "real" buffer pointer */
long addr;
int flags;
};
struct P9call
{
uchar calln;
uchar rxflag;
short msize;
void (*func)(Chan*, int);
};
// struct Tm
// {
// /* see ctime(3) */
// int sec;
// int min;
// int hour;
// int mday;
// int mon;
// int year;
// int wday;
// int yday;
// int isdst;
// };
struct Uid
{
short uid; /* user id */
short lead; /* leader of group */
short offset; /* byte offset in uidspace */
};
struct Wpath
{
Wpath *up; /* pointer upwards in path */
Wpath *list; /* link in free chain */
long addr; /* directory entry addr of parent */
long slot; /* directory entry slot of parent */
short refs; /* number of files using this structure */
};
#define MAXFDATA 8192
/*
* error codes generated from the file server
*/
enum
{
Ebadspc = 1,
Efid,
Efidinuse,
Echar,
Eopen,
Ecount,
Ealloc,
Eqid,
Eauth,
Eauthmsg,
Eaccess,
Eentry,
Emode,
Edir1,
Edir2,
Ephase,
Eexist,
Edot,
Eempty,
Ebadu,
Enotu,
Enotg,
Ename,
Ewalk,
Eronly,
Efull,
Eoffset,
Elocked,
Ebroken,
Etoolong,
Ersc,
Eqidmode,
Econvert,
Enotm,
Enotd,
Enotl,
Enotw,
Esystem,
MAXERR
};
/*
* devnone block numbers
*/
enum
{
Cwio1 = 1,
Cwio2,
Cwxx1,
Cwxx2,
Cwxx3,
Cwxx4,
Cwdump1,
Cwdump2,
Cuidbuf,
};
/*
* tags on block
*/
enum
{
Tnone = 0,
Tsuper, /* the super block */
Tdir, /* directory contents */
Tind1, /* points to blocks */
Tind2, /* points to Tind1 */
Tfile, /* file contents */
Tfree, /* in free list */
Tbuck, /* cache fs bucket */
Tvirgo, /* fake worm virgin bits */
Tcache, /* cw cache things */
MAXTAG
};
/*
* flags to getbuf
*/
enum
{
Bread = (1<<0), /* read the block if miss */
Bprobe = (1<<1), /* return null if miss */
Bmod = (1<<2), /* set modified bit in buffer */
Bimm = (1<<3), /* set immediate bit in buffer */
Bres = (1<<4), /* reserved, never renammed */
};
/*
* open modes passed into P9 open/create
*/
enum
{
MREAD = 0,
MWRITE,
MBOTH,
MEXEC,
MTRUNC = (1<<4), /* truncate on open */
MCEXEC = (1<<5), /* close on exec (host) */
MRCLOSE = (1<<6), /* remove on close */
};
/*
* check flags
*/
enum
{
Crdall = (1<<0), /* read all files */
Ctag = (1<<1), /* rebuild tags */
Cpfile = (1<<2), /* print files */
Cpdir = (1<<3), /* print directories */
Cfree = (1<<4), /* rebuild free list */
Cream = (1<<6), /* clear all bad tags */
Cbad = (1<<7), /* clear all bad blocks */
Ctouch = (1<<8), /* touch old dir and indir */
Cquiet = (1<<9), /* report just nasty things */
};
/*
* buffer size variables
*/
extern int RBUFSIZE;
extern int BUFSIZE;
extern int DIRPERBUF;
extern int INDPERBUF;
extern int INDPERBUF2;
extern int FEPERBUF;
|