add FSCTL_SET_ZERO_ON_DEALLOCATION define
[mat/samba.git] / libcli / smb / smb_constants.h
1 /*
2    Unix SMB/CIFS implementation.
3
4    SMB parameters and setup, plus a whole lot more.
5
6    Copyright (C) Andrew Tridgell              2011
7
8    This program is free software; you can redistribute it and/or modify
9    it under the terms of the GNU General Public License as published by
10    the Free Software Foundation; either version 3 of the License, or
11    (at your option) any later version.
12
13    This program is distributed in the hope that it will be useful,
14    but WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16    GNU General Public License for more details.
17
18    You should have received a copy of the GNU General Public License
19    along with this program.  If not, see <http://www.gnu.org/licenses/>.
20 */
21
22 #ifndef _SMB_CONSTANTS_H
23 #define _SMB_CONSTANTS_H
24
25 /*
26  * Netbios over TCP (rfc 1002)
27  */
28 #define NBSSmessage     0x00   /* session message */
29 #define NBSSrequest     0x81   /* session request */
30 #define NBSSpositive    0x82   /* positiv session response */
31 #define NBSSnegative    0x83   /* negativ session response */
32 #define NBSSretarget    0x84   /* retarget session response */
33 #define NBSSkeepalive   0x85   /* keepalive */
34
35 #define SMB_MAGIC 0x424D53FF /* 0xFF 'S' 'M' 'B' */
36
37 /* the basic packet size, assuming no words or bytes. Does not include the NBT header */
38 #define MIN_SMB_SIZE 35
39
40 /* when using NBT encapsulation every packet has a 4 byte header */
41 #define NBT_HDR_SIZE 4
42
43 /* offsets into message header for common items - NOTE: These have
44    changed from being offsets from the base of the NBT packet to the base of the SMB packet.
45    this has reduced all these values by 4
46 */
47 #define HDR_COM 4
48 #define HDR_RCLS 5
49 #define HDR_REH 6
50 #define HDR_ERR 7
51 #define HDR_FLG 9
52 #define HDR_FLG2 10
53 #define HDR_PIDHIGH 12
54 #define HDR_SS_FIELD 14
55 #define HDR_TID 24
56 #define HDR_PID 26
57 #define HDR_UID 28
58 #define HDR_MID 30
59 #define HDR_WCT 32
60 #define HDR_VWV 33
61
62 #define smb_len_nbt(buf) (RIVAL(buf, 0) & 0x1FFFF)
63 #define _smb_setlen_nbt(buf,len) RSIVAL(buf, 0, (len) & 0x1FFFF)
64 #define smb_setlen_nbt(buf, len) do { \
65         _smb_setlen_nbt(buf, len); \
66         SIVAL(buf, 4, SMB_MAGIC); \
67 } while (0)
68
69 #define smb_len_tcp(buf) (RIVAL(buf, 0) & 0xFFFFFF)
70 #define _smb_setlen_tcp(buf,len) RSIVAL(buf, 0, (len) & 0xFFFFFF)
71 #define smb_setlen_tcp(buf, len) do { \
72         _smb_setlen_tcp(buf, len); \
73         SIVAL(buf, 4, SMB_MAGIC); \
74 } while (0)
75
76 /* protocol types. It assumes that higher protocols include lower protocols
77    as subsets. */
78 enum protocol_types {
79         PROTOCOL_NONE,
80         PROTOCOL_CORE,
81         PROTOCOL_COREPLUS,
82         PROTOCOL_LANMAN1,
83         PROTOCOL_LANMAN2,
84         PROTOCOL_NT1,
85         PROTOCOL_SMB2_02,
86         PROTOCOL_SMB2_10,
87         PROTOCOL_SMB2_22,
88         PROTOCOL_SMB2_24,
89         PROTOCOL_SMB3_00,
90         PROTOCOL_SMB3_02
91 };
92 #define PROTOCOL_LATEST PROTOCOL_SMB3_02
93
94 enum smb_signing_setting {
95         SMB_SIGNING_DEFAULT = -1,
96         SMB_SIGNING_OFF = 0,
97         SMB_SIGNING_IF_REQUIRED = 1,
98         SMB_SIGNING_REQUIRED = 3,
99 };
100
101 /* types of buffers in core SMB protocol */
102 #define SMB_DATA_BLOCK 0x1
103 #define SMB_ASCII4     0x4
104
105 /* flag defines. CIFS spec 3.1.1 */
106 #define FLAG_SUPPORT_LOCKREAD       0x01
107 #define FLAG_CLIENT_BUF_AVAIL       0x02
108 #define FLAG_RESERVED               0x04
109 #define FLAG_CASELESS_PATHNAMES     0x08
110 #define FLAG_CANONICAL_PATHNAMES    0x10
111 #define FLAG_REQUEST_OPLOCK         0x20
112 #define FLAG_REQUEST_BATCH_OPLOCK   0x40
113 #define FLAG_REPLY                  0x80
114
115 /* the complete */
116 #define SMBmkdir      0x00   /* create directory */
117 #define SMBrmdir      0x01   /* delete directory */
118 #define SMBopen       0x02   /* open file */
119 #define SMBcreate     0x03   /* create file */
120 #define SMBclose      0x04   /* close file */
121 #define SMBflush      0x05   /* flush file */
122 #define SMBunlink     0x06   /* delete file */
123 #define SMBmv         0x07   /* rename file */
124 #define SMBgetatr     0x08   /* get file attributes */
125 #define SMBsetatr     0x09   /* set file attributes */
126 #define SMBread       0x0A   /* read from file */
127 #define SMBwrite      0x0B   /* write to file */
128 #define SMBlock       0x0C   /* lock byte range */
129 #define SMBunlock     0x0D   /* unlock byte range */
130 #define SMBctemp      0x0E   /* create temporary file */
131 #define SMBmknew      0x0F   /* make new file */
132 #define SMBcheckpath  0x10   /* check directory path */
133 #define SMBexit       0x11   /* process exit */
134 #define SMBlseek      0x12   /* seek */
135 #define SMBtcon       0x70   /* tree connect */
136 #define SMBtconX      0x75   /* tree connect and X*/
137 #define SMBtdis       0x71   /* tree disconnect */
138 #define SMBnegprot    0x72   /* negotiate protocol */
139 #define SMBdskattr    0x80   /* get disk attributes */
140 #define SMBsearch     0x81   /* search directory */
141 #define SMBsplopen    0xC0   /* open print spool file */
142 #define SMBsplwr      0xC1   /* write to print spool file */
143 #define SMBsplclose   0xC2   /* close print spool file */
144 #define SMBsplretq    0xC3   /* return print queue */
145 #define SMBsends      0xD0   /* send single block message */
146 #define SMBsendb      0xD1   /* send broadcast message */
147 #define SMBfwdname    0xD2   /* forward user name */
148 #define SMBcancelf    0xD3   /* cancel forward */
149 #define SMBgetmac     0xD4   /* get machine name */
150 #define SMBsendstrt   0xD5   /* send start of multi-block message */
151 #define SMBsendend    0xD6   /* send end of multi-block message */
152 #define SMBsendtxt    0xD7   /* send text of multi-block message */
153
154 /* Core+ protocol */
155 #define SMBlockread       0x13   /* Lock a range and read */
156 #define SMBwriteunlock 0x14 /* Unlock a range then write */
157 #define SMBreadbraw   0x1a  /* read a block of data with no smb header */
158 #define SMBwritebraw  0x1d  /* write a block of data with no smb header */
159 #define SMBwritec     0x20  /* secondary write request */
160 #define SMBwriteclose 0x2c  /* write a file then close it */
161
162 /* dos extended protocol */
163 #define SMBreadBraw      0x1A   /* read block raw */
164 #define SMBreadBmpx      0x1B   /* read block multiplexed */
165 #define SMBreadBs        0x1C   /* read block (secondary response) */
166 #define SMBwriteBraw     0x1D   /* write block raw */
167 #define SMBwriteBmpx     0x1E   /* write block multiplexed */
168 #define SMBwriteBs       0x1F   /* write block (secondary request) */
169 #define SMBwriteC        0x20   /* write complete response */
170 #define SMBsetattrE      0x22   /* set file attributes expanded */
171 #define SMBgetattrE      0x23   /* get file attributes expanded */
172 #define SMBlockingX      0x24   /* lock/unlock byte ranges and X */
173 #define SMBtrans         0x25   /* transaction - name, bytes in/out */
174 #define SMBtranss        0x26   /* transaction (secondary request/response) */
175 #define SMBioctl         0x27   /* IOCTL */
176 #define SMBioctls        0x28   /* IOCTL  (secondary request/response) */
177 #define SMBcopy          0x29   /* copy */
178 #define SMBmove          0x2A   /* move */
179 #define SMBecho          0x2B   /* echo */
180 #define SMBopenX         0x2D   /* open and X */
181 #define SMBreadX         0x2E   /* read and X */
182 #define SMBwriteX        0x2F   /* write and X */
183 #define SMBsesssetupX    0x73   /* Session Set Up & X (including User Logon) */
184 #define SMBffirst        0x82   /* find first */
185 #define SMBfunique       0x83   /* find unique */
186 #define SMBfclose        0x84   /* find close */
187 #define SMBinvalid       0xFE   /* invalid command */
188
189 /* Extended 2.0 protocol */
190 #define SMBtrans2        0x32   /* TRANS2 protocol set */
191 #define SMBtranss2       0x33   /* TRANS2 protocol set, secondary command */
192 #define SMBfindclose     0x34   /* Terminate a TRANSACT2_FINDFIRST */
193 #define SMBfindnclose    0x35   /* Terminate a TRANSACT2_FINDNOTIFYFIRST */
194 #define SMBulogoffX      0x74   /* user logoff */
195
196 /* NT SMB extensions. */
197 #define SMBnttrans       0xA0   /* NT transact */
198 #define SMBnttranss      0xA1   /* NT transact secondary */
199 #define SMBntcreateX     0xA2   /* NT create and X */
200 #define SMBntcancel      0xA4   /* NT cancel */
201 #define SMBntrename      0xA5   /* NT rename */
202
203 /* used to indicate end of chain */
204 #define SMB_CHAIN_NONE   0xFF
205
206 /* Sercurity mode bits. */
207 #define NEGOTIATE_SECURITY_USER_LEVEL           0x01
208 #define NEGOTIATE_SECURITY_CHALLENGE_RESPONSE   0x02
209 #define NEGOTIATE_SECURITY_SIGNATURES_ENABLED   0x04
210 #define NEGOTIATE_SECURITY_SIGNATURES_REQUIRED  0x08
211
212 /*
213  * The negotiated buffer size for non LARGE_READX/WRITEX
214  * should be limited to uint16_t and has to be at least
215  * 500, which is the default for MinClientBufferSize on Windows.
216  */
217 #define SMB_BUFFER_SIZE_MIN 500
218 #define SMB_BUFFER_SIZE_MAX 65535
219
220 /* Capabilities.  see ftp.microsoft.com/developr/drg/cifs/cifs/cifs4.txt */
221
222 #define CAP_RAW_MODE            0x00000001
223 #define CAP_MPX_MODE            0x00000002
224 #define CAP_UNICODE             0x00000004
225 #define CAP_LARGE_FILES         0x00000008
226 #define CAP_NT_SMBS             0x00000010
227 #define CAP_RPC_REMOTE_APIS     0x00000020
228 #define CAP_STATUS32            0x00000040
229 #define CAP_LEVEL_II_OPLOCKS    0x00000080
230 #define CAP_LOCK_AND_READ       0x00000100
231 #define CAP_NT_FIND             0x00000200
232 #define CAP_DFS                 0x00001000
233 #define CAP_W2K_SMBS            0x00002000
234 #define CAP_LARGE_READX         0x00004000
235 #define CAP_LARGE_WRITEX        0x00008000
236 #define CAP_LWIO                0x00010000
237 #define CAP_UNIX                0x00800000 /* Capabilities for UNIX extensions. Created by HP. */
238 #define CAP_DYNAMIC_REAUTH      0x20000000
239 #define CAP_EXTENDED_SECURITY   0x80000000
240
241 #define SMB_CAP_BOTH_MASK ( \
242         CAP_UNICODE | \
243         CAP_NT_SMBS | \
244         CAP_STATUS32 | \
245         CAP_LEVEL_II_OPLOCKS | \
246         CAP_EXTENDED_SECURITY | \
247         0)
248 #define SMB_CAP_SERVER_MASK ( \
249         CAP_RAW_MODE | \
250         CAP_MPX_MODE | \
251         CAP_LARGE_FILES | \
252         CAP_RPC_REMOTE_APIS | \
253         CAP_LOCK_AND_READ | \
254         CAP_NT_FIND | \
255         CAP_DFS | \
256         CAP_W2K_SMBS | \
257         CAP_LARGE_READX | \
258         CAP_LARGE_WRITEX | \
259         CAP_LWIO | \
260         CAP_UNIX | \
261         0)
262 #define SMB_CAP_CLIENT_MASK ( \
263         CAP_DYNAMIC_REAUTH | \
264         0)
265 /*
266  * Older Samba releases (<= 3.6.x)
267  * expect the client to send CAP_LARGE_READX
268  * in order to let the client use large reads.
269  */
270 #define SMB_CAP_LEGACY_CLIENT_MASK ( \
271         SMB_CAP_CLIENT_MASK | \
272         CAP_LARGE_READX | \
273         CAP_LARGE_WRITEX | \
274         0)
275
276 /* Client-side offline caching policy types */
277 enum csc_policy {
278         CSC_POLICY_MANUAL=0,
279         CSC_POLICY_DOCUMENTS=1,
280         CSC_POLICY_PROGRAMS=2,
281         CSC_POLICY_DISABLE=3
282 };
283
284 /* TCONX Flag (smb_vwv2). [MS-SMB] 2.2.4.7.1 */
285 #define TCONX_FLAG_DISCONNECT_TID       0x0001
286 #define TCONX_FLAG_EXTENDED_SIGNATURES  0x0004
287 #define TCONX_FLAG_EXTENDED_RESPONSE    0x0008
288
289 /* this is used on a TConX. [MS-SMB] 2.2.4.7.2 */
290 #define SMB_SUPPORT_SEARCH_BITS        0x0001
291 #define SMB_SHARE_IN_DFS               0x0002
292 #define SMB_CSC_MASK                   0x000C
293 #define SMB_CSC_POLICY_SHIFT           2
294 #define SMB_UNIQUE_FILE_NAME           0x0010
295 #define SMB_EXTENDED_SIGNATURES        0x0020
296
297 /* NT Flags2 bits - cifs6.txt section 3.1.2 */
298 #define FLAGS2_LONG_PATH_COMPONENTS    0x0001
299 #define FLAGS2_EXTENDED_ATTRIBUTES     0x0002
300 #define FLAGS2_SMB_SECURITY_SIGNATURES 0x0004
301 #define FLAGS2_SMB_SECURITY_SIGNATURES_REQUIRED 0x0010
302 #define FLAGS2_IS_LONG_NAME            0x0040
303 #define FLAGS2_EXTENDED_SECURITY       0x0800
304 #define FLAGS2_DFS_PATHNAMES           0x1000
305 #define FLAGS2_READ_PERMIT_EXECUTE     0x2000
306 #define FLAGS2_32_BIT_ERROR_CODES      0x4000
307 #define FLAGS2_UNICODE_STRINGS         0x8000
308 #define FLAGS2_WIN2K_SIGNATURE         0xC852 /* Hack alert ! For now... JRA. */
309
310 /* FileAttributes (search attributes) field */
311 #define FILE_ATTRIBUTE_READONLY         0x0001L
312 #define FILE_ATTRIBUTE_HIDDEN           0x0002L
313 #define FILE_ATTRIBUTE_SYSTEM           0x0004L
314 #define FILE_ATTRIBUTE_VOLUME           0x0008L
315 #define FILE_ATTRIBUTE_DIRECTORY        0x0010L
316 #define FILE_ATTRIBUTE_ARCHIVE          0x0020L
317 #define FILE_ATTRIBUTE_DEVICE           0x0040L
318 #define FILE_ATTRIBUTE_NORMAL           0x0080L
319 #define FILE_ATTRIBUTE_TEMPORARY        0x0100L
320 #define FILE_ATTRIBUTE_SPARSE           0x0200L
321 #define FILE_ATTRIBUTE_REPARSE_POINT    0x0400L
322 #define FILE_ATTRIBUTE_COMPRESSED       0x0800L
323 #define FILE_ATTRIBUTE_OFFLINE          0x1000L
324 #define FILE_ATTRIBUTE_NONINDEXED       0x2000L
325 #define FILE_ATTRIBUTE_ENCRYPTED        0x4000L
326 #define FILE_ATTRIBUTE_ALL_MASK         0x7FFFL
327
328 #define SAMBA_ATTRIBUTES_MASK           (FILE_ATTRIBUTE_READONLY|\
329                                         FILE_ATTRIBUTE_HIDDEN|\
330                                         FILE_ATTRIBUTE_SYSTEM|\
331                                         FILE_ATTRIBUTE_DIRECTORY|\
332                                         FILE_ATTRIBUTE_ARCHIVE)
333
334 /* File type flags */
335 #define FILE_TYPE_DISK  0
336 #define FILE_TYPE_BYTE_MODE_PIPE 1
337 #define FILE_TYPE_MESSAGE_MODE_PIPE 2
338 #define FILE_TYPE_PRINTER 3
339 #define FILE_TYPE_COMM_DEVICE 4
340 #define FILE_TYPE_UNKNOWN 0xFFFF
341
342 /* Lock types. */
343 #define LOCKING_ANDX_EXCLUSIVE_LOCK  0x00
344 #define LOCKING_ANDX_SHARED_LOCK     0x01
345 #define LOCKING_ANDX_OPLOCK_RELEASE  0x02
346 #define LOCKING_ANDX_CHANGE_LOCKTYPE 0x04
347 #define LOCKING_ANDX_CANCEL_LOCK     0x08
348 #define LOCKING_ANDX_LARGE_FILES     0x10
349
350 /*
351  * Bits we test with.
352  */
353
354 #define OPLOCK_NONE      0
355 #define OPLOCK_EXCLUSIVE 1
356 #define OPLOCK_BATCH     2
357 #define OPLOCK_LEVEL_II  4
358
359 #define CORE_OPLOCK_GRANTED (1<<5)
360 #define EXTENDED_OPLOCK_GRANTED (1<<15)
361
362 /*
363  * Return values for oplock types.
364  */
365
366 #define NO_OPLOCK_RETURN 0
367 #define EXCLUSIVE_OPLOCK_RETURN 1
368 #define BATCH_OPLOCK_RETURN 2
369 #define LEVEL_II_OPLOCK_RETURN 3
370
371 /* oplock levels sent in oplock break */
372 #define OPLOCK_BREAK_TO_NONE     0
373 #define OPLOCK_BREAK_TO_LEVEL_II 1
374
375 /* Filesystem Attributes. */
376 #define FILE_CASE_SENSITIVE_SEARCH      0x00000001
377 #define FILE_CASE_PRESERVED_NAMES       0x00000002
378 #define FILE_UNICODE_ON_DISK            0x00000004
379 /* According to cifs9f, this is 4, not 8 */
380 /* Acconding to testing, this actually sets the security attribute! */
381 #define FILE_PERSISTENT_ACLS            0x00000008
382 #define FILE_FILE_COMPRESSION           0x00000010
383 #define FILE_VOLUME_QUOTAS              0x00000020
384 #define FILE_SUPPORTS_SPARSE_FILES      0x00000040
385 #define FILE_SUPPORTS_REPARSE_POINTS    0x00000080
386 #define FILE_SUPPORTS_REMOTE_STORAGE    0x00000100
387 #define FS_LFN_APIS                     0x00004000
388 #define FILE_VOLUME_IS_COMPRESSED       0x00008000
389 #define FILE_SUPPORTS_OBJECT_IDS        0x00010000
390 #define FILE_SUPPORTS_ENCRYPTION        0x00020000
391 #define FILE_NAMED_STREAMS              0x00040000
392 #define FILE_READ_ONLY_VOLUME           0x00080000
393
394 /* ShareAccess field. */
395 #define FILE_SHARE_NONE 0 /* Cannot be used in bitmask. */
396 #define FILE_SHARE_READ 1
397 #define FILE_SHARE_WRITE 2
398 #define FILE_SHARE_DELETE 4
399
400 /* Flags - combined with attributes. */
401 #define FILE_FLAG_WRITE_THROUGH    0x80000000L
402 #define FILE_FLAG_NO_BUFFERING     0x20000000L
403 #define FILE_FLAG_RANDOM_ACCESS    0x10000000L
404 #define FILE_FLAG_SEQUENTIAL_SCAN  0x08000000L
405 #define FILE_FLAG_DELETE_ON_CLOSE  0x04000000L
406 #define FILE_FLAG_BACKUP_SEMANTICS 0x02000000L
407 #define FILE_FLAG_POSIX_SEMANTICS  0x01000000L
408
409 /* CreateDisposition field. */
410 #define FILE_SUPERSEDE 0                /* File exists overwrite/supersede. File not exist create. */
411 #define FILE_OPEN 1                     /* File exists open. File not exist fail. */
412 #define FILE_CREATE 2                   /* File exists fail. File not exist create. */
413 #define FILE_OPEN_IF 3                  /* File exists open. File not exist create. */
414 #define FILE_OVERWRITE 4                /* File exists overwrite. File not exist fail. */
415 #define FILE_OVERWRITE_IF 5             /* File exists overwrite. File not exist create. */
416
417 /* CreateOptions field. */
418 #define FILE_DIRECTORY_FILE       0x0001
419 #define FILE_WRITE_THROUGH        0x0002
420 #define FILE_SEQUENTIAL_ONLY      0x0004
421 #define FILE_NO_INTERMEDIATE_BUFFERING 0x0008
422 #define FILE_SYNCHRONOUS_IO_ALERT      0x0010   /* may be ignored */
423 #define FILE_SYNCHRONOUS_IO_NONALERT   0x0020   /* may be ignored */
424 #define FILE_NON_DIRECTORY_FILE   0x0040
425 #define FILE_CREATE_TREE_CONNECTION    0x0080   /* ignore, should be zero */
426 #define FILE_COMPLETE_IF_OPLOCKED      0x0100   /* ignore, should be zero */
427 #define FILE_NO_EA_KNOWLEDGE      0x0200
428 #define FILE_EIGHT_DOT_THREE_ONLY 0x0400 /* aka OPEN_FOR_RECOVERY: ignore, should be zero */
429 #define FILE_RANDOM_ACCESS        0x0800
430 #define FILE_DELETE_ON_CLOSE      0x1000
431 #define FILE_OPEN_BY_FILE_ID      0x2000
432 #define FILE_OPEN_FOR_BACKUP_INTENT    0x4000
433 #define FILE_NO_COMPRESSION       0x8000
434 #define FILE_RESERVER_OPFILTER    0x00100000    /* ignore, should be zero */
435 #define FILE_OPEN_REPARSE_POINT   0x00200000
436 #define FILE_OPEN_NO_RECALL       0x00400000
437 #define FILE_OPEN_FOR_FREE_SPACE_QUERY 0x00800000 /* ignore should be zero */
438
439 /* Responses when opening a file. */
440 #define FILE_WAS_SUPERSEDED 0
441 #define FILE_WAS_OPENED 1
442 #define FILE_WAS_CREATED 2
443 #define FILE_WAS_OVERWRITTEN 3
444
445 /* These are the trans subcommands */
446 #define TRANSACT_SETNAMEDPIPEHANDLESTATE  0x01
447 #define TRANSACT_DCERPCCMD                0x26
448 #define TRANSACT_WAITNAMEDPIPEHANDLESTATE 0x53
449
450 /* These are the TRANS2 sub commands */
451 #define TRANSACT2_OPEN                        0
452 #define TRANSACT2_FINDFIRST                   1
453 #define TRANSACT2_FINDNEXT                    2
454 #define TRANSACT2_QFSINFO                     3
455 #define TRANSACT2_SETFSINFO                   4
456 #define TRANSACT2_QPATHINFO                   5
457 #define TRANSACT2_SETPATHINFO                 6
458 #define TRANSACT2_QFILEINFO                   7
459 #define TRANSACT2_SETFILEINFO                 8
460 #define TRANSACT2_FSCTL                       9
461 #define TRANSACT2_IOCTL                     0xA
462 #define TRANSACT2_FINDNOTIFYFIRST           0xB
463 #define TRANSACT2_FINDNOTIFYNEXT            0xC
464 #define TRANSACT2_MKDIR                     0xD
465 #define TRANSACT2_SESSION_SETUP             0xE
466 #define TRANSACT2_GET_DFS_REFERRAL         0x10
467 #define TRANSACT2_REPORT_DFS_INCONSISTANCY 0x11
468
469 /* These are the NT transact sub commands. */
470 #define NT_TRANSACT_CREATE                1
471 #define NT_TRANSACT_IOCTL                 2
472 #define NT_TRANSACT_SET_SECURITY_DESC     3
473 #define NT_TRANSACT_NOTIFY_CHANGE         4
474 #define NT_TRANSACT_RENAME                5
475 #define NT_TRANSACT_QUERY_SECURITY_DESC   6
476 #define NT_TRANSACT_GET_USER_QUOTA        7
477 #define NT_TRANSACT_SET_USER_QUOTA        8
478
479 /* ioctl codes */
480 #define IOCTL_QUERY_JOB_INFO      0x530060
481
482 /* filesystem control codes */
483 #define FSCTL_METHOD_BUFFERED   0x00000000
484 #define FSCTL_METHOD_IN_DIRECT  0x00000001
485 #define FSCTL_METHOD_OUT_DIRECT 0x00000002
486 #define FSCTL_METHOD_NEITHER    0x00000003
487
488 #define FSCTL_ACCESS_ANY        0x00000000
489 #define FSCTL_ACCESS_READ       0x00004000
490 #define FSCTL_ACCESS_WRITE      0x00008000
491
492 #define IOCTL_DEV_TYPE_MASK     0xFFFF0000
493
494 #define FSCTL_DFS                       0x00060000
495 #define FSCTL_DFS_GET_REFERRALS         (FSCTL_DFS | FSCTL_ACCESS_ANY | 0x0194 | FSCTL_METHOD_BUFFERED)
496 #define FSCTL_DFS_GET_REFERRALS_EX      (FSCTL_DFS | FSCTL_ACCESS_ANY | 0x01B0 | FSCTL_METHOD_BUFFERED)
497
498 #define FSCTL_FILESYSTEM                0x00090000
499 #define FSCTL_REQUEST_OPLOCK_LEVEL_1    (FSCTL_FILESYSTEM | FSCTL_ACCESS_ANY | 0x0000 | FSCTL_METHOD_BUFFERED)
500 #define FSCTL_REQUEST_OPLOCK_LEVEL_2    (FSCTL_FILESYSTEM | FSCTL_ACCESS_ANY | 0x0004 | FSCTL_METHOD_BUFFERED)
501 #define FSCTL_REQUEST_BATCH_OPLOCK      (FSCTL_FILESYSTEM | FSCTL_ACCESS_ANY | 0x0008 | FSCTL_METHOD_BUFFERED)
502 #define FSCTL_OPLOCK_BREAK_ACKNOWLEDGE  (FSCTL_FILESYSTEM | FSCTL_ACCESS_ANY | 0x000C | FSCTL_METHOD_BUFFERED)
503 #define FSCTL_OPBATCH_ACK_CLOSE_PENDING (FSCTL_FILESYSTEM | FSCTL_ACCESS_ANY | 0x0010 | FSCTL_METHOD_BUFFERED)
504 #define FSCTL_OPLOCK_BREAK_NOTIFY       (FSCTL_FILESYSTEM | FSCTL_ACCESS_ANY | 0x0014 | FSCTL_METHOD_BUFFERED)
505 #define FSCTL_GET_COMPRESSION           (FSCTL_FILESYSTEM | FSCTL_ACCESS_ANY | 0x003C | FSCTL_METHOD_BUFFERED)
506 #define FSCTL_SET_COMPRESSION           (FSCTL_FILESYSTEM | FSCTL_ACCESS_READ \
507                                                           | FSCTL_ACCESS_WRITE | 0x0040 | FSCTL_METHOD_BUFFERED)
508 #define FSCTL_FILESYS_GET_STATISTICS    (FSCTL_FILESYSTEM | FSCTL_ACCESS_ANY | 0x0060 | FSCTL_METHOD_BUFFERED)
509 #define FSCTL_GET_NTFS_VOLUME_DATA      (FSCTL_FILESYSTEM | FSCTL_ACCESS_ANY | 0x0064 | FSCTL_METHOD_BUFFERED)
510 #define FSCTL_IS_VOLUME_DIRTY           (FSCTL_FILESYSTEM | FSCTL_ACCESS_ANY | 0x0078 | FSCTL_METHOD_BUFFERED)
511 #define FSCTL_FIND_FILES_BY_SID         (FSCTL_FILESYSTEM | FSCTL_ACCESS_ANY | 0x008C | FSCTL_METHOD_NEITHER)
512 #define FSCTL_SET_OBJECT_ID             (FSCTL_FILESYSTEM | FSCTL_ACCESS_ANY | 0x0098 | FSCTL_METHOD_BUFFERED)
513 #define FSCTL_GET_OBJECT_ID             (FSCTL_FILESYSTEM | FSCTL_ACCESS_ANY | 0x009C | FSCTL_METHOD_BUFFERED)
514 #define FSCTL_DELETE_OBJECT_ID          (FSCTL_FILESYSTEM | FSCTL_ACCESS_ANY | 0x00A0 | FSCTL_METHOD_BUFFERED)
515 #define FSCTL_SET_REPARSE_POINT         (FSCTL_FILESYSTEM | FSCTL_ACCESS_ANY | 0x00A4 | FSCTL_METHOD_BUFFERED)
516 #define FSCTL_GET_REPARSE_POINT         (FSCTL_FILESYSTEM | FSCTL_ACCESS_ANY | 0x00A8 | FSCTL_METHOD_BUFFERED)
517 #define FSCTL_DELETE_REPARSE_POINT      (FSCTL_FILESYSTEM | FSCTL_ACCESS_ANY | 0x00AC | FSCTL_METHOD_BUFFERED)
518 #define FSCTL_CREATE_OR_GET_OBJECT_ID   (FSCTL_FILESYSTEM | FSCTL_ACCESS_ANY | 0x00C0 | FSCTL_METHOD_BUFFERED)
519 #define FSCTL_SET_SPARSE                (FSCTL_FILESYSTEM | FSCTL_ACCESS_ANY | 0x00C4 | FSCTL_METHOD_BUFFERED)
520 #define FSCTL_SET_ZERO_DATA             (FSCTL_FILESYSTEM | FSCTL_ACCESS_WRITE | 0x00C8 | FSCTL_METHOD_BUFFERED)
521 #define FSCTL_SET_ZERO_ON_DEALLOCATION  (FSCTL_FILESYSTEM | FSCTL_ACCESS_ANY | 0x0194 | FSCTL_METHOD_BUFFERED)
522 #define FSCTL_QUERY_ALLOCATED_RANGES    (FSCTL_FILESYSTEM | FSCTL_ACCESS_READ | 0x00CC | FSCTL_METHOD_NEITHER)
523 #define FSCTL_FILE_LEVEL_TRIM           (FSCTL_FILESYSTEM | FSCTL_ACCESS_WRITE | 0x0208 | FSCTL_METHOD_BUFFERED)
524 #define FSCTL_OFFLOAD_READ              (FSCTL_FILESYSTEM | FSCTL_ACCESS_READ | 0x0264 | FSCTL_METHOD_BUFFERED)
525 #define FSCTL_OFFLOAD_WRITE             (FSCTL_FILESYSTEM | FSCTL_ACCESS_WRITE | 0x0268 | FSCTL_METHOD_BUFFERED)
526
527 #define FSCTL_NAMED_PIPE                0x00110000
528 #define FSCTL_PIPE_PEEK                 (FSCTL_NAMED_PIPE | FSCTL_ACCESS_READ | 0x000C | FSCTL_METHOD_BUFFERED)
529 #define FSCTL_NAMED_PIPE_READ_WRITE     (FSCTL_NAMED_PIPE | FSCTL_ACCESS_READ \
530                                                           | FSCTL_ACCESS_WRITE | 0x0014 | FSCTL_METHOD_NEITHER)
531 #define FSCTL_PIPE_TRANSCEIVE           FSCTL_NAMED_PIPE_READ_WRITE     /* SMB2 function name */
532 #define FSCTL_PIPE_WAIT                 (FSCTL_NAMED_PIPE | FSCTL_ACCESS_ANY | 0x0018 | FSCTL_METHOD_BUFFERED)
533
534 #define FSCTL_NETWORK_FILESYSTEM        0x00140000
535 #define FSCTL_GET_SHADOW_COPY_DATA      (FSCTL_NETWORK_FILESYSTEM | FSCTL_ACCESS_READ | 0x0064 | FSCTL_METHOD_BUFFERED)
536 #define FSCTL_SRV_ENUM_SNAPS            FSCTL_GET_SHADOW_COPY_DATA      /* SMB2 function name */
537 #define FSCTL_SRV_REQUEST_RESUME_KEY    (FSCTL_NETWORK_FILESYSTEM | FSCTL_ACCESS_ANY | 0x0078 | FSCTL_METHOD_BUFFERED)
538 #define FSCTL_SRV_COPYCHUNK             (FSCTL_NETWORK_FILESYSTEM | FSCTL_ACCESS_READ | 0x00F0 | FSCTL_METHOD_OUT_DIRECT)
539 #define FSCTL_SRV_COPYCHUNK_WRITE       (FSCTL_NETWORK_FILESYSTEM | FSCTL_ACCESS_WRITE | 0x00F0 | FSCTL_METHOD_OUT_DIRECT)
540 #define FSCTL_SRV_READ_HASH             (FSCTL_NETWORK_FILESYSTEM | FSCTL_ACCESS_READ| 0x01B8 | FSCTL_METHOD_NEITHER)
541 #define FSCTL_LMR_REQ_RESILIENCY        (FSCTL_NETWORK_FILESYSTEM | FSCTL_ACCESS_ANY | 0x01D4 | FSCTL_METHOD_BUFFERED)
542 #define FSCTL_LMR_SET_LINK_TRACKING_INFORMATION \
543         (FSCTL_NETWORK_FILESYSTEM | FSCTL_ACCESS_ANY | 0x00EC | FSCTL_METHOD_BUFFERED)
544 #define FSCTL_QUERY_NETWORK_INTERFACE_INFO \
545         (FSCTL_NETWORK_FILESYSTEM | FSCTL_ACCESS_ANY | 0x01FC | FSCTL_METHOD_BUFFERED)
546
547 /*
548  * FSCTL_VALIDATE_NEGOTIATE_INFO_224 was used used in
549  * Windows 8 server beta with SMB 2.24
550  */
551 #define FSCTL_VALIDATE_NEGOTIATE_INFO_224 \
552         (FSCTL_NETWORK_FILESYSTEM | FSCTL_ACCESS_ANY | 0x0200 | FSCTL_METHOD_BUFFERED)
553 #define FSCTL_VALIDATE_NEGOTIATE_INFO   (FSCTL_NETWORK_FILESYSTEM | FSCTL_ACCESS_ANY | 0x0204 | FSCTL_METHOD_BUFFERED)
554
555 #endif /* _SMB_CONSTANTS_H */