]> git.ipfire.org Git - thirdparty/linux.git/blob - fs/cifs/smb2pdu.h
e9cc6775df21bde48e0e6e4b6eb181bbb528814e
[thirdparty/linux.git] / fs / cifs / smb2pdu.h
1 /*
2 * fs/cifs/smb2pdu.h
3 *
4 * Copyright (c) International Business Machines Corp., 2009, 2013
5 * Etersoft, 2012
6 * Author(s): Steve French (sfrench@us.ibm.com)
7 * Pavel Shilovsky (pshilovsky@samba.org) 2012
8 *
9 * This library is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU Lesser General Public License as published
11 * by the Free Software Foundation; either version 2.1 of the License, or
12 * (at your option) any later version.
13 *
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
17 * the GNU Lesser General Public License for more details.
18 *
19 * You should have received a copy of the GNU Lesser General Public License
20 * along with this library; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 */
23
24 #ifndef _SMB2PDU_H
25 #define _SMB2PDU_H
26
27 #include <net/sock.h>
28
29 /*
30 * Note that, due to trying to use names similar to the protocol specifications,
31 * there are many mixed case field names in the structures below. Although
32 * this does not match typical Linux kernel style, it is necessary to be
33 * be able to match against the protocol specfication.
34 *
35 * SMB2 commands
36 * Some commands have minimal (wct=0,bcc=0), or uninteresting, responses
37 * (ie no useful data other than the SMB error code itself) and are marked such.
38 * Knowing this helps avoid response buffer allocations and copy in some cases.
39 */
40
41 /* List of commands in host endian */
42 #define SMB2_NEGOTIATE_HE 0x0000
43 #define SMB2_SESSION_SETUP_HE 0x0001
44 #define SMB2_LOGOFF_HE 0x0002 /* trivial request/resp */
45 #define SMB2_TREE_CONNECT_HE 0x0003
46 #define SMB2_TREE_DISCONNECT_HE 0x0004 /* trivial req/resp */
47 #define SMB2_CREATE_HE 0x0005
48 #define SMB2_CLOSE_HE 0x0006
49 #define SMB2_FLUSH_HE 0x0007 /* trivial resp */
50 #define SMB2_READ_HE 0x0008
51 #define SMB2_WRITE_HE 0x0009
52 #define SMB2_LOCK_HE 0x000A
53 #define SMB2_IOCTL_HE 0x000B
54 #define SMB2_CANCEL_HE 0x000C
55 #define SMB2_ECHO_HE 0x000D
56 #define SMB2_QUERY_DIRECTORY_HE 0x000E
57 #define SMB2_CHANGE_NOTIFY_HE 0x000F
58 #define SMB2_QUERY_INFO_HE 0x0010
59 #define SMB2_SET_INFO_HE 0x0011
60 #define SMB2_OPLOCK_BREAK_HE 0x0012
61
62 /* The same list in little endian */
63 #define SMB2_NEGOTIATE cpu_to_le16(SMB2_NEGOTIATE_HE)
64 #define SMB2_SESSION_SETUP cpu_to_le16(SMB2_SESSION_SETUP_HE)
65 #define SMB2_LOGOFF cpu_to_le16(SMB2_LOGOFF_HE)
66 #define SMB2_TREE_CONNECT cpu_to_le16(SMB2_TREE_CONNECT_HE)
67 #define SMB2_TREE_DISCONNECT cpu_to_le16(SMB2_TREE_DISCONNECT_HE)
68 #define SMB2_CREATE cpu_to_le16(SMB2_CREATE_HE)
69 #define SMB2_CLOSE cpu_to_le16(SMB2_CLOSE_HE)
70 #define SMB2_FLUSH cpu_to_le16(SMB2_FLUSH_HE)
71 #define SMB2_READ cpu_to_le16(SMB2_READ_HE)
72 #define SMB2_WRITE cpu_to_le16(SMB2_WRITE_HE)
73 #define SMB2_LOCK cpu_to_le16(SMB2_LOCK_HE)
74 #define SMB2_IOCTL cpu_to_le16(SMB2_IOCTL_HE)
75 #define SMB2_CANCEL cpu_to_le16(SMB2_CANCEL_HE)
76 #define SMB2_ECHO cpu_to_le16(SMB2_ECHO_HE)
77 #define SMB2_QUERY_DIRECTORY cpu_to_le16(SMB2_QUERY_DIRECTORY_HE)
78 #define SMB2_CHANGE_NOTIFY cpu_to_le16(SMB2_CHANGE_NOTIFY_HE)
79 #define SMB2_QUERY_INFO cpu_to_le16(SMB2_QUERY_INFO_HE)
80 #define SMB2_SET_INFO cpu_to_le16(SMB2_SET_INFO_HE)
81 #define SMB2_OPLOCK_BREAK cpu_to_le16(SMB2_OPLOCK_BREAK_HE)
82
83 #define SMB2_INTERNAL_CMD cpu_to_le16(0xFFFF)
84
85 #define NUMBER_OF_SMB2_COMMANDS 0x0013
86
87 /* 52 transform hdr + 64 hdr + 88 create rsp */
88 #define MAX_SMB2_HDR_SIZE 204
89
90 #define SMB2_PROTO_NUMBER cpu_to_le32(0x424d53fe)
91 #define SMB2_TRANSFORM_PROTO_NUM cpu_to_le32(0x424d53fd)
92
93 /*
94 * SMB2 Header Definition
95 *
96 * "MBZ" : Must be Zero
97 * "BB" : BugBug, Something to check/review/analyze later
98 * "PDU" : "Protocol Data Unit" (ie a network "frame")
99 *
100 */
101
102 #define SMB2_HEADER_STRUCTURE_SIZE cpu_to_le16(64)
103
104 struct smb2_sync_hdr {
105 __le32 ProtocolId; /* 0xFE 'S' 'M' 'B' */
106 __le16 StructureSize; /* 64 */
107 __le16 CreditCharge; /* MBZ */
108 __le32 Status; /* Error from server */
109 __le16 Command;
110 __le16 CreditRequest; /* CreditResponse */
111 __le32 Flags;
112 __le32 NextCommand;
113 __le64 MessageId;
114 __le32 ProcessId;
115 __u32 TreeId; /* opaque - so do not make little endian */
116 __u64 SessionId; /* opaque - so do not make little endian */
117 __u8 Signature[16];
118 } __packed;
119
120 struct smb2_sync_pdu {
121 struct smb2_sync_hdr sync_hdr;
122 __le16 StructureSize2; /* size of wct area (varies, request specific) */
123 } __packed;
124
125 #define SMB3_AES128CMM_NONCE 11
126 #define SMB3_AES128GCM_NONCE 12
127
128 struct smb2_transform_hdr {
129 __le32 ProtocolId; /* 0xFD 'S' 'M' 'B' */
130 __u8 Signature[16];
131 __u8 Nonce[16];
132 __le32 OriginalMessageSize;
133 __u16 Reserved1;
134 __le16 Flags; /* EncryptionAlgorithm */
135 __u64 SessionId;
136 } __packed;
137
138 /*
139 * SMB2 flag definitions
140 */
141 #define SMB2_FLAGS_SERVER_TO_REDIR cpu_to_le32(0x00000001)
142 #define SMB2_FLAGS_ASYNC_COMMAND cpu_to_le32(0x00000002)
143 #define SMB2_FLAGS_RELATED_OPERATIONS cpu_to_le32(0x00000004)
144 #define SMB2_FLAGS_SIGNED cpu_to_le32(0x00000008)
145 #define SMB2_FLAGS_DFS_OPERATIONS cpu_to_le32(0x10000000)
146
147 /*
148 * Definitions for SMB2 Protocol Data Units (network frames)
149 *
150 * See MS-SMB2.PDF specification for protocol details.
151 * The Naming convention is the lower case version of the SMB2
152 * command code name for the struct. Note that structures must be packed.
153 *
154 */
155
156 #define COMPOUND_FID 0xFFFFFFFFFFFFFFFFULL
157
158 #define SMB2_ERROR_STRUCTURE_SIZE2 cpu_to_le16(9)
159
160 struct smb2_err_rsp {
161 struct smb2_sync_hdr sync_hdr;
162 __le16 StructureSize;
163 __le16 Reserved; /* MBZ */
164 __le32 ByteCount; /* even if zero, at least one byte follows */
165 __u8 ErrorData[1]; /* variable length */
166 } __packed;
167
168 struct smb2_symlink_err_rsp {
169 __le32 SymLinkLength;
170 __le32 SymLinkErrorTag;
171 __le32 ReparseTag;
172 __le16 ReparseDataLength;
173 __le16 UnparsedPathLength;
174 __le16 SubstituteNameOffset;
175 __le16 SubstituteNameLength;
176 __le16 PrintNameOffset;
177 __le16 PrintNameLength;
178 __le32 Flags;
179 __u8 PathBuffer[0];
180 } __packed;
181
182 /* SMB 3.1.1 and later dialects. See MS-SMB2 section 2.2.2.1 */
183 struct smb2_error_context_rsp {
184 __le32 ErrorDataLength;
185 __le32 ErrorId;
186 __u8 ErrorContextData; /* ErrorDataLength long array */
187 } __packed;
188
189 /* Defines for Type field below (see MS-SMB2 2.2.2.2.2.1) */
190 #define MOVE_DST_IPADDR_V4 cpu_to_le32(0x00000001)
191 #define MOVE_DST_IPADDR_V6 cpu_to_le32(0x00000002)
192
193 struct move_dst_ipaddr {
194 __le32 Type;
195 __u32 Reserved;
196 __u8 address[16]; /* IPv4 followed by 12 bytes rsvd or IPv6 address */
197 } __packed;
198
199 struct share_redirect_error_context_rsp {
200 __le32 StructureSize;
201 __le32 NotificationType;
202 __le32 ResourceNameOffset;
203 __le32 ResourceNameLength;
204 __le16 Flags;
205 __le16 TargetType;
206 __le32 IPAddrCount;
207 struct move_dst_ipaddr IpAddrMoveList[0];
208 /* __u8 ResourceName[] */ /* Name of share as counted Unicode string */
209 } __packed;
210
211 #define SMB2_CLIENT_GUID_SIZE 16
212
213 struct smb2_negotiate_req {
214 struct smb2_sync_hdr sync_hdr;
215 __le16 StructureSize; /* Must be 36 */
216 __le16 DialectCount;
217 __le16 SecurityMode;
218 __le16 Reserved; /* MBZ */
219 __le32 Capabilities;
220 __u8 ClientGUID[SMB2_CLIENT_GUID_SIZE];
221 /* In SMB3.02 and earlier next three were MBZ le64 ClientStartTime */
222 __le32 NegotiateContextOffset; /* SMB3.1.1 only. MBZ earlier */
223 __le16 NegotiateContextCount; /* SMB3.1.1 only. MBZ earlier */
224 __le16 Reserved2;
225 __le16 Dialects[1]; /* One dialect (vers=) at a time for now */
226 } __packed;
227
228 /* Dialects */
229 #define SMB20_PROT_ID 0x0202
230 #define SMB21_PROT_ID 0x0210
231 #define SMB30_PROT_ID 0x0300
232 #define SMB302_PROT_ID 0x0302
233 #define SMB311_PROT_ID 0x0311
234 #define BAD_PROT_ID 0xFFFF
235
236 /* SecurityMode flags */
237 #define SMB2_NEGOTIATE_SIGNING_ENABLED 0x0001
238 #define SMB2_NEGOTIATE_SIGNING_REQUIRED 0x0002
239 #define SMB2_SEC_MODE_FLAGS_ALL 0x0003
240
241 /* Capabilities flags */
242 #define SMB2_GLOBAL_CAP_DFS 0x00000001
243 #define SMB2_GLOBAL_CAP_LEASING 0x00000002 /* Resp only New to SMB2.1 */
244 #define SMB2_GLOBAL_CAP_LARGE_MTU 0X00000004 /* Resp only New to SMB2.1 */
245 #define SMB2_GLOBAL_CAP_MULTI_CHANNEL 0x00000008 /* New to SMB3 */
246 #define SMB2_GLOBAL_CAP_PERSISTENT_HANDLES 0x00000010 /* New to SMB3 */
247 #define SMB2_GLOBAL_CAP_DIRECTORY_LEASING 0x00000020 /* New to SMB3 */
248 #define SMB2_GLOBAL_CAP_ENCRYPTION 0x00000040 /* New to SMB3 */
249 /* Internal types */
250 #define SMB2_NT_FIND 0x00100000
251 #define SMB2_LARGE_FILES 0x00200000
252
253 struct smb2_neg_context {
254 __le16 ContextType;
255 __le16 DataLength;
256 __le32 Reserved;
257 /* Followed by array of data */
258 } __packed;
259
260 #define SMB311_SALT_SIZE 32
261 /* Hash Algorithm Types */
262 #define SMB2_PREAUTH_INTEGRITY_SHA512 cpu_to_le16(0x0001)
263 #define SMB2_PREAUTH_HASH_SIZE 64
264
265 #define MIN_PREAUTH_CTXT_DATA_LEN (SMB311_SALT_SIZE + 6)
266 struct smb2_preauth_neg_context {
267 __le16 ContextType; /* 1 */
268 __le16 DataLength;
269 __le32 Reserved;
270 __le16 HashAlgorithmCount; /* 1 */
271 __le16 SaltLength;
272 __le16 HashAlgorithms; /* HashAlgorithms[0] since only one defined */
273 __u8 Salt[SMB311_SALT_SIZE];
274 } __packed;
275
276 /* Encryption Algorithms Ciphers */
277 #define SMB2_ENCRYPTION_AES128_CCM cpu_to_le16(0x0001)
278 #define SMB2_ENCRYPTION_AES128_GCM cpu_to_le16(0x0002)
279
280 /* Min encrypt context data is one cipher so 2 bytes + 2 byte count field */
281 #define MIN_ENCRYPT_CTXT_DATA_LEN 4
282 struct smb2_encryption_neg_context {
283 __le16 ContextType; /* 2 */
284 __le16 DataLength;
285 __le32 Reserved;
286 __le16 CipherCount; /* AES-128-GCM and AES-128-CCM */
287 __le16 Ciphers[1]; /* Ciphers[0] since only one used now */
288 } __packed;
289
290 #define POSIX_CTXT_DATA_LEN 8
291 struct smb2_posix_neg_context {
292 __le16 ContextType; /* 0x100 */
293 __le16 DataLength;
294 __le32 Reserved;
295 __le64 Reserved1; /* In case needed for future (eg version or caps) */
296 } __packed;
297
298 struct smb2_negotiate_rsp {
299 struct smb2_sync_hdr sync_hdr;
300 __le16 StructureSize; /* Must be 65 */
301 __le16 SecurityMode;
302 __le16 DialectRevision;
303 __le16 NegotiateContextCount; /* Prior to SMB3.1.1 was Reserved & MBZ */
304 __u8 ServerGUID[16];
305 __le32 Capabilities;
306 __le32 MaxTransactSize;
307 __le32 MaxReadSize;
308 __le32 MaxWriteSize;
309 __le64 SystemTime; /* MBZ */
310 __le64 ServerStartTime;
311 __le16 SecurityBufferOffset;
312 __le16 SecurityBufferLength;
313 __le32 NegotiateContextOffset; /* Pre:SMB3.1.1 was reserved/ignored */
314 __u8 Buffer[1]; /* variable length GSS security buffer */
315 } __packed;
316
317 /* Flags */
318 #define SMB2_SESSION_REQ_FLAG_BINDING 0x01
319 #define SMB2_SESSION_REQ_FLAG_ENCRYPT_DATA 0x04
320
321 struct smb2_sess_setup_req {
322 struct smb2_sync_hdr sync_hdr;
323 __le16 StructureSize; /* Must be 25 */
324 __u8 Flags;
325 __u8 SecurityMode;
326 __le32 Capabilities;
327 __le32 Channel;
328 __le16 SecurityBufferOffset;
329 __le16 SecurityBufferLength;
330 __u64 PreviousSessionId;
331 __u8 Buffer[1]; /* variable length GSS security buffer */
332 } __packed;
333
334 /* Currently defined SessionFlags */
335 #define SMB2_SESSION_FLAG_IS_GUEST 0x0001
336 #define SMB2_SESSION_FLAG_IS_NULL 0x0002
337 #define SMB2_SESSION_FLAG_ENCRYPT_DATA 0x0004
338 struct smb2_sess_setup_rsp {
339 struct smb2_sync_hdr sync_hdr;
340 __le16 StructureSize; /* Must be 9 */
341 __le16 SessionFlags;
342 __le16 SecurityBufferOffset;
343 __le16 SecurityBufferLength;
344 __u8 Buffer[1]; /* variable length GSS security buffer */
345 } __packed;
346
347 struct smb2_logoff_req {
348 struct smb2_sync_hdr sync_hdr;
349 __le16 StructureSize; /* Must be 4 */
350 __le16 Reserved;
351 } __packed;
352
353 struct smb2_logoff_rsp {
354 struct smb2_sync_hdr sync_hdr;
355 __le16 StructureSize; /* Must be 4 */
356 __le16 Reserved;
357 } __packed;
358
359 /* Flags/Reserved for SMB3.1.1 */
360 #define SMB2_TREE_CONNECT_FLAG_CLUSTER_RECONNECT cpu_to_le16(0x0001)
361 #define SMB2_TREE_CONNECT_FLAG_REDIRECT_TO_OWNER cpu_to_le16(0x0002)
362 #define SMB2_TREE_CONNECT_FLAG_EXTENSION_PRESENT cpu_to_le16(0x0004)
363
364 struct smb2_tree_connect_req {
365 struct smb2_sync_hdr sync_hdr;
366 __le16 StructureSize; /* Must be 9 */
367 __le16 Reserved; /* Flags in SMB3.1.1 */
368 __le16 PathOffset;
369 __le16 PathLength;
370 __u8 Buffer[1]; /* variable length */
371 } __packed;
372
373 /* See MS-SMB2 section 2.2.9.2 */
374 /* Context Types */
375 #define SMB2_RESERVED_TREE_CONNECT_CONTEXT_ID 0x0000
376 #define SMB2_REMOTED_IDENTITY_TREE_CONNECT_CONTEXT_ID cpu_to_le16(0x0001)
377
378 struct tree_connect_contexts {
379 __le16 ContextType;
380 __le16 DataLength;
381 __le32 Reserved;
382 __u8 Data[0];
383 } __packed;
384
385 /* Remoted identity tree connect context structures - see MS-SMB2 2.2.9.2.1 */
386 struct smb3_blob_data {
387 __le16 BlobSize;
388 __u8 BlobData[0];
389 } __packed;
390
391 /* Valid values for Attr */
392 #define SE_GROUP_MANDATORY 0x00000001
393 #define SE_GROUP_ENABLED_BY_DEFAULT 0x00000002
394 #define SE_GROUP_ENABLED 0x00000004
395 #define SE_GROUP_OWNER 0x00000008
396 #define SE_GROUP_USE_FOR_DENY_ONLY 0x00000010
397 #define SE_GROUP_INTEGRITY 0x00000020
398 #define SE_GROUP_INTEGRITY_ENABLED 0x00000040
399 #define SE_GROUP_RESOURCE 0x20000000
400 #define SE_GROUP_LOGON_ID 0xC0000000
401
402 /* struct sid_attr_data is SidData array in BlobData format then le32 Attr */
403
404 struct sid_array_data {
405 __le16 SidAttrCount;
406 /* SidAttrList - array of sid_attr_data structs */
407 } __packed;
408
409 struct luid_attr_data {
410
411 } __packed;
412
413 /*
414 * struct privilege_data is the same as BLOB_DATA - see MS-SMB2 2.2.9.2.1.5
415 * but with size of LUID_ATTR_DATA struct and BlobData set to LUID_ATTR DATA
416 */
417
418 struct privilege_array_data {
419 __le16 PrivilegeCount;
420 /* array of privilege_data structs */
421 } __packed;
422
423 struct remoted_identity_tcon_context {
424 __le16 TicketType; /* must be 0x0001 */
425 __le16 TicketSize; /* total size of this struct */
426 __le16 User; /* offset to SID_ATTR_DATA struct with user info */
427 __le16 UserName; /* offset to null terminated Unicode username string */
428 __le16 Domain; /* offset to null terminated Unicode domain name */
429 __le16 Groups; /* offset to SID_ARRAY_DATA struct with group info */
430 __le16 RestrictedGroups; /* similar to above */
431 __le16 Privileges; /* offset to PRIVILEGE_ARRAY_DATA struct */
432 __le16 PrimaryGroup; /* offset to SID_ARRAY_DATA struct */
433 __le16 Owner; /* offset to BLOB_DATA struct */
434 __le16 DefaultDacl; /* offset to BLOB_DATA struct */
435 __le16 DeviceGroups; /* offset to SID_ARRAY_DATA struct */
436 __le16 UserClaims; /* offset to BLOB_DATA struct */
437 __le16 DeviceClaims; /* offset to BLOB_DATA struct */
438 __u8 TicketInfo[0]; /* variable length buf - remoted identity data */
439 } __packed;
440
441 struct smb2_tree_connect_req_extension {
442 __le32 TreeConnectContextOffset;
443 __le16 TreeConnectContextCount;
444 __u8 Reserved[10];
445 __u8 PathName[0]; /* variable sized array */
446 /* followed by array of TreeConnectContexts */
447 } __packed;
448
449 struct smb2_tree_connect_rsp {
450 struct smb2_sync_hdr sync_hdr;
451 __le16 StructureSize; /* Must be 16 */
452 __u8 ShareType; /* see below */
453 __u8 Reserved;
454 __le32 ShareFlags; /* see below */
455 __le32 Capabilities; /* see below */
456 __le32 MaximalAccess;
457 } __packed;
458
459 /* Possible ShareType values */
460 #define SMB2_SHARE_TYPE_DISK 0x01
461 #define SMB2_SHARE_TYPE_PIPE 0x02
462 #define SMB2_SHARE_TYPE_PRINT 0x03
463
464 /*
465 * Possible ShareFlags - exactly one and only one of the first 4 caching flags
466 * must be set (any of the remaining, SHI1005, flags may be set individually
467 * or in combination.
468 */
469 #define SMB2_SHAREFLAG_MANUAL_CACHING 0x00000000
470 #define SMB2_SHAREFLAG_AUTO_CACHING 0x00000010
471 #define SMB2_SHAREFLAG_VDO_CACHING 0x00000020
472 #define SMB2_SHAREFLAG_NO_CACHING 0x00000030
473 #define SHI1005_FLAGS_DFS 0x00000001
474 #define SHI1005_FLAGS_DFS_ROOT 0x00000002
475 #define SHI1005_FLAGS_RESTRICT_EXCLUSIVE_OPENS 0x00000100
476 #define SHI1005_FLAGS_FORCE_SHARED_DELETE 0x00000200
477 #define SHI1005_FLAGS_ALLOW_NAMESPACE_CACHING 0x00000400
478 #define SHI1005_FLAGS_ACCESS_BASED_DIRECTORY_ENUM 0x00000800
479 #define SHI1005_FLAGS_FORCE_LEVELII_OPLOCK 0x00001000
480 #define SHI1005_FLAGS_ENABLE_HASH_V1 0x00002000
481 #define SHI1005_FLAGS_ENABLE_HASH_V2 0x00004000
482 #define SHI1005_FLAGS_ENCRYPT_DATA 0x00008000
483 #define SMB2_SHAREFLAG_IDENTITY_REMOTING 0x00040000 /* 3.1.1 */
484 #define SHI1005_FLAGS_ALL 0x0004FF33
485
486 /* Possible share capabilities */
487 #define SMB2_SHARE_CAP_DFS cpu_to_le32(0x00000008) /* all dialects */
488 #define SMB2_SHARE_CAP_CONTINUOUS_AVAILABILITY cpu_to_le32(0x00000010) /* 3.0 */
489 #define SMB2_SHARE_CAP_SCALEOUT cpu_to_le32(0x00000020) /* 3.0 */
490 #define SMB2_SHARE_CAP_CLUSTER cpu_to_le32(0x00000040) /* 3.0 */
491 #define SMB2_SHARE_CAP_ASYMMETRIC cpu_to_le32(0x00000080) /* 3.02 */
492 #define SMB2_SHARE_CAP_REDIRECT_TO_OWNER cpu_to_le32(0x00000100) /* 3.1.1 */
493
494 struct smb2_tree_disconnect_req {
495 struct smb2_sync_hdr sync_hdr;
496 __le16 StructureSize; /* Must be 4 */
497 __le16 Reserved;
498 } __packed;
499
500 struct smb2_tree_disconnect_rsp {
501 struct smb2_sync_hdr sync_hdr;
502 __le16 StructureSize; /* Must be 4 */
503 __le16 Reserved;
504 } __packed;
505
506 /* File Attrubutes */
507 #define FILE_ATTRIBUTE_READONLY 0x00000001
508 #define FILE_ATTRIBUTE_HIDDEN 0x00000002
509 #define FILE_ATTRIBUTE_SYSTEM 0x00000004
510 #define FILE_ATTRIBUTE_DIRECTORY 0x00000010
511 #define FILE_ATTRIBUTE_ARCHIVE 0x00000020
512 #define FILE_ATTRIBUTE_NORMAL 0x00000080
513 #define FILE_ATTRIBUTE_TEMPORARY 0x00000100
514 #define FILE_ATTRIBUTE_SPARSE_FILE 0x00000200
515 #define FILE_ATTRIBUTE_REPARSE_POINT 0x00000400
516 #define FILE_ATTRIBUTE_COMPRESSED 0x00000800
517 #define FILE_ATTRIBUTE_OFFLINE 0x00001000
518 #define FILE_ATTRIBUTE_NOT_CONTENT_INDEXED 0x00002000
519 #define FILE_ATTRIBUTE_ENCRYPTED 0x00004000
520 #define FILE_ATTRIBUTE_INTEGRITY_STREAM 0x00008000
521 #define FILE_ATTRIBUTE_NO_SCRUB_DATA 0x00020000
522
523 /* Oplock levels */
524 #define SMB2_OPLOCK_LEVEL_NONE 0x00
525 #define SMB2_OPLOCK_LEVEL_II 0x01
526 #define SMB2_OPLOCK_LEVEL_EXCLUSIVE 0x08
527 #define SMB2_OPLOCK_LEVEL_BATCH 0x09
528 #define SMB2_OPLOCK_LEVEL_LEASE 0xFF
529 /* Non-spec internal type */
530 #define SMB2_OPLOCK_LEVEL_NOCHANGE 0x99
531
532 /* Desired Access Flags */
533 #define FILE_READ_DATA_LE cpu_to_le32(0x00000001)
534 #define FILE_WRITE_DATA_LE cpu_to_le32(0x00000002)
535 #define FILE_APPEND_DATA_LE cpu_to_le32(0x00000004)
536 #define FILE_READ_EA_LE cpu_to_le32(0x00000008)
537 #define FILE_WRITE_EA_LE cpu_to_le32(0x00000010)
538 #define FILE_EXECUTE_LE cpu_to_le32(0x00000020)
539 #define FILE_READ_ATTRIBUTES_LE cpu_to_le32(0x00000080)
540 #define FILE_WRITE_ATTRIBUTES_LE cpu_to_le32(0x00000100)
541 #define FILE_DELETE_LE cpu_to_le32(0x00010000)
542 #define FILE_READ_CONTROL_LE cpu_to_le32(0x00020000)
543 #define FILE_WRITE_DAC_LE cpu_to_le32(0x00040000)
544 #define FILE_WRITE_OWNER_LE cpu_to_le32(0x00080000)
545 #define FILE_SYNCHRONIZE_LE cpu_to_le32(0x00100000)
546 #define FILE_ACCESS_SYSTEM_SECURITY_LE cpu_to_le32(0x01000000)
547 #define FILE_MAXIMAL_ACCESS_LE cpu_to_le32(0x02000000)
548 #define FILE_GENERIC_ALL_LE cpu_to_le32(0x10000000)
549 #define FILE_GENERIC_EXECUTE_LE cpu_to_le32(0x20000000)
550 #define FILE_GENERIC_WRITE_LE cpu_to_le32(0x40000000)
551 #define FILE_GENERIC_READ_LE cpu_to_le32(0x80000000)
552
553 /* ShareAccess Flags */
554 #define FILE_SHARE_READ_LE cpu_to_le32(0x00000001)
555 #define FILE_SHARE_WRITE_LE cpu_to_le32(0x00000002)
556 #define FILE_SHARE_DELETE_LE cpu_to_le32(0x00000004)
557 #define FILE_SHARE_ALL_LE cpu_to_le32(0x00000007)
558
559 /* CreateDisposition Flags */
560 #define FILE_SUPERSEDE_LE cpu_to_le32(0x00000000)
561 #define FILE_OPEN_LE cpu_to_le32(0x00000001)
562 #define FILE_CREATE_LE cpu_to_le32(0x00000002)
563 #define FILE_OPEN_IF_LE cpu_to_le32(0x00000003)
564 #define FILE_OVERWRITE_LE cpu_to_le32(0x00000004)
565 #define FILE_OVERWRITE_IF_LE cpu_to_le32(0x00000005)
566
567 /* CreateOptions Flags */
568 #define FILE_DIRECTORY_FILE_LE cpu_to_le32(0x00000001)
569 /* same as #define CREATE_NOT_FILE_LE cpu_to_le32(0x00000001) */
570 #define FILE_WRITE_THROUGH_LE cpu_to_le32(0x00000002)
571 #define FILE_SEQUENTIAL_ONLY_LE cpu_to_le32(0x00000004)
572 #define FILE_NO_INTERMEDIATE_BUFFERRING_LE cpu_to_le32(0x00000008)
573 #define FILE_SYNCHRONOUS_IO_ALERT_LE cpu_to_le32(0x00000010)
574 #define FILE_SYNCHRONOUS_IO_NON_ALERT_LE cpu_to_le32(0x00000020)
575 #define FILE_NON_DIRECTORY_FILE_LE cpu_to_le32(0x00000040)
576 #define FILE_COMPLETE_IF_OPLOCKED_LE cpu_to_le32(0x00000100)
577 #define FILE_NO_EA_KNOWLEDGE_LE cpu_to_le32(0x00000200)
578 #define FILE_RANDOM_ACCESS_LE cpu_to_le32(0x00000800)
579 #define FILE_DELETE_ON_CLOSE_LE cpu_to_le32(0x00001000)
580 #define FILE_OPEN_BY_FILE_ID_LE cpu_to_le32(0x00002000)
581 #define FILE_OPEN_FOR_BACKUP_INTENT_LE cpu_to_le32(0x00004000)
582 #define FILE_NO_COMPRESSION_LE cpu_to_le32(0x00008000)
583 #define FILE_RESERVE_OPFILTER_LE cpu_to_le32(0x00100000)
584 #define FILE_OPEN_REPARSE_POINT_LE cpu_to_le32(0x00200000)
585 #define FILE_OPEN_NO_RECALL_LE cpu_to_le32(0x00400000)
586 #define FILE_OPEN_FOR_FREE_SPACE_QUERY_LE cpu_to_le32(0x00800000)
587
588 #define FILE_READ_RIGHTS_LE (FILE_READ_DATA_LE | FILE_READ_EA_LE \
589 | FILE_READ_ATTRIBUTES_LE)
590 #define FILE_WRITE_RIGHTS_LE (FILE_WRITE_DATA_LE | FILE_APPEND_DATA_LE \
591 | FILE_WRITE_EA_LE | FILE_WRITE_ATTRIBUTES_LE)
592 #define FILE_EXEC_RIGHTS_LE (FILE_EXECUTE_LE)
593
594 /* Impersonation Levels */
595 #define IL_ANONYMOUS cpu_to_le32(0x00000000)
596 #define IL_IDENTIFICATION cpu_to_le32(0x00000001)
597 #define IL_IMPERSONATION cpu_to_le32(0x00000002)
598 #define IL_DELEGATE cpu_to_le32(0x00000003)
599
600 /* Create Context Values */
601 #define SMB2_CREATE_EA_BUFFER "ExtA" /* extended attributes */
602 #define SMB2_CREATE_SD_BUFFER "SecD" /* security descriptor */
603 #define SMB2_CREATE_DURABLE_HANDLE_REQUEST "DHnQ"
604 #define SMB2_CREATE_DURABLE_HANDLE_RECONNECT "DHnC"
605 #define SMB2_CREATE_ALLOCATION_SIZE "AISi"
606 #define SMB2_CREATE_QUERY_MAXIMAL_ACCESS_REQUEST "MxAc"
607 #define SMB2_CREATE_TIMEWARP_REQUEST "TWrp"
608 #define SMB2_CREATE_QUERY_ON_DISK_ID "QFid"
609 #define SMB2_CREATE_REQUEST_LEASE "RqLs"
610 #define SMB2_CREATE_DURABLE_HANDLE_REQUEST_V2 "DH2Q"
611 #define SMB2_CREATE_DURABLE_HANDLE_RECONNECT_V2 "DH2C"
612 #define SMB2_CREATE_APP_INSTANCE_ID 0x45BCA66AEFA7F74A9008FA462E144D74
613 #define SVHDX_OPEN_DEVICE_CONTEX 0x9CCBCF9E04C1E643980E158DA1F6EC83
614 #define SMB2_CREATE_TAG_POSIX 0x93AD25509CB411E7B42383DE968BCD7C
615
616 /* Flag (SMB3 open response) values */
617 #define SMB2_CREATE_FLAG_REPARSEPOINT 0x01
618
619 /*
620 * Maximum number of iovs we need for an open/create request.
621 * [0] : struct smb2_create_req
622 * [1] : path
623 * [2] : lease context
624 * [3] : durable context
625 * [4] : posix context
626 * [5] : time warp context
627 * [6] : compound padding
628 */
629 #define SMB2_CREATE_IOV_SIZE 7
630
631 struct smb2_create_req {
632 struct smb2_sync_hdr sync_hdr;
633 __le16 StructureSize; /* Must be 57 */
634 __u8 SecurityFlags;
635 __u8 RequestedOplockLevel;
636 __le32 ImpersonationLevel;
637 __le64 SmbCreateFlags;
638 __le64 Reserved;
639 __le32 DesiredAccess;
640 __le32 FileAttributes;
641 __le32 ShareAccess;
642 __le32 CreateDisposition;
643 __le32 CreateOptions;
644 __le16 NameOffset;
645 __le16 NameLength;
646 __le32 CreateContextsOffset;
647 __le32 CreateContextsLength;
648 __u8 Buffer[0];
649 } __packed;
650
651 struct smb2_create_rsp {
652 struct smb2_sync_hdr sync_hdr;
653 __le16 StructureSize; /* Must be 89 */
654 __u8 OplockLevel;
655 __u8 Flag; /* 0x01 if reparse point */
656 __le32 CreateAction;
657 __le64 CreationTime;
658 __le64 LastAccessTime;
659 __le64 LastWriteTime;
660 __le64 ChangeTime;
661 __le64 AllocationSize;
662 __le64 EndofFile;
663 __le32 FileAttributes;
664 __le32 Reserved2;
665 __u64 PersistentFileId; /* opaque endianness */
666 __u64 VolatileFileId; /* opaque endianness */
667 __le32 CreateContextsOffset;
668 __le32 CreateContextsLength;
669 __u8 Buffer[1];
670 } __packed;
671
672 struct create_context {
673 __le32 Next;
674 __le16 NameOffset;
675 __le16 NameLength;
676 __le16 Reserved;
677 __le16 DataOffset;
678 __le32 DataLength;
679 __u8 Buffer[0];
680 } __packed;
681
682 #define SMB2_LEASE_READ_CACHING_HE 0x01
683 #define SMB2_LEASE_HANDLE_CACHING_HE 0x02
684 #define SMB2_LEASE_WRITE_CACHING_HE 0x04
685
686 #define SMB2_LEASE_NONE cpu_to_le32(0x00)
687 #define SMB2_LEASE_READ_CACHING cpu_to_le32(0x01)
688 #define SMB2_LEASE_HANDLE_CACHING cpu_to_le32(0x02)
689 #define SMB2_LEASE_WRITE_CACHING cpu_to_le32(0x04)
690
691 #define SMB2_LEASE_FLAG_BREAK_IN_PROGRESS cpu_to_le32(0x02)
692 #define SMB2_LEASE_FLAG_PARENT_LEASE_KEY_SET cpu_to_le32(0x00000004)
693
694 #define SMB2_LEASE_KEY_SIZE 16
695
696 struct lease_context {
697 u8 LeaseKey[SMB2_LEASE_KEY_SIZE];
698 __le32 LeaseState;
699 __le32 LeaseFlags;
700 __le64 LeaseDuration;
701 } __packed;
702
703 struct lease_context_v2 {
704 u8 LeaseKey[SMB2_LEASE_KEY_SIZE];
705 __le32 LeaseState;
706 __le32 LeaseFlags;
707 __le64 LeaseDuration;
708 __le64 ParentLeaseKeyLow;
709 __le64 ParentLeaseKeyHigh;
710 __le16 Epoch;
711 __le16 Reserved;
712 } __packed;
713
714 struct create_lease {
715 struct create_context ccontext;
716 __u8 Name[8];
717 struct lease_context lcontext;
718 } __packed;
719
720 struct create_lease_v2 {
721 struct create_context ccontext;
722 __u8 Name[8];
723 struct lease_context_v2 lcontext;
724 __u8 Pad[4];
725 } __packed;
726
727 struct create_durable {
728 struct create_context ccontext;
729 __u8 Name[8];
730 union {
731 __u8 Reserved[16];
732 struct {
733 __u64 PersistentFileId;
734 __u64 VolatileFileId;
735 } Fid;
736 } Data;
737 } __packed;
738
739 struct create_posix {
740 struct create_context ccontext;
741 __u8 Name[16];
742 __le32 Mode;
743 __u32 Reserved;
744 } __packed;
745
746 /* See MS-SMB2 2.2.13.2.11 */
747 /* Flags */
748 #define SMB2_DHANDLE_FLAG_PERSISTENT 0x00000002
749 struct durable_context_v2 {
750 __le32 Timeout;
751 __le32 Flags;
752 __u64 Reserved;
753 __u8 CreateGuid[16];
754 } __packed;
755
756 struct create_durable_v2 {
757 struct create_context ccontext;
758 __u8 Name[8];
759 struct durable_context_v2 dcontext;
760 } __packed;
761
762 /* See MS-SMB2 2.2.13.2.12 */
763 struct durable_reconnect_context_v2 {
764 struct {
765 __u64 PersistentFileId;
766 __u64 VolatileFileId;
767 } Fid;
768 __u8 CreateGuid[16];
769 __le32 Flags; /* see above DHANDLE_FLAG_PERSISTENT */
770 } __packed;
771
772 /* See MS-SMB2 2.2.14.2.12 */
773 struct durable_reconnect_context_v2_rsp {
774 __le32 Timeout;
775 __le32 Flags; /* see above DHANDLE_FLAG_PERSISTENT */
776 } __packed;
777
778 struct create_durable_handle_reconnect_v2 {
779 struct create_context ccontext;
780 __u8 Name[8];
781 struct durable_reconnect_context_v2 dcontext;
782 } __packed;
783
784 /* See MS-SMB2 2.2.13.2.5 */
785 struct crt_twarp_ctxt {
786 struct create_context ccontext;
787 __u8 Name[8];
788 __le64 Timestamp;
789
790 } __packed;
791
792 #define COPY_CHUNK_RES_KEY_SIZE 24
793 struct resume_key_req {
794 char ResumeKey[COPY_CHUNK_RES_KEY_SIZE];
795 __le32 ContextLength; /* MBZ */
796 char Context[0]; /* ignored, Windows sets to 4 bytes of zero */
797 } __packed;
798
799 /* this goes in the ioctl buffer when doing a copychunk request */
800 struct copychunk_ioctl {
801 char SourceKey[COPY_CHUNK_RES_KEY_SIZE];
802 __le32 ChunkCount; /* we are only sending 1 */
803 __le32 Reserved;
804 /* array will only be one chunk long for us */
805 __le64 SourceOffset;
806 __le64 TargetOffset;
807 __le32 Length; /* how many bytes to copy */
808 __u32 Reserved2;
809 } __packed;
810
811 /* this goes in the ioctl buffer when doing FSCTL_SET_ZERO_DATA */
812 struct file_zero_data_information {
813 __le64 FileOffset;
814 __le64 BeyondFinalZero;
815 } __packed;
816
817 struct copychunk_ioctl_rsp {
818 __le32 ChunksWritten;
819 __le32 ChunkBytesWritten;
820 __le32 TotalBytesWritten;
821 } __packed;
822
823 struct fsctl_set_integrity_information_req {
824 __le16 ChecksumAlgorithm;
825 __le16 Reserved;
826 __le32 Flags;
827 } __packed;
828
829 struct fsctl_get_integrity_information_rsp {
830 __le16 ChecksumAlgorithm;
831 __le16 Reserved;
832 __le32 Flags;
833 __le32 ChecksumChunkSizeInBytes;
834 __le32 ClusterSizeInBytes;
835 } __packed;
836
837 /* Integrity ChecksumAlgorithm choices for above */
838 #define CHECKSUM_TYPE_NONE 0x0000
839 #define CHECKSUM_TYPE_CRC64 0x0002
840 #define CHECKSUM_TYPE_UNCHANGED 0xFFFF /* set only */
841
842 /* Integrity flags for above */
843 #define FSCTL_INTEGRITY_FLAG_CHECKSUM_ENFORCEMENT_OFF 0x00000001
844
845 /* Reparse structures - see MS-FSCC 2.1.2 */
846
847 /* struct fsctl_reparse_info_req is empty, only response structs (see below) */
848
849 struct reparse_data_buffer {
850 __le32 ReparseTag;
851 __le16 ReparseDataLength;
852 __u16 Reserved;
853 __u8 DataBuffer[0]; /* Variable Length */
854 } __packed;
855
856 struct reparse_guid_data_buffer {
857 __le32 ReparseTag;
858 __le16 ReparseDataLength;
859 __u16 Reserved;
860 __u8 ReparseGuid[16];
861 __u8 DataBuffer[0]; /* Variable Length */
862 } __packed;
863
864 struct reparse_mount_point_data_buffer {
865 __le32 ReparseTag;
866 __le16 ReparseDataLength;
867 __u16 Reserved;
868 __le16 SubstituteNameOffset;
869 __le16 SubstituteNameLength;
870 __le16 PrintNameOffset;
871 __le16 PrintNameLength;
872 __u8 PathBuffer[0]; /* Variable Length */
873 } __packed;
874
875 /* See MS-FSCC 2.1.2.4 and cifspdu.h for struct reparse_symlink_data */
876
877 /* See MS-FSCC 2.1.2.6 and cifspdu.h for struct reparse_posix_data */
878
879
880 /* See MS-DFSC 2.2.2 */
881 struct fsctl_get_dfs_referral_req {
882 __le16 MaxReferralLevel;
883 __u8 RequestFileName[];
884 } __packed;
885
886 /* DFS response is struct get_dfs_refer_rsp */
887
888 /* See MS-SMB2 2.2.31.3 */
889 struct network_resiliency_req {
890 __le32 Timeout;
891 __le32 Reserved;
892 } __packed;
893 /* There is no buffer for the response ie no struct network_resiliency_rsp */
894
895
896 struct validate_negotiate_info_req {
897 __le32 Capabilities;
898 __u8 Guid[SMB2_CLIENT_GUID_SIZE];
899 __le16 SecurityMode;
900 __le16 DialectCount;
901 __le16 Dialects[4]; /* BB expand this if autonegotiate > 4 dialects */
902 } __packed;
903
904 struct validate_negotiate_info_rsp {
905 __le32 Capabilities;
906 __u8 Guid[SMB2_CLIENT_GUID_SIZE];
907 __le16 SecurityMode;
908 __le16 Dialect; /* Dialect in use for the connection */
909 } __packed;
910
911 #define RSS_CAPABLE cpu_to_le32(0x00000001)
912 #define RDMA_CAPABLE cpu_to_le32(0x00000002)
913
914 #define INTERNETWORK cpu_to_le16(0x0002)
915 #define INTERNETWORKV6 cpu_to_le16(0x0017)
916
917 struct network_interface_info_ioctl_rsp {
918 __le32 Next; /* next interface. zero if this is last one */
919 __le32 IfIndex;
920 __le32 Capability; /* RSS or RDMA Capable */
921 __le32 Reserved;
922 __le64 LinkSpeed;
923 __le16 Family;
924 __u8 Buffer[126];
925 } __packed;
926
927 struct iface_info_ipv4 {
928 __be16 Port;
929 __be32 IPv4Address;
930 __be64 Reserved;
931 } __packed;
932
933 struct iface_info_ipv6 {
934 __be16 Port;
935 __be32 FlowInfo;
936 __u8 IPv6Address[16];
937 __be32 ScopeId;
938 } __packed;
939
940 #define NO_FILE_ID 0xFFFFFFFFFFFFFFFFULL /* general ioctls to srv not to file */
941
942 struct compress_ioctl {
943 __le16 CompressionState; /* See cifspdu.h for possible flag values */
944 } __packed;
945
946 struct duplicate_extents_to_file {
947 __u64 PersistentFileHandle; /* source file handle, opaque endianness */
948 __u64 VolatileFileHandle;
949 __le64 SourceFileOffset;
950 __le64 TargetFileOffset;
951 __le64 ByteCount; /* Bytes to be copied */
952 } __packed;
953
954 struct smb2_ioctl_req {
955 struct smb2_sync_hdr sync_hdr;
956 __le16 StructureSize; /* Must be 57 */
957 __u16 Reserved;
958 __le32 CtlCode;
959 __u64 PersistentFileId; /* opaque endianness */
960 __u64 VolatileFileId; /* opaque endianness */
961 __le32 InputOffset;
962 __le32 InputCount;
963 __le32 MaxInputResponse;
964 __le32 OutputOffset;
965 __le32 OutputCount;
966 __le32 MaxOutputResponse;
967 __le32 Flags;
968 __u32 Reserved2;
969 __u8 Buffer[0];
970 } __packed;
971
972 struct smb2_ioctl_rsp {
973 struct smb2_sync_hdr sync_hdr;
974 __le16 StructureSize; /* Must be 57 */
975 __u16 Reserved;
976 __le32 CtlCode;
977 __u64 PersistentFileId; /* opaque endianness */
978 __u64 VolatileFileId; /* opaque endianness */
979 __le32 InputOffset;
980 __le32 InputCount;
981 __le32 OutputOffset;
982 __le32 OutputCount;
983 __le32 Flags;
984 __u32 Reserved2;
985 /* char * buffer[] */
986 } __packed;
987
988 /* Currently defined values for close flags */
989 #define SMB2_CLOSE_FLAG_POSTQUERY_ATTRIB cpu_to_le16(0x0001)
990 struct smb2_close_req {
991 struct smb2_sync_hdr sync_hdr;
992 __le16 StructureSize; /* Must be 24 */
993 __le16 Flags;
994 __le32 Reserved;
995 __u64 PersistentFileId; /* opaque endianness */
996 __u64 VolatileFileId; /* opaque endianness */
997 } __packed;
998
999 struct smb2_close_rsp {
1000 struct smb2_sync_hdr sync_hdr;
1001 __le16 StructureSize; /* 60 */
1002 __le16 Flags;
1003 __le32 Reserved;
1004 __le64 CreationTime;
1005 __le64 LastAccessTime;
1006 __le64 LastWriteTime;
1007 __le64 ChangeTime;
1008 __le64 AllocationSize; /* Beginning of FILE_STANDARD_INFO equivalent */
1009 __le64 EndOfFile;
1010 __le32 Attributes;
1011 } __packed;
1012
1013 struct smb2_flush_req {
1014 struct smb2_sync_hdr sync_hdr;
1015 __le16 StructureSize; /* Must be 24 */
1016 __le16 Reserved1;
1017 __le32 Reserved2;
1018 __u64 PersistentFileId; /* opaque endianness */
1019 __u64 VolatileFileId; /* opaque endianness */
1020 } __packed;
1021
1022 struct smb2_flush_rsp {
1023 struct smb2_sync_hdr sync_hdr;
1024 __le16 StructureSize;
1025 __le16 Reserved;
1026 } __packed;
1027
1028 /* For read request Flags field below, following flag is defined for SMB3.02 */
1029 #define SMB2_READFLAG_READ_UNBUFFERED 0x01
1030
1031 /* Channel field for read and write: exactly one of following flags can be set*/
1032 #define SMB2_CHANNEL_NONE cpu_to_le32(0x00000000)
1033 #define SMB2_CHANNEL_RDMA_V1 cpu_to_le32(0x00000001) /* SMB3 or later */
1034 #define SMB2_CHANNEL_RDMA_V1_INVALIDATE cpu_to_le32(0x00000002) /* >= SMB3.02 */
1035
1036 /* SMB2 read request without RFC1001 length at the beginning */
1037 struct smb2_read_plain_req {
1038 struct smb2_sync_hdr sync_hdr;
1039 __le16 StructureSize; /* Must be 49 */
1040 __u8 Padding; /* offset from start of SMB2 header to place read */
1041 __u8 Flags; /* MBZ unless SMB3.02 or later */
1042 __le32 Length;
1043 __le64 Offset;
1044 __u64 PersistentFileId; /* opaque endianness */
1045 __u64 VolatileFileId; /* opaque endianness */
1046 __le32 MinimumCount;
1047 __le32 Channel; /* MBZ except for SMB3 or later */
1048 __le32 RemainingBytes;
1049 __le16 ReadChannelInfoOffset;
1050 __le16 ReadChannelInfoLength;
1051 __u8 Buffer[1];
1052 } __packed;
1053
1054 struct smb2_read_rsp {
1055 struct smb2_sync_hdr sync_hdr;
1056 __le16 StructureSize; /* Must be 17 */
1057 __u8 DataOffset;
1058 __u8 Reserved;
1059 __le32 DataLength;
1060 __le32 DataRemaining;
1061 __u32 Reserved2;
1062 __u8 Buffer[1];
1063 } __packed;
1064
1065 /* For write request Flags field below the following flags are defined: */
1066 #define SMB2_WRITEFLAG_WRITE_THROUGH 0x00000001 /* SMB2.1 or later */
1067 #define SMB2_WRITEFLAG_WRITE_UNBUFFERED 0x00000002 /* SMB3.02 or later */
1068
1069 struct smb2_write_req {
1070 struct smb2_sync_hdr sync_hdr;
1071 __le16 StructureSize; /* Must be 49 */
1072 __le16 DataOffset; /* offset from start of SMB2 header to write data */
1073 __le32 Length;
1074 __le64 Offset;
1075 __u64 PersistentFileId; /* opaque endianness */
1076 __u64 VolatileFileId; /* opaque endianness */
1077 __le32 Channel; /* Reserved MBZ */
1078 __le32 RemainingBytes;
1079 __le16 WriteChannelInfoOffset;
1080 __le16 WriteChannelInfoLength;
1081 __le32 Flags;
1082 __u8 Buffer[1];
1083 } __packed;
1084
1085 struct smb2_write_rsp {
1086 struct smb2_sync_hdr sync_hdr;
1087 __le16 StructureSize; /* Must be 17 */
1088 __u8 DataOffset;
1089 __u8 Reserved;
1090 __le32 DataLength;
1091 __le32 DataRemaining;
1092 __u32 Reserved2;
1093 __u8 Buffer[1];
1094 } __packed;
1095
1096 #define SMB2_LOCKFLAG_SHARED_LOCK 0x0001
1097 #define SMB2_LOCKFLAG_EXCLUSIVE_LOCK 0x0002
1098 #define SMB2_LOCKFLAG_UNLOCK 0x0004
1099 #define SMB2_LOCKFLAG_FAIL_IMMEDIATELY 0x0010
1100
1101 struct smb2_lock_element {
1102 __le64 Offset;
1103 __le64 Length;
1104 __le32 Flags;
1105 __le32 Reserved;
1106 } __packed;
1107
1108 struct smb2_lock_req {
1109 struct smb2_sync_hdr sync_hdr;
1110 __le16 StructureSize; /* Must be 48 */
1111 __le16 LockCount;
1112 __le32 Reserved;
1113 __u64 PersistentFileId; /* opaque endianness */
1114 __u64 VolatileFileId; /* opaque endianness */
1115 /* Followed by at least one */
1116 struct smb2_lock_element locks[1];
1117 } __packed;
1118
1119 struct smb2_lock_rsp {
1120 struct smb2_sync_hdr sync_hdr;
1121 __le16 StructureSize; /* Must be 4 */
1122 __le16 Reserved;
1123 } __packed;
1124
1125 struct smb2_echo_req {
1126 struct smb2_sync_hdr sync_hdr;
1127 __le16 StructureSize; /* Must be 4 */
1128 __u16 Reserved;
1129 } __packed;
1130
1131 struct smb2_echo_rsp {
1132 struct smb2_sync_hdr sync_hdr;
1133 __le16 StructureSize; /* Must be 4 */
1134 __u16 Reserved;
1135 } __packed;
1136
1137 /* search (query_directory) Flags field */
1138 #define SMB2_RESTART_SCANS 0x01
1139 #define SMB2_RETURN_SINGLE_ENTRY 0x02
1140 #define SMB2_INDEX_SPECIFIED 0x04
1141 #define SMB2_REOPEN 0x10
1142
1143 struct smb2_query_directory_req {
1144 struct smb2_sync_hdr sync_hdr;
1145 __le16 StructureSize; /* Must be 33 */
1146 __u8 FileInformationClass;
1147 __u8 Flags;
1148 __le32 FileIndex;
1149 __u64 PersistentFileId; /* opaque endianness */
1150 __u64 VolatileFileId; /* opaque endianness */
1151 __le16 FileNameOffset;
1152 __le16 FileNameLength;
1153 __le32 OutputBufferLength;
1154 __u8 Buffer[1];
1155 } __packed;
1156
1157 struct smb2_query_directory_rsp {
1158 struct smb2_sync_hdr sync_hdr;
1159 __le16 StructureSize; /* Must be 9 */
1160 __le16 OutputBufferOffset;
1161 __le32 OutputBufferLength;
1162 __u8 Buffer[1];
1163 } __packed;
1164
1165 /* Possible InfoType values */
1166 #define SMB2_O_INFO_FILE 0x01
1167 #define SMB2_O_INFO_FILESYSTEM 0x02
1168 #define SMB2_O_INFO_SECURITY 0x03
1169 #define SMB2_O_INFO_QUOTA 0x04
1170
1171 /* Security info type additionalinfo flags. See MS-SMB2 (2.2.37) or MS-DTYP */
1172 #define OWNER_SECINFO 0x00000001
1173 #define GROUP_SECINFO 0x00000002
1174 #define DACL_SECINFO 0x00000004
1175 #define SACL_SECINFO 0x00000008
1176 #define LABEL_SECINFO 0x00000010
1177 #define ATTRIBUTE_SECINFO 0x00000020
1178 #define SCOPE_SECINFO 0x00000040
1179 #define BACKUP_SECINFO 0x00010000
1180 #define UNPROTECTED_SACL_SECINFO 0x10000000
1181 #define UNPROTECTED_DACL_SECINFO 0x20000000
1182 #define PROTECTED_SACL_SECINFO 0x40000000
1183 #define PROTECTED_DACL_SECINFO 0x80000000
1184
1185 /* Flags used for FileFullEAinfo */
1186 #define SL_RESTART_SCAN 0x00000001
1187 #define SL_RETURN_SINGLE_ENTRY 0x00000002
1188 #define SL_INDEX_SPECIFIED 0x00000004
1189
1190 struct smb2_query_info_req {
1191 struct smb2_sync_hdr sync_hdr;
1192 __le16 StructureSize; /* Must be 41 */
1193 __u8 InfoType;
1194 __u8 FileInfoClass;
1195 __le32 OutputBufferLength;
1196 __le16 InputBufferOffset;
1197 __u16 Reserved;
1198 __le32 InputBufferLength;
1199 __le32 AdditionalInformation;
1200 __le32 Flags;
1201 __u64 PersistentFileId; /* opaque endianness */
1202 __u64 VolatileFileId; /* opaque endianness */
1203 __u8 Buffer[1];
1204 } __packed;
1205
1206 struct smb2_query_info_rsp {
1207 struct smb2_sync_hdr sync_hdr;
1208 __le16 StructureSize; /* Must be 9 */
1209 __le16 OutputBufferOffset;
1210 __le32 OutputBufferLength;
1211 __u8 Buffer[1];
1212 } __packed;
1213
1214 /*
1215 * Maximum number of iovs we need for a set-info request.
1216 * The largest one is rename/hardlink
1217 * [0] : struct smb2_set_info_req + smb2_file_[rename|link]_info
1218 * [1] : path
1219 * [2] : compound padding
1220 */
1221 #define SMB2_SET_INFO_IOV_SIZE 3
1222
1223 struct smb2_set_info_req {
1224 struct smb2_sync_hdr sync_hdr;
1225 __le16 StructureSize; /* Must be 33 */
1226 __u8 InfoType;
1227 __u8 FileInfoClass;
1228 __le32 BufferLength;
1229 __le16 BufferOffset;
1230 __u16 Reserved;
1231 __le32 AdditionalInformation;
1232 __u64 PersistentFileId; /* opaque endianness */
1233 __u64 VolatileFileId; /* opaque endianness */
1234 __u8 Buffer[1];
1235 } __packed;
1236
1237 struct smb2_set_info_rsp {
1238 struct smb2_sync_hdr sync_hdr;
1239 __le16 StructureSize; /* Must be 2 */
1240 } __packed;
1241
1242 struct smb2_oplock_break {
1243 struct smb2_sync_hdr sync_hdr;
1244 __le16 StructureSize; /* Must be 24 */
1245 __u8 OplockLevel;
1246 __u8 Reserved;
1247 __le32 Reserved2;
1248 __u64 PersistentFid;
1249 __u64 VolatileFid;
1250 } __packed;
1251
1252 #define SMB2_NOTIFY_BREAK_LEASE_FLAG_ACK_REQUIRED cpu_to_le32(0x01)
1253
1254 struct smb2_lease_break {
1255 struct smb2_sync_hdr sync_hdr;
1256 __le16 StructureSize; /* Must be 44 */
1257 __le16 Reserved;
1258 __le32 Flags;
1259 __u8 LeaseKey[16];
1260 __le32 CurrentLeaseState;
1261 __le32 NewLeaseState;
1262 __le32 BreakReason;
1263 __le32 AccessMaskHint;
1264 __le32 ShareMaskHint;
1265 } __packed;
1266
1267 struct smb2_lease_ack {
1268 struct smb2_sync_hdr sync_hdr;
1269 __le16 StructureSize; /* Must be 36 */
1270 __le16 Reserved;
1271 __le32 Flags;
1272 __u8 LeaseKey[16];
1273 __le32 LeaseState;
1274 __le64 LeaseDuration;
1275 } __packed;
1276
1277 /*
1278 * PDU infolevel structure definitions
1279 * BB consider moving to a different header
1280 */
1281
1282 /* File System Information Classes */
1283 #define FS_VOLUME_INFORMATION 1 /* Query */
1284 #define FS_LABEL_INFORMATION 2 /* Local only */
1285 #define FS_SIZE_INFORMATION 3 /* Query */
1286 #define FS_DEVICE_INFORMATION 4 /* Query */
1287 #define FS_ATTRIBUTE_INFORMATION 5 /* Query */
1288 #define FS_CONTROL_INFORMATION 6 /* Query, Set */
1289 #define FS_FULL_SIZE_INFORMATION 7 /* Query */
1290 #define FS_OBJECT_ID_INFORMATION 8 /* Query, Set */
1291 #define FS_DRIVER_PATH_INFORMATION 9 /* Local only */
1292 #define FS_VOLUME_FLAGS_INFORMATION 10 /* Local only */
1293 #define FS_SECTOR_SIZE_INFORMATION 11 /* SMB3 or later. Query */
1294 #define FS_POSIX_INFORMATION 100 /* SMB3.1.1 POSIX. Query */
1295
1296 struct smb2_fs_full_size_info {
1297 __le64 TotalAllocationUnits;
1298 __le64 CallerAvailableAllocationUnits;
1299 __le64 ActualAvailableAllocationUnits;
1300 __le32 SectorsPerAllocationUnit;
1301 __le32 BytesPerSector;
1302 } __packed;
1303
1304 #define SSINFO_FLAGS_ALIGNED_DEVICE 0x00000001
1305 #define SSINFO_FLAGS_PARTITION_ALIGNED_ON_DEVICE 0x00000002
1306 #define SSINFO_FLAGS_NO_SEEK_PENALTY 0x00000004
1307 #define SSINFO_FLAGS_TRIM_ENABLED 0x00000008
1308
1309 /* sector size info struct */
1310 struct smb3_fs_ss_info {
1311 __le32 LogicalBytesPerSector;
1312 __le32 PhysicalBytesPerSectorForAtomicity;
1313 __le32 PhysicalBytesPerSectorForPerf;
1314 __le32 FileSystemEffectivePhysicalBytesPerSectorForAtomicity;
1315 __le32 Flags;
1316 __le32 ByteOffsetForSectorAlignment;
1317 __le32 ByteOffsetForPartitionAlignment;
1318 } __packed;
1319
1320 /* volume info struct - see MS-FSCC 2.5.9 */
1321 #define MAX_VOL_LABEL_LEN 32
1322 struct smb3_fs_vol_info {
1323 __le64 VolumeCreationTime;
1324 __u32 VolumeSerialNumber;
1325 __le32 VolumeLabelLength; /* includes trailing null */
1326 __u8 SupportsObjects; /* True if eg like NTFS, supports objects */
1327 __u8 Reserved;
1328 __u8 VolumeLabel[0]; /* variable len */
1329 } __packed;
1330
1331 /* partial list of QUERY INFO levels */
1332 #define FILE_DIRECTORY_INFORMATION 1
1333 #define FILE_FULL_DIRECTORY_INFORMATION 2
1334 #define FILE_BOTH_DIRECTORY_INFORMATION 3
1335 #define FILE_BASIC_INFORMATION 4
1336 #define FILE_STANDARD_INFORMATION 5
1337 #define FILE_INTERNAL_INFORMATION 6
1338 #define FILE_EA_INFORMATION 7
1339 #define FILE_ACCESS_INFORMATION 8
1340 #define FILE_NAME_INFORMATION 9
1341 #define FILE_RENAME_INFORMATION 10
1342 #define FILE_LINK_INFORMATION 11
1343 #define FILE_NAMES_INFORMATION 12
1344 #define FILE_DISPOSITION_INFORMATION 13
1345 #define FILE_POSITION_INFORMATION 14
1346 #define FILE_FULL_EA_INFORMATION 15
1347 #define FILE_MODE_INFORMATION 16
1348 #define FILE_ALIGNMENT_INFORMATION 17
1349 #define FILE_ALL_INFORMATION 18
1350 #define FILE_ALLOCATION_INFORMATION 19
1351 #define FILE_END_OF_FILE_INFORMATION 20
1352 #define FILE_ALTERNATE_NAME_INFORMATION 21
1353 #define FILE_STREAM_INFORMATION 22
1354 #define FILE_PIPE_INFORMATION 23
1355 #define FILE_PIPE_LOCAL_INFORMATION 24
1356 #define FILE_PIPE_REMOTE_INFORMATION 25
1357 #define FILE_MAILSLOT_QUERY_INFORMATION 26
1358 #define FILE_MAILSLOT_SET_INFORMATION 27
1359 #define FILE_COMPRESSION_INFORMATION 28
1360 #define FILE_OBJECT_ID_INFORMATION 29
1361 /* Number 30 not defined in documents */
1362 #define FILE_MOVE_CLUSTER_INFORMATION 31
1363 #define FILE_QUOTA_INFORMATION 32
1364 #define FILE_REPARSE_POINT_INFORMATION 33
1365 #define FILE_NETWORK_OPEN_INFORMATION 34
1366 #define FILE_ATTRIBUTE_TAG_INFORMATION 35
1367 #define FILE_TRACKING_INFORMATION 36
1368 #define FILEID_BOTH_DIRECTORY_INFORMATION 37
1369 #define FILEID_FULL_DIRECTORY_INFORMATION 38
1370 #define FILE_VALID_DATA_LENGTH_INFORMATION 39
1371 #define FILE_SHORT_NAME_INFORMATION 40
1372 #define FILE_SFIO_RESERVE_INFORMATION 44
1373 #define FILE_SFIO_VOLUME_INFORMATION 45
1374 #define FILE_HARD_LINK_INFORMATION 46
1375 #define FILE_NORMALIZED_NAME_INFORMATION 48
1376 #define FILEID_GLOBAL_TX_DIRECTORY_INFORMATION 50
1377 #define FILE_STANDARD_LINK_INFORMATION 54
1378
1379 struct smb2_file_internal_info {
1380 __le64 IndexNumber;
1381 } __packed; /* level 6 Query */
1382
1383 struct smb2_file_rename_info { /* encoding of request for level 10 */
1384 __u8 ReplaceIfExists; /* 1 = replace existing target with new */
1385 /* 0 = fail if target already exists */
1386 __u8 Reserved[7];
1387 __u64 RootDirectory; /* MBZ for network operations (why says spec?) */
1388 __le32 FileNameLength;
1389 char FileName[0]; /* New name to be assigned */
1390 } __packed; /* level 10 Set */
1391
1392 struct smb2_file_link_info { /* encoding of request for level 11 */
1393 __u8 ReplaceIfExists; /* 1 = replace existing link with new */
1394 /* 0 = fail if link already exists */
1395 __u8 Reserved[7];
1396 __u64 RootDirectory; /* MBZ for network operations (why says spec?) */
1397 __le32 FileNameLength;
1398 char FileName[0]; /* Name to be assigned to new link */
1399 } __packed; /* level 11 Set */
1400
1401 #define SMB2_MAX_EA_BUF 65536
1402
1403 struct smb2_file_full_ea_info { /* encoding of response for level 15 */
1404 __le32 next_entry_offset;
1405 __u8 flags;
1406 __u8 ea_name_length;
1407 __le16 ea_value_length;
1408 char ea_data[0]; /* \0 terminated name plus value */
1409 } __packed; /* level 15 Set */
1410
1411 /*
1412 * This level 18, although with struct with same name is different from cifs
1413 * level 0x107. Level 0x107 has an extra u64 between AccessFlags and
1414 * CurrentByteOffset.
1415 */
1416 struct smb2_file_all_info { /* data block encoding of response to level 18 */
1417 __le64 CreationTime; /* Beginning of FILE_BASIC_INFO equivalent */
1418 __le64 LastAccessTime;
1419 __le64 LastWriteTime;
1420 __le64 ChangeTime;
1421 __le32 Attributes;
1422 __u32 Pad1; /* End of FILE_BASIC_INFO_INFO equivalent */
1423 __le64 AllocationSize; /* Beginning of FILE_STANDARD_INFO equivalent */
1424 __le64 EndOfFile; /* size ie offset to first free byte in file */
1425 __le32 NumberOfLinks; /* hard links */
1426 __u8 DeletePending;
1427 __u8 Directory;
1428 __u16 Pad2; /* End of FILE_STANDARD_INFO equivalent */
1429 __le64 IndexNumber;
1430 __le32 EASize;
1431 __le32 AccessFlags;
1432 __le64 CurrentByteOffset;
1433 __le32 Mode;
1434 __le32 AlignmentRequirement;
1435 __le32 FileNameLength;
1436 char FileName[1];
1437 } __packed; /* level 18 Query */
1438
1439 struct smb2_file_eof_info { /* encoding of request for level 10 */
1440 __le64 EndOfFile; /* new end of file value */
1441 } __packed; /* level 20 Set */
1442
1443 extern char smb2_padding[7];
1444
1445 #endif /* _SMB2PDU_H */