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