Linux Audio

Check our new training course

Loading...
v5.14.15
   1/* SPDX-License-Identifier: LGPL-2.1 */
   2/*
   3 *   fs/cifs/smb2pdu.h
   4 *
   5 *   Copyright (c) International Business Machines  Corp., 2009, 2013
   6 *                 Etersoft, 2012
   7 *   Author(s): Steve French (sfrench@us.ibm.com)
   8 *              Pavel Shilovsky (pshilovsky@samba.org) 2012
   9 *
 
 
 
 
 
 
 
 
 
 
 
 
 
  10 */
  11
  12#ifndef _SMB2PDU_H
  13#define _SMB2PDU_H
  14
  15#include <net/sock.h>
  16#include "cifsacl.h"
  17
  18/*
  19 * Note that, due to trying to use names similar to the protocol specifications,
  20 * there are many mixed case field names in the structures below.  Although
  21 * this does not match typical Linux kernel style, it is necessary to be
  22 * able to match against the protocol specfication.
  23 *
  24 * SMB2 commands
  25 * Some commands have minimal (wct=0,bcc=0), or uninteresting, responses
  26 * (ie no useful data other than the SMB error code itself) and are marked such.
  27 * Knowing this helps avoid response buffer allocations and copy in some cases.
  28 */
  29
  30/* List of commands in host endian */
  31#define SMB2_NEGOTIATE_HE	0x0000
  32#define SMB2_SESSION_SETUP_HE	0x0001
  33#define SMB2_LOGOFF_HE		0x0002 /* trivial request/resp */
  34#define SMB2_TREE_CONNECT_HE	0x0003
  35#define SMB2_TREE_DISCONNECT_HE	0x0004 /* trivial req/resp */
  36#define SMB2_CREATE_HE		0x0005
  37#define SMB2_CLOSE_HE		0x0006
  38#define SMB2_FLUSH_HE		0x0007 /* trivial resp */
  39#define SMB2_READ_HE		0x0008
  40#define SMB2_WRITE_HE		0x0009
  41#define SMB2_LOCK_HE		0x000A
  42#define SMB2_IOCTL_HE		0x000B
  43#define SMB2_CANCEL_HE		0x000C
  44#define SMB2_ECHO_HE		0x000D
  45#define SMB2_QUERY_DIRECTORY_HE	0x000E
  46#define SMB2_CHANGE_NOTIFY_HE	0x000F
  47#define SMB2_QUERY_INFO_HE	0x0010
  48#define SMB2_SET_INFO_HE	0x0011
  49#define SMB2_OPLOCK_BREAK_HE	0x0012
  50
  51/* The same list in little endian */
  52#define SMB2_NEGOTIATE		cpu_to_le16(SMB2_NEGOTIATE_HE)
  53#define SMB2_SESSION_SETUP	cpu_to_le16(SMB2_SESSION_SETUP_HE)
  54#define SMB2_LOGOFF		cpu_to_le16(SMB2_LOGOFF_HE)
  55#define SMB2_TREE_CONNECT	cpu_to_le16(SMB2_TREE_CONNECT_HE)
  56#define SMB2_TREE_DISCONNECT	cpu_to_le16(SMB2_TREE_DISCONNECT_HE)
  57#define SMB2_CREATE		cpu_to_le16(SMB2_CREATE_HE)
  58#define SMB2_CLOSE		cpu_to_le16(SMB2_CLOSE_HE)
  59#define SMB2_FLUSH		cpu_to_le16(SMB2_FLUSH_HE)
  60#define SMB2_READ		cpu_to_le16(SMB2_READ_HE)
  61#define SMB2_WRITE		cpu_to_le16(SMB2_WRITE_HE)
  62#define SMB2_LOCK		cpu_to_le16(SMB2_LOCK_HE)
  63#define SMB2_IOCTL		cpu_to_le16(SMB2_IOCTL_HE)
  64#define SMB2_CANCEL		cpu_to_le16(SMB2_CANCEL_HE)
  65#define SMB2_ECHO		cpu_to_le16(SMB2_ECHO_HE)
  66#define SMB2_QUERY_DIRECTORY	cpu_to_le16(SMB2_QUERY_DIRECTORY_HE)
  67#define SMB2_CHANGE_NOTIFY	cpu_to_le16(SMB2_CHANGE_NOTIFY_HE)
  68#define SMB2_QUERY_INFO		cpu_to_le16(SMB2_QUERY_INFO_HE)
  69#define SMB2_SET_INFO		cpu_to_le16(SMB2_SET_INFO_HE)
  70#define SMB2_OPLOCK_BREAK	cpu_to_le16(SMB2_OPLOCK_BREAK_HE)
  71
  72#define SMB2_INTERNAL_CMD	cpu_to_le16(0xFFFF)
  73
  74#define NUMBER_OF_SMB2_COMMANDS	0x0013
  75
  76/* 52 transform hdr + 64 hdr + 88 create rsp */
  77#define SMB2_TRANSFORM_HEADER_SIZE 52
  78#define MAX_SMB2_HDR_SIZE 204
  79
  80#define SMB2_PROTO_NUMBER cpu_to_le32(0x424d53fe)
  81#define SMB2_TRANSFORM_PROTO_NUM cpu_to_le32(0x424d53fd)
  82#define SMB2_COMPRESSION_TRANSFORM_ID cpu_to_le32(0x424d53fc)
  83
  84/*
  85 * SMB2 Header Definition
  86 *
  87 * "MBZ" :  Must be Zero
  88 * "BB"  :  BugBug, Something to check/review/analyze later
  89 * "PDU" :  "Protocol Data Unit" (ie a network "frame")
  90 *
  91 */
  92
  93#define SMB2_HEADER_STRUCTURE_SIZE cpu_to_le16(64)
  94
  95struct smb2_sync_hdr {
  96	__le32 ProtocolId;	/* 0xFE 'S' 'M' 'B' */
  97	__le16 StructureSize;	/* 64 */
  98	__le16 CreditCharge;	/* MBZ */
  99	__le32 Status;		/* Error from server */
 100	__le16 Command;
 101	__le16 CreditRequest;  /* CreditResponse */
 102	__le32 Flags;
 103	__le32 NextCommand;
 104	__le64 MessageId;
 105	__le32 ProcessId;
 106	__u32  TreeId;		/* opaque - so do not make little endian */
 107	__u64  SessionId;	/* opaque - so do not make little endian */
 108	__u8   Signature[16];
 109} __packed;
 110
 111/* The total header size for SMB2 read and write */
 112#define SMB2_READWRITE_PDU_HEADER_SIZE (48 + sizeof(struct smb2_sync_hdr))
 113
 114struct smb2_sync_pdu {
 115	struct smb2_sync_hdr sync_hdr;
 116	__le16 StructureSize2; /* size of wct area (varies, request specific) */
 117} __packed;
 118
 119#define SMB3_AES_CCM_NONCE 11
 120#define SMB3_AES_GCM_NONCE 12
 121
 122/* Transform flags (for 3.0 dialect this flag indicates CCM */
 123#define TRANSFORM_FLAG_ENCRYPTED	0x0001
 124struct smb2_transform_hdr {
 125	__le32 ProtocolId;	/* 0xFD 'S' 'M' 'B' */
 126	__u8   Signature[16];
 127	__u8   Nonce[16];
 128	__le32 OriginalMessageSize;
 129	__u16  Reserved1;
 130	__le16 Flags; /* EncryptionAlgorithm for 3.0, enc enabled for 3.1.1 */
 131	__u64  SessionId;
 132} __packed;
 133
 134/* See MS-SMB2 2.2.42 */
 135struct smb2_compression_transform_hdr_unchained {
 136	__le32 ProtocolId;	/* 0xFC 'S' 'M' 'B' */
 137	__le32 OriginalCompressedSegmentSize;
 138	__le16 CompressionAlgorithm;
 139	__le16 Flags;
 140	__le16 Length; /* if chained it is length, else offset */
 141} __packed;
 142
 143/* See MS-SMB2 2.2.42.1 */
 144#define SMB2_COMPRESSION_FLAG_NONE	0x0000
 145#define SMB2_COMPRESSION_FLAG_CHAINED	0x0001
 146
 147struct compression_payload_header {
 148	__le16	CompressionAlgorithm;
 149	__le16	Flags;
 150	__le32	Length; /* length of compressed playload including field below if present */
 151	/* __le32 OriginalPayloadSize; */ /* optional, present when LZNT1, LZ77, LZ77+Huffman */
 152} __packed;
 153
 154/* See MS-SMB2 2.2.42.2 */
 155struct smb2_compression_transform_hdr_chained {
 156	__le32 ProtocolId;	/* 0xFC 'S' 'M' 'B' */
 157	__le32 OriginalCompressedSegmentSize;
 158	/* struct compression_payload_header[] */
 159} __packed;
 160
 161/* See MS-SMB2 2.2.42.2.2 */
 162struct compression_pattern_payload_v1 {
 163	__le16	Pattern;
 164	__le16	Reserved1;
 165	__le16	Reserved2;
 166	__le32	Repetitions;
 167} __packed;
 168
 169/* See MS-SMB2 2.2.43 */
 170struct smb2_rdma_transform {
 171	__le16 RdmaDescriptorOffset;
 172	__le16 RdmaDescriptorLength;
 173	__le32 Channel; /* for values see channel description in smb2 read above */
 174	__le16 TransformCount;
 175	__le16 Reserved1;
 176	__le32 Reserved2;
 177} __packed;
 178
 179/* TransformType */
 180#define SMB2_RDMA_TRANSFORM_TYPE_ENCRYPTION	0x0001
 181#define SMB2_RDMA_TRANSFORM_TYPE_SIGNING	0x0002
 182
 183struct smb2_rdma_crypto_transform {
 184	__le16	TransformType;
 185	__le16	SignatureLength;
 186	__le16	NonceLength;
 187	__u16	Reserved;
 188	__u8	Signature[]; /* variable length */
 189	/* u8 Nonce[] */
 190	/* followed by padding */
 191} __packed;
 192
 193/*
 194 *	SMB2 flag definitions
 195 */
 196#define SMB2_FLAGS_SERVER_TO_REDIR	cpu_to_le32(0x00000001)
 197#define SMB2_FLAGS_ASYNC_COMMAND	cpu_to_le32(0x00000002)
 198#define SMB2_FLAGS_RELATED_OPERATIONS	cpu_to_le32(0x00000004)
 199#define SMB2_FLAGS_SIGNED		cpu_to_le32(0x00000008)
 200#define SMB2_FLAGS_PRIORITY_MASK	cpu_to_le32(0x00000070) /* SMB3.1.1 */
 201#define SMB2_FLAGS_DFS_OPERATIONS	cpu_to_le32(0x10000000)
 202#define SMB2_FLAGS_REPLAY_OPERATION	cpu_to_le32(0x20000000) /* SMB3 & up */
 203
 204/*
 205 *	Definitions for SMB2 Protocol Data Units (network frames)
 206 *
 207 *  See MS-SMB2.PDF specification for protocol details.
 208 *  The Naming convention is the lower case version of the SMB2
 209 *  command code name for the struct. Note that structures must be packed.
 210 *
 211 */
 212
 213#define COMPOUND_FID 0xFFFFFFFFFFFFFFFFULL
 214
 215#define SMB2_ERROR_STRUCTURE_SIZE2 cpu_to_le16(9)
 216
 217struct smb2_err_rsp {
 218	struct smb2_sync_hdr sync_hdr;
 219	__le16 StructureSize;
 220	__le16 Reserved; /* MBZ */
 221	__le32 ByteCount;  /* even if zero, at least one byte follows */
 222	__u8   ErrorData[1];  /* variable length */
 223} __packed;
 224
 225#define SYMLINK_ERROR_TAG 0x4c4d5953
 226
 227struct smb2_symlink_err_rsp {
 228	__le32 SymLinkLength;
 229	__le32 SymLinkErrorTag;
 230	__le32 ReparseTag;
 231	__le16 ReparseDataLength;
 232	__le16 UnparsedPathLength;
 233	__le16 SubstituteNameOffset;
 234	__le16 SubstituteNameLength;
 235	__le16 PrintNameOffset;
 236	__le16 PrintNameLength;
 237	__le32 Flags;
 238	__u8  PathBuffer[];
 239} __packed;
 240
 241/* SMB 3.1.1 and later dialects. See MS-SMB2 section 2.2.2.1 */
 242struct smb2_error_context_rsp {
 243	__le32 ErrorDataLength;
 244	__le32 ErrorId;
 245	__u8  ErrorContextData; /* ErrorDataLength long array */
 246} __packed;
 247
 248/* ErrorId values */
 249#define SMB2_ERROR_ID_DEFAULT		0x00000000
 250#define SMB2_ERROR_ID_SHARE_REDIRECT	cpu_to_le32(0x72645253)	/* "rdRS" */
 251
 252/* Defines for Type field below (see MS-SMB2 2.2.2.2.2.1) */
 253#define MOVE_DST_IPADDR_V4	cpu_to_le32(0x00000001)
 254#define MOVE_DST_IPADDR_V6	cpu_to_le32(0x00000002)
 255
 256struct move_dst_ipaddr {
 257	__le32 Type;
 258	__u32  Reserved;
 259	__u8   address[16]; /* IPv4 followed by 12 bytes rsvd or IPv6 address */
 260} __packed;
 261
 262struct share_redirect_error_context_rsp {
 263	__le32 StructureSize;
 264	__le32 NotificationType;
 265	__le32 ResourceNameOffset;
 266	__le32 ResourceNameLength;
 267	__le16 Reserved;
 268	__le16 TargetType;
 269	__le32 IPAddrCount;
 270	struct move_dst_ipaddr IpAddrMoveList[];
 271	/* __u8 ResourceName[] */ /* Name of share as counted Unicode string */
 272} __packed;
 273
 274#define SMB2_CLIENT_GUID_SIZE 16
 275
 276struct smb2_negotiate_req {
 277	struct smb2_sync_hdr sync_hdr;
 278	__le16 StructureSize; /* Must be 36 */
 279	__le16 DialectCount;
 280	__le16 SecurityMode;
 281	__le16 Reserved;	/* MBZ */
 282	__le32 Capabilities;
 283	__u8   ClientGUID[SMB2_CLIENT_GUID_SIZE];
 284	/* In SMB3.02 and earlier next three were MBZ le64 ClientStartTime */
 285	__le32 NegotiateContextOffset; /* SMB3.1.1 only. MBZ earlier */
 286	__le16 NegotiateContextCount;  /* SMB3.1.1 only. MBZ earlier */
 287	__le16 Reserved2;
 288	__le16 Dialects[4]; /* BB expand this if autonegotiate > 4 dialects */
 289} __packed;
 290
 291/* Dialects */
 292#define SMB10_PROT_ID 0x0000 /* local only, not sent on wire w/CIFS negprot */
 293#define SMB20_PROT_ID 0x0202
 294#define SMB21_PROT_ID 0x0210
 295#define SMB30_PROT_ID 0x0300
 296#define SMB302_PROT_ID 0x0302
 297#define SMB311_PROT_ID 0x0311
 298#define BAD_PROT_ID   0xFFFF
 299
 300/* SecurityMode flags */
 301#define	SMB2_NEGOTIATE_SIGNING_ENABLED	0x0001
 302#define SMB2_NEGOTIATE_SIGNING_REQUIRED	0x0002
 303#define SMB2_SEC_MODE_FLAGS_ALL		0x0003
 304
 305/* Capabilities flags */
 306#define SMB2_GLOBAL_CAP_DFS		0x00000001
 307#define SMB2_GLOBAL_CAP_LEASING		0x00000002 /* Resp only New to SMB2.1 */
 308#define SMB2_GLOBAL_CAP_LARGE_MTU	0X00000004 /* Resp only New to SMB2.1 */
 309#define SMB2_GLOBAL_CAP_MULTI_CHANNEL	0x00000008 /* New to SMB3 */
 310#define SMB2_GLOBAL_CAP_PERSISTENT_HANDLES 0x00000010 /* New to SMB3 */
 311#define SMB2_GLOBAL_CAP_DIRECTORY_LEASING  0x00000020 /* New to SMB3 */
 312#define SMB2_GLOBAL_CAP_ENCRYPTION	0x00000040 /* New to SMB3 */
 313/* Internal types */
 314#define SMB2_NT_FIND			0x00100000
 315#define SMB2_LARGE_FILES		0x00200000
 316
 317
 318/* Negotiate Contexts - ContextTypes. See MS-SMB2 section 2.2.3.1 for details */
 319#define SMB2_PREAUTH_INTEGRITY_CAPABILITIES	cpu_to_le16(1)
 320#define SMB2_ENCRYPTION_CAPABILITIES		cpu_to_le16(2)
 321#define SMB2_COMPRESSION_CAPABILITIES		cpu_to_le16(3)
 322#define SMB2_NETNAME_NEGOTIATE_CONTEXT_ID	cpu_to_le16(5)
 323#define SMB2_TRANSPORT_CAPABILITIES		cpu_to_le16(6)
 324#define SMB2_RDMA_TRANSFORM_CAPABILITIES	cpu_to_le16(7)
 325#define SMB2_SIGNING_CAPABILITIES		cpu_to_le16(8)
 326#define SMB2_POSIX_EXTENSIONS_AVAILABLE		cpu_to_le16(0x100)
 327
 328struct smb2_neg_context {
 329	__le16	ContextType;
 330	__le16	DataLength;
 331	__le32	Reserved;
 332	/* Followed by array of data. NOTE: some servers require padding to 8 byte boundary */
 333} __packed;
 334
 335#define SMB311_LINUX_CLIENT_SALT_SIZE			32
 336/* Hash Algorithm Types */
 337#define SMB2_PREAUTH_INTEGRITY_SHA512	cpu_to_le16(0x0001)
 338#define SMB2_PREAUTH_HASH_SIZE 64
 339
 340/*
 341 * SaltLength that the server send can be zero, so the only three required
 342 * fields (all __le16) end up six bytes total, so the minimum context data len
 343 * in the response is six bytes which accounts for
 344 *
 345 *      HashAlgorithmCount, SaltLength, and 1 HashAlgorithm.
 346 */
 347#define MIN_PREAUTH_CTXT_DATA_LEN 6
 348
 349struct smb2_preauth_neg_context {
 350	__le16	ContextType; /* 1 */
 351	__le16	DataLength;
 352	__le32	Reserved;
 353	__le16	HashAlgorithmCount; /* 1 */
 354	__le16	SaltLength;
 355	__le16	HashAlgorithms; /* HashAlgorithms[0] since only one defined */
 356	__u8	Salt[SMB311_LINUX_CLIENT_SALT_SIZE];
 357} __packed;
 358
 359/* Encryption Algorithms Ciphers */
 360#define SMB2_ENCRYPTION_AES128_CCM	cpu_to_le16(0x0001)
 361#define SMB2_ENCRYPTION_AES128_GCM	cpu_to_le16(0x0002)
 362/* we currently do not request AES256_CCM since presumably GCM faster */
 363#define SMB2_ENCRYPTION_AES256_CCM      cpu_to_le16(0x0003)
 364#define SMB2_ENCRYPTION_AES256_GCM      cpu_to_le16(0x0004)
 365
 366/* Min encrypt context data is one cipher so 2 bytes + 2 byte count field */
 367#define MIN_ENCRYPT_CTXT_DATA_LEN	4
 368struct smb2_encryption_neg_context {
 369	__le16	ContextType; /* 2 */
 370	__le16	DataLength;
 371	__le32	Reserved;
 372	/* CipherCount usally 2, but can be 3 when AES256-GCM enabled */
 373	__le16	CipherCount; /* AES128-GCM and AES128-CCM by default */
 374	__le16	Ciphers[3];
 375} __packed;
 376
 377/* See MS-SMB2 2.2.3.1.3 */
 378#define SMB3_COMPRESS_NONE	cpu_to_le16(0x0000)
 379#define SMB3_COMPRESS_LZNT1	cpu_to_le16(0x0001)
 380#define SMB3_COMPRESS_LZ77	cpu_to_le16(0x0002)
 381#define SMB3_COMPRESS_LZ77_HUFF	cpu_to_le16(0x0003)
 382/* Pattern scanning algorithm See MS-SMB2 3.1.4.4.1 */
 383#define SMB3_COMPRESS_PATTERN	cpu_to_le16(0x0004) /* Pattern_V1 */
 384
 385/* Compression Flags */
 386#define SMB2_COMPRESSION_CAPABILITIES_FLAG_NONE		cpu_to_le32(0x00000000)
 387#define SMB2_COMPRESSION_CAPABILITIES_FLAG_CHAINED	cpu_to_le32(0x00000001)
 388
 389struct smb2_compression_capabilities_context {
 390	__le16	ContextType; /* 3 */
 391	__le16  DataLength;
 392	__u32	Reserved;
 393	__le16	CompressionAlgorithmCount;
 394	__u16	Padding;
 395	__u32	Flags;
 396	__le16	CompressionAlgorithms[3];
 397	__u16	Pad;  /* Some servers require pad to DataLen multiple of 8 */
 398	/* Check if pad needed */
 399} __packed;
 400
 401/*
 402 * For smb2_netname_negotiate_context_id See MS-SMB2 2.2.3.1.4.
 403 * Its struct simply contains NetName, an array of Unicode characters
 404 */
 405struct smb2_netname_neg_context {
 406	__le16	ContextType; /* 5 */
 407	__le16	DataLength;
 408	__le32	Reserved;
 409	__le16	NetName[]; /* hostname of target converted to UCS-2 */
 410} __packed;
 411
 412/*
 413 * For smb2_transport_capabilities context see MS-SMB2 2.2.3.1.5
 414 * and 2.2.4.1.5
 415 */
 416
 417/* Flags */
 418#define SMB2_ACCEPT_TRANSFORM_LEVEL_SECURITY	0x00000001
 419
 420struct smb2_transport_capabilities_context {
 421	__le16	ContextType; /* 6 */
 422	__le16  DataLength;
 423	__u32	Reserved;
 424	__le32	Flags;
 425	__u32	Pad;
 426} __packed;
 427
 428/*
 429 * For rdma transform capabilities context see MS-SMB2 2.2.3.1.6
 430 * and 2.2.4.1.6
 431 */
 432
 433/* RDMA Transform IDs */
 434#define SMB2_RDMA_TRANSFORM_NONE	0x0000
 435#define SMB2_RDMA_TRANSFORM_ENCRYPTION	0x0001
 436#define SMB2_RDMA_TRANSFORM_SIGNING	0x0002
 437
 438struct smb2_rdma_transform_capabilities_context {
 439	__le16	ContextType; /* 7 */
 440	__le16  DataLength;
 441	__u32	Reserved;
 442	__le16	TransformCount;
 443	__u16	Reserved1;
 444	__u32	Reserved2;
 445	__le16	RDMATransformIds[];
 446} __packed;
 447
 448/*
 449 * For signing capabilities context see MS-SMB2 2.2.3.1.7
 450 * and 2.2.4.1.7
 451 */
 452
 453/* Signing algorithms */
 454#define SIGNING_ALG_HMAC_SHA256	0
 455#define SIGNING_ALG_AES_CMAC	1
 456#define SIGNING_ALG_AES_GMAC	2
 457
 458struct smb2_signing_capabilities {
 459	__le16	ContextType; /* 8 */
 460	__le16	DataLength;
 461	__u32	Reserved;
 462	__le16	SigningAlgorithmCount;
 463	__le16	SigningAlgorithms[];
 464	/*  Followed by padding to 8 byte boundary (required by some servers) */
 465} __packed;
 466
 467#define POSIX_CTXT_DATA_LEN	16
 468struct smb2_posix_neg_context {
 469	__le16	ContextType; /* 0x100 */
 470	__le16	DataLength;
 471	__le32	Reserved;
 472	__u8	Name[16]; /* POSIX ctxt GUID 93AD25509CB411E7B42383DE968BCD7C */
 473} __packed;
 474
 475struct smb2_negotiate_rsp {
 476	struct smb2_sync_hdr sync_hdr;
 477	__le16 StructureSize;	/* Must be 65 */
 478	__le16 SecurityMode;
 479	__le16 DialectRevision;
 480	__le16 NegotiateContextCount;	/* Prior to SMB3.1.1 was Reserved & MBZ */
 481	__u8   ServerGUID[16];
 482	__le32 Capabilities;
 483	__le32 MaxTransactSize;
 484	__le32 MaxReadSize;
 485	__le32 MaxWriteSize;
 486	__le64 SystemTime;	/* MBZ */
 487	__le64 ServerStartTime;
 488	__le16 SecurityBufferOffset;
 489	__le16 SecurityBufferLength;
 490	__le32 NegotiateContextOffset;	/* Pre:SMB3.1.1 was reserved/ignored */
 491	__u8   Buffer[1];	/* variable length GSS security buffer */
 492} __packed;
 493
 494/* Flags */
 495#define SMB2_SESSION_REQ_FLAG_BINDING		0x01
 496#define SMB2_SESSION_REQ_FLAG_ENCRYPT_DATA	0x04
 497
 498struct smb2_sess_setup_req {
 499	struct smb2_sync_hdr sync_hdr;
 500	__le16 StructureSize; /* Must be 25 */
 501	__u8   Flags;
 502	__u8   SecurityMode;
 503	__le32 Capabilities;
 504	__le32 Channel;
 505	__le16 SecurityBufferOffset;
 506	__le16 SecurityBufferLength;
 507	__u64 PreviousSessionId;
 508	__u8   Buffer[1];	/* variable length GSS security buffer */
 509} __packed;
 510
 511/* Currently defined SessionFlags */
 512#define SMB2_SESSION_FLAG_IS_GUEST	0x0001
 513#define SMB2_SESSION_FLAG_IS_NULL	0x0002
 514#define SMB2_SESSION_FLAG_ENCRYPT_DATA	0x0004
 515struct smb2_sess_setup_rsp {
 516	struct smb2_sync_hdr sync_hdr;
 517	__le16 StructureSize; /* Must be 9 */
 518	__le16 SessionFlags;
 519	__le16 SecurityBufferOffset;
 520	__le16 SecurityBufferLength;
 521	__u8   Buffer[1];	/* variable length GSS security buffer */
 522} __packed;
 523
 524struct smb2_logoff_req {
 525	struct smb2_sync_hdr sync_hdr;
 526	__le16 StructureSize;	/* Must be 4 */
 527	__le16 Reserved;
 528} __packed;
 529
 530struct smb2_logoff_rsp {
 531	struct smb2_sync_hdr sync_hdr;
 532	__le16 StructureSize;	/* Must be 4 */
 533	__le16 Reserved;
 534} __packed;
 535
 536/* Flags/Reserved for SMB3.1.1 */
 537#define SMB2_TREE_CONNECT_FLAG_CLUSTER_RECONNECT cpu_to_le16(0x0001)
 538#define SMB2_TREE_CONNECT_FLAG_REDIRECT_TO_OWNER cpu_to_le16(0x0002)
 539#define SMB2_TREE_CONNECT_FLAG_EXTENSION_PRESENT cpu_to_le16(0x0004)
 540
 541struct smb2_tree_connect_req {
 542	struct smb2_sync_hdr sync_hdr;
 543	__le16 StructureSize;	/* Must be 9 */
 544	__le16 Flags; /* Reserved MBZ for dialects prior to SMB3.1.1 */
 545	__le16 PathOffset;
 546	__le16 PathLength;
 547	__u8   Buffer[1];	/* variable length */
 548} __packed;
 549
 550/* See MS-SMB2 section 2.2.9.2 */
 551/* Context Types */
 552#define SMB2_RESERVED_TREE_CONNECT_CONTEXT_ID 0x0000
 553#define SMB2_REMOTED_IDENTITY_TREE_CONNECT_CONTEXT_ID cpu_to_le16(0x0001)
 554
 555struct tree_connect_contexts {
 556	__le16 ContextType;
 557	__le16 DataLength;
 558	__le32 Reserved;
 559	__u8   Data[];
 560} __packed;
 561
 562/* Remoted identity tree connect context structures - see MS-SMB2 2.2.9.2.1 */
 563struct smb3_blob_data {
 564	__le16 BlobSize;
 565	__u8   BlobData[];
 566} __packed;
 567
 568/* Valid values for Attr */
 569#define SE_GROUP_MANDATORY		0x00000001
 570#define SE_GROUP_ENABLED_BY_DEFAULT	0x00000002
 571#define SE_GROUP_ENABLED		0x00000004
 572#define SE_GROUP_OWNER			0x00000008
 573#define SE_GROUP_USE_FOR_DENY_ONLY	0x00000010
 574#define SE_GROUP_INTEGRITY		0x00000020
 575#define SE_GROUP_INTEGRITY_ENABLED	0x00000040
 576#define SE_GROUP_RESOURCE		0x20000000
 577#define SE_GROUP_LOGON_ID		0xC0000000
 578
 579/* struct sid_attr_data is SidData array in BlobData format then le32 Attr */
 580
 581struct sid_array_data {
 582	__le16 SidAttrCount;
 583	/* SidAttrList - array of sid_attr_data structs */
 584} __packed;
 585
 586struct luid_attr_data {
 587
 588} __packed;
 589
 590/*
 591 * struct privilege_data is the same as BLOB_DATA - see MS-SMB2 2.2.9.2.1.5
 592 * but with size of LUID_ATTR_DATA struct and BlobData set to LUID_ATTR DATA
 593 */
 594
 595struct privilege_array_data {
 596	__le16 PrivilegeCount;
 597	/* array of privilege_data structs */
 598} __packed;
 599
 600struct remoted_identity_tcon_context {
 601	__le16 TicketType; /* must be 0x0001 */
 602	__le16 TicketSize; /* total size of this struct */
 603	__le16 User; /* offset to SID_ATTR_DATA struct with user info */
 604	__le16 UserName; /* offset to null terminated Unicode username string */
 605	__le16 Domain; /* offset to null terminated Unicode domain name */
 606	__le16 Groups; /* offset to SID_ARRAY_DATA struct with group info */
 607	__le16 RestrictedGroups; /* similar to above */
 608	__le16 Privileges; /* offset to PRIVILEGE_ARRAY_DATA struct */
 609	__le16 PrimaryGroup; /* offset to SID_ARRAY_DATA struct */
 610	__le16 Owner; /* offset to BLOB_DATA struct */
 611	__le16 DefaultDacl; /* offset to BLOB_DATA struct */
 612	__le16 DeviceGroups; /* offset to SID_ARRAY_DATA struct */
 613	__le16 UserClaims; /* offset to BLOB_DATA struct */
 614	__le16 DeviceClaims; /* offset to BLOB_DATA struct */
 615	__u8   TicketInfo[]; /* variable length buf - remoted identity data */
 616} __packed;
 617
 618struct smb2_tree_connect_req_extension {
 619	__le32 TreeConnectContextOffset;
 620	__le16 TreeConnectContextCount;
 621	__u8  Reserved[10];
 622	__u8  PathName[]; /* variable sized array */
 623	/* followed by array of TreeConnectContexts */
 624} __packed;
 625
 626struct smb2_tree_connect_rsp {
 627	struct smb2_sync_hdr sync_hdr;
 628	__le16 StructureSize;	/* Must be 16 */
 629	__u8   ShareType;  /* see below */
 630	__u8   Reserved;
 631	__le32 ShareFlags; /* see below */
 632	__le32 Capabilities; /* see below */
 633	__le32 MaximalAccess;
 634} __packed;
 635
 636/* Possible ShareType values */
 637#define SMB2_SHARE_TYPE_DISK	0x01
 638#define SMB2_SHARE_TYPE_PIPE	0x02
 639#define	SMB2_SHARE_TYPE_PRINT	0x03
 640
 641/*
 642 * Possible ShareFlags - exactly one and only one of the first 4 caching flags
 643 * must be set (any of the remaining, SHI1005, flags may be set individually
 644 * or in combination.
 645 */
 646#define SMB2_SHAREFLAG_MANUAL_CACHING			0x00000000
 647#define SMB2_SHAREFLAG_AUTO_CACHING			0x00000010
 648#define SMB2_SHAREFLAG_VDO_CACHING			0x00000020
 649#define SMB2_SHAREFLAG_NO_CACHING			0x00000030
 650#define SHI1005_FLAGS_DFS				0x00000001
 651#define SHI1005_FLAGS_DFS_ROOT				0x00000002
 652#define SHI1005_FLAGS_RESTRICT_EXCLUSIVE_OPENS		0x00000100
 653#define SHI1005_FLAGS_FORCE_SHARED_DELETE		0x00000200
 654#define SHI1005_FLAGS_ALLOW_NAMESPACE_CACHING		0x00000400
 655#define SHI1005_FLAGS_ACCESS_BASED_DIRECTORY_ENUM	0x00000800
 656#define SHI1005_FLAGS_FORCE_LEVELII_OPLOCK		0x00001000
 657#define SHI1005_FLAGS_ENABLE_HASH_V1			0x00002000
 658#define SHI1005_FLAGS_ENABLE_HASH_V2			0x00004000
 659#define SHI1005_FLAGS_ENCRYPT_DATA			0x00008000
 660#define SMB2_SHAREFLAG_IDENTITY_REMOTING		0x00040000 /* 3.1.1 */
 661#define SMB2_SHAREFLAG_COMPRESS_DATA			0x00100000 /* 3.1.1 */
 662#define SHI1005_FLAGS_ALL				0x0014FF33
 663
 664/* Possible share capabilities */
 665#define SMB2_SHARE_CAP_DFS	cpu_to_le32(0x00000008) /* all dialects */
 666#define SMB2_SHARE_CAP_CONTINUOUS_AVAILABILITY cpu_to_le32(0x00000010) /* 3.0 */
 667#define SMB2_SHARE_CAP_SCALEOUT	cpu_to_le32(0x00000020) /* 3.0 */
 668#define SMB2_SHARE_CAP_CLUSTER	cpu_to_le32(0x00000040) /* 3.0 */
 669#define SMB2_SHARE_CAP_ASYMMETRIC cpu_to_le32(0x00000080) /* 3.02 */
 670#define SMB2_SHARE_CAP_REDIRECT_TO_OWNER cpu_to_le32(0x00000100) /* 3.1.1 */
 671
 672struct smb2_tree_disconnect_req {
 673	struct smb2_sync_hdr sync_hdr;
 674	__le16 StructureSize;	/* Must be 4 */
 675	__le16 Reserved;
 676} __packed;
 677
 678struct smb2_tree_disconnect_rsp {
 679	struct smb2_sync_hdr sync_hdr;
 680	__le16 StructureSize;	/* Must be 4 */
 681	__le16 Reserved;
 682} __packed;
 683
 684/* File Attrubutes */
 685#define FILE_ATTRIBUTE_READONLY			0x00000001
 686#define FILE_ATTRIBUTE_HIDDEN			0x00000002
 687#define FILE_ATTRIBUTE_SYSTEM			0x00000004
 688#define FILE_ATTRIBUTE_DIRECTORY		0x00000010
 689#define FILE_ATTRIBUTE_ARCHIVE			0x00000020
 690#define FILE_ATTRIBUTE_NORMAL			0x00000080
 691#define FILE_ATTRIBUTE_TEMPORARY		0x00000100
 692#define FILE_ATTRIBUTE_SPARSE_FILE		0x00000200
 693#define FILE_ATTRIBUTE_REPARSE_POINT		0x00000400
 694#define FILE_ATTRIBUTE_COMPRESSED		0x00000800
 695#define FILE_ATTRIBUTE_OFFLINE			0x00001000
 696#define FILE_ATTRIBUTE_NOT_CONTENT_INDEXED	0x00002000
 697#define FILE_ATTRIBUTE_ENCRYPTED		0x00004000
 698#define FILE_ATTRIBUTE_INTEGRITY_STREAM		0x00008000
 699#define FILE_ATTRIBUTE_NO_SCRUB_DATA		0x00020000
 700
 701/* Oplock levels */
 702#define SMB2_OPLOCK_LEVEL_NONE		0x00
 703#define SMB2_OPLOCK_LEVEL_II		0x01
 704#define SMB2_OPLOCK_LEVEL_EXCLUSIVE	0x08
 705#define SMB2_OPLOCK_LEVEL_BATCH		0x09
 706#define SMB2_OPLOCK_LEVEL_LEASE		0xFF
 707/* Non-spec internal type */
 708#define SMB2_OPLOCK_LEVEL_NOCHANGE	0x99
 709
 710/* Desired Access Flags */
 711#define FILE_READ_DATA_LE		cpu_to_le32(0x00000001)
 712#define FILE_WRITE_DATA_LE		cpu_to_le32(0x00000002)
 713#define FILE_APPEND_DATA_LE		cpu_to_le32(0x00000004)
 714#define FILE_READ_EA_LE			cpu_to_le32(0x00000008)
 715#define FILE_WRITE_EA_LE		cpu_to_le32(0x00000010)
 716#define FILE_EXECUTE_LE			cpu_to_le32(0x00000020)
 717#define FILE_READ_ATTRIBUTES_LE		cpu_to_le32(0x00000080)
 718#define FILE_WRITE_ATTRIBUTES_LE	cpu_to_le32(0x00000100)
 719#define FILE_DELETE_LE			cpu_to_le32(0x00010000)
 720#define FILE_READ_CONTROL_LE		cpu_to_le32(0x00020000)
 721#define FILE_WRITE_DAC_LE		cpu_to_le32(0x00040000)
 722#define FILE_WRITE_OWNER_LE		cpu_to_le32(0x00080000)
 723#define FILE_SYNCHRONIZE_LE		cpu_to_le32(0x00100000)
 724#define FILE_ACCESS_SYSTEM_SECURITY_LE	cpu_to_le32(0x01000000)
 725#define FILE_MAXIMAL_ACCESS_LE		cpu_to_le32(0x02000000)
 726#define FILE_GENERIC_ALL_LE		cpu_to_le32(0x10000000)
 727#define FILE_GENERIC_EXECUTE_LE		cpu_to_le32(0x20000000)
 728#define FILE_GENERIC_WRITE_LE		cpu_to_le32(0x40000000)
 729#define FILE_GENERIC_READ_LE		cpu_to_le32(0x80000000)
 730
 731/* ShareAccess Flags */
 732#define FILE_SHARE_READ_LE		cpu_to_le32(0x00000001)
 733#define FILE_SHARE_WRITE_LE		cpu_to_le32(0x00000002)
 734#define FILE_SHARE_DELETE_LE		cpu_to_le32(0x00000004)
 735#define FILE_SHARE_ALL_LE		cpu_to_le32(0x00000007)
 736
 737/* CreateDisposition Flags */
 738#define FILE_SUPERSEDE_LE		cpu_to_le32(0x00000000)
 739#define FILE_OPEN_LE			cpu_to_le32(0x00000001)
 740#define FILE_CREATE_LE			cpu_to_le32(0x00000002)
 741#define	FILE_OPEN_IF_LE			cpu_to_le32(0x00000003)
 742#define FILE_OVERWRITE_LE		cpu_to_le32(0x00000004)
 743#define FILE_OVERWRITE_IF_LE		cpu_to_le32(0x00000005)
 744
 745/* CreateOptions Flags */
 746#define FILE_DIRECTORY_FILE_LE		cpu_to_le32(0x00000001)
 747/* same as #define CREATE_NOT_FILE_LE	cpu_to_le32(0x00000001) */
 748#define FILE_WRITE_THROUGH_LE		cpu_to_le32(0x00000002)
 749#define FILE_SEQUENTIAL_ONLY_LE		cpu_to_le32(0x00000004)
 750#define FILE_NO_INTERMEDIATE_BUFFERRING_LE cpu_to_le32(0x00000008)
 751#define FILE_SYNCHRONOUS_IO_ALERT_LE	cpu_to_le32(0x00000010)
 752#define FILE_SYNCHRONOUS_IO_NON_ALERT_LE	cpu_to_le32(0x00000020)
 753#define FILE_NON_DIRECTORY_FILE_LE	cpu_to_le32(0x00000040)
 754#define FILE_COMPLETE_IF_OPLOCKED_LE	cpu_to_le32(0x00000100)
 755#define FILE_NO_EA_KNOWLEDGE_LE		cpu_to_le32(0x00000200)
 756#define FILE_RANDOM_ACCESS_LE		cpu_to_le32(0x00000800)
 757#define FILE_DELETE_ON_CLOSE_LE		cpu_to_le32(0x00001000)
 758#define FILE_OPEN_BY_FILE_ID_LE		cpu_to_le32(0x00002000)
 759#define FILE_OPEN_FOR_BACKUP_INTENT_LE	cpu_to_le32(0x00004000)
 760#define FILE_NO_COMPRESSION_LE		cpu_to_le32(0x00008000)
 761#define FILE_RESERVE_OPFILTER_LE	cpu_to_le32(0x00100000)
 762#define FILE_OPEN_REPARSE_POINT_LE	cpu_to_le32(0x00200000)
 763#define FILE_OPEN_NO_RECALL_LE		cpu_to_le32(0x00400000)
 764#define FILE_OPEN_FOR_FREE_SPACE_QUERY_LE cpu_to_le32(0x00800000)
 765
 766#define FILE_READ_RIGHTS_LE (FILE_READ_DATA_LE | FILE_READ_EA_LE \
 767			| FILE_READ_ATTRIBUTES_LE)
 768#define FILE_WRITE_RIGHTS_LE (FILE_WRITE_DATA_LE | FILE_APPEND_DATA_LE \
 769			| FILE_WRITE_EA_LE | FILE_WRITE_ATTRIBUTES_LE)
 770#define FILE_EXEC_RIGHTS_LE (FILE_EXECUTE_LE)
 771
 772/* Impersonation Levels. See MS-WPO section 9.7 and MSDN-IMPERS */
 773#define IL_ANONYMOUS		cpu_to_le32(0x00000000)
 774#define IL_IDENTIFICATION	cpu_to_le32(0x00000001)
 775#define IL_IMPERSONATION	cpu_to_le32(0x00000002)
 776#define IL_DELEGATE		cpu_to_le32(0x00000003)
 777
 778/* Create Context Values */
 779#define SMB2_CREATE_EA_BUFFER			"ExtA" /* extended attributes */
 780#define SMB2_CREATE_SD_BUFFER			"SecD" /* security descriptor */
 781#define SMB2_CREATE_DURABLE_HANDLE_REQUEST	"DHnQ"
 782#define SMB2_CREATE_DURABLE_HANDLE_RECONNECT	"DHnC"
 783#define SMB2_CREATE_ALLOCATION_SIZE		"AISi"
 784#define SMB2_CREATE_QUERY_MAXIMAL_ACCESS_REQUEST "MxAc"
 785#define SMB2_CREATE_TIMEWARP_REQUEST		"TWrp"
 786#define SMB2_CREATE_QUERY_ON_DISK_ID		"QFid"
 787#define SMB2_CREATE_REQUEST_LEASE		"RqLs"
 788#define SMB2_CREATE_DURABLE_HANDLE_REQUEST_V2	"DH2Q"
 789#define SMB2_CREATE_DURABLE_HANDLE_RECONNECT_V2	"DH2C"
 790#define SMB2_CREATE_APP_INSTANCE_ID	0x45BCA66AEFA7F74A9008FA462E144D74
 791#define SMB2_CREATE_APP_INSTANCE_VERSION 0xB982D0B73B56074FA07B524A8116A010
 792#define SVHDX_OPEN_DEVICE_CONTEX	0x9CCBCF9E04C1E643980E158DA1F6EC83
 793#define SMB2_CREATE_TAG_POSIX		0x93AD25509CB411E7B42383DE968BCD7C
 794
 795/* Flag (SMB3 open response) values */
 796#define SMB2_CREATE_FLAG_REPARSEPOINT 0x01
 797
 798/*
 799 * Maximum number of iovs we need for an open/create request.
 800 * [0] : struct smb2_create_req
 801 * [1] : path
 802 * [2] : lease context
 803 * [3] : durable context
 804 * [4] : posix context
 805 * [5] : time warp context
 806 * [6] : query id context
 807 * [7] : compound padding
 808 */
 809#define SMB2_CREATE_IOV_SIZE 8
 810
 811struct smb2_create_req {
 812	struct smb2_sync_hdr sync_hdr;
 813	__le16 StructureSize;	/* Must be 57 */
 814	__u8   SecurityFlags;
 815	__u8   RequestedOplockLevel;
 816	__le32 ImpersonationLevel;
 817	__le64 SmbCreateFlags;
 818	__le64 Reserved;
 819	__le32 DesiredAccess;
 820	__le32 FileAttributes;
 821	__le32 ShareAccess;
 822	__le32 CreateDisposition;
 823	__le32 CreateOptions;
 824	__le16 NameOffset;
 825	__le16 NameLength;
 826	__le32 CreateContextsOffset;
 827	__le32 CreateContextsLength;
 828	__u8   Buffer[];
 829} __packed;
 830
 831/*
 832 * Maximum size of a SMB2_CREATE response is 64 (smb2 header) +
 833 * 88 (fixed part of create response) + 520 (path) + 208 (contexts) +
 834 * 2 bytes of padding.
 835 */
 836#define MAX_SMB2_CREATE_RESPONSE_SIZE 880
 837
 838struct smb2_create_rsp {
 839	struct smb2_sync_hdr sync_hdr;
 840	__le16 StructureSize;	/* Must be 89 */
 841	__u8   OplockLevel;
 842	__u8   Flag;  /* 0x01 if reparse point */
 843	__le32 CreateAction;
 844	__le64 CreationTime;
 845	__le64 LastAccessTime;
 846	__le64 LastWriteTime;
 847	__le64 ChangeTime;
 848	__le64 AllocationSize;
 849	__le64 EndofFile;
 850	__le32 FileAttributes;
 851	__le32 Reserved2;
 852	__u64  PersistentFileId; /* opaque endianness */
 853	__u64  VolatileFileId; /* opaque endianness */
 854	__le32 CreateContextsOffset;
 855	__le32 CreateContextsLength;
 856	__u8   Buffer[1];
 857} __packed;
 858
 859struct create_context {
 860	__le32 Next;
 861	__le16 NameOffset;
 862	__le16 NameLength;
 863	__le16 Reserved;
 864	__le16 DataOffset;
 865	__le32 DataLength;
 866	__u8 Buffer[];
 867} __packed;
 868
 869#define SMB2_LEASE_READ_CACHING_HE	0x01
 870#define SMB2_LEASE_HANDLE_CACHING_HE	0x02
 871#define SMB2_LEASE_WRITE_CACHING_HE	0x04
 872
 873#define SMB2_LEASE_NONE			cpu_to_le32(0x00)
 874#define SMB2_LEASE_READ_CACHING		cpu_to_le32(0x01)
 875#define SMB2_LEASE_HANDLE_CACHING	cpu_to_le32(0x02)
 876#define SMB2_LEASE_WRITE_CACHING	cpu_to_le32(0x04)
 877
 878#define SMB2_LEASE_FLAG_BREAK_IN_PROGRESS cpu_to_le32(0x00000002)
 879#define SMB2_LEASE_FLAG_PARENT_LEASE_KEY_SET cpu_to_le32(0x00000004)
 880
 881#define SMB2_LEASE_KEY_SIZE 16
 882
 883struct lease_context {
 884	u8 LeaseKey[SMB2_LEASE_KEY_SIZE];
 885	__le32 LeaseState;
 886	__le32 LeaseFlags;
 887	__le64 LeaseDuration;
 888} __packed;
 889
 890struct lease_context_v2 {
 891	u8 LeaseKey[SMB2_LEASE_KEY_SIZE];
 892	__le32 LeaseState;
 893	__le32 LeaseFlags;
 894	__le64 LeaseDuration;
 895	__le64 ParentLeaseKeyLow;
 896	__le64 ParentLeaseKeyHigh;
 897	__le16 Epoch;
 898	__le16 Reserved;
 899} __packed;
 900
 901struct create_lease {
 902	struct create_context ccontext;
 903	__u8   Name[8];
 904	struct lease_context lcontext;
 905} __packed;
 906
 907struct create_lease_v2 {
 908	struct create_context ccontext;
 909	__u8   Name[8];
 910	struct lease_context_v2 lcontext;
 911	__u8   Pad[4];
 912} __packed;
 913
 914struct create_durable {
 915	struct create_context ccontext;
 916	__u8   Name[8];
 917	union {
 918		__u8  Reserved[16];
 919		struct {
 920			__u64 PersistentFileId;
 921			__u64 VolatileFileId;
 922		} Fid;
 923	} Data;
 924} __packed;
 925
 926struct create_posix {
 927	struct create_context ccontext;
 928	__u8	Name[16];
 929	__le32  Mode;
 930	__u32	Reserved;
 931} __packed;
 932
 933/* See MS-SMB2 2.2.13.2.11 */
 934/* Flags */
 935#define SMB2_DHANDLE_FLAG_PERSISTENT	0x00000002
 936struct durable_context_v2 {
 937	__le32 Timeout;
 938	__le32 Flags;
 939	__u64 Reserved;
 940	__u8 CreateGuid[16];
 941} __packed;
 942
 943struct create_durable_v2 {
 944	struct create_context ccontext;
 945	__u8   Name[8];
 946	struct durable_context_v2 dcontext;
 947} __packed;
 948
 949/* See MS-SMB2 2.2.13.2.12 */
 950struct durable_reconnect_context_v2 {
 951	struct {
 952		__u64 PersistentFileId;
 953		__u64 VolatileFileId;
 954	} Fid;
 955	__u8 CreateGuid[16];
 956	__le32 Flags; /* see above DHANDLE_FLAG_PERSISTENT */
 957} __packed;
 958
 959/* See MS-SMB2 2.2.14.2.9 */
 960struct create_on_disk_id {
 961	struct create_context ccontext;
 962	__u8   Name[8];
 963	__le64 DiskFileId;
 964	__le64 VolumeId;
 965	__u32  Reserved[4];
 966} __packed;
 967
 968/* See MS-SMB2 2.2.14.2.12 */
 969struct durable_reconnect_context_v2_rsp {
 970	__le32 Timeout;
 971	__le32 Flags; /* see above DHANDLE_FLAG_PERSISTENT */
 972} __packed;
 973
 974struct create_durable_handle_reconnect_v2 {
 975	struct create_context ccontext;
 976	__u8   Name[8];
 977	struct durable_reconnect_context_v2 dcontext;
 978	__u8   Pad[4];
 979} __packed;
 980
 981/* See MS-SMB2 2.2.13.2.5 */
 982struct crt_twarp_ctxt {
 983	struct create_context ccontext;
 984	__u8	Name[8];
 985	__le64	Timestamp;
 986
 987} __packed;
 988
 989/* See MS-SMB2 2.2.13.2.9 */
 990struct crt_query_id_ctxt {
 991	struct create_context ccontext;
 992	__u8	Name[8];
 993} __packed;
 994
 995struct crt_sd_ctxt {
 996	struct create_context ccontext;
 997	__u8	Name[8];
 998	struct smb3_sd sd;
 999} __packed;
