📄 coda.h
字号:
/* You may distribute this file under either of the two licenses that follow at your discretion.*//* BLURB lgpl Coda File System Release 5 Copyright (c) 1987-1999 Carnegie Mellon University Additional copyrights listed belowThis code is distributed "AS IS" without warranty of any kind underthe terms of the GNU Library General Public Licence Version 2, asshown in the file LICENSE, or under the license shown below. Thetechnical and financial contributors to Coda are listed in the fileCREDITS. Additional copyrights *//* Coda: an Experimental Distributed File System Release 4.0 Copyright (c) 1987-1999 Carnegie Mellon University All Rights ReservedPermission to use, copy, modify and distribute this software and itsdocumentation is hereby granted, provided that both the copyrightnotice and this permission notice appear in all copies of thesoftware, derivative works or modified versions, and any portionsthereof, and that both notices appear in supporting documentation, andthat credit is given to Carnegie Mellon University in all documentsand publicity pertaining to direct or indirect use of this code or itsderivatives.CODA IS AN EXPERIMENTAL SOFTWARE SYSTEM AND IS KNOWN TO HAVE BUGS,SOME OF WHICH MAY HAVE SERIOUS CONSEQUENCES. CARNEGIE MELLON ALLOWSFREE USE OF THIS SOFTWARE IN ITS "AS IS" CONDITION. CARNEGIE MELLONDISCLAIMS ANY LIABILITY OF ANY KIND FOR ANY DAMAGES WHATSOEVERRESULTING DIRECTLY OR INDIRECTLY FROM THE USE OF THIS SOFTWARE OR OFANY DERIVATIVE WORK.Carnegie Mellon encourages users of this software to return anyimprovements or extensions that they make, and to grant CarnegieMellon the rights to redistribute these changes without encumbrance.*//* * * Based on cfs.h from Mach, but revamped for increased simplicity. * Linux modifications by * Peter Braam, Aug 1996 */#ifndef _CODA_HEADER_#define _CODA_HEADER_/* Catch new _KERNEL defn for NetBSD and DJGPP/__CYGWIN32__ */#if defined(__NetBSD__) || \ ((defined(DJGPP) || defined(__CYGWIN32__)) && !defined(KERNEL))#include <sys/types.h>#endif #ifndef CODA_MAXSYMLINKS#define CODA_MAXSYMLINKS 10#endif#if defined(DJGPP) || defined(__CYGWIN32__)#ifdef KERNELtypedef unsigned long u_long;typedef unsigned int u_int;typedef unsigned short u_short;typedef u_long ino_t;typedef u_long dev_t;typedef void * caddr_t;#ifdef DOStypedef unsigned __int64 u_quad_t;#else typedef unsigned long long u_quad_t;#endif#define inlinestruct timespec { long ts_sec; long ts_nsec;};#else /* DJGPP but not KERNEL */#include <sys/time.h>typedef unsigned long long u_quad_t;#endif /* !KERNEL */#endif /* !DJGPP */#if defined(__linux__)#define cdev_t u_quad_t#ifndef __KERNEL__#if !defined(_UQUAD_T_) && (!defined(__GLIBC__) || __GLIBC__ < 2)#define _UQUAD_T_ 1typedef unsigned long long u_quad_t;#endif#else /*__KERNEL__ */typedef unsigned long long u_quad_t;#endif /* __KERNEL__ */#else#define cdev_t dev_t#endif#ifdef __CYGWIN32__struct timespec { time_t tv_sec; /* seconds */ long tv_nsec; /* nanoseconds */};#endif#ifndef __BIT_TYPES_DEFINED__#define __BIT_TYPES_DEFINED__typedef signed char int8_t;typedef unsigned char u_int8_t;typedef short int16_t;typedef unsigned short u_int16_t;typedef int int32_t;typedef unsigned int u_int32_t;#endif/* * Cfs constants */#define CODA_MAXNAMLEN 255#define CODA_MAXPATHLEN 1024#define CODA_MAXSYMLINK 10/* these are Coda's version of O_RDONLY etc combinations * to deal with VFS open modes */#define C_O_READ 0x001#define C_O_WRITE 0x002#define C_O_TRUNC 0x010#define C_O_EXCL 0x100#define C_O_CREAT 0x200/* these are to find mode bits in Venus */ #define C_M_READ 00400#define C_M_WRITE 00200/* for access Venus will use */#define C_A_C_OK 8 /* Test for writing upon create. */#define C_A_R_OK 4 /* Test for read permission. */#define C_A_W_OK 2 /* Test for write permission. */#define C_A_X_OK 1 /* Test for execute permission. */#define C_A_F_OK 0 /* Test for existence. */#ifndef _VENUS_DIRENT_T_#define _VENUS_DIRENT_T_ 1struct venus_dirent { unsigned long d_fileno; /* file number of entry */ unsigned short d_reclen; /* length of this record */ unsigned char d_type; /* file type, see below */ unsigned char d_namlen; /* length of string in d_name */ char d_name[CODA_MAXNAMLEN + 1];/* name must be no longer than this */};#undef DIRSIZ#define DIRSIZ(dp) ((sizeof (struct venus_dirent) - (CODA_MAXNAMLEN+1)) + \ (((dp)->d_namlen+1 + 3) &~ 3))/* * File types */#define CDT_UNKNOWN 0#define CDT_FIFO 1#define CDT_CHR 2#define CDT_DIR 4#define CDT_BLK 6#define CDT_REG 8#define CDT_LNK 10#define CDT_SOCK 12#define CDT_WHT 14/* * Convert between stat structure types and directory types. */#define IFTOCDT(mode) (((mode) & 0170000) >> 12)#define CDTTOIF(dirtype) ((dirtype) << 12)#endif#ifndef _FID_T_#define _FID_T_ 1typedef u_long VolumeId;typedef u_long VnodeId;typedef u_long Unique_t;typedef u_long FileVersion;#endif #ifndef _VICEFID_T_#define _VICEFID_T_ 1typedef struct ViceFid { VolumeId Volume; VnodeId Vnode; Unique_t Unique;} ViceFid;#endif /* VICEFID */#ifdef __linux__static __inline__ ino_t coda_f2i(struct ViceFid *fid){ if ( ! fid ) return 0; if (fid->Vnode == 0xfffffffe || fid->Vnode == 0xffffffff) return ((fid->Volume << 20) | (fid->Unique & 0xfffff)); else return (fid->Unique + (fid->Vnode<<10) + (fid->Volume<<20));} #else#define coda_f2i(fid)\ ((fid) ? ((fid)->Unique + ((fid)->Vnode<<10) + ((fid)->Volume<<20)) : 0)#endif#ifndef _VUID_T_#define _VUID_T_typedef u_int32_t vuid_t;typedef u_int32_t vgid_t;#endif /*_VUID_T_ */#ifndef _CODACRED_T_#define _CODACRED_T_struct coda_cred { vuid_t cr_uid, cr_euid, cr_suid, cr_fsuid; /* Real, efftve, set, fs uid*/ vgid_t cr_groupid, cr_egid, cr_sgid, cr_fsgid; /* same for groups */};#endif #ifndef _VENUS_VATTR_T_#define _VENUS_VATTR_T_/* * Vnode types. VNON means no type. */enum coda_vtype { C_VNON, C_VREG, C_VDIR, C_VBLK, C_VCHR, C_VLNK, C_VSOCK, C_VFIFO, C_VBAD };struct coda_vattr { long va_type; /* vnode type (for create) */ u_short va_mode; /* files access mode and type */ short va_nlink; /* number of references to file */ vuid_t va_uid; /* owner user id */ vgid_t va_gid; /* owner group id */ long va_fileid; /* file id */ u_quad_t va_size; /* file size in bytes */ long va_blocksize; /* blocksize preferred for i/o */ struct timespec va_atime; /* time of last access */ struct timespec va_mtime; /* time of last modification */ struct timespec va_ctime; /* time file changed */ u_long va_gen; /* generation number of file */ u_long va_flags; /* flags defined for file */ cdev_t va_rdev; /* device special file represents */ u_quad_t va_bytes; /* bytes of disk space held by file */ u_quad_t va_filerev; /* file modification number */};#endif /* structure used by CODA_STATFS for getting cache information from venus */struct coda_statfs { int32_t f_blocks; int32_t f_bfree; int32_t f_bavail; int32_t f_files; int32_t f_ffree;};/* * Kernel <--> Venus communications. */#define CODA_ROOT 2#define CODA_OPEN_BY_FD 3#define CODA_OPEN 4#define CODA_CLOSE 5#define CODA_IOCTL 6#define CODA_GETATTR 7#define CODA_SETATTR 8#define CODA_ACCESS 9#define CODA_LOOKUP 10#define CODA_CREATE 11#define CODA_REMOVE 12#define CODA_LINK 13#define CODA_RENAME 14#define CODA_MKDIR 15#define CODA_RMDIR 16#define CODA_SYMLINK 18#define CODA_READLINK 19#define CODA_FSYNC 20#define CODA_VGET 22#define CODA_SIGNAL 23#define CODA_REPLACE 24 /* DOWNCALL */#define CODA_FLUSH 25 /* DOWNCALL */#define CODA_PURGEUSER 26 /* DOWNCALL */#define CODA_ZAPFILE 27 /* DOWNCALL */#define CODA_ZAPDIR 28 /* DOWNCALL */#define CODA_PURGEFID 30 /* DOWNCALL */#define CODA_OPEN_BY_PATH 31#define CODA_RESOLVE 32#define CODA_REINTEGRATE 33#define CODA_STATFS 34#define CODA_STORE 35#define CODA_RELEASE 36#define CODA_NCALLS 37#define DOWNCALL(opcode) (opcode >= CODA_REPLACE && opcode <= CODA_PURGEFID)#define VC_MAXDATASIZE 8192#define VC_MAXMSGSIZE sizeof(union inputArgs)+sizeof(union outputArgs) +\ VC_MAXDATASIZE #define CIOC_KERNEL_VERSION _IOWR('c', 10, sizeof (int))#if 0#define CODA_KERNEL_VERSION 0 /* don't care about kernel version number */#define CODA_KERNEL_VERSION 1 /* The old venus 4.6 compatible interface */#endif#define CODA_KERNEL_VERSION 2 /* venus_lookup gets an extra parameter *//* * Venus <-> Coda RPC arguments */struct coda_in_hdr { unsigned long opcode; unsigned long unique; /* Keep multiple outstanding msgs distinct */ u_short pid; /* Common to all */ u_short pgid; /* Common to all */ u_short sid; /* Common to all */ struct coda_cred cred; /* Common to all */};/* Really important that opcode and unique are 1st two fields! */struct coda_out_hdr { unsigned long opcode; unsigned long unique; unsigned long result;};/* coda_root: NO_IN */struct coda_root_out { struct coda_out_hdr oh; ViceFid VFid;};struct coda_root_in { struct coda_in_hdr in;};/* coda_open: */struct coda_open_in { struct coda_in_hdr ih; ViceFid VFid; int flags;};struct coda_open_out { struct coda_out_hdr oh; cdev_t dev; ino_t inode;};/* coda_store: */struct coda_store_in { struct coda_in_hdr ih; ViceFid VFid; int flags;};struct coda_store_out { struct coda_out_hdr out;};/* coda_release: */struct coda_release_in { struct coda_in_hdr ih; ViceFid VFid; int flags;};struct coda_release_out { struct coda_out_hdr out;};/* coda_close: */struct coda_close_in { struct coda_in_hdr ih; ViceFid VFid;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -