Blob


1 #ifndef _VENTI_H_
2 #define _VENTI_H_ 1
3 #ifdef __cplusplus
4 extern "C" {
5 #endif
8 AUTOLIB(venti)
10 /* XXX should be own library? */
11 /*
12 * Packets
13 */
14 enum
15 {
16 MaxFragSize = 9*1024
17 };
19 typedef struct Packet Packet;
21 Packet* packetalloc(void);
22 void packetappend(Packet*, uchar *buf, int n);
23 uint packetasize(Packet*);
24 int packetcmp(Packet*, Packet*);
25 int packetcompact(Packet*);
26 void packetconcat(Packet*, Packet*);
27 int packetconsume(Packet*, uchar *buf, int n);
28 int packetcopy(Packet*, uchar *buf, int offset, int n);
29 Packet* packetdup(Packet*, int offset, int n);
30 Packet* packetforeign(uchar *buf, int n, void (*free)(void *a), void *a);
31 int packetfragments(Packet*, IOchunk*, int nio, int offset);
32 void packetfree(Packet*);
33 uchar* packetheader(Packet*, int n);
34 uchar* packetpeek(Packet*, uchar *buf, int offset, int n);
35 void packetprefix(Packet*, uchar *buf, int n);
36 void packetsha1(Packet*, uchar sha1[20]);
37 uint packetsize(Packet*);
38 Packet* packetsplit(Packet*, int n);
39 void packetstats(void);
40 uchar* packettrailer(Packet*, int n);
41 int packettrim(Packet*, int offset, int n);
43 /* XXX should be own library? */
44 /*
45 * Logging
46 */
47 typedef struct VtLog VtLog;
48 typedef struct VtLogChunk VtLogChunk;
50 struct VtLog
51 {
52 VtLog *next; /* in hash table */
53 char *name;
54 VtLogChunk *chunk;
55 uint nchunk;
56 VtLogChunk *w;
57 QLock lk;
58 int ref;
59 };
61 struct VtLogChunk
62 {
63 char *p;
64 char *ep;
65 char *wp;
66 };
68 VtLog* vtlogopen(char *name, uint size);
69 void vtlogprint(VtLog *log, char *fmt, ...);
70 void vtlog(char *name, char *fmt, ...);
71 void vtlogclose(VtLog*);
72 void vtlogremove(char *name);
73 char** vtlognames(int*);
74 void vtlogdump(int fd, VtLog*);
76 /* XXX begin actual venti.h */
78 typedef struct VtFcall VtFcall;
79 typedef struct VtConn VtConn;
80 typedef struct VtEntry VtEntry;
81 typedef struct VtRoot VtRoot;
83 /*
84 * Fundamental constants.
85 */
86 enum
87 {
88 VtScoreSize = 20,
89 VtMaxStringSize = 1024,
90 VtPointerDepth = 7
91 };
92 #define VtMaxFileSize ((1ULL<<48)-1)
95 /*
96 * Strings in packets.
97 */
98 int vtputstring(Packet*, char*);
99 int vtgetstring(Packet*, char**);
101 /*
102 * Block types.
104 * The initial Venti protocol had a much
105 * less regular list of block types.
106 * VtToDiskType converts from new to old.
107 */
108 enum
110 VtDataType = 0<<3,
111 /* VtDataType+1, ... */
112 VtDirType = 1<<3,
113 /* VtDirType+1, ... */
114 VtRootType = 2<<3,
115 VtMaxType,
116 VtCorruptType = 0xFF,
118 VtTypeDepthMask = 7,
119 VtTypeBaseMask = ~VtTypeDepthMask
120 };
122 /* convert to/from on-disk type numbers */
123 uint vttodisktype(uint);
124 uint vtfromdisktype(uint);
126 /*
127 * VtEntry describes a Venti stream
129 * The _ enums are only used on the wire.
130 * They are not present in the VtEntry structure
131 * and should not be used by client programs.
132 * (The info is in the type field.)
133 */
134 enum
136 VtEntryActive = 1<<0, /* entry is in use */
137 _VtEntryDir = 1<<1, /* a directory */
138 _VtEntryDepthShift = 2, /* shift for pointer depth */
139 _VtEntryDepthMask = 7<<2, /* mask for pointer depth */
140 VtEntryLocal = 1<<5, /* for local storage only */
141 _VtEntryBig = 1<<6,
142 VtEntryNoArchive = 1<<7, /* for local storage only */
143 };
144 enum
146 VtEntrySize = 40
147 };
148 struct VtEntry
150 ulong gen; /* generation number */
151 ulong psize; /* pointer block size */
152 ulong dsize; /* data block size */
153 uchar type;
154 uchar flags;
155 uvlong size;
156 uchar score[VtScoreSize];
157 };
159 void vtentrypack(VtEntry*, uchar*, int index);
160 int vtentryunpack(VtEntry*, uchar*, int index);
162 struct VtRoot
164 char name[128];
165 char type[128];
166 uchar score[VtScoreSize]; /* to a Dir block */
167 ulong blocksize; /* maximum block size */
168 uchar prev[VtScoreSize]; /* last root block */
169 };
171 enum
173 VtRootSize = 300,
174 VtRootVersion = 2,
175 _VtRootVersionBig = 1<<15,
176 };
178 void vtrootpack(VtRoot*, uchar*);
179 int vtrootunpack(VtRoot*, uchar*);
181 /*
182 * score of zero length block
183 */
184 extern uchar vtzeroscore[VtScoreSize];
186 /*
187 * zero extend and truncate blocks
188 */
189 void vtzeroextend(int type, uchar *buf, uint n, uint nn);
190 uint vtzerotruncate(int type, uchar *buf, uint n);
192 /*
193 * parse score: mungs s
194 */
195 int vtparsescore(char *s, char **prefix, uchar[VtScoreSize]);
197 /*
198 * formatting
199 * other than noted, these formats all ignore
200 * the width and precision arguments, and all flags
202 * V a venti score
203 */
205 int vtscorefmt(Fmt*);
207 /*
208 * error-checking malloc et al.
209 */
210 void vtfree(void *);
211 void* vtmalloc(int);
212 void* vtmallocz(int);
213 void* vtrealloc(void *p, int);
214 void* vtbrk(int n);
215 char* vtstrdup(char *);
217 /*
218 * Venti protocol
219 */
221 /*
222 * Crypto strengths
223 */
224 enum
226 VtCryptoStrengthNone,
227 VtCryptoStrengthAuth,
228 VtCryptoStrengthWeak,
229 VtCryptoStrengthStrong
230 };
232 /*
233 * Crypto suites
234 */
235 enum
237 VtCryptoNone,
238 VtCryptoSSL3,
239 VtCryptoTLS1,
240 VtCryptoMax
241 };
243 /*
244 * Codecs
245 */
246 enum
248 VtCodecNone,
249 VtCodecDeflate,
250 VtCodecThwack,
251 VtCodecMax
252 };
254 enum
256 VtRerror = 1,
257 VtTping = 2,
258 VtRping,
259 VtThello = 4,
260 VtRhello,
261 VtTgoodbye = 6,
262 VtRgoodbye, /* not used */
263 VtTauth0 = 8,
264 VtRauth0,
265 VtTauth1 = 10,
266 VtRauth1,
267 VtTread = 12,
268 VtRread,
269 VtTwrite = 14,
270 VtRwrite,
271 VtTsync = 16,
272 VtRsync,
274 VtTmax
275 };
277 struct VtFcall
279 uchar msgtype;
280 uchar tag;
282 char *error; /* Rerror */
284 char *version; /* Thello */
285 char *uid; /* Thello */
286 uchar strength; /* Thello */
287 uchar *crypto; /* Thello */
288 uint ncrypto; /* Thello */
289 uchar *codec; /* Thello */
290 uint ncodec; /* Thello */
291 char *sid; /* Rhello */
292 uchar rcrypto; /* Rhello */
293 uchar rcodec; /* Rhello */
294 uchar *auth; /* TauthX, RauthX */
295 uint nauth; /* TauthX, RauthX */
296 uchar score[VtScoreSize]; /* Tread, Rwrite */
297 uchar blocktype; /* Tread, Twrite */
298 uint count; /* Tread */
299 Packet *data; /* Rread, Twrite */
300 };
302 Packet* vtfcallpack(VtFcall*);
303 int vtfcallunpack(VtFcall*, Packet*);
304 void vtfcallclear(VtFcall*);
305 int vtfcallfmt(Fmt*);
307 enum
309 VtStateAlloc,
310 VtStateConnected,
311 VtStateClosed
312 };
314 struct VtConn
316 QLock lk;
317 QLock inlk;
318 QLock outlk;
319 int debug;
320 int infd;
321 int outfd;
322 int muxer;
323 void *writeq;
324 void *readq;
325 int state;
326 void *wait[256];
327 uint ntag;
328 uint nsleep;
329 Packet *part;
330 Rendez tagrend;
331 Rendez rpcfork;
332 char *version;
333 char *uid;
334 char *sid;
335 char addr[256]; /* address of other side */
336 };
338 VtConn* vtconn(int infd, int outfd);
339 int vtreconn(VtConn*, int, int);
340 VtConn* vtdial(char*);
341 int vtredial(VtConn*, char *);
342 void vtfreeconn(VtConn*);
343 int vtsend(VtConn*, Packet*);
344 Packet* vtrecv(VtConn*);
345 int vtversion(VtConn* z);
346 void vtdebug(VtConn* z, char*, ...);
347 void vthangup(VtConn* z);
348 int vtgoodbye(VtConn* z);
350 /* #pragma varargck argpos vtdebug 2 */
352 /* server */
353 typedef struct VtSrv VtSrv;
354 typedef struct VtReq VtReq;
355 struct VtReq
357 VtFcall tx;
358 VtFcall rx;
359 /* private */
360 VtSrv *srv;
361 void *sc;
362 };
364 int vtsrvhello(VtConn*);
365 VtSrv* vtlisten(char *addr);
366 VtReq* vtgetreq(VtSrv*);
367 void vtrespond(VtReq*);
369 /* client */
370 Packet* vtrpc(VtConn*, Packet*);
371 Packet* _vtrpc(VtConn*, Packet*, VtFcall*);
372 void vtrecvproc(void*); /* VtConn */
373 void vtsendproc(void*); /* VtConn */
375 int vtconnect(VtConn*);
376 int vthello(VtConn*);
377 int vtread(VtConn*, uchar score[VtScoreSize], uint type, uchar *buf, int n);
378 int vtwrite(VtConn*, uchar score[VtScoreSize], uint type, uchar *buf, int n);
379 Packet* vtreadpacket(VtConn*, uchar score[VtScoreSize], uint type, int n);
380 int vtwritepacket(VtConn*, uchar score[VtScoreSize], uint type, Packet *p);
381 int vtsync(VtConn*);
382 int vtping(VtConn*);
384 /*
385 * Data blocks and block cache.
386 */
387 enum
389 NilBlock = ~0
390 };
392 typedef struct VtBlock VtBlock;
393 typedef struct VtCache VtCache;
395 struct VtBlock
397 VtCache *c;
398 QLock lk;
400 uchar *data;
401 uchar score[VtScoreSize];
402 uchar type; /* VtXXX */
403 ulong size;
405 /* internal to cache */
406 int nlock;
407 int iostate;
408 int ref;
409 u32int heap;
410 VtBlock *next;
411 VtBlock **prev;
412 u32int used;
413 u32int used2;
414 u32int addr;
415 uintptr pc;
416 };
418 u32int vtglobaltolocal(uchar[VtScoreSize]);
419 void vtlocaltoglobal(u32int, uchar[VtScoreSize]);
421 VtCache*vtcachealloc(VtConn*, ulong maxmem);
422 void vtcachefree(VtCache*);
423 VtBlock*vtcachelocal(VtCache*, u32int addr, int type);
424 VtBlock*vtcacheglobal(VtCache*, uchar[VtScoreSize], int type, ulong size);
425 VtBlock*vtcacheallocblock(VtCache*, int type, ulong size);
426 void vtcachesetwrite(VtCache*,
427 int(*)(VtConn*, uchar[VtScoreSize], uint, uchar*, int));
428 void vtblockput(VtBlock*);
429 int vtblockwrite(VtBlock*);
430 VtBlock*vtblockcopy(VtBlock*);
431 void vtblockduplock(VtBlock*);
433 extern int vtcachencopy, vtcachenread, vtcachenwrite;
434 extern int vttracelevel;
436 /*
437 * Hash tree file tree.
438 */
439 typedef struct VtFile VtFile;
440 struct VtFile
442 QLock lk;
443 int ref;
444 int local;
445 VtBlock *b; /* block containing this file */
446 uchar score[VtScoreSize]; /* score of block containing this file */
447 int bsize; /* size of block */
449 /* immutable */
450 VtCache *c;
451 int mode;
452 u32int gen;
453 int dsize;
454 int psize;
455 int dir;
456 VtFile *parent;
457 int epb; /* entries per block in parent */
458 u32int offset; /* entry offset in parent */
459 };
461 enum
463 VtOREAD,
464 VtOWRITE,
465 VtORDWR
466 };
468 VtBlock*vtfileblock(VtFile*, u32int, int mode);
469 int vtfileblockscore(VtFile*, u32int, uchar[VtScoreSize]);
470 void vtfileclose(VtFile*);
471 VtFile* _vtfilecreate(VtFile*, int offset, int psize, int dsize, int dir);
472 VtFile* vtfilecreate(VtFile*, int psize, int dsize, int dir);
473 VtFile* vtfilecreateroot(VtCache*, int psize, int dsize, int type);
474 int vtfileflush(VtFile*);
475 int vtfileflushbefore(VtFile*, u64int);
476 u32int vtfilegetdirsize(VtFile*);
477 int vtfilegetentry(VtFile*, VtEntry*);
478 uvlong vtfilegetsize(VtFile*);
479 void vtfileincref(VtFile*);
480 int vtfilelock2(VtFile*, VtFile*, int);
481 int vtfilelock(VtFile*, int);
482 VtFile* vtfileopen(VtFile*, u32int, int);
483 VtFile* vtfileopenroot(VtCache*, VtEntry*);
484 long vtfileread(VtFile*, void*, long, vlong);
485 int vtfileremove(VtFile*);
486 int vtfilesetdirsize(VtFile*, u32int);
487 int vtfilesetentry(VtFile*, VtEntry*);
488 int vtfilesetsize(VtFile*, u64int);
489 int vtfiletruncate(VtFile*);
490 void vtfileunlock(VtFile*);
491 long vtfilewrite(VtFile*, void*, long, vlong);
493 int vttimefmt(Fmt*);
495 extern int chattyventi;
496 extern int ventidoublechecksha1;
497 extern int ventilogging;
499 extern char *VtServerLog;
501 #ifdef __cplusplus
503 #endif
504 #endif