1000
1001
1002#define COPY_CHUNK_RES_KEY_SIZE	24
1003struct resume_key_req {
1004	char ResumeKey[COPY_CHUNK_RES_KEY_SIZE];
1005	__le32	ContextLength;	/* MBZ */
1006	char	Context[];	/* ignored, Windows sets to 4 bytes of zero */
1007} __packed;
1008
1009/* this goes in the ioctl buffer when doing a copychunk request */
1010struct copychunk_ioctl {
1011	char SourceKey[COPY_CHUNK_RES_KEY_SIZE];
1012	__le32 ChunkCount; /* we are only sending 1 */
1013	__le32 Reserved;
1014	/* array will only be one chunk long for us */
1015	__le64 SourceOffset;
1016	__le64 TargetOffset;
1017	__le32 Length; /* how many bytes to copy */
1018	__u32 Reserved2;
1019} __packed;
1020
1021/* this goes in the ioctl buffer when doing FSCTL_SET_ZERO_DATA */
1022struct file_zero_data_information {
1023	__le64	FileOffset;
1024	__le64	BeyondFinalZero;
1025} __packed;
1026
1027struct copychunk_ioctl_rsp {
1028	__le32 ChunksWritten;
1029	__le32 ChunkBytesWritten;
1030	__le32 TotalBytesWritten;
1031} __packed;
1032
1033/* See MS-FSCC 2.3.29 and 2.3.30 */
1034struct get_retrieval_pointer_count_req {
1035	__le64 StartingVcn; /* virtual cluster number (signed) */
1036} __packed;
1037
1038struct get_retrieval_pointer_count_rsp {
1039	__le32 ExtentCount;
1040} __packed;
1041
1042/*
1043 * See MS-FSCC 2.3.33 and 2.3.34
1044 * request is the same as get_retrieval_point_count_req struct above
1045 */
1046struct smb3_extents {
1047	__le64 NextVcn;
1048	__le64 Lcn; /* logical cluster number */
1049} __packed;
1050
1051struct get_retrieval_pointers_refcount_rsp {
1052	__le32 ExtentCount;
1053	__u32  Reserved;
1054	__le64 StartingVcn;
1055	struct smb3_extents extents[];
1056} __packed;
1057
1058struct fsctl_set_integrity_information_req {
1059	__le16	ChecksumAlgorithm;
1060	__le16	Reserved;
1061	__le32	Flags;
1062} __packed;
1063
1064struct fsctl_get_integrity_information_rsp {
1065	__le16	ChecksumAlgorithm;
1066	__le16	Reserved;
1067	__le32	Flags;
1068	__le32	ChecksumChunkSizeInBytes;
1069	__le32	ClusterSizeInBytes;
1070} __packed;
1071
1072struct file_allocated_range_buffer {
1073	__le64	file_offset;
1074	__le64	length;
1075} __packed;
1076
1077/* Integrity ChecksumAlgorithm choices for above */
1078#define	CHECKSUM_TYPE_NONE	0x0000
1079#define	CHECKSUM_TYPE_CRC64	0x0002
1080#define CHECKSUM_TYPE_UNCHANGED	0xFFFF	/* set only */
1081
1082/* Integrity flags for above */
1083#define FSCTL_INTEGRITY_FLAG_CHECKSUM_ENFORCEMENT_OFF	0x00000001
1084
1085/* Reparse structures - see MS-FSCC 2.1.2 */
1086
1087/* struct fsctl_reparse_info_req is empty, only response structs (see below) */
1088
1089struct reparse_data_buffer {
1090	__le32	ReparseTag;
1091	__le16	ReparseDataLength;
1092	__u16	Reserved;
1093	__u8	DataBuffer[]; /* Variable Length */
1094} __packed;
1095
1096struct reparse_guid_data_buffer {
1097	__le32	ReparseTag;
1098	__le16	ReparseDataLength;
1099	__u16	Reserved;
1100	__u8	ReparseGuid[16];
1101	__u8	DataBuffer[]; /* Variable Length */
1102} __packed;
1103
1104struct reparse_mount_point_data_buffer {
1105	__le32	ReparseTag;
1106	__le16	ReparseDataLength;
1107	__u16	Reserved;
1108	__le16	SubstituteNameOffset;
1109	__le16	SubstituteNameLength;
1110	__le16	PrintNameOffset;
1111	__le16	PrintNameLength;
1112	__u8	PathBuffer[]; /* Variable Length */
1113} __packed;
1114
1115#define SYMLINK_FLAG_RELATIVE 0x00000001
1116
1117struct reparse_symlink_data_buffer {
1118	__le32	ReparseTag;
1119	__le16	ReparseDataLength;
1120	__u16	Reserved;
1121	__le16	SubstituteNameOffset;
1122	__le16	SubstituteNameLength;
1123	__le16	PrintNameOffset;
1124	__le16	PrintNameLength;
1125	__le32	Flags;
1126	__u8	PathBuffer[]; /* Variable Length */
1127} __packed;
1128
1129/* See MS-FSCC 2.1.2.6 and cifspdu.h for struct reparse_posix_data */
1130
1131
1132/* See MS-DFSC 2.2.2 */
1133struct fsctl_get_dfs_referral_req {
1134	__le16 MaxReferralLevel;
1135	__u8 RequestFileName[];
1136} __packed;
1137
1138/* DFS response is struct get_dfs_refer_rsp */
1139
1140/* See MS-SMB2 2.2.31.3 */
1141struct network_resiliency_req {
1142	__le32 Timeout;
1143	__le32 Reserved;
1144} __packed;
1145/* There is no buffer for the response ie no struct network_resiliency_rsp */
1146
1147
1148struct validate_negotiate_info_req {
1149	__le32 Capabilities;
1150	__u8   Guid[SMB2_CLIENT_GUID_SIZE];
1151	__le16 SecurityMode;
1152	__le16 DialectCount;
1153	__le16 Dialects[4]; /* BB expand this if autonegotiate > 4 dialects */
1154} __packed;
1155
1156struct validate_negotiate_info_rsp {
1157	__le32 Capabilities;
1158	__u8   Guid[SMB2_CLIENT_GUID_SIZE];
1159	__le16 SecurityMode;
1160	__le16 Dialect; /* Dialect in use for the connection */
1161} __packed;
1162
1163#define RSS_CAPABLE	cpu_to_le32(0x00000001)
1164#define RDMA_CAPABLE	cpu_to_le32(0x00000002)
1165
1166#define INTERNETWORK	cpu_to_le16(0x0002)
1167#define INTERNETWORKV6	cpu_to_le16(0x0017)
1168
1169struct network_interface_info_ioctl_rsp {
1170	__le32 Next; /* next interface. zero if this is last one */
1171	__le32 IfIndex;
1172	__le32 Capability; /* RSS or RDMA Capable */
1173	__le32 Reserved;
1174	__le64 LinkSpeed;
1175	__le16 Family;
1176	__u8 Buffer[126];
1177} __packed;
1178
1179struct iface_info_ipv4 {
1180	__be16 Port;
1181	__be32 IPv4Address;
1182	__be64 Reserved;
1183} __packed;
1184
1185struct iface_info_ipv6 {
1186	__be16 Port;
1187	__be32 FlowInfo;
1188	__u8   IPv6Address[16];
1189	__be32 ScopeId;
1190} __packed;
1191
1192#define NO_FILE_ID 0xFFFFFFFFFFFFFFFFULL /* general ioctls to srv not to file */
1193
1194struct compress_ioctl {
1195	__le16 CompressionState; /* See cifspdu.h for possible flag values */
1196} __packed;
1197
1198struct duplicate_extents_to_file {
1199	__u64 PersistentFileHandle; /* source file handle, opaque endianness */
1200	__u64 VolatileFileHandle;
1201	__le64 SourceFileOffset;
1202	__le64 TargetFileOffset;
1203	__le64 ByteCount;  /* Bytes to be copied */
1204} __packed;
1205
1206/*
1207 * Maximum number of iovs we need for an ioctl request.
1208 * [0] : struct smb2_ioctl_req
1209 * [1] : in_data
1210 */
1211#define SMB2_IOCTL_IOV_SIZE 2
1212
1213struct smb2_ioctl_req {
1214	struct smb2_sync_hdr sync_hdr;
1215	__le16 StructureSize;	/* Must be 57 */
1216	__u16 Reserved;
1217	__le32 CtlCode;
1218	__u64  PersistentFileId; /* opaque endianness */
1219	__u64  VolatileFileId; /* opaque endianness */
1220	__le32 InputOffset;
1221	__le32 InputCount;
1222	__le32 MaxInputResponse;
1223	__le32 OutputOffset;
1224	__le32 OutputCount;
1225	__le32 MaxOutputResponse;
1226	__le32 Flags;
1227	__u32  Reserved2;
1228	__u8   Buffer[];
1229} __packed;
1230
1231struct smb2_ioctl_rsp {
1232	struct smb2_sync_hdr sync_hdr;
1233	__le16 StructureSize;	/* Must be 57 */
1234	__u16 Reserved;
1235	__le32 CtlCode;
1236	__u64  PersistentFileId; /* opaque endianness */
1237	__u64  VolatileFileId; /* opaque endianness */
1238	__le32 InputOffset;
1239	__le32 InputCount;
1240	__le32 OutputOffset;
1241	__le32 OutputCount;
1242	__le32 Flags;
1243	__u32  Reserved2;
1244	/* char * buffer[] */
1245} __packed;
1246
1247/* Currently defined values for close flags */
1248#define SMB2_CLOSE_FLAG_POSTQUERY_ATTRIB	cpu_to_le16(0x0001)
1249struct smb2_close_req {
1250	struct smb2_sync_hdr sync_hdr;
1251	__le16 StructureSize;	/* Must be 24 */
1252	__le16 Flags;
1253	__le32 Reserved;
1254	__u64  PersistentFileId; /* opaque endianness */
1255	__u64  VolatileFileId; /* opaque endianness */
1256} __packed;
1257
1258/*
1259 * Maximum size of a SMB2_CLOSE response is 64 (smb2 header) + 60 (data)
1260 */
1261#define MAX_SMB2_CLOSE_RESPONSE_SIZE 124
1262
1263struct smb2_close_rsp {
1264	struct smb2_sync_hdr sync_hdr;
1265	__le16 StructureSize; /* 60 */
1266	__le16 Flags;
1267	__le32 Reserved;
1268	__le64 CreationTime;
1269	__le64 LastAccessTime;
1270	__le64 LastWriteTime;
1271	__le64 ChangeTime;
1272	__le64 AllocationSize;	/* Beginning of FILE_STANDARD_INFO equivalent */
1273	__le64 EndOfFile;
1274	__le32 Attributes;
1275} __packed;
1276
1277struct smb2_flush_req {
1278	struct smb2_sync_hdr sync_hdr;
1279	__le16 StructureSize;	/* Must be 24 */
1280	__le16 Reserved1;
1281	__le32 Reserved2;
1282	__u64  PersistentFileId; /* opaque endianness */
1283	__u64  VolatileFileId; /* opaque endianness */
1284} __packed;
1285
1286struct smb2_flush_rsp {
1287	struct smb2_sync_hdr sync_hdr;
1288	__le16 StructureSize;
1289	__le16 Reserved;
1290} __packed;
1291
1292/* For read request Flags field below, following flag is defined for SMB3.02 */
1293#define SMB2_READFLAG_READ_UNBUFFERED	0x01
1294#define SMB2_READFLAG_REQUEST_COMPRESSED 0x02 /* See MS-SMB2 2.2.19 */
1295
1296/* Channel field for read and write: exactly one of following flags can be set*/
1297#define SMB2_CHANNEL_NONE	cpu_to_le32(0x00000000)
1298#define SMB2_CHANNEL_RDMA_V1	cpu_to_le32(0x00000001) /* SMB3 or later */
1299#define SMB2_CHANNEL_RDMA_V1_INVALIDATE cpu_to_le32(0x00000002) /* >= SMB3.02 */
1300#define SMB2_CHANNEL_RDMA_TRANSFORM cpu_to_le32(0x00000003) /* >= SMB3.02, only used on write */
1301
1302/* SMB2 read request without RFC1001 length at the beginning */
1303struct smb2_read_plain_req {
1304	struct smb2_sync_hdr sync_hdr;
1305	__le16 StructureSize; /* Must be 49 */
1306	__u8   Padding; /* offset from start of SMB2 header to place read */
1307	__u8   Flags; /* MBZ unless SMB3.02 or later */
1308	__le32 Length;
1309	__le64 Offset;
1310	__u64  PersistentFileId; /* opaque endianness */
1311	__u64  VolatileFileId; /* opaque endianness */
1312	__le32 MinimumCount;
1313	__le32 Channel; /* MBZ except for SMB3 or later */
1314	__le32 RemainingBytes;
1315	__le16 ReadChannelInfoOffset;
1316	__le16 ReadChannelInfoLength;
1317	__u8   Buffer[1];
1318} __packed;
1319
1320/* Read flags */
1321#define SMB2_READFLAG_RESPONSE_NONE	0x00000000
1322#define SMB2_READFLAG_RESPONSE_RDMA_TRANSFORM	0x00000001
1323
1324struct smb2_read_rsp {
1325	struct smb2_sync_hdr sync_hdr;
1326	__le16 StructureSize; /* Must be 17 */
1327	__u8   DataOffset;
1328	__u8   Reserved;
1329	__le32 DataLength;
1330	__le32 DataRemaining;
1331	__u32  Flags;
1332	__u8   Buffer[1];
1333} __packed;
1334
1335/* For write request Flags field below the following flags are defined: */
1336#define SMB2_WRITEFLAG_WRITE_THROUGH	0x00000001	/* SMB2.1 or later */
1337#define SMB2_WRITEFLAG_WRITE_UNBUFFERED	0x00000002	/* SMB3.02 or later */
1338
1339struct smb2_write_req {
1340	struct smb2_sync_hdr sync_hdr;
1341	__le16 StructureSize; /* Must be 49 */
1342	__le16 DataOffset; /* offset from start of SMB2 header to write data */
1343	__le32 Length;
1344	__le64 Offset;
1345	__u64  PersistentFileId; /* opaque endianness */
1346	__u64  VolatileFileId; /* opaque endianness */
1347	__le32 Channel; /* MBZ unless SMB3.02 or later */
1348	__le32 RemainingBytes;
1349	__le16 WriteChannelInfoOffset;
1350	__le16 WriteChannelInfoLength;
1351	__le32 Flags;
1352	__u8   Buffer[1];
1353} __packed;
1354
1355struct smb2_write_rsp {
1356	struct smb2_sync_hdr sync_hdr;
1357	__le16 StructureSize; /* Must be 17 */
1358	__u8   DataOffset;
1359	__u8   Reserved;
1360	__le32 DataLength;
1361	__le32 DataRemaining;
1362	__u32  Reserved2;
1363	__u8   Buffer[1];
1364} __packed;
1365
1366/* notify flags */
1367#define SMB2_WATCH_TREE			0x0001
1368
1369/* notify completion filter flags. See MS-FSCC 2.6 and MS-SMB2 2.2.35 */
1370#define FILE_NOTIFY_CHANGE_FILE_NAME		0x00000001
1371#define FILE_NOTIFY_CHANGE_DIR_NAME		0x00000002
1372#define FILE_NOTIFY_CHANGE_ATTRIBUTES		0x00000004
1373#define FILE_NOTIFY_CHANGE_SIZE			0x00000008
1374#define FILE_NOTIFY_CHANGE_LAST_WRITE		0x00000010
1375#define FILE_NOTIFY_CHANGE_LAST_ACCESS		0x00000020
1376#define FILE_NOTIFY_CHANGE_CREATION		0x00000040
1377#define FILE_NOTIFY_CHANGE_EA			0x00000080
1378#define FILE_NOTIFY_CHANGE_SECURITY		0x00000100
1379#define FILE_NOTIFY_CHANGE_STREAM_NAME		0x00000200
1380#define FILE_NOTIFY_CHANGE_STREAM_SIZE		0x00000400
1381#define FILE_NOTIFY_CHANGE_STREAM_WRITE		0x00000800
1382
1383struct smb2_change_notify_req {
1384	struct smb2_sync_hdr sync_hdr;
1385	__le16	StructureSize;
1386	__le16	Flags;
1387	__le32	OutputBufferLength;
1388	__u64	PersistentFileId; /* opaque endianness */
1389	__u64	VolatileFileId; /* opaque endianness */
1390	__le32	CompletionFilter;
1391	__u32	Reserved;
1392} __packed;
1393
1394struct smb2_change_notify_rsp {
1395	struct smb2_sync_hdr sync_hdr;
1396	__le16	StructureSize;  /* Must be 9 */
1397	__le16	OutputBufferOffset;
1398	__le32	OutputBufferLength;
1399	__u8	Buffer[1]; /* array of file notify structs */
1400} __packed;
1401
1402#define SMB2_LOCKFLAG_SHARED_LOCK	0x0001
1403#define SMB2_LOCKFLAG_EXCLUSIVE_LOCK	0x0002
1404#define SMB2_LOCKFLAG_UNLOCK		0x0004
1405#define SMB2_LOCKFLAG_FAIL_IMMEDIATELY	0x0010
1406
1407struct smb2_lock_element {
1408	__le64 Offset;
1409	__le64 Length;
1410	__le32 Flags;
1411	__le32 Reserved;
1412} __packed;
1413
1414struct smb2_lock_req {
1415	struct smb2_sync_hdr sync_hdr;
1416	__le16 StructureSize; /* Must be 48 */
1417	__le16 LockCount;
1418	/*
1419	 * The least significant four bits are the index, the other 28 bits are
1420	 * the lock sequence number (0 to 64). See MS-SMB2 2.2.26
1421	 */
1422	__le32 LockSequenceNumber;
1423	__u64  PersistentFileId; /* opaque endianness */
1424	__u64  VolatileFileId; /* opaque endianness */
1425	/* Followed by at least one */
1426	struct smb2_lock_element locks[1];
1427} __packed;
1428
1429struct smb2_lock_rsp {
1430	struct smb2_sync_hdr sync_hdr;
1431	__le16 StructureSize; /* Must be 4 */
1432	__le16 Reserved;
1433} __packed;
1434
1435struct smb2_echo_req {
1436	struct smb2_sync_hdr sync_hdr;
1437	__le16 StructureSize;	/* Must be 4 */
1438	__u16  Reserved;
1439} __packed;
1440
1441struct smb2_echo_rsp {
1442	struct smb2_sync_hdr sync_hdr;
1443	__le16 StructureSize;	/* Must be 4 */
1444	__u16  Reserved;
1445} __packed;
1446
1447/* search (query_directory) Flags field */
1448#define SMB2_RESTART_SCANS		0x01
1449#define SMB2_RETURN_SINGLE_ENTRY	0x02
1450#define SMB2_INDEX_SPECIFIED		0x04
1451#define SMB2_REOPEN			0x10
1452
1453#define SMB2_QUERY_DIRECTORY_IOV_SIZE 2
1454
1455/*
1456 * Valid FileInformation classes.
1457 *
1458 * Note that these are a subset of the (file) QUERY_INFO levels defined
1459 * later in this file (but since QUERY_DIRECTORY uses equivalent numbers
1460 * we do not redefine them here)
1461 *
1462 * FileDirectoryInfomation		0x01
1463 * FileFullDirectoryInformation		0x02
1464 * FileIdFullDirectoryInformation	0x26
1465 * FileBothDirectoryInformation		0x03
1466 * FileIdBothDirectoryInformation	0x25
1467 * FileNamesInformation			0x0C
1468 * FileIdExtdDirectoryInformation	0x3C
1469 */
1470
1471struct smb2_query_directory_req {
1472	struct smb2_sync_hdr sync_hdr;
1473	__le16 StructureSize; /* Must be 33 */
1474	__u8   FileInformationClass;
1475	__u8   Flags;
1476	__le32 FileIndex;
1477	__u64  PersistentFileId; /* opaque endianness */
1478	__u64  VolatileFileId; /* opaque endianness */
1479	__le16 FileNameOffset;
1480	__le16 FileNameLength;
1481	__le32 OutputBufferLength;
1482	__u8   Buffer[1];
1483} __packed;
1484
1485struct smb2_query_directory_rsp {
1486	struct smb2_sync_hdr sync_hdr;
1487	__le16 StructureSize; /* Must be 9 */
1488	__le16 OutputBufferOffset;
1489	__le32 OutputBufferLength;
1490	__u8   Buffer[1];
1491} __packed;
1492
1493/* Possible InfoType values */
1494#define SMB2_O_INFO_FILE	0x01
1495#define SMB2_O_INFO_FILESYSTEM	0x02
1496#define SMB2_O_INFO_SECURITY	0x03
1497#define SMB2_O_INFO_QUOTA	0x04
1498
1499/* Security info type additionalinfo flags. See MS-SMB2 (2.2.37) or MS-DTYP */
1500#define OWNER_SECINFO   0x00000001
1501#define GROUP_SECINFO   0x00000002
1502#define DACL_SECINFO   0x00000004
1503#define SACL_SECINFO   0x00000008
1504#define LABEL_SECINFO   0x00000010
1505#define ATTRIBUTE_SECINFO   0x00000020
1506#define SCOPE_SECINFO   0x00000040
1507#define BACKUP_SECINFO   0x00010000
1508#define UNPROTECTED_SACL_SECINFO   0x10000000
1509#define UNPROTECTED_DACL_SECINFO   0x20000000
1510#define PROTECTED_SACL_SECINFO   0x40000000
1511#define PROTECTED_DACL_SECINFO   0x80000000
1512
1513/* Flags used for FileFullEAinfo */
1514#define SL_RESTART_SCAN		0x00000001
1515#define SL_RETURN_SINGLE_ENTRY	0x00000002
1516#define SL_INDEX_SPECIFIED	0x00000004
1517
1518struct smb2_query_info_req {
1519	struct smb2_sync_hdr sync_hdr;
1520	__le16 StructureSize; /* Must be 41 */
1521	__u8   InfoType;
1522	__u8   FileInfoClass;
1523	__le32 OutputBufferLength;
1524	__le16 InputBufferOffset;
1525	__u16  Reserved;
1526	__le32 InputBufferLength;
1527	__le32 AdditionalInformation;
1528	__le32 Flags;
1529	__u64  PersistentFileId; /* opaque endianness */
1530	__u64  VolatileFileId; /* opaque endianness */
1531	__u8   Buffer[1];
1532} __packed;
1533
1534struct smb2_query_info_rsp {
1535	struct smb2_sync_hdr sync_hdr;
1536	__le16 StructureSize; /* Must be 9 */
1537	__le16 OutputBufferOffset;
1538	__le32 OutputBufferLength;
1539	__u8   Buffer[1];
1540} __packed;
1541
1542/*
1543 * Maximum number of iovs we need for a set-info request.
1544 * The largest one is rename/hardlink
1545 * [0] : struct smb2_set_info_req + smb2_file_[rename|link]_info
1546 * [1] : path
1547 * [2] : compound padding
1548 */
1549#define SMB2_SET_INFO_IOV_SIZE 3
1550
1551struct smb2_set_info_req {
1552	struct smb2_sync_hdr sync_hdr;
1553	__le16 StructureSize; /* Must be 33 */
1554	__u8   InfoType;
1555	__u8   FileInfoClass;
1556	__le32 BufferLength;
1557	__le16 BufferOffset;
1558	__u16  Reserved;
1559	__le32 AdditionalInformation;
1560	__u64  PersistentFileId; /* opaque endianness */
1561	__u64  VolatileFileId; /* opaque endianness */
1562	__u8   Buffer[1];
1563} __packed;
1564
1565struct smb2_set_info_rsp {
1566	struct smb2_sync_hdr sync_hdr;
1567	__le16 StructureSize; /* Must be 2 */
1568} __packed;
1569
1570struct smb2_oplock_break {
1571	struct smb2_sync_hdr sync_hdr;
1572	__le16 StructureSize; /* Must be 24 */
1573	__u8   OplockLevel;
1574	__u8   Reserved;
1575	__le32 Reserved2;
1576	__u64  PersistentFid;
1577	__u64  VolatileFid;
1578} __packed;
1579
1580#define SMB2_NOTIFY_BREAK_LEASE_FLAG_ACK_REQUIRED cpu_to_le32(0x01)
1581
1582struct smb2_lease_break {
1583	struct smb2_sync_hdr sync_hdr;
1584	__le16 StructureSize; /* Must be 44 */
1585	__le16 Epoch;
1586	__le32 Flags;
1587	__u8   LeaseKey[16];
1588	__le32 CurrentLeaseState;
1589	__le32 NewLeaseState;
1590	__le32 BreakReason;
1591	__le32 AccessMaskHint;
1592	__le32 ShareMaskHint;
1593} __packed;
1594
1595struct smb2_lease_ack {
1596	struct smb2_sync_hdr sync_hdr;
1597	__le16 StructureSize; /* Must be 36 */
1598	__le16 Reserved;
1599	__le32 Flags;
1600	__u8   LeaseKey[16];
1601	__le32 LeaseState;
1602	__le64 LeaseDuration;
1603} __packed;
1604
1605/*
1606 *	PDU infolevel structure definitions
1607 *	BB consider moving to a different header
1608 */
1609
1610/* File System Information Classes */
1611#define FS_VOLUME_INFORMATION		1 /* Query */
1612#define FS_LABEL_INFORMATION		2 /* Local only */
1613#define FS_SIZE_INFORMATION		3 /* Query */
1614#define FS_DEVICE_INFORMATION		4 /* Query */
1615#define FS_ATTRIBUTE_INFORMATION	5 /* Query */
1616#define FS_CONTROL_INFORMATION		6 /* Query, Set */
1617#define FS_FULL_SIZE_INFORMATION	7 /* Query */
1618#define FS_OBJECT_ID_INFORMATION	8 /* Query, Set */
1619#define FS_DRIVER_PATH_INFORMATION	9 /* Local only */
1620#define FS_VOLUME_FLAGS_INFORMATION	10 /* Local only */
1621#define FS_SECTOR_SIZE_INFORMATION	11 /* SMB3 or later. Query */
1622#define FS_POSIX_INFORMATION		100 /* SMB3.1.1 POSIX. Query */
1623
1624struct smb2_fs_full_size_info {
1625	__le64 TotalAllocationUnits;
1626	__le64 CallerAvailableAllocationUnits;
1627	__le64 ActualAvailableAllocationUnits;
1628	__le32 SectorsPerAllocationUnit;
1629	__le32 BytesPerSector;
1630} __packed;
1631
1632#define SSINFO_FLAGS_ALIGNED_DEVICE		0x00000001
1633#define SSINFO_FLAGS_PARTITION_ALIGNED_ON_DEVICE 0x00000002
1634#define SSINFO_FLAGS_NO_SEEK_PENALTY		0x00000004
1635#define SSINFO_FLAGS_TRIM_ENABLED		0x00000008
1636
1637/* sector size info struct */
1638struct smb3_fs_ss_info {
1639	__le32 LogicalBytesPerSector;
1640	__le32 PhysicalBytesPerSectorForAtomicity;
1641	__le32 PhysicalBytesPerSectorForPerf;
1642	__le32 FileSystemEffectivePhysicalBytesPerSectorForAtomicity;
1643	__le32 Flags;
1644	__le32 ByteOffsetForSectorAlignment;
1645	__le32 ByteOffsetForPartitionAlignment;
1646} __packed;
1647
1648/* volume info struct - see MS-FSCC 2.5.9 */
1649#define MAX_VOL_LABEL_LEN	32
1650struct smb3_fs_vol_info {
1651	__le64	VolumeCreationTime;
1652	__u32	VolumeSerialNumber;
1653	__le32	VolumeLabelLength; /* includes trailing null */
1654	__u8	SupportsObjects; /* True if eg like NTFS, supports objects */
1655	__u8	Reserved;
1656	__u8	VolumeLabel[]; /* variable len */
1657} __packed;
1658
1659/* partial list of QUERY INFO levels */
1660#define FILE_DIRECTORY_INFORMATION	1
1661#define FILE_FULL_DIRECTORY_INFORMATION 2
1662#define FILE_BOTH_DIRECTORY_INFORMATION 3
1663#define FILE_BASIC_INFORMATION		4
1664#define FILE_STANDARD_INFORMATION	5
1665#define FILE_INTERNAL_INFORMATION	6
1666#define FILE_EA_INFORMATION	        7
1667#define FILE_ACCESS_INFORMATION		8
1668#define FILE_NAME_INFORMATION		9
1669#define FILE_RENAME_INFORMATION		10
1670#define FILE_LINK_INFORMATION		11
1671#define FILE_NAMES_INFORMATION		12
1672#define FILE_DISPOSITION_INFORMATION	13
1673#define FILE_POSITION_INFORMATION	14
1674#define FILE_FULL_EA_INFORMATION	15
1675#define FILE_MODE_INFORMATION		16
1676#define FILE_ALIGNMENT_INFORMATION	17
1677#define FILE_ALL_INFORMATION		18
1678#define FILE_ALLOCATION_INFORMATION	19
1679#define FILE_END_OF_FILE_INFORMATION	20
1680#define FILE_ALTERNATE_NAME_INFORMATION 21
1681#define FILE_STREAM_INFORMATION		22
1682#define FILE_PIPE_INFORMATION		23
1683#define FILE_PIPE_LOCAL_INFORMATION	24
1684#define FILE_PIPE_REMOTE_INFORMATION	25
1685#define FILE_MAILSLOT_QUERY_INFORMATION 26
1686#define FILE_MAILSLOT_SET_INFORMATION	27
1687#define FILE_COMPRESSION_INFORMATION	28
1688#define FILE_OBJECT_ID_INFORMATION	29
1689/* Number 30 not defined in documents */
1690#define FILE_MOVE_CLUSTER_INFORMATION	31
1691#define FILE_QUOTA_INFORMATION		32
1692#define FILE_REPARSE_POINT_INFORMATION	33
1693#define FILE_NETWORK_OPEN_INFORMATION	34
1694#define FILE_ATTRIBUTE_TAG_INFORMATION	35
1695#define FILE_TRACKING_INFORMATION	36
1696#define FILEID_BOTH_DIRECTORY_INFORMATION 37
1697#define FILEID_FULL_DIRECTORY_INFORMATION 38
1698#define FILE_VALID_DATA_LENGTH_INFORMATION 39
1699#define FILE_SHORT_NAME_INFORMATION	40
1700#define FILE_SFIO_RESERVE_INFORMATION	44
1701#define FILE_SFIO_VOLUME_INFORMATION	45
1702#define FILE_HARD_LINK_INFORMATION	46
1703#define FILE_NORMALIZED_NAME_INFORMATION 48
1704#define FILEID_GLOBAL_TX_DIRECTORY_INFORMATION 50
1705#define FILE_STANDARD_LINK_INFORMATION	54
1706#define FILE_ID_INFORMATION		59
1707#define FILE_ID_EXTD_DIRECTORY_INFORMATION 60
1708
1709struct smb2_file_internal_info {
1710	__le64 IndexNumber;
1711} __packed; /* level 6 Query */
1712
1713struct smb2_file_rename_info { /* encoding of request for level 10 */
1714	__u8   ReplaceIfExists; /* 1 = replace existing target with new */
1715				/* 0 = fail if target already exists */
1716	__u8   Reserved[7];
1717	__u64  RootDirectory;  /* MBZ for network operations (why says spec?) */
1718	__le32 FileNameLength;
1719	char   FileName[];     /* New name to be assigned */
1720	/* padding - overall struct size must be >= 24 so filename + pad >= 6 */
1721} __packed; /* level 10 Set */
1722
1723struct smb2_file_link_info { /* encoding of request for level 11 */
1724	__u8   ReplaceIfExists; /* 1 = replace existing link with new */
1725				/* 0 = fail if link already exists */
1726	__u8   Reserved[7];
1727	__u64  RootDirectory;  /* MBZ for network operations (why says spec?) */
1728	__le32 FileNameLength;
1729	char   FileName[];     /* Name to be assigned to new link */
1730} __packed; /* level 11 Set */
1731
1732struct smb2_file_full_ea_info { /* encoding of response for level 15 */
1733	__le32 next_entry_offset;
1734	__u8   flags;
1735	__u8   ea_name_length;
1736	__le16 ea_value_length;
1737	char   ea_data[]; /* \0 terminated name plus value */
1738} __packed; /* level 15 Set */
1739
1740/*
1741 * This level 18, although with struct with same name is different from cifs
1742 * level 0x107. Level 0x107 has an extra u64 between AccessFlags and
1743 * CurrentByteOffset.
1744 */
1745struct smb2_file_all_info { /* data block encoding of response to level 18 */
1746	__le64 CreationTime;	/* Beginning of FILE_BASIC_INFO equivalent */
1747	__le64 LastAccessTime;
1748	__le64 LastWriteTime;
1749	__le64 ChangeTime;
1750	__le32 Attributes;
1751	__u32  Pad1;		/* End of FILE_BASIC_INFO_INFO equivalent */
1752	__le64 AllocationSize;	/* Beginning of FILE_STANDARD_INFO equivalent */
1753	__le64 EndOfFile;	/* size ie offset to first free byte in file */
1754	__le32 NumberOfLinks;	/* hard links */
1755	__u8   DeletePending;
1756	__u8   Directory;
1757	__u16  Pad2;		/* End of FILE_STANDARD_INFO equivalent */
1758	__le64 IndexNumber;
1759	__le32 EASize;
1760	__le32 AccessFlags;
1761	__le64 CurrentByteOffset;
1762	__le32 Mode;
1763	__le32 AlignmentRequirement;
1764	__le32 FileNameLength;
1765	char   FileName[1];
1766} __packed; /* level 18 Query */
1767
1768struct smb2_file_eof_info { /* encoding of request for level 10 */
1769	__le64 EndOfFile; /* new end of file value */
1770} __packed; /* level 20 Set */
1771
1772struct smb2_file_reparse_point_info {
1773	__le64 IndexNumber;
1774	__le32 Tag;
1775} __packed;
1776
1777struct smb2_file_network_open_info {
1778	__le64 CreationTime;
1779	__le64 LastAccessTime;
1780	__le64 LastWriteTime;
1781	__le64 ChangeTime;
1782	__le64 AllocationSize;
1783	__le64 EndOfFile;
1784	__le32 Attributes;
1785	__le32 Reserved;
1786} __packed; /* level 34 Query also similar returned in close rsp and open rsp */
1787
1788/* See MS-FSCC 2.4.21 */
1789struct smb2_file_id_information {
1790	__le64	VolumeSerialNumber;
1791	__u64  PersistentFileId; /* opaque endianness */
1792	__u64  VolatileFileId; /* opaque endianness */
1793} __packed; /* level 59 */
1794
1795/* See MS-FSCC 2.4.18 */
1796struct smb2_file_id_extd_directory_info {
1797	__le32 NextEntryOffset;
1798	__u32 FileIndex;
1799	__le64 CreationTime;
1800	__le64 LastAccessTime;
1801	__le64 LastWriteTime;
1802	__le64 ChangeTime;
1803	__le64 EndOfFile;
1804	__le64 AllocationSize;
1805	__le32 FileAttributes;
1806	__le32 FileNameLength;
1807	__le32 EaSize; /* EA size */
1808	__le32 ReparsePointTag; /* valid if FILE_ATTR_REPARSE_POINT set in FileAttributes */
1809	__le64 UniqueId; /* inode num - le since Samba puts ino in low 32 bit */
1810	char FileName[1];
1811} __packed; /* level 60 */
1812
1813extern char smb2_padding[7];
1814
1815/* equivalent of the contents of SMB3.1.1 POSIX open context response */
1816struct create_posix_rsp {
1817	u32 nlink;
1818	u32 reparse_tag;
1819	u32 mode;
1820	struct cifs_sid owner; /* var-sized on the wire */
1821	struct cifs_sid group; /* var-sized on the wire */
1822} __packed;
1823
1824/*
1825 * SMB2-only POSIX info level for query dir
1826 *
1827 * See posix_info_sid_size(), posix_info_extra_size() and
1828 * posix_info_parse() to help with the handling of this struct.
1829 */
1830struct smb2_posix_info {
1831	__le32 NextEntryOffset;
1832	__u32 Ignored;
1833	__le64 CreationTime;
1834	__le64 LastAccessTime;
1835	__le64 LastWriteTime;
1836	__le64 ChangeTime;
1837	__le64 EndOfFile;
1838	__le64 AllocationSize;
1839	__le32 DosAttributes;
1840	__le64 Inode;
1841	__le32 DeviceId;
1842	__le32 Zero;
1843	/* beginning of POSIX Create Context Response */
1844	__le32 HardLinks;
1845	__le32 ReparseTag;
1846	__le32 Mode;
1847	/*
1848	 * var sized owner SID
1849	 * var sized group SID
1850	 * le32 filenamelength
1851	 * u8  filename[]
1852	 */
1853} __packed;
1854
1855/* Level 100 query info */
1856struct smb311_posix_qinfo {
1857	__le64 CreationTime;
1858	__le64 LastAccessTime;
1859	__le64 LastWriteTime;
1860	__le64 ChangeTime;
1861	__le64 EndOfFile;
1862	__le64 AllocationSize;
1863	__le32 DosAttributes;
1864	__le64 Inode;
1865	__le32 DeviceId;
1866	__le32 Zero;
1867	/* beginning of POSIX Create Context Response */
1868	__le32 HardLinks;
1869	__le32 ReparseTag;
1870	__le32 Mode;
1871	u8     Sids[];
1872	/*
1873	 * var sized owner SID
1874	 * var sized group SID
1875	 * le32 filenamelength
1876	 * u8  filename[]
1877	 */
1878} __packed;
1879
1880/*
1881 * Parsed version of the above struct. Allows direct access to the
1882 * variable length fields
1883 */
1884struct smb2_posix_info_parsed {
1885	const struct smb2_posix_info *base;
1886	size_t size;
1887	struct cifs_sid owner;
1888	struct cifs_sid group;
1889	int name_len;
1890	const u8 *name;
1891};
1892
1893#endif				/* _SMB2PDU_H */
v5.4
 
   1/*
   2 *   fs/cifs/smb2pdu.h
   3 *
   4 *   Copyright (c) International Business Machines  Corp., 2009, 2013
   5 *                 Etersoft, 2012
   6 *   Author(s): Steve French (sfrench@us.ibm.com)
   7 *              Pavel Shilovsky (pshilovsky@samba.org) 2012
   8 *
   9 *   This library is free software; you can redistribute it and/or modify
  10 *   it under the terms of the GNU Lesser General Public License as published
  11 *   by the Free Software Foundation; either version 2.1 of the License, or
  12 *   (at your option) any later version.
  13 *
  14 *   This library is distributed in the hope that it will be useful,
  15 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
  16 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See
  17 *   the GNU Lesser General Public License for more details.
  18 *
  19 *   You should have received a copy of the GNU Lesser General Public License
  20 *   along with this library; if not, write to the Free Software
  21 *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  22 */
  23
  24#ifndef _SMB2PDU_H
  25#define _SMB2PDU_H
  26
  27#include <net/sock.h>
 
  28
  29/*
  30 * Note that, due to trying to use names similar to the protocol specifications,
  31 * there are many mixed case field names in the structures below.  Although
  32 * this does not match typical Linux kernel style, it is necessary to be
  33 * be able to match against the protocol specfication.
  34 *
  35 * SMB2 commands
  36 * Some commands have minimal (wct=0,bcc=0), or uninteresting, responses
  37 * (ie no useful data other than the SMB error code itself) and are marked such.
  38 * Knowing this helps avoid response buffer allocations and copy in some cases.
  39 */
  40
  41/* List of commands in host endian */
  42#define SMB2_NEGOTIATE_HE	0x0000
  43#define SMB2_SESSION_SETUP_HE	0x0001
  44#define SMB2_LOGOFF_HE		0x0002 /* trivial request/resp */
  45#define SMB2_TREE_CONNECT_HE	0x0003
  46#define SMB2_TREE_DISCONNECT_HE	0x0004 /* trivial req/resp */
  47#define SMB2_CREATE_HE		0x0005
  48#define SMB2_CLOSE_HE		0x0006
  49#define SMB2_FLUSH_HE		0x0007 /* trivial resp */
  50#define SMB2_READ_HE		0x0008
  51#define SMB2_WRITE_HE		0x0009
  52#define SMB2_LOCK_HE		0x000A
  53#define SMB2_IOCTL_HE		0x000B
  54#define SMB2_CANCEL_HE		0x000C
  55#define SMB2_ECHO_HE		0x000D
  56#define SMB2_QUERY_DIRECTORY_HE	0x000E
  57#define SMB2_CHANGE_NOTIFY_HE	0x000F
  58#define SMB2_QUERY_INFO_HE	0x0010
  59#define SMB2_SET_INFO_HE	0x0011
  60#define SMB2_OPLOCK_BREAK_HE	0x0012
  61
  62/* The same list in little endian */
  63#define SMB2_NEGOTIATE		cpu_to_le16(SMB2_NEGOTIATE_HE)
  64#define SMB2_SESSION_SETUP	cpu_to_le16(SMB2_SESSION_SETUP_HE)
  65#define SMB2_LOGOFF		cpu_to_le16(SMB2_LOGOFF_HE)
  66#define SMB2_TREE_CONNECT	cpu_to_le16(SMB2_TREE_CONNECT_HE)
  67#define SMB2_TREE_DISCONNECT	cpu_to_le16(SMB2_TREE_DISCONNECT_HE)
  68#define SMB2_CREATE		cpu_to_le16(SMB2_CREATE_HE)
  69#define SMB2_CLOSE		cpu_to_le16(SMB2_CLOSE_HE)
  70#define SMB2_FLUSH		cpu_to_le16(SMB2_FLUSH_HE)
  71#define SMB2_READ		cpu_to_le16(SMB2_READ_HE)
  72#define SMB2_WRITE		cpu_to_le16(SMB2_WRITE_HE)
  73#define SMB2_LOCK		cpu_to_le16(SMB2_LOCK_HE)
  74#define SMB2_IOCTL		cpu_to_le16(SMB2_IOCTL_HE)
  75#define SMB2_CANCEL		cpu_to_le16(SMB2_CANCEL_HE)
  76#define SMB2_ECHO		cpu_to_le16(SMB2_ECHO_HE)
  77#define SMB2_QUERY_DIRECTORY	cpu_to_le16(SMB2_QUERY_DIRECTORY_HE)
  78#define SMB2_CHANGE_NOTIFY	cpu_to_le16(SMB2_CHANGE_NOTIFY_HE)
  79#define SMB2_QUERY_INFO		cpu_to_le16(SMB2_QUERY_INFO_HE)
  80#define SMB2_SET_INFO		cpu_to_le16(SMB2_SET_INFO_HE)
  81#define SMB2_OPLOCK_BREAK	cpu_to_le16(SMB2_OPLOCK_BREAK_HE)
  82
  83#define SMB2_INTERNAL_CMD	cpu_to_le16(0xFFFF)
  84
  85#define NUMBER_OF_SMB2_COMMANDS	0x0013
  86
  87/* 52 transform hdr + 64 hdr + 88 create rsp */
  88#define SMB2_TRANSFORM_HEADER_SIZE 52
  89#define MAX_SMB2_HDR_SIZE 204
  90
  91#define SMB2_PROTO_NUMBER cpu_to_le32(0x424d53fe)
  92#define SMB2_TRANSFORM_PROTO_NUM cpu_to_le32(0x424d53fd)
 
  93
  94/*
  95 * SMB2 Header Definition
  96 *
  97 * "MBZ" :  Must be Zero
  98 * "BB"  :  BugBug, Something to check/review/analyze later
  99 * "PDU" :  "Protocol Data Unit" (ie a network "frame")
 100 *
 101 */
 102
 103#define SMB2_HEADER_STRUCTURE_SIZE cpu_to_le16(64)
 104
 105struct smb2_sync_hdr {
 106	__le32 ProtocolId;	/* 0xFE 'S' 'M' 'B' */
 107	__le16 StructureSize;	/* 64 */
 108	__le16 CreditCharge;	/* MBZ */
 109	__le32 Status;		/* Error from server */
 110	__le16 Command;
 111	__le16 CreditRequest;  /* CreditResponse */
 112	__le32 Flags;
 113	__le32 NextCommand;
 114	__le64 MessageId;
 115	__le32 ProcessId;
 116	__u32  TreeId;		/* opaque - so do not make little endian */
 117	__u64  SessionId;	/* opaque - so do not make little endian */
 118	__u8   Signature[16];
 119} __packed;
 120
 
 
 
 121struct smb2_sync_pdu {
 122	struct smb2_sync_hdr sync_hdr;
 123	__le16 StructureSize2; /* size of wct area (varies, request specific) */
 124} __packed;
 125
 126#define SMB3_AES128CCM_NONCE 11
 127#define SMB3_AES128GCM_NONCE 12
 128
 
 
 129struct smb2_transform_hdr {
 130	__le32 ProtocolId;	/* 0xFD 'S' 'M' 'B' */
 131	__u8   Signature[16];
 132	__u8   Nonce[16];
 133	__le32 OriginalMessageSize;
 134	__u16  Reserved1;
 135	__le16 Flags; /* EncryptionAlgorithm */
 136	__u64  SessionId;
 137} __packed;
 138
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 139/*
 140 *	SMB2 flag definitions
 141 */
 142#define SMB2_FLAGS_SERVER_TO_REDIR	cpu_to_le32(0x00000001)
 143#define SMB2_FLAGS_ASYNC_COMMAND	cpu_to_le32(0x00000002)
 144#define SMB2_FLAGS_RELATED_OPERATIONS	cpu_to_le32(0x00000004)
 145#define SMB2_FLAGS_SIGNED		cpu_to_le32(0x00000008)
 146#define SMB2_FLAGS_PRIORITY_MASK	cpu_to_le32(0x00000070) /* SMB3.1.1 */
 147#define SMB2_FLAGS_DFS_OPERATIONS	cpu_to_le32(0x10000000)
 148#define SMB2_FLAGS_REPLAY_OPERATION	cpu_to_le32(0x20000000) /* SMB3 & up */
 149
 150/*
 151 *	Definitions for SMB2 Protocol Data Units (network frames)
 152 *
 153 *  See MS-SMB2.PDF specification for protocol details.
 154 *  The Naming convention is the lower case version of the SMB2
 155 *  command code name for the struct. Note that structures must be packed.
 156 *
 157 */
 158
 159#define COMPOUND_FID 0xFFFFFFFFFFFFFFFFULL
 160
 161#define SMB2_ERROR_STRUCTURE_SIZE2 cpu_to_le16(9)
 162
 163struct smb2_err_rsp {
 164	struct smb2_sync_hdr sync_hdr;
 165	__le16 StructureSize;
 166	__le16 Reserved; /* MBZ */
 167	__le32 ByteCount;  /* even if zero, at least one byte follows */
 168	__u8   ErrorData[1];  /* variable length */
 169} __packed;
 170
 171#define SYMLINK_ERROR_TAG 0x4c4d5953
 172
 173struct smb2_symlink_err_rsp {
 174	__le32 SymLinkLength;
 175	__le32 SymLinkErrorTag;
 176	__le32 ReparseTag;
 177	__le16 ReparseDataLength;
 178	__le16 UnparsedPathLength;
 179	__le16 SubstituteNameOffset;
 180	__le16 SubstituteNameLength;
 181	__le16 PrintNameOffset;
 182	__le16 PrintNameLength;
 183	__le32 Flags;
 184	__u8  PathBuffer[0];
 185} __packed;
 186
 187/* SMB 3.1.1 and later dialects. See MS-SMB2 section 2.2.2.1 */
 188struct smb2_error_context_rsp {
 189	__le32 ErrorDataLength;
 190	__le32 ErrorId;
 191	__u8  ErrorContextData; /* ErrorDataLength long array */
 192} __packed;
 193
 
 
 
 
 194/* Defines for Type field below (see MS-SMB2 2.2.2.2.2.1) */
 195#define MOVE_DST_IPADDR_V4	cpu_to_le32(0x00000001)
 196#define MOVE_DST_IPADDR_V6	cpu_to_le32(0x00000002)
 197
 198struct move_dst_ipaddr {
 199	__le32 Type;
 200	__u32  Reserved;
 201	__u8   address[16]; /* IPv4 followed by 12 bytes rsvd or IPv6 address */
 202} __packed;
 203
 204struct share_redirect_error_context_rsp {
 205	__le32 StructureSize;
 206	__le32 NotificationType;
 207	__le32 ResourceNameOffset;
 208	__le32 ResourceNameLength;
 209	__le16 Flags;
 210	__le16 TargetType;
 211	__le32 IPAddrCount;
 212	struct move_dst_ipaddr IpAddrMoveList[0];
 213	/* __u8 ResourceName[] */ /* Name of share as counted Unicode string */
 214} __packed;
 215
 216#define SMB2_CLIENT_GUID_SIZE 16
 217
 218struct smb2_negotiate_req {
 219	struct smb2_sync_hdr sync_hdr;
 220	__le16 StructureSize; /* Must be 36 */
 221	__le16 DialectCount;
 222	__le16 SecurityMode;
 223	__le16 Reserved;	/* MBZ */
 224	__le32 Capabilities;
 225	__u8   ClientGUID[SMB2_CLIENT_GUID_SIZE];
 226	/* In SMB3.02 and earlier next three were MBZ le64 ClientStartTime */
 227	__le32 NegotiateContextOffset; /* SMB3.1.1 only. MBZ earlier */
 228	__le16 NegotiateContextCount;  /* SMB3.1.1 only. MBZ earlier */
 229	__le16 Reserved2;
 230	__le16 Dialects[1]; /* One dialect (vers=) at a time for now */
 231} __packed;
 232
 233/* Dialects */
 234#define SMB10_PROT_ID 0x0000 /* local only, not sent on wire w/CIFS negprot */
 235#define SMB20_PROT_ID 0x0202
 236#define SMB21_PROT_ID 0x0210
 237#define SMB30_PROT_ID 0x0300
 238#define SMB302_PROT_ID 0x0302
 239#define SMB311_PROT_ID 0x0311
 240#define BAD_PROT_ID   0xFFFF
 241
 242/* SecurityMode flags */
 243#define	SMB2_NEGOTIATE_SIGNING_ENABLED	0x0001
 244#define SMB2_NEGOTIATE_SIGNING_REQUIRED	0x0002
 245#define SMB2_SEC_MODE_FLAGS_ALL		0x0003
 246
 247/* Capabilities flags */
 248#define SMB2_GLOBAL_CAP_DFS		0x00000001
 249#define SMB2_GLOBAL_CAP_LEASING		0x00000002 /* Resp only New to SMB2.1 */
 250#define SMB2_GLOBAL_CAP_LARGE_MTU	0X00000004 /* Resp only New to SMB2.1 */
 251#define SMB2_GLOBAL_CAP_MULTI_CHANNEL	0x00000008 /* New to SMB3 */
 252#define SMB2_GLOBAL_CAP_PERSISTENT_HANDLES 0x00000010 /* New to SMB3 */
 253#define SMB2_GLOBAL_CAP_DIRECTORY_LEASING  0x00000020 /* New to SMB3 */
 254#define SMB2_GLOBAL_CAP_ENCRYPTION	0x00000040 /* New to SMB3 */
 255/* Internal types */
 256#define SMB2_NT_FIND			0x00100000
 257#define SMB2_LARGE_FILES		0x00200000
 258
 259
 260/* Negotiate Contexts - ContextTypes. See MS-SMB2 section 2.2.3.1 for details */
 261#define SMB2_PREAUTH_INTEGRITY_CAPABILITIES	cpu_to_le16(1)
 262#define SMB2_ENCRYPTION_CAPABILITIES		cpu_to_le16(2)
 263#define SMB2_COMPRESSION_CAPABILITIES		cpu_to_le16(3)
 264#define SMB2_NETNAME_NEGOTIATE_CONTEXT_ID	cpu_to_le16(5)
 
 
 
 265#define SMB2_POSIX_EXTENSIONS_AVAILABLE		cpu_to_le16(0x100)
 266
 267struct smb2_neg_context {
 268	__le16	ContextType;
 269	__le16	DataLength;
 270	__le32	Reserved;
 271	/* Followed by array of data */
 272} __packed;
 273
 274#define SMB311_SALT_SIZE			32
 275/* Hash Algorithm Types */
 276#define SMB2_PREAUTH_INTEGRITY_SHA512	cpu_to_le16(0x0001)
 277#define SMB2_PREAUTH_HASH_SIZE 64
 278
 279#define MIN_PREAUTH_CTXT_DATA_LEN	(SMB311_SALT_SIZE + 6)
 
 
 
 
 
 
 
 
 280struct smb2_preauth_neg_context {
 281	__le16	ContextType; /* 1 */
 282	__le16	DataLength;
 283	__le32	Reserved;
 284	__le16	HashAlgorithmCount; /* 1 */
 285	__le16	SaltLength;
 286	__le16	HashAlgorithms; /* HashAlgorithms[0] since only one defined */
 287	__u8	Salt[SMB311_SALT_SIZE];
 288} __packed;
 289
 290/* Encryption Algorithms Ciphers */
 291#define SMB2_ENCRYPTION_AES128_CCM	cpu_to_le16(0x0001)
 292#define SMB2_ENCRYPTION_AES128_GCM	cpu_to_le16(0x0002)
 
 
 
 293
 294/* Min encrypt context data is one cipher so 2 bytes + 2 byte count field */
 295#define MIN_ENCRYPT_CTXT_DATA_LEN	4
 296struct smb2_encryption_neg_context {
 297	__le16	ContextType; /* 2 */
 298	__le16	DataLength;
 299	__le32	Reserved;
 300	__le16	CipherCount; /* AES-128-GCM and AES-128-CCM */
 301	__le16	Ciphers[2];
 
 302} __packed;
 303
 304/* See MS-SMB2 2.2.3.1.3 */
 305#define SMB3_COMPRESS_NONE	cpu_to_le16(0x0000)
 306#define SMB3_COMPRESS_LZNT1	cpu_to_le16(0x0001)
 307#define SMB3_COMPRESS_LZ77	cpu_to_le16(0x0002)
 308#define SMB3_COMPRESS_LZ77_HUFF	cpu_to_le16(0x0003)
 
 
 
 
 
 
 309
 310struct smb2_compression_capabilities_context {
 311	__le16	ContextType; /* 3 */
 312	__le16  DataLength;
 313	__u32	Reserved;
 314	__le16	CompressionAlgorithmCount;
 315	__u16	Padding;
 316	__u32	Reserved1;
 317	__le16	CompressionAlgorithms[3];
 
 
 318} __packed;
 319
 320/*
 321 * For smb2_netname_negotiate_context_id See MS-SMB2 2.2.3.1.4.
 322 * Its struct simply contains NetName, an array of Unicode characters
 323 */
 324struct smb2_netname_neg_context {
 325	__le16	ContextType; /* 0x100 */
 326	__le16	DataLength;
 327	__le32	Reserved;
 328	__le16	NetName[0]; /* hostname of target converted to UCS-2 */
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 329} __packed;
 330
 331#define POSIX_CTXT_DATA_LEN	16
 332struct smb2_posix_neg_context {
 333	__le16	ContextType; /* 0x100 */
 334	__le16	DataLength;
 335	__le32	Reserved;
 336	__u8	Name[16]; /* POSIX ctxt GUID 93AD25509CB411E7B42383DE968BCD7C */
 337} __packed;
 338
 339struct smb2_negotiate_rsp {
 340	struct smb2_sync_hdr sync_hdr;
 341	__le16 StructureSize;	/* Must be 65 */
 342	__le16 SecurityMode;
 343	__le16 DialectRevision;
 344	__le16 NegotiateContextCount;	/* Prior to SMB3.1.1 was Reserved & MBZ */
 345	__u8   ServerGUID[16];
 346	__le32 Capabilities;
 347	__le32 MaxTransactSize;
 348	__le32 MaxReadSize;
 349	__le32 MaxWriteSize;
 350	__le64 SystemTime;	/* MBZ */
 351	__le64 ServerStartTime;
 352	__le16 SecurityBufferOffset;
 353	__le16 SecurityBufferLength;
 354	__le32 NegotiateContextOffset;	/* Pre:SMB3.1.1 was reserved/ignored */
 355	__u8   Buffer[1];	/* variable length GSS security buffer */
 356} __packed;
 357
 358/* Flags */
 359#define SMB2_SESSION_REQ_FLAG_BINDING		0x01
 360#define SMB2_SESSION_REQ_FLAG_ENCRYPT_DATA	0x04
 361
 362struct smb2_sess_setup_req {
 363	struct smb2_sync_hdr sync_hdr;
 364	__le16 StructureSize; /* Must be 25 */
 365	__u8   Flags;
 366	__u8   SecurityMode;
 367	__le32 Capabilities;
 368	__le32 Channel;
 369	__le16 SecurityBufferOffset;
 370	__le16 SecurityBufferLength;
 371	__u64 PreviousSessionId;
 372	__u8   Buffer[1];	/* variable length GSS security buffer */
 373} __packed;
 374
 375/* Currently defined SessionFlags */
 376#define SMB2_SESSION_FLAG_IS_GUEST	0x0001
 377#define SMB2_SESSION_FLAG_IS_NULL	0x0002
 378#define SMB2_SESSION_FLAG_ENCRYPT_DATA	0x0004
 379struct smb2_sess_setup_rsp {
 380	struct smb2_sync_hdr sync_hdr;
 381	__le16 StructureSize; /* Must be 9 */
 382	__le16 SessionFlags;
 383	__le16 SecurityBufferOffset;
 384	__le16 SecurityBufferLength;
 385	__u8   Buffer[1];	/* variable length GSS security buffer */
 386} __packed;
 387
 388struct smb2_logoff_req {
 389	struct smb2_sync_hdr sync_hdr;
 390	__le16 StructureSize;	/* Must be 4 */
 391	__le16 Reserved;
 392} __packed;
 393
 394struct smb2_logoff_rsp {
 395	struct smb2_sync_hdr sync_hdr;
 396	__le16 StructureSize;	/* Must be 4 */
 397	__le16 Reserved;
 398} __packed;
 399
 400/* Flags/Reserved for SMB3.1.1 */
 401#define SMB2_TREE_CONNECT_FLAG_CLUSTER_RECONNECT cpu_to_le16(0x0001)
 402#define SMB2_TREE_CONNECT_FLAG_REDIRECT_TO_OWNER cpu_to_le16(0x0002)
 403#define SMB2_TREE_CONNECT_FLAG_EXTENSION_PRESENT cpu_to_le16(0x0004)
 404
 405struct smb2_tree_connect_req {
 406	struct smb2_sync_hdr sync_hdr;
 407	__le16 StructureSize;	/* Must be 9 */
 408	__le16 Reserved; /* Flags in SMB3.1.1 */
 409	__le16 PathOffset;
 410	__le16 PathLength;
 411	__u8   Buffer[1];	/* variable length */
 412} __packed;
 413
 414/* See MS-SMB2 section 2.2.9.2 */
 415/* Context Types */
 416#define SMB2_RESERVED_TREE_CONNECT_CONTEXT_ID 0x0000
 417#define SMB2_REMOTED_IDENTITY_TREE_CONNECT_CONTEXT_ID cpu_to_le16(0x0001)
 418
 419struct tree_connect_contexts {
 420	__le16 ContextType;
 421	__le16 DataLength;
 422	__le32 Reserved;
 423	__u8   Data[0];
 424} __packed;
 425
 426/* Remoted identity tree connect context structures - see MS-SMB2 2.2.9.2.1 */
 427struct smb3_blob_data {
 428	__le16 BlobSize;
 429	__u8   BlobData[0];
 430} __packed;
 431
 432/* Valid values for Attr */
 433#define SE_GROUP_MANDATORY		0x00000001
 434#define SE_GROUP_ENABLED_BY_DEFAULT	0x00000002
 435#define SE_GROUP_ENABLED		0x00000004
 436#define SE_GROUP_OWNER			0x00000008
 437#define SE_GROUP_USE_FOR_DENY_ONLY	0x00000010
 438#define SE_GROUP_INTEGRITY		0x00000020
 439#define SE_GROUP_INTEGRITY_ENABLED	0x00000040
 440#define SE_GROUP_RESOURCE		0x20000000
 441#define SE_GROUP_LOGON_ID		0xC0000000
 442
 443/* struct sid_attr_data is SidData array in BlobData format then le32 Attr */
 444
 445struct sid_array_data {
 446	__le16 SidAttrCount;
 447	/* SidAttrList - array of sid_attr_data structs */
 448} __packed;
 449
 450struct luid_attr_data {
 451
 452} __packed;
 453
 454/*
 455 * struct privilege_data is the same as BLOB_DATA - see MS-SMB2 2.2.9.2.1.5
 456 * but with size of LUID_ATTR_DATA struct and BlobData set to LUID_ATTR DATA
 457 */
 458
 459struct privilege_array_data {
 460	__le16 PrivilegeCount;
 461	/* array of privilege_data structs */
 462} __packed;
 463
 464struct remoted_identity_tcon_context {
 465	__le16 TicketType; /* must be 0x0001 */
 466	__le16 TicketSize; /* total size of this struct */
 467	__le16 User; /* offset to SID_ATTR_DATA struct with user info */
 468	__le16 UserName; /* offset to null terminated Unicode username string */
 469	__le16 Domain; /* offset to null terminated Unicode domain name */
 470	__le16 Groups; /* offset to SID_ARRAY_DATA struct with group info */
 471	__le16 RestrictedGroups; /* similar to above */
 472	__le16 Privileges; /* offset to PRIVILEGE_ARRAY_DATA struct */
 473	__le16 PrimaryGroup; /* offset to SID_ARRAY_DATA struct */
 474	__le16 Owner; /* offset to BLOB_DATA struct */
 475	__le16 DefaultDacl; /* offset to BLOB_DATA struct */
 476	__le16 DeviceGroups; /* offset to SID_ARRAY_DATA struct */
 477	__le16 UserClaims; /* offset to BLOB_DATA struct */
 478	__le16 DeviceClaims; /* offset to BLOB_DATA struct */
 479	__u8   TicketInfo[0]; /* variable length buf - remoted identity data */
 480} __packed;
 481
 482struct smb2_tree_connect_req_extension {
 483	__le32 TreeConnectContextOffset;
 484	__le16 TreeConnectContextCount;
 485	__u8  Reserved[10];
 486	__u8  PathName[0]; /* variable sized array */
 487	/* followed by array of TreeConnectContexts */
 488} __packed;
 489
 490struct smb2_tree_connect_rsp {
 491	struct smb2_sync_hdr sync_hdr;
 492	__le16 StructureSize;	/* Must be 16 */
 493	__u8   ShareType;  /* see below */
 494	__u8   Reserved;
 495	__le32 ShareFlags; /* see below */
 496	__le32 Capabilities; /* see below */
 497	__le32 MaximalAccess;
 498} __packed;
 499
 500/* Possible ShareType values */
 501#define SMB2_SHARE_TYPE_DISK	0x01
 502#define SMB2_SHARE_TYPE_PIPE	0x02
 503#define	SMB2_SHARE_TYPE_PRINT	0x03
 504
 505/*
 506 * Possible ShareFlags - exactly one and only one of the first 4 caching flags
 507 * must be set (any of the remaining, SHI1005, flags may be set individually
 508 * or in combination.
 509 */
 510#define SMB2_SHAREFLAG_MANUAL_CACHING			0x00000000
 511#define SMB2_SHAREFLAG_AUTO_CACHING			0x00000010
 512#define SMB2_SHAREFLAG_VDO_CACHING			0x00000020
 513#define SMB2_SHAREFLAG_NO_CACHING			0x00000030
 514#define SHI1005_FLAGS_DFS				0x00000001
 515#define SHI1005_FLAGS_DFS_ROOT				0x00000002
 516#define SHI1005_FLAGS_RESTRICT_EXCLUSIVE_OPENS		0x00000100
 517#define SHI1005_FLAGS_FORCE_SHARED_DELETE		0x00000200
 518#define SHI1005_FLAGS_ALLOW_NAMESPACE_CACHING		0x00000400
 519#define SHI1005_FLAGS_ACCESS_BASED_DIRECTORY_ENUM	0x00000800
 520#define SHI1005_FLAGS_FORCE_LEVELII_OPLOCK		0x00001000
 521#define SHI1005_FLAGS_ENABLE_HASH_V1			0x00002000
 522#define SHI1005_FLAGS_ENABLE_HASH_V2			0x00004000
 523#define SHI1005_FLAGS_ENCRYPT_DATA			0x00008000
 524#define SMB2_SHAREFLAG_IDENTITY_REMOTING		0x00040000 /* 3.1.1 */
 525#define SHI1005_FLAGS_ALL				0x0004FF33
 
 526
 527/* Possible share capabilities */
 528#define SMB2_SHARE_CAP_DFS	cpu_to_le32(0x00000008) /* all dialects */
 529#define SMB2_SHARE_CAP_CONTINUOUS_AVAILABILITY cpu_to_le32(0x00000010) /* 3.0 */
 530#define SMB2_SHARE_CAP_SCALEOUT	cpu_to_le32(0x00000020) /* 3.0 */
 531#define SMB2_SHARE_CAP_CLUSTER	cpu_to_le32(0x00000040) /* 3.0 */
 532#define SMB2_SHARE_CAP_ASYMMETRIC cpu_to_le32(0x00000080) /* 3.02 */
 533#define SMB2_SHARE_CAP_REDIRECT_TO_OWNER cpu_to_le32(0x00000100) /* 3.1.1 */
 534
 535struct smb2_tree_disconnect_req {
 536	struct smb2_sync_hdr sync_hdr;
 537	__le16 StructureSize;	/* Must be 4 */
 538	__le16 Reserved;
 539} __packed;
 540
 541struct smb2_tree_disconnect_rsp {
 542	struct smb2_sync_hdr sync_hdr;
 543	__le16 StructureSize;	/* Must be 4 */
 544	__le16 Reserved;
 545} __packed;
 546
 547/* File Attrubutes */
 548#define FILE_ATTRIBUTE_READONLY			0x00000001
 549#define FILE_ATTRIBUTE_HIDDEN			0x00000002
 550#define FILE_ATTRIBUTE_SYSTEM			0x00000004
 551#define FILE_ATTRIBUTE_DIRECTORY		0x00000010
 552#define FILE_ATTRIBUTE_ARCHIVE			0x00000020
 553#define FILE_ATTRIBUTE_NORMAL			0x00000080
 554#define FILE_ATTRIBUTE_TEMPORARY		0x00000100
 555#define FILE_ATTRIBUTE_SPARSE_FILE		0x00000200
 556#define FILE_ATTRIBUTE_REPARSE_POINT		0x00000400
 557#define FILE_ATTRIBUTE_COMPRESSED		0x00000800
 558#define FILE_ATTRIBUTE_OFFLINE			0x00001000
 559#define FILE_ATTRIBUTE_NOT_CONTENT_INDEXED	0x00002000
 560#define FILE_ATTRIBUTE_ENCRYPTED		0x00004000
 561#define FILE_ATTRIBUTE_INTEGRITY_STREAM		0x00008000
 562#define FILE_ATTRIBUTE_NO_SCRUB_DATA		0x00020000
 563
 564/* Oplock levels */
 565#define SMB2_OPLOCK_LEVEL_NONE		0x00
 566#define SMB2_OPLOCK_LEVEL_II		0x01
 567#define SMB2_OPLOCK_LEVEL_EXCLUSIVE	0x08
 568#define SMB2_OPLOCK_LEVEL_BATCH		0x09
 569#define SMB2_OPLOCK_LEVEL_LEASE		0xFF
 570/* Non-spec internal type */
 571#define SMB2_OPLOCK_LEVEL_NOCHANGE	0x99
 572
 573/* Desired Access Flags */
 574#define FILE_READ_DATA_LE		cpu_to_le32(0x00000001)
 575#define FILE_WRITE_DATA_LE		cpu_to_le32(0x00000002)
 576#define FILE_APPEND_DATA_LE		cpu_to_le32(0x00000004)
 577#define FILE_READ_EA_LE			cpu_to_le32(0x00000008)
 578#define FILE_WRITE_EA_LE		cpu_to_le32(0x00000010)
 579#define FILE_EXECUTE_LE			cpu_to_le32(0x00000020)
 580#define FILE_READ_ATTRIBUTES_LE		cpu_to_le32(0x00000080)
 581#define FILE_WRITE_ATTRIBUTES_LE	cpu_to_le32(0x00000100)
 582#define FILE_DELETE_LE			cpu_to_le32(0x00010000)
 583#define FILE_READ_CONTROL_LE		cpu_to_le32(0x00020000)
 584#define FILE_WRITE_DAC_LE		cpu_to_le32(0x00040000)
 585#define FILE_WRITE_OWNER_LE		cpu_to_le32(0x00080000)
 586#define FILE_SYNCHRONIZE_LE		cpu_to_le32(0x00100000)
 587#define FILE_ACCESS_SYSTEM_SECURITY_LE	cpu_to_le32(0x01000000)
 588#define FILE_MAXIMAL_ACCESS_LE		cpu_to_le32(0x02000000)
 589#define FILE_GENERIC_ALL_LE		cpu_to_le32(0x10000000)
 590#define FILE_GENERIC_EXECUTE_LE		cpu_to_le32(0x20000000)
 591#define FILE_GENERIC_WRITE_LE		cpu_to_le32(0x40000000)
 592#define FILE_GENERIC_READ_LE		cpu_to_le32(0x80000000)
 593
 594/* ShareAccess Flags */
 595#define FILE_SHARE_READ_LE		cpu_to_le32(0x00000001)
 596#define FILE_SHARE_WRITE_LE		cpu_to_le32(0x00000002)
 597#define FILE_SHARE_DELETE_LE		cpu_to_le32(0x00000004)
 598#define FILE_SHARE_ALL_LE		cpu_to_le32(0x00000007)
 599
 600/* CreateDisposition Flags */
 601#define FILE_SUPERSEDE_LE		cpu_to_le32(0x00000000)
 602#define FILE_OPEN_LE			cpu_to_le32(0x00000001)
 603#define FILE_CREATE_LE			cpu_to_le32(0x00000002)
 604#define	FILE_OPEN_IF_LE			cpu_to_le32(0x00000003)
 605#define FILE_OVERWRITE_LE		cpu_to_le32(0x00000004)
 606#define FILE_OVERWRITE_IF_LE		cpu_to_le32(0x00000005)
 607
 608/* CreateOptions Flags */
 609#define FILE_DIRECTORY_FILE_LE		cpu_to_le32(0x00000001)
 610/* same as #define CREATE_NOT_FILE_LE	cpu_to_le32(0x00000001) */
 611#define FILE_WRITE_THROUGH_LE		cpu_to_le32(0x00000002)
 612#define FILE_SEQUENTIAL_ONLY_LE		cpu_to_le32(0x00000004)
 613#define FILE_NO_INTERMEDIATE_BUFFERRING_LE cpu_to_le32(0x00000008)
 614#define FILE_SYNCHRONOUS_IO_ALERT_LE	cpu_to_le32(0x00000010)
 615#define FILE_SYNCHRONOUS_IO_NON_ALERT_LE	cpu_to_le32(0x00000020)
 616#define FILE_NON_DIRECTORY_FILE_LE	cpu_to_le32(0x00000040)
 617#define FILE_COMPLETE_IF_OPLOCKED_LE	cpu_to_le32(0x00000100)
 618#define FILE_NO_EA_KNOWLEDGE_LE		cpu_to_le32(0x00000200)
 619#define FILE_RANDOM_ACCESS_LE		cpu_to_le32(0x00000800)
 620#define FILE_DELETE_ON_CLOSE_LE		cpu_to_le32(0x00001000)
 621#define FILE_OPEN_BY_FILE_ID_LE		cpu_to_le32(0x00002000)
 622#define FILE_OPEN_FOR_BACKUP_INTENT_LE	cpu_to_le32(0x00004000)
 623#define FILE_NO_COMPRESSION_LE		cpu_to_le32(0x00008000)
 624#define FILE_RESERVE_OPFILTER_LE	cpu_to_le32(0x00100000)
 625#define FILE_OPEN_REPARSE_POINT_LE	cpu_to_le32(0x00200000)
 626#define FILE_OPEN_NO_RECALL_LE		cpu_to_le32(0x00400000)
 627#define FILE_OPEN_FOR_FREE_SPACE_QUERY_LE cpu_to_le32(0x00800000)
 628
 629#define FILE_READ_RIGHTS_LE (FILE_READ_DATA_LE | FILE_READ_EA_LE \
 630			| FILE_READ_ATTRIBUTES_LE)
 631#define FILE_WRITE_RIGHTS_LE (FILE_WRITE_DATA_LE | FILE_APPEND_DATA_LE \
 632			| FILE_WRITE_EA_LE | FILE_WRITE_ATTRIBUTES_LE)
 633#define FILE_EXEC_RIGHTS_LE (FILE_EXECUTE_LE)
 634
 635/* Impersonation Levels */
 636#define IL_ANONYMOUS		cpu_to_le32(0x00000000)
 637#define IL_IDENTIFICATION	cpu_to_le32(0x00000001)
 638#define IL_IMPERSONATION	cpu_to_le32(0x00000002)
 639#define IL_DELEGATE		cpu_to_le32(0x00000003)
 640
 641/* Create Context Values */
 642#define SMB2_CREATE_EA_BUFFER			"ExtA" /* extended attributes */
 643#define SMB2_CREATE_SD_BUFFER			"SecD" /* security descriptor */
 644#define SMB2_CREATE_DURABLE_HANDLE_REQUEST	"DHnQ"
 645#define SMB2_CREATE_DURABLE_HANDLE_RECONNECT	"DHnC"
 646#define SMB2_CREATE_ALLOCATION_SIZE		"AISi"
 647#define SMB2_CREATE_QUERY_MAXIMAL_ACCESS_REQUEST "MxAc"
 648#define SMB2_CREATE_TIMEWARP_REQUEST		"TWrp"
 649#define SMB2_CREATE_QUERY_ON_DISK_ID		"QFid"
 650#define SMB2_CREATE_REQUEST_LEASE		"RqLs"
 651#define SMB2_CREATE_DURABLE_HANDLE_REQUEST_V2	"DH2Q"
 652#define SMB2_CREATE_DURABLE_HANDLE_RECONNECT_V2	"DH2C"
 653#define SMB2_CREATE_APP_INSTANCE_ID	0x45BCA66AEFA7F74A9008FA462E144D74
 654#define SMB2_CREATE_APP_INSTANCE_VERSION 0xB982D0B73B56074FA07B524A8116A010
 655#define SVHDX_OPEN_DEVICE_CONTEX	0x9CCBCF9E04C1E643980E158DA1F6EC83
 656#define SMB2_CREATE_TAG_POSIX		0x93AD25509CB411E7B42383DE968BCD7C
 657
 658/* Flag (SMB3 open response) values */
 659#define SMB2_CREATE_FLAG_REPARSEPOINT 0x01
 660
 661/*
 662 * Maximum number of iovs we need for an open/create request.
 663 * [0] : struct smb2_create_req
 664 * [1] : path
 665 * [2] : lease context
 666 * [3] : durable context
 667 * [4] : posix context
 668 * [5] : time warp context
 669 * [6] : query id context
 670 * [7] : compound padding
 671 */
 672#define SMB2_CREATE_IOV_SIZE 8
 673
 674struct smb2_create_req {
 675	struct smb2_sync_hdr sync_hdr;
 676	__le16 StructureSize;	/* Must be 57 */
 677	__u8   SecurityFlags;
 678	__u8   RequestedOplockLevel;
 679	__le32 ImpersonationLevel;
 680	__le64 SmbCreateFlags;
 681	__le64 Reserved;
 682	__le32 DesiredAccess;
 683	__le32 FileAttributes;
 684	__le32 ShareAccess;
 685	__le32 CreateDisposition;
 686	__le32 CreateOptions;
 687	__le16 NameOffset;
 688	__le16 NameLength;
 689	__le32 CreateContextsOffset;
 690	__le32 CreateContextsLength;
 691	__u8   Buffer[0];
 692} __packed;
 693
 694/*
 695 * Maximum size of a SMB2_CREATE response is 64 (smb2 header) +
 696 * 88 (fixed part of create response) + 520 (path) + 208 (contexts) +
 697 * 2 bytes of padding.
 698 */
 699#define MAX_SMB2_CREATE_RESPONSE_SIZE 880
 700
 701struct smb2_create_rsp {
 702	struct smb2_sync_hdr sync_hdr;
 703	__le16 StructureSize;	/* Must be 89 */
 704	__u8   OplockLevel;
 705	__u8   Flag;  /* 0x01 if reparse point */
 706	__le32 CreateAction;
 707	__le64 CreationTime;
 708	__le64 LastAccessTime;
 709	__le64 LastWriteTime;
 710	__le64 ChangeTime;
 711	__le64 AllocationSize;
 712	__le64 EndofFile;
 713	__le32 FileAttributes;
 714	__le32 Reserved2;
 715	__u64  PersistentFileId; /* opaque endianness */
 716	__u64  VolatileFileId; /* opaque endianness */
 717	__le32 CreateContextsOffset;
 718	__le32 CreateContextsLength;
 719	__u8   Buffer[1];
 720} __packed;
 721
 722struct create_context {
 723	__le32 Next;
 724	__le16 NameOffset;
 725	__le16 NameLength;
 726	__le16 Reserved;
 727	__le16 DataOffset;
 728	__le32 DataLength;
 729	__u8 Buffer[0];
 730} __packed;
 731
 732#define SMB2_LEASE_READ_CACHING_HE	0x01
 733#define SMB2_LEASE_HANDLE_CACHING_HE	0x02
 734#define SMB2_LEASE_WRITE_CACHING_HE	0x04
 735
 736#define SMB2_LEASE_NONE			cpu_to_le32(0x00)
 737#define SMB2_LEASE_READ_CACHING		cpu_to_le32(0x01)
 738#define SMB2_LEASE_HANDLE_CACHING	cpu_to_le32(0x02)
 739#define SMB2_LEASE_WRITE_CACHING	cpu_to_le32(0x04)
 740
 741#define SMB2_LEASE_FLAG_BREAK_IN_PROGRESS cpu_to_le32(0x02)
 742#define SMB2_LEASE_FLAG_PARENT_LEASE_KEY_SET cpu_to_le32(0x00000004)
 743
 744#define SMB2_LEASE_KEY_SIZE 16
 745
 746struct lease_context {
 747	u8 LeaseKey[SMB2_LEASE_KEY_SIZE];
 748	__le32 LeaseState;
 749	__le32 LeaseFlags;
 750	__le64 LeaseDuration;
 751} __packed;
 752
 753struct lease_context_v2 {
 754	u8 LeaseKey[SMB2_LEASE_KEY_SIZE];
 755	__le32 LeaseState;
 756	__le32 LeaseFlags;
 757	__le64 LeaseDuration;
 758	__le64 ParentLeaseKeyLow;
 759	__le64 ParentLeaseKeyHigh;
 760	__le16 Epoch;
 761	__le16 Reserved;
 762} __packed;
 763
 764struct create_lease {
 765	struct create_context ccontext;
 766	__u8   Name[8];
 767	struct lease_context lcontext;
 768} __packed;
 769
 770struct create_lease_v2 {
 771	struct create_context ccontext;
 772	__u8   Name[8];
 773	struct lease_context_v2 lcontext;
 774	__u8   Pad[4];
 775} __packed;
 776
 777struct create_durable {
 778	struct create_context ccontext;
 779	__u8   Name[8];
 780	union {
 781		__u8  Reserved[16];
 782		struct {
 783			__u64 PersistentFileId;
 784			__u64 VolatileFileId;
 785		} Fid;
 786	} Data;
 787} __packed;
 788
 789struct create_posix {
 790	struct create_context ccontext;
 791	__u8	Name[16];
 792	__le32  Mode;
 793	__u32	Reserved;
 794} __packed;
 795
 796/* See MS-SMB2 2.2.13.2.11 */
 797/* Flags */
 798#define SMB2_DHANDLE_FLAG_PERSISTENT	0x00000002
 799struct durable_context_v2 {
 800	__le32 Timeout;
 801	__le32 Flags;
 802	__u64 Reserved;
 803	__u8 CreateGuid[16];
 804} __packed;
 805
 806struct create_durable_v2 {
 807	struct create_context ccontext;
 808	__u8   Name[8];
 809	struct durable_context_v2 dcontext;
 810} __packed;
 811
 812/* See MS-SMB2 2.2.13.2.12 */
 813struct durable_reconnect_context_v2 {
 814	struct {
 815		__u64 PersistentFileId;
 816		__u64 VolatileFileId;
 817	} Fid;
 818	__u8 CreateGuid[16];
 819	__le32 Flags; /* see above DHANDLE_FLAG_PERSISTENT */
 820} __packed;
 821
 822/* See MS-SMB2 2.2.14.2.9 */
 823struct create_on_disk_id {
 824	struct create_context ccontext;
 825	__u8   Name[8];
 826	__le64 DiskFileId;
 827	__le64 VolumeId;
 828	__u32  Reserved[4];
 829} __packed;
 830
 831/* See MS-SMB2 2.2.14.2.12 */
 832struct durable_reconnect_context_v2_rsp {
 833	__le32 Timeout;
 834	__le32 Flags; /* see above DHANDLE_FLAG_PERSISTENT */
 835} __packed;
 836
 837struct create_durable_handle_reconnect_v2 {
 838	struct create_context ccontext;
 839	__u8   Name[8];
 840	struct durable_reconnect_context_v2 dcontext;
 841	__u8   Pad[4];
 842} __packed;
 843
 844/* See MS-SMB2 2.2.13.2.5 */
 845struct crt_twarp_ctxt {
 846	struct create_context ccontext;
 847	__u8	Name[8];
 848	__le64	Timestamp;
 849
 850} __packed;
 851
 852/* See MS-SMB2 2.2.13.2.9 */
 853struct crt_query_id_ctxt {
 854	struct create_context ccontext;
 855	__u8	Name[8];
 856} __packed;
 857
 
 
 
 
 
 
 
 858#define COPY_CHUNK_RES_KEY_SIZE	24
 859struct resume_key_req {
 860	char ResumeKey[COPY_CHUNK_RES_KEY_SIZE];
 861	__le32	ContextLength;	/* MBZ */
 862	char	Context[0];	/* ignored, Windows sets to 4 bytes of zero */
 863} __packed;
 864
 865/* this goes in the ioctl buffer when doing a copychunk request */
 866struct copychunk_ioctl {
 867	char SourceKey[COPY_CHUNK_RES_KEY_SIZE];
 868	__le32 ChunkCount; /* we are only sending 1 */
 869	__le32 Reserved;
 870	/* array will only be one chunk long for us */
 871	__le64 SourceOffset;
 872	__le64 TargetOffset;
 873	__le32 Length; /* how many bytes to copy */
 874	__u32 Reserved2;
 875} __packed;
 876
 877/* this goes in the ioctl buffer when doing FSCTL_SET_ZERO_DATA */
 878struct file_zero_data_information {
 879	__le64	FileOffset;
 880	__le64	BeyondFinalZero;
 881} __packed;
 882
 883struct copychunk_ioctl_rsp {
 884	__le32 ChunksWritten;
 885	__le32 ChunkBytesWritten;
 886	__le32 TotalBytesWritten;
 887} __packed;
 888
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 889struct fsctl_set_integrity_information_req {
 890	__le16	ChecksumAlgorithm;
 891	__le16	Reserved;
 892	__le32	Flags;
 893} __packed;
 894
 895struct fsctl_get_integrity_information_rsp {
 896	__le16	ChecksumAlgorithm;
 897	__le16	Reserved;
 898	__le32	Flags;
 899	__le32	ChecksumChunkSizeInBytes;
 900	__le32	ClusterSizeInBytes;
 901} __packed;
 902
 903struct file_allocated_range_buffer {
 904	__le64	file_offset;
 905	__le64	length;
 906} __packed;
 907
 908/* Integrity ChecksumAlgorithm choices for above */
 909#define	CHECKSUM_TYPE_NONE	0x0000
 910#define	CHECKSUM_TYPE_CRC64	0x0002
 911#define CHECKSUM_TYPE_UNCHANGED	0xFFFF	/* set only */
 912
 913/* Integrity flags for above */
 914#define FSCTL_INTEGRITY_FLAG_CHECKSUM_ENFORCEMENT_OFF	0x00000001
 915
 916/* Reparse structures - see MS-FSCC 2.1.2 */
 917
 918/* struct fsctl_reparse_info_req is empty, only response structs (see below) */
 919
 920struct reparse_data_buffer {
 921	__le32	ReparseTag;
 922	__le16	ReparseDataLength;
 923	__u16	Reserved;
 924	__u8	DataBuffer[0]; /* Variable Length */
 925} __packed;
 926
 927struct reparse_guid_data_buffer {
 928	__le32	ReparseTag;
 929	__le16	ReparseDataLength;
 930	__u16	Reserved;
 931	__u8	ReparseGuid[16];
 932	__u8	DataBuffer[0]; /* Variable Length */
 933} __packed;
 934
 935struct reparse_mount_point_data_buffer {
 936	__le32	ReparseTag;
 937	__le16	ReparseDataLength;
 938	__u16	Reserved;
 939	__le16	SubstituteNameOffset;
 940	__le16	SubstituteNameLength;
 941	__le16	PrintNameOffset;
 942	__le16	PrintNameLength;
 943	__u8	PathBuffer[0]; /* Variable Length */
 944} __packed;
 945
 946#define SYMLINK_FLAG_RELATIVE 0x00000001
 947
 948struct reparse_symlink_data_buffer {
 949	__le32	ReparseTag;
 950	__le16	ReparseDataLength;
 951	__u16	Reserved;
 952	__le16	SubstituteNameOffset;
 953	__le16	SubstituteNameLength;
 954	__le16	PrintNameOffset;
 955	__le16	PrintNameLength;
 956	__le32	Flags;
 957	__u8	PathBuffer[0]; /* Variable Length */
 958} __packed;
 959
 960/* See MS-FSCC 2.1.2.6 and cifspdu.h for struct reparse_posix_data */
 961
 962
 963/* See MS-DFSC 2.2.2 */
 964struct fsctl_get_dfs_referral_req {
 965	__le16 MaxReferralLevel;
 966	__u8 RequestFileName[];
 967} __packed;
 968
 969/* DFS response is struct get_dfs_refer_rsp */
 970
 971/* See MS-SMB2 2.2.31.3 */
 972struct network_resiliency_req {
 973	__le32 Timeout;
 974	__le32 Reserved;
 975} __packed;
 976/* There is no buffer for the response ie no struct network_resiliency_rsp */
 977
 978
 979struct validate_negotiate_info_req {
 980	__le32 Capabilities;
 981	__u8   Guid[SMB2_CLIENT_GUID_SIZE];
 982	__le16 SecurityMode;
 983	__le16 DialectCount;
 984	__le16 Dialects[4]; /* BB expand this if autonegotiate > 4 dialects */
 985} __packed;
 986
 987struct validate_negotiate_info_rsp {
 988	__le32 Capabilities;
 989	__u8   Guid[SMB2_CLIENT_GUID_SIZE];
 990	__le16 SecurityMode;
 991	__le16 Dialect; /* Dialect in use for the connection */
 992} __packed;
 993
 994#define RSS_CAPABLE	cpu_to_le32(0x00000001)
 995#define RDMA_CAPABLE	cpu_to_le32(0x00000002)
 996
 997#define INTERNETWORK	cpu_to_le16(0x0002)
 998#define INTERNETWORKV6	cpu_to_le16(0x0017)
 999
