2 You may distribute this file under either of the two licenses that
3 follow at your discretion.
11 Copyright (c) 1987-1999 Carnegie Mellon University
12 Additional copyrights listed below
14 This code is distributed "AS IS" without warranty of any kind under
15 the terms of the GNU Library General Public Licence Version 2, as
16 shown in the file LICENSE, or under the license shown below. The
17 technical and financial contributors to Coda are listed in the file
25 Coda: an Experimental Distributed File System
28 Copyright (c) 1987-1999 Carnegie Mellon University
31 Permission to use, copy, modify and distribute this software and its
32 documentation is hereby granted, provided that both the copyright
33 notice and this permission notice appear in all copies of the
34 software, derivative works or modified versions, and any portions
35 thereof, and that both notices appear in supporting documentation, and
36 that credit is given to Carnegie Mellon University in all documents
37 and publicity pertaining to direct or indirect use of this code or its
40 CODA IS AN EXPERIMENTAL SOFTWARE SYSTEM AND IS KNOWN TO HAVE BUGS,
41 SOME OF WHICH MAY HAVE SERIOUS CONSEQUENCES. CARNEGIE MELLON ALLOWS
42 FREE USE OF THIS SOFTWARE IN ITS "AS IS" CONDITION. CARNEGIE MELLON
43 DISCLAIMS ANY LIABILITY OF ANY KIND FOR ANY DAMAGES WHATSOEVER
44 RESULTING DIRECTLY OR INDIRECTLY FROM THE USE OF THIS SOFTWARE OR OF
47 Carnegie Mellon encourages users of this software to return any
48 improvements or extensions that they make, and to grant Carnegie
49 Mellon the rights to redistribute these changes without encumbrance.
54 * Based on cfs.h from Mach, but revamped for increased simplicity.
55 * Linux modifications by
56 * Peter Braam, Aug 1996
64 /* Catch new _KERNEL defn for NetBSD and DJGPP/__CYGWIN32__ */
65 #if defined(__NetBSD__) || \
66 ((defined(DJGPP) || defined(__CYGWIN32__)) && !defined(KERNEL))
67 #include <sys/types.h>
70 #ifndef CODA_MAXSYMLINKS
71 #define CODA_MAXSYMLINKS 10
74 #if defined(DJGPP) || defined(__CYGWIN32__)
76 typedef unsigned long u_long
;
77 typedef unsigned int u_int
;
78 typedef unsigned short u_short
;
81 typedef void * caddr_t
;
83 typedef unsigned __int64 u_quad_t
;
85 typedef unsigned long long u_quad_t
;
94 #else /* DJGPP but not KERNEL */
96 typedef unsigned long long u_quad_t
;
101 #if defined(__linux__)
102 #include <linux/time.h>
103 #define cdev_t u_quad_t
105 #if !defined(_UQUAD_T_) && (!defined(__GLIBC__) || __GLIBC__ < 2)
107 typedef unsigned long long u_quad_t
;
109 #else /*__KERNEL__ */
110 typedef unsigned long long u_quad_t
;
111 #endif /* __KERNEL__ */
118 time_t tv_sec
; /* seconds */
119 long tv_nsec
; /* nanoseconds */
123 #ifndef __BIT_TYPES_DEFINED__
124 #define __BIT_TYPES_DEFINED__
125 typedef signed char int8_t;
126 typedef unsigned char u_int8_t
;
127 typedef short int16_t;
128 typedef unsigned short u_int16_t
;
130 typedef unsigned int u_int32_t
;
137 #define CODA_MAXNAMLEN 255
138 #define CODA_MAXPATHLEN 1024
139 #define CODA_MAXSYMLINK 10
141 /* these are Coda's version of O_RDONLY etc combinations
142 * to deal with VFS open modes
144 #define C_O_READ 0x001
145 #define C_O_WRITE 0x002
146 #define C_O_TRUNC 0x010
147 #define C_O_EXCL 0x100
148 #define C_O_CREAT 0x200
150 /* these are to find mode bits in Venus */
151 #define C_M_READ 00400
152 #define C_M_WRITE 00200
154 /* for access Venus will use */
155 #define C_A_C_OK 8 /* Test for writing upon create. */
156 #define C_A_R_OK 4 /* Test for read permission. */
157 #define C_A_W_OK 2 /* Test for write permission. */
158 #define C_A_X_OK 1 /* Test for execute permission. */
159 #define C_A_F_OK 0 /* Test for existence. */
163 #ifndef _VENUS_DIRENT_T_
164 #define _VENUS_DIRENT_T_ 1
165 struct venus_dirent
{
166 unsigned long d_fileno
; /* file number of entry */
167 unsigned short d_reclen
; /* length of this record */
168 unsigned char d_type
; /* file type, see below */
169 unsigned char d_namlen
; /* length of string in d_name */
170 char d_name
[CODA_MAXNAMLEN
+ 1];/* name must be no longer than this */
173 #define DIRSIZ(dp) ((sizeof (struct venus_dirent) - (CODA_MAXNAMLEN+1)) + \
174 (((dp)->d_namlen+1 + 3) &~ 3))
179 #define CDT_UNKNOWN 0
190 * Convert between stat structure types and directory types.
192 #define IFTOCDT(mode) (((mode) & 0170000) >> 12)
193 #define CDTTOIF(dirtype) ((dirtype) << 12)
199 typedef u_long VolumeId
;
200 typedef u_long VnodeId
;
201 typedef u_long Unique_t
;
202 typedef u_long FileVersion
;
206 #define _VICEFID_T_ 1
207 typedef struct ViceFid
{
216 static __inline__ ino_t
coda_f2i(struct ViceFid
*fid
)
220 if (fid
->Vnode
== 0xfffffffe || fid
->Vnode
== 0xffffffff)
221 return ((fid
->Volume
<< 20) | (fid
->Unique
& 0xfffff));
223 return (fid
->Unique
+ (fid
->Vnode
<<10) + (fid
->Volume
<<20));
227 #define coda_f2i(fid)\
228 ((fid) ? ((fid)->Unique + ((fid)->Vnode<<10) + ((fid)->Volume<<20)) : 0)
234 typedef u_int32_t vuid_t
;
235 typedef u_int32_t vgid_t
;
241 vuid_t cr_uid
, cr_euid
, cr_suid
, cr_fsuid
; /* Real, efftve, set, fs uid*/
242 vgid_t cr_groupid
, cr_egid
, cr_sgid
, cr_fsgid
; /* same for groups */
246 #ifndef _VENUS_VATTR_T_
247 #define _VENUS_VATTR_T_
249 * Vnode types. VNON means no type.
251 enum coda_vtype
{ C_VNON
, C_VREG
, C_VDIR
, C_VBLK
, C_VCHR
, C_VLNK
, C_VSOCK
, C_VFIFO
, C_VBAD
};
254 long va_type
; /* vnode type (for create) */
255 u_short va_mode
; /* files access mode and type */
256 short va_nlink
; /* number of references to file */
257 vuid_t va_uid
; /* owner user id */
258 vgid_t va_gid
; /* owner group id */
259 long va_fileid
; /* file id */
260 u_quad_t va_size
; /* file size in bytes */
261 long va_blocksize
; /* blocksize preferred for i/o */
262 struct timespec va_atime
; /* time of last access */
263 struct timespec va_mtime
; /* time of last modification */
264 struct timespec va_ctime
; /* time file changed */
265 u_long va_gen
; /* generation number of file */
266 u_long va_flags
; /* flags defined for file */
267 cdev_t va_rdev
; /* device special file represents */
268 u_quad_t va_bytes
; /* bytes of disk space held by file */
269 u_quad_t va_filerev
; /* file modification number */
274 /* structure used by CODA_STATFS for getting cache information from venus */
284 * Kernel <--> Venus communications.
288 #define CODA_OPEN_BY_FD 3
292 #define CODA_GETATTR 7
293 #define CODA_SETATTR 8
294 #define CODA_ACCESS 9
295 #define CODA_LOOKUP 10
296 #define CODA_CREATE 11
297 #define CODA_REMOVE 12
299 #define CODA_RENAME 14
300 #define CODA_MKDIR 15
301 #define CODA_RMDIR 16
302 #define CODA_SYMLINK 18
303 #define CODA_READLINK 19
304 #define CODA_FSYNC 20
306 #define CODA_SIGNAL 23
307 #define CODA_REPLACE 24 /* DOWNCALL */
308 #define CODA_FLUSH 25 /* DOWNCALL */
309 #define CODA_PURGEUSER 26 /* DOWNCALL */
310 #define CODA_ZAPFILE 27 /* DOWNCALL */
311 #define CODA_ZAPDIR 28 /* DOWNCALL */
312 #define CODA_PURGEFID 30 /* DOWNCALL */
313 #define CODA_OPEN_BY_PATH 31
314 #define CODA_RESOLVE 32
315 #define CODA_REINTEGRATE 33
316 #define CODA_STATFS 34
317 #define CODA_STORE 35
318 #define CODA_RELEASE 36
319 #define CODA_NCALLS 37
321 #define DOWNCALL(opcode) (opcode >= CODA_REPLACE && opcode <= CODA_PURGEFID)
323 #define VC_MAXDATASIZE 8192
324 #define VC_MAXMSGSIZE sizeof(union inputArgs)+sizeof(union outputArgs) +\
327 #define CIOC_KERNEL_VERSION _IOWR('c', 10, sizeof (int))
330 #define CODA_KERNEL_VERSION 0 /* don't care about kernel version number */
331 #define CODA_KERNEL_VERSION 1 /* The old venus 4.6 compatible interface */
333 #define CODA_KERNEL_VERSION 2 /* venus_lookup gets an extra parameter */
336 * Venus <-> Coda RPC arguments
339 unsigned long opcode
;
340 unsigned long unique
; /* Keep multiple outstanding msgs distinct */
341 u_short pid
; /* Common to all */
342 u_short pgid
; /* Common to all */
343 u_short sid
; /* Common to all */
344 struct coda_cred cred
; /* Common to all */
347 /* Really important that opcode and unique are 1st two fields! */
348 struct coda_out_hdr
{
349 unsigned long opcode
;
350 unsigned long unique
;
351 unsigned long result
;
354 /* coda_root: NO_IN */
355 struct coda_root_out
{
356 struct coda_out_hdr oh
;
360 struct coda_root_in
{
361 struct coda_in_hdr in
;
365 struct coda_open_in
{
366 struct coda_in_hdr ih
;
371 struct coda_open_out
{
372 struct coda_out_hdr oh
;
379 struct coda_store_in
{
380 struct coda_in_hdr ih
;
385 struct coda_store_out
{
386 struct coda_out_hdr out
;
390 struct coda_release_in
{
391 struct coda_in_hdr ih
;
396 struct coda_release_out
{
397 struct coda_out_hdr out
;
401 struct coda_close_in
{
402 struct coda_in_hdr ih
;
407 struct coda_close_out
{
408 struct coda_out_hdr out
;
412 struct coda_ioctl_in
{
413 struct coda_in_hdr ih
;
418 char *data
; /* Place holder for data. */
421 struct coda_ioctl_out
{
422 struct coda_out_hdr oh
;
424 caddr_t data
; /* Place holder for data. */
429 struct coda_getattr_in
{
430 struct coda_in_hdr ih
;
434 struct coda_getattr_out
{
435 struct coda_out_hdr oh
;
436 struct coda_vattr attr
;
440 /* coda_setattr: NO_OUT */
441 struct coda_setattr_in
{
442 struct coda_in_hdr ih
;
444 struct coda_vattr attr
;
447 struct coda_setattr_out
{
448 struct coda_out_hdr out
;
451 /* coda_access: NO_OUT */
452 struct coda_access_in
{
453 struct coda_in_hdr ih
;
458 struct coda_access_out
{
459 struct coda_out_hdr out
;
464 #define CLU_CASE_SENSITIVE 0x01
465 #define CLU_CASE_INSENSITIVE 0x02
468 struct coda_lookup_in
{
469 struct coda_in_hdr ih
;
471 int name
; /* Place holder for data. */
475 struct coda_lookup_out
{
476 struct coda_out_hdr oh
;
483 struct coda_create_in
{
484 struct coda_in_hdr ih
;
486 struct coda_vattr attr
;
489 int name
; /* Place holder for data. */
492 struct coda_create_out
{
493 struct coda_out_hdr oh
;
495 struct coda_vattr attr
;
499 /* coda_remove: NO_OUT */
500 struct coda_remove_in
{
501 struct coda_in_hdr ih
;
503 int name
; /* Place holder for data. */
506 struct coda_remove_out
{
507 struct coda_out_hdr out
;
510 /* coda_link: NO_OUT */
511 struct coda_link_in
{
512 struct coda_in_hdr ih
;
513 ViceFid sourceFid
; /* cnode to link *to* */
514 ViceFid destFid
; /* Directory in which to place link */
515 int tname
; /* Place holder for data. */
518 struct coda_link_out
{
519 struct coda_out_hdr out
;
523 /* coda_rename: NO_OUT */
524 struct coda_rename_in
{
525 struct coda_in_hdr ih
;
532 struct coda_rename_out
{
533 struct coda_out_hdr out
;
537 struct coda_mkdir_in
{
538 struct coda_in_hdr ih
;
540 struct coda_vattr attr
;
541 int name
; /* Place holder for data. */
544 struct coda_mkdir_out
{
545 struct coda_out_hdr oh
;
547 struct coda_vattr attr
;
551 /* coda_rmdir: NO_OUT */
552 struct coda_rmdir_in
{
553 struct coda_in_hdr ih
;
555 int name
; /* Place holder for data. */
558 struct coda_rmdir_out
{
559 struct coda_out_hdr out
;
562 /* coda_symlink: NO_OUT */
563 struct coda_symlink_in
{
564 struct coda_in_hdr ih
;
565 ViceFid VFid
; /* Directory to put symlink in */
567 struct coda_vattr attr
;
571 struct coda_symlink_out
{
572 struct coda_out_hdr out
;
576 struct coda_readlink_in
{
577 struct coda_in_hdr ih
;
581 struct coda_readlink_out
{
582 struct coda_out_hdr oh
;
584 caddr_t data
; /* Place holder for data. */
588 /* coda_fsync: NO_OUT */
589 struct coda_fsync_in
{
590 struct coda_in_hdr ih
;
594 struct coda_fsync_out
{
595 struct coda_out_hdr out
;
599 struct coda_vget_in
{
600 struct coda_in_hdr ih
;
604 struct coda_vget_out
{
605 struct coda_out_hdr oh
;
611 /* CODA_SIGNAL is out-of-band, doesn't need data. */
612 /* CODA_INVALIDATE is a venus->kernel call */
613 /* CODA_FLUSH is a venus->kernel call */
615 /* coda_purgeuser: */
616 /* CODA_PURGEUSER is a venus->kernel call */
617 struct coda_purgeuser_out
{
618 struct coda_out_hdr oh
;
619 struct coda_cred cred
;
623 /* CODA_ZAPFILE is a venus->kernel call */
624 struct coda_zapfile_out
{
625 struct coda_out_hdr oh
;
630 /* CODA_ZAPDIR is a venus->kernel call */
631 struct coda_zapdir_out
{
632 struct coda_out_hdr oh
;
637 /* CODA_ZAPVNODE is a venus->kernel call */
638 struct coda_zapvnode_out
{
639 struct coda_out_hdr oh
;
640 struct coda_cred cred
;
645 /* CODA_PURGEFID is a venus->kernel call */
646 struct coda_purgefid_out
{
647 struct coda_out_hdr oh
;
652 /* CODA_REPLACE is a venus->kernel call */
653 struct coda_replace_out
{ /* coda_replace is a venus->kernel call */
654 struct coda_out_hdr oh
;
659 /* coda_open_by_fd: */
660 struct coda_open_by_fd_in
{
661 struct coda_in_hdr ih
;
666 struct coda_open_by_fd_out
{
667 struct coda_out_hdr oh
;
671 struct file
*fh
; /* not passed from userspace but used in-kernel only */
675 /* coda_open_by_path: */
676 struct coda_open_by_path_in
{
677 struct coda_in_hdr ih
;
682 struct coda_open_by_path_out
{
683 struct coda_out_hdr oh
;
687 /* coda_statfs: NO_IN */
688 struct coda_statfs_in
{
689 struct coda_in_hdr in
;
692 struct coda_statfs_out
{
693 struct coda_out_hdr oh
;
694 struct coda_statfs stat
;
698 * Occasionally, we don't cache the fid returned by CODA_LOOKUP.
699 * For instance, if the fid is inconsistent.
700 * This case is handled by setting the top bit of the type result parameter.
702 #define CODA_NOCACHE 0x80000000
705 struct coda_in_hdr ih
; /* NB: every struct below begins with an ih */
706 struct coda_open_in coda_open
;
707 struct coda_store_in coda_store
;
708 struct coda_release_in coda_release
;
709 struct coda_close_in coda_close
;
710 struct coda_ioctl_in coda_ioctl
;
711 struct coda_getattr_in coda_getattr
;
712 struct coda_setattr_in coda_setattr
;
713 struct coda_access_in coda_access
;
714 struct coda_lookup_in coda_lookup
;
715 struct coda_create_in coda_create
;
716 struct coda_remove_in coda_remove
;
717 struct coda_link_in coda_link
;
718 struct coda_rename_in coda_rename
;
719 struct coda_mkdir_in coda_mkdir
;
720 struct coda_rmdir_in coda_rmdir
;
721 struct coda_symlink_in coda_symlink
;
722 struct coda_readlink_in coda_readlink
;
723 struct coda_fsync_in coda_fsync
;
724 struct coda_vget_in coda_vget
;
725 struct coda_open_by_fd_in coda_open_by_fd
;
726 struct coda_open_by_path_in coda_open_by_path
;
727 struct coda_statfs_in coda_statfs
;
731 struct coda_out_hdr oh
; /* NB: every struct below begins with an oh */
732 struct coda_root_out coda_root
;
733 struct coda_open_out coda_open
;
734 struct coda_ioctl_out coda_ioctl
;
735 struct coda_getattr_out coda_getattr
;
736 struct coda_lookup_out coda_lookup
;
737 struct coda_create_out coda_create
;
738 struct coda_mkdir_out coda_mkdir
;
739 struct coda_readlink_out coda_readlink
;
740 struct coda_vget_out coda_vget
;
741 struct coda_purgeuser_out coda_purgeuser
;
742 struct coda_zapfile_out coda_zapfile
;
743 struct coda_zapdir_out coda_zapdir
;
744 struct coda_zapvnode_out coda_zapvnode
;
745 struct coda_purgefid_out coda_purgefid
;
746 struct coda_replace_out coda_replace
;
747 struct coda_open_by_fd_out coda_open_by_fd
;
748 struct coda_open_by_path_out coda_open_by_path
;
749 struct coda_statfs_out coda_statfs
;
752 union coda_downcalls
{
753 /* CODA_INVALIDATE is a venus->kernel call */
754 /* CODA_FLUSH is a venus->kernel call */
755 struct coda_purgeuser_out purgeuser
;
756 struct coda_zapfile_out zapfile
;
757 struct coda_zapdir_out zapdir
;
758 struct coda_zapvnode_out zapvnode
;
759 struct coda_purgefid_out purgefid
;
760 struct coda_replace_out replace
;
765 * Used for identifying usage of "Control" and pioctls
768 #define PIOCPARM_MASK 0x0000ffff
770 caddr_t in
, out
; /* Data to be transferred in, or out */
771 short in_size
; /* Size of input buffer <= 2K */
772 short out_size
; /* Maximum size of output buffer, <= 2K */
781 #define CODA_CONTROL ".CONTROL"
782 #define CODA_CONTROLLEN 8
787 #define CTL_FILE "/coda/.CONTROL"
790 #define IS_CTL_FID(fidp) ((fidp)->Volume == CTL_VOL &&\
791 (fidp)->Vnode == CTL_VNO &&\
792 (fidp)->Unique == CTL_UNI)
794 /* Data passed to mount */
796 #define CODA_MOUNT_VERSION 1
798 struct coda_mount_data
{
800 int fd
; /* Opened device */