coda.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:19k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* 
  2.    You may distribute this file under either of the two licenses that
  3.    follow at your discretion.
  4. */
  5. /* BLURB lgpl
  6.                            Coda File System
  7.                               Release 5
  8.           Copyright (c) 1987-1999 Carnegie Mellon University
  9.                   Additional copyrights listed below
  10. This code is distributed "AS IS" without warranty of any kind under
  11. the terms of the GNU Library General Public Licence Version 2, as
  12. shown in the file LICENSE, or under the license shown below. The
  13. technical and financial contributors to Coda are listed in the file
  14. CREDITS.
  15.                         Additional copyrights 
  16. */
  17. /*
  18.             Coda: an Experimental Distributed File System
  19.                              Release 4.0
  20.           Copyright (c) 1987-1999 Carnegie Mellon University
  21.                          All Rights Reserved
  22. Permission  to  use, copy, modify and distribute this software and its
  23. documentation is hereby granted,  provided  that  both  the  copyright
  24. notice  and  this  permission  notice  appear  in  all  copies  of the
  25. software, derivative works or  modified  versions,  and  any  portions
  26. thereof, and that both notices appear in supporting documentation, and
  27. that credit is given to Carnegie Mellon University  in  all  documents
  28. and publicity pertaining to direct or indirect use of this code or its
  29. derivatives.
  30. CODA IS AN EXPERIMENTAL SOFTWARE SYSTEM AND IS  KNOWN  TO  HAVE  BUGS,
  31. SOME  OF  WHICH MAY HAVE SERIOUS CONSEQUENCES.  CARNEGIE MELLON ALLOWS
  32. FREE USE OF THIS SOFTWARE IN ITS "AS IS" CONDITION.   CARNEGIE  MELLON
  33. DISCLAIMS  ANY  LIABILITY  OF  ANY  KIND  FOR  ANY  DAMAGES WHATSOEVER
  34. RESULTING DIRECTLY OR INDIRECTLY FROM THE USE OF THIS SOFTWARE  OR  OF
  35. ANY DERIVATIVE WORK.
  36. Carnegie  Mellon  encourages  users  of  this  software  to return any
  37. improvements or extensions that  they  make,  and  to  grant  Carnegie
  38. Mellon the rights to redistribute these changes without encumbrance.
  39. */
  40. /*
  41.  *
  42.  * Based on cfs.h from Mach, but revamped for increased simplicity.
  43.  * Linux modifications by 
  44.  * Peter Braam, Aug 1996
  45.  */
  46. #ifndef _CODA_HEADER_
  47. #define _CODA_HEADER_
  48. /* Catch new _KERNEL defn for NetBSD and DJGPP/__CYGWIN32__ */
  49. #if defined(__NetBSD__) || 
  50.   ((defined(DJGPP) || defined(__CYGWIN32__)) && !defined(KERNEL))
  51. #include <sys/types.h>
  52. #endif 
  53. #ifndef CODA_MAXSYMLINKS
  54. #define CODA_MAXSYMLINKS 10
  55. #endif
  56. #if defined(DJGPP) || defined(__CYGWIN32__)
  57. #ifdef KERNEL
  58. typedef unsigned long u_long;
  59. typedef unsigned int u_int;
  60. typedef unsigned short u_short;
  61. typedef u_long ino_t;
  62. typedef u_long dev_t;
  63. typedef void * caddr_t;
  64. #ifdef DOS
  65. typedef unsigned __int64 u_quad_t;
  66. #else 
  67. typedef unsigned long long u_quad_t;
  68. #endif
  69. #define inline
  70. struct timespec {
  71.         long       ts_sec;
  72.         long       ts_nsec;
  73. };
  74. #else  /* DJGPP but not KERNEL */
  75. #include <sys/time.h>
  76. typedef unsigned long long u_quad_t;
  77. #endif /* !KERNEL */
  78. #endif /* !DJGPP */
  79. #if defined(__linux__)
  80. #define cdev_t u_quad_t
  81. #ifndef __KERNEL__
  82. #if !defined(_UQUAD_T_) && (!defined(__GLIBC__) || __GLIBC__ < 2)
  83. #define _UQUAD_T_ 1
  84. typedef unsigned long long u_quad_t;
  85. #endif
  86. #else /*__KERNEL__ */
  87. typedef unsigned long long u_quad_t;
  88. #endif /* __KERNEL__ */
  89. #else
  90. #define cdev_t dev_t
  91. #endif
  92. #ifdef __CYGWIN32__
  93. struct timespec {
  94.         time_t  tv_sec;         /* seconds */
  95.         long    tv_nsec;        /* nanoseconds */
  96. };
  97. #endif
  98. #ifndef __BIT_TYPES_DEFINED__
  99. #define __BIT_TYPES_DEFINED__
  100. typedef signed char       int8_t;
  101. typedef unsigned char     u_int8_t;
  102. typedef short      int16_t;
  103. typedef unsigned short    u_int16_t;
  104. typedef int      int32_t;
  105. typedef unsigned int    u_int32_t;
  106. #endif
  107. /*
  108.  * Cfs constants
  109.  */
  110. #define CODA_MAXNAMLEN   255
  111. #define CODA_MAXPATHLEN  1024
  112. #define CODA_MAXSYMLINK  10
  113. /* these are Coda's version of O_RDONLY etc combinations
  114.  * to deal with VFS open modes
  115.  */
  116. #define C_O_READ 0x001
  117. #define C_O_WRITE       0x002
  118. #define C_O_TRUNC       0x010
  119. #define C_O_EXCL 0x100
  120. #define C_O_CREAT 0x200
  121. /* these are to find mode bits in Venus */ 
  122. #define C_M_READ  00400
  123. #define C_M_WRITE 00200
  124. /* for access Venus will use */
  125. #define C_A_C_OK    8               /* Test for writing upon create.  */
  126. #define C_A_R_OK    4               /* Test for read permission.  */
  127. #define C_A_W_OK    2               /* Test for write permission.  */
  128. #define C_A_X_OK    1               /* Test for execute permission.  */
  129. #define C_A_F_OK    0               /* Test for existence.  */
  130. #ifndef _VENUS_DIRENT_T_
  131. #define _VENUS_DIRENT_T_ 1
  132. struct venus_dirent {
  133.         unsigned long d_fileno; /* file number of entry */
  134.         unsigned short d_reclen; /* length of this record */
  135.         unsigned char  d_type; /* file type, see below */
  136.         unsigned char d_namlen; /* length of string in d_name */
  137.         char d_name[CODA_MAXNAMLEN + 1];/* name must be no longer than this */
  138. };
  139. #undef DIRSIZ
  140. #define DIRSIZ(dp)      ((sizeof (struct venus_dirent) - (CODA_MAXNAMLEN+1)) + 
  141.                          (((dp)->d_namlen+1 + 3) &~ 3))
  142. /*
  143.  * File types
  144.  */
  145. #define CDT_UNKNOWN  0
  146. #define CDT_FIFO  1
  147. #define CDT_CHR  2
  148. #define CDT_DIR  4
  149. #define CDT_BLK  6
  150. #define CDT_REG  8
  151. #define CDT_LNK 10
  152. #define CDT_SOCK 12
  153. #define CDT_WHT 14
  154. /*
  155.  * Convert between stat structure types and directory types.
  156.  */
  157. #define IFTOCDT(mode) (((mode) & 0170000) >> 12)
  158. #define CDTTOIF(dirtype) ((dirtype) << 12)
  159. #endif
  160. #ifndef _FID_T_
  161. #define _FID_T_ 1
  162. typedef u_long VolumeId;
  163. typedef u_long VnodeId;
  164. typedef u_long Unique_t;
  165. typedef u_long FileVersion;
  166. #endif 
  167. #ifndef _VICEFID_T_
  168. #define _VICEFID_T_ 1
  169. typedef struct ViceFid {
  170.     VolumeId Volume;
  171.     VnodeId Vnode;
  172.     Unique_t Unique;
  173. } ViceFid;
  174. #endif /* VICEFID */
  175. #ifdef __linux__
  176. static __inline__ ino_t  coda_f2i(struct ViceFid *fid)
  177. {
  178. if ( ! fid ) 
  179. return 0; 
  180. if (fid->Vnode == 0xfffffffe || fid->Vnode == 0xffffffff)
  181. return ((fid->Volume << 20) | (fid->Unique & 0xfffff));
  182. else
  183. return (fid->Unique + (fid->Vnode<<10) + (fid->Volume<<20));
  184. }
  185. #else
  186. #define coda_f2i(fid)
  187. ((fid) ? ((fid)->Unique + ((fid)->Vnode<<10) + ((fid)->Volume<<20)) : 0)
  188. #endif
  189. #ifndef _VUID_T_
  190. #define _VUID_T_
  191. typedef u_int32_t vuid_t;
  192. typedef u_int32_t vgid_t;
  193. #endif /*_VUID_T_ */
  194. #ifndef _CODACRED_T_
  195. #define _CODACRED_T_
  196. struct coda_cred {
  197.     vuid_t cr_uid, cr_euid, cr_suid, cr_fsuid; /* Real, efftve, set, fs uid*/
  198.     vgid_t cr_groupid,     cr_egid, cr_sgid, cr_fsgid; /* same for groups */
  199. };
  200. #endif 
  201. #ifndef _VENUS_VATTR_T_
  202. #define _VENUS_VATTR_T_
  203. /*
  204.  * Vnode types.  VNON means no type.
  205.  */
  206. enum coda_vtype { C_VNON, C_VREG, C_VDIR, C_VBLK, C_VCHR, C_VLNK, C_VSOCK, C_VFIFO, C_VBAD };
  207. struct coda_vattr {
  208. long      va_type; /* vnode type (for create) */
  209. u_short va_mode; /* files access mode and type */
  210. short va_nlink; /* number of references to file */
  211. vuid_t va_uid; /* owner user id */
  212. vgid_t va_gid; /* owner group id */
  213. long va_fileid; /* file id */
  214. u_quad_t va_size; /* file size in bytes */
  215. long va_blocksize; /* blocksize preferred for i/o */
  216. struct timespec va_atime; /* time of last access */
  217. struct timespec va_mtime; /* time of last modification */
  218. struct timespec va_ctime; /* time file changed */
  219. u_long va_gen; /* generation number of file */
  220. u_long va_flags; /* flags defined for file */
  221. cdev_t         va_rdev; /* device special file represents */
  222. u_quad_t va_bytes; /* bytes of disk space held by file */
  223. u_quad_t va_filerev; /* file modification number */
  224. };
  225. #endif 
  226. /* structure used by CODA_STATFS for getting cache information from venus */
  227. struct coda_statfs {
  228.     int32_t f_blocks;
  229.     int32_t f_bfree;
  230.     int32_t f_bavail;
  231.     int32_t f_files;
  232.     int32_t f_ffree;
  233. };
  234. /*
  235.  * Kernel <--> Venus communications.
  236.  */
  237. #define CODA_ROOT 2
  238. #define CODA_OPEN_BY_FD 3
  239. #define CODA_OPEN 4
  240. #define CODA_CLOSE 5
  241. #define CODA_IOCTL 6
  242. #define CODA_GETATTR 7
  243. #define CODA_SETATTR 8
  244. #define CODA_ACCESS 9
  245. #define CODA_LOOKUP 10
  246. #define CODA_CREATE 11
  247. #define CODA_REMOVE 12
  248. #define CODA_LINK 13
  249. #define CODA_RENAME 14
  250. #define CODA_MKDIR 15
  251. #define CODA_RMDIR 16
  252. #define CODA_SYMLINK 18
  253. #define CODA_READLINK 19
  254. #define CODA_FSYNC 20
  255. #define CODA_VGET 22
  256. #define CODA_SIGNAL 23
  257. #define CODA_REPLACE  24 /* DOWNCALL */
  258. #define CODA_FLUSH       25 /* DOWNCALL */
  259. #define CODA_PURGEUSER   26 /* DOWNCALL */
  260. #define CODA_ZAPFILE     27 /* DOWNCALL */
  261. #define CODA_ZAPDIR      28 /* DOWNCALL */
  262. #define CODA_PURGEFID    30 /* DOWNCALL */
  263. #define CODA_OPEN_BY_PATH 31
  264. #define CODA_RESOLVE     32
  265. #define CODA_REINTEGRATE 33
  266. #define CODA_STATFS  34
  267. #define CODA_STORE  35
  268. #define CODA_RELEASE  36
  269. #define CODA_NCALLS 37
  270. #define DOWNCALL(opcode) (opcode >= CODA_REPLACE && opcode <= CODA_PURGEFID)
  271. #define VC_MAXDATASIZE     8192
  272. #define VC_MAXMSGSIZE      sizeof(union inputArgs)+sizeof(union outputArgs) +
  273.                             VC_MAXDATASIZE  
  274. #define CIOC_KERNEL_VERSION _IOWR('c', 10, sizeof (int))
  275. #if 0
  276. #define CODA_KERNEL_VERSION 0 /* don't care about kernel version number */
  277. #define CODA_KERNEL_VERSION 1 /* The old venus 4.6 compatible interface */
  278. #endif
  279. #define CODA_KERNEL_VERSION 2 /* venus_lookup gets an extra parameter */
  280. /*
  281.  *        Venus <-> Coda  RPC arguments
  282.  */
  283. struct coda_in_hdr {
  284.     unsigned long opcode;
  285.     unsigned long unique;     /* Keep multiple outstanding msgs distinct */
  286.     u_short pid;     /* Common to all */
  287.     u_short pgid;     /* Common to all */
  288.     u_short sid;                    /* Common to all */
  289.     struct coda_cred cred;     /* Common to all */
  290. };
  291. /* Really important that opcode and unique are 1st two fields! */
  292. struct coda_out_hdr {
  293.     unsigned long opcode;
  294.     unsigned long unique;
  295.     unsigned long result;
  296. };
  297. /* coda_root: NO_IN */
  298. struct coda_root_out {
  299.     struct coda_out_hdr oh;
  300.     ViceFid VFid;
  301. };
  302. struct coda_root_in {
  303.     struct coda_in_hdr in;
  304. };
  305. /* coda_open: */
  306. struct coda_open_in {
  307.     struct coda_in_hdr ih;
  308.     ViceFid VFid;
  309.     int flags;
  310. };
  311. struct coda_open_out {
  312.     struct coda_out_hdr oh;
  313.     cdev_t dev;
  314.     ino_t inode;
  315. };
  316. /* coda_store: */
  317. struct coda_store_in {
  318.     struct coda_in_hdr ih;
  319.     ViceFid VFid;
  320.     int flags;
  321. };
  322. struct coda_store_out {
  323.     struct coda_out_hdr out;
  324. };
  325. /* coda_release: */
  326. struct coda_release_in {
  327.     struct coda_in_hdr ih;
  328.     ViceFid VFid;
  329.     int flags;
  330. };
  331. struct coda_release_out {
  332.     struct coda_out_hdr out;
  333. };
  334. /* coda_close: */
  335. struct coda_close_in {
  336.     struct coda_in_hdr ih;
  337.     ViceFid VFid;
  338.     int flags;
  339. };
  340. struct coda_close_out {
  341.     struct coda_out_hdr out;
  342. };
  343. /* coda_ioctl: */
  344. struct coda_ioctl_in {
  345.     struct coda_in_hdr ih;
  346.     ViceFid VFid;
  347.     int cmd;
  348.     int len;
  349.     int rwflag;
  350.     char *data; /* Place holder for data. */
  351. };
  352. struct coda_ioctl_out {
  353.     struct coda_out_hdr oh;
  354.     int len;
  355.     caddr_t data; /* Place holder for data. */
  356. };
  357. /* coda_getattr: */
  358. struct coda_getattr_in {
  359.     struct coda_in_hdr ih;
  360.     ViceFid VFid;
  361. };
  362. struct coda_getattr_out {
  363.     struct coda_out_hdr oh;
  364.     struct coda_vattr attr;
  365. };
  366. /* coda_setattr: NO_OUT */
  367. struct coda_setattr_in {
  368.     struct coda_in_hdr ih;
  369.     ViceFid VFid;
  370.     struct coda_vattr attr;
  371. };
  372. struct coda_setattr_out {
  373.     struct coda_out_hdr out;
  374. };
  375. /* coda_access: NO_OUT */
  376. struct coda_access_in {
  377.     struct coda_in_hdr ih;
  378.     ViceFid VFid;
  379.     int flags;
  380. };
  381. struct coda_access_out {
  382.     struct coda_out_hdr out;
  383. };
  384. /* lookup flags */
  385. #define CLU_CASE_SENSITIVE     0x01
  386. #define CLU_CASE_INSENSITIVE   0x02
  387. /* coda_lookup: */
  388. struct  coda_lookup_in {
  389.     struct coda_in_hdr ih;
  390.     ViceFid VFid;
  391.     int         name; /* Place holder for data. */
  392.     int         flags;
  393. };
  394. struct coda_lookup_out {
  395.     struct coda_out_hdr oh;
  396.     ViceFid VFid;
  397.     int vtype;
  398. };
  399. /* coda_create: */
  400. struct coda_create_in {
  401.     struct coda_in_hdr ih;
  402.     ViceFid VFid;
  403.     struct coda_vattr attr;
  404.     int excl;
  405.     int mode;
  406.     int  name; /* Place holder for data. */
  407. };
  408. struct coda_create_out {
  409.     struct coda_out_hdr oh;
  410.     ViceFid VFid;
  411.     struct coda_vattr attr;
  412. };
  413. /* coda_remove: NO_OUT */
  414. struct coda_remove_in {
  415.     struct coda_in_hdr ih;
  416.     ViceFid VFid;
  417.     int name; /* Place holder for data. */
  418. };
  419. struct coda_remove_out {
  420.     struct coda_out_hdr out;
  421. };
  422. /* coda_link: NO_OUT */
  423. struct coda_link_in {
  424.     struct coda_in_hdr ih;
  425.     ViceFid sourceFid;          /* cnode to link *to* */
  426.     ViceFid destFid;            /* Directory in which to place link */
  427.     int tname; /* Place holder for data. */
  428. };
  429. struct coda_link_out {
  430.     struct coda_out_hdr out;
  431. };
  432. /* coda_rename: NO_OUT */
  433. struct coda_rename_in {
  434.     struct coda_in_hdr ih;
  435.     ViceFid sourceFid;
  436.     int  srcname;
  437.     ViceFid destFid;
  438.     int  destname;
  439. };
  440. struct coda_rename_out {
  441.     struct coda_out_hdr out;
  442. };
  443. /* coda_mkdir: */
  444. struct coda_mkdir_in {
  445.     struct coda_in_hdr ih;
  446.     ViceFid VFid;
  447.     struct coda_vattr attr;
  448.     int    name; /* Place holder for data. */
  449. };
  450. struct coda_mkdir_out {
  451.     struct coda_out_hdr oh;
  452.     ViceFid VFid;
  453.     struct coda_vattr attr;
  454. };
  455. /* coda_rmdir: NO_OUT */
  456. struct coda_rmdir_in {
  457.     struct coda_in_hdr ih;
  458.     ViceFid VFid;
  459.     int name; /* Place holder for data. */
  460. };
  461. struct coda_rmdir_out {
  462.     struct coda_out_hdr out;
  463. };
  464. /* coda_symlink: NO_OUT */
  465. struct coda_symlink_in {
  466.     struct coda_in_hdr ih;
  467.     ViceFid VFid;          /* Directory to put symlink in */
  468.     int srcname;
  469.     struct coda_vattr attr;
  470.     int tname;
  471. };
  472. struct coda_symlink_out {
  473.     struct coda_out_hdr out;
  474. };
  475. /* coda_readlink: */
  476. struct coda_readlink_in {
  477.     struct coda_in_hdr ih;
  478.     ViceFid VFid;
  479. };
  480. struct coda_readlink_out {
  481.     struct coda_out_hdr oh;
  482.     int count;
  483.     caddr_t data; /* Place holder for data. */
  484. };
  485. /* coda_fsync: NO_OUT */
  486. struct coda_fsync_in {
  487.     struct coda_in_hdr ih;
  488.     ViceFid VFid;
  489. };
  490. struct coda_fsync_out {
  491.     struct coda_out_hdr out;
  492. };
  493. /* coda_vget: */
  494. struct coda_vget_in {
  495.     struct coda_in_hdr ih;
  496.     ViceFid VFid;
  497. };
  498. struct coda_vget_out {
  499.     struct coda_out_hdr oh;
  500.     ViceFid VFid;
  501.     int vtype;
  502. };
  503. /* CODA_SIGNAL is out-of-band, doesn't need data. */
  504. /* CODA_INVALIDATE is a venus->kernel call */
  505. /* CODA_FLUSH is a venus->kernel call */
  506. /* coda_purgeuser: */
  507. /* CODA_PURGEUSER is a venus->kernel call */
  508. struct coda_purgeuser_out {
  509.     struct coda_out_hdr oh;
  510.     struct coda_cred cred;
  511. };
  512. /* coda_zapfile: */
  513. /* CODA_ZAPFILE is a venus->kernel call */
  514. struct coda_zapfile_out {  
  515.     struct coda_out_hdr oh;
  516.     ViceFid CodaFid;
  517. };
  518. /* coda_zapdir: */
  519. /* CODA_ZAPDIR is a venus->kernel call */
  520. struct coda_zapdir_out {   
  521.     struct coda_out_hdr oh;
  522.     ViceFid CodaFid;
  523. };
  524. /* coda_zapnode: */
  525. /* CODA_ZAPVNODE is a venus->kernel call */
  526. struct coda_zapvnode_out { 
  527.     struct coda_out_hdr oh;
  528.     struct coda_cred cred;
  529.     ViceFid VFid;
  530. };
  531. /* coda_purgefid: */
  532. /* CODA_PURGEFID is a venus->kernel call */
  533. struct coda_purgefid_out { 
  534.     struct coda_out_hdr oh;
  535.     ViceFid CodaFid;
  536. };
  537. /* coda_replace: */
  538. /* CODA_REPLACE is a venus->kernel call */
  539. struct coda_replace_out { /* coda_replace is a venus->kernel call */
  540.     struct coda_out_hdr oh;
  541.     ViceFid NewFid;
  542.     ViceFid OldFid;
  543. };
  544. /* coda_open_by_fd: */
  545. struct coda_open_by_fd_in {
  546.     struct coda_in_hdr ih;
  547.     ViceFid    VFid;
  548.     int        flags;
  549. };
  550. struct coda_open_by_fd_out {
  551.     struct coda_out_hdr oh;
  552.     int fd;
  553. #ifdef __KERNEL__
  554.     struct file *fh; /* not passed from userspace but used in-kernel only */
  555. #endif
  556. };
  557. /* coda_open_by_path: */
  558. struct coda_open_by_path_in {
  559.     struct coda_in_hdr ih;
  560.     ViceFid VFid;
  561.     int flags;
  562. };
  563. struct coda_open_by_path_out {
  564.     struct coda_out_hdr oh;
  565. int path;
  566. };
  567. /* coda_statfs: NO_IN */
  568. struct coda_statfs_in {
  569.     struct coda_in_hdr in;
  570. };
  571. struct coda_statfs_out {
  572.     struct coda_out_hdr oh;
  573.     struct coda_statfs stat;
  574. };
  575. /* 
  576.  * Occasionally, we don't cache the fid returned by CODA_LOOKUP. 
  577.  * For instance, if the fid is inconsistent. 
  578.  * This case is handled by setting the top bit of the type result parameter.
  579.  */
  580. #define CODA_NOCACHE          0x80000000
  581. union inputArgs {
  582.     struct coda_in_hdr ih; /* NB: every struct below begins with an ih */
  583.     struct coda_open_in coda_open;
  584.     struct coda_store_in coda_store;
  585.     struct coda_release_in coda_release;
  586.     struct coda_close_in coda_close;
  587.     struct coda_ioctl_in coda_ioctl;
  588.     struct coda_getattr_in coda_getattr;
  589.     struct coda_setattr_in coda_setattr;
  590.     struct coda_access_in coda_access;
  591.     struct coda_lookup_in coda_lookup;
  592.     struct coda_create_in coda_create;
  593.     struct coda_remove_in coda_remove;
  594.     struct coda_link_in coda_link;
  595.     struct coda_rename_in coda_rename;
  596.     struct coda_mkdir_in coda_mkdir;
  597.     struct coda_rmdir_in coda_rmdir;
  598.     struct coda_symlink_in coda_symlink;
  599.     struct coda_readlink_in coda_readlink;
  600.     struct coda_fsync_in coda_fsync;
  601.     struct coda_vget_in coda_vget;
  602.     struct coda_open_by_fd_in coda_open_by_fd;
  603.     struct coda_open_by_path_in coda_open_by_path;
  604.     struct coda_statfs_in coda_statfs;
  605. };
  606. union outputArgs {
  607.     struct coda_out_hdr oh; /* NB: every struct below begins with an oh */
  608.     struct coda_root_out coda_root;
  609.     struct coda_open_out coda_open;
  610.     struct coda_ioctl_out coda_ioctl;
  611.     struct coda_getattr_out coda_getattr;
  612.     struct coda_lookup_out coda_lookup;
  613.     struct coda_create_out coda_create;
  614.     struct coda_mkdir_out coda_mkdir;
  615.     struct coda_readlink_out coda_readlink;
  616.     struct coda_vget_out coda_vget;
  617.     struct coda_purgeuser_out coda_purgeuser;
  618.     struct coda_zapfile_out coda_zapfile;
  619.     struct coda_zapdir_out coda_zapdir;
  620.     struct coda_zapvnode_out coda_zapvnode;
  621.     struct coda_purgefid_out coda_purgefid;
  622.     struct coda_replace_out coda_replace;
  623.     struct coda_open_by_fd_out coda_open_by_fd;
  624.     struct coda_open_by_path_out coda_open_by_path;
  625.     struct coda_statfs_out coda_statfs;
  626. };    
  627. union coda_downcalls {
  628.     /* CODA_INVALIDATE is a venus->kernel call */
  629.     /* CODA_FLUSH is a venus->kernel call */
  630.     struct coda_purgeuser_out purgeuser;
  631.     struct coda_zapfile_out zapfile;
  632.     struct coda_zapdir_out zapdir;
  633.     struct coda_zapvnode_out zapvnode;
  634.     struct coda_purgefid_out purgefid;
  635.     struct coda_replace_out replace;
  636. };
  637. /*
  638.  * Used for identifying usage of "Control" and pioctls
  639.  */
  640. #define PIOCPARM_MASK 0x0000ffff
  641. struct ViceIoctl {
  642.         caddr_t in, out;        /* Data to be transferred in, or out */
  643.         short in_size;          /* Size of input buffer <= 2K */
  644.         short out_size;         /* Maximum size of output buffer, <= 2K */
  645. };
  646. struct PioctlData {
  647.         const char *path;
  648.         int follow;
  649.         struct ViceIoctl vi;
  650. };
  651. #define CODA_CONTROL ".CONTROL"
  652. #define CODA_CONTROLLEN           8
  653. #define CTL_VOL -1
  654. #define CTL_VNO -1
  655. #define CTL_UNI -1
  656. #define CTL_INO                 -1
  657. #define CTL_FILE "/coda/.CONTROL"
  658. #define IS_CTL_FID(fidp) ((fidp)->Volume == CTL_VOL &&
  659.  (fidp)->Vnode == CTL_VNO &&
  660.  (fidp)->Unique == CTL_UNI)
  661. /* Data passed to mount */
  662. #define CODA_MOUNT_VERSION 1
  663. struct coda_mount_data {
  664. int version;
  665. int fd;       /* Opened device */
  666. };
  667. #endif