1000struct network_interface_info_ioctl_rsp {
1001	__le32 Next; /* next interface. zero if this is last one */
1002	__le32 IfIndex;
1003	__le32 Capability; /* RSS or RDMA Capable */
1004	__le32 Reserved;
1005	__le64 LinkSpeed;
1006	__le16 Family;
1007	__u8 Buffer[126];
1008} __packed;
1009
1010struct iface_info_ipv4 {
1011	__be16 Port;
1012	__be32 IPv4Address;
1013	__be64 Reserved;
1014} __packed;
1015
1016struct iface_info_ipv6 {
1017	__be16 Port;
1018	__be32 FlowInfo;
1019	__u8   IPv6Address[16];
1020	__be32 ScopeId;
1021} __packed;
1022
1023#define NO_FILE_ID 0xFFFFFFFFFFFFFFFFULL /* general ioctls to srv not to file */
1024
1025struct compress_ioctl {
1026	__le16 CompressionState; /* See cifspdu.h for possible flag values */
1027} __packed;
1028
1029struct duplicate_extents_to_file {
1030	__u64 PersistentFileHandle; /* source file handle, opaque endianness */
1031	__u64 VolatileFileHandle;
1032	__le64 SourceFileOffset;
1033	__le64 TargetFileOffset;
1034	__le64 ByteCount;  /* Bytes to be copied */
1035} __packed;
1036
1037/*
1038 * Maximum number of iovs we need for an ioctl request.
1039 * [0] : struct smb2_ioctl_req
1040 * [1] : in_data
1041 */
1042#define SMB2_IOCTL_IOV_SIZE 2
1043
1044struct smb2_ioctl_req {
1045	struct smb2_sync_hdr sync_hdr;
1046	__le16 StructureSize;	/* Must be 57 */
1047	__u16 Reserved;
1048	__le32 CtlCode;
1049	__u64  PersistentFileId; /* opaque endianness */
1050	__u64  VolatileFileId; /* opaque endianness */
1051	__le32 InputOffset;
1052	__le32 InputCount;
1053	__le32 MaxInputResponse;
1054	__le32 OutputOffset;
1055	__le32 OutputCount;
1056	__le32 MaxOutputResponse;
1057	__le32 Flags;
1058	__u32  Reserved2;
1059	__u8   Buffer[0];
1060} __packed;
1061
1062struct smb2_ioctl_rsp {
1063	struct smb2_sync_hdr sync_hdr;
1064	__le16 StructureSize;	/* Must be 57 */
1065	__u16 Reserved;
1066	__le32 CtlCode;
1067	__u64  PersistentFileId; /* opaque endianness */
1068	__u64  VolatileFileId; /* opaque endianness */
1069	__le32 InputOffset;
1070	__le32 InputCount;
1071	__le32 OutputOffset;
1072	__le32 OutputCount;
1073	__le32 Flags;
1074	__u32  Reserved2;
1075	/* char * buffer[] */
1076} __packed;
1077
1078/* Currently defined values for close flags */
1079#define SMB2_CLOSE_FLAG_POSTQUERY_ATTRIB	cpu_to_le16(0x0001)
1080struct smb2_close_req {
1081	struct smb2_sync_hdr sync_hdr;
1082	__le16 StructureSize;	/* Must be 24 */
1083	__le16 Flags;
1084	__le32 Reserved;
1085	__u64  PersistentFileId; /* opaque endianness */
1086	__u64  VolatileFileId; /* opaque endianness */
1087} __packed;
1088
1089/*
1090 * Maximum size of a SMB2_CLOSE response is 64 (smb2 header) + 60 (data)
1091 */
1092#define MAX_SMB2_CLOSE_RESPONSE_SIZE 124
1093
1094struct smb2_close_rsp {
1095	struct smb2_sync_hdr sync_hdr;
1096	__le16 StructureSize; /* 60 */
1097	__le16 Flags;
1098	__le32 Reserved;
1099	__le64 CreationTime;
1100	__le64 LastAccessTime;
1101	__le64 LastWriteTime;
1102	__le64 ChangeTime;
1103	__le64 AllocationSize;	/* Beginning of FILE_STANDARD_INFO equivalent */
1104	__le64 EndOfFile;
1105	__le32 Attributes;
1106} __packed;
1107
1108struct smb2_flush_req {
1109	struct smb2_sync_hdr sync_hdr;
1110	__le16 StructureSize;	/* Must be 24 */
1111	__le16 Reserved1;
1112	__le32 Reserved2;
1113	__u64  PersistentFileId; /* opaque endianness */
1114	__u64  VolatileFileId; /* opaque endianness */
1115} __packed;
1116
1117struct smb2_flush_rsp {
1118	struct smb2_sync_hdr sync_hdr;
1119	__le16 StructureSize;
1120	__le16 Reserved;
1121} __packed;
1122
1123/* For read request Flags field below, following flag is defined for SMB3.02 */
1124#define SMB2_READFLAG_READ_UNBUFFERED	0x01
1125#define SMB2_READFLAG_REQUEST_COMPRESSED 0x02 /* See MS-SMB2 2.2.19 */
1126
1127/* Channel field for read and write: exactly one of following flags can be set*/
1128#define SMB2_CHANNEL_NONE	cpu_to_le32(0x00000000)
1129#define SMB2_CHANNEL_RDMA_V1	cpu_to_le32(0x00000001) /* SMB3 or later */
1130#define SMB2_CHANNEL_RDMA_V1_INVALIDATE cpu_to_le32(0x00000002) /* >= SMB3.02 */
 
