nfs.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:3k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * NFS protocol definitions
  3.  *
  4.  * This file contains constants mostly for Version 2 of the protocol,
  5.  * but also has a couple of NFSv3 bits in (notably the error codes).
  6.  */
  7. #ifndef _LINUX_NFS_H
  8. #define _LINUX_NFS_H
  9. #include <linux/sunrpc/msg_prot.h>
  10. #define NFS_PROGRAM 100003
  11. #define NFS_PORT 2049
  12. #define NFS_MAXDATA 8192
  13. #define NFS_MAXPATHLEN 1024
  14. #define NFS_MAXNAMLEN 255
  15. #define NFS_MAXGROUPS 16
  16. #define NFS_FHSIZE 32
  17. #define NFS_COOKIESIZE 4
  18. #define NFS_FIFO_DEV (-1)
  19. #define NFSMODE_FMT 0170000
  20. #define NFSMODE_DIR 0040000
  21. #define NFSMODE_CHR 0020000
  22. #define NFSMODE_BLK 0060000
  23. #define NFSMODE_REG 0100000
  24. #define NFSMODE_LNK 0120000
  25. #define NFSMODE_SOCK 0140000
  26. #define NFSMODE_FIFO 0010000
  27. #define NFS_MNT_PROGRAM 100005
  28. #define NFS_MNT_PORT 627
  29. /*
  30.  * NFS stats. The good thing with these values is that NFSv3 errors are
  31.  * a superset of NFSv2 errors (with the exception of NFSERR_WFLUSH which
  32.  * no-one uses anyway), so we can happily mix code as long as we make sure
  33.  * no NFSv3 errors are returned to NFSv2 clients.
  34.  * Error codes that have a `--' in the v2 column are not part of the
  35.  * standard, but seem to be widely used nevertheless.
  36.  */
  37.  enum nfs_stat {
  38. NFS_OK = 0, /* v2 v3 */
  39. NFSERR_PERM = 1, /* v2 v3 */
  40. NFSERR_NOENT = 2, /* v2 v3 */
  41. NFSERR_IO = 5, /* v2 v3 */
  42. NFSERR_NXIO = 6, /* v2 v3 */
  43. NFSERR_EAGAIN = 11, /* v2 v3 */
  44. NFSERR_ACCES = 13, /* v2 v3 */
  45. NFSERR_EXIST = 17, /* v2 v3 */
  46. NFSERR_XDEV = 18, /*    v3 */
  47. NFSERR_NODEV = 19, /* v2 v3 */
  48. NFSERR_NOTDIR = 20, /* v2 v3 */
  49. NFSERR_ISDIR = 21, /* v2 v3 */
  50. NFSERR_INVAL = 22, /* v2 v3 that Sun forgot */
  51. NFSERR_FBIG = 27, /* v2 v3 */
  52. NFSERR_NOSPC = 28, /* v2 v3 */
  53. NFSERR_ROFS = 30, /* v2 v3 */
  54. NFSERR_MLINK = 31, /*    v3 */
  55. NFSERR_OPNOTSUPP = 45, /* v2 v3 */
  56. NFSERR_NAMETOOLONG = 63, /* v2 v3 */
  57. NFSERR_NOTEMPTY = 66, /* v2 v3 */
  58. NFSERR_DQUOT = 69, /* v2 v3 */
  59. NFSERR_STALE = 70, /* v2 v3 */
  60. NFSERR_REMOTE = 71, /* v2 v3 */
  61. NFSERR_WFLUSH = 99, /* v2    */
  62. NFSERR_BADHANDLE = 10001, /*    v3 */
  63. NFSERR_NOT_SYNC = 10002, /*    v3 */
  64. NFSERR_BAD_COOKIE = 10003, /*    v3 */
  65. NFSERR_NOTSUPP = 10004, /*    v3 */
  66. NFSERR_TOOSMALL = 10005, /*    v3 */
  67. NFSERR_SERVERFAULT = 10006, /*    v3 */
  68. NFSERR_BADTYPE = 10007, /*    v3 */
  69. NFSERR_JUKEBOX = 10008 /*    v3 */
  70.  };
  71.  
  72. /* NFSv2 file types - beware, these are not the same in NFSv3 */
  73. enum nfs_ftype {
  74. NFNON = 0,
  75. NFREG = 1,
  76. NFDIR = 2,
  77. NFBLK = 3,
  78. NFCHR = 4,
  79. NFLNK = 5,
  80. NFSOCK = 6,
  81. NFBAD = 7,
  82. NFFIFO = 8
  83. };
  84. #if defined(__KERNEL__)
  85. /*
  86.  * This is the kernel NFS client file handle representation
  87.  */
  88. #define NFS_MAXFHSIZE 64
  89. struct nfs_fh {
  90. unsigned short size;
  91. unsigned char data[NFS_MAXFHSIZE];
  92. };
  93. /*
  94.  * This is really a general kernel constant, but since nothing like
  95.  * this is defined in the kernel headers, I have to do it here.
  96.  */
  97. #define NFS_OFFSET_MAX ((__s64)((~(__u64)0) >> 1))
  98. enum nfs3_stable_how {
  99. NFS_UNSTABLE = 0,
  100. NFS_DATA_SYNC = 1,
  101. NFS_FILE_SYNC = 2
  102. };
  103. #endif /* __KERNEL__ */
  104. #endif /* _LINUX_NFS_H */