]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - fs/cifs/smb2pdu.h
CIFS: Fix maximum SMB2 header size
[mirror_ubuntu-zesty-kernel.git] / fs / cifs / smb2pdu.h
CommitLineData
ddfbefbd
SF
1/*
2 * fs/cifs/smb2pdu.h
3 *
be7457d3 4 * Copyright (c) International Business Machines Corp., 2009, 2013
ddfbefbd
SF
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
2dc7e1c0
PS
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
96a988ff
PS
83#define SMB2_INTERNAL_CMD cpu_to_le16(0xFFFF)
84
2dc7e1c0
PS
85#define NUMBER_OF_SMB2_COMMANDS 0x0013
86
d523d85e
PS
87/* 4 len + 52 transform hdr + 64 hdr + 56 create rsp */
88#define MAX_SMB2_HDR_SIZE 0x00b0
2dc7e1c0 89
bc09d141 90#define SMB2_PROTO_NUMBER cpu_to_le32(0x424d53fe)
373512ec 91#define SMB2_TRANSFORM_PROTO_NUM cpu_to_le32(0x424d53fd)
093b2bda 92
ddfbefbd
SF
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 */
74112860 101
bc09d141 102#define SMB2_HEADER_STRUCTURE_SIZE cpu_to_le16(64)
74112860 103
b6932a6a 104struct smb2_sync_hdr {
373512ec 105 __le32 ProtocolId; /* 0xFE 'S' 'M' 'B' */
ddfbefbd
SF
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;
9235d098 113 __le64 MessageId;
ddfbefbd
SF
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
2ba4646c
PS
120struct smb2_sync_pdu {
121 struct smb2_sync_hdr sync_hdr;
122 __le16 StructureSize2; /* size of wct area (varies, request specific) */
123} __packed;
124
b6932a6a
PS
125struct smb2_hdr {
126 __be32 smb2_buf_length; /* big endian on wire */
127 /* length is only two or three bytes - with */
128 /* one or two byte type preceding it that MBZ */
129 struct smb2_sync_hdr sync_hdr;
130} __packed;
131
093b2bda
PS
132struct smb2_pdu {
133 struct smb2_hdr hdr;
134 __le16 StructureSize2; /* size of wct area (varies, request specific) */
135} __packed;
136
ed12ba4f
PS
137#define SMB3_AES128CMM_NONCE 11
138#define SMB3_AES128GCM_NONCE 12
139
0cbaa53c
SF
140struct smb2_transform_hdr {
141 __be32 smb2_buf_length; /* big endian on wire */
142 /* length is only two or three bytes - with
143 one or two byte type preceding it that MBZ */
ed12ba4f 144 __le32 ProtocolId; /* 0xFD 'S' 'M' 'B' */
0cbaa53c 145 __u8 Signature[16];
373512ec 146 __u8 Nonce[16];
0cbaa53c
SF
147 __le32 OriginalMessageSize;
148 __u16 Reserved1;
373512ec 149 __le16 Flags; /* EncryptionAlgorithm */
0cbaa53c
SF
150 __u64 SessionId;
151} __packed;
152
093b2bda
PS
153/*
154 * SMB2 flag definitions
155 */
bc09d141
FF
156#define SMB2_FLAGS_SERVER_TO_REDIR cpu_to_le32(0x00000001)
157#define SMB2_FLAGS_ASYNC_COMMAND cpu_to_le32(0x00000002)
158#define SMB2_FLAGS_RELATED_OPERATIONS cpu_to_le32(0x00000004)
159#define SMB2_FLAGS_SIGNED cpu_to_le32(0x00000008)
160#define SMB2_FLAGS_DFS_OPERATIONS cpu_to_le32(0x10000000)
093b2bda
PS
161
162/*
163 * Definitions for SMB2 Protocol Data Units (network frames)
164 *
165 * See MS-SMB2.PDF specification for protocol details.
166 * The Naming convention is the lower case version of the SMB2
167 * command code name for the struct. Note that structures must be packed.
168 *
169 */
74112860 170
bc09d141 171#define SMB2_ERROR_STRUCTURE_SIZE2 cpu_to_le16(9)
74112860 172
093b2bda
PS
173struct smb2_err_rsp {
174 struct smb2_hdr hdr;
175 __le16 StructureSize;
176 __le16 Reserved; /* MBZ */
177 __le32 ByteCount; /* even if zero, at least one byte follows */
178 __u8 ErrorData[1]; /* variable length */
179} __packed;
180
b42bf888
PS
181struct smb2_symlink_err_rsp {
182 __le32 SymLinkLength;
183 __le32 SymLinkErrorTag;
184 __le32 ReparseTag;
185 __le16 ReparseDataLength;
186 __le16 UnparsedPathLength;
187 __le16 SubstituteNameOffset;
188 __le16 SubstituteNameLength;
189 __le16 PrintNameOffset;
190 __le16 PrintNameLength;
191 __le32 Flags;
192 __u8 PathBuffer[0];
193} __packed;
194
b8c32dbb
PS
195#define SMB2_CLIENT_GUID_SIZE 16
196
ec2e4523
PS
197struct smb2_negotiate_req {
198 struct smb2_hdr hdr;
199 __le16 StructureSize; /* Must be 36 */
200 __le16 DialectCount;
201 __le16 SecurityMode;
202 __le16 Reserved; /* MBZ */
203 __le32 Capabilities;
b8c32dbb 204 __u8 ClientGUID[SMB2_CLIENT_GUID_SIZE];
5f7fbf73
SF
205 /* In SMB3.02 and earlier next three were MBZ le64 ClientStartTime */
206 __le32 NegotiateContextOffset; /* SMB3.1.1 only. MBZ earlier */
207 __le16 NegotiateContextCount; /* SMB3.1.1 only. MBZ earlier */
208 __le16 Reserved2;
e4aa25e7 209 __le16 Dialects[1]; /* One dialect (vers=) at a time for now */
ec2e4523
PS
210} __packed;
211
e4aa25e7
SF
212/* Dialects */
213#define SMB20_PROT_ID 0x0202
214#define SMB21_PROT_ID 0x0210
215#define SMB30_PROT_ID 0x0300
20b6d8b4 216#define SMB302_PROT_ID 0x0302
5f7fbf73 217#define SMB311_PROT_ID 0x0311
e4aa25e7
SF
218#define BAD_PROT_ID 0xFFFF
219
ec2e4523
PS
220/* SecurityMode flags */
221#define SMB2_NEGOTIATE_SIGNING_ENABLED 0x0001
222#define SMB2_NEGOTIATE_SIGNING_REQUIRED 0x0002
223/* Capabilities flags */
224#define SMB2_GLOBAL_CAP_DFS 0x00000001
225#define SMB2_GLOBAL_CAP_LEASING 0x00000002 /* Resp only New to SMB2.1 */
226#define SMB2_GLOBAL_CAP_LARGE_MTU 0X00000004 /* Resp only New to SMB2.1 */
e4aa25e7
SF
227#define SMB2_GLOBAL_CAP_MULTI_CHANNEL 0x00000008 /* New to SMB3 */
228#define SMB2_GLOBAL_CAP_PERSISTENT_HANDLES 0x00000010 /* New to SMB3 */
229#define SMB2_GLOBAL_CAP_DIRECTORY_LEASING 0x00000020 /* New to SMB3 */
230#define SMB2_GLOBAL_CAP_ENCRYPTION 0x00000040 /* New to SMB3 */
29e20f9c
PS
231/* Internal types */
232#define SMB2_NT_FIND 0x00100000
233#define SMB2_LARGE_FILES 0x00200000
ec2e4523 234
eed0e175
SF
235#define SMB311_SALT_SIZE 32
236/* Hash Algorithm Types */
ebb3a9d4 237#define SMB2_PREAUTH_INTEGRITY_SHA512 cpu_to_le16(0x0001)
eed0e175
SF
238
239struct smb2_preauth_neg_context {
240 __le16 ContextType; /* 1 */
241 __le16 DataLength;
242 __le32 Reserved;
243 __le16 HashAlgorithmCount; /* 1 */
244 __le16 SaltLength;
245 __le16 HashAlgorithms; /* HashAlgorithms[0] since only one defined */
246 __u8 Salt[SMB311_SALT_SIZE];
247} __packed;
248
249/* Encryption Algorithms Ciphers */
250#define SMB2_ENCRYPTION_AES128_CCM cpu_to_le16(0x0001)
251#define SMB2_ENCRYPTION_AES128_GCM cpu_to_le16(0x0002)
252
253struct smb2_encryption_neg_context {
254 __le16 ContextType; /* 2 */
255 __le16 DataLength;
256 __le32 Reserved;
ebb3a9d4
SF
257 __le16 CipherCount; /* AES-128-GCM and AES-128-CCM */
258 __le16 Ciphers[2]; /* Ciphers[0] since only one used now */
eed0e175
SF
259} __packed;
260
ec2e4523
PS
261struct smb2_negotiate_rsp {
262 struct smb2_hdr hdr;
263 __le16 StructureSize; /* Must be 65 */
264 __le16 SecurityMode;
265 __le16 DialectRevision;
5f7fbf73 266 __le16 NegotiateContextCount; /* Prior to SMB3.1.1 was Reserved & MBZ */
ec2e4523
PS
267 __u8 ServerGUID[16];
268 __le32 Capabilities;
269 __le32 MaxTransactSize;
270 __le32 MaxReadSize;
271 __le32 MaxWriteSize;
272 __le64 SystemTime; /* MBZ */
273 __le64 ServerStartTime;
274 __le16 SecurityBufferOffset;
275 __le16 SecurityBufferLength;
5f7fbf73 276 __le32 NegotiateContextOffset; /* Pre:SMB3.1.1 was reserved/ignored */
ec2e4523
PS
277 __u8 Buffer[1]; /* variable length GSS security buffer */
278} __packed;
279
eed0e175
SF
280/* Flags */
281#define SMB2_SESSION_REQ_FLAG_BINDING 0x01
282#define SMB2_SESSION_REQ_FLAG_ENCRYPT_DATA 0x04
283
5478f9ba
PS
284struct smb2_sess_setup_req {
285 struct smb2_hdr hdr;
286 __le16 StructureSize; /* Must be 25 */
eed0e175 287 __u8 Flags;
5478f9ba
PS
288 __u8 SecurityMode;
289 __le32 Capabilities;
290 __le32 Channel;
291 __le16 SecurityBufferOffset;
292 __le16 SecurityBufferLength;
c2afb814 293 __u64 PreviousSessionId;
5478f9ba
PS
294 __u8 Buffer[1]; /* variable length GSS security buffer */
295} __packed;
296
297/* Currently defined SessionFlags */
298#define SMB2_SESSION_FLAG_IS_GUEST 0x0001
299#define SMB2_SESSION_FLAG_IS_NULL 0x0002
0cbaa53c 300#define SMB2_SESSION_FLAG_ENCRYPT_DATA 0x0004
5478f9ba
PS
301struct smb2_sess_setup_rsp {
302 struct smb2_hdr hdr;
303 __le16 StructureSize; /* Must be 9 */
304 __le16 SessionFlags;
305 __le16 SecurityBufferOffset;
306 __le16 SecurityBufferLength;
307 __u8 Buffer[1]; /* variable length GSS security buffer */
308} __packed;
309
310struct smb2_logoff_req {
311 struct smb2_hdr hdr;
312 __le16 StructureSize; /* Must be 4 */
313 __le16 Reserved;
314} __packed;
315
316struct smb2_logoff_rsp {
317 struct smb2_hdr hdr;
318 __le16 StructureSize; /* Must be 4 */
319 __le16 Reserved;
320} __packed;
321
eed0e175
SF
322/* Flags/Reserved for SMB3.1.1 */
323#define SMB2_SHAREFLAG_CLUSTER_RECONNECT 0x0001
324
faaf946a
PS
325struct smb2_tree_connect_req {
326 struct smb2_hdr hdr;
327 __le16 StructureSize; /* Must be 9 */
eed0e175 328 __le16 Reserved; /* Flags in SMB3.1.1 */
faaf946a
PS
329 __le16 PathOffset;
330 __le16 PathLength;
331 __u8 Buffer[1]; /* variable length */
332} __packed;
333
334struct smb2_tree_connect_rsp {
335 struct smb2_hdr hdr;
336 __le16 StructureSize; /* Must be 16 */
337 __u8 ShareType; /* see below */
338 __u8 Reserved;
339 __le32 ShareFlags; /* see below */
340 __le32 Capabilities; /* see below */
341 __le32 MaximalAccess;
342} __packed;
343
344/* Possible ShareType values */
345#define SMB2_SHARE_TYPE_DISK 0x01
346#define SMB2_SHARE_TYPE_PIPE 0x02
347#define SMB2_SHARE_TYPE_PRINT 0x03
348
349/*
350 * Possible ShareFlags - exactly one and only one of the first 4 caching flags
351 * must be set (any of the remaining, SHI1005, flags may be set individually
352 * or in combination.
353 */
354#define SMB2_SHAREFLAG_MANUAL_CACHING 0x00000000
355#define SMB2_SHAREFLAG_AUTO_CACHING 0x00000010
356#define SMB2_SHAREFLAG_VDO_CACHING 0x00000020
357#define SMB2_SHAREFLAG_NO_CACHING 0x00000030
358#define SHI1005_FLAGS_DFS 0x00000001
359#define SHI1005_FLAGS_DFS_ROOT 0x00000002
360#define SHI1005_FLAGS_RESTRICT_EXCLUSIVE_OPENS 0x00000100
361#define SHI1005_FLAGS_FORCE_SHARED_DELETE 0x00000200
362#define SHI1005_FLAGS_ALLOW_NAMESPACE_CACHING 0x00000400
363#define SHI1005_FLAGS_ACCESS_BASED_DIRECTORY_ENUM 0x00000800
364#define SHI1005_FLAGS_FORCE_LEVELII_OPLOCK 0x00001000
c8664730
SF
365#define SHI1005_FLAGS_ENABLE_HASH_V1 0x00002000
366#define SHI1005_FLAGS_ENABLE_HASH_V2 0x00004000
367#define SHI1005_FLAGS_ENCRYPT_DATA 0x00008000
368#define SHI1005_FLAGS_ALL 0x0000FF33
faaf946a
PS
369
370/* Possible share capabilities */
2b5dc286
SF
371#define SMB2_SHARE_CAP_DFS cpu_to_le32(0x00000008) /* all dialects */
372#define SMB2_SHARE_CAP_CONTINUOUS_AVAILABILITY cpu_to_le32(0x00000010) /* 3.0 */
373#define SMB2_SHARE_CAP_SCALEOUT cpu_to_le32(0x00000020) /* 3.0 */
374#define SMB2_SHARE_CAP_CLUSTER cpu_to_le32(0x00000040) /* 3.0 */
375#define SMB2_SHARE_CAP_ASYMMETRIC cpu_to_le32(0x00000080) /* 3.02 */
faaf946a
PS
376
377struct smb2_tree_disconnect_req {
378 struct smb2_hdr hdr;
379 __le16 StructureSize; /* Must be 4 */
380 __le16 Reserved;
381} __packed;
382
383struct smb2_tree_disconnect_rsp {
384 struct smb2_hdr hdr;
385 __le16 StructureSize; /* Must be 4 */
386 __le16 Reserved;
387} __packed;
388
2503a0db
PS
389/* File Attrubutes */
390#define FILE_ATTRIBUTE_READONLY 0x00000001
391#define FILE_ATTRIBUTE_HIDDEN 0x00000002
392#define FILE_ATTRIBUTE_SYSTEM 0x00000004
393#define FILE_ATTRIBUTE_DIRECTORY 0x00000010
394#define FILE_ATTRIBUTE_ARCHIVE 0x00000020
395#define FILE_ATTRIBUTE_NORMAL 0x00000080
396#define FILE_ATTRIBUTE_TEMPORARY 0x00000100
397#define FILE_ATTRIBUTE_SPARSE_FILE 0x00000200
398#define FILE_ATTRIBUTE_REPARSE_POINT 0x00000400
399#define FILE_ATTRIBUTE_COMPRESSED 0x00000800
400#define FILE_ATTRIBUTE_OFFLINE 0x00001000
401#define FILE_ATTRIBUTE_NOT_CONTENT_INDEXED 0x00002000
402#define FILE_ATTRIBUTE_ENCRYPTED 0x00004000
73322979
SF
403#define FILE_ATTRIBUTE_INTEGRITY_STREAM 0x00008000
404#define FILE_ATTRIBUTE_NO_SCRUB_DATA 0x00020000
2503a0db
PS
405
406/* Oplock levels */
407#define SMB2_OPLOCK_LEVEL_NONE 0x00
408#define SMB2_OPLOCK_LEVEL_II 0x01
409#define SMB2_OPLOCK_LEVEL_EXCLUSIVE 0x08
410#define SMB2_OPLOCK_LEVEL_BATCH 0x09
411#define SMB2_OPLOCK_LEVEL_LEASE 0xFF
b8c32dbb
PS
412/* Non-spec internal type */
413#define SMB2_OPLOCK_LEVEL_NOCHANGE 0x99
2503a0db
PS
414
415/* Desired Access Flags */
416#define FILE_READ_DATA_LE cpu_to_le32(0x00000001)
417#define FILE_WRITE_DATA_LE cpu_to_le32(0x00000002)
418#define FILE_APPEND_DATA_LE cpu_to_le32(0x00000004)
419#define FILE_READ_EA_LE cpu_to_le32(0x00000008)
420#define FILE_WRITE_EA_LE cpu_to_le32(0x00000010)
421#define FILE_EXECUTE_LE cpu_to_le32(0x00000020)
422#define FILE_READ_ATTRIBUTES_LE cpu_to_le32(0x00000080)
423#define FILE_WRITE_ATTRIBUTES_LE cpu_to_le32(0x00000100)
424#define FILE_DELETE_LE cpu_to_le32(0x00010000)
425#define FILE_READ_CONTROL_LE cpu_to_le32(0x00020000)
426#define FILE_WRITE_DAC_LE cpu_to_le32(0x00040000)
427#define FILE_WRITE_OWNER_LE cpu_to_le32(0x00080000)
428#define FILE_SYNCHRONIZE_LE cpu_to_le32(0x00100000)
429#define FILE_ACCESS_SYSTEM_SECURITY_LE cpu_to_le32(0x01000000)
430#define FILE_MAXIMAL_ACCESS_LE cpu_to_le32(0x02000000)
431#define FILE_GENERIC_ALL_LE cpu_to_le32(0x10000000)
432#define FILE_GENERIC_EXECUTE_LE cpu_to_le32(0x20000000)
433#define FILE_GENERIC_WRITE_LE cpu_to_le32(0x40000000)
434#define FILE_GENERIC_READ_LE cpu_to_le32(0x80000000)
435
436/* ShareAccess Flags */
437#define FILE_SHARE_READ_LE cpu_to_le32(0x00000001)
438#define FILE_SHARE_WRITE_LE cpu_to_le32(0x00000002)
439#define FILE_SHARE_DELETE_LE cpu_to_le32(0x00000004)
440#define FILE_SHARE_ALL_LE cpu_to_le32(0x00000007)
441
442/* CreateDisposition Flags */
443#define FILE_SUPERSEDE_LE cpu_to_le32(0x00000000)
444#define FILE_OPEN_LE cpu_to_le32(0x00000001)
445#define FILE_CREATE_LE cpu_to_le32(0x00000002)
446#define FILE_OPEN_IF_LE cpu_to_le32(0x00000003)
447#define FILE_OVERWRITE_LE cpu_to_le32(0x00000004)
448#define FILE_OVERWRITE_IF_LE cpu_to_le32(0x00000005)
449
450/* CreateOptions Flags */
451#define FILE_DIRECTORY_FILE_LE cpu_to_le32(0x00000001)
452/* same as #define CREATE_NOT_FILE_LE cpu_to_le32(0x00000001) */
453#define FILE_WRITE_THROUGH_LE cpu_to_le32(0x00000002)
454#define FILE_SEQUENTIAL_ONLY_LE cpu_to_le32(0x00000004)
455#define FILE_NO_INTERMEDIATE_BUFFERRING_LE cpu_to_le32(0x00000008)
456#define FILE_SYNCHRONOUS_IO_ALERT_LE cpu_to_le32(0x00000010)
457#define FILE_SYNCHRONOUS_IO_NON_ALERT_LE cpu_to_le32(0x00000020)
458#define FILE_NON_DIRECTORY_FILE_LE cpu_to_le32(0x00000040)
459#define FILE_COMPLETE_IF_OPLOCKED_LE cpu_to_le32(0x00000100)
460#define FILE_NO_EA_KNOWLEDGE_LE cpu_to_le32(0x00000200)
461#define FILE_RANDOM_ACCESS_LE cpu_to_le32(0x00000800)
462#define FILE_DELETE_ON_CLOSE_LE cpu_to_le32(0x00001000)
463#define FILE_OPEN_BY_FILE_ID_LE cpu_to_le32(0x00002000)
464#define FILE_OPEN_FOR_BACKUP_INTENT_LE cpu_to_le32(0x00004000)
465#define FILE_NO_COMPRESSION_LE cpu_to_le32(0x00008000)
466#define FILE_RESERVE_OPFILTER_LE cpu_to_le32(0x00100000)
467#define FILE_OPEN_REPARSE_POINT_LE cpu_to_le32(0x00200000)
468#define FILE_OPEN_NO_RECALL_LE cpu_to_le32(0x00400000)
469#define FILE_OPEN_FOR_FREE_SPACE_QUERY_LE cpu_to_le32(0x00800000)
470
471#define FILE_READ_RIGHTS_LE (FILE_READ_DATA_LE | FILE_READ_EA_LE \
472 | FILE_READ_ATTRIBUTES_LE)
473#define FILE_WRITE_RIGHTS_LE (FILE_WRITE_DATA_LE | FILE_APPEND_DATA_LE \
474 | FILE_WRITE_EA_LE | FILE_WRITE_ATTRIBUTES_LE)
475#define FILE_EXEC_RIGHTS_LE (FILE_EXECUTE_LE)
476
477/* Impersonation Levels */
478#define IL_ANONYMOUS cpu_to_le32(0x00000000)
479#define IL_IDENTIFICATION cpu_to_le32(0x00000001)
480#define IL_IMPERSONATION cpu_to_le32(0x00000002)
481#define IL_DELEGATE cpu_to_le32(0x00000003)
482
483/* Create Context Values */
484#define SMB2_CREATE_EA_BUFFER "ExtA" /* extended attributes */
485#define SMB2_CREATE_SD_BUFFER "SecD" /* security descriptor */
486#define SMB2_CREATE_DURABLE_HANDLE_REQUEST "DHnQ"
487#define SMB2_CREATE_DURABLE_HANDLE_RECONNECT "DHnC"
12197a7f 488#define SMB2_CREATE_ALLOCATION_SIZE "AISi"
2503a0db
PS
489#define SMB2_CREATE_QUERY_MAXIMAL_ACCESS_REQUEST "MxAc"
490#define SMB2_CREATE_TIMEWARP_REQUEST "TWrp"
491#define SMB2_CREATE_QUERY_ON_DISK_ID "QFid"
492#define SMB2_CREATE_REQUEST_LEASE "RqLs"
12197a7f
SF
493#define SMB2_CREATE_DURABLE_HANDLE_REQUEST_V2 "DH2Q"
494#define SMB2_CREATE_DURABLE_HANDLE_RECONNECT_V2 "DH2C"
495#define SMB2_CREATE_APP_INSTANCE_ID 0x45BCA66AEFA7F74A9008FA462E144D74
496#define SVHDX_OPEN_DEVICE_CONTEXT 0x83CE6F1AD851E0986E34401CC9BCFCE9
2503a0db
PS
497
498struct smb2_create_req {
499 struct smb2_hdr hdr;
500 __le16 StructureSize; /* Must be 57 */
501 __u8 SecurityFlags;
502 __u8 RequestedOplockLevel;
503 __le32 ImpersonationLevel;
504 __le64 SmbCreateFlags;
505 __le64 Reserved;
506 __le32 DesiredAccess;
507 __le32 FileAttributes;
508 __le32 ShareAccess;
509 __le32 CreateDisposition;
510 __le32 CreateOptions;
511 __le16 NameOffset;
512 __le16 NameLength;
513 __le32 CreateContextsOffset;
514 __le32 CreateContextsLength;
59aa3718 515 __u8 Buffer[0];
2503a0db
PS
516} __packed;
517
518struct smb2_create_rsp {
519 struct smb2_hdr hdr;
520 __le16 StructureSize; /* Must be 89 */
521 __u8 OplockLevel;
522 __u8 Reserved;
523 __le32 CreateAction;
524 __le64 CreationTime;
525 __le64 LastAccessTime;
526 __le64 LastWriteTime;
527 __le64 ChangeTime;
528 __le64 AllocationSize;
529 __le64 EndofFile;
530 __le32 FileAttributes;
531 __le32 Reserved2;
532 __u64 PersistentFileId; /* opaque endianness */
533 __u64 VolatileFileId; /* opaque endianness */
534 __le32 CreateContextsOffset;
535 __le32 CreateContextsLength;
536 __u8 Buffer[1];
537} __packed;
538
b8c32dbb
PS
539struct create_context {
540 __le32 Next;
541 __le16 NameOffset;
542 __le16 NameLength;
543 __le16 Reserved;
544 __le16 DataOffset;
545 __le32 DataLength;
546 __u8 Buffer[0];
547} __packed;
548
53ef1016
PS
549#define SMB2_LEASE_READ_CACHING_HE 0x01
550#define SMB2_LEASE_HANDLE_CACHING_HE 0x02
551#define SMB2_LEASE_WRITE_CACHING_HE 0x04
552
bc09d141
FF
553#define SMB2_LEASE_NONE cpu_to_le32(0x00)
554#define SMB2_LEASE_READ_CACHING cpu_to_le32(0x01)
555#define SMB2_LEASE_HANDLE_CACHING cpu_to_le32(0x02)
556#define SMB2_LEASE_WRITE_CACHING cpu_to_le32(0x04)
b8c32dbb 557
bc09d141 558#define SMB2_LEASE_FLAG_BREAK_IN_PROGRESS cpu_to_le32(0x02)
b8c32dbb
PS
559
560#define SMB2_LEASE_KEY_SIZE 16
561
562struct lease_context {
563 __le64 LeaseKeyLow;
564 __le64 LeaseKeyHigh;
565 __le32 LeaseState;
566 __le32 LeaseFlags;
567 __le64 LeaseDuration;
568} __packed;
569
f047390a
PS
570struct lease_context_v2 {
571 __le64 LeaseKeyLow;
572 __le64 LeaseKeyHigh;
573 __le32 LeaseState;
574 __le32 LeaseFlags;
575 __le64 LeaseDuration;
576 __le64 ParentLeaseKeyLow;
577 __le64 ParentLeaseKeyHigh;
578 __le16 Epoch;
579 __le16 Reserved;
580} __packed;
581
b8c32dbb
PS
582struct create_lease {
583 struct create_context ccontext;
584 __u8 Name[8];
585 struct lease_context lcontext;
586} __packed;
587
f047390a
PS
588struct create_lease_v2 {
589 struct create_context ccontext;
590 __u8 Name[8];
591 struct lease_context_v2 lcontext;
592 __u8 Pad[4];
593} __packed;
594
63eb3def
PS
595struct create_durable {
596 struct create_context ccontext;
597 __u8 Name[8];
9cbc0b73
PS
598 union {
599 __u8 Reserved[16];
600 struct {
601 __u64 PersistentFileId;
602 __u64 VolatileFileId;
603 } Fid;
604 } Data;
63eb3def
PS
605} __packed;
606
b56eae4d
SF
607/* See MS-SMB2 2.2.13.2.11 */
608/* Flags */
609#define SMB2_DHANDLE_FLAG_PERSISTENT 0x00000002
610struct durable_context_v2 {
611 __le32 Timeout;
612 __le32 Flags;
613 __u64 Reserved;
614 __u8 CreateGuid[16];
615} __packed;
616
617struct create_durable_v2 {
618 struct create_context ccontext;
619 __u8 Name[8];
620 struct durable_context_v2 dcontext;
621} __packed;
622
623/* See MS-SMB2 2.2.13.2.12 */
624struct durable_reconnect_context_v2 {
625 struct {
626 __u64 PersistentFileId;
627 __u64 VolatileFileId;
628 } Fid;
629 __u8 CreateGuid[16];
630 __le32 Flags; /* see above DHANDLE_FLAG_PERSISTENT */
631} __packed;
632
633/* See MS-SMB2 2.2.14.2.12 */
634struct durable_reconnect_context_v2_rsp {
635 __le32 Timeout;
636 __le32 Flags; /* see above DHANDLE_FLAG_PERSISTENT */
637} __packed;
638
639struct create_durable_handle_reconnect_v2 {
640 struct create_context ccontext;
641 __u8 Name[8];
642 struct durable_reconnect_context_v2 dcontext;
643} __packed;
644
41c1358e
SF
645#define COPY_CHUNK_RES_KEY_SIZE 24
646struct resume_key_req {
647 char ResumeKey[COPY_CHUNK_RES_KEY_SIZE];
648 __le32 ContextLength; /* MBZ */
649 char Context[0]; /* ignored, Windows sets to 4 bytes of zero */
650} __packed;
651
be7457d3
SF
652/* this goes in the ioctl buffer when doing a copychunk request */
653struct copychunk_ioctl {
41c1358e 654 char SourceKey[COPY_CHUNK_RES_KEY_SIZE];
be7457d3
SF
655 __le32 ChunkCount; /* we are only sending 1 */
656 __le32 Reserved;
657 /* array will only be one chunk long for us */
658 __le64 SourceOffset;
659 __le64 TargetOffset;
c8664730 660 __le32 Length; /* how many bytes to copy */
be7457d3
SF
661 __u32 Reserved2;
662} __packed;
663
31742c5a
SF
664/* this goes in the ioctl buffer when doing FSCTL_SET_ZERO_DATA */
665struct file_zero_data_information {
666 __le64 FileOffset;
667 __le64 BeyondFinalZero;
668} __packed;
669
41c1358e
SF
670struct copychunk_ioctl_rsp {
671 __le32 ChunksWritten;
672 __le32 ChunkBytesWritten;
673 __le32 TotalBytesWritten;
674} __packed;
675
9d1b0660
SF
676struct fsctl_set_integrity_information_req {
677 __le16 ChecksumAlgorithm;
678 __le16 Reserved;
679 __le32 Flags;
680} __packed;
681
682struct fsctl_get_integrity_information_rsp {
683 __le16 ChecksumAlgorithm;
684 __le16 Reserved;
685 __le32 Flags;
686 __le32 ChecksumChunkSizeInBytes;
687 __le32 ClusterSizeInBytes;
688} __packed;
689
690/* Integrity ChecksumAlgorithm choices for above */
691#define CHECKSUM_TYPE_NONE 0x0000
692#define CHECKSUM_TYPE_CRC64 0x0002
b3152e2c 693#define CHECKSUM_TYPE_UNCHANGED 0xFFFF /* set only */
9d1b0660
SF
694
695/* Integrity flags for above */
696#define FSCTL_INTEGRITY_FLAG_CHECKSUM_ENFORCEMENT_OFF 0x00000001
697
b56eae4d
SF
698/* See MS-SMB2 2.2.31.3 */
699struct network_resiliency_req {
700 __le32 Timeout;
701 __le32 Reserved;
702} __packed;
703/* There is no buffer for the response ie no struct network_resiliency_rsp */
704
9d1b0660 705
ff1c038a 706struct validate_negotiate_info_req {
4a72dafa
SF
707 __le32 Capabilities;
708 __u8 Guid[SMB2_CLIENT_GUID_SIZE];
709 __le16 SecurityMode;
710 __le16 DialectCount;
ff1c038a
SF
711 __le16 Dialects[1]; /* dialect (someday maybe list) client asked for */
712} __packed;
713
714struct validate_negotiate_info_rsp {
715 __le32 Capabilities;
716 __u8 Guid[SMB2_CLIENT_GUID_SIZE];
717 __le16 SecurityMode;
718 __le16 Dialect; /* Dialect in use for the connection */
4a72dafa
SF
719} __packed;
720
721#define RSS_CAPABLE 0x00000001
722#define RDMA_CAPABLE 0x00000002
723
724struct network_interface_info_ioctl_rsp {
725 __le32 Next; /* next interface. zero if this is last one */
726 __le32 IfIndex;
727 __le32 Capability; /* RSS or RDMA Capable */
728 __le32 Reserved;
729 __le64 LinkSpeed;
730 char SockAddr_Storage[128];
731} __packed;
732
733#define NO_FILE_ID 0xFFFFFFFFFFFFFFFFULL /* general ioctls to srv not to file */
734
64a5cfa6 735struct compress_ioctl {
c7f508a9 736 __le16 CompressionState; /* See cifspdu.h for possible flag values */
64a5cfa6
SF
737} __packed;
738
02b16665
SF
739struct duplicate_extents_to_file {
740 __u64 PersistentFileHandle; /* source file handle, opaque endianness */
741 __u64 VolatileFileHandle;
742 __le64 SourceFileOffset;
743 __le64 TargetFileOffset;
744 __le64 ByteCount; /* Bytes to be copied */
745} __packed;
746
be7457d3
SF
747struct smb2_ioctl_req {
748 struct smb2_hdr hdr;
749 __le16 StructureSize; /* Must be 57 */
750 __u16 Reserved;
751 __le32 CtlCode;
752 __u64 PersistentFileId; /* opaque endianness */
753 __u64 VolatileFileId; /* opaque endianness */
754 __le32 InputOffset;
755 __le32 InputCount;
756 __le32 MaxInputResponse;
757 __le32 OutputOffset;
758 __le32 OutputCount;
759 __le32 MaxOutputResponse;
760 __le32 Flags;
761 __u32 Reserved2;
64a5cfa6 762 __u8 Buffer[0];
be7457d3
SF
763} __packed;
764
765struct smb2_ioctl_rsp {
766 struct smb2_hdr hdr;
767 __le16 StructureSize; /* Must be 57 */
768 __u16 Reserved;
769 __le32 CtlCode;
770 __u64 PersistentFileId; /* opaque endianness */
771 __u64 VolatileFileId; /* opaque endianness */
772 __le32 InputOffset;
773 __le32 InputCount;
774 __le32 OutputOffset;
775 __le32 OutputCount;
776 __le32 Flags;
777 __u32 Reserved2;
778 /* char * buffer[] */
779} __packed;
780
2503a0db
PS
781/* Currently defined values for close flags */
782#define SMB2_CLOSE_FLAG_POSTQUERY_ATTRIB cpu_to_le16(0x0001)
783struct smb2_close_req {
784 struct smb2_hdr hdr;
785 __le16 StructureSize; /* Must be 24 */
786 __le16 Flags;
787 __le32 Reserved;
788 __u64 PersistentFileId; /* opaque endianness */
789 __u64 VolatileFileId; /* opaque endianness */
790} __packed;
791
792struct smb2_close_rsp {
793 struct smb2_hdr hdr;
794 __le16 StructureSize; /* 60 */
795 __le16 Flags;
796 __le32 Reserved;
797 __le64 CreationTime;
798 __le64 LastAccessTime;
799 __le64 LastWriteTime;
800 __le64 ChangeTime;
801 __le64 AllocationSize; /* Beginning of FILE_STANDARD_INFO equivalent */
802 __le64 EndOfFile;
803 __le32 Attributes;
804} __packed;
805
7a5cfb19
PS
806struct smb2_flush_req {
807 struct smb2_hdr hdr;
808 __le16 StructureSize; /* Must be 24 */
809 __le16 Reserved1;
810 __le32 Reserved2;
811 __u64 PersistentFileId; /* opaque endianness */
812 __u64 VolatileFileId; /* opaque endianness */
813} __packed;
814
815struct smb2_flush_rsp {
816 struct smb2_hdr hdr;
817 __le16 StructureSize;
818 __le16 Reserved;
819} __packed;
820
2b5dc286
SF
821/* For read request Flags field below, following flag is defined for SMB3.02 */
822#define SMB2_READFLAG_READ_UNBUFFERED 0x01
823
824/* Channel field for read and write: exactly one of following flags can be set*/
825#define SMB2_CHANNEL_NONE 0x00000000
826#define SMB2_CHANNEL_RDMA_V1 0x00000001 /* SMB3 or later */
827#define SMB2_CHANNEL_RDMA_V1_INVALIDATE 0x00000001 /* SMB3.02 or later */
828
78afce20
PS
829/* SMB2 read request without RFC1001 length at the beginning */
830struct smb2_read_plain_req {
831 struct smb2_sync_hdr sync_hdr;
09a4707e
PS
832 __le16 StructureSize; /* Must be 49 */
833 __u8 Padding; /* offset from start of SMB2 header to place read */
2b5dc286 834 __u8 Flags; /* MBZ unless SMB3.02 or later */
09a4707e
PS
835 __le32 Length;
836 __le64 Offset;
837 __u64 PersistentFileId; /* opaque endianness */
838 __u64 VolatileFileId; /* opaque endianness */
839 __le32 MinimumCount;
2b5dc286 840 __le32 Channel; /* MBZ except for SMB3 or later */
09a4707e
PS
841 __le32 RemainingBytes;
842 __le16 ReadChannelInfoOffset; /* Reserved MBZ */
843 __le16 ReadChannelInfoLength; /* Reserved MBZ */
844 __u8 Buffer[1];
845} __packed;
846
847struct smb2_read_rsp {
848 struct smb2_hdr hdr;
849 __le16 StructureSize; /* Must be 17 */
850 __u8 DataOffset;
33319141
PS
851 __u8 Reserved;
852 __le32 DataLength;
853 __le32 DataRemaining;
854 __u32 Reserved2;
855 __u8 Buffer[1];
856} __packed;
857
2b5dc286
SF
858/* For write request Flags field below the following flags are defined: */
859#define SMB2_WRITEFLAG_WRITE_THROUGH 0x00000001 /* SMB2.1 or later */
860#define SMB2_WRITEFLAG_WRITE_UNBUFFERED 0x00000002 /* SMB3.02 or later */
33319141
PS
861
862struct smb2_write_req {
863 struct smb2_hdr hdr;
864 __le16 StructureSize; /* Must be 49 */
865 __le16 DataOffset; /* offset from start of SMB2 header to write data */
866 __le32 Length;
867 __le64 Offset;
868 __u64 PersistentFileId; /* opaque endianness */
869 __u64 VolatileFileId; /* opaque endianness */
870 __le32 Channel; /* Reserved MBZ */
871 __le32 RemainingBytes;
872 __le16 WriteChannelInfoOffset; /* Reserved MBZ */
873 __le16 WriteChannelInfoLength; /* Reserved MBZ */
874 __le32 Flags;
875 __u8 Buffer[1];
876} __packed;
877
878struct smb2_write_rsp {
879 struct smb2_hdr hdr;
880 __le16 StructureSize; /* Must be 17 */
881 __u8 DataOffset;
09a4707e
PS
882 __u8 Reserved;
883 __le32 DataLength;
884 __le32 DataRemaining;
885 __u32 Reserved2;
886 __u8 Buffer[1];
887} __packed;
888
027e8eec
PS
889#define SMB2_LOCKFLAG_SHARED_LOCK 0x0001
890#define SMB2_LOCKFLAG_EXCLUSIVE_LOCK 0x0002
891#define SMB2_LOCKFLAG_UNLOCK 0x0004
892#define SMB2_LOCKFLAG_FAIL_IMMEDIATELY 0x0010
893
f7ba7fe6
PS
894struct smb2_lock_element {
895 __le64 Offset;
896 __le64 Length;
897 __le32 Flags;
898 __le32 Reserved;
899} __packed;
900
901struct smb2_lock_req {
902 struct smb2_hdr hdr;
903 __le16 StructureSize; /* Must be 48 */
904 __le16 LockCount;
905 __le32 Reserved;
906 __u64 PersistentFileId; /* opaque endianness */
907 __u64 VolatileFileId; /* opaque endianness */
908 /* Followed by at least one */
909 struct smb2_lock_element locks[1];
910} __packed;
911
912struct smb2_lock_rsp {
913 struct smb2_hdr hdr;
914 __le16 StructureSize; /* Must be 4 */
915 __le16 Reserved;
916} __packed;
917
9094fad1
PS
918struct smb2_echo_req {
919 struct smb2_hdr hdr;
920 __le16 StructureSize; /* Must be 4 */
921 __u16 Reserved;
922} __packed;
923
924struct smb2_echo_rsp {
925 struct smb2_hdr hdr;
926 __le16 StructureSize; /* Must be 4 */
927 __u16 Reserved;
928} __packed;
929
d324f08d
PS
930/* search (query_directory) Flags field */
931#define SMB2_RESTART_SCANS 0x01
932#define SMB2_RETURN_SINGLE_ENTRY 0x02
933#define SMB2_INDEX_SPECIFIED 0x04
934#define SMB2_REOPEN 0x10
935
936struct smb2_query_directory_req {
937 struct smb2_hdr hdr;
938 __le16 StructureSize; /* Must be 33 */
939 __u8 FileInformationClass;
940 __u8 Flags;
941 __le32 FileIndex;
942 __u64 PersistentFileId; /* opaque endianness */
943 __u64 VolatileFileId; /* opaque endianness */
944 __le16 FileNameOffset;
945 __le16 FileNameLength;
946 __le32 OutputBufferLength;
947 __u8 Buffer[1];
948} __packed;
949
950struct smb2_query_directory_rsp {
951 struct smb2_hdr hdr;
952 __le16 StructureSize; /* Must be 9 */
953 __le16 OutputBufferOffset;
954 __le32 OutputBufferLength;
955 __u8 Buffer[1];
956} __packed;
957
be4cb9e3
PS
958/* Possible InfoType values */
959#define SMB2_O_INFO_FILE 0x01
960#define SMB2_O_INFO_FILESYSTEM 0x02
961#define SMB2_O_INFO_SECURITY 0x03
962#define SMB2_O_INFO_QUOTA 0x04
963
911a8dfa
SF
964/* Security info type additionalinfo flags. See MS-SMB2 (2.2.37) or MS-DTYP */
965#define OWNER_SECINFO 0x00000001
966#define GROUP_SECINFO 0x00000002
967#define DACL_SECINFO 0x00000004
968#define SACL_SECINFO 0x00000008
969#define LABEL_SECINFO 0x00000010
970#define ATTRIBUTE_SECINFO 0x00000020
971#define SCOPE_SECINFO 0x00000040
972#define BACKUP_SECINFO 0x00010000
973#define UNPROTECTED_SACL_SECINFO 0x10000000
974#define UNPROTECTED_DACL_SECINFO 0x20000000
975#define PROTECTED_SACL_SECINFO 0x40000000
976#define PROTECTED_DACL_SECINFO 0x80000000
977
978/* Flags used for FileFullEAinfo */
979#define SL_RESTART_SCAN 0x00000001
980#define SL_RETURN_SINGLE_ENTRY 0x00000002
981#define SL_INDEX_SPECIFIED 0x00000004
982
be4cb9e3
PS
983struct smb2_query_info_req {
984 struct smb2_hdr hdr;
985 __le16 StructureSize; /* Must be 41 */
986 __u8 InfoType;
987 __u8 FileInfoClass;
988 __le32 OutputBufferLength;
989 __le16 InputBufferOffset;
990 __u16 Reserved;
991 __le32 InputBufferLength;
992 __le32 AdditionalInformation;
993 __le32 Flags;
994 __u64 PersistentFileId; /* opaque endianness */
995 __u64 VolatileFileId; /* opaque endianness */
996 __u8 Buffer[1];
997} __packed;
998
999struct smb2_query_info_rsp {
1000 struct smb2_hdr hdr;
1001 __le16 StructureSize; /* Must be 9 */
1002 __le16 OutputBufferOffset;
1003 __le32 OutputBufferLength;
1004 __u8 Buffer[1];
1005} __packed;
1006
35143eb5
PS
1007struct smb2_set_info_req {
1008 struct smb2_hdr hdr;
1009 __le16 StructureSize; /* Must be 33 */
1010 __u8 InfoType;
1011 __u8 FileInfoClass;
1012 __le32 BufferLength;
1013 __le16 BufferOffset;
1014 __u16 Reserved;
1015 __le32 AdditionalInformation;
1016 __u64 PersistentFileId; /* opaque endianness */
1017 __u64 VolatileFileId; /* opaque endianness */
1018 __u8 Buffer[1];
1019} __packed;
1020
1021struct smb2_set_info_rsp {
1022 struct smb2_hdr hdr;
1023 __le16 StructureSize; /* Must be 2 */
1024} __packed;
1025
983c88a4
PS
1026struct smb2_oplock_break {
1027 struct smb2_hdr hdr;
1028 __le16 StructureSize; /* Must be 24 */
1029 __u8 OplockLevel;
1030 __u8 Reserved;
1031 __le32 Reserved2;
1032 __u64 PersistentFid;
1033 __u64 VolatileFid;
1034} __packed;
1035
0822f514
PS
1036#define SMB2_NOTIFY_BREAK_LEASE_FLAG_ACK_REQUIRED cpu_to_le32(0x01)
1037
1038struct smb2_lease_break {
1039 struct smb2_hdr hdr;
1040 __le16 StructureSize; /* Must be 44 */
1041 __le16 Reserved;
1042 __le32 Flags;
1043 __u8 LeaseKey[16];
1044 __le32 CurrentLeaseState;
1045 __le32 NewLeaseState;
1046 __le32 BreakReason;
1047 __le32 AccessMaskHint;
1048 __le32 ShareMaskHint;
1049} __packed;
1050
1051struct smb2_lease_ack {
1052 struct smb2_hdr hdr;
1053 __le16 StructureSize; /* Must be 36 */
1054 __le16 Reserved;
1055 __le32 Flags;
1056 __u8 LeaseKey[16];
1057 __le32 LeaseState;
1058 __le64 LeaseDuration;
1059} __packed;
1060
be4cb9e3
PS
1061/*
1062 * PDU infolevel structure definitions
1063 * BB consider moving to a different header
1064 */
1065
6fc05c25
PS
1066/* File System Information Classes */
1067#define FS_VOLUME_INFORMATION 1 /* Query */
af6a12ea 1068#define FS_LABEL_INFORMATION 2 /* Local only */
6fc05c25
PS
1069#define FS_SIZE_INFORMATION 3 /* Query */
1070#define FS_DEVICE_INFORMATION 4 /* Query */
1071#define FS_ATTRIBUTE_INFORMATION 5 /* Query */
1072#define FS_CONTROL_INFORMATION 6 /* Query, Set */
1073#define FS_FULL_SIZE_INFORMATION 7 /* Query */
1074#define FS_OBJECT_ID_INFORMATION 8 /* Query, Set */
af6a12ea
SF
1075#define FS_DRIVER_PATH_INFORMATION 9 /* Local only */
1076#define FS_VOLUME_FLAGS_INFORMATION 10 /* Local only */
1077#define FS_SECTOR_SIZE_INFORMATION 11 /* SMB3 or later. Query */
6fc05c25
PS
1078
1079struct smb2_fs_full_size_info {
1080 __le64 TotalAllocationUnits;
1081 __le64 CallerAvailableAllocationUnits;
1082 __le64 ActualAvailableAllocationUnits;
1083 __le32 SectorsPerAllocationUnit;
1084 __le32 BytesPerSector;
1085} __packed;
1086
af6a12ea
SF
1087#define SSINFO_FLAGS_ALIGNED_DEVICE 0x00000001
1088#define SSINFO_FLAGS_PARTITION_ALIGNED_ON_DEVICE 0x00000002
1089#define SSINFO_FLAGS_NO_SEEK_PENALTY 0x00000004
1090#define SSINFO_FLAGS_TRIM_ENABLED 0x00000008
1091
1092/* sector size info struct */
1093struct smb3_fs_ss_info {
1094 __le32 LogicalBytesPerSector;
1095 __le32 PhysicalBytesPerSectorForAtomicity;
1096 __le32 PhysicalBytesPerSectorForPerf;
1097 __le32 FileSystemEffectivePhysicalBytesPerSectorForAtomicity;
1098 __le32 Flags;
1099 __le32 ByteOffsetForSectorAlignment;
1100 __le32 ByteOffsetForPartitionAlignment;
1101} __packed;
1102
be4cb9e3
PS
1103/* partial list of QUERY INFO levels */
1104#define FILE_DIRECTORY_INFORMATION 1
1105#define FILE_FULL_DIRECTORY_INFORMATION 2
1106#define FILE_BOTH_DIRECTORY_INFORMATION 3
1107#define FILE_BASIC_INFORMATION 4
1108#define FILE_STANDARD_INFORMATION 5
1109#define FILE_INTERNAL_INFORMATION 6
1110#define FILE_EA_INFORMATION 7
1111#define FILE_ACCESS_INFORMATION 8
1112#define FILE_NAME_INFORMATION 9
1113#define FILE_RENAME_INFORMATION 10
1114#define FILE_LINK_INFORMATION 11
1115#define FILE_NAMES_INFORMATION 12
1116#define FILE_DISPOSITION_INFORMATION 13
1117#define FILE_POSITION_INFORMATION 14
1118#define FILE_FULL_EA_INFORMATION 15
1119#define FILE_MODE_INFORMATION 16
1120#define FILE_ALIGNMENT_INFORMATION 17
1121#define FILE_ALL_INFORMATION 18
1122#define FILE_ALLOCATION_INFORMATION 19
1123#define FILE_END_OF_FILE_INFORMATION 20
1124#define FILE_ALTERNATE_NAME_INFORMATION 21
1125#define FILE_STREAM_INFORMATION 22
1126#define FILE_PIPE_INFORMATION 23
1127#define FILE_PIPE_LOCAL_INFORMATION 24
1128#define FILE_PIPE_REMOTE_INFORMATION 25
1129#define FILE_MAILSLOT_QUERY_INFORMATION 26
1130#define FILE_MAILSLOT_SET_INFORMATION 27
1131#define FILE_COMPRESSION_INFORMATION 28
1132#define FILE_OBJECT_ID_INFORMATION 29
1133/* Number 30 not defined in documents */
1134#define FILE_MOVE_CLUSTER_INFORMATION 31
1135#define FILE_QUOTA_INFORMATION 32
1136#define FILE_REPARSE_POINT_INFORMATION 33
1137#define FILE_NETWORK_OPEN_INFORMATION 34
1138#define FILE_ATTRIBUTE_TAG_INFORMATION 35
1139#define FILE_TRACKING_INFORMATION 36
1140#define FILEID_BOTH_DIRECTORY_INFORMATION 37
1141#define FILEID_FULL_DIRECTORY_INFORMATION 38
1142#define FILE_VALID_DATA_LENGTH_INFORMATION 39
1143#define FILE_SHORT_NAME_INFORMATION 40
1144#define FILE_SFIO_RESERVE_INFORMATION 44
1145#define FILE_SFIO_VOLUME_INFORMATION 45
1146#define FILE_HARD_LINK_INFORMATION 46
1147#define FILE_NORMALIZED_NAME_INFORMATION 48
1148#define FILEID_GLOBAL_TX_DIRECTORY_INFORMATION 50
1149#define FILE_STANDARD_LINK_INFORMATION 54
1150
f0df737e
PS
1151struct smb2_file_internal_info {
1152 __le64 IndexNumber;
1153} __packed; /* level 6 Query */
1154
35143eb5
PS
1155struct smb2_file_rename_info { /* encoding of request for level 10 */
1156 __u8 ReplaceIfExists; /* 1 = replace existing target with new */
1157 /* 0 = fail if target already exists */
1158 __u8 Reserved[7];
1159 __u64 RootDirectory; /* MBZ for network operations (why says spec?) */
1160 __le32 FileNameLength;
1161 char FileName[0]; /* New name to be assigned */
1162} __packed; /* level 10 Set */
1163
568798cc
PS
1164struct smb2_file_link_info { /* encoding of request for level 11 */
1165 __u8 ReplaceIfExists; /* 1 = replace existing link with new */
1166 /* 0 = fail if link already exists */
1167 __u8 Reserved[7];
1168 __u64 RootDirectory; /* MBZ for network operations (why says spec?) */
1169 __le32 FileNameLength;
1170 char FileName[0]; /* Name to be assigned to new link */
1171} __packed; /* level 11 Set */
1172
be4cb9e3
PS
1173/*
1174 * This level 18, although with struct with same name is different from cifs
1175 * level 0x107. Level 0x107 has an extra u64 between AccessFlags and
1176 * CurrentByteOffset.
1177 */
1178struct smb2_file_all_info { /* data block encoding of response to level 18 */
1179 __le64 CreationTime; /* Beginning of FILE_BASIC_INFO equivalent */
1180 __le64 LastAccessTime;
1181 __le64 LastWriteTime;
1182 __le64 ChangeTime;
1183 __le32 Attributes;
1184 __u32 Pad1; /* End of FILE_BASIC_INFO_INFO equivalent */
1185 __le64 AllocationSize; /* Beginning of FILE_STANDARD_INFO equivalent */
1186 __le64 EndOfFile; /* size ie offset to first free byte in file */
1187 __le32 NumberOfLinks; /* hard links */
1188 __u8 DeletePending;
1189 __u8 Directory;
1190 __u16 Pad2; /* End of FILE_STANDARD_INFO equivalent */
1191 __le64 IndexNumber;
1192 __le32 EASize;
1193 __le32 AccessFlags;
1194 __le64 CurrentByteOffset;
1195 __le32 Mode;
1196 __le32 AlignmentRequirement;
1197 __le32 FileNameLength;
1198 char FileName[1];
1199} __packed; /* level 18 Query */
1200
c839ff24
PS
1201struct smb2_file_eof_info { /* encoding of request for level 10 */
1202 __le64 EndOfFile; /* new end of file value */
1203} __packed; /* level 20 Set */
1204
ddfbefbd 1205#endif /* _SMB2PDU_H */