3178c898d60cabe7f0a7592009bc1674ad297163
[gd/samba-autobuild/.git] / source4 / libcli / raw / smb.h
1 /* 
2    Unix SMB/CIFS implementation.
3    SMB parameters and setup, plus a whole lot more.
4    
5    Copyright (C) Andrew Tridgell              1992-2000
6    Copyright (C) John H Terpstra              1996-2002
7    Copyright (C) Luke Kenneth Casson Leighton 1996-2000
8    Copyright (C) Paul Ashton                  1998-2000
9    Copyright (C) Simo Sorce                   2001-2002
10    Copyright (C) Martin Pool                  2002
11    
12    This program is free software; you can redistribute it and/or modify
13    it under the terms of the GNU General Public License as published by
14    the Free Software Foundation; either version 3 of the License, or
15    (at your option) any later version.
16    
17    This program is distributed in the hope that it will be useful,
18    but WITHOUT ANY WARRANTY; without even the implied warranty of
19    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20    GNU General Public License for more details.
21    
22    You should have received a copy of the GNU General Public License
23    along with this program.  If not, see <http://www.gnu.org/licenses/>.
24 */
25
26 #ifndef _RAW_SMB_H
27 #define _RAW_SMB_H
28
29 /* deny modes */
30 #define DENY_DOS 0
31 #define DENY_ALL 1
32 #define DENY_WRITE 2
33 #define DENY_READ 3
34 #define DENY_NONE 4
35 #define DENY_FCB 7
36
37 /* open modes */
38 #define DOS_OPEN_RDONLY 0
39 #define DOS_OPEN_WRONLY 1
40 #define DOS_OPEN_RDWR 2
41 #define DOS_OPEN_FCB 0xF
42
43
44 /**********************************/
45 /* SMBopen field definitions      */
46 #define OPEN_FLAGS_DENY_MASK  0x70
47 #define OPEN_FLAGS_DENY_DOS   0x00
48 #define OPEN_FLAGS_DENY_ALL   0x10
49 #define OPEN_FLAGS_DENY_WRITE 0x20
50 #define OPEN_FLAGS_DENY_READ  0x30
51 #define OPEN_FLAGS_DENY_NONE  0x40
52
53 #define OPEN_FLAGS_MODE_MASK  0x0F
54 #define OPEN_FLAGS_OPEN_READ     0
55 #define OPEN_FLAGS_OPEN_WRITE    1
56 #define OPEN_FLAGS_OPEN_RDWR     2
57 #define OPEN_FLAGS_FCB        0xFF
58
59
60 /**********************************/
61 /* SMBopenX field definitions     */
62
63 /* OpenX Flags field. */
64 #define OPENX_FLAGS_ADDITIONAL_INFO      0x01
65 #define OPENX_FLAGS_REQUEST_OPLOCK       0x02
66 #define OPENX_FLAGS_REQUEST_BATCH_OPLOCK 0x04
67 #define OPENX_FLAGS_EA_LEN               0x08
68 #define OPENX_FLAGS_EXTENDED_RETURN      0x10
69
70 /* desired access (open_mode), split info 4 4-bit nibbles */
71 #define OPENX_MODE_ACCESS_MASK   0x000F
72 #define OPENX_MODE_ACCESS_READ   0x0000
73 #define OPENX_MODE_ACCESS_WRITE  0x0001
74 #define OPENX_MODE_ACCESS_RDWR   0x0002
75 #define OPENX_MODE_ACCESS_EXEC   0x0003
76 #define OPENX_MODE_ACCESS_FCB    0x000F
77
78 #define OPENX_MODE_DENY_SHIFT    4
79 #define OPENX_MODE_DENY_MASK     (0xF        << OPENX_MODE_DENY_SHIFT)
80 #define OPENX_MODE_DENY_DOS      (DENY_DOS   << OPENX_MODE_DENY_SHIFT)
81 #define OPENX_MODE_DENY_ALL      (DENY_ALL   << OPENX_MODE_DENY_SHIFT)
82 #define OPENX_MODE_DENY_WRITE    (DENY_WRITE << OPENX_MODE_DENY_SHIFT)
83 #define OPENX_MODE_DENY_READ     (DENY_READ  << OPENX_MODE_DENY_SHIFT)
84 #define OPENX_MODE_DENY_NONE     (DENY_NONE  << OPENX_MODE_DENY_SHIFT)
85 #define OPENX_MODE_DENY_FCB      (0xF        << OPENX_MODE_DENY_SHIFT)
86
87 #define OPENX_MODE_LOCALITY_MASK 0x0F00 /* what does this do? */
88
89 #define OPENX_MODE_NO_CACHE      0x1000
90 #define OPENX_MODE_WRITE_THRU    0x4000
91
92 /* open function values */
93 #define OPENX_OPEN_FUNC_MASK  0x3
94 #define OPENX_OPEN_FUNC_FAIL  0x0
95 #define OPENX_OPEN_FUNC_OPEN  0x1
96 #define OPENX_OPEN_FUNC_TRUNC 0x2
97
98 /* The above can be OR'ed with... */
99 #define OPENX_OPEN_FUNC_CREATE 0x10
100
101 /* openx action in reply */
102 #define OPENX_ACTION_EXISTED    1
103 #define OPENX_ACTION_CREATED    2
104 #define OPENX_ACTION_TRUNCATED  3
105
106
107 /**********************************/
108 /* SMBntcreateX field definitions */
109
110 /* ntcreatex flags field. */
111 #define NTCREATEX_FLAGS_REQUEST_OPLOCK       0x02
112 #define NTCREATEX_FLAGS_REQUEST_BATCH_OPLOCK 0x04
113 #define NTCREATEX_FLAGS_OPEN_DIRECTORY       0x08 /* TODO: opens parent? we need
114                                                      a test suite for this */
115 #define NTCREATEX_FLAGS_EXTENDED             0x10
116
117 /* the ntcreatex access_mask field 
118    this is split into 4 pieces
119    AAAABBBBCCCCCCCCDDDDDDDDDDDDDDDD
120    A -> GENERIC_RIGHT_*
121    B -> SEC_RIGHT_*
122    C -> STD_RIGHT_*
123    D -> SA_RIGHT_*
124    
125    which set of SA_RIGHT_* bits is applicable depends on the type
126    of object.
127 */
128
129
130
131 /* ntcreatex share_access field */
132 #define NTCREATEX_SHARE_ACCESS_NONE   0
133 #define NTCREATEX_SHARE_ACCESS_READ   1
134 #define NTCREATEX_SHARE_ACCESS_WRITE  2
135 #define NTCREATEX_SHARE_ACCESS_DELETE 4
136 #define NTCREATEX_SHARE_ACCESS_MASK   7
137
138 /* ntcreatex open_disposition field */
139 #define NTCREATEX_DISP_SUPERSEDE 0     /* supersede existing file (if it exists) */
140 #define NTCREATEX_DISP_OPEN 1          /* if file exists open it, else fail */
141 #define NTCREATEX_DISP_CREATE 2        /* if file exists fail, else create it */
142 #define NTCREATEX_DISP_OPEN_IF 3       /* if file exists open it, else create it */
143 #define NTCREATEX_DISP_OVERWRITE 4     /* if exists overwrite, else fail */
144 #define NTCREATEX_DISP_OVERWRITE_IF 5  /* if exists overwrite, else create */
145
146 /* ntcreatex create_options field */
147 #define NTCREATEX_OPTIONS_DIRECTORY                 0x0001
148 #define NTCREATEX_OPTIONS_WRITE_THROUGH             0x0002
149 #define NTCREATEX_OPTIONS_SEQUENTIAL_ONLY           0x0004
150 #define NTCREATEX_OPTIONS_NO_INTERMEDIATE_BUFFERING 0x0008
151 #define NTCREATEX_OPTIONS_SYNC_ALERT                0x0010
152 #define NTCREATEX_OPTIONS_ASYNC_ALERT               0x0020
153 #define NTCREATEX_OPTIONS_NON_DIRECTORY_FILE        0x0040
154 #define NTCREATEX_OPTIONS_TREE_CONNECTION           0x0080
155 #define NTCREATEX_OPTIONS_COMPLETE_IF_OPLOCKED      0x0100
156 #define NTCREATEX_OPTIONS_NO_EA_KNOWLEDGE           0x0200
157 #define NTCREATEX_OPTIONS_OPEN_FOR_RECOVERY         0x0400
158 #define NTCREATEX_OPTIONS_RANDOM_ACCESS             0x0800
159 #define NTCREATEX_OPTIONS_DELETE_ON_CLOSE           0x1000
160 #define NTCREATEX_OPTIONS_OPEN_BY_FILE_ID           0x2000
161 #define NTCREATEX_OPTIONS_BACKUP_INTENT             0x4000
162 #define NTCREATEX_OPTIONS_NO_COMPRESSION            0x8000
163 /* Must be ignored by the server, per MS-SMB 2.2.8 */
164 #define NTCREATEX_OPTIONS_OPFILTER              0x00100000
165 #define NTCREATEX_OPTIONS_REPARSE_POINT         0x00200000
166 /* Don't pull this file off tape in a HSM system */
167 #define NTCREATEX_OPTIONS_NO_RECALL             0x00400000
168 /* Must be ignored by the server, per MS-SMB 2.2.8 */
169 #define NTCREATEX_OPTIONS_FREE_SPACE_QUERY      0x00800000
170
171 #define NTCREATEX_OPTIONS_MUST_IGNORE_MASK      (NTCREATEX_OPTIONS_TREE_CONNECTION | \
172                                                  NTCREATEX_OPTIONS_OPEN_FOR_RECOVERY | \
173                                                  NTCREATEX_OPTIONS_FREE_SPACE_QUERY | \
174                                                  0x000F0000)
175
176 #define NTCREATEX_OPTIONS_NOT_SUPPORTED_MASK    (NTCREATEX_OPTIONS_OPEN_BY_FILE_ID)
177
178 #define NTCREATEX_OPTIONS_INVALID_PARAM_MASK    (NTCREATEX_OPTIONS_OPFILTER | \
179                                                  NTCREATEX_OPTIONS_SYNC_ALERT | \
180                                                  NTCREATEX_OPTIONS_ASYNC_ALERT | \
181                                                  0xFF000000)
182
183 /*
184  * private_flags field in ntcreatex
185  * This values have different meaning for some ntvfs backends.
186  */
187 #define NTCREATEX_OPTIONS_PRIVATE_DENY_DOS      0x0001
188 #define NTCREATEX_OPTIONS_PRIVATE_DENY_FCB      0x0002
189
190
191 /* ntcreatex impersonation field */
192 #define NTCREATEX_IMPERSONATION_ANONYMOUS      0
193 #define NTCREATEX_IMPERSONATION_IDENTIFICATION 1
194 #define NTCREATEX_IMPERSONATION_IMPERSONATION  2
195 #define NTCREATEX_IMPERSONATION_DELEGATION     3
196
197 /* ntcreatex security flags bit field */
198 #define NTCREATEX_SECURITY_DYNAMIC             1
199 #define NTCREATEX_SECURITY_ALL                 2
200
201 /* ntcreatex create_action in reply */
202 #define NTCREATEX_ACTION_EXISTED     1
203 #define NTCREATEX_ACTION_CREATED     2
204 #define NTCREATEX_ACTION_TRUNCATED   3
205 /* the value 5 can also be returned when you try to create a directory with
206    incorrect parameters - what does it mean? maybe created temporary file? */
207 #define NTCREATEX_ACTION_UNKNOWN 5
208
209 /* types of buffers in core SMB protocol */
210 #define SMB_DATA_BLOCK 0x1
211 #define SMB_ASCII4     0x4
212
213
214 /* flag defines. CIFS spec 3.1.1 */
215 #define FLAG_SUPPORT_LOCKREAD       0x01
216 #define FLAG_CLIENT_BUF_AVAIL       0x02
217 #define FLAG_RESERVED               0x04
218 #define FLAG_CASELESS_PATHNAMES     0x08
219 #define FLAG_CANONICAL_PATHNAMES    0x10
220 #define FLAG_REQUEST_OPLOCK         0x20
221 #define FLAG_REQUEST_BATCH_OPLOCK   0x40
222 #define FLAG_REPLY                  0x80
223
224 /* the complete */
225 #define SMBmkdir      0x00   /* create directory */
226 #define SMBrmdir      0x01   /* delete directory */
227 #define SMBopen       0x02   /* open file */
228 #define SMBcreate     0x03   /* create file */
229 #define SMBclose      0x04   /* close file */
230 #define SMBflush      0x05   /* flush file */
231 #define SMBunlink     0x06   /* delete file */
232 #define SMBmv         0x07   /* rename file */
233 #define SMBgetatr     0x08   /* get file attributes */
234 #define SMBsetatr     0x09   /* set file attributes */
235 #define SMBread       0x0A   /* read from file */
236 #define SMBwrite      0x0B   /* write to file */
237 #define SMBlock       0x0C   /* lock byte range */
238 #define SMBunlock     0x0D   /* unlock byte range */
239 #define SMBctemp      0x0E   /* create temporary file */
240 #define SMBmknew      0x0F   /* make new file */
241 #define SMBcheckpath  0x10   /* check directory path */
242 #define SMBexit       0x11   /* process exit */
243 #define SMBlseek      0x12   /* seek */
244 #define SMBtcon       0x70   /* tree connect */
245 #define SMBtconX      0x75   /* tree connect and X*/
246 #define SMBtdis       0x71   /* tree disconnect */
247 #define SMBnegprot    0x72   /* negotiate protocol */
248 #define SMBdskattr    0x80   /* get disk attributes */
249 #define SMBsearch     0x81   /* search directory */
250 #define SMBsplopen    0xC0   /* open print spool file */
251 #define SMBsplwr      0xC1   /* write to print spool file */
252 #define SMBsplclose   0xC2   /* close print spool file */
253 #define SMBsplretq    0xC3   /* return print queue */
254 #define SMBsends      0xD0   /* send single block message */
255 #define SMBsendb      0xD1   /* send broadcast message */
256 #define SMBfwdname    0xD2   /* forward user name */
257 #define SMBcancelf    0xD3   /* cancel forward */
258 #define SMBgetmac     0xD4   /* get machine name */
259 #define SMBsendstrt   0xD5   /* send start of multi-block message */
260 #define SMBsendend    0xD6   /* send end of multi-block message */
261 #define SMBsendtxt    0xD7   /* send text of multi-block message */
262
263 /* Core+ protocol */
264 #define SMBlockread       0x13   /* Lock a range and read */
265 #define SMBwriteunlock 0x14 /* write then range then unlock it */
266 #define SMBreadbraw   0x1a  /* read a block of data with no smb header */
267 #define SMBwritebraw  0x1d  /* write a block of data with no smb header */
268 #define SMBwritec     0x20  /* secondary write request */
269 #define SMBwriteclose 0x2c  /* write a file then close it */
270
271 /* dos extended protocol */
272 #define SMBreadBraw      0x1A   /* read block raw */
273 #define SMBreadBmpx      0x1B   /* read block multiplexed */
274 #define SMBreadBs        0x1C   /* read block (secondary response) */
275 #define SMBwriteBraw     0x1D   /* write block raw */
276 #define SMBwriteBmpx     0x1E   /* write block multiplexed */
277 #define SMBwriteBs       0x1F   /* write block (secondary request) */
278 #define SMBwriteC        0x20   /* write complete response */
279 #define SMBsetattrE      0x22   /* set file attributes expanded */
280 #define SMBgetattrE      0x23   /* get file attributes expanded */
281 #define SMBlockingX      0x24   /* lock/unlock byte ranges and X */
282 #define SMBtrans         0x25   /* transaction - name, bytes in/out */
283 #define SMBtranss        0x26   /* transaction (secondary request/response) */
284 #define SMBioctl         0x27   /* IOCTL */
285 #define SMBioctls        0x28   /* IOCTL  (secondary request/response) */
286 #define SMBcopy          0x29   /* copy */
287 #define SMBmove          0x2A   /* move */
288 #define SMBecho          0x2B   /* echo */
289 #define SMBopenX         0x2D   /* open and X */
290 #define SMBreadX         0x2E   /* read and X */
291 #define SMBwriteX        0x2F   /* write and X */
292 #define SMBsesssetupX    0x73   /* Session Set Up & X (including User Logon) */
293 #define SMBffirst        0x82   /* find first */
294 #define SMBfunique       0x83   /* find unique */
295 #define SMBfclose        0x84   /* find close */
296 #define SMBinvalid       0xFE   /* invalid command */
297
298 /* Extended 2.0 protocol */
299 #define SMBtrans2        0x32   /* TRANS2 protocol set */
300 #define SMBtranss2       0x33   /* TRANS2 protocol set, secondary command */
301 #define SMBfindclose     0x34   /* Terminate a TRANSACT2_FINDFIRST */
302 #define SMBfindnclose    0x35   /* Terminate a TRANSACT2_FINDNOTIFYFIRST */
303 #define SMBulogoffX      0x74   /* user logoff */
304
305 /* NT SMB extensions. */
306 #define SMBnttrans       0xA0   /* NT transact */
307 #define SMBnttranss      0xA1   /* NT transact secondary */
308 #define SMBntcreateX     0xA2   /* NT create and X */
309 #define SMBntcancel      0xA4   /* NT cancel */
310 #define SMBntrename      0xA5   /* NT rename */
311
312 /* used to indicate end of chain */
313 #define SMB_CHAIN_NONE   0xFF
314
315 /* These are the trans subcommands */
316 #define TRANSACT_SETNAMEDPIPEHANDLESTATE  0x01 
317 #define TRANSACT_DCERPCCMD                0x26
318 #define TRANSACT_WAITNAMEDPIPEHANDLESTATE 0x53
319
320 /* These are the NT transact sub commands. */
321 #define NT_TRANSACT_CREATE                1
322 #define NT_TRANSACT_IOCTL                 2
323 #define NT_TRANSACT_SET_SECURITY_DESC     3
324 #define NT_TRANSACT_NOTIFY_CHANGE         4
325 #define NT_TRANSACT_RENAME                5
326 #define NT_TRANSACT_QUERY_SECURITY_DESC   6
327
328 /* this is used on a TConX. I'm not sure the name is very helpful though */
329 #define SMB_SUPPORT_SEARCH_BITS        0x0001
330 #define SMB_SHARE_IN_DFS               0x0002
331
332 /* Named pipe write mode flags. Used in writeX calls. */
333 #define PIPE_RAW_MODE 0x4
334 #define PIPE_START_MESSAGE 0x8
335
336 /* the desired access to use when opening a pipe */
337 #define DESIRED_ACCESS_PIPE 0x2019f
338  
339
340 /* Flags - combined with attributes. */
341 #define FILE_FLAG_WRITE_THROUGH    0x80000000L
342 #define FILE_FLAG_NO_BUFFERING     0x20000000L
343 #define FILE_FLAG_RANDOM_ACCESS    0x10000000L
344 #define FILE_FLAG_SEQUENTIAL_SCAN  0x08000000L
345 #define FILE_FLAG_DELETE_ON_CLOSE  0x04000000L
346 #define FILE_FLAG_BACKUP_SEMANTICS 0x02000000L /* only if backup/restore privilege? */
347 #define FILE_FLAG_POSIX_SEMANTICS  0x01000000L
348
349 /* Responses when opening a file. */
350 #define FILE_WAS_SUPERSEDED 0
351 #define FILE_WAS_OPENED 1
352 #define FILE_WAS_CREATED 2
353 #define FILE_WAS_OVERWRITTEN 3
354
355 /* Flag for NT transact rename call. */
356 #define RENAME_REPLACE_IF_EXISTS 1
357
358 /* flags for SMBntrename call */
359 #define RENAME_FLAG_MOVE_CLUSTER_INFORMATION 0x102 /* ???? */
360 #define RENAME_FLAG_HARD_LINK                0x103
361 #define RENAME_FLAG_RENAME                   0x104
362 #define RENAME_FLAG_COPY                     0x105
363
364 /* Filesystem Attributes. */
365 #define FILE_CASE_SENSITIVE_SEARCH 0x01
366 #define FILE_CASE_PRESERVED_NAMES 0x02
367 #define FILE_UNICODE_ON_DISK 0x04
368 /* According to cifs9f, this is 4, not 8 */
369 /* Acconding to testing, this actually sets the security attribute! */
370 #define FILE_PERSISTENT_ACLS 0x08
371 /* These entries added from cifs9f --tsb */
372 #define FILE_FILE_COMPRESSION 0x10
373 #define FILE_VOLUME_QUOTAS 0x20
374 /* I think this is wrong. JRA #define FILE_DEVICE_IS_MOUNTED 0x20 */
375 #define FILE_VOLUME_SPARSE_FILE 0x40
376 #define FILE_VOLUME_IS_COMPRESSED 0x8000
377
378 /* ChangeNotify flags. */
379 #define FILE_NOTIFY_CHANGE_FILE_NAME    0x00000001
380 #define FILE_NOTIFY_CHANGE_DIR_NAME     0x00000002
381 #define FILE_NOTIFY_CHANGE_ATTRIBUTES   0x00000004
382 #define FILE_NOTIFY_CHANGE_SIZE         0x00000008
383 #define FILE_NOTIFY_CHANGE_LAST_WRITE   0x00000010
384 #define FILE_NOTIFY_CHANGE_LAST_ACCESS  0x00000020
385 #define FILE_NOTIFY_CHANGE_CREATION     0x00000040
386 #define FILE_NOTIFY_CHANGE_EA           0x00000080
387 #define FILE_NOTIFY_CHANGE_SECURITY     0x00000100
388 #define FILE_NOTIFY_CHANGE_STREAM_NAME  0x00000200
389 #define FILE_NOTIFY_CHANGE_STREAM_SIZE  0x00000400
390 #define FILE_NOTIFY_CHANGE_STREAM_WRITE 0x00000800
391
392 #define FILE_NOTIFY_CHANGE_NAME \
393         (FILE_NOTIFY_CHANGE_FILE_NAME|FILE_NOTIFY_CHANGE_DIR_NAME)
394
395 #define FILE_NOTIFY_CHANGE_ALL \
396         (FILE_NOTIFY_CHANGE_FILE_NAME   | FILE_NOTIFY_CHANGE_DIR_NAME | \
397          FILE_NOTIFY_CHANGE_ATTRIBUTES  | FILE_NOTIFY_CHANGE_SIZE | \
398          FILE_NOTIFY_CHANGE_LAST_WRITE  | FILE_NOTIFY_CHANGE_LAST_ACCESS | \
399          FILE_NOTIFY_CHANGE_CREATION    | FILE_NOTIFY_CHANGE_EA | \
400          FILE_NOTIFY_CHANGE_SECURITY    | FILE_NOTIFY_CHANGE_STREAM_NAME | \
401          FILE_NOTIFY_CHANGE_STREAM_SIZE | FILE_NOTIFY_CHANGE_STREAM_WRITE)
402
403 /* change notify action results */
404 #define NOTIFY_ACTION_ADDED 1
405 #define NOTIFY_ACTION_REMOVED 2
406 #define NOTIFY_ACTION_MODIFIED 3
407 #define NOTIFY_ACTION_OLD_NAME 4
408 #define NOTIFY_ACTION_NEW_NAME 5
409 #define NOTIFY_ACTION_ADDED_STREAM 6
410 #define NOTIFY_ACTION_REMOVED_STREAM 7
411 #define NOTIFY_ACTION_MODIFIED_STREAM 8
412
413 /* seek modes for smb_seek */
414 #define SEEK_MODE_START   0
415 #define SEEK_MODE_CURRENT 1
416 #define SEEK_MODE_END     2
417
418 /* where to find the base of the SMB packet proper */
419 /* REWRITE TODO: smb_base needs to be removed */
420 #define smb_base(buf) (((const char *)(buf))+4)
421
422 /* we don't allow server strings to be longer than 48 characters as
423    otherwise NT will not honour the announce packets */
424 #define MAX_SERVER_STRING_LENGTH 48
425
426 /* This was set by JHT in liaison with Jeremy Allison early 1997
427  * History:
428  * Version 4.0 - never made public
429  * Version 4.10 - New to 1.9.16p2, lost in space 1.9.16p3 to 1.9.16p9
430  *              - Reappeared in 1.9.16p11 with fixed smbd services
431  * Version 4.20 - To indicate that nmbd and browsing now works better
432  * Version 4.50 - Set at release of samba-2.2.0 by JHT
433  *
434  *  Note: In the presence of NT4.X do not set above 4.9
435  *        Setting this above 4.9 can have undesired side-effects.
436  *        This may change again in Samba-3.0 after further testing. JHT
437  */
438  
439 #define DEFAULT_MAJOR_VERSION 0x04
440 #define DEFAULT_MINOR_VERSION 0x09
441
442 /* Browser Election Values */
443 #define BROWSER_ELECTION_VERSION        0x010f
444 #define BROWSER_CONSTANT        0xaa55
445
446 /* Sercurity mode bits. */
447 #define NEGOTIATE_SECURITY_USER_LEVEL           0x01
448 #define NEGOTIATE_SECURITY_CHALLENGE_RESPONSE   0x02
449 #define NEGOTIATE_SECURITY_SIGNATURES_ENABLED   0x04
450 #define NEGOTIATE_SECURITY_SIGNATURES_REQUIRED  0x08
451
452 /* CIFS protocol capabilities */
453 #define CAP_RAW_MODE            0x00000001
454 #define CAP_MPX_MODE            0x00000002
455 #define CAP_UNICODE             0x00000004
456 #define CAP_LARGE_FILES         0x00000008
457 #define CAP_NT_SMBS             0x00000010
458 #define CAP_RPC_REMOTE_APIS     0x00000020
459 #define CAP_STATUS32            0x00000040
460 #define CAP_LEVEL_II_OPLOCKS    0x00000080
461 #define CAP_LOCK_AND_READ       0x00000100
462 #define CAP_NT_FIND             0x00000200
463 #define CAP_DFS                 0x00001000
464 #define CAP_W2K_SMBS            0x00002000
465 #define CAP_LARGE_READX         0x00004000
466 #define CAP_LARGE_WRITEX        0x00008000
467 #define CAP_UNIX                0x00800000 /* Capabilities for UNIX extensions. Created by HP. */
468 #define CAP_EXTENDED_SECURITY   0x80000000
469
470 /*
471  * Global value meaning that the smb_uid field should be
472  * ingored (in share level security and protocol level == CORE)
473  */
474
475 #define UID_FIELD_INVALID 0
476
477 /* Lock types. */
478 #define LOCKING_ANDX_EXCLUSIVE_LOCK  0x00
479 #define LOCKING_ANDX_SHARED_LOCK     0x01
480 #define LOCKING_ANDX_OPLOCK_RELEASE  0x02
481 #define LOCKING_ANDX_CHANGE_LOCKTYPE 0x04
482 #define LOCKING_ANDX_CANCEL_LOCK     0x08
483 #define LOCKING_ANDX_LARGE_FILES     0x10
484
485 /*
486  * Bits we test with.
487  */
488
489 #define OPLOCK_NONE      0
490 #define OPLOCK_EXCLUSIVE 1
491 #define OPLOCK_BATCH     2
492 #define OPLOCK_LEVEL_II  4
493
494 #define CORE_OPLOCK_GRANTED (1<<5)
495 #define EXTENDED_OPLOCK_GRANTED (1<<15)
496
497 /*
498  * Return values for oplock types.
499  */
500
501 #define NO_OPLOCK_RETURN 0
502 #define EXCLUSIVE_OPLOCK_RETURN 1
503 #define BATCH_OPLOCK_RETURN 2
504 #define LEVEL_II_OPLOCK_RETURN 3
505
506 /* oplock levels sent in oplock break */
507 #define OPLOCK_BREAK_TO_NONE     0
508 #define OPLOCK_BREAK_TO_LEVEL_II 1
509
510
511 #define CMD_REPLY 0x8000
512
513 /* The maximum length of a trust account password.
514    Used when we randomly create it, 15 char passwords
515    exceed NT4's max password length */
516
517 #define DEFAULT_TRUST_ACCOUNT_PASSWORD_LENGTH 14
518
519
520 /*
521   filesystem attribute bits
522 */
523 #define FS_ATTR_CASE_SENSITIVE_SEARCH             0x00000001
524 #define FS_ATTR_CASE_PRESERVED_NAMES              0x00000002
525 #define FS_ATTR_UNICODE_ON_DISK                   0x00000004
526 #define FS_ATTR_PERSISTANT_ACLS                   0x00000008
527 #define FS_ATTR_COMPRESSION                       0x00000010
528 #define FS_ATTR_QUOTAS                            0x00000020
529 #define FS_ATTR_SPARSE_FILES                      0x00000040
530 #define FS_ATTR_REPARSE_POINTS                    0x00000080
531 #define FS_ATTR_REMOTE_STORAGE                    0x00000100
532 #define FS_ATTR_LFN_SUPPORT                       0x00004000
533 #define FS_ATTR_IS_COMPRESSED                     0x00008000
534 #define FS_ATTR_OBJECT_IDS                        0x00010000
535 #define FS_ATTR_ENCRYPTION                        0x00020000
536 #define FS_ATTR_NAMED_STREAMS                     0x00040000
537
538 #include "source4/libcli/raw/trans2.h"
539 #include "libcli/raw/interfaces.h"
540 #include "libcli/smb/smb_common.h"
541
542 #endif /* _RAW_SMB_H */