rsc | f701258 | 2003-11-25 01:40:27 +0000 | [diff] [blame] | 1 | #ifndef _FCALL_H_ |
| 2 | #define _FCALL_H_ 1 |
rsc | e97cead | 2003-12-06 18:05:27 +0000 | [diff] [blame] | 3 | #ifdef __cplusplus |
| 4 | extern "C" { |
rsc | f701258 | 2003-11-25 01:40:27 +0000 | [diff] [blame] | 5 | #endif |
rsc | 97a5e5f | 2003-11-23 18:25:35 +0000 | [diff] [blame] | 6 | /* |
| 7 | #pragma src "/sys/src/libc/9sys" |
| 8 | #pragma lib "libc.a" |
| 9 | */ |
| 10 | |
| 11 | #define VERSION9P "9P2000" |
rsc | 97a5e5f | 2003-11-23 18:25:35 +0000 | [diff] [blame] | 12 | #define MAXWELEM 16 |
| 13 | |
| 14 | typedef |
| 15 | struct Fcall |
| 16 | { |
| 17 | uchar type; |
| 18 | u32int fid; |
| 19 | ushort tag; |
| 20 | u32int msize; /* Tversion, Rversion */ |
| 21 | char *version; /* Tversion, Rversion */ |
| 22 | ushort oldtag; /* Tflush */ |
| 23 | char *ename; /* Rerror */ |
| 24 | Qid qid; /* Rattach, Ropen, Rcreate */ |
| 25 | u32int iounit; /* Ropen, Rcreate */ |
| 26 | Qid aqid; /* Rauth */ |
| 27 | u32int afid; /* Tauth, Tattach */ |
| 28 | char *uname; /* Tauth, Tattach */ |
| 29 | char *aname; /* Tauth, Tattach */ |
| 30 | u32int perm; /* Tcreate */ |
| 31 | char *name; /* Tcreate */ |
| 32 | uchar mode; /* Tcreate, Topen */ |
| 33 | u32int newfid; /* Twalk */ |
| 34 | ushort nwname; /* Twalk */ |
| 35 | char *wname[MAXWELEM]; /* Twalk */ |
| 36 | ushort nwqid; /* Rwalk */ |
rsc | b7eed2e | 2005-09-13 01:34:18 +0000 | [diff] [blame] | 37 | Qid wqid[MAXWELEM]; /* Rwalk */ |
rsc | 97a5e5f | 2003-11-23 18:25:35 +0000 | [diff] [blame] | 38 | vlong offset; /* Tread, Twrite */ |
| 39 | u32int count; /* Tread, Twrite, Rread */ |
| 40 | char *data; /* Twrite, Rread */ |
| 41 | ushort nstat; /* Twstat, Rstat */ |
| 42 | uchar *stat; /* Twstat, Rstat */ |
rsc | 32f69c3 | 2003-12-11 17:48:38 +0000 | [diff] [blame] | 43 | int unixfd; /* Ropenfd */ |
rsc | b7eed2e | 2005-09-13 01:34:18 +0000 | [diff] [blame] | 44 | |
| 45 | /* 9P2000.u extensions */ |
| 46 | int errornum; /* Rerror */ |
rsc | b5c7be2 | 2006-03-03 16:34:49 +0000 | [diff] [blame] | 47 | char *extension; /* Tcreate */ |
rsc | 97a5e5f | 2003-11-23 18:25:35 +0000 | [diff] [blame] | 48 | } Fcall; |
| 49 | |
| 50 | |
| 51 | #define GBIT8(p) ((p)[0]) |
| 52 | #define GBIT16(p) ((p)[0]|((p)[1]<<8)) |
rsc | 9a5678a | 2006-11-04 20:41:42 +0000 | [diff] [blame] | 53 | #define GBIT32(p) ((u32int)((p)[0]|((p)[1]<<8)|((p)[2]<<16)|((p)[3]<<24))) |
rsc | fc1d5d8 | 2006-01-17 01:33:12 +0000 | [diff] [blame] | 54 | #define GBIT64(p) ((u32int)((p)[0]|((p)[1]<<8)|((p)[2]<<16)|((p)[3]<<24)) |\ |
rsc | 97a5e5f | 2003-11-23 18:25:35 +0000 | [diff] [blame] | 55 | ((vlong)((p)[4]|((p)[5]<<8)|((p)[6]<<16)|((p)[7]<<24)) << 32)) |
| 56 | |
| 57 | #define PBIT8(p,v) (p)[0]=(v) |
| 58 | #define PBIT16(p,v) (p)[0]=(v);(p)[1]=(v)>>8 |
| 59 | #define PBIT32(p,v) (p)[0]=(v);(p)[1]=(v)>>8;(p)[2]=(v)>>16;(p)[3]=(v)>>24 |
| 60 | #define PBIT64(p,v) (p)[0]=(v);(p)[1]=(v)>>8;(p)[2]=(v)>>16;(p)[3]=(v)>>24;\ |
| 61 | (p)[4]=(v)>>32;(p)[5]=(v)>>40;(p)[6]=(v)>>48;(p)[7]=(v)>>56 |
| 62 | |
| 63 | #define BIT8SZ 1 |
| 64 | #define BIT16SZ 2 |
| 65 | #define BIT32SZ 4 |
| 66 | #define BIT64SZ 8 |
| 67 | #define QIDSZ (BIT8SZ+BIT32SZ+BIT64SZ) |
| 68 | |
| 69 | /* STATFIXLEN includes leading 16-bit count */ |
| 70 | /* The count, however, excludes itself; total size is BIT16SZ+count */ |
| 71 | #define STATFIXLEN (BIT16SZ+QIDSZ+5*BIT16SZ+4*BIT32SZ+1*BIT64SZ) /* amount of fixed length data in a stat buffer */ |
rsc | b7eed2e | 2005-09-13 01:34:18 +0000 | [diff] [blame] | 72 | #define STATFIXLENU (STATFIXLEN+BIT16SZ+3*BIT32SZ) /* for 9P2000.u */ |
rsc | 97a5e5f | 2003-11-23 18:25:35 +0000 | [diff] [blame] | 73 | |
| 74 | #define NOTAG (ushort)~0U /* Dummy tag */ |
| 75 | #define NOFID (u32int)~0U /* Dummy fid */ |
| 76 | #define IOHDRSZ 24 /* ample room for Twrite/Rread header (iounit) */ |
| 77 | |
| 78 | enum |
| 79 | { |
| 80 | Tversion = 100, |
| 81 | Rversion, |
| 82 | Tauth = 102, |
| 83 | Rauth, |
| 84 | Tattach = 104, |
| 85 | Rattach, |
| 86 | Terror = 106, /* illegal */ |
| 87 | Rerror, |
| 88 | Tflush = 108, |
| 89 | Rflush, |
| 90 | Twalk = 110, |
| 91 | Rwalk, |
| 92 | Topen = 112, |
| 93 | Ropen, |
| 94 | Tcreate = 114, |
| 95 | Rcreate, |
| 96 | Tread = 116, |
| 97 | Rread, |
| 98 | Twrite = 118, |
| 99 | Rwrite, |
| 100 | Tclunk = 120, |
| 101 | Rclunk, |
| 102 | Tremove = 122, |
| 103 | Rremove, |
| 104 | Tstat = 124, |
| 105 | Rstat, |
| 106 | Twstat = 126, |
| 107 | Rwstat, |
| 108 | Tmax, |
rsc | 32f69c3 | 2003-12-11 17:48:38 +0000 | [diff] [blame] | 109 | |
| 110 | Topenfd = 98, |
rsc | cbeb0b2 | 2006-04-01 19:24:03 +0000 | [diff] [blame] | 111 | Ropenfd |
rsc | 97a5e5f | 2003-11-23 18:25:35 +0000 | [diff] [blame] | 112 | }; |
| 113 | |
| 114 | uint convM2S(uchar*, uint, Fcall*); |
| 115 | uint convS2M(Fcall*, uchar*, uint); |
| 116 | uint sizeS2M(Fcall*); |
| 117 | |
| 118 | int statcheck(uchar *abuf, uint nbuf); |
| 119 | uint convM2D(uchar*, uint, Dir*, char*); |
| 120 | uint convD2M(Dir*, uchar*, uint); |
| 121 | uint sizeD2M(Dir*); |
| 122 | |
rsc | b7eed2e | 2005-09-13 01:34:18 +0000 | [diff] [blame] | 123 | uint convM2Su(uchar*, uint, Fcall*, int); |
| 124 | uint convS2Mu(Fcall*, uchar*, uint, int); |
| 125 | uint sizeS2Mu(Fcall*, int); |
| 126 | |
| 127 | int statchecku(uchar *abuf, uint nbuf, int); |
| 128 | uint convM2Du(uchar*, uint, Dir*, char*, int); |
| 129 | uint convD2Mu(Dir*, uchar*, uint, int); |
| 130 | uint sizeD2Mu(Dir*, int); |
| 131 | |
rsc | 97a5e5f | 2003-11-23 18:25:35 +0000 | [diff] [blame] | 132 | int fcallfmt(Fmt*); |
| 133 | int dirfmt(Fmt*); |
| 134 | int dirmodefmt(Fmt*); |
| 135 | |
| 136 | int read9pmsg(int, void*, uint); |
| 137 | |
| 138 | /* |
| 139 | #pragma varargck type "F" Fcall* |
| 140 | #pragma varargck type "M" ulong |
| 141 | #pragma varargck type "D" Dir* |
| 142 | */ |
rsc | e97cead | 2003-12-06 18:05:27 +0000 | [diff] [blame] | 143 | |
| 144 | #ifdef __cplusplus |
rsc | f701258 | 2003-11-25 01:40:27 +0000 | [diff] [blame] | 145 | } |
| 146 | #endif |
| 147 | #endif |