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

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _SMBNO_H_
  2. #define _SMBNO_H_
  3. /* these define the attribute byte as seen by DOS */
  4. #define aRONLY (1L<<0)
  5. #define aHIDDEN (1L<<1)
  6. #define aSYSTEM (1L<<2)
  7. #define aVOLID (1L<<3)
  8. #define aDIR (1L<<4)
  9. #define aARCH (1L<<5)
  10. /* error classes */
  11. #define SUCCESS 0  /* The request was successful. */
  12. #define ERRDOS 0x01 /*  Error is from the core DOS operating system set. */
  13. #define ERRSRV 0x02 /* Error is generated by the server network file manager.*/
  14. #define ERRHRD 0x03  /* Error is an hardware error. */
  15. #define ERRCMD 0xFF  /* Command was not in the "SMB" format. */
  16. /* SMB X/Open error codes for the ERRdos error class */
  17. #define ERRbadfunc 1            /* Invalid function (or system call) */
  18. #define ERRbadfile 2            /* File not found (pathname error) */
  19. #define ERRbadpath 3            /* Directory not found */
  20. #define ERRnofids 4             /* Too many open files */
  21. #define ERRnoaccess 5           /* Access denied */
  22. #define ERRbadfid 6             /* Invalid fid */
  23. #define ERRbadmcb 7             /* Memory control blocks destroyed */
  24. #define ERRnomem 8              /* Out of memory */
  25. #define ERRbadmem 9             /* Invalid memory block address */
  26. #define ERRbadenv 10            /* Invalid environment */
  27. #define ERRbadformat 11         /* Invalid format */
  28. #define ERRbadaccess 12         /* Invalid open mode */
  29. #define ERRbaddata 13           /* Invalid data (only from ioctl call) */
  30. #define ERRres 14               /* reserved */
  31. #define ERRbaddrive 15          /* Invalid drive */
  32. #define ERRremcd 16             /* Attempt to delete current directory */
  33. #define ERRdiffdevice 17        /* rename/move across different filesystems */
  34. #define ERRnofiles 18           /* no more files found in file search */
  35. #define ERRbadshare 32          /* Share mode on file conflict with open mode */
  36. #define ERRlock 33              /* Lock request conflicts with existing lock */
  37. #define ERRfilexists 80         /* File in operation already exists */
  38. #define ERRbadpipe 230          /* Named pipe invalid */
  39. #define ERRpipebusy 231         /* All instances of pipe are busy */
  40. #define ERRpipeclosing 232      /* named pipe close in progress */
  41. #define ERRnotconnected 233     /* No process on other end of named pipe */
  42. #define ERRmoredata 234         /* More data to be returned */
  43. #define ERROR_INVALID_PARAMETER  87
  44. #define ERROR_DISK_FULL 112
  45. #define ERROR_INVALID_NAME 123
  46. #define ERROR_DIR_NOT_EMPTY 145
  47. #define ERROR_NOT_LOCKED 158
  48. #define ERROR_ALREADY_EXISTS 183  /* see also 80 ? */
  49. #define ERROR_EAS_DIDNT_FIT 275 /* Extended attributes didn't fit */
  50. #define ERROR_EAS_NOT_SUPPORTED 282 /* Extended attributes not supported */
  51. /* Error codes for the ERRSRV class */
  52. #define ERRerror 1              /* Non specific error code */
  53. #define ERRbadpw 2              /* Bad password */
  54. #define ERRbadtype 3            /* reserved */
  55. #define ERRaccess 4          /* No permissions to do the requested operation */
  56. #define ERRinvnid 5             /* tid invalid */
  57. #define ERRinvnetname 6         /* Invalid servername */
  58. #define ERRinvdevice 7          /* Invalid device */
  59. #define ERRqfull 49             /* Print queue full */
  60. #define ERRqtoobig 50           /* Queued item too big */
  61. #define ERRinvpfid 52           /* Invalid print file in smb_fid */
  62. #define ERRsmbcmd 64            /* Unrecognised command */
  63. #define ERRsrverror 65          /* smb server internal error */
  64. #define ERRfilespecs 67         /* fid and pathname invalid combination */
  65. #define ERRbadlink 68           /* reserved */
  66. #define ERRbadpermits 69        /* Access specified for a file is not valid */
  67. #define ERRbadpid 70            /* reserved */
  68. #define ERRsetattrmode 71       /* attribute mode invalid */
  69. #define ERRpaused 81            /* Message server paused */
  70. #define ERRmsgoff 82            /* Not receiving messages */
  71. #define ERRnoroom 83            /* No room for message */
  72. #define ERRrmuns 87             /* too many remote usernames */
  73. #define ERRtimeout 88           /* operation timed out */
  74. #define ERRnoresource  89   /* No resources currently available for request. */
  75. #define ERRtoomanyuids 90       /* too many userids */
  76. #define ERRbaduid 91            /* bad userid */
  77. #define ERRuseMPX 250    /* temporarily unable to use raw mode, use MPX mode */
  78. #define ERRuseSTD 251    /* temporarily unable to use raw mode, use std.mode */
  79. #define ERRcontMPX 252          /* resume MPX mode */
  80. #define ERRbadPW                /* reserved */
  81. #define ERRnosupport 0xFFFF
  82. /* Error codes for the ERRHRD class */
  83. #define ERRnowrite 19           /* read only media */
  84. #define ERRbadunit 20           /* Unknown device */
  85. #define ERRnotready 21          /* Drive not ready */
  86. #define ERRbadcmd 22            /* Unknown command */
  87. #define ERRdata 23              /* Data (CRC) error */
  88. #define ERRbadreq 24            /* Bad request structure length */
  89. #define ERRseek 25
  90. #define ERRbadmedia 26
  91. #define ERRbadsector 27
  92. #define ERRnopaper 28
  93. #define ERRwrite 29             /* write fault */
  94. #define ERRread 30              /* read fault */
  95. #define ERRgeneral 31           /* General hardware failure */
  96. #define ERRwrongdisk 34
  97. #define ERRFCBunavail 35
  98. #define ERRsharebufexc 36       /* share buffer exceeded */
  99. #define ERRdiskfull 39
  100. /*
  101.  * Access modes when opening a file
  102.  */
  103. #define SMB_ACCMASK 0x0003
  104. #define SMB_O_RDONLY 0x0000
  105. #define SMB_O_WRONLY 0x0001
  106. #define SMB_O_RDWR 0x0002
  107. /* offsets into message for common items */
  108. #define smb_com 8
  109. #define smb_rcls 9
  110. #define smb_reh 10
  111. #define smb_err 11
  112. #define smb_flg 13
  113. #define smb_flg2 14
  114. #define smb_reb 13
  115. #define smb_tid 28
  116. #define smb_pid 30
  117. #define smb_uid 32
  118. #define smb_mid 34
  119. #define smb_wct 36
  120. #define smb_vwv 37
  121. #define smb_vwv0 37
  122. #define smb_vwv1 39
  123. #define smb_vwv2 41
  124. #define smb_vwv3 43
  125. #define smb_vwv4 45
  126. #define smb_vwv5 47
  127. #define smb_vwv6 49
  128. #define smb_vwv7 51
  129. #define smb_vwv8 53
  130. #define smb_vwv9 55
  131. #define smb_vwv10 57
  132. #define smb_vwv11 59
  133. #define smb_vwv12 61
  134. #define smb_vwv13 63
  135. #define smb_vwv14 65
  136. /* these are the trans2 sub fields for primary requests */
  137. #define smb_tpscnt smb_vwv0
  138. #define smb_tdscnt smb_vwv1
  139. #define smb_mprcnt smb_vwv2
  140. #define smb_mdrcnt smb_vwv3
  141. #define smb_msrcnt smb_vwv4
  142. #define smb_flags smb_vwv5
  143. #define smb_timeout smb_vwv6
  144. #define smb_pscnt smb_vwv9
  145. #define smb_psoff smb_vwv10
  146. #define smb_dscnt smb_vwv11
  147. #define smb_dsoff smb_vwv12
  148. #define smb_suwcnt smb_vwv13
  149. #define smb_setup smb_vwv14
  150. #define smb_setup0 smb_setup
  151. #define smb_setup1 (smb_setup+2)
  152. #define smb_setup2 (smb_setup+4)
  153. /* these are for the secondary requests */
  154. #define smb_spscnt smb_vwv2
  155. #define smb_spsoff smb_vwv3
  156. #define smb_spsdisp smb_vwv4
  157. #define smb_sdscnt smb_vwv5
  158. #define smb_sdsoff smb_vwv6
  159. #define smb_sdsdisp smb_vwv7
  160. #define smb_sfid smb_vwv8
  161. /* and these for responses */
  162. #define smb_tprcnt smb_vwv0
  163. #define smb_tdrcnt smb_vwv1
  164. #define smb_prcnt smb_vwv3
  165. #define smb_proff smb_vwv4
  166. #define smb_prdisp smb_vwv5
  167. #define smb_drcnt smb_vwv6
  168. #define smb_droff smb_vwv7
  169. #define smb_drdisp smb_vwv8
  170. /* the complete */
  171. #define SMBmkdir      0x00   /* create directory */
  172. #define SMBrmdir      0x01   /* delete directory */
  173. #define SMBopen       0x02   /* open file */
  174. #define SMBcreate     0x03   /* create file */
  175. #define SMBclose      0x04   /* close file */
  176. #define SMBflush      0x05   /* flush file */
  177. #define SMBunlink     0x06   /* delete file */
  178. #define SMBmv         0x07   /* rename file */
  179. #define SMBgetatr     0x08   /* get file attributes */
  180. #define SMBsetatr     0x09   /* set file attributes */
  181. #define SMBread       0x0A   /* read from file */
  182. #define SMBwrite      0x0B   /* write to file */
  183. #define SMBlock       0x0C   /* lock byte range */
  184. #define SMBunlock     0x0D   /* unlock byte range */
  185. #define SMBctemp      0x0E   /* create temporary file */
  186. #define SMBmknew      0x0F   /* make new file */
  187. #define SMBchkpth     0x10   /* check directory path */
  188. #define SMBexit       0x11   /* process exit */
  189. #define SMBlseek      0x12   /* seek */
  190. #define SMBtcon       0x70   /* tree connect */
  191. #define SMBtconX      0x75   /* tree connect and X*/
  192. #define SMBtdis       0x71   /* tree disconnect */
  193. #define SMBnegprot    0x72   /* negotiate protocol */
  194. #define SMBdskattr    0x80   /* get disk attributes */
  195. #define SMBsearch     0x81   /* search directory */
  196. #define SMBsplopen    0xC0   /* open print spool file */
  197. #define SMBsplwr      0xC1   /* write to print spool file */
  198. #define SMBsplclose   0xC2   /* close print spool file */
  199. #define SMBsplretq    0xC3   /* return print queue */
  200. #define SMBsends      0xD0   /* send single block message */
  201. #define SMBsendb      0xD1   /* send broadcast message */
  202. #define SMBfwdname    0xD2   /* forward user name */
  203. #define SMBcancelf    0xD3   /* cancel forward */
  204. #define SMBgetmac     0xD4   /* get machine name */
  205. #define SMBsendstrt   0xD5   /* send start of multi-block message */
  206. #define SMBsendend    0xD6   /* send end of multi-block message */
  207. #define SMBsendtxt    0xD7   /* send text of multi-block message */
  208. /* Core+ protocol */
  209. #define SMBlockread   0x13   /* Lock a range and read */
  210. #define SMBwriteunlock 0x14 /* Unlock a range then write */
  211. #define SMBreadbraw   0x1a  /* read a block of data with no smb header */
  212. #define SMBwritebraw  0x1d  /* write a block of data with no smb header */
  213. #define SMBwritec     0x20  /* secondary write request */
  214. #define SMBwriteclose 0x2c  /* write a file then close it */
  215. /* dos extended protocol */
  216. #define SMBreadBraw      0x1A   /* read block raw */
  217. #define SMBreadBmpx      0x1B   /* read block multiplexed */
  218. #define SMBreadBs        0x1C   /* read block (secondary response) */
  219. #define SMBwriteBraw     0x1D   /* write block raw */
  220. #define SMBwriteBmpx     0x1E   /* write block multiplexed */
  221. #define SMBwriteBs       0x1F   /* write block (secondary request) */
  222. #define SMBwriteC        0x20   /* write complete response */
  223. #define SMBsetattrE      0x22   /* set file attributes expanded */
  224. #define SMBgetattrE      0x23   /* get file attributes expanded */
  225. #define SMBlockingX      0x24   /* lock/unlock byte ranges and X */
  226. #define SMBtrans         0x25   /* transaction - name, bytes in/out */
  227. #define SMBtranss        0x26   /* transaction (secondary request/response) */
  228. #define SMBioctl         0x27   /* IOCTL */
  229. #define SMBioctls        0x28   /* IOCTL  (secondary request/response) */
  230. #define SMBcopy          0x29   /* copy */
  231. #define SMBmove          0x2A   /* move */
  232. #define SMBecho          0x2B   /* echo */
  233. #define SMBopenX         0x2D   /* open and X */
  234. #define SMBreadX         0x2E   /* read and X */
  235. #define SMBwriteX        0x2F   /* write and X */
  236. #define SMBsesssetupX    0x73   /* Session Set Up & X (including User Logon) */
  237. #define SMBtconX         0x75   /* tree connect and X */
  238. #define SMBffirst        0x82   /* find first */
  239. #define SMBfunique       0x83   /* find unique */
  240. #define SMBfclose        0x84   /* find close */
  241. #define SMBinvalid       0xFE   /* invalid command */
  242. /* Extended 2.0 protocol */
  243. #define SMBtrans2        0x32   /* TRANS2 protocol set */
  244. #define SMBtranss2       0x33   /* TRANS2 protocol set, secondary command */
  245. #define SMBfindclose     0x34   /* Terminate a TRANSACT2_FINDFIRST */
  246. #define SMBfindnclose    0x35   /* Terminate a TRANSACT2_FINDNOTIFYFIRST */
  247. #define SMBulogoffX      0x74   /* user logoff */
  248. /* these are the TRANS2 sub commands */
  249. #define TRANSACT2_OPEN          0
  250. #define TRANSACT2_FINDFIRST     1
  251. #define TRANSACT2_FINDNEXT      2
  252. #define TRANSACT2_QFSINFO       3
  253. #define TRANSACT2_SETFSINFO     4
  254. #define TRANSACT2_QPATHINFO     5
  255. #define TRANSACT2_SETPATHINFO   6
  256. #define TRANSACT2_QFILEINFO     7
  257. #define TRANSACT2_SETFILEINFO   8
  258. #define TRANSACT2_FSCTL         9
  259. #define TRANSACT2_IOCTL           10
  260. #define TRANSACT2_FINDNOTIFYFIRST 11
  261. #define TRANSACT2_FINDNOTIFYNEXT  12
  262. #define TRANSACT2_MKDIR           13
  263. /* Information Levels -  Shared? */
  264. #define SMB_INFO_STANDARD 1
  265. #define SMB_INFO_QUERY_EA_SIZE 2
  266. #define SMB_INFO_QUERY_EAS_FROM_LIST 3
  267. #define SMB_INFO_QUERY_ALL_EAS 4
  268. #define SMB_INFO_IS_NAME_VALID 6
  269. /* Information Levels -  TRANSACT2_FINDFIRST */
  270. #define SMB_FIND_FILE_DIRECTORY_INFO 0x101
  271. #define SMB_FIND_FILE_FULL_DIRECTORY_INFO 0x102
  272. #define SMB_FIND_FILE_NAMES_INFO 0x103
  273. #define SMB_FIND_FILE_BOTH_DIRECTORY_INFO 0x104
  274. /* Information Levels -  TRANSACT2_QPATHINFO */
  275. #define SMB_QUERY_FILE_BASIC_INFO 0x101
  276. #define SMB_QUERY_FILE_STANDARD_INFO 0x102
  277. #define SMB_QUERY_FILE_EA_INFO 0x103
  278. #define SMB_QUERY_FILE_NAME_INFO 0x104
  279. #define SMB_QUERY_FILE_ALL_INFO 0x107
  280. #define SMB_QUERY_FILE_ALT_NAME_INFO 0x108
  281. #define SMB_QUERY_FILE_STREAM_INFO 0x109
  282. #define SMB_QUERY_FILE_COMPRESSION_INFO 0x10b
  283. /* Information Levels - TRANSACT2_SETFILEINFO */
  284. #define SMB_SET_FILE_BASIC_INFO 0x101
  285. #define SMB_SET_FILE_DISPOSITION_INFO 0x102
  286. #define SMB_SET_FILE_ALLOCATION_INFO 0x103
  287. #define SMB_SET_FILE_END_OF_FILE_INFO 0x104
  288. /* smb_flg field flags */
  289. #define SMB_FLAGS_SUPPORT_LOCKREAD 0x01
  290. #define SMB_FLAGS_CLIENT_BUF_AVAIL 0x02
  291. #define SMB_FLAGS_RESERVED 0x04
  292. #define SMB_FLAGS_CASELESS_PATHNAMES 0x08
  293. #define SMB_FLAGS_CANONICAL_PATHNAMES 0x10
  294. #define SMB_FLAGS_REQUEST_OPLOCK 0x20
  295. #define SMB_FLAGS_REQUEST_BATCH_OPLOCK 0x40
  296. #define SMB_FLAGS_REPLY 0x80
  297. /* smb_flg2 field flags (samba-2.2.0/source/include/smb.h) */
  298. #define SMB_FLAGS2_LONG_PATH_COMPONENTS 0x0001
  299. #define SMB_FLAGS2_EXTENDED_ATTRIBUTES 0x0002
  300. #define SMB_FLAGS2_DFS_PATHNAMES 0x1000
  301. #define SMB_FLAGS2_READ_PERMIT_NO_EXECUTE 0x2000
  302. #define SMB_FLAGS2_32_BIT_ERROR_CODES 0x4000 
  303. #define SMB_FLAGS2_UNICODE_STRINGS 0x8000
  304. /*
  305.  * UNIX stuff  (from samba trans2.h)
  306.  */
  307. #define MIN_UNIX_INFO_LEVEL 0x200
  308. #define MAX_UNIX_INFO_LEVEL 0x2FF
  309. #define SMB_FIND_FILE_UNIX 0x202
  310. #define SMB_QUERY_FILE_UNIX_BASIC 0x200
  311. #define SMB_QUERY_FILE_UNIX_LINK 0x201
  312. #define SMB_QUERY_FILE_UNIX_HLINK 0x202
  313. #define SMB_SET_FILE_UNIX_BASIC 0x200
  314. #define SMB_SET_FILE_UNIX_LINK 0x201
  315. #define SMB_SET_FILE_UNIX_HLINK 0x203
  316. #define SMB_QUERY_CIFS_UNIX_INFO 0x200
  317. /* values which means "don't change it" */
  318. #define SMB_MODE_NO_CHANGE 0xFFFFFFFF
  319. #define SMB_UID_NO_CHANGE 0xFFFFFFFF
  320. #define SMB_GID_NO_CHANGE 0xFFFFFFFF
  321. #define SMB_TIME_NO_CHANGE 0xFFFFFFFFFFFFFFFFULL
  322. #define SMB_SIZE_NO_CHANGE 0xFFFFFFFFFFFFFFFFULL
  323. /* UNIX filetype mappings. */
  324. #define UNIX_TYPE_FILE 0
  325. #define UNIX_TYPE_DIR 1
  326. #define UNIX_TYPE_SYMLINK 2
  327. #define UNIX_TYPE_CHARDEV 3
  328. #define UNIX_TYPE_BLKDEV 4
  329. #define UNIX_TYPE_FIFO 5
  330. #define UNIX_TYPE_SOCKET 6
  331. #define UNIX_TYPE_UNKNOWN 0xFFFFFFFF
  332. #endif /* _SMBNO_H_ */