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