blob: 236814d612487b59942fa5143231686e75024769 [file] [log] [blame]
Steve Frenchddfbefb2011-03-15 02:08:48 +00001/*
2 * fs/cifs/smb2pdu.h
3 *
Steve Frenchbe7457d2013-06-19 17:41:10 -05004 * Copyright (c) International Business Machines Corp., 2009, 2013
Steve Frenchddfbefb2011-03-15 02:08:48 +00005 * 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>
Steve Frenchfdef6652019-12-06 02:02:38 -060028#include <cifsacl.h>
Steve Frenchddfbefb2011-03-15 02:08:48 +000029
30/*
Pavel Shilovsky2dc7e1c2011-12-26 22:53:34 +040031 * Note that, due to trying to use names similar to the protocol specifications,
32 * there are many mixed case field names in the structures below. Although
33 * this does not match typical Linux kernel style, it is necessary to be
34 * be able to match against the protocol specfication.
35 *
36 * SMB2 commands
37 * Some commands have minimal (wct=0,bcc=0), or uninteresting, responses
38 * (ie no useful data other than the SMB error code itself) and are marked such.
39 * Knowing this helps avoid response buffer allocations and copy in some cases.
40 */
41
42/* List of commands in host endian */
43#define SMB2_NEGOTIATE_HE 0x0000
44#define SMB2_SESSION_SETUP_HE 0x0001
45#define SMB2_LOGOFF_HE 0x0002 /* trivial request/resp */
46#define SMB2_TREE_CONNECT_HE 0x0003
47#define SMB2_TREE_DISCONNECT_HE 0x0004 /* trivial req/resp */
48#define SMB2_CREATE_HE 0x0005
49#define SMB2_CLOSE_HE 0x0006
50#define SMB2_FLUSH_HE 0x0007 /* trivial resp */
51#define SMB2_READ_HE 0x0008
52#define SMB2_WRITE_HE 0x0009
53#define SMB2_LOCK_HE 0x000A
54#define SMB2_IOCTL_HE 0x000B
55#define SMB2_CANCEL_HE 0x000C
56#define SMB2_ECHO_HE 0x000D
57#define SMB2_QUERY_DIRECTORY_HE 0x000E
58#define SMB2_CHANGE_NOTIFY_HE 0x000F
59#define SMB2_QUERY_INFO_HE 0x0010
60#define SMB2_SET_INFO_HE 0x0011
61#define SMB2_OPLOCK_BREAK_HE 0x0012
62
63/* The same list in little endian */
64#define SMB2_NEGOTIATE cpu_to_le16(SMB2_NEGOTIATE_HE)
65#define SMB2_SESSION_SETUP cpu_to_le16(SMB2_SESSION_SETUP_HE)
66#define SMB2_LOGOFF cpu_to_le16(SMB2_LOGOFF_HE)
67#define SMB2_TREE_CONNECT cpu_to_le16(SMB2_TREE_CONNECT_HE)
68#define SMB2_TREE_DISCONNECT cpu_to_le16(SMB2_TREE_DISCONNECT_HE)
69#define SMB2_CREATE cpu_to_le16(SMB2_CREATE_HE)
70#define SMB2_CLOSE cpu_to_le16(SMB2_CLOSE_HE)
71#define SMB2_FLUSH cpu_to_le16(SMB2_FLUSH_HE)
72#define SMB2_READ cpu_to_le16(SMB2_READ_HE)
73#define SMB2_WRITE cpu_to_le16(SMB2_WRITE_HE)
74#define SMB2_LOCK cpu_to_le16(SMB2_LOCK_HE)
75#define SMB2_IOCTL cpu_to_le16(SMB2_IOCTL_HE)
76#define SMB2_CANCEL cpu_to_le16(SMB2_CANCEL_HE)
77#define SMB2_ECHO cpu_to_le16(SMB2_ECHO_HE)
78#define SMB2_QUERY_DIRECTORY cpu_to_le16(SMB2_QUERY_DIRECTORY_HE)
79#define SMB2_CHANGE_NOTIFY cpu_to_le16(SMB2_CHANGE_NOTIFY_HE)
80#define SMB2_QUERY_INFO cpu_to_le16(SMB2_QUERY_INFO_HE)
81#define SMB2_SET_INFO cpu_to_le16(SMB2_SET_INFO_HE)
82#define SMB2_OPLOCK_BREAK cpu_to_le16(SMB2_OPLOCK_BREAK_HE)
83
Pavel Shilovsky96a988f2016-11-29 11:31:23 -080084#define SMB2_INTERNAL_CMD cpu_to_le16(0xFFFF)
85
Pavel Shilovsky2dc7e1c2011-12-26 22:53:34 +040086#define NUMBER_OF_SMB2_COMMANDS 0x0013
87
Ronnie Sahlberg58d15ed2019-01-29 12:46:16 +100088/* 52 transform hdr + 64 hdr + 88 create rsp */
Ronnie Sahlbergc4627e62019-01-29 12:46:17 +100089#define SMB2_TRANSFORM_HEADER_SIZE 52
Ronnie Sahlberg58d15ed2019-01-29 12:46:16 +100090#define MAX_SMB2_HDR_SIZE 204
Pavel Shilovsky2dc7e1c2011-12-26 22:53:34 +040091
Fabian Frederickbc09d142014-12-10 15:41:15 -080092#define SMB2_PROTO_NUMBER cpu_to_le32(0x424d53fe)
Steve French373512e2015-12-18 13:05:30 -060093#define SMB2_TRANSFORM_PROTO_NUM cpu_to_le32(0x424d53fd)
Steve French8895c662020-03-17 01:53:39 -050094#define SMB2_COMPRESSION_TRANSFORM_ID cpu_to_le32(0x424d53fc)
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +040095
Pavel Shilovsky2dc7e1c2011-12-26 22:53:34 +040096/*
Steve Frenchddfbefb2011-03-15 02:08:48 +000097 * SMB2 Header Definition
98 *
99 * "MBZ" : Must be Zero
100 * "BB" : BugBug, Something to check/review/analyze later
101 * "PDU" : "Protocol Data Unit" (ie a network "frame")
102 *
103 */
Pavel Shilovsky74112862012-07-27 01:20:41 +0400104
Fabian Frederickbc09d142014-12-10 15:41:15 -0800105#define SMB2_HEADER_STRUCTURE_SIZE cpu_to_le16(64)
Pavel Shilovsky74112862012-07-27 01:20:41 +0400106
Pavel Shilovsky31473fc2016-10-24 15:33:04 -0700107struct smb2_sync_hdr {
Steve French373512e2015-12-18 13:05:30 -0600108 __le32 ProtocolId; /* 0xFE 'S' 'M' 'B' */
Steve Frenchddfbefb2011-03-15 02:08:48 +0000109 __le16 StructureSize; /* 64 */
110 __le16 CreditCharge; /* MBZ */
111 __le32 Status; /* Error from server */
112 __le16 Command;
113 __le16 CreditRequest; /* CreditResponse */
114 __le32 Flags;
115 __le32 NextCommand;
Sachin Prabhu9235d092014-12-09 17:37:00 +0000116 __le64 MessageId;
Steve Frenchddfbefb2011-03-15 02:08:48 +0000117 __le32 ProcessId;
118 __u32 TreeId; /* opaque - so do not make little endian */
119 __u64 SessionId; /* opaque - so do not make little endian */
120 __u8 Signature[16];
121} __packed;
122
Long Lif7950cb2020-03-26 19:42:24 -0700123/* The total header size for SMB2 read and write */
124#define SMB2_READWRITE_PDU_HEADER_SIZE (48 + sizeof(struct smb2_sync_hdr))
125
Pavel Shilovskycb200bd2016-10-24 16:59:57 -0700126struct smb2_sync_pdu {
127 struct smb2_sync_hdr sync_hdr;
128 __le16 StructureSize2; /* size of wct area (varies, request specific) */
129} __packed;
130
Steve French9ac63ec2019-06-07 08:59:40 -0500131#define SMB3_AES128CCM_NONCE 11
Pavel Shilovsky026e93d2016-11-03 16:47:37 -0700132#define SMB3_AES128GCM_NONCE 12
133
Steve French8895c662020-03-17 01:53:39 -0500134/* Transform flags (for 3.0 dialect this flag indicates CCM */
135#define TRANSFORM_FLAG_ENCRYPTED 0x0001
Steve French0cbaa532013-11-15 23:50:24 -0600136struct smb2_transform_hdr {
Pavel Shilovsky026e93d2016-11-03 16:47:37 -0700137 __le32 ProtocolId; /* 0xFD 'S' 'M' 'B' */
Steve French0cbaa532013-11-15 23:50:24 -0600138 __u8 Signature[16];
Steve French373512e2015-12-18 13:05:30 -0600139 __u8 Nonce[16];
Steve French0cbaa532013-11-15 23:50:24 -0600140 __le32 OriginalMessageSize;
141 __u16 Reserved1;
Steve French8895c662020-03-17 01:53:39 -0500142 __le16 Flags; /* EncryptionAlgorithm for 3.0, enc enabled for 3.1.1 */
Steve French0cbaa532013-11-15 23:50:24 -0600143 __u64 SessionId;
144} __packed;
145
Steve French3563a6f2020-05-30 17:10:16 -0500146/* See MS-SMB2 2.2.42 */
147struct smb2_compression_transform_hdr {
148 __le32 ProtocolId; /* 0xFC 'S' 'M' 'B' */
149 __le32 OriginalCompressedSegmentSize;
150 __le16 CompressionAlgorithm;
151 __le16 Flags;
152 __le16 Length; /* if chained it is length, else offset */
153} __packed;
154
Steve French8f233432020-03-15 18:04:13 -0500155/* See MS-SMB2 2.2.42.1 */
Steve French3563a6f2020-05-30 17:10:16 -0500156struct compression_payload_header {
Steve French8f233432020-03-15 18:04:13 -0500157 __le16 AlgorithmId;
158 __le16 Reserved;
159 __le32 Length;
160} __packed;
161
162/* See MS-SMB2 2.2.42.2 */
163struct compression_pattern_payload_v1 {
164 __le16 Pattern;
165 __le16 Reserved1;
166 __le16 Reserved2;
167 __le32 Repetitions;
168} __packed;
169
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400170/*
171 * SMB2 flag definitions
172 */
Fabian Frederickbc09d142014-12-10 15:41:15 -0800173#define SMB2_FLAGS_SERVER_TO_REDIR cpu_to_le32(0x00000001)
174#define SMB2_FLAGS_ASYNC_COMMAND cpu_to_le32(0x00000002)
175#define SMB2_FLAGS_RELATED_OPERATIONS cpu_to_le32(0x00000004)
176#define SMB2_FLAGS_SIGNED cpu_to_le32(0x00000008)
Steve French59519802019-07-25 18:19:42 -0500177#define SMB2_FLAGS_PRIORITY_MASK cpu_to_le32(0x00000070) /* SMB3.1.1 */
Fabian Frederickbc09d142014-12-10 15:41:15 -0800178#define SMB2_FLAGS_DFS_OPERATIONS cpu_to_le32(0x10000000)
Steve French59519802019-07-25 18:19:42 -0500179#define SMB2_FLAGS_REPLAY_OPERATION cpu_to_le32(0x20000000) /* SMB3 & up */
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400180
181/*
182 * Definitions for SMB2 Protocol Data Units (network frames)
183 *
184 * See MS-SMB2.PDF specification for protocol details.
185 * The Naming convention is the lower case version of the SMB2
186 * command code name for the struct. Note that structures must be packed.
187 *
188 */
Pavel Shilovsky74112862012-07-27 01:20:41 +0400189
Ronnie Sahlberg730928c2018-08-08 15:07:49 +1000190#define COMPOUND_FID 0xFFFFFFFFFFFFFFFFULL
191
Fabian Frederickbc09d142014-12-10 15:41:15 -0800192#define SMB2_ERROR_STRUCTURE_SIZE2 cpu_to_le16(9)
Pavel Shilovsky74112862012-07-27 01:20:41 +0400193
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400194struct smb2_err_rsp {
Ronnie Sahlberg49f466b2018-06-01 10:53:06 +1000195 struct smb2_sync_hdr sync_hdr;
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400196 __le16 StructureSize;
197 __le16 Reserved; /* MBZ */
198 __le32 ByteCount; /* even if zero, at least one byte follows */
199 __u8 ErrorData[1]; /* variable length */
200} __packed;
201
Ronnie Sahlbergdf070af2019-07-09 18:41:11 +1000202#define SYMLINK_ERROR_TAG 0x4c4d5953
203
Pavel Shilovskyb42bf882013-08-14 19:25:21 +0400204struct smb2_symlink_err_rsp {
205 __le32 SymLinkLength;
206 __le32 SymLinkErrorTag;
207 __le32 ReparseTag;
208 __le16 ReparseDataLength;
209 __le16 UnparsedPathLength;
210 __le16 SubstituteNameOffset;
211 __le16 SubstituteNameLength;
212 __le16 PrintNameOffset;
213 __le16 PrintNameLength;
214 __le32 Flags;
Gustavo A. R. Silvacff2def2020-03-09 10:44:51 -0500215 __u8 PathBuffer[];
Pavel Shilovskyb42bf882013-08-14 19:25:21 +0400216} __packed;
217
Steve French5f60a562018-02-05 14:46:18 -0600218/* SMB 3.1.1 and later dialects. See MS-SMB2 section 2.2.2.1 */
219struct smb2_error_context_rsp {
220 __le32 ErrorDataLength;
221 __le32 ErrorId;
222 __u8 ErrorContextData; /* ErrorDataLength long array */
223} __packed;
224
Steve French8895c662020-03-17 01:53:39 -0500225/* ErrorId values */
226#define SMB2_ERROR_ID_DEFAULT 0x00000000
227#define SMB2_ERROR_ID_SHARE_REDIRECT cpu_to_le32(0x72645253) /* "rdRS" */
228
Steve French5f60a562018-02-05 14:46:18 -0600229/* Defines for Type field below (see MS-SMB2 2.2.2.2.2.1) */
230#define MOVE_DST_IPADDR_V4 cpu_to_le32(0x00000001)
231#define MOVE_DST_IPADDR_V6 cpu_to_le32(0x00000002)
232
233struct move_dst_ipaddr {
234 __le32 Type;
235 __u32 Reserved;
236 __u8 address[16]; /* IPv4 followed by 12 bytes rsvd or IPv6 address */
237} __packed;
238
239struct share_redirect_error_context_rsp {
240 __le32 StructureSize;
241 __le32 NotificationType;
242 __le32 ResourceNameOffset;
243 __le32 ResourceNameLength;
244 __le16 Flags;
245 __le16 TargetType;
246 __le32 IPAddrCount;
Gustavo A. R. Silvacff2def2020-03-09 10:44:51 -0500247 struct move_dst_ipaddr IpAddrMoveList[];
Steve French5f60a562018-02-05 14:46:18 -0600248 /* __u8 ResourceName[] */ /* Name of share as counted Unicode string */
249} __packed;
250
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -0700251#define SMB2_CLIENT_GUID_SIZE 16
252
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400253struct smb2_negotiate_req {
Ronnie Sahlberg13cacea2017-11-20 11:24:30 +1100254 struct smb2_sync_hdr sync_hdr;
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400255 __le16 StructureSize; /* Must be 36 */
256 __le16 DialectCount;
257 __le16 SecurityMode;
258 __le16 Reserved; /* MBZ */
259 __le32 Capabilities;
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -0700260 __u8 ClientGUID[SMB2_CLIENT_GUID_SIZE];
Steve French5f7fbf72014-12-17 22:52:58 -0600261 /* In SMB3.02 and earlier next three were MBZ le64 ClientStartTime */
262 __le32 NegotiateContextOffset; /* SMB3.1.1 only. MBZ earlier */
263 __le16 NegotiateContextCount; /* SMB3.1.1 only. MBZ earlier */
264 __le16 Reserved2;
Steve Frenche4aa25e2012-10-01 12:26:22 -0500265 __le16 Dialects[1]; /* One dialect (vers=) at a time for now */
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400266} __packed;
267
Steve Frenche4aa25e2012-10-01 12:26:22 -0500268/* Dialects */
Steve French43cdae82019-06-13 14:26:49 -0500269#define SMB10_PROT_ID 0x0000 /* local only, not sent on wire w/CIFS negprot */
Steve Frenche4aa25e2012-10-01 12:26:22 -0500270#define SMB20_PROT_ID 0x0202
271#define SMB21_PROT_ID 0x0210
272#define SMB30_PROT_ID 0x0300
Steve French20b6d8b2013-06-12 22:48:41 -0500273#define SMB302_PROT_ID 0x0302
Steve French5f7fbf72014-12-17 22:52:58 -0600274#define SMB311_PROT_ID 0x0311
Steve Frenche4aa25e2012-10-01 12:26:22 -0500275#define BAD_PROT_ID 0xFFFF
276
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400277/* SecurityMode flags */
278#define SMB2_NEGOTIATE_SIGNING_ENABLED 0x0001
279#define SMB2_NEGOTIATE_SIGNING_REQUIRED 0x0002
Steve French07108d02018-04-01 20:15:55 -0500280#define SMB2_SEC_MODE_FLAGS_ALL 0x0003
281
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400282/* Capabilities flags */
283#define SMB2_GLOBAL_CAP_DFS 0x00000001
284#define SMB2_GLOBAL_CAP_LEASING 0x00000002 /* Resp only New to SMB2.1 */
285#define SMB2_GLOBAL_CAP_LARGE_MTU 0X00000004 /* Resp only New to SMB2.1 */
Steve Frenche4aa25e2012-10-01 12:26:22 -0500286#define SMB2_GLOBAL_CAP_MULTI_CHANNEL 0x00000008 /* New to SMB3 */
287#define SMB2_GLOBAL_CAP_PERSISTENT_HANDLES 0x00000010 /* New to SMB3 */
288#define SMB2_GLOBAL_CAP_DIRECTORY_LEASING 0x00000020 /* New to SMB3 */
289#define SMB2_GLOBAL_CAP_ENCRYPTION 0x00000040 /* New to SMB3 */
Pavel Shilovsky29e20f92012-07-13 13:58:14 +0400290/* Internal types */
291#define SMB2_NT_FIND 0x00100000
292#define SMB2_LARGE_FILES 0x00200000
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400293
Steve Frenchd7bef4c2019-04-18 11:03:58 -0500294
295/* Negotiate Contexts - ContextTypes. See MS-SMB2 section 2.2.3.1 for details */
296#define SMB2_PREAUTH_INTEGRITY_CAPABILITIES cpu_to_le16(1)
297#define SMB2_ENCRYPTION_CAPABILITIES cpu_to_le16(2)
298#define SMB2_COMPRESSION_CAPABILITIES cpu_to_le16(3)
299#define SMB2_NETNAME_NEGOTIATE_CONTEXT_ID cpu_to_le16(5)
300#define SMB2_POSIX_EXTENSIONS_AVAILABLE cpu_to_le16(0x100)
301
Steve French136ff1b2018-04-08 16:14:31 -0500302struct smb2_neg_context {
303 __le16 ContextType;
304 __le16 DataLength;
305 __le32 Reserved;
306 /* Followed by array of data */
307} __packed;
308
Steve Frencheed0e172015-02-06 00:03:52 -0600309#define SMB311_SALT_SIZE 32
310/* Hash Algorithm Types */
Steve Frenchebb3a9d2015-06-18 04:49:47 -0500311#define SMB2_PREAUTH_INTEGRITY_SHA512 cpu_to_le16(0x0001)
Aurelien Aptel8bd68c62018-02-16 19:19:29 +0100312#define SMB2_PREAUTH_HASH_SIZE 64
Steve Frencheed0e172015-02-06 00:03:52 -0600313
Steve French5100d8a2018-04-09 10:47:14 -0500314#define MIN_PREAUTH_CTXT_DATA_LEN (SMB311_SALT_SIZE + 6)
Steve Frencheed0e172015-02-06 00:03:52 -0600315struct smb2_preauth_neg_context {
316 __le16 ContextType; /* 1 */
317 __le16 DataLength;
318 __le32 Reserved;
319 __le16 HashAlgorithmCount; /* 1 */
320 __le16 SaltLength;
321 __le16 HashAlgorithms; /* HashAlgorithms[0] since only one defined */
322 __u8 Salt[SMB311_SALT_SIZE];
323} __packed;
324
325/* Encryption Algorithms Ciphers */
326#define SMB2_ENCRYPTION_AES128_CCM cpu_to_le16(0x0001)
327#define SMB2_ENCRYPTION_AES128_GCM cpu_to_le16(0x0002)
328
Steve French5100d8a2018-04-09 10:47:14 -0500329/* Min encrypt context data is one cipher so 2 bytes + 2 byte count field */
330#define MIN_ENCRYPT_CTXT_DATA_LEN 4
Steve Frencheed0e172015-02-06 00:03:52 -0600331struct smb2_encryption_neg_context {
332 __le16 ContextType; /* 2 */
333 __le16 DataLength;
334 __le32 Reserved;
Steve Frenchebb3a9d2015-06-18 04:49:47 -0500335 __le16 CipherCount; /* AES-128-GCM and AES-128-CCM */
Steve French9ac63ec2019-06-07 08:59:40 -0500336 __le16 Ciphers[2];
Steve Frencheed0e172015-02-06 00:03:52 -0600337} __packed;
338
Steve Frenchd7bef4c2019-04-18 11:03:58 -0500339/* See MS-SMB2 2.2.3.1.3 */
Steve French26ea8882019-04-26 20:36:08 -0700340#define SMB3_COMPRESS_NONE cpu_to_le16(0x0000)
341#define SMB3_COMPRESS_LZNT1 cpu_to_le16(0x0001)
342#define SMB3_COMPRESS_LZ77 cpu_to_le16(0x0002)
343#define SMB3_COMPRESS_LZ77_HUFF cpu_to_le16(0x0003)
Steve French2fe4f622020-03-15 17:42:41 -0500344/* Pattern scanning algorithm See MS-SMB2 3.1.4.4.1 */
Steve French3563a6f2020-05-30 17:10:16 -0500345#define SMB3_COMPRESS_PATTERN cpu_to_le16(0x0004) /* Pattern_V1 */
Steve French2fe4f622020-03-15 17:42:41 -0500346
347/* Compression Flags */
348#define SMB2_COMPRESSION_CAPABILITIES_FLAG_NONE cpu_to_le32(0x00000000)
349#define SMB2_COMPRESSION_CAPABILITIES_FLAG_CHAINED cpu_to_le32(0x00000001)
Steve Frenchd7bef4c2019-04-18 11:03:58 -0500350
351struct smb2_compression_capabilities_context {
Steve French26ea8882019-04-26 20:36:08 -0700352 __le16 ContextType; /* 3 */
353 __le16 DataLength;
Steve French2fe4f622020-03-15 17:42:41 -0500354 __u32 Flags;
Steve Frenchd7bef4c2019-04-18 11:03:58 -0500355 __le16 CompressionAlgorithmCount;
356 __u16 Padding;
Steve French26ea8882019-04-26 20:36:08 -0700357 __u32 Reserved1;
358 __le16 CompressionAlgorithms[3];
Steve Frenchd7bef4c2019-04-18 11:03:58 -0500359} __packed;
360
361/*
362 * For smb2_netname_negotiate_context_id See MS-SMB2 2.2.3.1.4.
363 * Its struct simply contains NetName, an array of Unicode characters
364 */
Steve French96d3cca2019-06-25 04:39:51 -0500365struct smb2_netname_neg_context {
366 __le16 ContextType; /* 0x100 */
367 __le16 DataLength;
368 __le32 Reserved;
Gustavo A. R. Silvacff2def2020-03-09 10:44:51 -0500369 __le16 NetName[]; /* hostname of target converted to UCS-2 */
Steve French96d3cca2019-06-25 04:39:51 -0500370} __packed;
Steve Frenchd7bef4c2019-04-18 11:03:58 -0500371
Steve French0d481322019-02-24 17:56:33 -0600372#define POSIX_CTXT_DATA_LEN 16
Steve Frenchfcef0db2018-05-19 20:45:27 -0500373struct smb2_posix_neg_context {
374 __le16 ContextType; /* 0x100 */
375 __le16 DataLength;
376 __le32 Reserved;
Steve French0d481322019-02-24 17:56:33 -0600377 __u8 Name[16]; /* POSIX ctxt GUID 93AD25509CB411E7B42383DE968BCD7C */
Steve Frenchfcef0db2018-05-19 20:45:27 -0500378} __packed;
379
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400380struct smb2_negotiate_rsp {
Ronnie Sahlberg49f466b2018-06-01 10:53:06 +1000381 struct smb2_sync_hdr sync_hdr;
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400382 __le16 StructureSize; /* Must be 65 */
383 __le16 SecurityMode;
384 __le16 DialectRevision;
Steve French5f7fbf72014-12-17 22:52:58 -0600385 __le16 NegotiateContextCount; /* Prior to SMB3.1.1 was Reserved & MBZ */
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400386 __u8 ServerGUID[16];
387 __le32 Capabilities;
388 __le32 MaxTransactSize;
389 __le32 MaxReadSize;
390 __le32 MaxWriteSize;
391 __le64 SystemTime; /* MBZ */
392 __le64 ServerStartTime;
393 __le16 SecurityBufferOffset;
394 __le16 SecurityBufferLength;
Steve French5f7fbf72014-12-17 22:52:58 -0600395 __le32 NegotiateContextOffset; /* Pre:SMB3.1.1 was reserved/ignored */
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400396 __u8 Buffer[1]; /* variable length GSS security buffer */
397} __packed;
398
Steve Frencheed0e172015-02-06 00:03:52 -0600399/* Flags */
400#define SMB2_SESSION_REQ_FLAG_BINDING 0x01
401#define SMB2_SESSION_REQ_FLAG_ENCRYPT_DATA 0x04
402
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400403struct smb2_sess_setup_req {
Ronnie Sahlberg88ea5cb2017-11-20 11:24:36 +1100404 struct smb2_sync_hdr sync_hdr;
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400405 __le16 StructureSize; /* Must be 25 */
Steve Frencheed0e172015-02-06 00:03:52 -0600406 __u8 Flags;
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400407 __u8 SecurityMode;
408 __le32 Capabilities;
409 __le32 Channel;
410 __le16 SecurityBufferOffset;
411 __le16 SecurityBufferLength;
Steve Frenchc2afb812016-09-20 22:56:13 -0500412 __u64 PreviousSessionId;
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400413 __u8 Buffer[1]; /* variable length GSS security buffer */
414} __packed;
415
416/* Currently defined SessionFlags */
417#define SMB2_SESSION_FLAG_IS_GUEST 0x0001
418#define SMB2_SESSION_FLAG_IS_NULL 0x0002
Steve French0cbaa532013-11-15 23:50:24 -0600419#define SMB2_SESSION_FLAG_ENCRYPT_DATA 0x0004
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400420struct smb2_sess_setup_rsp {
Ronnie Sahlberg49f466b2018-06-01 10:53:06 +1000421 struct smb2_sync_hdr sync_hdr;
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400422 __le16 StructureSize; /* Must be 9 */
423 __le16 SessionFlags;
424 __le16 SecurityBufferOffset;
425 __le16 SecurityBufferLength;
426 __u8 Buffer[1]; /* variable length GSS security buffer */
427} __packed;
428
429struct smb2_logoff_req {
Ronnie Sahlberg45305ed2017-11-09 12:14:17 +1100430 struct smb2_sync_hdr sync_hdr;
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400431 __le16 StructureSize; /* Must be 4 */
432 __le16 Reserved;
433} __packed;
434
435struct smb2_logoff_rsp {
Ronnie Sahlberg49f466b2018-06-01 10:53:06 +1000436 struct smb2_sync_hdr sync_hdr;
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400437 __le16 StructureSize; /* Must be 4 */
438 __le16 Reserved;
439} __packed;
440
Steve Frencheed0e172015-02-06 00:03:52 -0600441/* Flags/Reserved for SMB3.1.1 */
Steve French5f60a562018-02-05 14:46:18 -0600442#define SMB2_TREE_CONNECT_FLAG_CLUSTER_RECONNECT cpu_to_le16(0x0001)
443#define SMB2_TREE_CONNECT_FLAG_REDIRECT_TO_OWNER cpu_to_le16(0x0002)
444#define SMB2_TREE_CONNECT_FLAG_EXTENSION_PRESENT cpu_to_le16(0x0004)
Steve Frencheed0e172015-02-06 00:03:52 -0600445
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +0400446struct smb2_tree_connect_req {
Ronnie Sahlberg661bb9432017-11-09 12:14:23 +1100447 struct smb2_sync_hdr sync_hdr;
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +0400448 __le16 StructureSize; /* Must be 9 */
Steve French8895c662020-03-17 01:53:39 -0500449 __le16 Flags; /* Reserved MBZ for dialects prior to SMB3.1.1 */
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +0400450 __le16 PathOffset;
451 __le16 PathLength;
452 __u8 Buffer[1]; /* variable length */
453} __packed;
454
Steve French5f60a562018-02-05 14:46:18 -0600455/* See MS-SMB2 section 2.2.9.2 */
456/* Context Types */
457#define SMB2_RESERVED_TREE_CONNECT_CONTEXT_ID 0x0000
458#define SMB2_REMOTED_IDENTITY_TREE_CONNECT_CONTEXT_ID cpu_to_le16(0x0001)
459
460struct tree_connect_contexts {
461 __le16 ContextType;
462 __le16 DataLength;
463 __le32 Reserved;
Gustavo A. R. Silvacff2def2020-03-09 10:44:51 -0500464 __u8 Data[];
Steve French5f60a562018-02-05 14:46:18 -0600465} __packed;
466
467/* Remoted identity tree connect context structures - see MS-SMB2 2.2.9.2.1 */
468struct smb3_blob_data {
469 __le16 BlobSize;
Gustavo A. R. Silvacff2def2020-03-09 10:44:51 -0500470 __u8 BlobData[];
Steve French5f60a562018-02-05 14:46:18 -0600471} __packed;
472
473/* Valid values for Attr */
474#define SE_GROUP_MANDATORY 0x00000001
475#define SE_GROUP_ENABLED_BY_DEFAULT 0x00000002
476#define SE_GROUP_ENABLED 0x00000004
477#define SE_GROUP_OWNER 0x00000008
478#define SE_GROUP_USE_FOR_DENY_ONLY 0x00000010
479#define SE_GROUP_INTEGRITY 0x00000020
480#define SE_GROUP_INTEGRITY_ENABLED 0x00000040
481#define SE_GROUP_RESOURCE 0x20000000
482#define SE_GROUP_LOGON_ID 0xC0000000
483
484/* struct sid_attr_data is SidData array in BlobData format then le32 Attr */
485
486struct sid_array_data {
487 __le16 SidAttrCount;
488 /* SidAttrList - array of sid_attr_data structs */
489} __packed;
490
491struct luid_attr_data {
492
493} __packed;
494
495/*
496 * struct privilege_data is the same as BLOB_DATA - see MS-SMB2 2.2.9.2.1.5
497 * but with size of LUID_ATTR_DATA struct and BlobData set to LUID_ATTR DATA
498 */
499
500struct privilege_array_data {
501 __le16 PrivilegeCount;
502 /* array of privilege_data structs */
503} __packed;
504
505struct remoted_identity_tcon_context {
506 __le16 TicketType; /* must be 0x0001 */
507 __le16 TicketSize; /* total size of this struct */
508 __le16 User; /* offset to SID_ATTR_DATA struct with user info */
509 __le16 UserName; /* offset to null terminated Unicode username string */
510 __le16 Domain; /* offset to null terminated Unicode domain name */
511 __le16 Groups; /* offset to SID_ARRAY_DATA struct with group info */
512 __le16 RestrictedGroups; /* similar to above */
513 __le16 Privileges; /* offset to PRIVILEGE_ARRAY_DATA struct */
514 __le16 PrimaryGroup; /* offset to SID_ARRAY_DATA struct */
515 __le16 Owner; /* offset to BLOB_DATA struct */
516 __le16 DefaultDacl; /* offset to BLOB_DATA struct */
517 __le16 DeviceGroups; /* offset to SID_ARRAY_DATA struct */
518 __le16 UserClaims; /* offset to BLOB_DATA struct */
519 __le16 DeviceClaims; /* offset to BLOB_DATA struct */
Gustavo A. R. Silvacff2def2020-03-09 10:44:51 -0500520 __u8 TicketInfo[]; /* variable length buf - remoted identity data */
Steve French5f60a562018-02-05 14:46:18 -0600521} __packed;
522
523struct smb2_tree_connect_req_extension {
524 __le32 TreeConnectContextOffset;
525 __le16 TreeConnectContextCount;
526 __u8 Reserved[10];
Gustavo A. R. Silvacff2def2020-03-09 10:44:51 -0500527 __u8 PathName[]; /* variable sized array */
Steve French5f60a562018-02-05 14:46:18 -0600528 /* followed by array of TreeConnectContexts */
529} __packed;
530
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +0400531struct smb2_tree_connect_rsp {
Ronnie Sahlberg49f466b2018-06-01 10:53:06 +1000532 struct smb2_sync_hdr sync_hdr;
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +0400533 __le16 StructureSize; /* Must be 16 */
534 __u8 ShareType; /* see below */
535 __u8 Reserved;
536 __le32 ShareFlags; /* see below */
537 __le32 Capabilities; /* see below */
538 __le32 MaximalAccess;
539} __packed;
540
541/* Possible ShareType values */
542#define SMB2_SHARE_TYPE_DISK 0x01
543#define SMB2_SHARE_TYPE_PIPE 0x02
544#define SMB2_SHARE_TYPE_PRINT 0x03
545
546/*
547 * Possible ShareFlags - exactly one and only one of the first 4 caching flags
548 * must be set (any of the remaining, SHI1005, flags may be set individually
549 * or in combination.
550 */
551#define SMB2_SHAREFLAG_MANUAL_CACHING 0x00000000
552#define SMB2_SHAREFLAG_AUTO_CACHING 0x00000010
553#define SMB2_SHAREFLAG_VDO_CACHING 0x00000020
554#define SMB2_SHAREFLAG_NO_CACHING 0x00000030
555#define SHI1005_FLAGS_DFS 0x00000001
556#define SHI1005_FLAGS_DFS_ROOT 0x00000002
557#define SHI1005_FLAGS_RESTRICT_EXCLUSIVE_OPENS 0x00000100
558#define SHI1005_FLAGS_FORCE_SHARED_DELETE 0x00000200
559#define SHI1005_FLAGS_ALLOW_NAMESPACE_CACHING 0x00000400
560#define SHI1005_FLAGS_ACCESS_BASED_DIRECTORY_ENUM 0x00000800
561#define SHI1005_FLAGS_FORCE_LEVELII_OPLOCK 0x00001000
Steve Frenchc8664732013-06-21 15:35:45 -0500562#define SHI1005_FLAGS_ENABLE_HASH_V1 0x00002000
563#define SHI1005_FLAGS_ENABLE_HASH_V2 0x00004000
564#define SHI1005_FLAGS_ENCRYPT_DATA 0x00008000
Steve French5f60a562018-02-05 14:46:18 -0600565#define SMB2_SHAREFLAG_IDENTITY_REMOTING 0x00040000 /* 3.1.1 */
566#define SHI1005_FLAGS_ALL 0x0004FF33
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +0400567
568/* Possible share capabilities */
Steve French2b5dc282013-06-13 10:51:10 -0500569#define SMB2_SHARE_CAP_DFS cpu_to_le32(0x00000008) /* all dialects */
570#define SMB2_SHARE_CAP_CONTINUOUS_AVAILABILITY cpu_to_le32(0x00000010) /* 3.0 */
571#define SMB2_SHARE_CAP_SCALEOUT cpu_to_le32(0x00000020) /* 3.0 */
572#define SMB2_SHARE_CAP_CLUSTER cpu_to_le32(0x00000040) /* 3.0 */
573#define SMB2_SHARE_CAP_ASYMMETRIC cpu_to_le32(0x00000080) /* 3.02 */
Steve French5f60a562018-02-05 14:46:18 -0600574#define SMB2_SHARE_CAP_REDIRECT_TO_OWNER cpu_to_le32(0x00000100) /* 3.1.1 */
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +0400575
576struct smb2_tree_disconnect_req {
Ronnie Sahlberg4eecf4c2017-11-09 12:14:18 +1100577 struct smb2_sync_hdr sync_hdr;
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +0400578 __le16 StructureSize; /* Must be 4 */
579 __le16 Reserved;
580} __packed;
581
582struct smb2_tree_disconnect_rsp {
Ronnie Sahlberg49f466b2018-06-01 10:53:06 +1000583 struct smb2_sync_hdr sync_hdr;
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +0400584 __le16 StructureSize; /* Must be 4 */
585 __le16 Reserved;
586} __packed;
587
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +0400588/* File Attrubutes */
589#define FILE_ATTRIBUTE_READONLY 0x00000001
590#define FILE_ATTRIBUTE_HIDDEN 0x00000002
591#define FILE_ATTRIBUTE_SYSTEM 0x00000004
592#define FILE_ATTRIBUTE_DIRECTORY 0x00000010
593#define FILE_ATTRIBUTE_ARCHIVE 0x00000020
594#define FILE_ATTRIBUTE_NORMAL 0x00000080
595#define FILE_ATTRIBUTE_TEMPORARY 0x00000100
596#define FILE_ATTRIBUTE_SPARSE_FILE 0x00000200
597#define FILE_ATTRIBUTE_REPARSE_POINT 0x00000400
598#define FILE_ATTRIBUTE_COMPRESSED 0x00000800
599#define FILE_ATTRIBUTE_OFFLINE 0x00001000
600#define FILE_ATTRIBUTE_NOT_CONTENT_INDEXED 0x00002000
601#define FILE_ATTRIBUTE_ENCRYPTED 0x00004000
Steve French73322972014-09-23 19:25:42 -0500602#define FILE_ATTRIBUTE_INTEGRITY_STREAM 0x00008000
603#define FILE_ATTRIBUTE_NO_SCRUB_DATA 0x00020000
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +0400604
605/* Oplock levels */
606#define SMB2_OPLOCK_LEVEL_NONE 0x00
607#define SMB2_OPLOCK_LEVEL_II 0x01
608#define SMB2_OPLOCK_LEVEL_EXCLUSIVE 0x08
609#define SMB2_OPLOCK_LEVEL_BATCH 0x09
610#define SMB2_OPLOCK_LEVEL_LEASE 0xFF
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -0700611/* Non-spec internal type */
612#define SMB2_OPLOCK_LEVEL_NOCHANGE 0x99
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +0400613
614/* Desired Access Flags */
615#define FILE_READ_DATA_LE cpu_to_le32(0x00000001)
616#define FILE_WRITE_DATA_LE cpu_to_le32(0x00000002)
617#define FILE_APPEND_DATA_LE cpu_to_le32(0x00000004)
618#define FILE_READ_EA_LE cpu_to_le32(0x00000008)
619#define FILE_WRITE_EA_LE cpu_to_le32(0x00000010)
620#define FILE_EXECUTE_LE cpu_to_le32(0x00000020)
621#define FILE_READ_ATTRIBUTES_LE cpu_to_le32(0x00000080)
622#define FILE_WRITE_ATTRIBUTES_LE cpu_to_le32(0x00000100)
623#define FILE_DELETE_LE cpu_to_le32(0x00010000)
624#define FILE_READ_CONTROL_LE cpu_to_le32(0x00020000)
625#define FILE_WRITE_DAC_LE cpu_to_le32(0x00040000)
626#define FILE_WRITE_OWNER_LE cpu_to_le32(0x00080000)
627#define FILE_SYNCHRONIZE_LE cpu_to_le32(0x00100000)
628#define FILE_ACCESS_SYSTEM_SECURITY_LE cpu_to_le32(0x01000000)
629#define FILE_MAXIMAL_ACCESS_LE cpu_to_le32(0x02000000)
630#define FILE_GENERIC_ALL_LE cpu_to_le32(0x10000000)
631#define FILE_GENERIC_EXECUTE_LE cpu_to_le32(0x20000000)
632#define FILE_GENERIC_WRITE_LE cpu_to_le32(0x40000000)
633#define FILE_GENERIC_READ_LE cpu_to_le32(0x80000000)
634
635/* ShareAccess Flags */
636#define FILE_SHARE_READ_LE cpu_to_le32(0x00000001)
637#define FILE_SHARE_WRITE_LE cpu_to_le32(0x00000002)
638#define FILE_SHARE_DELETE_LE cpu_to_le32(0x00000004)
639#define FILE_SHARE_ALL_LE cpu_to_le32(0x00000007)
640
641/* CreateDisposition Flags */
642#define FILE_SUPERSEDE_LE cpu_to_le32(0x00000000)
643#define FILE_OPEN_LE cpu_to_le32(0x00000001)
644#define FILE_CREATE_LE cpu_to_le32(0x00000002)
645#define FILE_OPEN_IF_LE cpu_to_le32(0x00000003)
646#define FILE_OVERWRITE_LE cpu_to_le32(0x00000004)
647#define FILE_OVERWRITE_IF_LE cpu_to_le32(0x00000005)
648
649/* CreateOptions Flags */
650#define FILE_DIRECTORY_FILE_LE cpu_to_le32(0x00000001)
651/* same as #define CREATE_NOT_FILE_LE cpu_to_le32(0x00000001) */
652#define FILE_WRITE_THROUGH_LE cpu_to_le32(0x00000002)
653#define FILE_SEQUENTIAL_ONLY_LE cpu_to_le32(0x00000004)
654#define FILE_NO_INTERMEDIATE_BUFFERRING_LE cpu_to_le32(0x00000008)
655#define FILE_SYNCHRONOUS_IO_ALERT_LE cpu_to_le32(0x00000010)
656#define FILE_SYNCHRONOUS_IO_NON_ALERT_LE cpu_to_le32(0x00000020)
657#define FILE_NON_DIRECTORY_FILE_LE cpu_to_le32(0x00000040)
658#define FILE_COMPLETE_IF_OPLOCKED_LE cpu_to_le32(0x00000100)
659#define FILE_NO_EA_KNOWLEDGE_LE cpu_to_le32(0x00000200)
660#define FILE_RANDOM_ACCESS_LE cpu_to_le32(0x00000800)
661#define FILE_DELETE_ON_CLOSE_LE cpu_to_le32(0x00001000)
662#define FILE_OPEN_BY_FILE_ID_LE cpu_to_le32(0x00002000)
663#define FILE_OPEN_FOR_BACKUP_INTENT_LE cpu_to_le32(0x00004000)
664#define FILE_NO_COMPRESSION_LE cpu_to_le32(0x00008000)
665#define FILE_RESERVE_OPFILTER_LE cpu_to_le32(0x00100000)
666#define FILE_OPEN_REPARSE_POINT_LE cpu_to_le32(0x00200000)
667#define FILE_OPEN_NO_RECALL_LE cpu_to_le32(0x00400000)
668#define FILE_OPEN_FOR_FREE_SPACE_QUERY_LE cpu_to_le32(0x00800000)
669
670#define FILE_READ_RIGHTS_LE (FILE_READ_DATA_LE | FILE_READ_EA_LE \
671 | FILE_READ_ATTRIBUTES_LE)
672#define FILE_WRITE_RIGHTS_LE (FILE_WRITE_DATA_LE | FILE_APPEND_DATA_LE \
673 | FILE_WRITE_EA_LE | FILE_WRITE_ATTRIBUTES_LE)
674#define FILE_EXEC_RIGHTS_LE (FILE_EXECUTE_LE)
675
Steve French8895c662020-03-17 01:53:39 -0500676/* Impersonation Levels. See MS-WPO section 9.7 and MSDN-IMPERS */
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +0400677#define IL_ANONYMOUS cpu_to_le32(0x00000000)
678#define IL_IDENTIFICATION cpu_to_le32(0x00000001)
679#define IL_IMPERSONATION cpu_to_le32(0x00000002)
680#define IL_DELEGATE cpu_to_le32(0x00000003)
681
682/* Create Context Values */
683#define SMB2_CREATE_EA_BUFFER "ExtA" /* extended attributes */
684#define SMB2_CREATE_SD_BUFFER "SecD" /* security descriptor */
685#define SMB2_CREATE_DURABLE_HANDLE_REQUEST "DHnQ"
686#define SMB2_CREATE_DURABLE_HANDLE_RECONNECT "DHnC"
Steve French12197a72014-05-14 05:29:40 -0700687#define SMB2_CREATE_ALLOCATION_SIZE "AISi"
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +0400688#define SMB2_CREATE_QUERY_MAXIMAL_ACCESS_REQUEST "MxAc"
689#define SMB2_CREATE_TIMEWARP_REQUEST "TWrp"
690#define SMB2_CREATE_QUERY_ON_DISK_ID "QFid"
691#define SMB2_CREATE_REQUEST_LEASE "RqLs"
Steve French12197a72014-05-14 05:29:40 -0700692#define SMB2_CREATE_DURABLE_HANDLE_REQUEST_V2 "DH2Q"
693#define SMB2_CREATE_DURABLE_HANDLE_RECONNECT_V2 "DH2C"
694#define SMB2_CREATE_APP_INSTANCE_ID 0x45BCA66AEFA7F74A9008FA462E144D74
Steve Frenche7348e32019-06-28 02:35:10 -0500695#define SMB2_CREATE_APP_INSTANCE_VERSION 0xB982D0B73B56074FA07B524A8116A010
Steve Frenchfe048402018-05-30 17:10:25 -0500696#define SVHDX_OPEN_DEVICE_CONTEX 0x9CCBCF9E04C1E643980E158DA1F6EC83
697#define SMB2_CREATE_TAG_POSIX 0x93AD25509CB411E7B42383DE968BCD7C
698
Steve French37e6a702018-09-19 02:02:58 -0500699/* Flag (SMB3 open response) values */
700#define SMB2_CREATE_FLAG_REPARSEPOINT 0x01
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +0400701
Ronnie Sahlberg4d8dfaf2018-08-21 11:49:21 +1000702/*
703 * Maximum number of iovs we need for an open/create request.
704 * [0] : struct smb2_create_req
705 * [1] : path
706 * [2] : lease context
707 * [3] : durable context
708 * [4] : posix context
709 * [5] : time warp context
Steve Frenchff2a09e2019-07-06 14:41:38 -0500710 * [6] : query id context
711 * [7] : compound padding
Ronnie Sahlberg4d8dfaf2018-08-21 11:49:21 +1000712 */
Steve Frenchff2a09e2019-07-06 14:41:38 -0500713#define SMB2_CREATE_IOV_SIZE 8
Ronnie Sahlberg4d8dfaf2018-08-21 11:49:21 +1000714
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +0400715struct smb2_create_req {
Ronnie Sahlberg4f33bc32017-11-20 11:24:38 +1100716 struct smb2_sync_hdr sync_hdr;
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +0400717 __le16 StructureSize; /* Must be 57 */
718 __u8 SecurityFlags;
719 __u8 RequestedOplockLevel;
720 __le32 ImpersonationLevel;
721 __le64 SmbCreateFlags;
722 __le64 Reserved;
723 __le32 DesiredAccess;
724 __le32 FileAttributes;
725 __le32 ShareAccess;
726 __le32 CreateDisposition;
727 __le32 CreateOptions;
728 __le16 NameOffset;
729 __le16 NameLength;
730 __le32 CreateContextsOffset;
731 __le32 CreateContextsLength;
Gustavo A. R. Silvacff2def2020-03-09 10:44:51 -0500732 __u8 Buffer[];
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +0400733} __packed;
734
Ronnie Sahlbergc4627e62019-01-29 12:46:17 +1000735/*
736 * Maximum size of a SMB2_CREATE response is 64 (smb2 header) +
Steve Frenchff2a09e2019-07-06 14:41:38 -0500737 * 88 (fixed part of create response) + 520 (path) + 208 (contexts) +
Ronnie Sahlbergc4627e62019-01-29 12:46:17 +1000738 * 2 bytes of padding.
739 */
Steve Frenchff2a09e2019-07-06 14:41:38 -0500740#define MAX_SMB2_CREATE_RESPONSE_SIZE 880
Ronnie Sahlbergc4627e62019-01-29 12:46:17 +1000741
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +0400742struct smb2_create_rsp {
Ronnie Sahlberg49f466b2018-06-01 10:53:06 +1000743 struct smb2_sync_hdr sync_hdr;
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +0400744 __le16 StructureSize; /* Must be 89 */
745 __u8 OplockLevel;
Steve French37e6a702018-09-19 02:02:58 -0500746 __u8 Flag; /* 0x01 if reparse point */
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +0400747 __le32 CreateAction;
748 __le64 CreationTime;
749 __le64 LastAccessTime;
750 __le64 LastWriteTime;
751 __le64 ChangeTime;
752 __le64 AllocationSize;
753 __le64 EndofFile;
754 __le32 FileAttributes;
755 __le32 Reserved2;
756 __u64 PersistentFileId; /* opaque endianness */
757 __u64 VolatileFileId; /* opaque endianness */
758 __le32 CreateContextsOffset;
759 __le32 CreateContextsLength;
760 __u8 Buffer[1];
761} __packed;
762
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -0700763struct create_context {
764 __le32 Next;
765 __le16 NameOffset;
766 __le16 NameLength;
767 __le16 Reserved;
768 __le16 DataOffset;
769 __le32 DataLength;
Gustavo A. R. Silvacff2def2020-03-09 10:44:51 -0500770 __u8 Buffer[];
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -0700771} __packed;
772
Pavel Shilovsky53ef1012013-09-05 16:11:28 +0400773#define SMB2_LEASE_READ_CACHING_HE 0x01
774#define SMB2_LEASE_HANDLE_CACHING_HE 0x02
775#define SMB2_LEASE_WRITE_CACHING_HE 0x04
776
Fabian Frederickbc09d142014-12-10 15:41:15 -0800777#define SMB2_LEASE_NONE cpu_to_le32(0x00)
778#define SMB2_LEASE_READ_CACHING cpu_to_le32(0x01)
779#define SMB2_LEASE_HANDLE_CACHING cpu_to_le32(0x02)
780#define SMB2_LEASE_WRITE_CACHING cpu_to_le32(0x04)
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -0700781
Steve French8895c662020-03-17 01:53:39 -0500782#define SMB2_LEASE_FLAG_BREAK_IN_PROGRESS cpu_to_le32(0x00000002)
Steve French5f60a562018-02-05 14:46:18 -0600783#define SMB2_LEASE_FLAG_PARENT_LEASE_KEY_SET cpu_to_le32(0x00000004)
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -0700784
785#define SMB2_LEASE_KEY_SIZE 16
786
787struct lease_context {
Stefano Brivio729c0c92018-07-05 15:10:02 +0200788 u8 LeaseKey[SMB2_LEASE_KEY_SIZE];
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -0700789 __le32 LeaseState;
790 __le32 LeaseFlags;
791 __le64 LeaseDuration;
792} __packed;
793
Pavel Shilovskyf0473902013-09-04 13:44:05 +0400794struct lease_context_v2 {
Stefano Brivio729c0c92018-07-05 15:10:02 +0200795 u8 LeaseKey[SMB2_LEASE_KEY_SIZE];
Pavel Shilovskyf0473902013-09-04 13:44:05 +0400796 __le32 LeaseState;
797 __le32 LeaseFlags;
798 __le64 LeaseDuration;
799 __le64 ParentLeaseKeyLow;
800 __le64 ParentLeaseKeyHigh;
801 __le16 Epoch;
802 __le16 Reserved;
803} __packed;
804
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -0700805struct create_lease {
806 struct create_context ccontext;
807 __u8 Name[8];
808 struct lease_context lcontext;
809} __packed;
810
Pavel Shilovskyf0473902013-09-04 13:44:05 +0400811struct create_lease_v2 {
812 struct create_context ccontext;
813 __u8 Name[8];
814 struct lease_context_v2 lcontext;
815 __u8 Pad[4];
816} __packed;
817
Pavel Shilovsky63eb3de2013-07-04 18:41:09 +0400818struct create_durable {
819 struct create_context ccontext;
820 __u8 Name[8];
Pavel Shilovsky9cbc0b72013-07-09 18:40:58 +0400821 union {
822 __u8 Reserved[16];
823 struct {
824 __u64 PersistentFileId;
825 __u64 VolatileFileId;
826 } Fid;
827 } Data;
Pavel Shilovsky63eb3de2013-07-04 18:41:09 +0400828} __packed;
829
Steve Frenchfe048402018-05-30 17:10:25 -0500830struct create_posix {
831 struct create_context ccontext;
832 __u8 Name[16];
833 __le32 Mode;
834 __u32 Reserved;
835} __packed;
836
Steve Frenchb56eae42015-11-03 09:26:27 -0600837/* See MS-SMB2 2.2.13.2.11 */
838/* Flags */
839#define SMB2_DHANDLE_FLAG_PERSISTENT 0x00000002
840struct durable_context_v2 {
841 __le32 Timeout;
842 __le32 Flags;
843 __u64 Reserved;
844 __u8 CreateGuid[16];
845} __packed;
846
847struct create_durable_v2 {
848 struct create_context ccontext;
849 __u8 Name[8];
850 struct durable_context_v2 dcontext;
851} __packed;
852
853/* See MS-SMB2 2.2.13.2.12 */
854struct durable_reconnect_context_v2 {
855 struct {
856 __u64 PersistentFileId;
857 __u64 VolatileFileId;
858 } Fid;
859 __u8 CreateGuid[16];
860 __le32 Flags; /* see above DHANDLE_FLAG_PERSISTENT */
861} __packed;
862
Steve Frenche7348e32019-06-28 02:35:10 -0500863/* See MS-SMB2 2.2.14.2.9 */
Steve French89a5bfa2019-07-18 17:22:18 -0500864struct create_on_disk_id {
865 struct create_context ccontext;
866 __u8 Name[8];
Steve Frenche7348e32019-06-28 02:35:10 -0500867 __le64 DiskFileId;
868 __le64 VolumeId;
Steve Frenchff2a09e2019-07-06 14:41:38 -0500869 __u32 Reserved[4];
Steve Frenche7348e32019-06-28 02:35:10 -0500870} __packed;
871
Steve Frenchb56eae42015-11-03 09:26:27 -0600872/* See MS-SMB2 2.2.14.2.12 */
873struct durable_reconnect_context_v2_rsp {
874 __le32 Timeout;
875 __le32 Flags; /* see above DHANDLE_FLAG_PERSISTENT */
876} __packed;
877
878struct create_durable_handle_reconnect_v2 {
879 struct create_context ccontext;
880 __u8 Name[8];
881 struct durable_reconnect_context_v2 dcontext;
Pavel Shilovskyd243af72019-11-06 13:58:15 -0800882 __u8 Pad[4];
Steve Frenchb56eae42015-11-03 09:26:27 -0600883} __packed;
884
Steve Frenchcdeaf9d2018-08-10 02:25:06 -0500885/* See MS-SMB2 2.2.13.2.5 */
886struct crt_twarp_ctxt {
887 struct create_context ccontext;
888 __u8 Name[8];
889 __le64 Timestamp;
890
891} __packed;
892
Steve Frenchff2a09e2019-07-06 14:41:38 -0500893/* See MS-SMB2 2.2.13.2.9 */
894struct crt_query_id_ctxt {
895 struct create_context ccontext;
896 __u8 Name[8];
897} __packed;
898
Steve Frenchfdef6652019-12-06 02:02:38 -0600899struct crt_sd_ctxt {
900 struct create_context ccontext;
901 __u8 Name[8];
902 struct smb3_sd sd;
903 struct smb3_acl acl;
904 /* Followed by at least 4 ACEs */
905} __packed;
906
907
Steve French41c13582013-11-14 00:05:36 -0600908#define COPY_CHUNK_RES_KEY_SIZE 24
909struct resume_key_req {
910 char ResumeKey[COPY_CHUNK_RES_KEY_SIZE];
911 __le32 ContextLength; /* MBZ */
Gustavo A. R. Silvacff2def2020-03-09 10:44:51 -0500912 char Context[]; /* ignored, Windows sets to 4 bytes of zero */
Steve French41c13582013-11-14 00:05:36 -0600913} __packed;
914
Steve Frenchbe7457d2013-06-19 17:41:10 -0500915/* this goes in the ioctl buffer when doing a copychunk request */
916struct copychunk_ioctl {
Steve French41c13582013-11-14 00:05:36 -0600917 char SourceKey[COPY_CHUNK_RES_KEY_SIZE];
Steve Frenchbe7457d2013-06-19 17:41:10 -0500918 __le32 ChunkCount; /* we are only sending 1 */
919 __le32 Reserved;
920 /* array will only be one chunk long for us */
921 __le64 SourceOffset;
922 __le64 TargetOffset;
Steve Frenchc8664732013-06-21 15:35:45 -0500923 __le32 Length; /* how many bytes to copy */
Steve Frenchbe7457d2013-06-19 17:41:10 -0500924 __u32 Reserved2;
925} __packed;
926
Steve French31742c52014-08-17 08:38:47 -0500927/* this goes in the ioctl buffer when doing FSCTL_SET_ZERO_DATA */
928struct file_zero_data_information {
929 __le64 FileOffset;
930 __le64 BeyondFinalZero;
931} __packed;
932
Steve French41c13582013-11-14 00:05:36 -0600933struct copychunk_ioctl_rsp {
934 __le32 ChunksWritten;
935 __le32 ChunkBytesWritten;
936 __le32 TotalBytesWritten;
937} __packed;
938
Steve French9d1b0662015-06-24 02:12:19 -0500939struct fsctl_set_integrity_information_req {
940 __le16 ChecksumAlgorithm;
941 __le16 Reserved;
942 __le32 Flags;
943} __packed;
944
945struct fsctl_get_integrity_information_rsp {
946 __le16 ChecksumAlgorithm;
947 __le16 Reserved;
948 __le32 Flags;
949 __le32 ChecksumChunkSizeInBytes;
950 __le32 ClusterSizeInBytes;
951} __packed;
952
Ronnie Sahlberg2f3ebab2019-04-25 16:45:29 +1000953struct file_allocated_range_buffer {
954 __le64 file_offset;
955 __le64 length;
956} __packed;
957
Steve French9d1b0662015-06-24 02:12:19 -0500958/* Integrity ChecksumAlgorithm choices for above */
959#define CHECKSUM_TYPE_NONE 0x0000
960#define CHECKSUM_TYPE_CRC64 0x0002
Steve Frenchb3152e22015-06-24 03:17:02 -0500961#define CHECKSUM_TYPE_UNCHANGED 0xFFFF /* set only */
Steve French9d1b0662015-06-24 02:12:19 -0500962
963/* Integrity flags for above */
964#define FSCTL_INTEGRITY_FLAG_CHECKSUM_ENFORCEMENT_OFF 0x00000001
965
Steve French0df444a2018-10-31 11:24:33 -0500966/* Reparse structures - see MS-FSCC 2.1.2 */
967
968/* struct fsctl_reparse_info_req is empty, only response structs (see below) */
969
970struct reparse_data_buffer {
971 __le32 ReparseTag;
972 __le16 ReparseDataLength;
973 __u16 Reserved;
Gustavo A. R. Silvacff2def2020-03-09 10:44:51 -0500974 __u8 DataBuffer[]; /* Variable Length */
Steve French0df444a2018-10-31 11:24:33 -0500975} __packed;
976
977struct reparse_guid_data_buffer {
978 __le32 ReparseTag;
979 __le16 ReparseDataLength;
980 __u16 Reserved;
981 __u8 ReparseGuid[16];
Gustavo A. R. Silvacff2def2020-03-09 10:44:51 -0500982 __u8 DataBuffer[]; /* Variable Length */
Steve French0df444a2018-10-31 11:24:33 -0500983} __packed;
984
985struct reparse_mount_point_data_buffer {
986 __le32 ReparseTag;
987 __le16 ReparseDataLength;
988 __u16 Reserved;
989 __le16 SubstituteNameOffset;
990 __le16 SubstituteNameLength;
991 __le16 PrintNameOffset;
992 __le16 PrintNameLength;
Gustavo A. R. Silvacff2def2020-03-09 10:44:51 -0500993 __u8 PathBuffer[]; /* Variable Length */
Steve French0df444a2018-10-31 11:24:33 -0500994} __packed;
995
Ronnie Sahlberg5de254d2019-06-27 14:57:02 +1000996#define SYMLINK_FLAG_RELATIVE 0x00000001
997
998struct reparse_symlink_data_buffer {
999 __le32 ReparseTag;
1000 __le16 ReparseDataLength;
1001 __u16 Reserved;
1002 __le16 SubstituteNameOffset;
1003 __le16 SubstituteNameLength;
1004 __le16 PrintNameOffset;
1005 __le16 PrintNameLength;
1006 __le32 Flags;
Gustavo A. R. Silvacff2def2020-03-09 10:44:51 -05001007 __u8 PathBuffer[]; /* Variable Length */
Ronnie Sahlberg5de254d2019-06-27 14:57:02 +10001008} __packed;
Steve French0df444a2018-10-31 11:24:33 -05001009
1010/* See MS-FSCC 2.1.2.6 and cifspdu.h for struct reparse_posix_data */
1011
1012
Aurelien Aptel9d496402017-02-13 16:16:49 +01001013/* See MS-DFSC 2.2.2 */
1014struct fsctl_get_dfs_referral_req {
1015 __le16 MaxReferralLevel;
1016 __u8 RequestFileName[];
1017} __packed;
1018
1019/* DFS response is struct get_dfs_refer_rsp */
1020
Steve Frenchb56eae42015-11-03 09:26:27 -06001021/* See MS-SMB2 2.2.31.3 */
1022struct network_resiliency_req {
1023 __le32 Timeout;
1024 __le32 Reserved;
1025} __packed;
1026/* There is no buffer for the response ie no struct network_resiliency_rsp */
1027
Steve French9d1b0662015-06-24 02:12:19 -05001028
Steve Frenchff1c0382013-11-19 23:44:46 -06001029struct validate_negotiate_info_req {
Steve French4a72daf2013-06-25 00:20:49 -05001030 __le32 Capabilities;
1031 __u8 Guid[SMB2_CLIENT_GUID_SIZE];
1032 __le16 SecurityMode;
1033 __le16 DialectCount;
Steve Frenchd5c70762019-01-03 02:37:21 -06001034 __le16 Dialects[4]; /* BB expand this if autonegotiate > 4 dialects */
Steve Frenchff1c0382013-11-19 23:44:46 -06001035} __packed;
1036
1037struct validate_negotiate_info_rsp {
1038 __le32 Capabilities;
1039 __u8 Guid[SMB2_CLIENT_GUID_SIZE];
1040 __le16 SecurityMode;
1041 __le16 Dialect; /* Dialect in use for the connection */
Steve French4a72daf2013-06-25 00:20:49 -05001042} __packed;
1043
Aurelien Aptelbead0422018-06-14 15:43:17 +02001044#define RSS_CAPABLE cpu_to_le32(0x00000001)
1045#define RDMA_CAPABLE cpu_to_le32(0x00000002)
1046
1047#define INTERNETWORK cpu_to_le16(0x0002)
1048#define INTERNETWORKV6 cpu_to_le16(0x0017)
Steve French4a72daf2013-06-25 00:20:49 -05001049
1050struct network_interface_info_ioctl_rsp {
1051 __le32 Next; /* next interface. zero if this is last one */
1052 __le32 IfIndex;
1053 __le32 Capability; /* RSS or RDMA Capable */
1054 __le32 Reserved;
1055 __le64 LinkSpeed;
Aurelien Aptelbead0422018-06-14 15:43:17 +02001056 __le16 Family;
1057 __u8 Buffer[126];
1058} __packed;
1059
1060struct iface_info_ipv4 {
1061 __be16 Port;
1062 __be32 IPv4Address;
1063 __be64 Reserved;
1064} __packed;
1065
1066struct iface_info_ipv6 {
1067 __be16 Port;
1068 __be32 FlowInfo;
1069 __u8 IPv6Address[16];
1070 __be32 ScopeId;
Steve French4a72daf2013-06-25 00:20:49 -05001071} __packed;
1072
1073#define NO_FILE_ID 0xFFFFFFFFFFFFFFFFULL /* general ioctls to srv not to file */
1074
Steve French64a5cfa2013-10-14 15:31:32 -05001075struct compress_ioctl {
Steve Frenchc7f508a2013-10-14 15:27:32 -05001076 __le16 CompressionState; /* See cifspdu.h for possible flag values */
Steve French64a5cfa2013-10-14 15:31:32 -05001077} __packed;
1078
Steve French02b16662015-06-27 21:18:36 -07001079struct duplicate_extents_to_file {
1080 __u64 PersistentFileHandle; /* source file handle, opaque endianness */
1081 __u64 VolatileFileHandle;
1082 __le64 SourceFileOffset;
1083 __le64 TargetFileOffset;
1084 __le64 ByteCount; /* Bytes to be copied */
1085} __packed;
1086
Ronnie Sahlberg72c419d2019-03-13 14:37:49 +10001087/*
1088 * Maximum number of iovs we need for an ioctl request.
1089 * [0] : struct smb2_ioctl_req
1090 * [1] : in_data
1091 */
1092#define SMB2_IOCTL_IOV_SIZE 2
1093
Steve Frenchbe7457d2013-06-19 17:41:10 -05001094struct smb2_ioctl_req {
Ronnie Sahlberg97754682017-11-09 12:14:20 +11001095 struct smb2_sync_hdr sync_hdr;
Steve Frenchbe7457d2013-06-19 17:41:10 -05001096 __le16 StructureSize; /* Must be 57 */
1097 __u16 Reserved;
1098 __le32 CtlCode;
1099 __u64 PersistentFileId; /* opaque endianness */
1100 __u64 VolatileFileId; /* opaque endianness */
1101 __le32 InputOffset;
1102 __le32 InputCount;
1103 __le32 MaxInputResponse;
1104 __le32 OutputOffset;
1105 __le32 OutputCount;
1106 __le32 MaxOutputResponse;
1107 __le32 Flags;
1108 __u32 Reserved2;
Gustavo A. R. Silvacff2def2020-03-09 10:44:51 -05001109 __u8 Buffer[];
Steve Frenchbe7457d2013-06-19 17:41:10 -05001110} __packed;
1111
1112struct smb2_ioctl_rsp {
Ronnie Sahlberg49f466b2018-06-01 10:53:06 +10001113 struct smb2_sync_hdr sync_hdr;
Steve Frenchbe7457d2013-06-19 17:41:10 -05001114 __le16 StructureSize; /* Must be 57 */
1115 __u16 Reserved;
1116 __le32 CtlCode;
1117 __u64 PersistentFileId; /* opaque endianness */
1118 __u64 VolatileFileId; /* opaque endianness */
1119 __le32 InputOffset;
1120 __le32 InputCount;
1121 __le32 OutputOffset;
1122 __le32 OutputCount;
1123 __le32 Flags;
1124 __u32 Reserved2;
1125 /* char * buffer[] */
1126} __packed;
1127
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04001128/* Currently defined values for close flags */
1129#define SMB2_CLOSE_FLAG_POSTQUERY_ATTRIB cpu_to_le16(0x0001)
1130struct smb2_close_req {
Ronnie Sahlbergafcccef2017-11-09 12:14:19 +11001131 struct smb2_sync_hdr sync_hdr;
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04001132 __le16 StructureSize; /* Must be 24 */
1133 __le16 Flags;
1134 __le32 Reserved;
1135 __u64 PersistentFileId; /* opaque endianness */
1136 __u64 VolatileFileId; /* opaque endianness */
1137} __packed;
1138
Ronnie Sahlbergc4627e62019-01-29 12:46:17 +10001139/*
1140 * Maximum size of a SMB2_CLOSE response is 64 (smb2 header) + 60 (data)
1141 */
1142#define MAX_SMB2_CLOSE_RESPONSE_SIZE 124
1143
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04001144struct smb2_close_rsp {
Ronnie Sahlberg49f466b2018-06-01 10:53:06 +10001145 struct smb2_sync_hdr sync_hdr;
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04001146 __le16 StructureSize; /* 60 */
1147 __le16 Flags;
1148 __le32 Reserved;
1149 __le64 CreationTime;
1150 __le64 LastAccessTime;
1151 __le64 LastWriteTime;
1152 __le64 ChangeTime;
1153 __le64 AllocationSize; /* Beginning of FILE_STANDARD_INFO equivalent */
1154 __le64 EndOfFile;
1155 __le32 Attributes;
1156} __packed;
1157
Pavel Shilovsky7a5cfb12012-09-18 16:20:28 -07001158struct smb2_flush_req {
Ronnie Sahlberg1f444e42017-11-20 11:24:39 +11001159 struct smb2_sync_hdr sync_hdr;
Pavel Shilovsky7a5cfb12012-09-18 16:20:28 -07001160 __le16 StructureSize; /* Must be 24 */
1161 __le16 Reserved1;
1162 __le32 Reserved2;
1163 __u64 PersistentFileId; /* opaque endianness */
1164 __u64 VolatileFileId; /* opaque endianness */
1165} __packed;
1166
1167struct smb2_flush_rsp {
Ronnie Sahlberg49f466b2018-06-01 10:53:06 +10001168 struct smb2_sync_hdr sync_hdr;
Pavel Shilovsky7a5cfb12012-09-18 16:20:28 -07001169 __le16 StructureSize;
1170 __le16 Reserved;
1171} __packed;
1172
Steve French2b5dc282013-06-13 10:51:10 -05001173/* For read request Flags field below, following flag is defined for SMB3.02 */
1174#define SMB2_READFLAG_READ_UNBUFFERED 0x01
Steve French0df7edd2019-04-27 02:06:20 -05001175#define SMB2_READFLAG_REQUEST_COMPRESSED 0x02 /* See MS-SMB2 2.2.19 */
Steve French2b5dc282013-06-13 10:51:10 -05001176
1177/* Channel field for read and write: exactly one of following flags can be set*/
Steve French2026b062018-01-24 23:07:41 -06001178#define SMB2_CHANNEL_NONE cpu_to_le32(0x00000000)
1179#define SMB2_CHANNEL_RDMA_V1 cpu_to_le32(0x00000001) /* SMB3 or later */
1180#define SMB2_CHANNEL_RDMA_V1_INVALIDATE cpu_to_le32(0x00000002) /* >= SMB3.02 */
Steve French2b5dc282013-06-13 10:51:10 -05001181
Pavel Shilovskyb8f57ee2016-11-23 15:31:54 -08001182/* SMB2 read request without RFC1001 length at the beginning */
1183struct smb2_read_plain_req {
1184 struct smb2_sync_hdr sync_hdr;
Pavel Shilovsky09a47072012-09-18 16:20:29 -07001185 __le16 StructureSize; /* Must be 49 */
1186 __u8 Padding; /* offset from start of SMB2 header to place read */
Steve French2b5dc282013-06-13 10:51:10 -05001187 __u8 Flags; /* MBZ unless SMB3.02 or later */
Pavel Shilovsky09a47072012-09-18 16:20:29 -07001188 __le32 Length;
1189 __le64 Offset;
1190 __u64 PersistentFileId; /* opaque endianness */
1191 __u64 VolatileFileId; /* opaque endianness */
1192 __le32 MinimumCount;
Steve French2b5dc282013-06-13 10:51:10 -05001193 __le32 Channel; /* MBZ except for SMB3 or later */
Pavel Shilovsky09a47072012-09-18 16:20:29 -07001194 __le32 RemainingBytes;
Steve French2026b062018-01-24 23:07:41 -06001195 __le16 ReadChannelInfoOffset;
1196 __le16 ReadChannelInfoLength;
Pavel Shilovsky09a47072012-09-18 16:20:29 -07001197 __u8 Buffer[1];
1198} __packed;
1199
1200struct smb2_read_rsp {
Ronnie Sahlberg49f466b2018-06-01 10:53:06 +10001201 struct smb2_sync_hdr sync_hdr;
Pavel Shilovsky09a47072012-09-18 16:20:29 -07001202 __le16 StructureSize; /* Must be 17 */
1203 __u8 DataOffset;
1204 __u8 Reserved;
1205 __le32 DataLength;
1206 __le32 DataRemaining;
1207 __u32 Reserved2;
1208 __u8 Buffer[1];
1209} __packed;
1210
Steve French2b5dc282013-06-13 10:51:10 -05001211/* For write request Flags field below the following flags are defined: */
1212#define SMB2_WRITEFLAG_WRITE_THROUGH 0x00000001 /* SMB2.1 or later */
1213#define SMB2_WRITEFLAG_WRITE_UNBUFFERED 0x00000002 /* SMB3.02 or later */
Pavel Shilovsky33319142012-09-18 16:20:29 -07001214
1215struct smb2_write_req {
Ronnie Sahlbergf5688a62017-11-20 11:24:41 +11001216 struct smb2_sync_hdr sync_hdr;
Pavel Shilovsky33319142012-09-18 16:20:29 -07001217 __le16 StructureSize; /* Must be 49 */
1218 __le16 DataOffset; /* offset from start of SMB2 header to write data */
1219 __le32 Length;
1220 __le64 Offset;
1221 __u64 PersistentFileId; /* opaque endianness */
1222 __u64 VolatileFileId; /* opaque endianness */
Steve French8f233432020-03-15 18:04:13 -05001223 __le32 Channel; /* MBZ unless SMB3.02 or later */
Pavel Shilovsky33319142012-09-18 16:20:29 -07001224 __le32 RemainingBytes;
Steve French2026b062018-01-24 23:07:41 -06001225 __le16 WriteChannelInfoOffset;
1226 __le16 WriteChannelInfoLength;
Pavel Shilovsky33319142012-09-18 16:20:29 -07001227 __le32 Flags;
1228 __u8 Buffer[1];
1229} __packed;
1230
1231struct smb2_write_rsp {
Ronnie Sahlberg49f466b2018-06-01 10:53:06 +10001232 struct smb2_sync_hdr sync_hdr;
Pavel Shilovsky33319142012-09-18 16:20:29 -07001233 __le16 StructureSize; /* Must be 17 */
1234 __u8 DataOffset;
1235 __u8 Reserved;
1236 __le32 DataLength;
1237 __le32 DataRemaining;
1238 __u32 Reserved2;
1239 __u8 Buffer[1];
1240} __packed;
1241
Steve Frenchedf3ef32019-05-05 17:25:12 -05001242/* notify flags */
1243#define SMB2_WATCH_TREE 0x0001
1244
1245/* notify completion filter flags. See MS-FSCC 2.6 and MS-SMB2 2.2.35 */
1246#define FILE_NOTIFY_CHANGE_FILE_NAME 0x00000001
1247#define FILE_NOTIFY_CHANGE_DIR_NAME 0x00000002
1248#define FILE_NOTIFY_CHANGE_ATTRIBUTES 0x00000004
1249#define FILE_NOTIFY_CHANGE_SIZE 0x00000008
1250#define FILE_NOTIFY_CHANGE_LAST_WRITE 0x00000010
1251#define FILE_NOTIFY_CHANGE_LAST_ACCESS 0x00000020
1252#define FILE_NOTIFY_CHANGE_CREATION 0x00000040
1253#define FILE_NOTIFY_CHANGE_EA 0x00000080
1254#define FILE_NOTIFY_CHANGE_SECURITY 0x00000100
1255#define FILE_NOTIFY_CHANGE_STREAM_NAME 0x00000200
1256#define FILE_NOTIFY_CHANGE_STREAM_SIZE 0x00000400
1257#define FILE_NOTIFY_CHANGE_STREAM_WRITE 0x00000800
1258
1259struct smb2_change_notify_req {
1260 struct smb2_sync_hdr sync_hdr;
1261 __le16 StructureSize;
1262 __le16 Flags;
1263 __le32 OutputBufferLength;
1264 __u64 PersistentFileId; /* opaque endianness */
1265 __u64 VolatileFileId; /* opaque endianness */
1266 __le32 CompletionFilter;
1267 __u32 Reserved;
1268} __packed;
1269
1270struct smb2_change_notify_rsp {
1271 struct smb2_sync_hdr sync_hdr;
1272 __le16 StructureSize; /* Must be 9 */
1273 __le16 OutputBufferOffset;
1274 __le32 OutputBufferLength;
1275 __u8 Buffer[1]; /* array of file notify structs */
1276} __packed;
1277
Pavel Shilovsky027e8ee2012-09-19 06:22:43 -07001278#define SMB2_LOCKFLAG_SHARED_LOCK 0x0001
1279#define SMB2_LOCKFLAG_EXCLUSIVE_LOCK 0x0002
1280#define SMB2_LOCKFLAG_UNLOCK 0x0004
1281#define SMB2_LOCKFLAG_FAIL_IMMEDIATELY 0x0010
1282
Pavel Shilovskyf7ba7fe2012-09-19 06:22:43 -07001283struct smb2_lock_element {
1284 __le64 Offset;
1285 __le64 Length;
1286 __le32 Flags;
1287 __le32 Reserved;
1288} __packed;
1289
1290struct smb2_lock_req {
Ronnie Sahlbergced93672017-11-21 10:07:27 +11001291 struct smb2_sync_hdr sync_hdr;
Pavel Shilovskyf7ba7fe2012-09-19 06:22:43 -07001292 __le16 StructureSize; /* Must be 48 */
1293 __le16 LockCount;
1294 __le32 Reserved;
1295 __u64 PersistentFileId; /* opaque endianness */
1296 __u64 VolatileFileId; /* opaque endianness */
1297 /* Followed by at least one */
1298 struct smb2_lock_element locks[1];
1299} __packed;
1300
1301struct smb2_lock_rsp {
Ronnie Sahlberg49f466b2018-06-01 10:53:06 +10001302 struct smb2_sync_hdr sync_hdr;
Pavel Shilovskyf7ba7fe2012-09-19 06:22:43 -07001303 __le16 StructureSize; /* Must be 4 */
1304 __le16 Reserved;
1305} __packed;
1306
Pavel Shilovsky9094fad2012-07-12 18:30:44 +04001307struct smb2_echo_req {
Ronnie Sahlberg7f7ae752017-11-09 12:14:21 +11001308 struct smb2_sync_hdr sync_hdr;
Pavel Shilovsky9094fad2012-07-12 18:30:44 +04001309 __le16 StructureSize; /* Must be 4 */
1310 __u16 Reserved;
1311} __packed;
1312
1313struct smb2_echo_rsp {
Ronnie Sahlberg49f466b2018-06-01 10:53:06 +10001314 struct smb2_sync_hdr sync_hdr;
Pavel Shilovsky9094fad2012-07-12 18:30:44 +04001315 __le16 StructureSize; /* Must be 4 */
1316 __u16 Reserved;
1317} __packed;
1318
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -07001319/* search (query_directory) Flags field */
1320#define SMB2_RESTART_SCANS 0x01
1321#define SMB2_RETURN_SINGLE_ENTRY 0x02
1322#define SMB2_INDEX_SPECIFIED 0x04
1323#define SMB2_REOPEN 0x10
1324
Ronnie Sahlberg0a177992020-01-08 13:08:04 +10001325#define SMB2_QUERY_DIRECTORY_IOV_SIZE 2
1326
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -07001327struct smb2_query_directory_req {
Ronnie Sahlberg7c00c3a2017-11-20 11:24:45 +11001328 struct smb2_sync_hdr sync_hdr;
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -07001329 __le16 StructureSize; /* Must be 33 */
1330 __u8 FileInformationClass;
1331 __u8 Flags;
1332 __le32 FileIndex;
1333 __u64 PersistentFileId; /* opaque endianness */
1334 __u64 VolatileFileId; /* opaque endianness */
1335 __le16 FileNameOffset;
1336 __le16 FileNameLength;
1337 __le32 OutputBufferLength;
1338 __u8 Buffer[1];
1339} __packed;
1340
1341struct smb2_query_directory_rsp {
Ronnie Sahlberg49f466b2018-06-01 10:53:06 +10001342 struct smb2_sync_hdr sync_hdr;
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -07001343 __le16 StructureSize; /* Must be 9 */
1344 __le16 OutputBufferOffset;
1345 __le32 OutputBufferLength;
1346 __u8 Buffer[1];
1347} __packed;
1348
Pavel Shilovskybe4cb9e2011-12-29 17:06:33 +04001349/* Possible InfoType values */
1350#define SMB2_O_INFO_FILE 0x01
1351#define SMB2_O_INFO_FILESYSTEM 0x02
1352#define SMB2_O_INFO_SECURITY 0x03
1353#define SMB2_O_INFO_QUOTA 0x04
1354
Steve French911a8df2014-10-19 19:18:05 -05001355/* Security info type additionalinfo flags. See MS-SMB2 (2.2.37) or MS-DTYP */
1356#define OWNER_SECINFO 0x00000001
1357#define GROUP_SECINFO 0x00000002
1358#define DACL_SECINFO 0x00000004
1359#define SACL_SECINFO 0x00000008
1360#define LABEL_SECINFO 0x00000010
1361#define ATTRIBUTE_SECINFO 0x00000020
1362#define SCOPE_SECINFO 0x00000040
1363#define BACKUP_SECINFO 0x00010000
1364#define UNPROTECTED_SACL_SECINFO 0x10000000
1365#define UNPROTECTED_DACL_SECINFO 0x20000000
1366#define PROTECTED_SACL_SECINFO 0x40000000
1367#define PROTECTED_DACL_SECINFO 0x80000000
1368
1369/* Flags used for FileFullEAinfo */
1370#define SL_RESTART_SCAN 0x00000001
1371#define SL_RETURN_SINGLE_ENTRY 0x00000002
1372#define SL_INDEX_SPECIFIED 0x00000004
1373
Pavel Shilovskybe4cb9e2011-12-29 17:06:33 +04001374struct smb2_query_info_req {
Ronnie Sahlbergb2fb7fe2017-11-20 11:24:46 +11001375 struct smb2_sync_hdr sync_hdr;
Pavel Shilovskybe4cb9e2011-12-29 17:06:33 +04001376 __le16 StructureSize; /* Must be 41 */
1377 __u8 InfoType;
1378 __u8 FileInfoClass;
1379 __le32 OutputBufferLength;
1380 __le16 InputBufferOffset;
1381 __u16 Reserved;
1382 __le32 InputBufferLength;
1383 __le32 AdditionalInformation;
1384 __le32 Flags;
1385 __u64 PersistentFileId; /* opaque endianness */
1386 __u64 VolatileFileId; /* opaque endianness */
1387 __u8 Buffer[1];
1388} __packed;
1389
1390struct smb2_query_info_rsp {
Ronnie Sahlberg49f466b2018-06-01 10:53:06 +10001391 struct smb2_sync_hdr sync_hdr;
Pavel Shilovskybe4cb9e2011-12-29 17:06:33 +04001392 __le16 StructureSize; /* Must be 9 */
1393 __le16 OutputBufferOffset;
1394 __le32 OutputBufferLength;
1395 __u8 Buffer[1];
1396} __packed;
1397
Ronnie Sahlberg14e562a2018-09-03 13:33:50 +10001398/*
1399 * Maximum number of iovs we need for a set-info request.
1400 * The largest one is rename/hardlink
1401 * [0] : struct smb2_set_info_req + smb2_file_[rename|link]_info
1402 * [1] : path
1403 * [2] : compound padding
1404 */
1405#define SMB2_SET_INFO_IOV_SIZE 3
1406
Pavel Shilovsky35143eb2012-09-18 16:20:31 -07001407struct smb2_set_info_req {
Ronnie Sahlberg2fc803e2017-11-20 11:24:44 +11001408 struct smb2_sync_hdr sync_hdr;
Pavel Shilovsky35143eb2012-09-18 16:20:31 -07001409 __le16 StructureSize; /* Must be 33 */
1410 __u8 InfoType;
1411 __u8 FileInfoClass;
1412 __le32 BufferLength;
1413 __le16 BufferOffset;
1414 __u16 Reserved;
1415 __le32 AdditionalInformation;
1416 __u64 PersistentFileId; /* opaque endianness */
1417 __u64 VolatileFileId; /* opaque endianness */
1418 __u8 Buffer[1];
1419} __packed;
1420
1421struct smb2_set_info_rsp {
Ronnie Sahlberg49f466b2018-06-01 10:53:06 +10001422 struct smb2_sync_hdr sync_hdr;
Pavel Shilovsky35143eb2012-09-18 16:20:31 -07001423 __le16 StructureSize; /* Must be 2 */
1424} __packed;
1425
Ronnie Sahlberg0d5a2882018-06-01 10:53:03 +10001426struct smb2_oplock_break {
Ronnie Sahlberg21ad9482017-11-20 11:24:43 +11001427 struct smb2_sync_hdr sync_hdr;
1428 __le16 StructureSize; /* Must be 24 */
1429 __u8 OplockLevel;
1430 __u8 Reserved;
1431 __le32 Reserved2;
1432 __u64 PersistentFid;
1433 __u64 VolatileFid;
1434} __packed;
1435
Pavel Shilovsky0822f512012-09-19 06:22:45 -07001436#define SMB2_NOTIFY_BREAK_LEASE_FLAG_ACK_REQUIRED cpu_to_le32(0x01)
1437
1438struct smb2_lease_break {
Ronnie Sahlberg49f466b2018-06-01 10:53:06 +10001439 struct smb2_sync_hdr sync_hdr;
Pavel Shilovsky0822f512012-09-19 06:22:45 -07001440 __le16 StructureSize; /* Must be 44 */
Pavel Shilovsky9bd45402019-10-29 16:51:19 -07001441 __le16 Epoch;
Pavel Shilovsky0822f512012-09-19 06:22:45 -07001442 __le32 Flags;
1443 __u8 LeaseKey[16];
1444 __le32 CurrentLeaseState;
1445 __le32 NewLeaseState;
1446 __le32 BreakReason;
1447 __le32 AccessMaskHint;
1448 __le32 ShareMaskHint;
1449} __packed;
1450
1451struct smb2_lease_ack {
Ronnie Sahlberg8eb79982017-11-21 11:04:37 +11001452 struct smb2_sync_hdr sync_hdr;
Pavel Shilovsky0822f512012-09-19 06:22:45 -07001453 __le16 StructureSize; /* Must be 36 */
1454 __le16 Reserved;
1455 __le32 Flags;
1456 __u8 LeaseKey[16];
1457 __le32 LeaseState;
1458 __le64 LeaseDuration;
1459} __packed;
1460
Pavel Shilovskybe4cb9e2011-12-29 17:06:33 +04001461/*
1462 * PDU infolevel structure definitions
1463 * BB consider moving to a different header
1464 */
1465
Pavel Shilovsky6fc05c22012-09-18 16:20:34 -07001466/* File System Information Classes */
1467#define FS_VOLUME_INFORMATION 1 /* Query */
Steven Frenchaf6a12e2013-10-09 20:55:53 -05001468#define FS_LABEL_INFORMATION 2 /* Local only */
Pavel Shilovsky6fc05c22012-09-18 16:20:34 -07001469#define FS_SIZE_INFORMATION 3 /* Query */
1470#define FS_DEVICE_INFORMATION 4 /* Query */
1471#define FS_ATTRIBUTE_INFORMATION 5 /* Query */
1472#define FS_CONTROL_INFORMATION 6 /* Query, Set */
1473#define FS_FULL_SIZE_INFORMATION 7 /* Query */
1474#define FS_OBJECT_ID_INFORMATION 8 /* Query, Set */
Steven Frenchaf6a12e2013-10-09 20:55:53 -05001475#define FS_DRIVER_PATH_INFORMATION 9 /* Local only */
1476#define FS_VOLUME_FLAGS_INFORMATION 10 /* Local only */
1477#define FS_SECTOR_SIZE_INFORMATION 11 /* SMB3 or later. Query */
Steve French2d304212018-06-24 23:28:12 -05001478#define FS_POSIX_INFORMATION 100 /* SMB3.1.1 POSIX. Query */
Pavel Shilovsky6fc05c22012-09-18 16:20:34 -07001479
1480struct smb2_fs_full_size_info {
1481 __le64 TotalAllocationUnits;
1482 __le64 CallerAvailableAllocationUnits;
1483 __le64 ActualAvailableAllocationUnits;
1484 __le32 SectorsPerAllocationUnit;
1485 __le32 BytesPerSector;
1486} __packed;
1487
Steven Frenchaf6a12e2013-10-09 20:55:53 -05001488#define SSINFO_FLAGS_ALIGNED_DEVICE 0x00000001
1489#define SSINFO_FLAGS_PARTITION_ALIGNED_ON_DEVICE 0x00000002
1490#define SSINFO_FLAGS_NO_SEEK_PENALTY 0x00000004
1491#define SSINFO_FLAGS_TRIM_ENABLED 0x00000008
1492
1493/* sector size info struct */
1494struct smb3_fs_ss_info {
1495 __le32 LogicalBytesPerSector;
1496 __le32 PhysicalBytesPerSectorForAtomicity;
1497 __le32 PhysicalBytesPerSectorForPerf;
1498 __le32 FileSystemEffectivePhysicalBytesPerSectorForAtomicity;
1499 __le32 Flags;
1500 __le32 ByteOffsetForSectorAlignment;
1501 __le32 ByteOffsetForPartitionAlignment;
1502} __packed;
1503
Steve French21ba3842018-06-24 23:18:52 -05001504/* volume info struct - see MS-FSCC 2.5.9 */
1505#define MAX_VOL_LABEL_LEN 32
1506struct smb3_fs_vol_info {
1507 __le64 VolumeCreationTime;
1508 __u32 VolumeSerialNumber;
1509 __le32 VolumeLabelLength; /* includes trailing null */
1510 __u8 SupportsObjects; /* True if eg like NTFS, supports objects */
1511 __u8 Reserved;
Gustavo A. R. Silvacff2def2020-03-09 10:44:51 -05001512 __u8 VolumeLabel[]; /* variable len */
Steve French21ba3842018-06-24 23:18:52 -05001513} __packed;
1514
Pavel Shilovskybe4cb9e2011-12-29 17:06:33 +04001515/* partial list of QUERY INFO levels */
1516#define FILE_DIRECTORY_INFORMATION 1
1517#define FILE_FULL_DIRECTORY_INFORMATION 2
1518#define FILE_BOTH_DIRECTORY_INFORMATION 3
1519#define FILE_BASIC_INFORMATION 4
1520#define FILE_STANDARD_INFORMATION 5
1521#define FILE_INTERNAL_INFORMATION 6
1522#define FILE_EA_INFORMATION 7
1523#define FILE_ACCESS_INFORMATION 8
1524#define FILE_NAME_INFORMATION 9
1525#define FILE_RENAME_INFORMATION 10
1526#define FILE_LINK_INFORMATION 11
1527#define FILE_NAMES_INFORMATION 12
1528#define FILE_DISPOSITION_INFORMATION 13
1529#define FILE_POSITION_INFORMATION 14
1530#define FILE_FULL_EA_INFORMATION 15
1531#define FILE_MODE_INFORMATION 16
1532#define FILE_ALIGNMENT_INFORMATION 17
1533#define FILE_ALL_INFORMATION 18
1534#define FILE_ALLOCATION_INFORMATION 19
1535#define FILE_END_OF_FILE_INFORMATION 20
1536#define FILE_ALTERNATE_NAME_INFORMATION 21
1537#define FILE_STREAM_INFORMATION 22
1538#define FILE_PIPE_INFORMATION 23
1539#define FILE_PIPE_LOCAL_INFORMATION 24
1540#define FILE_PIPE_REMOTE_INFORMATION 25
1541#define FILE_MAILSLOT_QUERY_INFORMATION 26
1542#define FILE_MAILSLOT_SET_INFORMATION 27
1543#define FILE_COMPRESSION_INFORMATION 28
1544#define FILE_OBJECT_ID_INFORMATION 29
1545/* Number 30 not defined in documents */
1546#define FILE_MOVE_CLUSTER_INFORMATION 31
1547#define FILE_QUOTA_INFORMATION 32
1548#define FILE_REPARSE_POINT_INFORMATION 33
1549#define FILE_NETWORK_OPEN_INFORMATION 34
1550#define FILE_ATTRIBUTE_TAG_INFORMATION 35
1551#define FILE_TRACKING_INFORMATION 36
1552#define FILEID_BOTH_DIRECTORY_INFORMATION 37
1553#define FILEID_FULL_DIRECTORY_INFORMATION 38
1554#define FILE_VALID_DATA_LENGTH_INFORMATION 39
1555#define FILE_SHORT_NAME_INFORMATION 40
1556#define FILE_SFIO_RESERVE_INFORMATION 44
1557#define FILE_SFIO_VOLUME_INFORMATION 45
1558#define FILE_HARD_LINK_INFORMATION 46
1559#define FILE_NORMALIZED_NAME_INFORMATION 48
1560#define FILEID_GLOBAL_TX_DIRECTORY_INFORMATION 50
1561#define FILE_STANDARD_LINK_INFORMATION 54
Steve French51d92d62020-02-06 12:32:03 -06001562#define FILE_ID_INFORMATION 59
Pavel Shilovskybe4cb9e2011-12-29 17:06:33 +04001563
Pavel Shilovskyf0df7372012-09-18 16:20:26 -07001564struct smb2_file_internal_info {
1565 __le64 IndexNumber;
1566} __packed; /* level 6 Query */
1567
Pavel Shilovsky35143eb2012-09-18 16:20:31 -07001568struct smb2_file_rename_info { /* encoding of request for level 10 */
1569 __u8 ReplaceIfExists; /* 1 = replace existing target with new */
1570 /* 0 = fail if target already exists */
1571 __u8 Reserved[7];
1572 __u64 RootDirectory; /* MBZ for network operations (why says spec?) */
1573 __le32 FileNameLength;
Gustavo A. R. Silvacff2def2020-03-09 10:44:51 -05001574 char FileName[]; /* New name to be assigned */
Pavel Shilovsky35143eb2012-09-18 16:20:31 -07001575} __packed; /* level 10 Set */
1576
Pavel Shilovsky568798c2012-09-18 16:20:31 -07001577struct smb2_file_link_info { /* encoding of request for level 11 */
1578 __u8 ReplaceIfExists; /* 1 = replace existing link with new */
1579 /* 0 = fail if link already exists */
1580 __u8 Reserved[7];
1581 __u64 RootDirectory; /* MBZ for network operations (why says spec?) */
1582 __le32 FileNameLength;
Gustavo A. R. Silvacff2def2020-03-09 10:44:51 -05001583 char FileName[]; /* Name to be assigned to new link */
Pavel Shilovsky568798c2012-09-18 16:20:31 -07001584} __packed; /* level 11 Set */
1585
Ronnie Sahlberg95907fe2017-08-24 11:24:55 +10001586struct smb2_file_full_ea_info { /* encoding of response for level 15 */
1587 __le32 next_entry_offset;
1588 __u8 flags;
1589 __u8 ea_name_length;
1590 __le16 ea_value_length;
Gustavo A. R. Silvacff2def2020-03-09 10:44:51 -05001591 char ea_data[]; /* \0 terminated name plus value */
Ronnie Sahlberg95907fe2017-08-24 11:24:55 +10001592} __packed; /* level 15 Set */
1593
Pavel Shilovskybe4cb9e2011-12-29 17:06:33 +04001594/*
1595 * This level 18, although with struct with same name is different from cifs
1596 * level 0x107. Level 0x107 has an extra u64 between AccessFlags and
1597 * CurrentByteOffset.
1598 */
1599struct smb2_file_all_info { /* data block encoding of response to level 18 */
1600 __le64 CreationTime; /* Beginning of FILE_BASIC_INFO equivalent */
1601 __le64 LastAccessTime;
1602 __le64 LastWriteTime;
1603 __le64 ChangeTime;
1604 __le32 Attributes;
1605 __u32 Pad1; /* End of FILE_BASIC_INFO_INFO equivalent */
1606 __le64 AllocationSize; /* Beginning of FILE_STANDARD_INFO equivalent */
1607 __le64 EndOfFile; /* size ie offset to first free byte in file */
1608 __le32 NumberOfLinks; /* hard links */
1609 __u8 DeletePending;
1610 __u8 Directory;
1611 __u16 Pad2; /* End of FILE_STANDARD_INFO equivalent */
1612 __le64 IndexNumber;
1613 __le32 EASize;
1614 __le32 AccessFlags;
1615 __le64 CurrentByteOffset;
1616 __le32 Mode;
1617 __le32 AlignmentRequirement;
1618 __le32 FileNameLength;
1619 char FileName[1];
1620} __packed; /* level 18 Query */
1621
Pavel Shilovskyc839ff22012-09-18 16:20:32 -07001622struct smb2_file_eof_info { /* encoding of request for level 10 */
1623 __le64 EndOfFile; /* new end of file value */
1624} __packed; /* level 20 Set */
1625
Steve French43f8a6a2019-12-02 21:46:54 -06001626struct smb2_file_network_open_info {
1627 __le64 CreationTime;
1628 __le64 LastAccessTime;
1629 __le64 LastWriteTime;
1630 __le64 ChangeTime;
1631 __le64 AllocationSize;
1632 __le64 EndOfFile;
1633 __le32 Attributes;
1634 __le32 Reserved;
1635} __packed; /* level 34 Query also similar returned in close rsp and open rsp */
1636
Steve French51d92d62020-02-06 12:32:03 -06001637/* See MS-FSCC 2.4.43 */
1638struct smb2_file_id_information {
1639 __le64 VolumeSerialNumber;
1640 __u64 PersistentFileId; /* opaque endianness */
1641 __u64 VolatileFileId; /* opaque endianness */
1642} __packed; /* level 59 */
1643
Ronnie Sahlberg730928c2018-08-08 15:07:49 +10001644extern char smb2_padding[7];
1645
Steve Frenchab3459d2020-02-06 17:31:56 -06001646/* equivalent of the contents of SMB3.1.1 POSIX open context response */
Aurelien Aptel2e8af972020-02-08 15:50:56 +01001647struct create_posix_rsp {
Aurelien Aptel69dda302020-03-02 17:53:22 +01001648 u32 nlink;
1649 u32 reparse_tag;
1650 u32 mode;
1651 struct cifs_sid owner; /* var-sized on the wire */
1652 struct cifs_sid group; /* var-sized on the wire */
Aurelien Aptel2e8af972020-02-08 15:50:56 +01001653} __packed;
Aurelien Aptel349e13a2020-02-08 15:50:57 +01001654
1655/*
Steve French6a5f6592020-06-11 19:25:47 -05001656 * SMB2-only POSIX info level for query dir
Aurelien Aptel349e13a2020-02-08 15:50:57 +01001657 *
1658 * See posix_info_sid_size(), posix_info_extra_size() and
1659 * posix_info_parse() to help with the handling of this struct.
1660 */
1661struct smb2_posix_info {
1662 __le32 NextEntryOffset;
1663 __u32 Ignored;
1664 __le64 CreationTime;
1665 __le64 LastAccessTime;
1666 __le64 LastWriteTime;
1667 __le64 ChangeTime;
1668 __le64 EndOfFile;
1669 __le64 AllocationSize;
1670 __le32 DosAttributes;
1671 __le64 Inode;
1672 __le32 DeviceId;
1673 __le32 Zero;
1674 /* beginning of POSIX Create Context Response */
1675 __le32 HardLinks;
1676 __le32 ReparseTag;
1677 __le32 Mode;
1678 /*
1679 * var sized owner SID
1680 * var sized group SID
1681 * le32 filenamelength
1682 * u8 filename[]
1683 */
1684} __packed;
1685
Steve French6a5f6592020-06-11 19:25:47 -05001686/* Level 100 query info */
1687struct smb311_posix_qinfo {
1688 __le64 CreationTime;
1689 __le64 LastAccessTime;
1690 __le64 LastWriteTime;
1691 __le64 ChangeTime;
1692 __le64 EndOfFile;
1693 __le64 AllocationSize;
1694 __le32 DosAttributes;
1695 __le64 Inode;
1696 __le32 DeviceId;
1697 __le32 Zero;
1698 /* beginning of POSIX Create Context Response */
1699 __le32 HardLinks;
1700 __le32 ReparseTag;
1701 __le32 Mode;
1702 u8 Sids[];
1703 /*
1704 * var sized owner SID
1705 * var sized group SID
1706 * le32 filenamelength
1707 * u8 filename[]
1708 */
1709} __packed;
1710
Aurelien Aptel349e13a2020-02-08 15:50:57 +01001711/*
1712 * Parsed version of the above struct. Allows direct access to the
1713 * variable length fields
1714 */
1715struct smb2_posix_info_parsed {
1716 const struct smb2_posix_info *base;
1717 size_t size;
1718 struct cifs_sid owner;
1719 struct cifs_sid group;
1720 int name_len;
1721 const u8 *name;
Steve Frenchab3459d2020-02-06 17:31:56 -06001722};
Aurelien Aptel349e13a2020-02-08 15:50:57 +01001723
Steve Frenchddfbefb2011-03-15 02:08:48 +00001724#endif /* _SMB2PDU_H */