1131
1132/* SMB2 read request without RFC1001 length at the beginning */
1133struct smb2_read_plain_req {
1134	struct smb2_sync_hdr sync_hdr;
1135	__le16 StructureSize; /* Must be 49 */
1136	__u8   Padding; /* offset from start of SMB2 header to place read */
1137	__u8   Flags; /* MBZ unless SMB3.02 or later */
1138	__le32 Length;
1139	__le64 Offset;
1140	__u64  PersistentFileId; /* opaque endianness */
1141	__u64  VolatileFileId; /* opaque endianness */
1142	__le32 MinimumCount;
1143	__le32 Channel; /* MBZ except for SMB3 or later */
1144	__le32 RemainingBytes;
1145	__le16 ReadChannelInfoOffset;
1146	__le16 ReadChannelInfoLength;
1147	__u8   Buffer[1];
1148} __packed;
1149
 
 
 
 
1150struct smb2_read_rsp {
1151	struct smb2_sync_hdr sync_hdr;
1152	__le16 StructureSize; /* Must be 17 */
1153	__u8   DataOffset;
1154	__u8   Reserved;
1155	__le32 DataLength;
1156	__le32 DataRemaining;
1157	__u32  Reserved2;
1158	__u8   Buffer[1];
1159} __packed;
1160
1161/* For write request Flags field below the following flags are defined: */
1162#define SMB2_WRITEFLAG_WRITE_THROUGH	0x00000001	/* SMB2.1 or later */
1163#define SMB2_WRITEFLAG_WRITE_UNBUFFERED	0x00000002	/* SMB3.02 or later */
1164
1165struct smb2_write_req {
1166	struct smb2_sync_hdr sync_hdr;
1167	__le16 StructureSize; /* Must be 49 */
1168	__le16 DataOffset; /* offset from start of SMB2 header to write data */
1169	__le32 Length;
1170	__le64 Offset;
1171	__u64  PersistentFileId; /* opaque endianness */
1172	__u64  VolatileFileId; /* opaque endianness */
1173	__le32 Channel; /* Reserved MBZ */
1174	__le32 RemainingBytes;
1175	__le16 WriteChannelInfoOffset;
1176	__le16 WriteChannelInfoLength;
1177	__le32 Flags;
1178	__u8   Buffer[1];
1179} __packed;
1180
1181struct smb2_write_rsp {
1182	struct smb2_sync_hdr sync_hdr;
1183	__le16 StructureSize; /* Must be 17 */
1184	__u8   DataOffset;
1185	__u8   Reserved;
1186	__le32 DataLength;
1187	__le32 DataRemaining;
1188	__u32  Reserved2;
1189	__u8   Buffer[1];
1190} __packed;
1191
1192/* notify flags */
1193#define SMB2_WATCH_TREE			0x0001
1194
1195/* notify completion filter flags. See MS-FSCC 2.6 and MS-SMB2 2.2.35 */
1196#define FILE_NOTIFY_CHANGE_FILE_NAME		0x00000001
1197#define FILE_NOTIFY_CHANGE_DIR_NAME		0x00000002
1198#define FILE_NOTIFY_CHANGE_ATTRIBUTES		0x00000004
1199#define FILE_NOTIFY_CHANGE_SIZE			0x00000008
1200#define FILE_NOTIFY_CHANGE_LAST_WRITE		0x00000010
1201#define FILE_NOTIFY_CHANGE_LAST_ACCESS		0x00000020
1202#define FILE_NOTIFY_CHANGE_CREATION		0x00000040
1203#define FILE_NOTIFY_CHANGE_EA			0x00000080
1204#define FILE_NOTIFY_CHANGE_SECURITY		0x00000100
1205#define FILE_NOTIFY_CHANGE_STREAM_NAME		0x00000200
1206#define FILE_NOTIFY_CHANGE_STREAM_SIZE		0x00000400
1207#define FILE_NOTIFY_CHANGE_STREAM_WRITE		0x00000800
1208
1209struct smb2_change_notify_req {
1210	struct smb2_sync_hdr sync_hdr;
1211	__le16	StructureSize;
1212	__le16	Flags;
1213	__le32	OutputBufferLength;
1214	__u64	PersistentFileId; /* opaque endianness */
1215	__u64	VolatileFileId; /* opaque endianness */
1216	__le32	CompletionFilter;
1217	__u32	Reserved;
1218} __packed;
1219
1220struct smb2_change_notify_rsp {
1221	struct smb2_sync_hdr sync_hdr;
1222	__le16	StructureSize;  /* Must be 9 */
1223	__le16	OutputBufferOffset;
1224	__le32	OutputBufferLength;
1225	__u8	Buffer[1]; /* array of file notify structs */
1226} __packed;
1227
1228#define SMB2_LOCKFLAG_SHARED_LOCK	0x0001
1229#define SMB2_LOCKFLAG_EXCLUSIVE_LOCK	0x0002
1230#define SMB2_LOCKFLAG_UNLOCK		0x0004
1231#define SMB2_LOCKFLAG_FAIL_IMMEDIATELY	0x0010
1232
1233struct smb2_lock_element {
1234	__le64 Offset;
1235	__le64 Length;
1236	__le32 Flags;
1237	__le32 Reserved;
1238} __packed;
1239
1240struct smb2_lock_req {
1241	struct smb2_sync_hdr sync_hdr;
1242	__le16 StructureSize; /* Must be 48 */
1243	__le16 LockCount;
1244	__le32 Reserved;
 
 
 
 
1245	__u64  PersistentFileId; /* opaque endianness */
1246	__u64  VolatileFileId; /* opaque endianness */
1247	/* Followed by at least one */
1248	struct smb2_lock_element locks[1];
1249} __packed;
1250
1251struct smb2_lock_rsp {
1252	struct smb2_sync_hdr sync_hdr;
1253	__le16 StructureSize; /* Must be 4 */
1254	__le16 Reserved;
1255} __packed;
1256
1257struct smb2_echo_req {
1258	struct smb2_sync_hdr sync_hdr;
1259	__le16 StructureSize;	/* Must be 4 */
1260	__u16  Reserved;
1261} __packed;
1262
1263struct smb2_echo_rsp {
1264	struct smb2_sync_hdr sync_hdr;
1265	__le16 StructureSize;	/* Must be 4 */
1266	__u16  Reserved;
1267} __packed;
1268
1269/* search (query_directory) Flags field */
1270#define SMB2_RESTART_SCANS		0x01
1271#define SMB2_RETURN_SINGLE_ENTRY	0x02
1272#define SMB2_INDEX_SPECIFIED		0x04
1273#define SMB2_REOPEN			0x10
1274
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1275struct smb2_query_directory_req {
1276	struct smb2_sync_hdr sync_hdr;
1277	__le16 StructureSize; /* Must be 33 */
1278	__u8   FileInformationClass;
1279	__u8   Flags;
1280	__le32 FileIndex;
1281	__u64  PersistentFileId; /* opaque endianness */
1282	__u64  VolatileFileId; /* opaque endianness */
1283	__le16 FileNameOffset;
1284	__le16 FileNameLength;
1285	__le32 OutputBufferLength;
1286	__u8   Buffer[1];
1287} __packed;
1288
1289struct smb2_query_directory_rsp {
1290	struct smb2_sync_hdr sync_hdr;
1291	__le16 StructureSize; /* Must be 9 */
1292	__le16 OutputBufferOffset;
1293	__le32 OutputBufferLength;
1294	__u8   Buffer[1];
1295} __packed;
1296
1297/* Possible InfoType values */
1298#define SMB2_O_INFO_FILE	0x01
1299#define SMB2_O_INFO_FILESYSTEM	0x02
1300#define SMB2_O_INFO_SECURITY	0x03
1301#define SMB2_O_INFO_QUOTA	0x04
1302
1303/* Security info type additionalinfo flags. See MS-SMB2 (2.2.37) or MS-DTYP */
1304#define OWNER_SECINFO   0x00000001
1305#define GROUP_SECINFO   0x00000002
1306#define DACL_SECINFO   0x00000004
1307#define SACL_SECINFO   0x00000008
1308#define LABEL_SECINFO   0x00000010
1309#define ATTRIBUTE_SECINFO   0x00000020
1310#define SCOPE_SECINFO   0x00000040
1311#define BACKUP_SECINFO   0x00010000
1312#define UNPROTECTED_SACL_SECINFO   0x10000000
1313#define UNPROTECTED_DACL_SECINFO   0x20000000
1314#define PROTECTED_SACL_SECINFO   0x40000000
1315#define PROTECTED_DACL_SECINFO   0x80000000
1316
1317/* Flags used for FileFullEAinfo */
1318#define SL_RESTART_SCAN		0x00000001
1319#define SL_RETURN_SINGLE_ENTRY	0x00000002
1320#define SL_INDEX_SPECIFIED	0x00000004
1321
1322struct smb2_query_info_req {
1323	struct smb2_sync_hdr sync_hdr;
1324	__le16 StructureSize; /* Must be 41 */
1325	__u8   InfoType;
1326	__u8   FileInfoClass;
1327	__le32 OutputBufferLength;
1328	__le16 InputBufferOffset;
1329	__u16  Reserved;
1330	__le32 InputBufferLength;
1331	__le32 AdditionalInformation;
1332	__le32 Flags;
1333	__u64  PersistentFileId; /* opaque endianness */
1334	__u64  VolatileFileId; /* opaque endianness */
1335	__u8   Buffer[1];
1336} __packed;
1337
1338struct smb2_query_info_rsp {
1339	struct smb2_sync_hdr sync_hdr;
1340	__le16 StructureSize; /* Must be 9 */
1341	__le16 OutputBufferOffset;
1342	__le32 OutputBufferLength;
1343	__u8   Buffer[1];
1344} __packed;
1345
1346/*
1347 * Maximum number of iovs we need for a set-info request.
1348 * The largest one is rename/hardlink
1349 * [0] : struct smb2_set_info_req + smb2_file_[rename|link]_info
1350 * [1] : path
1351 * [2] : compound padding
1352 */
1353#define SMB2_SET_INFO_IOV_SIZE 3
1354
1355struct smb2_set_info_req {
1356	struct smb2_sync_hdr sync_hdr;
1357	__le16 StructureSize; /* Must be 33 */
1358	__u8   InfoType;
1359	__u8   FileInfoClass;
1360	__le32 BufferLength;
1361	__le16 BufferOffset;
1362	__u16  Reserved;
1363	__le32 AdditionalInformation;
1364	__u64  PersistentFileId; /* opaque endianness */
1365	__u64  VolatileFileId; /* opaque endianness */
1366	__u8   Buffer[1];
1367} __packed;
1368
1369struct smb2_set_info_rsp {
1370	struct smb2_sync_hdr sync_hdr;
1371	__le16 StructureSize; /* Must be 2 */
1372} __packed;
1373
1374struct smb2_oplock_break {
1375	struct smb2_sync_hdr sync_hdr;
1376	__le16 StructureSize; /* Must be 24 */
1377	__u8   OplockLevel;
1378	__u8   Reserved;
1379	__le32 Reserved2;
1380	__u64  PersistentFid;
1381	__u64  VolatileFid;
1382} __packed;
1383
1384#define SMB2_NOTIFY_BREAK_LEASE_FLAG_ACK_REQUIRED cpu_to_le32(0x01)
1385
1386struct smb2_lease_break {
1387	struct smb2_sync_hdr sync_hdr;
1388	__le16 StructureSize; /* Must be 44 */
1389	__le16 Reserved;
1390	__le32 Flags;
1391	__u8   LeaseKey[16];
1392	__le32 CurrentLeaseState;
1393	__le32 NewLeaseState;
1394	__le32 BreakReason;
1395	__le32 AccessMaskHint;
1396	__le32 ShareMaskHint;
1397} __packed;
1398
1399struct smb2_lease_ack {
1400	struct smb2_sync_hdr sync_hdr;
1401	__le16 StructureSize; /* Must be 36 */
1402	__le16 Reserved;
1403	__le32 Flags;
1404	__u8   LeaseKey[16];
1405	__le32 LeaseState;
1406	__le64 LeaseDuration;
1407} __packed;
1408
1409/*
1410 *	PDU infolevel structure definitions
1411 *	BB consider moving to a different header
1412 */
1413
1414/* File System Information Classes */
1415#define FS_VOLUME_INFORMATION		1 /* Query */
1416#define FS_LABEL_INFORMATION		2 /* Local only */
1417#define FS_SIZE_INFORMATION		3 /* Query */
1418#define FS_DEVICE_INFORMATION		4 /* Query */
1419#define FS_ATTRIBUTE_INFORMATION	5 /* Query */
1420#define FS_CONTROL_INFORMATION		6 /* Query, Set */
1421#define FS_FULL_SIZE_INFORMATION	7 /* Query */
1422#define FS_OBJECT_ID_INFORMATION	8 /* Query, Set */
1423#define FS_DRIVER_PATH_INFORMATION	9 /* Local only */
1424#define FS_VOLUME_FLAGS_INFORMATION	10 /* Local only */
1425#define FS_SECTOR_SIZE_INFORMATION	11 /* SMB3 or later. Query */
1426#define FS_POSIX_INFORMATION		100 /* SMB3.1.1 POSIX. Query */
1427
1428struct smb2_fs_full_size_info {
1429	__le64 TotalAllocationUnits;
1430	__le64 CallerAvailableAllocationUnits;
1431	__le64 ActualAvailableAllocationUnits;
1432	__le32 SectorsPerAllocationUnit;
1433	__le32 BytesPerSector;
1434} __packed;
1435
1436#define SSINFO_FLAGS_ALIGNED_DEVICE		0x00000001
1437#define SSINFO_FLAGS_PARTITION_ALIGNED_ON_DEVICE 0x00000002
1438#define SSINFO_FLAGS_NO_SEEK_PENALTY		0x00000004
1439#define SSINFO_FLAGS_TRIM_ENABLED		0x00000008
1440
1441/* sector size info struct */
1442struct smb3_fs_ss_info {
1443	__le32 LogicalBytesPerSector;
1444	__le32 PhysicalBytesPerSectorForAtomicity;
1445	__le32 PhysicalBytesPerSectorForPerf;
1446	__le32 FileSystemEffectivePhysicalBytesPerSectorForAtomicity;
1447	__le32 Flags;
1448	__le32 ByteOffsetForSectorAlignment;
1449	__le32 ByteOffsetForPartitionAlignment;
1450} __packed;
1451
1452/* volume info struct - see MS-FSCC 2.5.9 */
1453#define MAX_VOL_LABEL_LEN	32
1454struct smb3_fs_vol_info {
1455	__le64	VolumeCreationTime;
1456	__u32	VolumeSerialNumber;
1457	__le32	VolumeLabelLength; /* includes trailing null */
1458	__u8	SupportsObjects; /* True if eg like NTFS, supports objects */
1459	__u8	Reserved;
1460	__u8	VolumeLabel[0]; /* variable len */
1461} __packed;
1462
1463/* partial list of QUERY INFO levels */
1464#define FILE_DIRECTORY_INFORMATION	1
1465#define FILE_FULL_DIRECTORY_INFORMATION 2
1466#define FILE_BOTH_DIRECTORY_INFORMATION 3
1467#define FILE_BASIC_INFORMATION		4
1468#define FILE_STANDARD_INFORMATION	5
1469#define FILE_INTERNAL_INFORMATION	6
1470#define FILE_EA_INFORMATION	        7
1471#define FILE_ACCESS_INFORMATION		8
1472#define FILE_NAME_INFORMATION		9
1473#define FILE_RENAME_INFORMATION		10
1474#define FILE_LINK_INFORMATION		11
1475#define FILE_NAMES_INFORMATION		12
1476#define FILE_DISPOSITION_INFORMATION	13
1477#define FILE_POSITION_INFORMATION	14
1478#define FILE_FULL_EA_INFORMATION	15
1479#define FILE_MODE_INFORMATION		16
1480#define FILE_ALIGNMENT_INFORMATION	17
1481#define FILE_ALL_INFORMATION		18
1482#define FILE_ALLOCATION_INFORMATION	19
1483#define FILE_END_OF_FILE_INFORMATION	20
1484#define FILE_ALTERNATE_NAME_INFORMATION 21
1485#define FILE_STREAM_INFORMATION		22
1486#define FILE_PIPE_INFORMATION		23
1487#define FILE_PIPE_LOCAL_INFORMATION	24
1488#define FILE_PIPE_REMOTE_INFORMATION	25
1489#define FILE_MAILSLOT_QUERY_INFORMATION 26
1490#define FILE_MAILSLOT_SET_INFORMATION	27
1491#define FILE_COMPRESSION_INFORMATION	28
1492#define FILE_OBJECT_ID_INFORMATION	29
1493/* Number 30 not defined in documents */
1494#define FILE_MOVE_CLUSTER_INFORMATION	31
1495#define FILE_QUOTA_INFORMATION		32
1496#define FILE_REPARSE_POINT_INFORMATION	33
1497#define FILE_NETWORK_OPEN_INFORMATION	34
1498#define FILE_ATTRIBUTE_TAG_INFORMATION	35
1499#define FILE_TRACKING_INFORMATION	36
1500#define FILEID_BOTH_DIRECTORY_INFORMATION 37
1501#define FILEID_FULL_DIRECTORY_INFORMATION 38
1502#define FILE_VALID_DATA_LENGTH_INFORMATION 39
1503#define FILE_SHORT_NAME_INFORMATION	40
1504#define FILE_SFIO_RESERVE_INFORMATION	44
1505#define FILE_SFIO_VOLUME_INFORMATION	45
1506#define FILE_HARD_LINK_INFORMATION	46
1507#define FILE_NORMALIZED_NAME_INFORMATION 48
1508#define FILEID_GLOBAL_TX_DIRECTORY_INFORMATION 50
1509#define FILE_STANDARD_LINK_INFORMATION	54
 
 
1510
1511struct smb2_file_internal_info {
1512	__le64 IndexNumber;
1513} __packed; /* level 6 Query */
1514
1515struct smb2_file_rename_info { /* encoding of request for level 10 */
1516	__u8   ReplaceIfExists; /* 1 = replace existing target with new */
1517				/* 0 = fail if target already exists */
1518	__u8   Reserved[7];
1519	__u64  RootDirectory;  /* MBZ for network operations (why says spec?) */
1520	__le32 FileNameLength;
1521	char   FileName[0];     /* New name to be assigned */
 
1522} __packed; /* level 10 Set */
1523
1524struct smb2_file_link_info { /* encoding of request for level 11 */
1525	__u8   ReplaceIfExists; /* 1 = replace existing link with new */
1526				/* 0 = fail if link already exists */
1527	__u8   Reserved[7];
1528	__u64  RootDirectory;  /* MBZ for network operations (why says spec?) */
1529	__le32 FileNameLength;
1530	char   FileName[0];     /* Name to be assigned to new link */
1531} __packed; /* level 11 Set */
1532
1533struct smb2_file_full_ea_info { /* encoding of response for level 15 */
1534	__le32 next_entry_offset;
1535	__u8   flags;
1536	__u8   ea_name_length;
1537	__le16 ea_value_length;
1538	char   ea_data[0]; /* \0 terminated name plus value */
1539} __packed; /* level 15 Set */
1540
1541/*
1542 * This level 18, although with struct with same name is different from cifs
1543 * level 0x107. Level 0x107 has an extra u64 between AccessFlags and
1544 * CurrentByteOffset.
1545 */
1546struct smb2_file_all_info { /* data block encoding of response to level 18 */
1547	__le64 CreationTime;	/* Beginning of FILE_BASIC_INFO equivalent */
1548	__le64 LastAccessTime;
1549	__le64 LastWriteTime;
1550	__le64 ChangeTime;
1551	__le32 Attributes;
1552	__u32  Pad1;		/* End of FILE_BASIC_INFO_INFO equivalent */
1553	__le64 AllocationSize;	/* Beginning of FILE_STANDARD_INFO equivalent */
1554	__le64 EndOfFile;	/* size ie offset to first free byte in file */
1555	__le32 NumberOfLinks;	/* hard links */
1556	__u8   DeletePending;
1557	__u8   Directory;
1558	__u16  Pad2;		/* End of FILE_STANDARD_INFO equivalent */
1559	__le64 IndexNumber;
1560	__le32 EASize;
1561	__le32 AccessFlags;
1562	__le64 CurrentByteOffset;
1563	__le32 Mode;
1564	__le32 AlignmentRequirement;
1565	__le32 FileNameLength;
1566	char   FileName[1];
1567} __packed; /* level 18 Query */
1568
1569struct smb2_file_eof_info { /* encoding of request for level 10 */
1570	__le64 EndOfFile; /* new end of file value */
1571} __packed; /* level 20 Set */
1572
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1573extern char smb2_padding[7];
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1574
1575#endif				/* _SMB2PDU_H */