Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
smb2pdu.h
Go to the documentation of this file.
1 /*
2  * fs/cifs/smb2pdu.h
3  *
4  * Copyright (c) International Business Machines Corp., 2009, 2010
5  * Etersoft, 2012
6  * Author(s): Steve French ([email protected])
7  * Pavel Shilovsky ([email protected]) 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 __constant_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 __constant_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' */
107  __le16 CreditCharge; /* MBZ */
108  __le32 Status; /* Error from server */
110  __le16 CreditRequest; /* CreditResponse */
113  __u64 MessageId; /* opaque - so can stay little endian */
115  __u32 TreeId; /* opaque - so do not make little endian */
116  __u64 SessionId; /* opaque - so do not make little endian */
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 /*
126  * SMB2 flag definitions
127  */
128 #define SMB2_FLAGS_SERVER_TO_REDIR __constant_cpu_to_le32(0x00000001)
129 #define SMB2_FLAGS_ASYNC_COMMAND __constant_cpu_to_le32(0x00000002)
130 #define SMB2_FLAGS_RELATED_OPERATIONS __constant_cpu_to_le32(0x00000004)
131 #define SMB2_FLAGS_SIGNED __constant_cpu_to_le32(0x00000008)
132 #define SMB2_FLAGS_DFS_OPERATIONS __constant_cpu_to_le32(0x10000000)
133 
134 /*
135  * Definitions for SMB2 Protocol Data Units (network frames)
136  *
137  * See MS-SMB2.PDF specification for protocol details.
138  * The Naming convention is the lower case version of the SMB2
139  * command code name for the struct. Note that structures must be packed.
140  *
141  */
142 
143 #define SMB2_ERROR_STRUCTURE_SIZE2 __constant_cpu_to_le16(9)
144 
145 struct smb2_err_rsp {
146  struct smb2_hdr hdr;
148  __le16 Reserved; /* MBZ */
149  __le32 ByteCount; /* even if zero, at least one byte follows */
150  __u8 ErrorData[1]; /* variable length */
151 } __packed;
152 
153 #define SMB2_CLIENT_GUID_SIZE 16
154 
156 
158  struct smb2_hdr hdr;
159  __le16 StructureSize; /* Must be 36 */
162  __le16 Reserved; /* MBZ */
166  __le16 Dialects[1]; /* One dialect (vers=) at a time for now */
167 } __packed;
168 
169 /* Dialects */
170 #define SMB20_PROT_ID 0x0202
171 #define SMB21_PROT_ID 0x0210
172 #define SMB30_PROT_ID 0x0300
173 #define BAD_PROT_ID 0xFFFF
174 
175 /* SecurityMode flags */
176 #define SMB2_NEGOTIATE_SIGNING_ENABLED 0x0001
177 #define SMB2_NEGOTIATE_SIGNING_REQUIRED 0x0002
178 /* Capabilities flags */
179 #define SMB2_GLOBAL_CAP_DFS 0x00000001
180 #define SMB2_GLOBAL_CAP_LEASING 0x00000002 /* Resp only New to SMB2.1 */
181 #define SMB2_GLOBAL_CAP_LARGE_MTU 0X00000004 /* Resp only New to SMB2.1 */
182 #define SMB2_GLOBAL_CAP_MULTI_CHANNEL 0x00000008 /* New to SMB3 */
183 #define SMB2_GLOBAL_CAP_PERSISTENT_HANDLES 0x00000010 /* New to SMB3 */
184 #define SMB2_GLOBAL_CAP_DIRECTORY_LEASING 0x00000020 /* New to SMB3 */
185 #define SMB2_GLOBAL_CAP_ENCRYPTION 0x00000040 /* New to SMB3 */
186 /* Internal types */
187 #define SMB2_NT_FIND 0x00100000
188 #define SMB2_LARGE_FILES 0x00200000
189 
191  struct smb2_hdr hdr;
192  __le16 StructureSize; /* Must be 65 */
195  __le16 Reserved; /* MBZ */
201  __le64 SystemTime; /* MBZ */
205  __le32 Reserved2; /* may be any value, ignore */
206  __u8 Buffer[1]; /* variable length GSS security buffer */
207 } __packed;
208 
210  struct smb2_hdr hdr;
211  __le16 StructureSize; /* Must be 25 */
219  __u8 Buffer[1]; /* variable length GSS security buffer */
220 } __packed;
221 
222 /* Currently defined SessionFlags */
223 #define SMB2_SESSION_FLAG_IS_GUEST 0x0001
224 #define SMB2_SESSION_FLAG_IS_NULL 0x0002
226  struct smb2_hdr hdr;
227  __le16 StructureSize; /* Must be 9 */
231  __u8 Buffer[1]; /* variable length GSS security buffer */
232 } __packed;
233 
235  struct smb2_hdr hdr;
236  __le16 StructureSize; /* Must be 4 */
238 } __packed;
239 
241  struct smb2_hdr hdr;
242  __le16 StructureSize; /* Must be 4 */
244 } __packed;
245 
247  struct smb2_hdr hdr;
248  __le16 StructureSize; /* Must be 9 */
252  __u8 Buffer[1]; /* variable length */
253 } __packed;
254 
256  struct smb2_hdr hdr;
257  __le16 StructureSize; /* Must be 16 */
258  __u8 ShareType; /* see below */
260  __le32 ShareFlags; /* see below */
261  __le32 Capabilities; /* see below */
263 } __packed;
264 
265 /* Possible ShareType values */
266 #define SMB2_SHARE_TYPE_DISK 0x01
267 #define SMB2_SHARE_TYPE_PIPE 0x02
268 #define SMB2_SHARE_TYPE_PRINT 0x03
269 
270 /*
271  * Possible ShareFlags - exactly one and only one of the first 4 caching flags
272  * must be set (any of the remaining, SHI1005, flags may be set individually
273  * or in combination.
274  */
275 #define SMB2_SHAREFLAG_MANUAL_CACHING 0x00000000
276 #define SMB2_SHAREFLAG_AUTO_CACHING 0x00000010
277 #define SMB2_SHAREFLAG_VDO_CACHING 0x00000020
278 #define SMB2_SHAREFLAG_NO_CACHING 0x00000030
279 #define SHI1005_FLAGS_DFS 0x00000001
280 #define SHI1005_FLAGS_DFS_ROOT 0x00000002
281 #define SHI1005_FLAGS_RESTRICT_EXCLUSIVE_OPENS 0x00000100
282 #define SHI1005_FLAGS_FORCE_SHARED_DELETE 0x00000200
283 #define SHI1005_FLAGS_ALLOW_NAMESPACE_CACHING 0x00000400
284 #define SHI1005_FLAGS_ACCESS_BASED_DIRECTORY_ENUM 0x00000800
285 #define SHI1005_FLAGS_FORCE_LEVELII_OPLOCK 0x00001000
286 #define SHI1005_FLAGS_ENABLE_HASH 0x00002000
287 
288 /* Possible share capabilities */
289 #define SMB2_SHARE_CAP_DFS cpu_to_le32(0x00000008)
290 
292  struct smb2_hdr hdr;
293  __le16 StructureSize; /* Must be 4 */
295 } __packed;
296 
298  struct smb2_hdr hdr;
299  __le16 StructureSize; /* Must be 4 */
301 } __packed;
302 
303 /* File Attrubutes */
304 #define FILE_ATTRIBUTE_READONLY 0x00000001
305 #define FILE_ATTRIBUTE_HIDDEN 0x00000002
306 #define FILE_ATTRIBUTE_SYSTEM 0x00000004
307 #define FILE_ATTRIBUTE_DIRECTORY 0x00000010
308 #define FILE_ATTRIBUTE_ARCHIVE 0x00000020
309 #define FILE_ATTRIBUTE_NORMAL 0x00000080
310 #define FILE_ATTRIBUTE_TEMPORARY 0x00000100
311 #define FILE_ATTRIBUTE_SPARSE_FILE 0x00000200
312 #define FILE_ATTRIBUTE_REPARSE_POINT 0x00000400
313 #define FILE_ATTRIBUTE_COMPRESSED 0x00000800
314 #define FILE_ATTRIBUTE_OFFLINE 0x00001000
315 #define FILE_ATTRIBUTE_NOT_CONTENT_INDEXED 0x00002000
316 #define FILE_ATTRIBUTE_ENCRYPTED 0x00004000
317 
318 /* Oplock levels */
319 #define SMB2_OPLOCK_LEVEL_NONE 0x00
320 #define SMB2_OPLOCK_LEVEL_II 0x01
321 #define SMB2_OPLOCK_LEVEL_EXCLUSIVE 0x08
322 #define SMB2_OPLOCK_LEVEL_BATCH 0x09
323 #define SMB2_OPLOCK_LEVEL_LEASE 0xFF
324 /* Non-spec internal type */
325 #define SMB2_OPLOCK_LEVEL_NOCHANGE 0x99
326 
327 /* Desired Access Flags */
328 #define FILE_READ_DATA_LE cpu_to_le32(0x00000001)
329 #define FILE_WRITE_DATA_LE cpu_to_le32(0x00000002)
330 #define FILE_APPEND_DATA_LE cpu_to_le32(0x00000004)
331 #define FILE_READ_EA_LE cpu_to_le32(0x00000008)
332 #define FILE_WRITE_EA_LE cpu_to_le32(0x00000010)
333 #define FILE_EXECUTE_LE cpu_to_le32(0x00000020)
334 #define FILE_READ_ATTRIBUTES_LE cpu_to_le32(0x00000080)
335 #define FILE_WRITE_ATTRIBUTES_LE cpu_to_le32(0x00000100)
336 #define FILE_DELETE_LE cpu_to_le32(0x00010000)
337 #define FILE_READ_CONTROL_LE cpu_to_le32(0x00020000)
338 #define FILE_WRITE_DAC_LE cpu_to_le32(0x00040000)
339 #define FILE_WRITE_OWNER_LE cpu_to_le32(0x00080000)
340 #define FILE_SYNCHRONIZE_LE cpu_to_le32(0x00100000)
341 #define FILE_ACCESS_SYSTEM_SECURITY_LE cpu_to_le32(0x01000000)
342 #define FILE_MAXIMAL_ACCESS_LE cpu_to_le32(0x02000000)
343 #define FILE_GENERIC_ALL_LE cpu_to_le32(0x10000000)
344 #define FILE_GENERIC_EXECUTE_LE cpu_to_le32(0x20000000)
345 #define FILE_GENERIC_WRITE_LE cpu_to_le32(0x40000000)
346 #define FILE_GENERIC_READ_LE cpu_to_le32(0x80000000)
347 
348 /* ShareAccess Flags */
349 #define FILE_SHARE_READ_LE cpu_to_le32(0x00000001)
350 #define FILE_SHARE_WRITE_LE cpu_to_le32(0x00000002)
351 #define FILE_SHARE_DELETE_LE cpu_to_le32(0x00000004)
352 #define FILE_SHARE_ALL_LE cpu_to_le32(0x00000007)
353 
354 /* CreateDisposition Flags */
355 #define FILE_SUPERSEDE_LE cpu_to_le32(0x00000000)
356 #define FILE_OPEN_LE cpu_to_le32(0x00000001)
357 #define FILE_CREATE_LE cpu_to_le32(0x00000002)
358 #define FILE_OPEN_IF_LE cpu_to_le32(0x00000003)
359 #define FILE_OVERWRITE_LE cpu_to_le32(0x00000004)
360 #define FILE_OVERWRITE_IF_LE cpu_to_le32(0x00000005)
361 
362 /* CreateOptions Flags */
363 #define FILE_DIRECTORY_FILE_LE cpu_to_le32(0x00000001)
364 /* same as #define CREATE_NOT_FILE_LE cpu_to_le32(0x00000001) */
365 #define FILE_WRITE_THROUGH_LE cpu_to_le32(0x00000002)
366 #define FILE_SEQUENTIAL_ONLY_LE cpu_to_le32(0x00000004)
367 #define FILE_NO_INTERMEDIATE_BUFFERRING_LE cpu_to_le32(0x00000008)
368 #define FILE_SYNCHRONOUS_IO_ALERT_LE cpu_to_le32(0x00000010)
369 #define FILE_SYNCHRONOUS_IO_NON_ALERT_LE cpu_to_le32(0x00000020)
370 #define FILE_NON_DIRECTORY_FILE_LE cpu_to_le32(0x00000040)
371 #define FILE_COMPLETE_IF_OPLOCKED_LE cpu_to_le32(0x00000100)
372 #define FILE_NO_EA_KNOWLEDGE_LE cpu_to_le32(0x00000200)
373 #define FILE_RANDOM_ACCESS_LE cpu_to_le32(0x00000800)
374 #define FILE_DELETE_ON_CLOSE_LE cpu_to_le32(0x00001000)
375 #define FILE_OPEN_BY_FILE_ID_LE cpu_to_le32(0x00002000)
376 #define FILE_OPEN_FOR_BACKUP_INTENT_LE cpu_to_le32(0x00004000)
377 #define FILE_NO_COMPRESSION_LE cpu_to_le32(0x00008000)
378 #define FILE_RESERVE_OPFILTER_LE cpu_to_le32(0x00100000)
379 #define FILE_OPEN_REPARSE_POINT_LE cpu_to_le32(0x00200000)
380 #define FILE_OPEN_NO_RECALL_LE cpu_to_le32(0x00400000)
381 #define FILE_OPEN_FOR_FREE_SPACE_QUERY_LE cpu_to_le32(0x00800000)
382 
383 #define FILE_READ_RIGHTS_LE (FILE_READ_DATA_LE | FILE_READ_EA_LE \
384  | FILE_READ_ATTRIBUTES_LE)
385 #define FILE_WRITE_RIGHTS_LE (FILE_WRITE_DATA_LE | FILE_APPEND_DATA_LE \
386  | FILE_WRITE_EA_LE | FILE_WRITE_ATTRIBUTES_LE)
387 #define FILE_EXEC_RIGHTS_LE (FILE_EXECUTE_LE)
388 
389 /* Impersonation Levels */
390 #define IL_ANONYMOUS cpu_to_le32(0x00000000)
391 #define IL_IDENTIFICATION cpu_to_le32(0x00000001)
392 #define IL_IMPERSONATION cpu_to_le32(0x00000002)
393 #define IL_DELEGATE cpu_to_le32(0x00000003)
394 
395 /* Create Context Values */
396 #define SMB2_CREATE_EA_BUFFER "ExtA" /* extended attributes */
397 #define SMB2_CREATE_SD_BUFFER "SecD" /* security descriptor */
398 #define SMB2_CREATE_DURABLE_HANDLE_REQUEST "DHnQ"
399 #define SMB2_CREATE_DURABLE_HANDLE_RECONNECT "DHnC"
400 #define SMB2_CREATE_ALLOCATION_SIZE "AlSi"
401 #define SMB2_CREATE_QUERY_MAXIMAL_ACCESS_REQUEST "MxAc"
402 #define SMB2_CREATE_TIMEWARP_REQUEST "TWrp"
403 #define SMB2_CREATE_QUERY_ON_DISK_ID "QFid"
404 #define SMB2_CREATE_REQUEST_LEASE "RqLs"
405 
407  struct smb2_hdr hdr;
408  __le16 StructureSize; /* Must be 57 */
424 } __packed;
425 
427  struct smb2_hdr hdr;
428  __le16 StructureSize; /* Must be 89 */
440  __u64 PersistentFileId; /* opaque endianness */
441  __u64 VolatileFileId; /* opaque endianness */
445 } __packed;
446 
455 } __packed;
456 
457 #define SMB2_LEASE_NONE __constant_cpu_to_le32(0x00)
458 #define SMB2_LEASE_READ_CACHING __constant_cpu_to_le32(0x01)
459 #define SMB2_LEASE_HANDLE_CACHING __constant_cpu_to_le32(0x02)
460 #define SMB2_LEASE_WRITE_CACHING __constant_cpu_to_le32(0x04)
461 
462 #define SMB2_LEASE_FLAG_BREAK_IN_PROGRESS __constant_cpu_to_le32(0x02)
463 
464 #define SMB2_LEASE_KEY_SIZE 16
465 
472 } __packed;
473 
474 struct create_lease {
476  __u8 Name[8];
478 } __packed;
479 
480 /* Currently defined values for close flags */
481 #define SMB2_CLOSE_FLAG_POSTQUERY_ATTRIB cpu_to_le16(0x0001)
483  struct smb2_hdr hdr;
484  __le16 StructureSize; /* Must be 24 */
487  __u64 PersistentFileId; /* opaque endianness */
488  __u64 VolatileFileId; /* opaque endianness */
489 } __packed;
490 
492  struct smb2_hdr hdr;
500  __le64 AllocationSize; /* Beginning of FILE_STANDARD_INFO equivalent */
503 } __packed;
504 
506  struct smb2_hdr hdr;
507  __le16 StructureSize; /* Must be 24 */
510  __u64 PersistentFileId; /* opaque endianness */
511  __u64 VolatileFileId; /* opaque endianness */
512 } __packed;
513 
515  struct smb2_hdr hdr;
518 } __packed;
519 
521  struct smb2_hdr hdr;
522  __le16 StructureSize; /* Must be 49 */
523  __u8 Padding; /* offset from start of SMB2 header to place read */
527  __u64 PersistentFileId; /* opaque endianness */
528  __u64 VolatileFileId; /* opaque endianness */
530  __le32 Channel; /* Reserved MBZ */
532  __le16 ReadChannelInfoOffset; /* Reserved MBZ */
533  __le16 ReadChannelInfoLength; /* Reserved MBZ */
535 } __packed;
536 
538  struct smb2_hdr hdr;
539  __le16 StructureSize; /* Must be 17 */
546 } __packed;
547 
548 /* For write request Flags field below the following flag is defined: */
549 #define SMB2_WRITEFLAG_WRITE_THROUGH 0x00000001
550 
552  struct smb2_hdr hdr;
553  __le16 StructureSize; /* Must be 49 */
554  __le16 DataOffset; /* offset from start of SMB2 header to write data */
557  __u64 PersistentFileId; /* opaque endianness */
558  __u64 VolatileFileId; /* opaque endianness */
559  __le32 Channel; /* Reserved MBZ */
561  __le16 WriteChannelInfoOffset; /* Reserved MBZ */
562  __le16 WriteChannelInfoLength; /* Reserved MBZ */
565 } __packed;
566 
568  struct smb2_hdr hdr;
569  __le16 StructureSize; /* Must be 17 */
576 } __packed;
577 
578 #define SMB2_LOCKFLAG_SHARED_LOCK 0x0001
579 #define SMB2_LOCKFLAG_EXCLUSIVE_LOCK 0x0002
580 #define SMB2_LOCKFLAG_UNLOCK 0x0004
581 #define SMB2_LOCKFLAG_FAIL_IMMEDIATELY 0x0010
582 
588 } __packed;
589 
591  struct smb2_hdr hdr;
592  __le16 StructureSize; /* Must be 48 */
595  __u64 PersistentFileId; /* opaque endianness */
596  __u64 VolatileFileId; /* opaque endianness */
597  /* Followed by at least one */
599 } __packed;
600 
602  struct smb2_hdr hdr;
603  __le16 StructureSize; /* Must be 4 */
605 } __packed;
606 
608  struct smb2_hdr hdr;
609  __le16 StructureSize; /* Must be 4 */
611 } __packed;
612 
614  struct smb2_hdr hdr;
615  __le16 StructureSize; /* Must be 4 */
617 } __packed;
618 
619 /* search (query_directory) Flags field */
620 #define SMB2_RESTART_SCANS 0x01
621 #define SMB2_RETURN_SINGLE_ENTRY 0x02
622 #define SMB2_INDEX_SPECIFIED 0x04
623 #define SMB2_REOPEN 0x10
624 
626  struct smb2_hdr hdr;
627  __le16 StructureSize; /* Must be 33 */
631  __u64 PersistentFileId; /* opaque endianness */
632  __u64 VolatileFileId; /* opaque endianness */
637 } __packed;
638 
640  struct smb2_hdr hdr;
641  __le16 StructureSize; /* Must be 9 */
645 } __packed;
646 
647 /* Possible InfoType values */
648 #define SMB2_O_INFO_FILE 0x01
649 #define SMB2_O_INFO_FILESYSTEM 0x02
650 #define SMB2_O_INFO_SECURITY 0x03
651 #define SMB2_O_INFO_QUOTA 0x04
652 
654  struct smb2_hdr hdr;
655  __le16 StructureSize; /* Must be 41 */
664  __u64 PersistentFileId; /* opaque endianness */
665  __u64 VolatileFileId; /* opaque endianness */
667 } __packed;
668 
670  struct smb2_hdr hdr;
671  __le16 StructureSize; /* Must be 9 */
675 } __packed;
676 
678  struct smb2_hdr hdr;
679  __le16 StructureSize; /* Must be 33 */
686  __u64 PersistentFileId; /* opaque endianness */
687  __u64 VolatileFileId; /* opaque endianness */
689 } __packed;
690 
692  struct smb2_hdr hdr;
693  __le16 StructureSize; /* Must be 2 */
694 } __packed;
695 
697  struct smb2_hdr hdr;
698  __le16 StructureSize; /* Must be 24 */
704 } __packed;
705 
706 #define SMB2_NOTIFY_BREAK_LEASE_FLAG_ACK_REQUIRED cpu_to_le32(0x01)
707 
709  struct smb2_hdr hdr;
710  __le16 StructureSize; /* Must be 44 */
719 } __packed;
720 
722  struct smb2_hdr hdr;
723  __le16 StructureSize; /* Must be 36 */
729 } __packed;
730 
731 /*
732  * PDU infolevel structure definitions
733  * BB consider moving to a different header
734  */
735 
736 /* File System Information Classes */
737 #define FS_VOLUME_INFORMATION 1 /* Query */
738 #define FS_LABEL_INFORMATION 2 /* Set */
739 #define FS_SIZE_INFORMATION 3 /* Query */
740 #define FS_DEVICE_INFORMATION 4 /* Query */
741 #define FS_ATTRIBUTE_INFORMATION 5 /* Query */
742 #define FS_CONTROL_INFORMATION 6 /* Query, Set */
743 #define FS_FULL_SIZE_INFORMATION 7 /* Query */
744 #define FS_OBJECT_ID_INFORMATION 8 /* Query, Set */
745 #define FS_DRIVER_PATH_INFORMATION 9 /* Query */
746 
753 } __packed;
754 
755 /* partial list of QUERY INFO levels */
756 #define FILE_DIRECTORY_INFORMATION 1
757 #define FILE_FULL_DIRECTORY_INFORMATION 2
758 #define FILE_BOTH_DIRECTORY_INFORMATION 3
759 #define FILE_BASIC_INFORMATION 4
760 #define FILE_STANDARD_INFORMATION 5
761 #define FILE_INTERNAL_INFORMATION 6
762 #define FILE_EA_INFORMATION 7
763 #define FILE_ACCESS_INFORMATION 8
764 #define FILE_NAME_INFORMATION 9
765 #define FILE_RENAME_INFORMATION 10
766 #define FILE_LINK_INFORMATION 11
767 #define FILE_NAMES_INFORMATION 12
768 #define FILE_DISPOSITION_INFORMATION 13
769 #define FILE_POSITION_INFORMATION 14
770 #define FILE_FULL_EA_INFORMATION 15
771 #define FILE_MODE_INFORMATION 16
772 #define FILE_ALIGNMENT_INFORMATION 17
773 #define FILE_ALL_INFORMATION 18
774 #define FILE_ALLOCATION_INFORMATION 19
775 #define FILE_END_OF_FILE_INFORMATION 20
776 #define FILE_ALTERNATE_NAME_INFORMATION 21
777 #define FILE_STREAM_INFORMATION 22
778 #define FILE_PIPE_INFORMATION 23
779 #define FILE_PIPE_LOCAL_INFORMATION 24
780 #define FILE_PIPE_REMOTE_INFORMATION 25
781 #define FILE_MAILSLOT_QUERY_INFORMATION 26
782 #define FILE_MAILSLOT_SET_INFORMATION 27
783 #define FILE_COMPRESSION_INFORMATION 28
784 #define FILE_OBJECT_ID_INFORMATION 29
785 /* Number 30 not defined in documents */
786 #define FILE_MOVE_CLUSTER_INFORMATION 31
787 #define FILE_QUOTA_INFORMATION 32
788 #define FILE_REPARSE_POINT_INFORMATION 33
789 #define FILE_NETWORK_OPEN_INFORMATION 34
790 #define FILE_ATTRIBUTE_TAG_INFORMATION 35
791 #define FILE_TRACKING_INFORMATION 36
792 #define FILEID_BOTH_DIRECTORY_INFORMATION 37
793 #define FILEID_FULL_DIRECTORY_INFORMATION 38
794 #define FILE_VALID_DATA_LENGTH_INFORMATION 39
795 #define FILE_SHORT_NAME_INFORMATION 40
796 #define FILE_SFIO_RESERVE_INFORMATION 44
797 #define FILE_SFIO_VOLUME_INFORMATION 45
798 #define FILE_HARD_LINK_INFORMATION 46
799 #define FILE_NORMALIZED_NAME_INFORMATION 48
800 #define FILEID_GLOBAL_TX_DIRECTORY_INFORMATION 50
801 #define FILE_STANDARD_LINK_INFORMATION 54
802 
805 } __packed; /* level 6 Query */
806 
807 struct smb2_file_rename_info { /* encoding of request for level 10 */
808  __u8 ReplaceIfExists; /* 1 = replace existing target with new */
809  /* 0 = fail if target already exists */
811  __u64 RootDirectory; /* MBZ for network operations (why says spec?) */
813  char FileName[0]; /* New name to be assigned */
814 } __packed; /* level 10 Set */
815 
816 struct smb2_file_link_info { /* encoding of request for level 11 */
817  __u8 ReplaceIfExists; /* 1 = replace existing link with new */
818  /* 0 = fail if link already exists */
820  __u64 RootDirectory; /* MBZ for network operations (why says spec?) */
822  char FileName[0]; /* Name to be assigned to new link */
823 } __packed; /* level 11 Set */
824 
825 /*
826  * This level 18, although with struct with same name is different from cifs
827  * level 0x107. Level 0x107 has an extra u64 between AccessFlags and
828  * CurrentByteOffset.
829  */
830 struct smb2_file_all_info { /* data block encoding of response to level 18 */
831  __le64 CreationTime; /* Beginning of FILE_BASIC_INFO equivalent */
836  __u32 Pad1; /* End of FILE_BASIC_INFO_INFO equivalent */
837  __le64 AllocationSize; /* Beginning of FILE_STANDARD_INFO equivalent */
838  __le64 EndOfFile; /* size ie offset to first free byte in file */
839  __le32 NumberOfLinks; /* hard links */
842  __u16 Pad2; /* End of FILE_STANDARD_INFO equivalent */
850  char FileName[1];
851 } __packed; /* level 18 Query */
852 
853 struct smb2_file_eof_info { /* encoding of request for level 10 */
854  __le64 EndOfFile; /* new end of file value */
855 } __packed; /* level 20 Set */
856 
857 #endif /* _SMB2PDU_H */