r23792: convert Samba4 to GPLv3
[ira/wip.git] / source / 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 _SMB_H
27 #define _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
137 /* ntcreatex open_disposition field */
138 #define NTCREATEX_DISP_SUPERSEDE 0     /* supersede existing file (if it exists) */
139 #define NTCREATEX_DISP_OPEN 1          /* if file exists open it, else fail */
140 #define NTCREATEX_DISP_CREATE 2        /* if file exists fail, else create it */
141 #define NTCREATEX_DISP_OPEN_IF 3       /* if file exists open it, else create it */
142 #define NTCREATEX_DISP_OVERWRITE 4     /* if exists overwrite, else fail */
143 #define NTCREATEX_DISP_OVERWRITE_IF 5  /* if exists overwrite, else create */
144
145 /* ntcreatex create_options field */
146 #define NTCREATEX_OPTIONS_DIRECTORY                0x0001
147 #define NTCREATEX_OPTIONS_WRITE_THROUGH            0x0002
148 #define NTCREATEX_OPTIONS_SEQUENTIAL_ONLY          0x0004
149 #define NTCREATEX_OPTIONS_SYNC_ALERT               0x0010
150 #define NTCREATEX_OPTIONS_ASYNC_ALERT              0x0020
151 #define NTCREATEX_OPTIONS_NON_DIRECTORY_FILE       0x0040
152 #define NTCREATEX_OPTIONS_NO_EA_KNOWLEDGE          0x0200
153 #define NTCREATEX_OPTIONS_EIGHT_DOT_THREE_ONLY     0x0400
154 #define NTCREATEX_OPTIONS_RANDOM_ACCESS            0x0800
155 #define NTCREATEX_OPTIONS_DELETE_ON_CLOSE          0x1000
156 #define NTCREATEX_OPTIONS_OPEN_BY_FILE_ID          0x2000
157 #define NTCREATEX_OPTIONS_UNKNOWN_400000           0x400000
158
159 /* create options these bits are for private use by backends, they are
160    not valid on the wire */
161 #define NTCREATEX_OPTIONS_PRIVATE_MASK         0xFF000000
162 #define NTCREATEX_OPTIONS_PRIVATE_DENY_DOS     0x01000000
163 #define NTCREATEX_OPTIONS_PRIVATE_DENY_FCB     0x02000000
164
165
166 /* ntcreatex impersonation field */
167 #define NTCREATEX_IMPERSONATION_ANONYMOUS      0
168 #define NTCREATEX_IMPERSONATION_IDENTIFICATION 1
169 #define NTCREATEX_IMPERSONATION_IMPERSONATION  2
170 #define NTCREATEX_IMPERSONATION_DELEGATION     3
171
172 /* ntcreatex security flags bit field */
173 #define NTCREATEX_SECURITY_DYNAMIC             1
174 #define NTCREATEX_SECURITY_ALL                 2
175
176 /* ntcreatex create_action in reply */
177 #define NTCREATEX_ACTION_EXISTED     1
178 #define NTCREATEX_ACTION_CREATED     2
179 #define NTCREATEX_ACTION_TRUNCATED   3
180 /* the value 5 can also be returned when you try to create a directory with
181    incorrect parameters - what does it mean? maybe created temporary file? */
182 #define NTCREATEX_ACTION_UNKNOWN 5
183
184 #define SMB_MAGIC 0x424D53FF /* 0xFF 'S' 'M' 'B' */
185
186 /* the basic packet size, assuming no words or bytes. Does not include the NBT header */
187 #define MIN_SMB_SIZE 35
188
189 /* when using NBT encapsulation every packet has a 4 byte header */
190 #define NBT_HDR_SIZE 4
191
192 /* offsets into message header for common items - NOTE: These have
193    changed from being offsets from the base of the NBT packet to the base of the SMB packet.
194    this has reduced all these values by 4
195 */
196 #define HDR_COM 4
197 #define HDR_RCLS 5
198 #define HDR_REH 6
199 #define HDR_ERR 7
200 #define HDR_FLG 9
201 #define HDR_FLG2 10
202 #define HDR_PIDHIGH 12
203 #define HDR_SS_FIELD 14
204 #define HDR_TID 24
205 #define HDR_PID 26
206 #define HDR_UID 28
207 #define HDR_MID 30
208 #define HDR_WCT 32
209 #define HDR_VWV 33
210
211
212 /* types of buffers in core SMB protocol */
213 #define SMB_DATA_BLOCK 0x1
214 #define SMB_ASCII4     0x4
215
216
217 /* flag defines. CIFS spec 3.1.1 */
218 #define FLAG_SUPPORT_LOCKREAD       0x01
219 #define FLAG_CLIENT_BUF_AVAIL       0x02
220 #define FLAG_RESERVED               0x04
221 #define FLAG_CASELESS_PATHNAMES     0x08
222 #define FLAG_CANONICAL_PATHNAMES    0x10
223 #define FLAG_REQUEST_OPLOCK         0x20
224 #define FLAG_REQUEST_BATCH_OPLOCK   0x40
225 #define FLAG_REPLY                  0x80
226
227 /* the complete */
228 #define SMBmkdir      0x00   /* create directory */
229 #define SMBrmdir      0x01   /* delete directory */
230 #define SMBopen       0x02   /* open file */
231 #define SMBcreate     0x03   /* create file */
232 #define SMBclose      0x04   /* close file */
233 #define SMBflush      0x05   /* flush file */
234 #define SMBunlink     0x06   /* delete file */
235 #define SMBmv         0x07   /* rename file */
236 #define SMBgetatr     0x08   /* get file attributes */
237 #define SMBsetatr     0x09   /* set file attributes */
238 #define SMBread       0x0A   /* read from file */
239 #define SMBwrite      0x0B   /* write to file */
240 #define SMBlock       0x0C   /* lock byte range */
241 #define SMBunlock     0x0D   /* unlock byte range */
242 #define SMBctemp      0x0E   /* create temporary file */
243 #define SMBmknew      0x0F   /* make new file */
244 #define SMBchkpth     0x10   /* check directory path */
245 #define SMBexit       0x11   /* process exit */
246 #define SMBlseek      0x12   /* seek */
247 #define SMBtcon       0x70   /* tree connect */
248 #define SMBtconX      0x75   /* tree connect and X*/
249 #define SMBtdis       0x71   /* tree disconnect */
250 #define SMBnegprot    0x72   /* negotiate protocol */
251 #define SMBdskattr    0x80   /* get disk attributes */
252 #define SMBsearch     0x81   /* search directory */
253 #define SMBsplopen    0xC0   /* open print spool file */
254 #define SMBsplwr      0xC1   /* write to print spool file */
255 #define SMBsplclose   0xC2   /* close print spool file */
256 #define SMBsplretq    0xC3   /* return print queue */
257 #define SMBsends      0xD0   /* send single block message */
258 #define SMBsendb      0xD1   /* send broadcast message */
259 #define SMBfwdname    0xD2   /* forward user name */
260 #define SMBcancelf    0xD3   /* cancel forward */
261 #define SMBgetmac     0xD4   /* get machine name */
262 #define SMBsendstrt   0xD5   /* send start of multi-block message */
263 #define SMBsendend    0xD6   /* send end of multi-block message */
264 #define SMBsendtxt    0xD7   /* send text of multi-block message */
265
266 /* Core+ protocol */
267 #define SMBlockread       0x13   /* Lock a range and read */
268 #define SMBwriteunlock 0x14 /* write then range then unlock it */
269 #define SMBreadbraw   0x1a  /* read a block of data with no smb header */
270 #define SMBwritebraw  0x1d  /* write a block of data with no smb header */
271 #define SMBwritec     0x20  /* secondary write request */
272 #define SMBwriteclose 0x2c  /* write a file then close it */
273
274 /* dos extended protocol */
275 #define SMBreadBraw      0x1A   /* read block raw */
276 #define SMBreadBmpx      0x1B   /* read block multiplexed */
277 #define SMBreadBs        0x1C   /* read block (secondary response) */
278 #define SMBwriteBraw     0x1D   /* write block raw */
279 #define SMBwriteBmpx     0x1E   /* write block multiplexed */
280 #define SMBwriteBs       0x1F   /* write block (secondary request) */
281 #define SMBwriteC        0x20   /* write complete response */
282 #define SMBsetattrE      0x22   /* set file attributes expanded */
283 #define SMBgetattrE      0x23   /* get file attributes expanded */
284 #define SMBlockingX      0x24   /* lock/unlock byte ranges and X */
285 #define SMBtrans         0x25   /* transaction - name, bytes in/out */
286 #define SMBtranss        0x26   /* transaction (secondary request/response) */
287 #define SMBioctl         0x27   /* IOCTL */
288 #define SMBioctls        0x28   /* IOCTL  (secondary request/response) */
289 #define SMBcopy          0x29   /* copy */
290 #define SMBmove          0x2A   /* move */
291 #define SMBecho          0x2B   /* echo */
292 #define SMBopenX         0x2D   /* open and X */
293 #define SMBreadX         0x2E   /* read and X */
294 #define SMBwriteX        0x2F   /* write and X */
295 #define SMBsesssetupX    0x73   /* Session Set Up & X (including User Logon) */
296 #define SMBffirst        0x82   /* find first */
297 #define SMBfunique       0x83   /* find unique */
298 #define SMBfclose        0x84   /* find close */
299 #define SMBkeepalive     0x85   /* keepalive */
300 #define SMBinvalid       0xFE   /* invalid command */
301
302 /* Extended 2.0 protocol */
303 #define SMBtrans2        0x32   /* TRANS2 protocol set */
304 #define SMBtranss2       0x33   /* TRANS2 protocol set, secondary command */
305 #define SMBfindclose     0x34   /* Terminate a TRANSACT2_FINDFIRST */
306 #define SMBfindnclose    0x35   /* Terminate a TRANSACT2_FINDNOTIFYFIRST */
307 #define SMBulogoffX      0x74   /* user logoff */
308
309 /* NT SMB extensions. */
310 #define SMBnttrans       0xA0   /* NT transact */
311 #define SMBnttranss      0xA1   /* NT transact secondary */
312 #define SMBntcreateX     0xA2   /* NT create and X */
313 #define SMBntcancel      0xA4   /* NT cancel */
314 #define SMBntrename      0xA5   /* NT rename */
315
316 /* used to indicate end of chain */
317 #define SMB_CHAIN_NONE   0xFF
318
319 /* These are the trans subcommands */
320 #define TRANSACT_SETNAMEDPIPEHANDLESTATE  0x01 
321 #define TRANSACT_DCERPCCMD                0x26
322 #define TRANSACT_WAITNAMEDPIPEHANDLESTATE 0x53
323
324 /* These are the NT transact sub commands. */
325 #define NT_TRANSACT_CREATE                1
326 #define NT_TRANSACT_IOCTL                 2
327 #define NT_TRANSACT_SET_SECURITY_DESC     3
328 #define NT_TRANSACT_NOTIFY_CHANGE         4
329 #define NT_TRANSACT_RENAME                5
330 #define NT_TRANSACT_QUERY_SECURITY_DESC   6
331
332 /* this is used on a TConX. I'm not sure the name is very helpful though */
333 #define SMB_SUPPORT_SEARCH_BITS        0x0001
334 #define SMB_SHARE_IN_DFS               0x0002
335
336 /* Named pipe write mode flags. Used in writeX calls. */
337 #define PIPE_RAW_MODE 0x4
338 #define PIPE_START_MESSAGE 0x8
339
340 /* the desired access to use when opening a pipe */
341 #define DESIRED_ACCESS_PIPE 0x2019f
342  
343
344 /* Mapping of generic access rights for files to specific rights. */
345 #define FILE_GENERIC_ALL (STANDARD_RIGHTS_REQUIRED_ACCESS| NT_ACCESS_SYNCHRONIZE_ACCESS|FILE_ALL_ACCESS)
346
347 #define FILE_GENERIC_READ (STANDARD_RIGHTS_READ_ACCESS|FILE_READ_DATA|FILE_READ_ATTRIBUTES|\
348                                                         FILE_READ_EA|NT_ACCESS_SYNCHRONIZE_ACCESS)
349
350 #define FILE_GENERIC_WRITE (STANDARD_RIGHTS_WRITE_ACCESS|FILE_WRITE_DATA|FILE_WRITE_ATTRIBUTES|\
351                             FILE_WRITE_EA|FILE_APPEND_DATA|NT_ACCESS_SYNCHRONIZE_ACCESS)
352
353 #define FILE_GENERIC_EXECUTE (STANDARD_RIGHTS_EXECUTE_ACCESS|FILE_READ_ATTRIBUTES|\
354                             FILE_EXECUTE|NT_ACCESS_SYNCHRONIZE_ACCESS)
355
356
357 /* FileAttributes (search attributes) field */
358 #define FILE_ATTRIBUTE_READONLY         0x0001
359 #define FILE_ATTRIBUTE_HIDDEN           0x0002
360 #define FILE_ATTRIBUTE_SYSTEM           0x0004
361 #define FILE_ATTRIBUTE_VOLUME           0x0008
362 #define FILE_ATTRIBUTE_DIRECTORY        0x0010
363 #define FILE_ATTRIBUTE_ARCHIVE          0x0020
364 #define FILE_ATTRIBUTE_DEVICE           0x0040
365 #define FILE_ATTRIBUTE_NORMAL           0x0080
366 #define FILE_ATTRIBUTE_TEMPORARY        0x0100
367 #define FILE_ATTRIBUTE_SPARSE           0x0200
368 #define FILE_ATTRIBUTE_REPARSE_POINT    0x0400
369 #define FILE_ATTRIBUTE_COMPRESSED       0x0800
370 #define FILE_ATTRIBUTE_OFFLINE          0x1000
371 #define FILE_ATTRIBUTE_NONINDEXED       0x2000
372 #define FILE_ATTRIBUTE_ENCRYPTED        0x4000
373
374 /* Flags - combined with attributes. */
375 #define FILE_FLAG_WRITE_THROUGH    0x80000000L
376 #define FILE_FLAG_NO_BUFFERING     0x20000000L
377 #define FILE_FLAG_RANDOM_ACCESS    0x10000000L
378 #define FILE_FLAG_SEQUENTIAL_SCAN  0x08000000L
379 #define FILE_FLAG_DELETE_ON_CLOSE  0x04000000L
380 #define FILE_FLAG_BACKUP_SEMANTICS 0x02000000L /* only if backup/restore privilege? */
381 #define FILE_FLAG_POSIX_SEMANTICS  0x01000000L
382
383 /* Responses when opening a file. */
384 #define FILE_WAS_SUPERSEDED 0
385 #define FILE_WAS_OPENED 1
386 #define FILE_WAS_CREATED 2
387 #define FILE_WAS_OVERWRITTEN 3
388
389 /* File type flags */
390 #define FILE_TYPE_DISK  0
391 #define FILE_TYPE_BYTE_MODE_PIPE 1
392 #define FILE_TYPE_MESSAGE_MODE_PIPE 2
393 #define FILE_TYPE_PRINTER 3
394 #define FILE_TYPE_COMM_DEVICE 4
395 #define FILE_TYPE_UNKNOWN 0xFFFF
396
397 /* Flag for NT transact rename call. */
398 #define RENAME_REPLACE_IF_EXISTS 1
399
400 /* flags for SMBntrename call */
401 #define RENAME_FLAG_MOVE_CLUSTER_INFORMATION 0x102 /* ???? */
402 #define RENAME_FLAG_HARD_LINK                0x103
403 #define RENAME_FLAG_RENAME                   0x104
404 #define RENAME_FLAG_COPY                     0x105
405
406 /* Filesystem Attributes. */
407 #define FILE_CASE_SENSITIVE_SEARCH 0x01
408 #define FILE_CASE_PRESERVED_NAMES 0x02
409 #define FILE_UNICODE_ON_DISK 0x04
410 /* According to cifs9f, this is 4, not 8 */
411 /* Acconding to testing, this actually sets the security attribute! */
412 #define FILE_PERSISTENT_ACLS 0x08
413 /* These entries added from cifs9f --tsb */
414 #define FILE_FILE_COMPRESSION 0x10
415 #define FILE_VOLUME_QUOTAS 0x20
416 /* I think this is wrong. JRA #define FILE_DEVICE_IS_MOUNTED 0x20 */
417 #define FILE_VOLUME_SPARSE_FILE 0x40
418 #define FILE_VOLUME_IS_COMPRESSED 0x8000
419
420 /* ChangeNotify flags. */
421 #define FILE_NOTIFY_CHANGE_FILE_NAME    0x00000001
422 #define FILE_NOTIFY_CHANGE_DIR_NAME     0x00000002
423 #define FILE_NOTIFY_CHANGE_ATTRIBUTES   0x00000004
424 #define FILE_NOTIFY_CHANGE_SIZE         0x00000008
425 #define FILE_NOTIFY_CHANGE_LAST_WRITE   0x00000010
426 #define FILE_NOTIFY_CHANGE_LAST_ACCESS  0x00000020
427 #define FILE_NOTIFY_CHANGE_CREATION     0x00000040
428 #define FILE_NOTIFY_CHANGE_EA           0x00000080
429 #define FILE_NOTIFY_CHANGE_SECURITY     0x00000100
430 #define FILE_NOTIFY_CHANGE_STREAM_NAME  0x00000200
431 #define FILE_NOTIFY_CHANGE_STREAM_SIZE  0x00000400
432 #define FILE_NOTIFY_CHANGE_STREAM_WRITE 0x00000800
433
434 #define FILE_NOTIFY_CHANGE_NAME \
435         (FILE_NOTIFY_CHANGE_FILE_NAME|FILE_NOTIFY_CHANGE_DIR_NAME)
436
437 /* change notify action results */
438 #define NOTIFY_ACTION_ADDED 1
439 #define NOTIFY_ACTION_REMOVED 2
440 #define NOTIFY_ACTION_MODIFIED 3
441 #define NOTIFY_ACTION_OLD_NAME 4
442 #define NOTIFY_ACTION_NEW_NAME 5
443 #define NOTIFY_ACTION_ADDED_STREAM 6
444 #define NOTIFY_ACTION_REMOVED_STREAM 7
445 #define NOTIFY_ACTION_MODIFIED_STREAM 8
446
447 /* seek modes for smb_seek */
448 #define SEEK_MODE_START   0
449 #define SEEK_MODE_CURRENT 1
450 #define SEEK_MODE_END     2
451
452 /* where to find the base of the SMB packet proper */
453 /* REWRITE TODO: smb_base needs to be removed */
454 #define smb_base(buf) (((char *)(buf))+4)
455
456 /* we don't allow server strings to be longer than 48 characters as
457    otherwise NT will not honour the announce packets */
458 #define MAX_SERVER_STRING_LENGTH 48
459
460 /* This was set by JHT in liaison with Jeremy Allison early 1997
461  * History:
462  * Version 4.0 - never made public
463  * Version 4.10 - New to 1.9.16p2, lost in space 1.9.16p3 to 1.9.16p9
464  *              - Reappeared in 1.9.16p11 with fixed smbd services
465  * Version 4.20 - To indicate that nmbd and browsing now works better
466  * Version 4.50 - Set at release of samba-2.2.0 by JHT
467  *
468  *  Note: In the presence of NT4.X do not set above 4.9
469  *        Setting this above 4.9 can have undesired side-effects.
470  *        This may change again in Samba-3.0 after further testing. JHT
471  */
472  
473 #define DEFAULT_MAJOR_VERSION 0x04
474 #define DEFAULT_MINOR_VERSION 0x09
475
476 /* Browser Election Values */
477 #define BROWSER_ELECTION_VERSION        0x010f
478 #define BROWSER_CONSTANT        0xaa55
479
480 /* Sercurity mode bits. */
481 #define NEGOTIATE_SECURITY_USER_LEVEL           0x01
482 #define NEGOTIATE_SECURITY_CHALLENGE_RESPONSE   0x02
483 #define NEGOTIATE_SECURITY_SIGNATURES_ENABLED   0x04
484 #define NEGOTIATE_SECURITY_SIGNATURES_REQUIRED  0x08
485
486 /* NT Flags2 bits - cifs6.txt section 3.1.2 */
487 #define FLAGS2_LONG_PATH_COMPONENTS    0x0001
488 #define FLAGS2_EXTENDED_ATTRIBUTES     0x0002
489 #define FLAGS2_SMB_SECURITY_SIGNATURES 0x0004
490 #define FLAGS2_IS_LONG_NAME            0x0040
491 #define FLAGS2_EXTENDED_SECURITY       0x0800 
492 #define FLAGS2_DFS_PATHNAMES           0x1000
493 #define FLAGS2_READ_PERMIT_EXECUTE     0x2000
494 #define FLAGS2_32_BIT_ERROR_CODES      0x4000 
495 #define FLAGS2_UNICODE_STRINGS         0x8000
496
497
498 /* CIFS protocol capabilities */
499 #define CAP_RAW_MODE            0x00000001
500 #define CAP_MPX_MODE            0x00000002
501 #define CAP_UNICODE             0x00000004
502 #define CAP_LARGE_FILES         0x00000008
503 #define CAP_NT_SMBS             0x00000010
504 #define CAP_RPC_REMOTE_APIS     0x00000020
505 #define CAP_STATUS32            0x00000040
506 #define CAP_LEVEL_II_OPLOCKS    0x00000080
507 #define CAP_LOCK_AND_READ       0x00000100
508 #define CAP_NT_FIND             0x00000200
509 #define CAP_DFS                 0x00001000
510 #define CAP_W2K_SMBS            0x00002000
511 #define CAP_LARGE_READX         0x00004000
512 #define CAP_LARGE_WRITEX        0x00008000
513 #define CAP_UNIX                0x00800000 /* Capabilities for UNIX extensions. Created by HP. */
514 #define CAP_EXTENDED_SECURITY   0x80000000
515
516 /*
517  * Global value meaning that the smb_uid field should be
518  * ingored (in share level security and protocol level == CORE)
519  */
520
521 #define UID_FIELD_INVALID 0
522
523 /* Lock types. */
524 #define LOCKING_ANDX_SHARED_LOCK     0x01
525 #define LOCKING_ANDX_OPLOCK_RELEASE  0x02
526 #define LOCKING_ANDX_CHANGE_LOCKTYPE 0x04
527 #define LOCKING_ANDX_CANCEL_LOCK     0x08
528 #define LOCKING_ANDX_LARGE_FILES     0x10
529
530 /*
531  * Bits we test with.
532  */
533
534 #define OPLOCK_NONE      0
535 #define OPLOCK_EXCLUSIVE 1
536 #define OPLOCK_BATCH     2
537 #define OPLOCK_LEVEL_II  4
538
539 #define CORE_OPLOCK_GRANTED (1<<5)
540 #define EXTENDED_OPLOCK_GRANTED (1<<15)
541
542 /*
543  * Return values for oplock types.
544  */
545
546 #define NO_OPLOCK_RETURN 0
547 #define EXCLUSIVE_OPLOCK_RETURN 1
548 #define BATCH_OPLOCK_RETURN 2
549 #define LEVEL_II_OPLOCK_RETURN 3
550
551 /* oplock levels sent in oplock break */
552 #define OPLOCK_BREAK_TO_NONE     0
553 #define OPLOCK_BREAK_TO_LEVEL_II 1
554
555
556 #define CMD_REPLY 0x8000
557
558 /* The maximum length of a trust account password.
559    Used when we randomly create it, 15 char passwords
560    exceed NT4's max password length */
561
562 #define DEFAULT_TRUST_ACCOUNT_PASSWORD_LENGTH 14
563
564
565 /*
566   filesystem attribute bits
567 */
568 #define FS_ATTR_CASE_SENSITIVE_SEARCH             0x00000001
569 #define FS_ATTR_CASE_PRESERVED_NAMES              0x00000002
570 #define FS_ATTR_UNICODE_ON_DISK                   0x00000004
571 #define FS_ATTR_PERSISTANT_ACLS                   0x00000008
572 #define FS_ATTR_COMPRESSION                       0x00000010
573 #define FS_ATTR_QUOTAS                            0x00000020
574 #define FS_ATTR_SPARSE_FILES                      0x00000040
575 #define FS_ATTR_REPARSE_POINTS                    0x00000080
576 #define FS_ATTR_REMOTE_STORAGE                    0x00000100
577 #define FS_ATTR_LFN_SUPPORT                       0x00004000
578 #define FS_ATTR_IS_COMPRESSED                     0x00008000
579 #define FS_ATTR_OBJECT_IDS                        0x00010000
580 #define FS_ATTR_ENCRYPTION                        0x00020000
581 #define FS_ATTR_NAMED_STREAMS                     0x00040000
582
583 #define smb_len(buf) (PVAL(buf,3)|(PVAL(buf,2)<<8)|(PVAL(buf,1)<<16))
584 #define _smb_setlen(buf,len) do {(buf)[0] = 0; (buf)[1] = ((len)&0x10000)>>16; \
585         (buf)[2] = ((len)&0xFF00)>>8; (buf)[3] = (len)&0xFF;} while (0)
586 #define _smb2_setlen(buf,len) do {(buf)[0] = 0; (buf)[1] = ((len)&0xFF0000)>>16; \
587         (buf)[2] = ((len)&0xFF00)>>8; (buf)[3] = (len)&0xFF;} while (0)
588
589 #include "libcli/raw/trans2.h"
590 #include "libcli/raw/interfaces.h"
591
592 #endif /* _SMB_H */