]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blob - fs/cifs/smb2pdu.h
Add defines and structs for smb3.1 dialect
[mirror_ubuntu-artful-kernel.git] / fs / cifs / smb2pdu.h
1 /*
2 * fs/cifs/smb2pdu.h
3 *
4 * Copyright (c) International Business Machines Corp., 2009, 2013
5 * Etersoft, 2012
6 * Author(s): Steve French (sfrench@us.ibm.com)
7 * Pavel Shilovsky (pshilovsky@samba.org) 2012
8 *
9 * This library is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU Lesser General Public License as published
11 * by the Free Software Foundation; either version 2.1 of the License, or
12 * (at your option) any later version.
13 *
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
17 * the GNU Lesser General Public License for more details.
18 *
19 * You should have received a copy of the GNU Lesser General Public License
20 * along with this library; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 */
23
24 #ifndef _SMB2PDU_H
25 #define _SMB2PDU_H
26
27 #include <net/sock.h>
28
29 /*
30 * Note that, due to trying to use names similar to the protocol specifications,
31 * there are many mixed case field names in the structures below. Although
32 * this does not match typical Linux kernel style, it is necessary to be
33 * be able to match against the protocol specfication.
34 *
35 * SMB2 commands
36 * Some commands have minimal (wct=0,bcc=0), or uninteresting, responses
37 * (ie no useful data other than the SMB error code itself) and are marked such.
38 * Knowing this helps avoid response buffer allocations and copy in some cases.
39 */
40
41 /* List of commands in host endian */
42 #define SMB2_NEGOTIATE_HE 0x0000
43 #define SMB2_SESSION_SETUP_HE 0x0001
44 #define SMB2_LOGOFF_HE 0x0002 /* trivial request/resp */
45 #define SMB2_TREE_CONNECT_HE 0x0003
46 #define SMB2_TREE_DISCONNECT_HE 0x0004 /* trivial req/resp */
47 #define SMB2_CREATE_HE 0x0005
48 #define SMB2_CLOSE_HE 0x0006
49 #define SMB2_FLUSH_HE 0x0007 /* trivial resp */
50 #define SMB2_READ_HE 0x0008
51 #define SMB2_WRITE_HE 0x0009
52 #define SMB2_LOCK_HE 0x000A
53 #define SMB2_IOCTL_HE 0x000B
54 #define SMB2_CANCEL_HE 0x000C
55 #define SMB2_ECHO_HE 0x000D
56 #define SMB2_QUERY_DIRECTORY_HE 0x000E
57 #define SMB2_CHANGE_NOTIFY_HE 0x000F
58 #define SMB2_QUERY_INFO_HE 0x0010
59 #define SMB2_SET_INFO_HE 0x0011
60 #define SMB2_OPLOCK_BREAK_HE 0x0012
61
62 /* The same list in little endian */
63 #define SMB2_NEGOTIATE cpu_to_le16(SMB2_NEGOTIATE_HE)
64 #define SMB2_SESSION_SETUP cpu_to_le16(SMB2_SESSION_SETUP_HE)
65 #define SMB2_LOGOFF cpu_to_le16(SMB2_LOGOFF_HE)
66 #define SMB2_TREE_CONNECT cpu_to_le16(SMB2_TREE_CONNECT_HE)
67 #define SMB2_TREE_DISCONNECT cpu_to_le16(SMB2_TREE_DISCONNECT_HE)
68 #define SMB2_CREATE cpu_to_le16(SMB2_CREATE_HE)
69 #define SMB2_CLOSE cpu_to_le16(SMB2_CLOSE_HE)
70 #define SMB2_FLUSH cpu_to_le16(SMB2_FLUSH_HE)
71 #define SMB2_READ cpu_to_le16(SMB2_READ_HE)
72 #define SMB2_WRITE cpu_to_le16(SMB2_WRITE_HE)
73 #define SMB2_LOCK cpu_to_le16(SMB2_LOCK_HE)
74 #define SMB2_IOCTL cpu_to_le16(SMB2_IOCTL_HE)
75 #define SMB2_CANCEL cpu_to_le16(SMB2_CANCEL_HE)
76 #define SMB2_ECHO cpu_to_le16(SMB2_ECHO_HE)
77 #define SMB2_QUERY_DIRECTORY cpu_to_le16(SMB2_QUERY_DIRECTORY_HE)
78 #define SMB2_CHANGE_NOTIFY cpu_to_le16(SMB2_CHANGE_NOTIFY_HE)
79 #define SMB2_QUERY_INFO cpu_to_le16(SMB2_QUERY_INFO_HE)
80 #define SMB2_SET_INFO cpu_to_le16(SMB2_SET_INFO_HE)
81 #define SMB2_OPLOCK_BREAK cpu_to_le16(SMB2_OPLOCK_BREAK_HE)
82
83 #define 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
88 #define SMB2_PROTO_NUMBER cpu_to_le32(0x424d53fe)
89
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 */
98
99 #define SMB2_HEADER_STRUCTURE_SIZE cpu_to_le16(64)
100
101 struct 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;
113 __le64 MessageId;
114 __le32 ProcessId;
115 __u32 TreeId; /* opaque - so do not make little endian */
116 __u64 SessionId; /* opaque - so do not make little endian */
117 __u8 Signature[16];
118 } __packed;
119
120 struct smb2_pdu {
121 struct smb2_hdr hdr;
122 __le16 StructureSize2; /* size of wct area (varies, request specific) */
123 } __packed;
124
125 struct 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
139 /*
140 * SMB2 flag definitions
141 */
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)
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 */
156
157 #define SMB2_ERROR_STRUCTURE_SIZE2 cpu_to_le16(9)
158
159 struct 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
167 struct 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
181 #define SMB2_CLIENT_GUID_SIZE 16
182
183 struct 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;
190 __u8 ClientGUID[SMB2_CLIENT_GUID_SIZE];
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;
195 __le16 Dialects[1]; /* One dialect (vers=) at a time for now */
196 } __packed;
197
198 /* Dialects */
199 #define SMB20_PROT_ID 0x0202
200 #define SMB21_PROT_ID 0x0210
201 #define SMB30_PROT_ID 0x0300
202 #define SMB302_PROT_ID 0x0302
203 #define SMB311_PROT_ID 0x0311
204 #define BAD_PROT_ID 0xFFFF
205
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 */
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 */
217 /* Internal types */
218 #define SMB2_NT_FIND 0x00100000
219 #define SMB2_LARGE_FILES 0x00200000
220
221 #define SMB311_SALT_SIZE 32
222 /* Hash Algorithm Types */
223 #define SMB2_PREAUTH_INTEGRITY_SHA512 0x0001
224
225 struct 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
239 struct 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
247 struct smb2_negotiate_rsp {
248 struct smb2_hdr hdr;
249 __le16 StructureSize; /* Must be 65 */
250 __le16 SecurityMode;
251 __le16 DialectRevision;
252 __le16 NegotiateContextCount; /* Prior to SMB3.1.1 was Reserved & MBZ */
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;
262 __le32 NegotiateContextOffset; /* Pre:SMB3.1.1 was reserved/ignored */
263 __u8 Buffer[1]; /* variable length GSS security buffer */
264 } __packed;
265
266 /* Flags */
267 #define SMB2_SESSION_REQ_FLAG_BINDING 0x01
268 #define SMB2_SESSION_REQ_FLAG_ENCRYPT_DATA 0x04
269
270 struct smb2_sess_setup_req {
271 struct smb2_hdr hdr;
272 __le16 StructureSize; /* Must be 25 */
273 __u8 Flags;
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
286 #define SMB2_SESSION_FLAG_ENCRYPT_DATA 0x0004
287 struct 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
296 struct smb2_logoff_req {
297 struct smb2_hdr hdr;
298 __le16 StructureSize; /* Must be 4 */
299 __le16 Reserved;
300 } __packed;
301
302 struct smb2_logoff_rsp {
303 struct smb2_hdr hdr;
304 __le16 StructureSize; /* Must be 4 */
305 __le16 Reserved;
306 } __packed;
307
308 /* Flags/Reserved for SMB3.1.1 */
309 #define SMB2_SHAREFLAG_CLUSTER_RECONNECT 0x0001
310
311 struct smb2_tree_connect_req {
312 struct smb2_hdr hdr;
313 __le16 StructureSize; /* Must be 9 */
314 __le16 Reserved; /* Flags in SMB3.1.1 */
315 __le16 PathOffset;
316 __le16 PathLength;
317 __u8 Buffer[1]; /* variable length */
318 } __packed;
319
320 struct 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
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
355
356 /* Possible share capabilities */
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 */
362
363 struct smb2_tree_disconnect_req {
364 struct smb2_hdr hdr;
365 __le16 StructureSize; /* Must be 4 */
366 __le16 Reserved;
367 } __packed;
368
369 struct smb2_tree_disconnect_rsp {
370 struct smb2_hdr hdr;
371 __le16 StructureSize; /* Must be 4 */
372 __le16 Reserved;
373 } __packed;
374
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
389 #define FILE_ATTRIBUTE_INTEGRITY_STREAM 0x00008000
390 #define FILE_ATTRIBUTE_NO_SCRUB_DATA 0x00020000
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
398 /* Non-spec internal type */
399 #define SMB2_OPLOCK_LEVEL_NOCHANGE 0x99
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"
474 #define SMB2_CREATE_ALLOCATION_SIZE "AISi"
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"
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
483
484 struct 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;
501 __u8 Buffer[0];
502 } __packed;
503
504 struct 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
525 struct 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
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
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)
543
544 #define SMB2_LEASE_FLAG_BREAK_IN_PROGRESS cpu_to_le32(0x02)
545
546 #define SMB2_LEASE_KEY_SIZE 16
547
548 struct lease_context {
549 __le64 LeaseKeyLow;
550 __le64 LeaseKeyHigh;
551 __le32 LeaseState;
552 __le32 LeaseFlags;
553 __le64 LeaseDuration;
554 } __packed;
555
556 struct 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
568 struct create_lease {
569 struct create_context ccontext;
570 __u8 Name[8];
571 struct lease_context lcontext;
572 } __packed;
573
574 struct 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
581 struct create_durable {
582 struct create_context ccontext;
583 __u8 Name[8];
584 union {
585 __u8 Reserved[16];
586 struct {
587 __u64 PersistentFileId;
588 __u64 VolatileFileId;
589 } Fid;
590 } Data;
591 } __packed;
592
593 #define COPY_CHUNK_RES_KEY_SIZE 24
594 struct 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
600 /* this goes in the ioctl buffer when doing a copychunk request */
601 struct copychunk_ioctl {
602 char SourceKey[COPY_CHUNK_RES_KEY_SIZE];
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;
608 __le32 Length; /* how many bytes to copy */
609 __u32 Reserved2;
610 } __packed;
611
612 /* this goes in the ioctl buffer when doing FSCTL_SET_ZERO_DATA */
613 struct file_zero_data_information {
614 __le64 FileOffset;
615 __le64 BeyondFinalZero;
616 } __packed;
617
618 struct copychunk_ioctl_rsp {
619 __le32 ChunksWritten;
620 __le32 ChunkBytesWritten;
621 __le32 TotalBytesWritten;
622 } __packed;
623
624 struct validate_negotiate_info_req {
625 __le32 Capabilities;
626 __u8 Guid[SMB2_CLIENT_GUID_SIZE];
627 __le16 SecurityMode;
628 __le16 DialectCount;
629 __le16 Dialects[1]; /* dialect (someday maybe list) client asked for */
630 } __packed;
631
632 struct validate_negotiate_info_rsp {
633 __le32 Capabilities;
634 __u8 Guid[SMB2_CLIENT_GUID_SIZE];
635 __le16 SecurityMode;
636 __le16 Dialect; /* Dialect in use for the connection */
637 } __packed;
638
639 #define RSS_CAPABLE 0x00000001
640 #define RDMA_CAPABLE 0x00000002
641
642 struct network_interface_info_ioctl_rsp {
643 __le32 Next; /* next interface. zero if this is last one */
644 __le32 IfIndex;
645 __le32 Capability; /* RSS or RDMA Capable */
646 __le32 Reserved;
647 __le64 LinkSpeed;
648 char SockAddr_Storage[128];
649 } __packed;
650
651 #define NO_FILE_ID 0xFFFFFFFFFFFFFFFFULL /* general ioctls to srv not to file */
652
653 struct compress_ioctl {
654 __le16 CompressionState; /* See cifspdu.h for possible flag values */
655 } __packed;
656
657 struct smb2_ioctl_req {
658 struct smb2_hdr hdr;
659 __le16 StructureSize; /* Must be 57 */
660 __u16 Reserved;
661 __le32 CtlCode;
662 __u64 PersistentFileId; /* opaque endianness */
663 __u64 VolatileFileId; /* opaque endianness */
664 __le32 InputOffset;
665 __le32 InputCount;
666 __le32 MaxInputResponse;
667 __le32 OutputOffset;
668 __le32 OutputCount;
669 __le32 MaxOutputResponse;
670 __le32 Flags;
671 __u32 Reserved2;
672 __u8 Buffer[0];
673 } __packed;
674
675 struct smb2_ioctl_rsp {
676 struct smb2_hdr hdr;
677 __le16 StructureSize; /* Must be 57 */
678 __u16 Reserved;
679 __le32 CtlCode;
680 __u64 PersistentFileId; /* opaque endianness */
681 __u64 VolatileFileId; /* opaque endianness */
682 __le32 InputOffset;
683 __le32 InputCount;
684 __le32 OutputOffset;
685 __le32 OutputCount;
686 __le32 Flags;
687 __u32 Reserved2;
688 /* char * buffer[] */
689 } __packed;
690
691 /* Currently defined values for close flags */
692 #define SMB2_CLOSE_FLAG_POSTQUERY_ATTRIB cpu_to_le16(0x0001)
693 struct smb2_close_req {
694 struct smb2_hdr hdr;
695 __le16 StructureSize; /* Must be 24 */
696 __le16 Flags;
697 __le32 Reserved;
698 __u64 PersistentFileId; /* opaque endianness */
699 __u64 VolatileFileId; /* opaque endianness */
700 } __packed;
701
702 struct smb2_close_rsp {
703 struct smb2_hdr hdr;
704 __le16 StructureSize; /* 60 */
705 __le16 Flags;
706 __le32 Reserved;
707 __le64 CreationTime;
708 __le64 LastAccessTime;
709 __le64 LastWriteTime;
710 __le64 ChangeTime;
711 __le64 AllocationSize; /* Beginning of FILE_STANDARD_INFO equivalent */
712 __le64 EndOfFile;
713 __le32 Attributes;
714 } __packed;
715
716 struct smb2_flush_req {
717 struct smb2_hdr hdr;
718 __le16 StructureSize; /* Must be 24 */
719 __le16 Reserved1;
720 __le32 Reserved2;
721 __u64 PersistentFileId; /* opaque endianness */
722 __u64 VolatileFileId; /* opaque endianness */
723 } __packed;
724
725 struct smb2_flush_rsp {
726 struct smb2_hdr hdr;
727 __le16 StructureSize;
728 __le16 Reserved;
729 } __packed;
730
731 /* For read request Flags field below, following flag is defined for SMB3.02 */
732 #define SMB2_READFLAG_READ_UNBUFFERED 0x01
733
734 /* Channel field for read and write: exactly one of following flags can be set*/
735 #define SMB2_CHANNEL_NONE 0x00000000
736 #define SMB2_CHANNEL_RDMA_V1 0x00000001 /* SMB3 or later */
737 #define SMB2_CHANNEL_RDMA_V1_INVALIDATE 0x00000001 /* SMB3.02 or later */
738
739 struct smb2_read_req {
740 struct smb2_hdr hdr;
741 __le16 StructureSize; /* Must be 49 */
742 __u8 Padding; /* offset from start of SMB2 header to place read */
743 __u8 Flags; /* MBZ unless SMB3.02 or later */
744 __le32 Length;
745 __le64 Offset;
746 __u64 PersistentFileId; /* opaque endianness */
747 __u64 VolatileFileId; /* opaque endianness */
748 __le32 MinimumCount;
749 __le32 Channel; /* MBZ except for SMB3 or later */
750 __le32 RemainingBytes;
751 __le16 ReadChannelInfoOffset; /* Reserved MBZ */
752 __le16 ReadChannelInfoLength; /* Reserved MBZ */
753 __u8 Buffer[1];
754 } __packed;
755
756 struct smb2_read_rsp {
757 struct smb2_hdr hdr;
758 __le16 StructureSize; /* Must be 17 */
759 __u8 DataOffset;
760 __u8 Reserved;
761 __le32 DataLength;
762 __le32 DataRemaining;
763 __u32 Reserved2;
764 __u8 Buffer[1];
765 } __packed;
766
767 /* For write request Flags field below the following flags are defined: */
768 #define SMB2_WRITEFLAG_WRITE_THROUGH 0x00000001 /* SMB2.1 or later */
769 #define SMB2_WRITEFLAG_WRITE_UNBUFFERED 0x00000002 /* SMB3.02 or later */
770
771 struct smb2_write_req {
772 struct smb2_hdr hdr;
773 __le16 StructureSize; /* Must be 49 */
774 __le16 DataOffset; /* offset from start of SMB2 header to write data */
775 __le32 Length;
776 __le64 Offset;
777 __u64 PersistentFileId; /* opaque endianness */
778 __u64 VolatileFileId; /* opaque endianness */
779 __le32 Channel; /* Reserved MBZ */
780 __le32 RemainingBytes;
781 __le16 WriteChannelInfoOffset; /* Reserved MBZ */
782 __le16 WriteChannelInfoLength; /* Reserved MBZ */
783 __le32 Flags;
784 __u8 Buffer[1];
785 } __packed;
786
787 struct smb2_write_rsp {
788 struct smb2_hdr hdr;
789 __le16 StructureSize; /* Must be 17 */
790 __u8 DataOffset;
791 __u8 Reserved;
792 __le32 DataLength;
793 __le32 DataRemaining;
794 __u32 Reserved2;
795 __u8 Buffer[1];
796 } __packed;
797
798 #define SMB2_LOCKFLAG_SHARED_LOCK 0x0001
799 #define SMB2_LOCKFLAG_EXCLUSIVE_LOCK 0x0002
800 #define SMB2_LOCKFLAG_UNLOCK 0x0004
801 #define SMB2_LOCKFLAG_FAIL_IMMEDIATELY 0x0010
802
803 struct smb2_lock_element {
804 __le64 Offset;
805 __le64 Length;
806 __le32 Flags;
807 __le32 Reserved;
808 } __packed;
809
810 struct smb2_lock_req {
811 struct smb2_hdr hdr;
812 __le16 StructureSize; /* Must be 48 */
813 __le16 LockCount;
814 __le32 Reserved;
815 __u64 PersistentFileId; /* opaque endianness */
816 __u64 VolatileFileId; /* opaque endianness */
817 /* Followed by at least one */
818 struct smb2_lock_element locks[1];
819 } __packed;
820
821 struct smb2_lock_rsp {
822 struct smb2_hdr hdr;
823 __le16 StructureSize; /* Must be 4 */
824 __le16 Reserved;
825 } __packed;
826
827 struct smb2_echo_req {
828 struct smb2_hdr hdr;
829 __le16 StructureSize; /* Must be 4 */
830 __u16 Reserved;
831 } __packed;
832
833 struct smb2_echo_rsp {
834 struct smb2_hdr hdr;
835 __le16 StructureSize; /* Must be 4 */
836 __u16 Reserved;
837 } __packed;
838
839 /* search (query_directory) Flags field */
840 #define SMB2_RESTART_SCANS 0x01
841 #define SMB2_RETURN_SINGLE_ENTRY 0x02
842 #define SMB2_INDEX_SPECIFIED 0x04
843 #define SMB2_REOPEN 0x10
844
845 struct smb2_query_directory_req {
846 struct smb2_hdr hdr;
847 __le16 StructureSize; /* Must be 33 */
848 __u8 FileInformationClass;
849 __u8 Flags;
850 __le32 FileIndex;
851 __u64 PersistentFileId; /* opaque endianness */
852 __u64 VolatileFileId; /* opaque endianness */
853 __le16 FileNameOffset;
854 __le16 FileNameLength;
855 __le32 OutputBufferLength;
856 __u8 Buffer[1];
857 } __packed;
858
859 struct smb2_query_directory_rsp {
860 struct smb2_hdr hdr;
861 __le16 StructureSize; /* Must be 9 */
862 __le16 OutputBufferOffset;
863 __le32 OutputBufferLength;
864 __u8 Buffer[1];
865 } __packed;
866
867 /* Possible InfoType values */
868 #define SMB2_O_INFO_FILE 0x01
869 #define SMB2_O_INFO_FILESYSTEM 0x02
870 #define SMB2_O_INFO_SECURITY 0x03
871 #define SMB2_O_INFO_QUOTA 0x04
872
873 /* Security info type additionalinfo flags. See MS-SMB2 (2.2.37) or MS-DTYP */
874 #define OWNER_SECINFO 0x00000001
875 #define GROUP_SECINFO 0x00000002
876 #define DACL_SECINFO 0x00000004
877 #define SACL_SECINFO 0x00000008
878 #define LABEL_SECINFO 0x00000010
879 #define ATTRIBUTE_SECINFO 0x00000020
880 #define SCOPE_SECINFO 0x00000040
881 #define BACKUP_SECINFO 0x00010000
882 #define UNPROTECTED_SACL_SECINFO 0x10000000
883 #define UNPROTECTED_DACL_SECINFO 0x20000000
884 #define PROTECTED_SACL_SECINFO 0x40000000
885 #define PROTECTED_DACL_SECINFO 0x80000000
886
887 /* Flags used for FileFullEAinfo */
888 #define SL_RESTART_SCAN 0x00000001
889 #define SL_RETURN_SINGLE_ENTRY 0x00000002
890 #define SL_INDEX_SPECIFIED 0x00000004
891
892 struct smb2_query_info_req {
893 struct smb2_hdr hdr;
894 __le16 StructureSize; /* Must be 41 */
895 __u8 InfoType;
896 __u8 FileInfoClass;
897 __le32 OutputBufferLength;
898 __le16 InputBufferOffset;
899 __u16 Reserved;
900 __le32 InputBufferLength;
901 __le32 AdditionalInformation;
902 __le32 Flags;
903 __u64 PersistentFileId; /* opaque endianness */
904 __u64 VolatileFileId; /* opaque endianness */
905 __u8 Buffer[1];
906 } __packed;
907
908 struct smb2_query_info_rsp {
909 struct smb2_hdr hdr;
910 __le16 StructureSize; /* Must be 9 */
911 __le16 OutputBufferOffset;
912 __le32 OutputBufferLength;
913 __u8 Buffer[1];
914 } __packed;
915
916 struct smb2_set_info_req {
917 struct smb2_hdr hdr;
918 __le16 StructureSize; /* Must be 33 */
919 __u8 InfoType;
920 __u8 FileInfoClass;
921 __le32 BufferLength;
922 __le16 BufferOffset;
923 __u16 Reserved;
924 __le32 AdditionalInformation;
925 __u64 PersistentFileId; /* opaque endianness */
926 __u64 VolatileFileId; /* opaque endianness */
927 __u8 Buffer[1];
928 } __packed;
929
930 struct smb2_set_info_rsp {
931 struct smb2_hdr hdr;
932 __le16 StructureSize; /* Must be 2 */
933 } __packed;
934
935 struct smb2_oplock_break {
936 struct smb2_hdr hdr;
937 __le16 StructureSize; /* Must be 24 */
938 __u8 OplockLevel;
939 __u8 Reserved;
940 __le32 Reserved2;
941 __u64 PersistentFid;
942 __u64 VolatileFid;
943 } __packed;
944
945 #define SMB2_NOTIFY_BREAK_LEASE_FLAG_ACK_REQUIRED cpu_to_le32(0x01)
946
947 struct smb2_lease_break {
948 struct smb2_hdr hdr;
949 __le16 StructureSize; /* Must be 44 */
950 __le16 Reserved;
951 __le32 Flags;
952 __u8 LeaseKey[16];
953 __le32 CurrentLeaseState;
954 __le32 NewLeaseState;
955 __le32 BreakReason;
956 __le32 AccessMaskHint;
957 __le32 ShareMaskHint;
958 } __packed;
959
960 struct smb2_lease_ack {
961 struct smb2_hdr hdr;
962 __le16 StructureSize; /* Must be 36 */
963 __le16 Reserved;
964 __le32 Flags;
965 __u8 LeaseKey[16];
966 __le32 LeaseState;
967 __le64 LeaseDuration;
968 } __packed;
969
970 /*
971 * PDU infolevel structure definitions
972 * BB consider moving to a different header
973 */
974
975 /* File System Information Classes */
976 #define FS_VOLUME_INFORMATION 1 /* Query */
977 #define FS_LABEL_INFORMATION 2 /* Local only */
978 #define FS_SIZE_INFORMATION 3 /* Query */
979 #define FS_DEVICE_INFORMATION 4 /* Query */
980 #define FS_ATTRIBUTE_INFORMATION 5 /* Query */
981 #define FS_CONTROL_INFORMATION 6 /* Query, Set */
982 #define FS_FULL_SIZE_INFORMATION 7 /* Query */
983 #define FS_OBJECT_ID_INFORMATION 8 /* Query, Set */
984 #define FS_DRIVER_PATH_INFORMATION 9 /* Local only */
985 #define FS_VOLUME_FLAGS_INFORMATION 10 /* Local only */
986 #define FS_SECTOR_SIZE_INFORMATION 11 /* SMB3 or later. Query */
987
988 struct smb2_fs_full_size_info {
989 __le64 TotalAllocationUnits;
990 __le64 CallerAvailableAllocationUnits;
991 __le64 ActualAvailableAllocationUnits;
992 __le32 SectorsPerAllocationUnit;
993 __le32 BytesPerSector;
994 } __packed;
995
996 #define SSINFO_FLAGS_ALIGNED_DEVICE 0x00000001
997 #define SSINFO_FLAGS_PARTITION_ALIGNED_ON_DEVICE 0x00000002
998 #define SSINFO_FLAGS_NO_SEEK_PENALTY 0x00000004
999 #define SSINFO_FLAGS_TRIM_ENABLED 0x00000008
1000
1001 /* sector size info struct */
1002 struct smb3_fs_ss_info {
1003 __le32 LogicalBytesPerSector;
1004 __le32 PhysicalBytesPerSectorForAtomicity;
1005 __le32 PhysicalBytesPerSectorForPerf;
1006 __le32 FileSystemEffectivePhysicalBytesPerSectorForAtomicity;
1007 __le32 Flags;
1008 __le32 ByteOffsetForSectorAlignment;
1009 __le32 ByteOffsetForPartitionAlignment;
1010 } __packed;
1011
1012 /* partial list of QUERY INFO levels */
1013 #define FILE_DIRECTORY_INFORMATION 1
1014 #define FILE_FULL_DIRECTORY_INFORMATION 2
1015 #define FILE_BOTH_DIRECTORY_INFORMATION 3
1016 #define FILE_BASIC_INFORMATION 4
1017 #define FILE_STANDARD_INFORMATION 5
1018 #define FILE_INTERNAL_INFORMATION 6
1019 #define FILE_EA_INFORMATION 7
1020 #define FILE_ACCESS_INFORMATION 8
1021 #define FILE_NAME_INFORMATION 9
1022 #define FILE_RENAME_INFORMATION 10
1023 #define FILE_LINK_INFORMATION 11
1024 #define FILE_NAMES_INFORMATION 12
1025 #define FILE_DISPOSITION_INFORMATION 13
1026 #define FILE_POSITION_INFORMATION 14
1027 #define FILE_FULL_EA_INFORMATION 15
1028 #define FILE_MODE_INFORMATION 16
1029 #define FILE_ALIGNMENT_INFORMATION 17
1030 #define FILE_ALL_INFORMATION 18
1031 #define FILE_ALLOCATION_INFORMATION 19
1032 #define FILE_END_OF_FILE_INFORMATION 20
1033 #define FILE_ALTERNATE_NAME_INFORMATION 21
1034 #define FILE_STREAM_INFORMATION 22
1035 #define FILE_PIPE_INFORMATION 23
1036 #define FILE_PIPE_LOCAL_INFORMATION 24
1037 #define FILE_PIPE_REMOTE_INFORMATION 25
1038 #define FILE_MAILSLOT_QUERY_INFORMATION 26
1039 #define FILE_MAILSLOT_SET_INFORMATION 27
1040 #define FILE_COMPRESSION_INFORMATION 28
1041 #define FILE_OBJECT_ID_INFORMATION 29
1042 /* Number 30 not defined in documents */
1043 #define FILE_MOVE_CLUSTER_INFORMATION 31
1044 #define FILE_QUOTA_INFORMATION 32
1045 #define FILE_REPARSE_POINT_INFORMATION 33
1046 #define FILE_NETWORK_OPEN_INFORMATION 34
1047 #define FILE_ATTRIBUTE_TAG_INFORMATION 35
1048 #define FILE_TRACKING_INFORMATION 36
1049 #define FILEID_BOTH_DIRECTORY_INFORMATION 37
1050 #define FILEID_FULL_DIRECTORY_INFORMATION 38
1051 #define FILE_VALID_DATA_LENGTH_INFORMATION 39
1052 #define FILE_SHORT_NAME_INFORMATION 40
1053 #define FILE_SFIO_RESERVE_INFORMATION 44
1054 #define FILE_SFIO_VOLUME_INFORMATION 45
1055 #define FILE_HARD_LINK_INFORMATION 46
1056 #define FILE_NORMALIZED_NAME_INFORMATION 48
1057 #define FILEID_GLOBAL_TX_DIRECTORY_INFORMATION 50
1058 #define FILE_STANDARD_LINK_INFORMATION 54
1059
1060 struct smb2_file_internal_info {
1061 __le64 IndexNumber;
1062 } __packed; /* level 6 Query */
1063
1064 struct smb2_file_rename_info { /* encoding of request for level 10 */
1065 __u8 ReplaceIfExists; /* 1 = replace existing target with new */
1066 /* 0 = fail if target already exists */
1067 __u8 Reserved[7];
1068 __u64 RootDirectory; /* MBZ for network operations (why says spec?) */
1069 __le32 FileNameLength;
1070 char FileName[0]; /* New name to be assigned */
1071 } __packed; /* level 10 Set */
1072
1073 struct smb2_file_link_info { /* encoding of request for level 11 */
1074 __u8 ReplaceIfExists; /* 1 = replace existing link with new */
1075 /* 0 = fail if link already exists */
1076 __u8 Reserved[7];
1077 __u64 RootDirectory; /* MBZ for network operations (why says spec?) */
1078 __le32 FileNameLength;
1079 char FileName[0]; /* Name to be assigned to new link */
1080 } __packed; /* level 11 Set */
1081
1082 /*
1083 * This level 18, although with struct with same name is different from cifs
1084 * level 0x107. Level 0x107 has an extra u64 between AccessFlags and
1085 * CurrentByteOffset.
1086 */
1087 struct smb2_file_all_info { /* data block encoding of response to level 18 */
1088 __le64 CreationTime; /* Beginning of FILE_BASIC_INFO equivalent */
1089 __le64 LastAccessTime;
1090 __le64 LastWriteTime;
1091 __le64 ChangeTime;
1092 __le32 Attributes;
1093 __u32 Pad1; /* End of FILE_BASIC_INFO_INFO equivalent */
1094 __le64 AllocationSize; /* Beginning of FILE_STANDARD_INFO equivalent */
1095 __le64 EndOfFile; /* size ie offset to first free byte in file */
1096 __le32 NumberOfLinks; /* hard links */
1097 __u8 DeletePending;
1098 __u8 Directory;
1099 __u16 Pad2; /* End of FILE_STANDARD_INFO equivalent */
1100 __le64 IndexNumber;
1101 __le32 EASize;
1102 __le32 AccessFlags;
1103 __le64 CurrentByteOffset;
1104 __le32 Mode;
1105 __le32 AlignmentRequirement;
1106 __le32 FileNameLength;
1107 char FileName[1];
1108 } __packed; /* level 18 Query */
1109
1110 struct smb2_file_eof_info { /* encoding of request for level 10 */
1111 __le64 EndOfFile; /* new end of file value */
1112 } __packed; /* level 20 Set */
1113
1114 #endif /* _SMB2PDU_H */