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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  ncp.h
  3.  *
  4.  *  Copyright (C) 1995 by Volker Lendecke
  5.  *  Modified for sparc by J.F. Chadima
  6.  *  Modified for __constant_ntoh by Frank A. Vorstenbosch
  7.  *
  8.  */
  9. #ifndef _LINUX_NCP_H
  10. #define _LINUX_NCP_H
  11. #include <linux/types.h>
  12. #define NCP_PTYPE                (0x11)
  13. #define NCP_PORT                 (0x0451)
  14. #define NCP_ALLOC_SLOT_REQUEST   (0x1111)
  15. #define NCP_REQUEST              (0x2222)
  16. #define NCP_DEALLOC_SLOT_REQUEST (0x5555)
  17. struct ncp_request_header {
  18. __u16 type __attribute__((packed));
  19. __u8 sequence __attribute__((packed));
  20. __u8 conn_low __attribute__((packed));
  21. __u8 task __attribute__((packed));
  22. __u8 conn_high __attribute__((packed));
  23. __u8 function __attribute__((packed));
  24. __u8 data[0] __attribute__((packed));
  25. };
  26. #define NCP_REPLY                (0x3333)
  27. #define NCP_WATCHDOG  (0x3E3E)
  28. #define NCP_POSITIVE_ACK         (0x9999)
  29. struct ncp_reply_header {
  30. __u16 type __attribute__((packed));
  31. __u8 sequence __attribute__((packed));
  32. __u8 conn_low __attribute__((packed));
  33. __u8 task __attribute__((packed));
  34. __u8 conn_high __attribute__((packed));
  35. __u8 completion_code __attribute__((packed));
  36. __u8 connection_state __attribute__((packed));
  37. __u8 data[0] __attribute__((packed));
  38. };
  39. #define NCP_VOLNAME_LEN (16)
  40. #define NCP_NUMBER_OF_VOLUMES (256)
  41. struct ncp_volume_info {
  42. __u32 total_blocks;
  43. __u32 free_blocks;
  44. __u32 purgeable_blocks;
  45. __u32 not_yet_purgeable_blocks;
  46. __u32 total_dir_entries;
  47. __u32 available_dir_entries;
  48. __u8 sectors_per_block;
  49. char volume_name[NCP_VOLNAME_LEN + 1];
  50. };
  51. #define AR_READ      (cpu_to_le16(1))
  52. #define AR_WRITE     (cpu_to_le16(2))
  53. #define AR_EXCLUSIVE (cpu_to_le16(0x20))
  54. #define NCP_FILE_ID_LEN 6
  55. /* Defines for Name Spaces */
  56. #define NW_NS_DOS     0
  57. #define NW_NS_MAC     1
  58. #define NW_NS_NFS     2
  59. #define NW_NS_FTAM    3
  60. #define NW_NS_OS2     4
  61. /*  Defines for ReturnInformationMask */
  62. #define RIM_NAME       (cpu_to_le32(1))
  63. #define RIM_SPACE_ALLOCATED   (cpu_to_le32(2))
  64. #define RIM_ATTRIBUTES       (cpu_to_le32(4))
  65. #define RIM_DATA_SIZE       (cpu_to_le32(8))
  66. #define RIM_TOTAL_SIZE       (cpu_to_le32(0x10))
  67. #define RIM_EXT_ATTR_INFO     (cpu_to_le32(0x20))
  68. #define RIM_ARCHIVE       (cpu_to_le32(0x40))
  69. #define RIM_MODIFY       (cpu_to_le32(0x80))
  70. #define RIM_CREATION       (cpu_to_le32(0x100))
  71. #define RIM_OWNING_NAMESPACE  (cpu_to_le32(0x200))
  72. #define RIM_DIRECTORY       (cpu_to_le32(0x400))
  73. #define RIM_RIGHTS       (cpu_to_le32(0x800))
  74. #define RIM_ALL        (cpu_to_le32(0xFFF))
  75. #define RIM_COMPRESSED_INFO   (cpu_to_le32(0x80000000))
  76. /* Defines for NSInfoBitMask */
  77. #define NSIBM_NFS_NAME 0x0001
  78. #define NSIBM_NFS_MODE 0x0002
  79. #define NSIBM_NFS_GID 0x0004
  80. #define NSIBM_NFS_NLINKS 0x0008
  81. #define NSIBM_NFS_RDEV 0x0010
  82. #define NSIBM_NFS_LINK 0x0020
  83. #define NSIBM_NFS_CREATED 0x0040
  84. #define NSIBM_NFS_UID 0x0080
  85. #define NSIBM_NFS_ACSFLAG 0x0100
  86. #define NSIBM_NFS_MYFLAG 0x0200
  87. /* open/create modes */
  88. #define OC_MODE_OPEN   0x01
  89. #define OC_MODE_TRUNCATE  0x02
  90. #define OC_MODE_REPLACE   0x02
  91. #define OC_MODE_CREATE   0x08
  92. /* open/create results */
  93. #define OC_ACTION_NONE    0x00
  94. #define OC_ACTION_OPEN    0x01
  95. #define OC_ACTION_CREATE   0x02
  96. #define OC_ACTION_TRUNCATE 0x04
  97. #define OC_ACTION_REPLACE  0x04
  98. /* access rights attributes */
  99. #ifndef AR_READ_ONLY
  100. #define AR_READ_ONLY    0x0001
  101. #define AR_WRITE_ONLY    0x0002
  102. #define AR_DENY_READ    0x0004
  103. #define AR_DENY_WRITE    0x0008
  104. #define AR_COMPATIBILITY   0x0010
  105. #define AR_WRITE_THROUGH   0x0040
  106. #define AR_OPEN_COMPRESSED 0x0100
  107. #endif
  108. struct nw_nfs_info {
  109. __u32 mode;
  110. __u32 rdev;
  111. };
  112. struct nw_info_struct {
  113. __u32 spaceAlloc __attribute__((packed));
  114. __le32 attributes __attribute__((packed));
  115. __u16 flags __attribute__((packed));
  116. __le32 dataStreamSize __attribute__((packed));
  117. __le32 totalStreamSize __attribute__((packed));
  118. __u16 numberOfStreams __attribute__((packed));
  119. __le16 creationTime __attribute__((packed));
  120. __le16 creationDate __attribute__((packed));
  121. __u32 creatorID __attribute__((packed));
  122. __le16 modifyTime __attribute__((packed));
  123. __le16 modifyDate __attribute__((packed));
  124. __u32 modifierID __attribute__((packed));
  125. __le16 lastAccessDate __attribute__((packed));
  126. __u16 archiveTime __attribute__((packed));
  127. __u16 archiveDate __attribute__((packed));
  128. __u32 archiverID __attribute__((packed));
  129. __u16 inheritedRightsMask __attribute__((packed));
  130. __le32 dirEntNum __attribute__((packed));
  131. __le32 DosDirNum __attribute__((packed));
  132. __u32 volNumber __attribute__((packed));
  133. __u32 EADataSize __attribute__((packed));
  134. __u32 EAKeyCount __attribute__((packed));
  135. __u32 EAKeySize __attribute__((packed));
  136. __u32 NSCreator __attribute__((packed));
  137. __u8 nameLen __attribute__((packed));
  138. __u8 entryName[256] __attribute__((packed));
  139. /* libncp may depend on there being nothing after entryName */
  140. #ifdef __KERNEL__
  141. struct nw_nfs_info nfs;
  142. #endif
  143. };
  144. /* modify mask - use with MODIFY_DOS_INFO structure */
  145. #define DM_ATTRIBUTES   (cpu_to_le32(0x02))
  146. #define DM_CREATE_DATE   (cpu_to_le32(0x04))
  147. #define DM_CREATE_TIME   (cpu_to_le32(0x08))
  148. #define DM_CREATOR_ID   (cpu_to_le32(0x10))
  149. #define DM_ARCHIVE_DATE    (cpu_to_le32(0x20))
  150. #define DM_ARCHIVE_TIME    (cpu_to_le32(0x40))
  151. #define DM_ARCHIVER_ID   (cpu_to_le32(0x80))
  152. #define DM_MODIFY_DATE   (cpu_to_le32(0x0100))
  153. #define DM_MODIFY_TIME   (cpu_to_le32(0x0200))
  154. #define DM_MODIFIER_ID   (cpu_to_le32(0x0400))
  155. #define DM_LAST_ACCESS_DATE   (cpu_to_le32(0x0800))
  156. #define DM_INHERITED_RIGHTS_MASK  (cpu_to_le32(0x1000))
  157. #define DM_MAXIMUM_SPACE   (cpu_to_le32(0x2000))
  158. struct nw_modify_dos_info {
  159. __le32 attributes __attribute__((packed));
  160. __le16 creationDate __attribute__((packed));
  161. __le16 creationTime __attribute__((packed));
  162. __u32 creatorID __attribute__((packed));
  163. __le16 modifyDate __attribute__((packed));
  164. __le16 modifyTime __attribute__((packed));
  165. __u32 modifierID __attribute__((packed));
  166. __u16 archiveDate __attribute__((packed));
  167. __u16 archiveTime __attribute__((packed));
  168. __u32 archiverID __attribute__((packed));
  169. __le16 lastAccessDate __attribute__((packed));
  170. __u16 inheritanceGrantMask __attribute__((packed));
  171. __u16 inheritanceRevokeMask __attribute__((packed));
  172. __u32 maximumSpace __attribute__((packed));
  173. };
  174. struct nw_search_sequence {
  175. __u8 volNumber __attribute__((packed));
  176. __u32 dirBase __attribute__((packed));
  177. __u32 sequence __attribute__((packed));
  178. };
  179. #endif /* _LINUX_NCP_H */