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