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