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