coda.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:18k
源码类别:

嵌入式Linux

开发平台:

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. #include <linux/config.h>
  49. /* Catch new _KERNEL defn for NetBSD and DJGPP/__CYGWIN32__ */
  50. #if defined(__NetBSD__) || 
  51.   ((defined(DJGPP) || defined(__CYGWIN32__)) && !defined(KERNEL))
  52. #include <sys/types.h>
  53. #endif 
  54. #ifndef CODA_MAXSYMLINKS
  55. #define CODA_MAXSYMLINKS 10
  56. #endif
  57. #if defined(DJGPP) || defined(__CYGWIN32__)
  58. #ifdef KERNEL
  59. typedef unsigned long u_long;
  60. typedef unsigned int u_int;
  61. typedef unsigned short u_short;
  62. typedef u_long ino_t;
  63. typedef u_long dev_t;
  64. typedef void * caddr_t;
  65. #ifdef DOS
  66. typedef unsigned __int64 u_quad_t;
  67. #else 
  68. typedef unsigned long long u_quad_t;
  69. #endif
  70. #define inline
  71. struct timespec {
  72.         long       ts_sec;
  73.         long       ts_nsec;
  74. };
  75. #else  /* DJGPP but not KERNEL */
  76. #include <sys/time.h>
  77. typedef unsigned long long u_quad_t;
  78. #endif /* !KERNEL */
  79. #endif /* !DJGPP */
  80. #if defined(__linux__)
  81. #include <linux/time.h>
  82. #define cdev_t u_quad_t
  83. #ifndef __KERNEL__
  84. #if !defined(_UQUAD_T_) && (!defined(__GLIBC__) || __GLIBC__ < 2)
  85. #define _UQUAD_T_ 1
  86. typedef unsigned long long u_quad_t;
  87. #endif
  88. #else /*__KERNEL__ */
  89. typedef unsigned long long u_quad_t;
  90. #endif /* __KERNEL__ */
  91. #else
  92. #define cdev_t dev_t
  93. #endif
  94. #ifdef __CYGWIN32__
  95. struct timespec {
  96.         time_t  tv_sec;         /* seconds */
  97.         long    tv_nsec;        /* nanoseconds */
  98. };
  99. #endif
  100. #ifndef __BIT_TYPES_DEFINED__
  101. #define __BIT_TYPES_DEFINED__
  102. typedef signed char       int8_t;
  103. typedef unsigned char     u_int8_t;
  104. typedef short      int16_t;
  105. typedef unsigned short    u_int16_t;
  106. typedef int      int32_t;
  107. typedef unsigned int    u_int32_t;
  108. #endif
  109. /*
  110.  * Cfs constants
  111.  */
  112. #define CODA_MAXNAMLEN   255
  113. #define CODA_MAXPATHLEN  1024
  114. #define CODA_MAXSYMLINK  10
  115. /* these are Coda's version of O_RDONLY etc combinations
  116.  * to deal with VFS open modes
  117.  */
  118. #define C_O_READ 0x001
  119. #define C_O_WRITE       0x002
  120. #define C_O_TRUNC       0x010
  121. #define C_O_EXCL 0x100
  122. #define C_O_CREAT 0x200
  123. /* these are to find mode bits in Venus */ 
  124. #define C_M_READ  00400
  125. #define C_M_WRITE 00200
  126. /* for access Venus will use */
  127. #define C_A_C_OK    8               /* Test for writing upon create.  */
  128. #define C_A_R_OK    4               /* Test for read permission.  */
  129. #define C_A_W_OK    2               /* Test for write permission.  */
  130. #define C_A_X_OK    1               /* Test for execute permission.  */
  131. #define C_A_F_OK    0               /* Test for existence.  */
  132. #ifndef _VENUS_DIRENT_T_
  133. #define _VENUS_DIRENT_T_ 1
  134. struct venus_dirent {
  135.         u_int32_t d_fileno; /* file number of entry */
  136.         u_int16_t d_reclen; /* length of this record */
  137.         u_int8_t  d_type; /* file type, see below */
  138.         u_int8_t  d_namlen; /* length of string in d_name */
  139.         char   d_name[CODA_MAXNAMLEN + 1];/* name must be no longer than this */
  140. };
  141. #undef DIRSIZ
  142. #define DIRSIZ(dp)      ((sizeof (struct venus_dirent) - (CODA_MAXNAMLEN+1)) + 
  143.                          (((dp)->d_namlen+1 + 3) &~ 3))
  144. /*
  145.  * File types
  146.  */
  147. #define CDT_UNKNOWN  0
  148. #define CDT_FIFO  1
  149. #define CDT_CHR  2
  150. #define CDT_DIR  4
  151. #define CDT_BLK  6
  152. #define CDT_REG  8
  153. #define CDT_LNK 10
  154. #define CDT_SOCK 12
  155. #define CDT_WHT 14
  156. /*
  157.  * Convert between stat structure types and directory types.
  158.  */
  159. #define IFTOCDT(mode) (((mode) & 0170000) >> 12)
  160. #define CDTTOIF(dirtype) ((dirtype) << 12)
  161. #endif
  162. #ifndef _VUID_T_
  163. #define _VUID_T_
  164. typedef u_int32_t vuid_t;
  165. typedef u_int32_t vgid_t;
  166. #endif /*_VUID_T_ */
  167. #ifdef CONFIG_CODA_FS_OLD_API
  168. struct CodaFid {
  169. u_int32_t opaque[3];
  170. };
  171. static __inline__ ino_t  coda_f2i(struct CodaFid *fid)
  172. {
  173. if ( ! fid ) 
  174. return 0; 
  175. if (fid->opaque[1] == 0xfffffffe || fid->opaque[1] == 0xffffffff)
  176. return ((fid->opaque[0] << 20) | (fid->opaque[2] & 0xfffff));
  177. else
  178. return (fid->opaque[2] + (fid->opaque[1]<<10) + (fid->opaque[0]<<20));
  179. }
  180. struct coda_cred {
  181.     vuid_t cr_uid, cr_euid, cr_suid, cr_fsuid; /* Real, efftve, set, fs uid*/
  182.     vgid_t cr_groupid, cr_egid, cr_sgid, cr_fsgid; /* same for groups */
  183. };
  184. #else /* not defined(CONFIG_CODA_FS_OLD_API) */
  185. struct CodaFid {
  186. u_int32_t opaque[4];
  187. };
  188. #define coda_f2i(fid)
  189. (fid ? (fid->opaque[3] ^ (fid->opaque[2]<<10) ^ (fid->opaque[1]<<20) ^ fid->opaque[0]) : 0)
  190. #endif
  191. #ifndef _VENUS_VATTR_T_
  192. #define _VENUS_VATTR_T_
  193. /*
  194.  * Vnode types.  VNON means no type.
  195.  */
  196. enum coda_vtype { C_VNON, C_VREG, C_VDIR, C_VBLK, C_VCHR, C_VLNK, C_VSOCK, C_VFIFO, C_VBAD };
  197. struct coda_vattr {
  198. long      va_type; /* vnode type (for create) */
  199. u_short va_mode; /* files access mode and type */
  200. short va_nlink; /* number of references to file */
  201. vuid_t va_uid; /* owner user id */
  202. vgid_t va_gid; /* owner group id */
  203. long va_fileid; /* file id */
  204. u_quad_t va_size; /* file size in bytes */
  205. long va_blocksize; /* blocksize preferred for i/o */
  206. struct timespec va_atime; /* time of last access */
  207. struct timespec va_mtime; /* time of last modification */
  208. struct timespec va_ctime; /* time file changed */
  209. u_long va_gen; /* generation number of file */
  210. u_long va_flags; /* flags defined for file */
  211. cdev_t         va_rdev; /* device special file represents */
  212. u_quad_t va_bytes; /* bytes of disk space held by file */
  213. u_quad_t va_filerev; /* file modification number */
  214. };
  215. #endif 
  216. /* structure used by CODA_STATFS for getting cache information from venus */
  217. struct coda_statfs {
  218.     int32_t f_blocks;
  219.     int32_t f_bfree;
  220.     int32_t f_bavail;
  221.     int32_t f_files;
  222.     int32_t f_ffree;
  223. };
  224. /*
  225.  * Kernel <--> Venus communications.
  226.  */
  227. #define CODA_ROOT 2
  228. #define CODA_OPEN_BY_FD 3
  229. #define CODA_OPEN 4
  230. #define CODA_CLOSE 5
  231. #define CODA_IOCTL 6
  232. #define CODA_GETATTR 7
  233. #define CODA_SETATTR 8
  234. #define CODA_ACCESS 9
  235. #define CODA_LOOKUP 10
  236. #define CODA_CREATE 11
  237. #define CODA_REMOVE 12
  238. #define CODA_LINK 13
  239. #define CODA_RENAME 14
  240. #define CODA_MKDIR 15
  241. #define CODA_RMDIR 16
  242. #define CODA_SYMLINK 18
  243. #define CODA_READLINK 19
  244. #define CODA_FSYNC 20
  245. #define CODA_VGET 22
  246. #define CODA_SIGNAL 23
  247. #define CODA_REPLACE  24 /* DOWNCALL */
  248. #define CODA_FLUSH       25 /* DOWNCALL */
  249. #define CODA_PURGEUSER   26 /* DOWNCALL */
  250. #define CODA_ZAPFILE     27 /* DOWNCALL */
  251. #define CODA_ZAPDIR      28 /* DOWNCALL */
  252. #define CODA_PURGEFID    30 /* DOWNCALL */
  253. #define CODA_OPEN_BY_PATH 31
  254. #define CODA_RESOLVE     32
  255. #define CODA_REINTEGRATE 33
  256. #define CODA_STATFS  34
  257. #define CODA_STORE  35
  258. #define CODA_RELEASE  36
  259. #define CODA_NCALLS 37
  260. #define DOWNCALL(opcode) (opcode >= CODA_REPLACE && opcode <= CODA_PURGEFID)
  261. #define VC_MAXDATASIZE     8192
  262. #define VC_MAXMSGSIZE      sizeof(union inputArgs)+sizeof(union outputArgs) +
  263.                             VC_MAXDATASIZE  
  264. #define CIOC_KERNEL_VERSION _IOWR('c', 10, size_t)
  265. #if 0
  266. #define CODA_KERNEL_VERSION 0 /* don't care about kernel version number */
  267. #define CODA_KERNEL_VERSION 1 /* The old venus 4.6 compatible interface */
  268. #endif
  269. #ifdef CONFIG_CODA_FS_OLD_API
  270. #define CODA_KERNEL_VERSION 2 /* venus_lookup got an extra parameter */
  271. #else
  272. #define CODA_KERNEL_VERSION 3 /* 128-bit file identifiers */
  273. #endif
  274. /*
  275.  *        Venus <-> Coda  RPC arguments
  276.  */
  277. struct coda_in_hdr {
  278.     u_int32_t opcode;
  279.     u_int32_t unique;     /* Keep multiple outstanding msgs distinct */
  280. #ifdef CONFIG_CODA_FS_OLD_API
  281.     u_int16_t pid;     /* Common to all */
  282.     u_int16_t pgid;     /* Common to all */
  283.     u_int16_t sid;          /* Common to all */
  284.     struct coda_cred cred;  /* Common to all */
  285. #else
  286.     pid_t pid;
  287.     pid_t pgid;
  288.     vuid_t uid;
  289. #endif
  290. };
  291. /* Really important that opcode and unique are 1st two fields! */
  292. struct coda_out_hdr {
  293.     u_int32_t opcode;
  294.     u_int32_t unique;
  295.     u_int32_t result;
  296. };
  297. /* coda_root: NO_IN */
  298. struct coda_root_out {
  299.     struct coda_out_hdr oh;
  300.     struct CodaFid 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.     struct CodaFid 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.     struct CodaFid 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.     struct CodaFid 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.     struct CodaFid 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.     struct CodaFid 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.     struct CodaFid 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.     struct CodaFid 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.     struct CodaFid 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.     struct CodaFid VFid;
  391.     int         name; /* Place holder for data. */
  392.     int         flags;
  393. };
  394. struct coda_lookup_out {
  395.     struct coda_out_hdr oh;
  396.     struct CodaFid VFid;
  397.     int vtype;
  398. };
  399. /* coda_create: */
  400. struct coda_create_in {
  401.     struct coda_in_hdr ih;
  402.     struct CodaFid 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.     struct CodaFid VFid;
  411.     struct coda_vattr attr;
  412. };
  413. /* coda_remove: NO_OUT */
  414. struct coda_remove_in {
  415.     struct coda_in_hdr ih;
  416.     struct CodaFid 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.     struct CodaFid sourceFid; /* cnode to link *to* */
  426.     struct CodaFid 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.     struct CodaFid sourceFid;
  436.     int  srcname;
  437.     struct CodaFid 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.     struct CodaFid 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.     struct CodaFid VFid;
  453.     struct coda_vattr attr;
  454. };
  455. /* coda_rmdir: NO_OUT */
  456. struct coda_rmdir_in {
  457.     struct coda_in_hdr ih;
  458.     struct CodaFid 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.     struct CodaFid 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.     struct CodaFid 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.     struct CodaFid 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.     struct CodaFid VFid;
  497. };
  498. struct coda_vget_out {
  499.     struct coda_out_hdr oh;
  500.     struct CodaFid 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. #ifdef CONFIG_CODA_FS_OLD_API
  511.     struct coda_cred cred;
  512. #else
  513.     vuid_t uid;
  514. #endif
  515. };
  516. /* coda_zapfile: */
  517. /* CODA_ZAPFILE is a venus->kernel call */
  518. struct coda_zapfile_out {  
  519.     struct coda_out_hdr oh;
  520.     struct CodaFid CodaFid;
  521. };
  522. /* coda_zapdir: */
  523. /* CODA_ZAPDIR is a venus->kernel call */
  524. struct coda_zapdir_out {   
  525.     struct coda_out_hdr oh;
  526.     struct CodaFid CodaFid;
  527. };
  528. /* coda_purgefid: */
  529. /* CODA_PURGEFID is a venus->kernel call */
  530. struct coda_purgefid_out { 
  531.     struct coda_out_hdr oh;
  532.     struct CodaFid CodaFid;
  533. };
  534. /* coda_replace: */
  535. /* CODA_REPLACE is a venus->kernel call */
  536. struct coda_replace_out { /* coda_replace is a venus->kernel call */
  537.     struct coda_out_hdr oh;
  538.     struct CodaFid NewFid;
  539.     struct CodaFid OldFid;
  540. };
  541. /* coda_open_by_fd: */
  542. struct coda_open_by_fd_in {
  543.     struct coda_in_hdr ih;
  544.     struct CodaFid VFid;
  545.     int        flags;
  546. };
  547. struct coda_open_by_fd_out {
  548.     struct coda_out_hdr oh;
  549.     int fd;
  550. #ifdef __KERNEL__
  551.     struct file *fh; /* not passed from userspace but used in-kernel only */
  552. #endif
  553. };
  554. /* coda_open_by_path: */
  555. struct coda_open_by_path_in {
  556.     struct coda_in_hdr ih;
  557.     struct CodaFid VFid;
  558.     int flags;
  559. };
  560. struct coda_open_by_path_out {
  561.     struct coda_out_hdr oh;
  562. int path;
  563. };
  564. /* coda_statfs: NO_IN */
  565. struct coda_statfs_in {
  566.     struct coda_in_hdr in;
  567. };
  568. struct coda_statfs_out {
  569.     struct coda_out_hdr oh;
  570.     struct coda_statfs stat;
  571. };
  572. /* 
  573.  * Occasionally, we don't cache the fid returned by CODA_LOOKUP. 
  574.  * For instance, if the fid is inconsistent. 
  575.  * This case is handled by setting the top bit of the type result parameter.
  576.  */
  577. #define CODA_NOCACHE          0x80000000
  578. union inputArgs {
  579.     struct coda_in_hdr ih; /* NB: every struct below begins with an ih */
  580.     struct coda_open_in coda_open;
  581.     struct coda_store_in coda_store;
  582.     struct coda_release_in coda_release;
  583.     struct coda_close_in coda_close;
  584.     struct coda_ioctl_in coda_ioctl;
  585.     struct coda_getattr_in coda_getattr;
  586.     struct coda_setattr_in coda_setattr;
  587.     struct coda_access_in coda_access;
  588.     struct coda_lookup_in coda_lookup;
  589.     struct coda_create_in coda_create;
  590.     struct coda_remove_in coda_remove;
  591.     struct coda_link_in coda_link;
  592.     struct coda_rename_in coda_rename;
  593.     struct coda_mkdir_in coda_mkdir;
  594.     struct coda_rmdir_in coda_rmdir;
  595.     struct coda_symlink_in coda_symlink;
  596.     struct coda_readlink_in coda_readlink;
  597.     struct coda_fsync_in coda_fsync;
  598.     struct coda_vget_in coda_vget;
  599.     struct coda_open_by_fd_in coda_open_by_fd;
  600.     struct coda_open_by_path_in coda_open_by_path;
  601.     struct coda_statfs_in coda_statfs;
  602. };
  603. union outputArgs {
  604.     struct coda_out_hdr oh; /* NB: every struct below begins with an oh */
  605.     struct coda_root_out coda_root;
  606.     struct coda_open_out coda_open;
  607.     struct coda_ioctl_out coda_ioctl;
  608.     struct coda_getattr_out coda_getattr;
  609.     struct coda_lookup_out coda_lookup;
  610.     struct coda_create_out coda_create;
  611.     struct coda_mkdir_out coda_mkdir;
  612.     struct coda_readlink_out coda_readlink;
  613.     struct coda_vget_out coda_vget;
  614.     struct coda_purgeuser_out coda_purgeuser;
  615.     struct coda_zapfile_out coda_zapfile;
  616.     struct coda_zapdir_out coda_zapdir;
  617.     struct coda_purgefid_out coda_purgefid;
  618.     struct coda_replace_out coda_replace;
  619.     struct coda_open_by_fd_out coda_open_by_fd;
  620.     struct coda_open_by_path_out coda_open_by_path;
  621.     struct coda_statfs_out coda_statfs;
  622. };    
  623. union coda_downcalls {
  624.     /* CODA_INVALIDATE is a venus->kernel call */
  625.     /* CODA_FLUSH is a venus->kernel call */
  626.     struct coda_purgeuser_out purgeuser;
  627.     struct coda_zapfile_out zapfile;
  628.     struct coda_zapdir_out zapdir;
  629.     struct coda_purgefid_out purgefid;
  630.     struct coda_replace_out replace;
  631. };
  632. /*
  633.  * Used for identifying usage of "Control" and pioctls
  634.  */
  635. #define PIOCPARM_MASK 0x0000ffff
  636. struct ViceIoctl {
  637.         void __user *in;        /* Data to be transferred in */
  638.         void __user *out;       /* Data to be transferred out */
  639.         u_short in_size;        /* Size of input buffer <= 2K */
  640.         u_short out_size;       /* Maximum size of output buffer, <= 2K */
  641. };
  642. struct PioctlData {
  643.         const char __user *path;
  644.         int follow;
  645.         struct ViceIoctl vi;
  646. };
  647. #define CODA_CONTROL ".CONTROL"
  648. #define CODA_CONTROLLEN 8
  649. #define CTL_INO -1
  650. /* Data passed to mount */
  651. #define CODA_MOUNT_VERSION 1
  652. struct coda_mount_data {
  653. int version;
  654. int fd;       /* Opened device */
  655. };
  656. #endif