]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - fs/cifs/cifspdu.h
[CIFS] CIFS readdir perf optimizations part 1
[mirror_ubuntu-bionic-kernel.git] / fs / cifs / cifspdu.h
CommitLineData
1da177e4
LT
1/*
2 * fs/cifs/cifspdu.h
3 *
bf820679 4 * Copyright (c) International Business Machines Corp., 2002,2005
1da177e4
LT
5 * Author(s): Steve French (sfrench@us.ibm.com)
6 *
7 * This library is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU Lesser General Public License as published
9 * by the Free Software Foundation; either version 2.1 of the License, or
10 * (at your option) any later version.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
15 * the GNU Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public License
18 * along with this library; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 */
21
22#ifndef _CIFSPDU_H
23#define _CIFSPDU_H
24
25#include <net/sock.h>
26
27#define CIFS_PROT 0
28#define BAD_PROT CIFS_PROT+1
29
30/* SMB command codes */
31/* Some commands have minimal (wct=0,bcc=0), or uninteresting, responses
32 (ie which include no useful data other than the SMB error code itself).
33 Knowing this helps avoid response buffer allocations and copy in some cases */
34#define SMB_COM_CREATE_DIRECTORY 0x00 /* trivial response */
35#define SMB_COM_DELETE_DIRECTORY 0x01 /* trivial response */
36#define SMB_COM_CLOSE 0x04 /* triv req/rsp, timestamp ignored */
37#define SMB_COM_DELETE 0x06 /* trivial response */
38#define SMB_COM_RENAME 0x07 /* trivial response */
6b8edfe0 39#define SMB_COM_QUERY_INFORMATION 0x08 /* aka getattr */
1da177e4
LT
40#define SMB_COM_SETATTR 0x09 /* trivial response */
41#define SMB_COM_LOCKING_ANDX 0x24 /* trivial response */
42#define SMB_COM_COPY 0x29 /* trivial rsp, fail filename ignrd*/
a9d02ad4 43#define SMB_COM_OPEN_ANDX 0x2D /* Legacy open for old servers */
1da177e4
LT
44#define SMB_COM_READ_ANDX 0x2E
45#define SMB_COM_WRITE_ANDX 0x2F
46#define SMB_COM_TRANSACTION2 0x32
47#define SMB_COM_TRANSACTION2_SECONDARY 0x33
48#define SMB_COM_FIND_CLOSE2 0x34 /* trivial response */
49#define SMB_COM_TREE_DISCONNECT 0x71 /* trivial response */
50#define SMB_COM_NEGOTIATE 0x72
51#define SMB_COM_SESSION_SETUP_ANDX 0x73
52#define SMB_COM_LOGOFF_ANDX 0x74 /* trivial response */
53#define SMB_COM_TREE_CONNECT_ANDX 0x75
54#define SMB_COM_NT_TRANSACT 0xA0
55#define SMB_COM_NT_TRANSACT_SECONDARY 0xA1
56#define SMB_COM_NT_CREATE_ANDX 0xA2
ff5dbd9e 57#define SMB_COM_NT_CANCEL 0xA4 /* no response */
1da177e4
LT
58#define SMB_COM_NT_RENAME 0xA5 /* trivial response */
59
60/* Transact2 subcommand codes */
61#define TRANS2_OPEN 0x00
62#define TRANS2_FIND_FIRST 0x01
63#define TRANS2_FIND_NEXT 0x02
64#define TRANS2_QUERY_FS_INFORMATION 0x03
ac67055e 65#define TRANS2_SET_FS_INFORMATION 0x04
1da177e4
LT
66#define TRANS2_QUERY_PATH_INFORMATION 0x05
67#define TRANS2_SET_PATH_INFORMATION 0x06
68#define TRANS2_QUERY_FILE_INFORMATION 0x07
69#define TRANS2_SET_FILE_INFORMATION 0x08
70#define TRANS2_GET_DFS_REFERRAL 0x10
71#define TRANS2_REPORT_DFS_INCOSISTENCY 0x11
72
73/* NT Transact subcommand codes */
74#define NT_TRANSACT_CREATE 0x01
75#define NT_TRANSACT_IOCTL 0x02
76#define NT_TRANSACT_SET_SECURITY_DESC 0x03
77#define NT_TRANSACT_NOTIFY_CHANGE 0x04
78#define NT_TRANSACT_RENAME 0x05
79#define NT_TRANSACT_QUERY_SECURITY_DESC 0x06
80#define NT_TRANSACT_GET_USER_QUOTA 0x07
81#define NT_TRANSACT_SET_USER_QUOTA 0x08
82
ec637e3f
SF
83#define MAX_CIFS_SMALL_BUFFER_SIZE 448 /* big enough for most */
84/* future chained NTCreateXReadX bigger, but for time being NTCreateX biggest */
85/* among the requests (NTCreateX response is bigger with wct of 34) */
86#define MAX_CIFS_HDR_SIZE 0x58 /* 4 len + 32 hdr + (2*24 wct) + 2 bct + 2 pad */
87#define CIFS_SMALL_PATH 120 /* allows for (448-88)/3 */
1da177e4
LT
88
89/* internal cifs vfs structures */
90/*****************************************************************
91 * All constants go here
92 *****************************************************************
93 */
94
95/*
96 * Starting value for maximum SMB size negotiation
97 */
98#define CIFS_MAX_MSGSIZE (4*4096)
99
100/*
101 * Size of encrypted user password in bytes
102 */
103#define CIFS_ENCPWD_SIZE (16)
104
105/*
106 * Size of the crypto key returned on the negotiate SMB in bytes
107 */
108#define CIFS_CRYPTO_KEY_SIZE (8)
109
110/*
111 * Size of the session key (crypto key encrypted with the password
112 */
113#define CIFS_SESSION_KEY_SIZE (24)
114
115/*
116 * Maximum user name length
117 */
118#define CIFS_UNLEN (20)
119
120/*
121 * Flags on SMB open
122 */
123#define SMBOPEN_WRITE_THROUGH 0x4000
124#define SMBOPEN_DENY_ALL 0x0010
125#define SMBOPEN_DENY_WRITE 0x0020
126#define SMBOPEN_DENY_READ 0x0030
127#define SMBOPEN_DENY_NONE 0x0040
128#define SMBOPEN_READ 0x0000
129#define SMBOPEN_WRITE 0x0001
130#define SMBOPEN_READWRITE 0x0002
131#define SMBOPEN_EXECUTE 0x0003
132
133#define SMBOPEN_OCREATE 0x0010
134#define SMBOPEN_OTRUNC 0x0002
135#define SMBOPEN_OAPPEND 0x0001
136
137/*
138 * SMB flag definitions
139 */
0753ca7b 140#define SMBFLG_EXTD_LOCK 0x01 /* server supports lock-read write-unlock smb */
1da177e4
LT
141#define SMBFLG_RCV_POSTED 0x02 /* obsolete */
142#define SMBFLG_RSVD 0x04
0753ca7b
SF
143#define SMBFLG_CASELESS 0x08 /* all pathnames treated as caseless (off
144 implies case sensitive file handling request) */
1da177e4
LT
145#define SMBFLG_CANONICAL_PATH_FORMAT 0x10 /* obsolete */
146#define SMBFLG_OLD_OPLOCK 0x20 /* obsolete */
147#define SMBFLG_OLD_OPLOCK_NOTIFY 0x40 /* obsolete */
148#define SMBFLG_RESPONSE 0x80 /* this PDU is a response from server */
149
150/*
151 * SMB flag2 definitions
152 */
0753ca7b
SF
153#define SMBFLG2_KNOWS_LONG_NAMES cpu_to_le16(1) /* can send long (non-8.3)
154 path names in response */
1da177e4
LT
155#define SMBFLG2_KNOWS_EAS cpu_to_le16(2)
156#define SMBFLG2_SECURITY_SIGNATURE cpu_to_le16(4)
157#define SMBFLG2_IS_LONG_NAME cpu_to_le16(0x40)
158#define SMBFLG2_EXT_SEC cpu_to_le16(0x800)
159#define SMBFLG2_DFS cpu_to_le16(0x1000)
160#define SMBFLG2_PAGING_IO cpu_to_le16(0x2000)
161#define SMBFLG2_ERR_STATUS cpu_to_le16(0x4000)
162#define SMBFLG2_UNICODE cpu_to_le16(0x8000)
163
164/*
165 * These are the file access permission bits defined in CIFS for the
166 * NTCreateAndX as well as the level 0x107
167 * TRANS2_QUERY_PATH_INFORMATION API. The level 0x107, SMB_QUERY_FILE_ALL_INFO
168 * responds with the AccessFlags.
169 * The AccessFlags specifies the access permissions a caller has to the
170 * file and can have any suitable combination of the following values:
171 */
172
0753ca7b
SF
173#define FILE_READ_DATA 0x00000001 /* Data can be read from the file */
174#define FILE_WRITE_DATA 0x00000002 /* Data can be written to the file */
175#define FILE_APPEND_DATA 0x00000004 /* Data can be appended to the file */
176#define FILE_READ_EA 0x00000008 /* Extended attributes associated */
177 /* with the file can be read */
178#define FILE_WRITE_EA 0x00000010 /* Extended attributes associated */
179 /* with the file can be written */
180#define FILE_EXECUTE 0x00000020 /*Data can be read into memory from */
181 /* the file using system paging I/O */
1da177e4 182#define FILE_DELETE_CHILD 0x00000040
0753ca7b
SF
183#define FILE_READ_ATTRIBUTES 0x00000080 /* Attributes associated with the */
184 /* file can be read */
185#define FILE_WRITE_ATTRIBUTES 0x00000100 /* Attributes associated with the */
186 /* file can be written */
187#define DELETE 0x00010000 /* The file can be deleted */
188#define READ_CONTROL 0x00020000 /* The access control list and */
189 /* ownership associated with the */
190 /* file can be read */
191#define WRITE_DAC 0x00040000 /* The access control list and */
192 /* ownership associated with the */
193 /* file can be written. */
194#define WRITE_OWNER 0x00080000 /* Ownership information associated */
195 /* with the file can be written */
196#define SYNCHRONIZE 0x00100000 /* The file handle can waited on to */
197 /* synchronize with the completion */
198 /* of an input/output request */
1da177e4
LT
199#define GENERIC_ALL 0x10000000
200#define GENERIC_EXECUTE 0x20000000
201#define GENERIC_WRITE 0x40000000
202#define GENERIC_READ 0x80000000
203 /* In summary - Relevant file */
204 /* access flags from CIFS are */
205 /* file_read_data, file_write_data */
0753ca7b 206 /* file_execute, file_read_attributes*/
1da177e4
LT
207 /* write_dac, and delete. */
208
209/*
210 * Invalid readdir handle
211 */
212#define CIFS_NO_HANDLE 0xFFFF
213
214/* IPC$ in ASCII */
215#define CIFS_IPC_RESOURCE "\x49\x50\x43\x24"
216
217/* IPC$ in Unicode */
218#define CIFS_IPC_UNICODE_RESOURCE "\x00\x49\x00\x50\x00\x43\x00\x24\x00\x00"
219
220/* Unicode Null terminate 2 bytes of 0 */
221#define UNICODE_NULL "\x00\x00"
222#define ASCII_NULL 0x00
223
224/*
225 * Server type values (returned on EnumServer API
226 */
227#define CIFS_SV_TYPE_DC 0x00000008
228#define CIFS_SV_TYPE_BACKDC 0x00000010
229
230/*
231 * Alias type flags (From EnumAlias API call
232 */
233#define CIFS_ALIAS_TYPE_FILE 0x0001
234#define CIFS_SHARE_TYPE_FILE 0x0000
235
236/*
237 * File Attribute flags
238 */
239#define ATTR_READONLY 0x0001
240#define ATTR_HIDDEN 0x0002
241#define ATTR_SYSTEM 0x0004
242#define ATTR_VOLUME 0x0008
243#define ATTR_DIRECTORY 0x0010
244#define ATTR_ARCHIVE 0x0020
245#define ATTR_DEVICE 0x0040
246#define ATTR_NORMAL 0x0080
247#define ATTR_TEMPORARY 0x0100
248#define ATTR_SPARSE 0x0200
249#define ATTR_REPARSE 0x0400
250#define ATTR_COMPRESSED 0x0800
0753ca7b
SF
251#define ATTR_OFFLINE 0x1000 /* ie file not immediately available -
252 on offline storage */
1da177e4
LT
253#define ATTR_NOT_CONTENT_INDEXED 0x2000
254#define ATTR_ENCRYPTED 0x4000
255#define ATTR_POSIX_SEMANTICS 0x01000000
256#define ATTR_BACKUP_SEMANTICS 0x02000000
257#define ATTR_DELETE_ON_CLOSE 0x04000000
258#define ATTR_SEQUENTIAL_SCAN 0x08000000
259#define ATTR_RANDOM_ACCESS 0x10000000
260#define ATTR_NO_BUFFERING 0x20000000
261#define ATTR_WRITE_THROUGH 0x80000000
262
263/* ShareAccess flags */
264#define FILE_NO_SHARE 0x00000000
265#define FILE_SHARE_READ 0x00000001
266#define FILE_SHARE_WRITE 0x00000002
267#define FILE_SHARE_DELETE 0x00000004
268#define FILE_SHARE_ALL 0x00000007
269
270/* CreateDisposition flags */
271#define FILE_SUPERSEDE 0x00000000
272#define FILE_OPEN 0x00000001
273#define FILE_CREATE 0x00000002
274#define FILE_OPEN_IF 0x00000003
275#define FILE_OVERWRITE 0x00000004
276#define FILE_OVERWRITE_IF 0x00000005
277
278/* CreateOptions */
279#define CREATE_NOT_FILE 0x00000001 /* if set must not be file */
280#define CREATE_WRITE_THROUGH 0x00000002
eda3c029
SF
281#define CREATE_SEQUENTIAL 0x00000004
282#define CREATE_SYNC_ALERT 0x00000010
283#define CREATE_ASYNC_ALERT 0x00000020
284#define CREATE_NOT_DIR 0x00000040 /* if set must not be directory */
285#define CREATE_NO_EA_KNOWLEDGE 0x00000200
286#define CREATE_EIGHT_DOT_THREE 0x00000400
1da177e4
LT
287#define CREATE_RANDOM_ACCESS 0x00000800
288#define CREATE_DELETE_ON_CLOSE 0x00001000
eda3c029 289#define CREATE_OPEN_BY_ID 0x00002000
1da177e4 290#define OPEN_REPARSE_POINT 0x00200000
eda3c029
SF
291#define CREATE_OPTIONS_MASK 0x007FFFFF
292#define CREATE_OPTION_SPECIAL 0x20000000 /* system. NB not sent over wire */
1da177e4
LT
293
294/* ImpersonationLevel flags */
295#define SECURITY_ANONYMOUS 0
296#define SECURITY_IDENTIFICATION 1
297#define SECURITY_IMPERSONATION 2
298#define SECURITY_DELEGATION 3
299
300/* SecurityFlags */
301#define SECURITY_CONTEXT_TRACKING 0x01
302#define SECURITY_EFFECTIVE_ONLY 0x02
303
304/*
305 * Default PID value, used in all SMBs where the PID is not important
306 */
307#define CIFS_DFT_PID 0x1234
308
309/*
310 * We use the same routine for Copy and Move SMBs. This flag is used to
311 * distinguish
312 */
313#define CIFS_COPY_OP 1
314#define CIFS_RENAME_OP 2
315
316#define GETU16(var) (*((__u16 *)var)) /* BB check for endian issues */
317#define GETU32(var) (*((__u32 *)var)) /* BB check for endian issues */
318
1da177e4 319struct smb_hdr {
0753ca7b
SF
320 __u32 smb_buf_length; /* big endian on wire *//* BB length is only two
321 or three bytes - with one or two byte type preceding it that are
322 zero - we could mask the type byte off just in case BB */
1da177e4
LT
323 __u8 Protocol[4];
324 __u8 Command;
325 union {
326 struct {
327 __u8 ErrorClass;
328 __u8 Reserved;
329 __le16 Error;
0753ca7b 330 } __attribute__((packed)) DosError;
1da177e4 331 __le32 CifsError;
0753ca7b 332 } __attribute__((packed)) Status;
1da177e4
LT
333 __u8 Flags;
334 __le16 Flags2; /* note: le */
335 __le16 PidHigh;
336 union {
337 struct {
338 __le32 SequenceNumber; /* le */
339 __u32 Reserved; /* zero */
0753ca7b 340 } __attribute__((packed)) Sequence;
1da177e4 341 __u8 SecuritySignature[8]; /* le */
0753ca7b 342 } __attribute__((packed)) Signature;
1da177e4
LT
343 __u8 pad[2];
344 __u16 Tid;
345 __le16 Pid;
346 __u16 Uid;
347 __u16 Mid;
348 __u8 WordCount;
0753ca7b 349} __attribute__((packed));
1da177e4
LT
350/* given a pointer to an smb_hdr retrieve the value of byte count */
351#define BCC(smb_var) ( *(__u16 *)((char *)smb_var + sizeof(struct smb_hdr) + (2* smb_var->WordCount) ) )
e4eb295d 352#define BCC_LE(smb_var) ( *(__le16 *)((char *)smb_var + sizeof(struct smb_hdr) + (2* smb_var->WordCount) ) )
1da177e4
LT
353/* given a pointer to an smb_hdr retrieve the pointer to the byte area */
354#define pByteArea(smb_var) ((unsigned char *)smb_var + sizeof(struct smb_hdr) + (2* smb_var->WordCount) + 2 )
355
356/*
357 * Computer Name Length
358 */
359#define CNLEN 15
360
361/*
362 * Share Name Length @S8A
363 * Note: This length is limited by the SMB used to get @S8A
364 * the Share info. NetShareEnum only returns 13 @S8A
365 * chars, including the null termination. @S8A
366 */
367#define SNLEN 12 /*@S8A */
368
369/*
370 * Comment Length
371 */
372#define MAXCOMMENTLEN 40
373
374/*
375 * The OS/2 maximum path name
376 */
377#define MAX_PATHCONF 256
378
379/*
380 * SMB frame definitions (following must be packed structs)
381 * See the SNIA CIFS Specification for details.
382 *
383 * The Naming convention is the lower case version of the
384 * smb command code name for the struct and this is typedef to the
385 * uppercase version of the same name with the prefix SMB_ removed
386 * for brevity. Although typedefs are not commonly used for
387 * structure definitions in the Linux kernel, their use in the
388 * CIFS standards document, which this code is based on, may
389 * make this one of the cases where typedefs for structures make
390 * sense to improve readability for readers of the standards doc.
391 * Typedefs can always be removed later if they are too distracting
392 * and they are only used for the CIFSs PDUs themselves, not
393 * internal cifs vfs structures
394 *
395 */
396
397typedef struct negotiate_req {
398 struct smb_hdr hdr; /* wct = 0 */
399 __le16 ByteCount;
400 unsigned char DialectsArray[1];
0753ca7b 401} __attribute__((packed)) NEGOTIATE_REQ;
1da177e4
LT
402
403typedef struct negotiate_rsp {
404 struct smb_hdr hdr; /* wct = 17 */
405 __le16 DialectIndex;
406 __u8 SecurityMode;
407 __le16 MaxMpxCount;
408 __le16 MaxNumberVcs;
409 __le32 MaxBufferSize;
410 __le32 MaxRawSize;
411 __le32 SessionKey;
412 __le32 Capabilities; /* see below */
413 __le32 SystemTimeLow;
414 __le32 SystemTimeHigh;
415 __le16 ServerTimeZone;
416 __u8 EncryptionKeyLength;
417 __u16 ByteCount;
418 union {
0753ca7b 419 unsigned char EncryptionKey[1]; /* cap extended security off */
1da177e4
LT
420 /* followed by Domain name - if extended security is off */
421 /* followed by 16 bytes of server GUID */
0753ca7b 422 /* then security blob if cap_extended_security negotiated */
1da177e4
LT
423 struct {
424 unsigned char GUID[16];
425 unsigned char SecurityBlob[1];
0753ca7b
SF
426 } __attribute__((packed)) extended_response;
427 } __attribute__((packed)) u;
428} __attribute__((packed)) NEGOTIATE_RSP;
1da177e4
LT
429
430/* SecurityMode bits */
431#define SECMODE_USER 0x01 /* off indicates share level security */
432#define SECMODE_PW_ENCRYPT 0x02
433#define SECMODE_SIGN_ENABLED 0x04 /* SMB security signatures enabled */
434#define SECMODE_SIGN_REQUIRED 0x08 /* SMB security signatures required */
435
436/* Negotiate response Capabilities */
437#define CAP_RAW_MODE 0x00000001
438#define CAP_MPX_MODE 0x00000002
439#define CAP_UNICODE 0x00000004
440#define CAP_LARGE_FILES 0x00000008
441#define CAP_NT_SMBS 0x00000010 /* implies CAP_NT_FIND */
442#define CAP_RPC_REMOTE_APIS 0x00000020
443#define CAP_STATUS32 0x00000040
444#define CAP_LEVEL_II_OPLOCKS 0x00000080
445#define CAP_LOCK_AND_READ 0x00000100
446#define CAP_NT_FIND 0x00000200
447#define CAP_DFS 0x00001000
448#define CAP_INFOLEVEL_PASSTHRU 0x00002000
449#define CAP_LARGE_READ_X 0x00004000
450#define CAP_LARGE_WRITE_X 0x00008000
451#define CAP_UNIX 0x00800000
452#define CAP_RESERVED 0x02000000
453#define CAP_BULK_TRANSFER 0x20000000
454#define CAP_COMPRESSED_DATA 0x40000000
455#define CAP_EXTENDED_SECURITY 0x80000000
456
457typedef union smb_com_session_setup_andx {
458 struct { /* request format */
459 struct smb_hdr hdr; /* wct = 12 */
460 __u8 AndXCommand;
461 __u8 AndXReserved;
462 __le16 AndXOffset;
463 __le16 MaxBufferSize;
464 __le16 MaxMpxCount;
465 __le16 VcNumber;
466 __u32 SessionKey;
467 __le16 SecurityBlobLength;
468 __u32 Reserved;
469 __le32 Capabilities; /* see below */
470 __le16 ByteCount;
471 unsigned char SecurityBlob[1]; /* followed by */
472 /* STRING NativeOS */
473 /* STRING NativeLanMan */
0753ca7b
SF
474 } __attribute__((packed)) req; /* NTLM request format (with
475 extended security */
1da177e4
LT
476
477 struct { /* request format */
478 struct smb_hdr hdr; /* wct = 13 */
479 __u8 AndXCommand;
480 __u8 AndXReserved;
481 __le16 AndXOffset;
482 __le16 MaxBufferSize;
483 __le16 MaxMpxCount;
484 __le16 VcNumber;
485 __u32 SessionKey;
0753ca7b
SF
486 __le16 CaseInsensitivePasswordLength; /* ASCII password len */
487 __le16 CaseSensitivePasswordLength; /* Unicode password length*/
1da177e4
LT
488 __u32 Reserved; /* see below */
489 __le32 Capabilities;
490 __le16 ByteCount;
0753ca7b 491 unsigned char CaseInsensitivePassword[1]; /* followed by: */
1da177e4
LT
492 /* unsigned char * CaseSensitivePassword; */
493 /* STRING AccountName */
494 /* STRING PrimaryDomain */
495 /* STRING NativeOS */
496 /* STRING NativeLanMan */
0753ca7b
SF
497 } __attribute__((packed)) req_no_secext; /* NTLM request format (without
498 extended security */
1da177e4
LT
499
500 struct { /* default (NTLM) response format */
501 struct smb_hdr hdr; /* wct = 4 */
502 __u8 AndXCommand;
503 __u8 AndXReserved;
504 __le16 AndXOffset;
505 __le16 Action; /* see below */
506 __le16 SecurityBlobLength;
507 __u16 ByteCount;
508 unsigned char SecurityBlob[1]; /* followed by */
509/* unsigned char * NativeOS; */
510/* unsigned char * NativeLanMan; */
511/* unsigned char * PrimaryDomain; */
0753ca7b 512 } __attribute__((packed)) resp; /* NTLM response format (with or without extended security */
1da177e4
LT
513
514 struct { /* request format */
515 struct smb_hdr hdr; /* wct = 10 */
516 __u8 AndXCommand;
517 __u8 AndXReserved;
518 __le16 AndXOffset;
519 __le16 MaxBufferSize;
520 __le16 MaxMpxCount;
521 __le16 VcNumber;
522 __u32 SessionKey;
523 __le16 PassswordLength;
524 __u32 Reserved;
525 __le16 ByteCount;
526 unsigned char AccountPassword[1]; /* followed by */
527 /* STRING AccountName */
528 /* STRING PrimaryDomain */
529 /* STRING NativeOS */
530 /* STRING NativeLanMan */
0a4b92c0 531 } __attribute__((packed)) old_req; /* pre-NTLM (LANMAN2.1) req format */
1da177e4
LT
532
533 struct { /* default (NTLM) response format */
534 struct smb_hdr hdr; /* wct = 3 */
535 __u8 AndXCommand;
536 __u8 AndXReserved;
537 __le16 AndXOffset;
538 __le16 Action; /* see below */
539 __u16 ByteCount;
540 unsigned char NativeOS[1]; /* followed by */
541/* unsigned char * NativeLanMan; */
542/* unsigned char * PrimaryDomain; */
0a4b92c0 543 } __attribute__((packed)) old_resp; /* pre-NTLM (LANMAN2.1) response */
0753ca7b 544} __attribute__((packed)) SESSION_SETUP_ANDX;
1da177e4
LT
545
546#define CIFS_NETWORK_OPSYS "CIFS VFS Client for Linux"
547
548/* Capabilities bits (for NTLM SessSetup request) */
549#define CAP_UNICODE 0x00000004
550#define CAP_LARGE_FILES 0x00000008
551#define CAP_NT_SMBS 0x00000010
552#define CAP_STATUS32 0x00000040
553#define CAP_LEVEL_II_OPLOCKS 0x00000080
0753ca7b
SF
554#define CAP_NT_FIND 0x00000200 /* reserved should be zero
555 (because NT_SMBs implies the same thing?) */
1da177e4
LT
556#define CAP_BULK_TRANSFER 0x20000000
557#define CAP_EXTENDED_SECURITY 0x80000000
558
559/* Action bits */
560#define GUEST_LOGIN 1
561
562typedef struct smb_com_tconx_req {
563 struct smb_hdr hdr; /* wct = 4 */
564 __u8 AndXCommand;
565 __u8 AndXReserved;
566 __le16 AndXOffset;
567 __le16 Flags; /* see below */
568 __le16 PasswordLength;
569 __le16 ByteCount;
570 unsigned char Password[1]; /* followed by */
571/* STRING Path *//* \\server\share name */
572 /* STRING Service */
0753ca7b 573} __attribute__((packed)) TCONX_REQ;
1da177e4
LT
574
575typedef struct smb_com_tconx_rsp {
576 struct smb_hdr hdr; /* wct = 3 *//* note that Win2000 has sent wct=7 in some cases on responses. Four unspecified words followed OptionalSupport */
577 __u8 AndXCommand;
578 __u8 AndXReserved;
579 __le16 AndXOffset;
580 __le16 OptionalSupport; /* see below */
581 __u16 ByteCount;
582 unsigned char Service[1]; /* always ASCII, not Unicode */
583 /* STRING NativeFileSystem */
0753ca7b 584} __attribute__((packed)) TCONX_RSP;
1da177e4
LT
585
586/* tree connect Flags */
587#define DISCONNECT_TID 0x0001
588#define TCON_EXTENDED_SECINFO 0x0008
589/* OptionalSupport bits */
0753ca7b
SF
590#define SMB_SUPPORT_SEARCH_BITS 0x0001 /* "must have" directory search bits
591 (exclusive searches supported) */
1da177e4
LT
592#define SMB_SHARE_IS_IN_DFS 0x0002
593
594typedef struct smb_com_logoff_andx_req {
595 struct smb_hdr hdr; /* wct = 2 */
596 __u8 AndXCommand;
597 __u8 AndXReserved;
598 __u16 AndXOffset;
599 __u16 ByteCount;
0753ca7b 600} __attribute__((packed)) LOGOFF_ANDX_REQ;
1da177e4
LT
601
602typedef struct smb_com_logoff_andx_rsp {
603 struct smb_hdr hdr; /* wct = 2 */
604 __u8 AndXCommand;
605 __u8 AndXReserved;
606 __u16 AndXOffset;
607 __u16 ByteCount;
0753ca7b 608} __attribute__((packed)) LOGOFF_ANDX_RSP;
1da177e4 609
86c96b4b
SF
610typedef union smb_com_tree_disconnect { /* as an altetnative can use flag on
611 tree_connect PDU to effect disconnect */
612 /* tdis is probably simplest SMB PDU */
1da177e4
LT
613 struct {
614 struct smb_hdr hdr; /* wct = 0 */
615 __u16 ByteCount; /* bcc = 0 */
0753ca7b 616 } __attribute__((packed)) req;
1da177e4
LT
617 struct {
618 struct smb_hdr hdr; /* wct = 0 */
619 __u16 ByteCount; /* bcc = 0 */
0753ca7b
SF
620 } __attribute__((packed)) resp;
621} __attribute__((packed)) TREE_DISCONNECT;
1da177e4
LT
622
623typedef struct smb_com_close_req {
624 struct smb_hdr hdr; /* wct = 3 */
625 __u16 FileID;
626 __u32 LastWriteTime; /* should be zero */
627 __u16 ByteCount; /* 0 */
0753ca7b 628} __attribute__((packed)) CLOSE_REQ;
1da177e4
LT
629
630typedef struct smb_com_close_rsp {
631 struct smb_hdr hdr; /* wct = 0 */
632 __u16 ByteCount; /* bct = 0 */
0753ca7b 633} __attribute__((packed)) CLOSE_RSP;
1da177e4
LT
634
635typedef struct smb_com_findclose_req {
636 struct smb_hdr hdr; /* wct = 1 */
637 __u16 FileID;
638 __u16 ByteCount; /* 0 */
0753ca7b 639} __attribute__((packed)) FINDCLOSE_REQ;
1da177e4
LT
640
641/* OpenFlags */
a9d02ad4 642#define REQ_MORE_INFO 0x00000001 /* legacy (OPEN_AND_X) only */
1da177e4
LT
643#define REQ_OPLOCK 0x00000002
644#define REQ_BATCHOPLOCK 0x00000004
645#define REQ_OPENDIRONLY 0x00000008
646
647typedef struct smb_com_open_req { /* also handles create */
648 struct smb_hdr hdr; /* wct = 24 */
649 __u8 AndXCommand;
650 __u8 AndXReserved;
651 __le16 AndXOffset;
652 __u8 Reserved; /* Must Be Zero */
653 __le16 NameLength;
654 __le32 OpenFlags;
655 __le32 RootDirectoryFid;
656 __le32 DesiredAccess;
657 __le64 AllocationSize;
658 __le32 FileAttributes;
659 __le32 ShareAccess;
660 __le32 CreateDisposition;
661 __le32 CreateOptions;
662 __le32 ImpersonationLevel;
663 __u8 SecurityFlags;
664 __le16 ByteCount;
665 char fileName[1];
0753ca7b 666} __attribute__((packed)) OPEN_REQ;
1da177e4
LT
667
668/* open response: oplock levels */
669#define OPLOCK_NONE 0
670#define OPLOCK_EXCLUSIVE 1
671#define OPLOCK_BATCH 2
672#define OPLOCK_READ 3 /* level 2 oplock */
673
674/* open response for CreateAction shifted left */
675#define CIFS_CREATE_ACTION 0x20000 /* file created */
676
677typedef struct smb_com_open_rsp {
678 struct smb_hdr hdr; /* wct = 34 BB */
679 __u8 AndXCommand;
680 __u8 AndXReserved;
681 __le16 AndXOffset;
682 __u8 OplockLevel;
683 __u16 Fid;
684 __le32 CreateAction;
685 __le64 CreationTime;
686 __le64 LastAccessTime;
687 __le64 LastWriteTime;
688 __le64 ChangeTime;
689 __le32 FileAttributes;
690 __le64 AllocationSize;
691 __le64 EndOfFile;
692 __le16 FileType;
693 __le16 DeviceState;
694 __u8 DirectoryFlag;
695 __u16 ByteCount; /* bct = 0 */
0753ca7b 696} __attribute__((packed)) OPEN_RSP;
1da177e4 697
a9d02ad4
SF
698/* format of legacy open request */
699typedef struct smb_com_openx_req {
700 struct smb_hdr hdr; /* wct = 15 */
701 __u8 AndXCommand;
702 __u8 AndXReserved;
703 __le16 AndXOffset;
704 __le16 OpenFlags;
705 __le16 Mode;
706 __le16 Sattr; /* search attributes */
707 __le16 FileAttributes; /* dos attrs */
708 __le32 CreateTime; /* os2 format */
709 __le16 OpenFunction;
710 __le32 EndOfFile;
711 __le32 Timeout;
712 __le32 Reserved;
70ca734a 713 __le16 ByteCount; /* file name follows */
a9d02ad4 714 char fileName[1];
0753ca7b 715} __attribute__((packed)) OPENX_REQ;
a9d02ad4
SF
716
717typedef struct smb_com_openx_rsp {
718 struct smb_hdr hdr; /* wct = 15 */
719 __u8 AndXCommand;
720 __u8 AndXReserved;
721 __le16 AndXOffset;
722 __u16 Fid;
723 __le16 FileAttributes;
724 __le32 LastWriteTime; /* os2 format */
725 __le32 EndOfFile;
726 __le16 Access;
727 __le16 FileType;
728 __le16 IPCState;
729 __le16 Action;
730 __u32 FileId;
731 __u16 Reserved;
732 __u16 ByteCount;
0753ca7b 733} __attribute__((packed)) OPENX_RSP;
a9d02ad4
SF
734
735/* Legacy write request for older servers */
736typedef struct smb_com_writex_req {
737 struct smb_hdr hdr; /* wct = 12 */
738 __u8 AndXCommand;
739 __u8 AndXReserved;
740 __le16 AndXOffset;
741 __u16 Fid;
742 __le32 OffsetLow;
743 __u32 Reserved; /* Timeout */
744 __le16 WriteMode; /* 1 = write through */
745 __le16 Remaining;
746 __le16 Reserved2;
747 __le16 DataLengthLow;
748 __le16 DataOffset;
749 __le16 ByteCount;
750 __u8 Pad; /* BB check for whether padded to DWORD boundary and optimum performance here */
751 char Data[0];
0753ca7b 752} __attribute__((packed)) WRITEX_REQ;
a9d02ad4 753
1da177e4
LT
754typedef struct smb_com_write_req {
755 struct smb_hdr hdr; /* wct = 14 */
756 __u8 AndXCommand;
757 __u8 AndXReserved;
758 __le16 AndXOffset;
759 __u16 Fid;
760 __le32 OffsetLow;
761 __u32 Reserved;
762 __le16 WriteMode;
763 __le16 Remaining;
764 __le16 DataLengthHigh;
765 __le16 DataLengthLow;
766 __le16 DataOffset;
767 __le32 OffsetHigh;
768 __le16 ByteCount;
769 __u8 Pad; /* BB check for whether padded to DWORD boundary and optimum performance here */
770 char Data[0];
0753ca7b 771} __attribute__((packed)) WRITE_REQ;
1da177e4
LT
772
773typedef struct smb_com_write_rsp {
774 struct smb_hdr hdr; /* wct = 6 */
775 __u8 AndXCommand;
776 __u8 AndXReserved;
777 __le16 AndXOffset;
778 __le16 Count;
779 __le16 Remaining;
780 __le16 CountHigh;
781 __u16 Reserved;
782 __u16 ByteCount;
0753ca7b 783} __attribute__((packed)) WRITE_RSP;
1da177e4 784
a9d02ad4
SF
785/* legacy read request for older servers */
786typedef struct smb_com_readx_req {
787 struct smb_hdr hdr; /* wct = 10 */
788 __u8 AndXCommand;
789 __u8 AndXReserved;
790 __le16 AndXOffset;
791 __u16 Fid;
792 __le32 OffsetLow;
793 __le16 MaxCount;
794 __le16 MinCount; /* obsolete */
795 __le32 Reserved;
796 __le16 Remaining;
797 __le16 ByteCount;
0753ca7b 798} __attribute__((packed)) READX_REQ;
a9d02ad4 799
1da177e4
LT
800typedef struct smb_com_read_req {
801 struct smb_hdr hdr; /* wct = 12 */
802 __u8 AndXCommand;
803 __u8 AndXReserved;
804 __le16 AndXOffset;
805 __u16 Fid;
806 __le32 OffsetLow;
807 __le16 MaxCount;
808 __le16 MinCount; /* obsolete */
809 __le32 MaxCountHigh;
810 __le16 Remaining;
811 __le32 OffsetHigh;
812 __le16 ByteCount;
0753ca7b 813} __attribute__((packed)) READ_REQ;
1da177e4
LT
814
815typedef struct smb_com_read_rsp {
816 struct smb_hdr hdr; /* wct = 12 */
817 __u8 AndXCommand;
818 __u8 AndXReserved;
819 __le16 AndXOffset;
820 __le16 Remaining;
821 __le16 DataCompactionMode;
822 __le16 Reserved;
823 __le16 DataLength;
824 __le16 DataOffset;
825 __le16 DataLengthHigh;
826 __u64 Reserved2;
827 __u16 ByteCount;
828 __u8 Pad; /* BB check for whether padded to DWORD boundary and optimum performance here */
829 char Data[1];
0753ca7b 830} __attribute__((packed)) READ_RSP;
1da177e4
LT
831
832typedef struct locking_andx_range {
833 __le16 Pid;
834 __le16 Pad;
835 __le32 OffsetHigh;
836 __le32 OffsetLow;
837 __le32 LengthHigh;
838 __le32 LengthLow;
0753ca7b 839} __attribute__((packed)) LOCKING_ANDX_RANGE;
1da177e4
LT
840
841#define LOCKING_ANDX_SHARED_LOCK 0x01
842#define LOCKING_ANDX_OPLOCK_RELEASE 0x02
843#define LOCKING_ANDX_CHANGE_LOCKTYPE 0x04
844#define LOCKING_ANDX_CANCEL_LOCK 0x08
845#define LOCKING_ANDX_LARGE_FILES 0x10 /* always on for us */
846
847typedef struct smb_com_lock_req {
848 struct smb_hdr hdr; /* wct = 8 */
849 __u8 AndXCommand;
850 __u8 AndXReserved;
851 __le16 AndXOffset;
852 __u16 Fid;
853 __u8 LockType;
854 __u8 OplockLevel;
855 __le32 Timeout;
856 __le16 NumberOfUnlocks;
857 __le16 NumberOfLocks;
858 __le16 ByteCount;
859 LOCKING_ANDX_RANGE Locks[1];
0753ca7b 860} __attribute__((packed)) LOCK_REQ;
1da177e4 861
f654bac2
SF
862
863typedef struct cifs_posix_lock {
864 __le16 lock_type; /* 0 = Read, 1 = Write, 2 = Unlock */
865 __le16 lock_flags; /* 1 = Wait (only valid for setlock) */
866 __le32 pid;
867 __le64 start;
868 __le64 length;
869 /* BB what about additional owner info to identify network client */
0753ca7b 870} __attribute__((packed)) CIFS_POSIX_LOCK;
f654bac2 871
1da177e4
LT
872typedef struct smb_com_lock_rsp {
873 struct smb_hdr hdr; /* wct = 2 */
874 __u8 AndXCommand;
875 __u8 AndXReserved;
876 __le16 AndXOffset;
877 __u16 ByteCount;
0753ca7b 878} __attribute__((packed)) LOCK_RSP;
1da177e4
LT
879
880typedef struct smb_com_rename_req {
881 struct smb_hdr hdr; /* wct = 1 */
882 __le16 SearchAttributes; /* target file attributes */
883 __le16 ByteCount;
884 __u8 BufferFormat; /* 4 = ASCII or Unicode */
885 unsigned char OldFileName[1];
886 /* followed by __u8 BufferFormat2 */
887 /* followed by NewFileName */
0753ca7b 888} __attribute__((packed)) RENAME_REQ;
1da177e4
LT
889
890 /* copy request flags */
891#define COPY_MUST_BE_FILE 0x0001
892#define COPY_MUST_BE_DIR 0x0002
893#define COPY_TARGET_MODE_ASCII 0x0004 /* if not set, binary */
894#define COPY_SOURCE_MODE_ASCII 0x0008 /* if not set, binary */
895#define COPY_VERIFY_WRITES 0x0010
896#define COPY_TREE 0x0020
897
898typedef struct smb_com_copy_req {
899 struct smb_hdr hdr; /* wct = 3 */
900 __u16 Tid2;
901 __le16 OpenFunction;
902 __le16 Flags;
903 __le16 ByteCount;
904 __u8 BufferFormat; /* 4 = ASCII or Unicode */
905 unsigned char OldFileName[1];
906 /* followed by __u8 BufferFormat2 */
907 /* followed by NewFileName string */
0753ca7b 908} __attribute__((packed)) COPY_REQ;
1da177e4
LT
909
910typedef struct smb_com_copy_rsp {
911 struct smb_hdr hdr; /* wct = 1 */
912 __le16 CopyCount; /* number of files copied */
913 __u16 ByteCount; /* may be zero */
914 __u8 BufferFormat; /* 0x04 - only present if errored file follows */
915 unsigned char ErrorFileName[1]; /* only present if error in copy */
0753ca7b 916} __attribute__((packed)) COPY_RSP;
1da177e4
LT
917
918#define CREATE_HARD_LINK 0x103
919#define MOVEFILE_COPY_ALLOWED 0x0002
920#define MOVEFILE_REPLACE_EXISTING 0x0001
921
922typedef struct smb_com_nt_rename_req { /* A5 - also used for create hardlink */
923 struct smb_hdr hdr; /* wct = 4 */
924 __le16 SearchAttributes; /* target file attributes */
925 __le16 Flags; /* spec says Information Level */
926 __le32 ClusterCount;
927 __le16 ByteCount;
928 __u8 BufferFormat; /* 4 = ASCII or Unicode */
929 unsigned char OldFileName[1];
930 /* followed by __u8 BufferFormat2 */
931 /* followed by NewFileName */
0753ca7b 932} __attribute__((packed)) NT_RENAME_REQ;
1da177e4
LT
933
934typedef struct smb_com_rename_rsp {
935 struct smb_hdr hdr; /* wct = 0 */
936 __u16 ByteCount; /* bct = 0 */
0753ca7b 937} __attribute__((packed)) RENAME_RSP;
1da177e4
LT
938
939typedef struct smb_com_delete_file_req {
940 struct smb_hdr hdr; /* wct = 1 */
941 __le16 SearchAttributes;
942 __le16 ByteCount;
943 __u8 BufferFormat; /* 4 = ASCII */
944 unsigned char fileName[1];
0753ca7b 945} __attribute__((packed)) DELETE_FILE_REQ;
1da177e4
LT
946
947typedef struct smb_com_delete_file_rsp {
948 struct smb_hdr hdr; /* wct = 0 */
949 __u16 ByteCount; /* bct = 0 */
0753ca7b 950} __attribute__((packed)) DELETE_FILE_RSP;
1da177e4
LT
951
952typedef struct smb_com_delete_directory_req {
953 struct smb_hdr hdr; /* wct = 0 */
954 __le16 ByteCount;
955 __u8 BufferFormat; /* 4 = ASCII */
956 unsigned char DirName[1];
0753ca7b 957} __attribute__((packed)) DELETE_DIRECTORY_REQ;
1da177e4
LT
958
959typedef struct smb_com_delete_directory_rsp {
960 struct smb_hdr hdr; /* wct = 0 */
961 __u16 ByteCount; /* bct = 0 */
0753ca7b 962} __attribute__((packed)) DELETE_DIRECTORY_RSP;
1da177e4
LT
963
964typedef struct smb_com_create_directory_req {
965 struct smb_hdr hdr; /* wct = 0 */
966 __le16 ByteCount;
967 __u8 BufferFormat; /* 4 = ASCII */
968 unsigned char DirName[1];
0753ca7b 969} __attribute__((packed)) CREATE_DIRECTORY_REQ;
1da177e4
LT
970
971typedef struct smb_com_create_directory_rsp {
972 struct smb_hdr hdr; /* wct = 0 */
973 __u16 ByteCount; /* bct = 0 */
0753ca7b 974} __attribute__((packed)) CREATE_DIRECTORY_RSP;
1da177e4 975
6b8edfe0
SF
976typedef struct smb_com_query_information_req {
977 struct smb_hdr hdr; /* wct = 0 */
978 __le16 ByteCount; /* 1 + namelen + 1 */
979 __u8 BufferFormat; /* 4 = ASCII */
980 unsigned char FileName[1];
0753ca7b 981} __attribute__((packed)) QUERY_INFORMATION_REQ;
6b8edfe0
SF
982
983typedef struct smb_com_query_information_rsp {
984 struct smb_hdr hdr; /* wct = 10 */
985 __le16 attr;
986 __le32 last_write_time;
987 __le32 size;
988 __u16 reserved[5];
989 __le16 ByteCount; /* bcc = 0 */
0753ca7b 990} __attribute__((packed)) QUERY_INFORMATION_RSP;
6b8edfe0 991
1da177e4
LT
992typedef struct smb_com_setattr_req {
993 struct smb_hdr hdr; /* wct = 8 */
994 __le16 attr;
995 __le16 time_low;
996 __le16 time_high;
997 __le16 reserved[5]; /* must be zero */
998 __u16 ByteCount;
999 __u8 BufferFormat; /* 4 = ASCII */
1000 unsigned char fileName[1];
0753ca7b 1001} __attribute__((packed)) SETATTR_REQ;
1da177e4
LT
1002
1003typedef struct smb_com_setattr_rsp {
1004 struct smb_hdr hdr; /* wct = 0 */
1005 __u16 ByteCount; /* bct = 0 */
0753ca7b 1006} __attribute__((packed)) SETATTR_RSP;
1da177e4
LT
1007
1008/* empty wct response to setattr */
1009
0a4b92c0
SF
1010/*******************************************************/
1011/* NT Transact structure defintions follow */
1012/* Currently only ioctl, acl (get security descriptor) */
1013/* and notify are implemented */
1014/*******************************************************/
1015typedef struct smb_com_ntransact_req {
1016 struct smb_hdr hdr; /* wct >= 19 */
1017 __u8 MaxSetupCount;
1018 __u16 Reserved;
1019 __le32 TotalParameterCount;
1020 __le32 TotalDataCount;
1021 __le32 MaxParameterCount;
1022 __le32 MaxDataCount;
1023 __le32 ParameterCount;
1024 __le32 ParameterOffset;
1025 __le32 DataCount;
1026 __le32 DataOffset;
1027 __u8 SetupCount; /* four setup words follow subcommand */
1028 /* SNIA spec incorrectly included spurious pad here */
1029 __le16 SubCommand; /* 2 = IOCTL/FSCTL */
1030 /* SetupCount words follow then */
1031 __le16 ByteCount;
1032 __u8 Pad[3];
1033 __u8 Parms[0];
1034} __attribute__((packed)) NTRANSACT_REQ;
1035
1036typedef struct smb_com_ntransact_rsp {
1037 struct smb_hdr hdr; /* wct = 18 */
1038 __u8 Reserved[3];
1039 __le32 TotalParameterCount;
1040 __le32 TotalDataCount;
1041 __le32 ParameterCount;
1042 __le32 ParameterOffset;
1043 __le32 ParameterDisplacement;
1044 __le32 DataCount;
1045 __le32 DataOffset;
1046 __le32 DataDisplacement;
1047 __u8 SetupCount; /* 0 */
1048 __u16 ByteCount;
1049 /* __u8 Pad[3]; */
1050 /* parms and data follow */
1051} __attribute__((packed)) NTRANSACT_RSP;
1052
1da177e4
LT
1053typedef struct smb_com_transaction_ioctl_req {
1054 struct smb_hdr hdr; /* wct = 23 */
1055 __u8 MaxSetupCount;
1056 __u16 Reserved;
1057 __le32 TotalParameterCount;
1058 __le32 TotalDataCount;
1059 __le32 MaxParameterCount;
1060 __le32 MaxDataCount;
1061 __le32 ParameterCount;
1062 __le32 ParameterOffset;
1063 __le32 DataCount;
1064 __le32 DataOffset;
1065 __u8 SetupCount; /* four setup words follow subcommand */
1066 /* SNIA spec incorrectly included spurious pad here */
0a4b92c0 1067 __le16 SubCommand; /* 2 = IOCTL/FSCTL */
1da177e4
LT
1068 __le32 FunctionCode;
1069 __u16 Fid;
0a4b92c0
SF
1070 __u8 IsFsctl; /* 1 = File System Control 0 = device control (IOCTL) */
1071 __u8 IsRootFlag; /* 1 = apply command to root of share (must be DFS) */
1da177e4
LT
1072 __le16 ByteCount;
1073 __u8 Pad[3];
1074 __u8 Data[1];
0753ca7b 1075} __attribute__((packed)) TRANSACT_IOCTL_REQ;
1da177e4
LT
1076
1077typedef struct smb_com_transaction_ioctl_rsp {
1078 struct smb_hdr hdr; /* wct = 19 */
1079 __u8 Reserved[3];
1080 __le32 TotalParameterCount;
1081 __le32 TotalDataCount;
1082 __le32 ParameterCount;
1083 __le32 ParameterOffset;
1084 __le32 ParameterDisplacement;
1085 __le32 DataCount;
1086 __le32 DataOffset;
1087 __le32 DataDisplacement;
1088 __u8 SetupCount; /* 1 */
1089 __le16 ReturnedDataLen;
1090 __u16 ByteCount;
0753ca7b 1091} __attribute__((packed)) TRANSACT_IOCTL_RSP;
1da177e4 1092
0a4b92c0
SF
1093#define CIFS_ACL_OWNER 1
1094#define CIFS_ACL_GROUP 2
1095#define CIFS_ACL_DACL 4
1096#define CIFS_ACL_SACL 8
1097
1098typedef struct smb_com_transaction_qsec_req {
1099 struct smb_hdr hdr; /* wct = 19 */
1100 __u8 MaxSetupCount;
1101 __u16 Reserved;
1102 __le32 TotalParameterCount;
1103 __le32 TotalDataCount;
1104 __le32 MaxParameterCount;
1105 __le32 MaxDataCount;
1106 __le32 ParameterCount;
1107 __le32 ParameterOffset;
1108 __le32 DataCount;
1109 __le32 DataOffset;
1110 __u8 SetupCount; /* no setup words follow subcommand */
1111 /* SNIA spec incorrectly included spurious pad here */
1112 __le16 SubCommand; /* 6 = QUERY_SECURITY_DESC */
1113 __le16 ByteCount; /* bcc = 3 + 8 */
1114 __u8 Pad[3];
1115 __u16 Fid;
1116 __u16 Reserved2;
1117 __le32 AclFlags;
1118} __attribute__((packed)) QUERY_SEC_DESC_REQ;
1119
1da177e4
LT
1120typedef struct smb_com_transaction_change_notify_req {
1121 struct smb_hdr hdr; /* wct = 23 */
1122 __u8 MaxSetupCount;
1123 __u16 Reserved;
1124 __le32 TotalParameterCount;
1125 __le32 TotalDataCount;
1126 __le32 MaxParameterCount;
1127 __le32 MaxDataCount;
1128 __le32 ParameterCount;
1129 __le32 ParameterOffset;
1130 __le32 DataCount;
1131 __le32 DataOffset;
1132 __u8 SetupCount; /* four setup words follow subcommand */
1133 /* SNIA spec incorrectly included spurious pad here */
1134 __le16 SubCommand;/* 4 = Change Notify */
1135 __le32 CompletionFilter; /* operation to monitor */
1136 __u16 Fid;
1137 __u8 WatchTree; /* 1 = Monitor subdirectories */
1138 __u8 Reserved2;
1139 __le16 ByteCount;
0a4b92c0 1140/* __u8 Pad[3];*/
1da177e4 1141/* __u8 Data[1];*/
0753ca7b 1142} __attribute__((packed)) TRANSACT_CHANGE_NOTIFY_REQ;
1da177e4 1143
0a4b92c0
SF
1144/* BB eventually change to use generic ntransact rsp struct
1145 and validation routine */
1da177e4
LT
1146typedef struct smb_com_transaction_change_notify_rsp {
1147 struct smb_hdr hdr; /* wct = 18 */
1148 __u8 Reserved[3];
1149 __le32 TotalParameterCount;
1150 __le32 TotalDataCount;
1151 __le32 ParameterCount;
1152 __le32 ParameterOffset;
1153 __le32 ParameterDisplacement;
1154 __le32 DataCount;
1155 __le32 DataOffset;
1156 __le32 DataDisplacement;
1157 __u8 SetupCount; /* 0 */
1158 __u16 ByteCount;
1159 /* __u8 Pad[3]; */
0753ca7b 1160} __attribute__((packed)) TRANSACT_CHANGE_NOTIFY_RSP;
1da177e4
LT
1161/* Completion Filter flags for Notify */
1162#define FILE_NOTIFY_CHANGE_FILE_NAME 0x00000001
1163#define FILE_NOTIFY_CHANGE_DIR_NAME 0x00000002
1164#define FILE_NOTIFY_CHANGE_NAME 0x00000003
1165#define FILE_NOTIFY_CHANGE_ATTRIBUTES 0x00000004
1166#define FILE_NOTIFY_CHANGE_SIZE 0x00000008
1167#define FILE_NOTIFY_CHANGE_LAST_WRITE 0x00000010
1168#define FILE_NOTIFY_CHANGE_LAST_ACCESS 0x00000020
1169#define FILE_NOTIFY_CHANGE_CREATION 0x00000040
1170#define FILE_NOTIFY_CHANGE_EA 0x00000080
1171#define FILE_NOTIFY_CHANGE_SECURITY 0x00000100
1172#define FILE_NOTIFY_CHANGE_STREAM_NAME 0x00000200
1173#define FILE_NOTIFY_CHANGE_STREAM_SIZE 0x00000400
1174#define FILE_NOTIFY_CHANGE_STREAM_WRITE 0x00000800
1175
1176#define FILE_ACTION_ADDED 0x00000001
1177#define FILE_ACTION_REMOVED 0x00000002
1178#define FILE_ACTION_MODIFIED 0x00000003
1179#define FILE_ACTION_RENAMED_OLD_NAME 0x00000004
1180#define FILE_ACTION_RENAMED_NEW_NAME 0x00000005
1181#define FILE_ACTION_ADDED_STREAM 0x00000006
1182#define FILE_ACTION_REMOVED_STREAM 0x00000007
1183#define FILE_ACTION_MODIFIED_STREAM 0x00000008
1184
1185/* response contains array of the following structures */
1186struct file_notify_information {
1187 __le32 NextEntryOffset;
1188 __le32 Action;
1189 __le32 FileNameLength;
1190 __u8 FileName[0];
0753ca7b 1191} __attribute__((packed));
1da177e4
LT
1192
1193struct reparse_data {
1194 __u32 ReparseTag;
1195 __u16 ReparseDataLength;
1196 __u16 Reserved;
1197 __u16 AltNameOffset;
1198 __u16 AltNameLen;
1199 __u16 TargetNameOffset;
1200 __u16 TargetNameLen;
1201 char LinkNamesBuf[1];
0753ca7b 1202} __attribute__((packed));
1da177e4
LT
1203
1204struct cifs_quota_data {
1205 __u32 rsrvd1; /* 0 */
1206 __u32 sid_size;
1207 __u64 rsrvd2; /* 0 */
1208 __u64 space_used;
1209 __u64 soft_limit;
1210 __u64 hard_limit;
1211 char sid[1]; /* variable size? */
0753ca7b 1212} __attribute__((packed));
1da177e4
LT
1213
1214/* quota sub commands */
1215#define QUOTA_LIST_CONTINUE 0
1216#define QUOTA_LIST_START 0x100
1217#define QUOTA_FOR_SID 0x101
1218
1219struct trans2_req {
1220 /* struct smb_hdr hdr precedes. Set wct = 14+ */
1221 __le16 TotalParameterCount;
1222 __le16 TotalDataCount;
1223 __le16 MaxParameterCount;
1224 __le16 MaxDataCount;
1225 __u8 MaxSetupCount;
1226 __u8 Reserved;
1227 __le16 Flags;
1228 __le32 Timeout;
1229 __u16 Reserved2;
1230 __le16 ParameterCount;
1231 __le16 ParameterOffset;
1232 __le16 DataCount;
1233 __le16 DataOffset;
1234 __u8 SetupCount;
1235 __u8 Reserved3;
1236 __le16 SubCommand; /* 1st setup word - SetupCount words follow */
1237 __le16 ByteCount;
0753ca7b 1238} __attribute__((packed));
1da177e4
LT
1239
1240struct smb_t2_req {
1241 struct smb_hdr hdr;
1242 struct trans2_req t2_req;
0753ca7b 1243} __attribute__((packed));
1da177e4
LT
1244
1245struct trans2_resp {
1246 /* struct smb_hdr hdr precedes. Note wct = 10 + setup count */
1247 __le16 TotalParameterCount;
1248 __le16 TotalDataCount;
1249 __u16 Reserved;
1250 __le16 ParameterCount;
1251 __le16 ParameterOffset;
1252 __le16 ParameterDisplacement;
1253 __le16 DataCount;
1254 __le16 DataOffset;
1255 __le16 DataDisplacement;
1256 __u8 SetupCount;
1257 __u8 Reserved1;
1258 /* SetupWords[SetupCount];
1259 __u16 ByteCount;
1260 __u16 Reserved2;*/
1261 /* data area follows */
0753ca7b 1262} __attribute__((packed));
1da177e4
LT
1263
1264struct smb_t2_rsp {
1265 struct smb_hdr hdr;
1266 struct trans2_resp t2_rsp;
0753ca7b 1267} __attribute__((packed));
1da177e4
LT
1268
1269/* PathInfo/FileInfo infolevels */
1270#define SMB_INFO_STANDARD 1
1271#define SMB_SET_FILE_EA 2
1272#define SMB_QUERY_FILE_EA_SIZE 2
1273#define SMB_INFO_QUERY_EAS_FROM_LIST 3
1274#define SMB_INFO_QUERY_ALL_EAS 4
1275#define SMB_INFO_IS_NAME_VALID 6
1276#define SMB_QUERY_FILE_BASIC_INFO 0x101
1277#define SMB_QUERY_FILE_STANDARD_INFO 0x102
1278#define SMB_QUERY_FILE_EA_INFO 0x103
1279#define SMB_QUERY_FILE_NAME_INFO 0x104
1280#define SMB_QUERY_FILE_ALLOCATION_INFO 0x105
1281#define SMB_QUERY_FILE_END_OF_FILEINFO 0x106
1282#define SMB_QUERY_FILE_ALL_INFO 0x107
1283#define SMB_QUERY_ALT_NAME_INFO 0x108
1284#define SMB_QUERY_FILE_STREAM_INFO 0x109
1285#define SMB_QUERY_FILE_COMPRESSION_INFO 0x10B
1286#define SMB_QUERY_FILE_UNIX_BASIC 0x200
1287#define SMB_QUERY_FILE_UNIX_LINK 0x201
1288#define SMB_QUERY_POSIX_ACL 0x204
1289#define SMB_QUERY_XATTR 0x205
1290#define SMB_QUERY_ATTR_FLAGS 0x206 /* append,immutable etc. */
f654bac2
SF
1291#define SMB_QUERY_POSIX_PERMISSION 0x207
1292#define SMB_QUERY_POSIX_LOCK 0x208
1da177e4
LT
1293#define SMB_QUERY_FILE_INTERNAL_INFO 0x3ee
1294#define SMB_QUERY_FILE_ACCESS_INFO 0x3f0
1295#define SMB_QUERY_FILE_NAME_INFO2 0x3f1 /* 0x30 bytes */
1296#define SMB_QUERY_FILE_POSITION_INFO 0x3f6
1297#define SMB_QUERY_FILE_MODE_INFO 0x3f8
1298#define SMB_QUERY_FILE_ALGN_INFO 0x3f9
1299
1300
1301#define SMB_SET_FILE_BASIC_INFO 0x101
1302#define SMB_SET_FILE_DISPOSITION_INFO 0x102
1303#define SMB_SET_FILE_ALLOCATION_INFO 0x103
1304#define SMB_SET_FILE_END_OF_FILE_INFO 0x104
1305#define SMB_SET_FILE_UNIX_BASIC 0x200
1306#define SMB_SET_FILE_UNIX_LINK 0x201
1307#define SMB_SET_FILE_UNIX_HLINK 0x203
1308#define SMB_SET_POSIX_ACL 0x204
1309#define SMB_SET_XATTR 0x205
1310#define SMB_SET_ATTR_FLAGS 0x206 /* append, immutable etc. */
f654bac2 1311#define SMB_SET_POSIX_LOCK 0x208
1da177e4
LT
1312#define SMB_SET_FILE_BASIC_INFO2 0x3ec
1313#define SMB_SET_FILE_RENAME_INFORMATION 0x3f2 /* BB check if qpathinfo level too */
1314#define SMB_FILE_ALL_INFO2 0x3fa
1315#define SMB_SET_FILE_ALLOCATION_INFO2 0x3fb
1316#define SMB_SET_FILE_END_OF_FILE_INFO2 0x3fc
1317#define SMB_FILE_MOVE_CLUSTER_INFO 0x407
1318#define SMB_FILE_QUOTA_INFO 0x408
1319#define SMB_FILE_REPARSEPOINT_INFO 0x409
1320#define SMB_FILE_MAXIMUM_INFO 0x40d
1321
1322/* Find File infolevels */
1323#define SMB_FIND_FILE_DIRECTORY_INFO 0x101
1324#define SMB_FIND_FILE_FULL_DIRECTORY_INFO 0x102
1325#define SMB_FIND_FILE_NAMES_INFO 0x103
1326#define SMB_FIND_FILE_BOTH_DIRECTORY_INFO 0x104
1327#define SMB_FIND_FILE_ID_FULL_DIR_INFO 0x105
1328#define SMB_FIND_FILE_ID_BOTH_DIR_INFO 0x106
1329#define SMB_FIND_FILE_UNIX 0x202
1330
1331typedef struct smb_com_transaction2_qpi_req {
1332 struct smb_hdr hdr; /* wct = 14+ */
1333 __le16 TotalParameterCount;
1334 __le16 TotalDataCount;
1335 __le16 MaxParameterCount;
1336 __le16 MaxDataCount;
1337 __u8 MaxSetupCount;
1338 __u8 Reserved;
1339 __le16 Flags;
1340 __le32 Timeout;
1341 __u16 Reserved2;
1342 __le16 ParameterCount;
1343 __le16 ParameterOffset;
1344 __le16 DataCount;
1345 __le16 DataOffset;
1346 __u8 SetupCount;
1347 __u8 Reserved3;
1348 __le16 SubCommand; /* one setup word */
1349 __le16 ByteCount;
1350 __u8 Pad;
1351 __le16 InformationLevel;
1352 __u32 Reserved4;
1353 char FileName[1];
0753ca7b 1354} __attribute__((packed)) TRANSACTION2_QPI_REQ;
1da177e4
LT
1355
1356typedef struct smb_com_transaction2_qpi_rsp {
1357 struct smb_hdr hdr; /* wct = 10 + SetupCount */
1358 struct trans2_resp t2;
1359 __u16 ByteCount;
1360 __u16 Reserved2; /* parameter word reserved - present for infolevels > 100 */
0753ca7b 1361} __attribute__((packed)) TRANSACTION2_QPI_RSP;
1da177e4
LT
1362
1363typedef struct smb_com_transaction2_spi_req {
1364 struct smb_hdr hdr; /* wct = 15 */
1365 __le16 TotalParameterCount;
1366 __le16 TotalDataCount;
1367 __le16 MaxParameterCount;
1368 __le16 MaxDataCount;
1369 __u8 MaxSetupCount;
1370 __u8 Reserved;
1371 __le16 Flags;
1372 __le32 Timeout;
1373 __u16 Reserved2;
1374 __le16 ParameterCount;
1375 __le16 ParameterOffset;
1376 __le16 DataCount;
1377 __le16 DataOffset;
1378 __u8 SetupCount;
1379 __u8 Reserved3;
1380 __le16 SubCommand; /* one setup word */
1381 __le16 ByteCount;
1382 __u8 Pad;
1383 __u16 Pad1;
1384 __le16 InformationLevel;
1385 __u32 Reserved4;
1386 char FileName[1];
0753ca7b 1387} __attribute__((packed)) TRANSACTION2_SPI_REQ;
1da177e4
LT
1388
1389typedef struct smb_com_transaction2_spi_rsp {
1390 struct smb_hdr hdr; /* wct = 10 + SetupCount */
1391 struct trans2_resp t2;
1392 __u16 ByteCount;
1393 __u16 Reserved2; /* parameter word reserved - present for infolevels > 100 */
0753ca7b 1394} __attribute__((packed)) TRANSACTION2_SPI_RSP;
1da177e4
LT
1395
1396struct set_file_rename {
1397 __le32 overwrite; /* 1 = overwrite dest */
1398 __u32 root_fid; /* zero */
1399 __le32 target_name_len;
1400 char target_name[0]; /* Must be unicode */
0753ca7b 1401} __attribute__((packed));
1da177e4
LT
1402
1403struct smb_com_transaction2_sfi_req {
1404 struct smb_hdr hdr; /* wct = 15 */
1405 __le16 TotalParameterCount;
1406 __le16 TotalDataCount;
1407 __le16 MaxParameterCount;
1408 __le16 MaxDataCount;
1409 __u8 MaxSetupCount;
1410 __u8 Reserved;
1411 __le16 Flags;
1412 __le32 Timeout;
1413 __u16 Reserved2;
1414 __le16 ParameterCount;
1415 __le16 ParameterOffset;
1416 __le16 DataCount;
1417 __le16 DataOffset;
1418 __u8 SetupCount;
1419 __u8 Reserved3;
1420 __le16 SubCommand; /* one setup word */
1421 __le16 ByteCount;
1422 __u8 Pad;
1423 __u16 Pad1;
1424 __u16 Fid;
1425 __le16 InformationLevel;
1426 __u16 Reserved4;
0753ca7b 1427} __attribute__((packed));
1da177e4
LT
1428
1429struct smb_com_transaction2_sfi_rsp {
1430 struct smb_hdr hdr; /* wct = 10 + SetupCount */
1431 struct trans2_resp t2;
1432 __u16 ByteCount;
f654bac2
SF
1433 __u16 Reserved2; /* parameter word reserved -
1434 present for infolevels > 100 */
0753ca7b 1435} __attribute__((packed));
f654bac2
SF
1436
1437struct smb_t2_qfi_req {
1438 struct smb_hdr hdr;
1439 struct trans2_req t2;
1440 __u8 Pad;
f654bac2
SF
1441 __u16 Fid;
1442 __le16 InformationLevel;
0753ca7b 1443} __attribute__((packed));
1da177e4 1444
f654bac2
SF
1445struct smb_t2_qfi_rsp {
1446 struct smb_hdr hdr; /* wct = 10 + SetupCount */
1447 struct trans2_resp t2;
1448 __u16 ByteCount;
1449 __u16 Reserved2; /* parameter word reserved -
1450 present for infolevels > 100 */
0753ca7b 1451} __attribute__((packed));
1da177e4
LT
1452
1453/*
1454 * Flags on T2 FINDFIRST and FINDNEXT
1455 */
1456#define CIFS_SEARCH_CLOSE_ALWAYS 0x0001
1457#define CIFS_SEARCH_CLOSE_AT_END 0x0002
1458#define CIFS_SEARCH_RETURN_RESUME 0x0004
1459#define CIFS_SEARCH_CONTINUE_FROM_LAST 0x0008
1460#define CIFS_SEARCH_BACKUP_SEARCH 0x0010
1461
1462/*
1463 * Size of the resume key on FINDFIRST and FINDNEXT calls
1464 */
1465#define CIFS_SMB_RESUME_KEY_SIZE 4
1466
1467typedef struct smb_com_transaction2_ffirst_req {
1468 struct smb_hdr hdr; /* wct = 15 */
1469 __le16 TotalParameterCount;
1470 __le16 TotalDataCount;
1471 __le16 MaxParameterCount;
1472 __le16 MaxDataCount;
1473 __u8 MaxSetupCount;
1474 __u8 Reserved;
1475 __le16 Flags;
1476 __le32 Timeout;
1477 __u16 Reserved2;
1478 __le16 ParameterCount;
1479 __le16 ParameterOffset;
1480 __le16 DataCount;
1481 __le16 DataOffset;
1482 __u8 SetupCount; /* one */
1483 __u8 Reserved3;
1484 __le16 SubCommand; /* TRANS2_FIND_FIRST */
1485 __le16 ByteCount;
1486 __u8 Pad;
1487 __le16 SearchAttributes;
1488 __le16 SearchCount;
1489 __le16 SearchFlags;
1490 __le16 InformationLevel;
1491 __le32 SearchStorageType;
1492 char FileName[1];
0753ca7b 1493} __attribute__((packed)) TRANSACTION2_FFIRST_REQ;
1da177e4
LT
1494
1495typedef struct smb_com_transaction2_ffirst_rsp {
1496 struct smb_hdr hdr; /* wct = 10 */
1497 struct trans2_resp t2;
1498 __u16 ByteCount;
0753ca7b 1499} __attribute__((packed)) TRANSACTION2_FFIRST_RSP;
1da177e4
LT
1500
1501typedef struct smb_com_transaction2_ffirst_rsp_parms {
1502 __u16 SearchHandle;
1503 __le16 SearchCount;
1504 __le16 EndofSearch;
1505 __le16 EAErrorOffset;
1506 __le16 LastNameOffset;
0753ca7b 1507} __attribute__((packed)) T2_FFIRST_RSP_PARMS;
1da177e4
LT
1508
1509typedef struct smb_com_transaction2_fnext_req {
1510 struct smb_hdr hdr; /* wct = 15 */
1511 __le16 TotalParameterCount;
1512 __le16 TotalDataCount;
1513 __le16 MaxParameterCount;
1514 __le16 MaxDataCount;
1515 __u8 MaxSetupCount;
1516 __u8 Reserved;
1517 __le16 Flags;
1518 __le32 Timeout;
1519 __u16 Reserved2;
1520 __le16 ParameterCount;
1521 __le16 ParameterOffset;
1522 __le16 DataCount;
1523 __le16 DataOffset;
1524 __u8 SetupCount; /* one */
1525 __u8 Reserved3;
1526 __le16 SubCommand; /* TRANS2_FIND_NEXT */
1527 __le16 ByteCount;
1528 __u8 Pad;
1529 __u16 SearchHandle;
1530 __le16 SearchCount;
1531 __le16 InformationLevel;
1532 __u32 ResumeKey;
1533 __le16 SearchFlags;
1534 char ResumeFileName[1];
0753ca7b 1535} __attribute__((packed)) TRANSACTION2_FNEXT_REQ;
1da177e4
LT
1536
1537typedef struct smb_com_transaction2_fnext_rsp {
1538 struct smb_hdr hdr; /* wct = 10 */
1539 struct trans2_resp t2;
1540 __u16 ByteCount;
0753ca7b 1541} __attribute__((packed)) TRANSACTION2_FNEXT_RSP;
1da177e4
LT
1542
1543typedef struct smb_com_transaction2_fnext_rsp_parms {
1544 __le16 SearchCount;
1545 __le16 EndofSearch;
1546 __le16 EAErrorOffset;
1547 __le16 LastNameOffset;
0753ca7b 1548} __attribute__((packed)) T2_FNEXT_RSP_PARMS;
1da177e4
LT
1549
1550/* QFSInfo Levels */
1551#define SMB_INFO_ALLOCATION 1
1552#define SMB_INFO_VOLUME 2
1553#define SMB_QUERY_FS_VOLUME_INFO 0x102
1554#define SMB_QUERY_FS_SIZE_INFO 0x103
1555#define SMB_QUERY_FS_DEVICE_INFO 0x104
1556#define SMB_QUERY_FS_ATTRIBUTE_INFO 0x105
1557#define SMB_QUERY_CIFS_UNIX_INFO 0x200
1558#define SMB_QUERY_POSIX_FS_INFO 0x201
1559#define SMB_QUERY_LABEL_INFO 0x3ea
1560#define SMB_QUERY_FS_QUOTA_INFO 0x3ee
1561#define SMB_QUERY_FS_FULL_SIZE_INFO 0x3ef
1562#define SMB_QUERY_OBJECTID_INFO 0x3f0
1563
1564typedef struct smb_com_transaction2_qfsi_req {
1565 struct smb_hdr hdr; /* wct = 14+ */
1566 __le16 TotalParameterCount;
1567 __le16 TotalDataCount;
1568 __le16 MaxParameterCount;
1569 __le16 MaxDataCount;
1570 __u8 MaxSetupCount;
1571 __u8 Reserved;
1572 __le16 Flags;
1573 __le32 Timeout;
1574 __u16 Reserved2;
1575 __le16 ParameterCount;
1576 __le16 ParameterOffset;
1577 __le16 DataCount;
1578 __le16 DataOffset;
1579 __u8 SetupCount;
1580 __u8 Reserved3;
1581 __le16 SubCommand; /* one setup word */
1582 __le16 ByteCount;
1583 __u8 Pad;
1584 __le16 InformationLevel;
0753ca7b 1585} __attribute__((packed)) TRANSACTION2_QFSI_REQ;
1da177e4
LT
1586
1587typedef struct smb_com_transaction_qfsi_rsp {
1588 struct smb_hdr hdr; /* wct = 10 + SetupCount */
1589 struct trans2_resp t2;
1590 __u16 ByteCount;
1591 __u8 Pad; /* may be three bytes *//* followed by data area */
0753ca7b 1592} __attribute__((packed)) TRANSACTION2_QFSI_RSP;
1da177e4 1593
ac67055e
JA
1594
1595/* SETFSInfo Levels */
1596#define SMB_SET_CIFS_UNIX_INFO 0x200
1597typedef struct smb_com_transaction2_setfsi_req {
1598 struct smb_hdr hdr; /* wct = 15 */
1599 __le16 TotalParameterCount;
1600 __le16 TotalDataCount;
1601 __le16 MaxParameterCount;
1602 __le16 MaxDataCount;
1603 __u8 MaxSetupCount;
1604 __u8 Reserved;
1605 __le16 Flags;
1606 __le32 Timeout;
1607 __u16 Reserved2;
1608 __le16 ParameterCount; /* 4 */
1609 __le16 ParameterOffset;
1610 __le16 DataCount; /* 12 */
1611 __le16 DataOffset;
1612 __u8 SetupCount; /* one */
1613 __u8 Reserved3;
1614 __le16 SubCommand; /* TRANS2_SET_FS_INFORMATION */
1615 __le16 ByteCount;
1616 __u8 Pad;
1617 __u16 FileNum; /* Parameters start. */
1618 __le16 InformationLevel;/* Parameters end. */
1619 __le16 ClientUnixMajor; /* Data start. */
1620 __le16 ClientUnixMinor;
1621 __le64 ClientUnixCap; /* Data end */
0753ca7b 1622} __attribute__((packed)) TRANSACTION2_SETFSI_REQ;
ac67055e
JA
1623
1624typedef struct smb_com_transaction2_setfsi_rsp {
1625 struct smb_hdr hdr; /* wct = 10 */
1626 struct trans2_resp t2;
1627 __u16 ByteCount;
0753ca7b 1628} __attribute__((packed)) TRANSACTION2_SETFSI_RSP;
ac67055e
JA
1629
1630
1da177e4
LT
1631typedef struct smb_com_transaction2_get_dfs_refer_req {
1632 struct smb_hdr hdr; /* wct = 15 */
1633 __le16 TotalParameterCount;
1634 __le16 TotalDataCount;
1635 __le16 MaxParameterCount;
1636 __le16 MaxDataCount;
1637 __u8 MaxSetupCount;
1638 __u8 Reserved;
1639 __le16 Flags;
1640 __le32 Timeout;
1641 __u16 Reserved2;
1642 __le16 ParameterCount;
1643 __le16 ParameterOffset;
1644 __le16 DataCount;
1645 __le16 DataOffset;
1646 __u8 SetupCount;
1647 __u8 Reserved3;
1648 __le16 SubCommand; /* one setup word */
1649 __le16 ByteCount;
1650 __u8 Pad[3]; /* Win2K has sent 0x0F01 (max resp length perhaps?) followed by one byte pad - doesn't seem to matter though */
1651 __le16 MaxReferralLevel;
1652 char RequestFileName[1];
0753ca7b 1653} __attribute__((packed)) TRANSACTION2_GET_DFS_REFER_REQ;
1da177e4
LT
1654
1655typedef struct dfs_referral_level_3 {
1656 __le16 VersionNumber;
1657 __le16 ReferralSize;
1658 __le16 ServerType; /* 0x0001 = CIFS server */
1659 __le16 ReferralFlags; /* or proximity - not clear which since always set to zero - SNIA spec says 0x01 means strip off PathConsumed chars before submitting RequestFileName to remote node */
1660 __le16 TimeToLive;
1661 __le16 Proximity;
1662 __le16 DfsPathOffset;
1663 __le16 DfsAlternatePathOffset;
1664 __le16 NetworkAddressOffset;
0753ca7b 1665} __attribute__((packed)) REFERRAL3;
1da177e4
LT
1666
1667typedef struct smb_com_transaction_get_dfs_refer_rsp {
1668 struct smb_hdr hdr; /* wct = 10 */
1669 struct trans2_resp t2;
1670 __u16 ByteCount;
1671 __u8 Pad;
1672 __le16 PathConsumed;
1673 __le16 NumberOfReferrals;
1674 __le16 DFSFlags;
1675 __u16 Pad2;
1676 REFERRAL3 referrals[1]; /* array of level 3 dfs_referral structures */
1677 /* followed by the strings pointed to by the referral structures */
0753ca7b 1678} __attribute__((packed)) TRANSACTION2_GET_DFS_REFER_RSP;
1da177e4
LT
1679
1680/* DFS Flags */
1681#define DFSREF_REFERRAL_SERVER 0x0001
1682#define DFSREF_STORAGE_SERVER 0x0002
1683
1684/* IOCTL information */
1685/* List of ioctl function codes that look to be of interest to remote clients like this. */
1686/* Need to do some experimentation to make sure they all work remotely. */
1687/* Some of the following such as the encryption/compression ones would be */
1688/* invoked from tools via a specialized hook into the VFS rather than via the */
1689/* standard vfs entry points */
1690#define FSCTL_REQUEST_OPLOCK_LEVEL_1 0x00090000
1691#define FSCTL_REQUEST_OPLOCK_LEVEL_2 0x00090004
1692#define FSCTL_REQUEST_BATCH_OPLOCK 0x00090008
1693#define FSCTL_LOCK_VOLUME 0x00090018
1694#define FSCTL_UNLOCK_VOLUME 0x0009001C
1695#define FSCTL_GET_COMPRESSION 0x0009003C
1696#define FSCTL_SET_COMPRESSION 0x0009C040
1697#define FSCTL_REQUEST_FILTER_OPLOCK 0x0009008C
1698#define FSCTL_FILESYS_GET_STATISTICS 0x00090090
1699#define FSCTL_SET_REPARSE_POINT 0x000900A4
1700#define FSCTL_GET_REPARSE_POINT 0x000900A8
1701#define FSCTL_DELETE_REPARSE_POINT 0x000900AC
1702#define FSCTL_SET_SPARSE 0x000900C4
1703#define FSCTL_SET_ZERO_DATA 0x000900C8
1704#define FSCTL_SET_ENCRYPTION 0x000900D7
1705#define FSCTL_ENCRYPTION_FSCTL_IO 0x000900DB
1706#define FSCTL_WRITE_RAW_ENCRYPTED 0x000900DF
1707#define FSCTL_READ_RAW_ENCRYPTED 0x000900E3
1708#define FSCTL_SIS_COPYFILE 0x00090100
1709#define FSCTL_SIS_LINK_FILES 0x0009C104
1710
1711#define IO_REPARSE_TAG_MOUNT_POINT 0xA0000003
1712#define IO_REPARSE_TAG_HSM 0xC0000004
1713#define IO_REPARSE_TAG_SIS 0x80000007
1714
1715/*
1716 ************************************************************************
1717 * All structs for everything above the SMB PDUs themselves
1718 * (such as the T2 level specific data) go here
1719 ************************************************************************
1720 */
1721
1722/*
1723 * Information on a server
1724 */
1725
1726struct serverInfo {
1727 char name[16];
1728 unsigned char versionMajor;
1729 unsigned char versionMinor;
1730 unsigned long type;
1731 unsigned int commentOffset;
0753ca7b 1732} __attribute__((packed));
1da177e4
LT
1733
1734/*
1735 * The following structure is the format of the data returned on a NetShareEnum
1736 * with level "90" (x5A)
1737 */
1738
1739struct shareInfo {
1740 char shareName[13];
1741 char pad;
1742 unsigned short type;
1743 unsigned int commentOffset;
0753ca7b 1744} __attribute__((packed));
1da177e4
LT
1745
1746struct aliasInfo {
1747 char aliasName[9];
1748 char pad;
1749 unsigned int commentOffset;
1750 unsigned char type[2];
0753ca7b 1751} __attribute__((packed));
1da177e4
LT
1752
1753struct aliasInfo92 {
1754 int aliasNameOffset;
1755 int serverNameOffset;
1756 int shareNameOffset;
0753ca7b 1757} __attribute__((packed));
1da177e4
LT
1758
1759typedef struct {
1760 __le64 TotalAllocationUnits;
1761 __le64 FreeAllocationUnits;
1762 __le32 SectorsPerAllocationUnit;
1763 __le32 BytesPerSector;
0753ca7b 1764} __attribute__((packed)) FILE_SYSTEM_INFO; /* size info, level 0x103 */
1da177e4 1765
20962438
SF
1766typedef struct {
1767 __le32 fsid;
1768 __le32 SectorsPerAllocationUnit;
1769 __le32 TotalAllocationUnits;
1770 __le32 FreeAllocationUnits;
1771 __le16 BytesPerSector;
0753ca7b 1772} __attribute__((packed)) FILE_SYSTEM_ALLOC_INFO;
20962438 1773
1da177e4
LT
1774typedef struct {
1775 __le16 MajorVersionNumber;
1776 __le16 MinorVersionNumber;
1777 __le64 Capability;
0753ca7b 1778} __attribute__((packed)) FILE_SYSTEM_UNIX_INFO; /* Unix extensions info, level 0x200 */
ac67055e
JA
1779
1780/* Version numbers for CIFS UNIX major and minor. */
1781#define CIFS_UNIX_MAJOR_VERSION 1
1782#define CIFS_UNIX_MINOR_VERSION 0
1783
1da177e4
LT
1784/* Linux/Unix extensions capability flags */
1785#define CIFS_UNIX_FCNTL_CAP 0x00000001 /* support for fcntl locks */
f654bac2
SF
1786#define CIFS_UNIX_POSIX_ACL_CAP 0x00000002 /* support getfacl/setfacl */
1787#define CIFS_UNIX_XATTR_CAP 0x00000004 /* support new namespace */
1788#define CIFS_UNIX_EXTATTR_CAP 0x00000008 /* support chattr/chflag */
ac67055e
JA
1789#define CIFS_UNIX_POSIX_PATHNAMES_CAP 0x00000010 /* Use POSIX pathnames on the wire. */
1790
f28ac91b 1791#define CIFS_POSIX_EXTENSIONS 0x00000010 /* support for new QFSInfo */
ac67055e 1792
1da177e4
LT
1793typedef struct {
1794 /* For undefined recommended transfer size return -1 in that field */
1795 __le32 OptimalTransferSize; /* bsize on some os, iosize on other os */
1796 __le32 BlockSize;
1797 /* The next three fields are in terms of the block size.
1798 (above). If block size is unknown, 4096 would be a
1799 reasonable block size for a server to report.
1800 Note that returning the blocks/blocksavail removes need
1801 to make a second call (to QFSInfo level 0x103 to get this info.
1802 UserBlockAvail is typically less than or equal to BlocksAvail,
1803 if no distinction is made return the same value in each */
1804 __le64 TotalBlocks;
1805 __le64 BlocksAvail; /* bfree */
1806 __le64 UserBlocksAvail; /* bavail */
1807 /* For undefined Node fields or FSID return -1 */
1808 __le64 TotalFileNodes;
1809 __le64 FreeFileNodes;
1810 __le64 FileSysIdentifier; /* fsid */
1811 /* NB Namelen comes from FILE_SYSTEM_ATTRIBUTE_INFO call */
1812 /* NB flags can come from FILE_SYSTEM_DEVICE_INFO call */
0753ca7b 1813} __attribute__((packed)) FILE_SYSTEM_POSIX_INFO;
1da177e4
LT
1814
1815/* DeviceType Flags */
1816#define FILE_DEVICE_CD_ROM 0x00000002
1817#define FILE_DEVICE_CD_ROM_FILE_SYSTEM 0x00000003
1818#define FILE_DEVICE_DFS 0x00000006
1819#define FILE_DEVICE_DISK 0x00000007
1820#define FILE_DEVICE_DISK_FILE_SYSTEM 0x00000008
1821#define FILE_DEVICE_FILE_SYSTEM 0x00000009
1822#define FILE_DEVICE_NAMED_PIPE 0x00000011
1823#define FILE_DEVICE_NETWORK 0x00000012
1824#define FILE_DEVICE_NETWORK_FILE_SYSTEM 0x00000014
1825#define FILE_DEVICE_NULL 0x00000015
1826#define FILE_DEVICE_PARALLEL_PORT 0x00000016
1827#define FILE_DEVICE_PRINTER 0x00000018
1828#define FILE_DEVICE_SERIAL_PORT 0x0000001b
1829#define FILE_DEVICE_STREAMS 0x0000001e
1830#define FILE_DEVICE_TAPE 0x0000001f
1831#define FILE_DEVICE_TAPE_FILE_SYSTEM 0x00000020
1832#define FILE_DEVICE_VIRTUAL_DISK 0x00000024
1833#define FILE_DEVICE_NETWORK_REDIRECTOR 0x00000028
1834
1835typedef struct {
1836 __le32 DeviceType;
1837 __le32 DeviceCharacteristics;
0753ca7b 1838} __attribute__((packed)) FILE_SYSTEM_DEVICE_INFO; /* device info, level 0x104 */
1da177e4
LT
1839
1840typedef struct {
1841 __le32 Attributes;
1842 __le32 MaxPathNameComponentLength;
1843 __le32 FileSystemNameLen;
1844 char FileSystemName[52]; /* do not really need to save this - so potentially get only subset of name */
0753ca7b 1845} __attribute__((packed)) FILE_SYSTEM_ATTRIBUTE_INFO;
1da177e4
LT
1846
1847/******************************************************************************/
1848/* QueryFileInfo/QueryPathinfo (also for SetPath/SetFile) data buffer formats */
1849/******************************************************************************/
1850typedef struct { /* data block encoding of response to level 263 QPathInfo */
1851 __le64 CreationTime;
1852 __le64 LastAccessTime;
1853 __le64 LastWriteTime;
1854 __le64 ChangeTime;
1855 __le32 Attributes;
1856 __u32 Pad1;
1857 __le64 AllocationSize;
1858 __le64 EndOfFile; /* size ie offset to first free byte in file */
1859 __le32 NumberOfLinks; /* hard links */
1860 __u8 DeletePending;
1861 __u8 Directory;
1862 __u16 Pad2;
1863 __u64 IndexNumber;
1864 __le32 EASize;
1865 __le32 AccessFlags;
1866 __u64 IndexNumber1;
1867 __le64 CurrentByteOffset;
1868 __le32 Mode;
1869 __le32 AlignmentRequirement;
1870 __le32 FileNameLength;
1871 char FileName[1];
0753ca7b 1872} __attribute__((packed)) FILE_ALL_INFO; /* level 0x107 QPathInfo */
1da177e4
LT
1873
1874/* defines for enumerating possible values of the Unix type field below */
1875#define UNIX_FILE 0
1876#define UNIX_DIR 1
1877#define UNIX_SYMLINK 2
1878#define UNIX_CHARDEV 3
1879#define UNIX_BLOCKDEV 4
1880#define UNIX_FIFO 5
1881#define UNIX_SOCKET 6
1882typedef struct {
1883 __le64 EndOfFile;
1884 __le64 NumOfBytes;
1885 __le64 LastStatusChange; /*SNIA specs DCE time for the 3 time fields */
1886 __le64 LastAccessTime;
1887 __le64 LastModificationTime;
1888 __le64 Uid;
1889 __le64 Gid;
1890 __le32 Type;
1891 __le64 DevMajor;
1892 __le64 DevMinor;
1893 __u64 UniqueId;
1894 __le64 Permissions;
1895 __le64 Nlinks;
0753ca7b 1896} __attribute__((packed)) FILE_UNIX_BASIC_INFO; /* level 0x200 QPathInfo */
1da177e4
LT
1897
1898typedef struct {
1899 char LinkDest[1];
0753ca7b 1900} __attribute__((packed)) FILE_UNIX_LINK_INFO; /* level 0x201 QPathInfo */
1da177e4
LT
1901
1902/* The following three structures are needed only for
1903 setting time to NT4 and some older servers via
1904 the primitive DOS time format */
1905typedef struct {
1906 __u16 Day:5;
1907 __u16 Month:4;
1908 __u16 Year:7;
0753ca7b 1909} __attribute__((packed)) SMB_DATE;
1da177e4
LT
1910
1911typedef struct {
1912 __u16 TwoSeconds:5;
1913 __u16 Minutes:6;
1914 __u16 Hours:5;
0753ca7b 1915} __attribute__((packed)) SMB_TIME;
1da177e4
LT
1916
1917typedef struct {
1918 __le16 CreationDate; /* SMB Date see above */
1919 __le16 CreationTime; /* SMB Time */
1920 __le16 LastAccessDate;
1921 __le16 LastAccessTime;
1922 __le16 LastWriteDate;
1923 __le16 LastWriteTime;
1924 __le32 DataSize; /* File Size (EOF) */
1925 __le32 AllocationSize;
1926 __le16 Attributes; /* verify not u32 */
1927 __le32 EASize;
0753ca7b 1928} __attribute__((packed)) FILE_INFO_STANDARD; /* level 1 SetPath/FileInfo */
1da177e4
LT
1929
1930typedef struct {
1931 __le64 CreationTime;
1932 __le64 LastAccessTime;
1933 __le64 LastWriteTime;
1934 __le64 ChangeTime;
1935 __le32 Attributes;
1936 __u32 Pad;
0753ca7b 1937} __attribute__((packed)) FILE_BASIC_INFO; /* size info, level 0x101 */
1da177e4
LT
1938
1939struct file_allocation_info {
1940 __le64 AllocationSize; /* Note old Samba srvr rounds this up too much */
0753ca7b 1941} __attribute__((packed)); /* size used on disk, level 0x103 for set, 0x105 for query */
1da177e4
LT
1942
1943struct file_end_of_file_info {
1944 __le64 FileSize; /* offset to end of file */
0753ca7b 1945} __attribute__((packed)); /* size info, level 0x104 for set, 0x106 for query */
1da177e4
LT
1946
1947struct file_alt_name_info {
1948 __u8 alt_name[1];
0753ca7b 1949} __attribute__((packed)); /* level 0x0108 */
1da177e4
LT
1950
1951struct file_stream_info {
1952 __le32 number_of_streams; /* BB check sizes and verify location */
1953 /* followed by info on streams themselves
1954 u64 size;
1955 u64 allocation_size
1956 stream info */
1957}; /* level 0x109 */
1958
1959struct file_compression_info {
1960 __le64 compressed_size;
1961 __le16 format;
1962 __u8 unit_shift;
1963 __u8 ch_shift;
1964 __u8 cl_shift;
1965 __u8 pad[3];
0753ca7b 1966} __attribute__((packed)); /* level 0x10b */
1da177e4
LT
1967
1968/* POSIX ACL set/query path info structures */
1969#define CIFS_ACL_VERSION 1
1970struct cifs_posix_ace { /* access control entry (ACE) */
1971 __u8 cifs_e_tag;
1972 __u8 cifs_e_perm;
1973 __le64 cifs_uid; /* or gid */
0753ca7b 1974} __attribute__((packed));
1da177e4
LT
1975
1976struct cifs_posix_acl { /* access conrol list (ACL) */
1977 __le16 version;
1978 __le16 access_entry_count; /* access ACL - count of entries */
1979 __le16 default_entry_count; /* default ACL - count of entries */
1980 struct cifs_posix_ace ace_array[0];
1981 /* followed by
1982 struct cifs_posix_ace default_ace_arraay[] */
0753ca7b 1983} __attribute__((packed)); /* level 0x204 */
1da177e4
LT
1984
1985/* types of access control entries already defined in posix_acl.h */
1986/* #define CIFS_POSIX_ACL_USER_OBJ 0x01
1987#define CIFS_POSIX_ACL_USER 0x02
1988#define CIFS_POSIX_ACL_GROUP_OBJ 0x04
1989#define CIFS_POSIX_ACL_GROUP 0x08
1990#define CIFS_POSIX_ACL_MASK 0x10
1991#define CIFS_POSIX_ACL_OTHER 0x20 */
1992
1993/* types of perms */
1994/* #define CIFS_POSIX_ACL_EXECUTE 0x01
1995#define CIFS_POSIX_ACL_WRITE 0x02
1996#define CIFS_POSIX_ACL_READ 0x04 */
1997
1998/* end of POSIX ACL definitions */
1999
2000struct file_internal_info {
2001 __u64 UniqueId; /* inode number */
0753ca7b 2002} __attribute__((packed)); /* level 0x3ee */
1da177e4
LT
2003struct file_mode_info {
2004 __le32 Mode;
0753ca7b 2005} __attribute__((packed)); /* level 0x3f8 */
1da177e4
LT
2006
2007struct file_attrib_tag {
2008 __le32 Attribute;
2009 __le32 ReparseTag;
0753ca7b 2010} __attribute__((packed)); /* level 0x40b */
1da177e4
LT
2011
2012
2013/********************************************************/
2014/* FindFirst/FindNext transact2 data buffer formats */
2015/********************************************************/
2016
2017typedef struct {
2018 __le32 NextEntryOffset;
2019 __u32 ResumeKey; /* as with FileIndex - no need to convert */
2020 __le64 EndOfFile;
2021 __le64 NumOfBytes;
2022 __le64 LastStatusChange; /*SNIA specs DCE time for the 3 time fields */
2023 __le64 LastAccessTime;
2024 __le64 LastModificationTime;
2025 __le64 Uid;
2026 __le64 Gid;
2027 __le32 Type;
2028 __le64 DevMajor;
2029 __le64 DevMinor;
2030 __u64 UniqueId;
2031 __le64 Permissions;
2032 __le64 Nlinks;
2033 char FileName[1];
0753ca7b 2034} __attribute__((packed)) FILE_UNIX_INFO; /* level 0x202 */
1da177e4
LT
2035
2036typedef struct {
2037 __le32 NextEntryOffset;
2038 __u32 FileIndex;
2039 __le64 CreationTime;
2040 __le64 LastAccessTime;
2041 __le64 LastWriteTime;
2042 __le64 ChangeTime;
2043 __le64 EndOfFile;
2044 __le64 AllocationSize;
2045 __le32 ExtFileAttributes;
2046 __le32 FileNameLength;
2047 char FileName[1];
0753ca7b 2048} __attribute__((packed)) FILE_DIRECTORY_INFO; /* level 0x101 FF response data area */
1da177e4
LT
2049
2050typedef struct {
2051 __le32 NextEntryOffset;
2052 __u32 FileIndex;
2053 __le64 CreationTime;
2054 __le64 LastAccessTime;
2055 __le64 LastWriteTime;
2056 __le64 ChangeTime;
2057 __le64 EndOfFile;
2058 __le64 AllocationSize;
2059 __le32 ExtFileAttributes;
2060 __le32 FileNameLength;
2061 __le32 EaSize; /* length of the xattrs */
2062 char FileName[1];
0753ca7b 2063} __attribute__((packed)) FILE_FULL_DIRECTORY_INFO; /* level 0x102 FF response data area */
1da177e4
LT
2064
2065typedef struct {
2066 __le32 NextEntryOffset;
2067 __u32 FileIndex;
2068 __le64 CreationTime;
2069 __le64 LastAccessTime;
2070 __le64 LastWriteTime;
2071 __le64 ChangeTime;
2072 __le64 EndOfFile;
2073 __le64 AllocationSize;
2074 __le32 ExtFileAttributes;
2075 __le32 FileNameLength;
2076 __le32 EaSize; /* EA size */
2077 __le32 Reserved;
2078 __u64 UniqueId; /* inode num - le since Samba puts ino in low 32 bit*/
2079 char FileName[1];
0753ca7b 2080} __attribute__((packed)) SEARCH_ID_FULL_DIR_INFO; /* level 0x105 FF response data area */
1da177e4
LT
2081
2082typedef struct {
2083 __le32 NextEntryOffset;
2084 __u32 FileIndex;
2085 __le64 CreationTime;
2086 __le64 LastAccessTime;
2087 __le64 LastWriteTime;
2088 __le64 ChangeTime;
2089 __le64 EndOfFile;
2090 __le64 AllocationSize;
2091 __le32 ExtFileAttributes;
2092 __le32 FileNameLength;
2093 __le32 EaSize; /* length of the xattrs */
2094 __u8 ShortNameLength;
2095 __u8 Reserved;
2096 __u8 ShortName[12];
2097 char FileName[1];
0753ca7b 2098} __attribute__((packed)) FILE_BOTH_DIRECTORY_INFO; /* level 0x104 FF response data area */
1da177e4
LT
2099
2100
86c96b4b
SF
2101struct win_dev {
2102 unsigned char type[8]; /* IntxCHR or IntxBLK */
2103 __le64 major;
2104 __le64 minor;
2105} __attribute__((packed));
2106
1da177e4
LT
2107struct gea {
2108 unsigned char name_len;
2109 char name[1];
0753ca7b 2110} __attribute__((packed));
1da177e4
LT
2111
2112struct gealist {
2113 unsigned long list_len;
2114 struct gea list[1];
0753ca7b 2115} __attribute__((packed));
1da177e4
LT
2116
2117struct fea {
2118 unsigned char EA_flags;
2119 __u8 name_len;
2120 __le16 value_len;
2121 char name[1];
2122 /* optionally followed by value */
0753ca7b 2123} __attribute__((packed));
1da177e4
LT
2124/* flags for _FEA.fEA */
2125#define FEA_NEEDEA 0x80 /* need EA bit */
2126
2127struct fealist {
2128 __le32 list_len;
2129 struct fea list[1];
0753ca7b 2130} __attribute__((packed));
1da177e4
LT
2131
2132/* used to hold an arbitrary blob of data */
2133struct data_blob {
2134 __u8 *data;
2135 size_t length;
2136 void (*free) (struct data_blob * data_blob);
0753ca7b 2137} __attribute__((packed));
1da177e4
LT
2138
2139
2140#ifdef CONFIG_CIFS_POSIX
2141/*
2142 For better POSIX semantics from Linux client, (even better
2143 than the existing CIFS Unix Extensions) we need updated PDUs for:
2144
2145 1) PosixCreateX - to set and return the mode, inode#, device info and
2146 perhaps add a CreateDevice - to create Pipes and other special .inodes
2147 Also note POSIX open flags
2148 2) Close - to return the last write time to do cache across close more safely
1982c344
SF
2149 3) FindFirst return unique inode number - what about resume key, two
2150 forms short (matches readdir) and full (enough info to cache inodes)
2151 4) Mkdir - set mode
1da177e4
LT
2152
2153 And under consideration:
1982c344
SF
2154 5) FindClose2 (return nanosecond timestamp ??)
2155 6) Use nanosecond timestamps throughout all time fields if
1da177e4 2156 corresponding attribute flag is set
1982c344
SF
2157 7) sendfile - handle based copy
2158 8) Direct i/o
2159 9) Misc fcntls?
1da177e4
LT
2160
2161 what about fixing 64 bit alignment
2162
2163 There are also various legacy SMB/CIFS requests used as is
2164
2165 From existing Lanman and NTLM dialects:
2166 --------------------------------------
2167 NEGOTIATE
2168 SESSION_SETUP_ANDX (BB which?)
2169 TREE_CONNECT_ANDX (BB which wct?)
2170 TREE_DISCONNECT (BB add volume timestamp on response)
2171 LOGOFF_ANDX
2172 DELETE (note delete open file behavior)
2173 DELETE_DIRECTORY
2174 READ_AND_X
2175 WRITE_AND_X
2176 LOCKING_AND_X (note posix lock semantics)
2177 RENAME (note rename across dirs and open file rename posix behaviors)
2178 NT_RENAME (for hardlinks) Is this good enough for all features?
2179 FIND_CLOSE2
2180 TRANSACTION2 (18 cases)
2181 SMB_SET_FILE_END_OF_FILE_INFO2 SMB_SET_PATH_END_OF_FILE_INFO2
2182 (BB verify that never need to set allocation size)
2183 SMB_SET_FILE_BASIC_INFO2 (setting times - BB can it be done via Unix ext?)
2184
2185 COPY (note support for copy across directories) - FUTURE, OPTIONAL
2186 setting/getting OS/2 EAs - FUTURE (BB can this handle
2187 setting Linux xattrs perfectly) - OPTIONAL
2188 dnotify - FUTURE, OPTIONAL
2189 quota - FUTURE, OPTIONAL
2190
2191 Note that various requests implemented for NT interop such as
2192 NT_TRANSACT (IOCTL) QueryReparseInfo
2193 are unneeded to servers compliant with the CIFS POSIX extensions
2194
2195 From CIFS Unix Extensions:
2196 -------------------------
2197 T2 SET_PATH_INFO (SMB_SET_FILE_UNIX_LINK) for symlinks
2198 T2 SET_PATH_INFO (SMB_SET_FILE_BASIC_INFO2)
2199 T2 QUERY_PATH_INFO (SMB_QUERY_FILE_UNIX_LINK)
2200 T2 QUERY_PATH_INFO (SMB_QUERY_FILE_UNIX_BASIC) - BB check for missing inode fields
2201 Actually need QUERY_FILE_UNIX_INFO since has inode num
2202 BB what about a) blksize/blkbits/blocks
2203 b) i_version
2204 c) i_rdev
2205 d) notify mask?
2206 e) generation
2207 f) size_seqcount
2208 T2 FIND_FIRST/FIND_NEXT FIND_FILE_UNIX
2209 TRANS2_GET_DFS_REFERRAL - OPTIONAL but recommended
2210 T2_QFS_INFO QueryDevice/AttributeInfo - OPTIONAL
2211
2212
2213 */
2214
1982c344 2215/* xsymlink is a symlink format (used by MacOS) that can be used
1da177e4
LT
2216 to save symlink info in a regular file when
2217 mounted to operating systems that do not
2218 support the cifs Unix extensions or EAs (for xattr
2219 based symlinks). For such a file to be recognized
2220 as containing symlink data:
2221
2222 1) file size must be 1067,
2223 2) signature must begin file data,
2224 3) length field must be set to ASCII representation
2225 of a number which is less than or equal to 1024,
2226 4) md5 must match that of the path data */
2227
2228struct xsymlink {
2229 /* 1067 bytes */
2230 char signature[4]; /* XSym */ /* not null terminated */
2231 char cr0; /* \n */
2232/* ASCII representation of length (4 bytes decimal) terminated by \n not null */
2233 char length[4];
2234 char cr1; /* \n */
2235/* md5 of valid subset of path ie path[0] through path[length-1] */
2236 __u8 md5[32];
2237 char cr2; /* \n */
2238/* if room left, then end with \n then 0x20s by convention but not required */
2239 char path[1024];
0753ca7b 2240} __attribute__((packed));
1da177e4 2241
f654bac2 2242typedef struct file_xattr_info {
1da177e4
LT
2243 /* BB do we need another field for flags? BB */
2244 __u32 xattr_name_len;
2245 __u32 xattr_value_len;
2246 char xattr_name[0];
2247 /* followed by xattr_value[xattr_value_len], no pad */
0753ca7b 2248} __attribute__((packed)) FILE_XATTR_INFO; /* extended attribute, info level 0x205 */
f654bac2
SF
2249
2250
2251/* flags for chattr command */
2252#define EXT_SECURE_DELETE 0x00000001 /* EXT3_SECRM_FL */
2253#define EXT_ENABLE_UNDELETE 0x00000002 /* EXT3_UNRM_FL */
2254/* Reserved for compress file 0x4 */
2255#define EXT_SYNCHRONOUS 0x00000008 /* EXT3_SYNC_FL */
2256#define EXT_IMMUTABLE_FL 0x00000010 /* EXT3_IMMUTABLE_FL */
2257#define EXT_OPEN_APPEND_ONLY 0x00000020 /* EXT3_APPEND_FL */
2258#define EXT_DO_NOT_BACKUP 0x00000040 /* EXT3_NODUMP_FL */
2259#define EXT_NO_UPDATE_ATIME 0x00000080 /* EXT3_NOATIME_FL */
2260/* 0x100 through 0x800 reserved for compression flags and are GET-ONLY */
2261#define EXT_HASH_TREE_INDEXED_DIR 0x00001000 /* GET-ONLY EXT3_INDEX_FL */
2262/* 0x2000 reserved for IMAGIC_FL */
2263#define EXT_JOURNAL_THIS_FILE 0x00004000 /* GET-ONLY EXT3_JOURNAL_DATA_FL */
2264/* 0x8000 reserved for EXT3_NOTAIL_FL */
2265#define EXT_SYNCHRONOUS_DIR 0x00010000 /* EXT3_DIRSYNC_FL */
2266#define EXT_TOPDIR 0x00020000 /* EXT3_TOPDIR_FL */
2267
2268#define EXT_SET_MASK 0x000300FF
2269#define EXT_GET_MASK 0x0003DFFF
2270
2271typedef struct file_chattr_info {
2272 __le64 mask; /* list of all possible attribute bits */
2273 __le64 mode; /* list of actual attribute bits on this inode */
0753ca7b 2274} __attribute__((packed)) FILE_CHATTR_INFO; /* ext attributes (chattr, chflags) level 0x206 */
1da177e4
LT
2275
2276#endif
2277
1da177e4 2278#endif /* _CIFSPDU_H */