diff options
author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
commit | 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch) | |
tree | 0bba044c4ce775e45a88a51686b5d9f90697ea9d /fs/cifs/cifspdu.h |
Linux-2.6.12-rc2v2.6.12-rc2
Initial git repository build. I'm not bothering with the full history,
even though we have it. We can create a separate "historical" git
archive of that later if we want to, and in the meantime it's about
3.2GB when imported into git - space that would just make the early
git days unnecessarily complicated, when we don't have a lot of good
infrastructure for it.
Let it rip!
Diffstat (limited to 'fs/cifs/cifspdu.h')
-rw-r--r-- | fs/cifs/cifspdu.h | 1987 |
1 files changed, 1987 insertions, 0 deletions
diff --git a/fs/cifs/cifspdu.h b/fs/cifs/cifspdu.h new file mode 100644 index 000000000000..bcd4a6136f08 --- /dev/null +++ b/fs/cifs/cifspdu.h | |||
@@ -0,0 +1,1987 @@ | |||
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 | |||
302 | struct 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 | |||
378 | typedef struct negotiate_req { | ||
379 | struct smb_hdr hdr; /* wct = 0 */ | ||
380 | __le16 ByteCount; | ||
381 | unsigned char DialectsArray[1]; | ||
382 | } NEGOTIATE_REQ; | ||
383 | |||
384 | typedef 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 | |||
438 | typedef 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 | |||
540 | typedef 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 | |||
553 | typedef 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 | |||
571 | typedef 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 | |||
579 | typedef 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 | |||
587 | typedef 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 | |||
598 | typedef 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 | |||
605 | typedef struct smb_com_close_rsp { | ||
606 | struct smb_hdr hdr; /* wct = 0 */ | ||
607 | __u16 ByteCount; /* bct = 0 */ | ||
608 | } CLOSE_RSP; | ||
609 | |||
610 | typedef 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 | |||
621 | typedef 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 | |||
651 | typedef 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 | |||
672 | typedef 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 | |||
691 | typedef 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 | |||
703 | typedef 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 | |||
718 | typedef 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 | |||
735 | typedef 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 | |||
750 | typedef 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 | |||
765 | typedef struct smb_com_lock_rsp { | ||
766 | struct smb_hdr hdr; /* wct = 2 */ | ||
767 | __u8 AndXCommand; | ||
768 | __u8 AndXReserved; | ||
769 | __le16 AndXOffset; | ||
770 | __u16 ByteCount; | ||
771 | } LOCK_RSP; | ||
772 | |||
773 | typedef struct smb_com_rename_req { | ||
774 | struct smb_hdr hdr; /* wct = 1 */ | ||
775 | __le16 SearchAttributes; /* target file attributes */ | ||
776 | __le16 ByteCount; | ||
777 | __u8 BufferFormat; /* 4 = ASCII or Unicode */ | ||
778 | unsigned char OldFileName[1]; | ||
779 | /* followed by __u8 BufferFormat2 */ | ||
780 | /* followed by NewFileName */ | ||
781 | } RENAME_REQ; | ||
782 | |||
783 | /* copy request flags */ | ||
784 | #define COPY_MUST_BE_FILE 0x0001 | ||
785 | #define COPY_MUST_BE_DIR 0x0002 | ||
786 | #define COPY_TARGET_MODE_ASCII 0x0004 /* if not set, binary */ | ||
787 | #define COPY_SOURCE_MODE_ASCII 0x0008 /* if not set, binary */ | ||
788 | #define COPY_VERIFY_WRITES 0x0010 | ||
789 | #define COPY_TREE 0x0020 | ||
790 | |||
791 | typedef struct smb_com_copy_req { | ||
792 | struct smb_hdr hdr; /* wct = 3 */ | ||
793 | __u16 Tid2; | ||
794 | __le16 OpenFunction; | ||
795 | __le16 Flags; | ||
796 | __le16 ByteCount; | ||
797 | __u8 BufferFormat; /* 4 = ASCII or Unicode */ | ||
798 | unsigned char OldFileName[1]; | ||
799 | /* followed by __u8 BufferFormat2 */ | ||
800 | /* followed by NewFileName string */ | ||
801 | } COPY_REQ; | ||
802 | |||
803 | typedef struct smb_com_copy_rsp { | ||
804 | struct smb_hdr hdr; /* wct = 1 */ | ||
805 | __le16 CopyCount; /* number of files copied */ | ||
806 | __u16 ByteCount; /* may be zero */ | ||
807 | __u8 BufferFormat; /* 0x04 - only present if errored file follows */ | ||
808 | unsigned char ErrorFileName[1]; /* only present if error in copy */ | ||
809 | } COPY_RSP; | ||
810 | |||
811 | #define CREATE_HARD_LINK 0x103 | ||
812 | #define MOVEFILE_COPY_ALLOWED 0x0002 | ||
813 | #define MOVEFILE_REPLACE_EXISTING 0x0001 | ||
814 | |||
815 | typedef struct smb_com_nt_rename_req { /* A5 - also used for create hardlink */ | ||
816 | struct smb_hdr hdr; /* wct = 4 */ | ||
817 | __le16 SearchAttributes; /* target file attributes */ | ||
818 | __le16 Flags; /* spec says Information Level */ | ||
819 | __le32 ClusterCount; | ||
820 | __le16 ByteCount; | ||
821 | __u8 BufferFormat; /* 4 = ASCII or Unicode */ | ||
822 | unsigned char OldFileName[1]; | ||
823 | /* followed by __u8 BufferFormat2 */ | ||
824 | /* followed by NewFileName */ | ||
825 | } NT_RENAME_REQ; | ||
826 | |||
827 | typedef struct smb_com_rename_rsp { | ||
828 | struct smb_hdr hdr; /* wct = 0 */ | ||
829 | __u16 ByteCount; /* bct = 0 */ | ||
830 | } RENAME_RSP; | ||
831 | |||
832 | typedef struct smb_com_delete_file_req { | ||
833 | struct smb_hdr hdr; /* wct = 1 */ | ||
834 | __le16 SearchAttributes; | ||
835 | __le16 ByteCount; | ||
836 | __u8 BufferFormat; /* 4 = ASCII */ | ||
837 | unsigned char fileName[1]; | ||
838 | } DELETE_FILE_REQ; | ||
839 | |||
840 | typedef struct smb_com_delete_file_rsp { | ||
841 | struct smb_hdr hdr; /* wct = 0 */ | ||
842 | __u16 ByteCount; /* bct = 0 */ | ||
843 | } DELETE_FILE_RSP; | ||
844 | |||
845 | typedef struct smb_com_delete_directory_req { | ||
846 | struct smb_hdr hdr; /* wct = 0 */ | ||
847 | __le16 ByteCount; | ||
848 | __u8 BufferFormat; /* 4 = ASCII */ | ||
849 | unsigned char DirName[1]; | ||
850 | } DELETE_DIRECTORY_REQ; | ||
851 | |||
852 | typedef struct smb_com_delete_directory_rsp { | ||
853 | struct smb_hdr hdr; /* wct = 0 */ | ||
854 | __u16 ByteCount; /* bct = 0 */ | ||
855 | } DELETE_DIRECTORY_RSP; | ||
856 | |||
857 | typedef struct smb_com_create_directory_req { | ||
858 | struct smb_hdr hdr; /* wct = 0 */ | ||
859 | __le16 ByteCount; | ||
860 | __u8 BufferFormat; /* 4 = ASCII */ | ||
861 | unsigned char DirName[1]; | ||
862 | } CREATE_DIRECTORY_REQ; | ||
863 | |||
864 | typedef struct smb_com_create_directory_rsp { | ||
865 | struct smb_hdr hdr; /* wct = 0 */ | ||
866 | __u16 ByteCount; /* bct = 0 */ | ||
867 | } CREATE_DIRECTORY_RSP; | ||
868 | |||
869 | typedef struct smb_com_setattr_req { | ||
870 | struct smb_hdr hdr; /* wct = 8 */ | ||
871 | __le16 attr; | ||
872 | __le16 time_low; | ||
873 | __le16 time_high; | ||
874 | __le16 reserved[5]; /* must be zero */ | ||
875 | __u16 ByteCount; | ||
876 | __u8 BufferFormat; /* 4 = ASCII */ | ||
877 | unsigned char fileName[1]; | ||
878 | } SETATTR_REQ; | ||
879 | |||
880 | typedef struct smb_com_setattr_rsp { | ||
881 | struct smb_hdr hdr; /* wct = 0 */ | ||
882 | __u16 ByteCount; /* bct = 0 */ | ||
883 | } SETATTR_RSP; | ||
884 | |||
885 | /* empty wct response to setattr */ | ||
886 | |||
887 | /***************************************************/ | ||
888 | /* NT Transact structure defintions follow */ | ||
889 | /* Currently only ioctl and notify are implemented */ | ||
890 | /***************************************************/ | ||
891 | typedef struct smb_com_transaction_ioctl_req { | ||
892 | struct smb_hdr hdr; /* wct = 23 */ | ||
893 | __u8 MaxSetupCount; | ||
894 | __u16 Reserved; | ||
895 | __le32 TotalParameterCount; | ||
896 | __le32 TotalDataCount; | ||
897 | __le32 MaxParameterCount; | ||
898 | __le32 MaxDataCount; | ||
899 | __le32 ParameterCount; | ||
900 | __le32 ParameterOffset; | ||
901 | __le32 DataCount; | ||
902 | __le32 DataOffset; | ||
903 | __u8 SetupCount; /* four setup words follow subcommand */ | ||
904 | /* SNIA spec incorrectly included spurious pad here */ | ||
905 | __le16 SubCommand;/* 2 = IOCTL/FSCTL */ | ||
906 | __le32 FunctionCode; | ||
907 | __u16 Fid; | ||
908 | __u8 IsFsctl; /* 1 = File System Control, 0 = device control (IOCTL)*/ | ||
909 | __u8 IsRootFlag; /* 1 = apply command to root of share (must be DFS share)*/ | ||
910 | __le16 ByteCount; | ||
911 | __u8 Pad[3]; | ||
912 | __u8 Data[1]; | ||
913 | } TRANSACT_IOCTL_REQ; | ||
914 | |||
915 | typedef struct smb_com_transaction_ioctl_rsp { | ||
916 | struct smb_hdr hdr; /* wct = 19 */ | ||
917 | __u8 Reserved[3]; | ||
918 | __le32 TotalParameterCount; | ||
919 | __le32 TotalDataCount; | ||
920 | __le32 ParameterCount; | ||
921 | __le32 ParameterOffset; | ||
922 | __le32 ParameterDisplacement; | ||
923 | __le32 DataCount; | ||
924 | __le32 DataOffset; | ||
925 | __le32 DataDisplacement; | ||
926 | __u8 SetupCount; /* 1 */ | ||
927 | __le16 ReturnedDataLen; | ||
928 | __u16 ByteCount; | ||
929 | __u8 Pad[3]; | ||
930 | } TRANSACT_IOCTL_RSP; | ||
931 | |||
932 | typedef struct smb_com_transaction_change_notify_req { | ||
933 | struct smb_hdr hdr; /* wct = 23 */ | ||
934 | __u8 MaxSetupCount; | ||
935 | __u16 Reserved; | ||
936 | __le32 TotalParameterCount; | ||
937 | __le32 TotalDataCount; | ||
938 | __le32 MaxParameterCount; | ||
939 | __le32 MaxDataCount; | ||
940 | __le32 ParameterCount; | ||
941 | __le32 ParameterOffset; | ||
942 | __le32 DataCount; | ||
943 | __le32 DataOffset; | ||
944 | __u8 SetupCount; /* four setup words follow subcommand */ | ||
945 | /* SNIA spec incorrectly included spurious pad here */ | ||
946 | __le16 SubCommand;/* 4 = Change Notify */ | ||
947 | __le32 CompletionFilter; /* operation to monitor */ | ||
948 | __u16 Fid; | ||
949 | __u8 WatchTree; /* 1 = Monitor subdirectories */ | ||
950 | __u8 Reserved2; | ||
951 | __le16 ByteCount; | ||
952 | /* __u8 Pad[3];*/ | ||
953 | /* __u8 Data[1];*/ | ||
954 | } TRANSACT_CHANGE_NOTIFY_REQ; | ||
955 | |||
956 | typedef struct smb_com_transaction_change_notify_rsp { | ||
957 | struct smb_hdr hdr; /* wct = 18 */ | ||
958 | __u8 Reserved[3]; | ||
959 | __le32 TotalParameterCount; | ||
960 | __le32 TotalDataCount; | ||
961 | __le32 ParameterCount; | ||
962 | __le32 ParameterOffset; | ||
963 | __le32 ParameterDisplacement; | ||
964 | __le32 DataCount; | ||
965 | __le32 DataOffset; | ||
966 | __le32 DataDisplacement; | ||
967 | __u8 SetupCount; /* 0 */ | ||
968 | __u16 ByteCount; | ||
969 | /* __u8 Pad[3]; */ | ||
970 | } TRANSACT_CHANGE_NOTIFY_RSP; | ||
971 | /* Completion Filter flags for Notify */ | ||
972 | #define FILE_NOTIFY_CHANGE_FILE_NAME 0x00000001 | ||
973 | #define FILE_NOTIFY_CHANGE_DIR_NAME 0x00000002 | ||
974 | #define FILE_NOTIFY_CHANGE_NAME 0x00000003 | ||
975 | #define FILE_NOTIFY_CHANGE_ATTRIBUTES 0x00000004 | ||
976 | #define FILE_NOTIFY_CHANGE_SIZE 0x00000008 | ||
977 | #define FILE_NOTIFY_CHANGE_LAST_WRITE 0x00000010 | ||
978 | #define FILE_NOTIFY_CHANGE_LAST_ACCESS 0x00000020 | ||
979 | #define FILE_NOTIFY_CHANGE_CREATION 0x00000040 | ||
980 | #define FILE_NOTIFY_CHANGE_EA 0x00000080 | ||
981 | #define FILE_NOTIFY_CHANGE_SECURITY 0x00000100 | ||
982 | #define FILE_NOTIFY_CHANGE_STREAM_NAME 0x00000200 | ||
983 | #define FILE_NOTIFY_CHANGE_STREAM_SIZE 0x00000400 | ||
984 | #define FILE_NOTIFY_CHANGE_STREAM_WRITE 0x00000800 | ||
985 | |||
986 | #define FILE_ACTION_ADDED 0x00000001 | ||
987 | #define FILE_ACTION_REMOVED 0x00000002 | ||
988 | #define FILE_ACTION_MODIFIED 0x00000003 | ||
989 | #define FILE_ACTION_RENAMED_OLD_NAME 0x00000004 | ||
990 | #define FILE_ACTION_RENAMED_NEW_NAME 0x00000005 | ||
991 | #define FILE_ACTION_ADDED_STREAM 0x00000006 | ||
992 | #define FILE_ACTION_REMOVED_STREAM 0x00000007 | ||
993 | #define FILE_ACTION_MODIFIED_STREAM 0x00000008 | ||
994 | |||
995 | /* response contains array of the following structures */ | ||
996 | struct file_notify_information { | ||
997 | __le32 NextEntryOffset; | ||
998 | __le32 Action; | ||
999 | __le32 FileNameLength; | ||
1000 | __u8 FileName[0]; | ||
1001 | }; | ||
1002 | |||
1003 | struct reparse_data { | ||
1004 | __u32 ReparseTag; | ||
1005 | __u16 ReparseDataLength; | ||
1006 | __u16 Reserved; | ||
1007 | __u16 AltNameOffset; | ||
1008 | __u16 AltNameLen; | ||
1009 | __u16 TargetNameOffset; | ||
1010 | __u16 TargetNameLen; | ||
1011 | char LinkNamesBuf[1]; | ||
1012 | }; | ||
1013 | |||
1014 | struct cifs_quota_data { | ||
1015 | __u32 rsrvd1; /* 0 */ | ||
1016 | __u32 sid_size; | ||
1017 | __u64 rsrvd2; /* 0 */ | ||
1018 | __u64 space_used; | ||
1019 | __u64 soft_limit; | ||
1020 | __u64 hard_limit; | ||
1021 | char sid[1]; /* variable size? */ | ||
1022 | }; | ||
1023 | |||
1024 | /* quota sub commands */ | ||
1025 | #define QUOTA_LIST_CONTINUE 0 | ||
1026 | #define QUOTA_LIST_START 0x100 | ||
1027 | #define QUOTA_FOR_SID 0x101 | ||
1028 | |||
1029 | struct trans2_req { | ||
1030 | /* struct smb_hdr hdr precedes. Set wct = 14+ */ | ||
1031 | __le16 TotalParameterCount; | ||
1032 | __le16 TotalDataCount; | ||
1033 | __le16 MaxParameterCount; | ||
1034 | __le16 MaxDataCount; | ||
1035 | __u8 MaxSetupCount; | ||
1036 | __u8 Reserved; | ||
1037 | __le16 Flags; | ||
1038 | __le32 Timeout; | ||
1039 | __u16 Reserved2; | ||
1040 | __le16 ParameterCount; | ||
1041 | __le16 ParameterOffset; | ||
1042 | __le16 DataCount; | ||
1043 | __le16 DataOffset; | ||
1044 | __u8 SetupCount; | ||
1045 | __u8 Reserved3; | ||
1046 | __le16 SubCommand; /* 1st setup word - SetupCount words follow */ | ||
1047 | __le16 ByteCount; | ||
1048 | }; | ||
1049 | |||
1050 | struct smb_t2_req { | ||
1051 | struct smb_hdr hdr; | ||
1052 | struct trans2_req t2_req; | ||
1053 | }; | ||
1054 | |||
1055 | struct trans2_resp { | ||
1056 | /* struct smb_hdr hdr precedes. Note wct = 10 + setup count */ | ||
1057 | __le16 TotalParameterCount; | ||
1058 | __le16 TotalDataCount; | ||
1059 | __u16 Reserved; | ||
1060 | __le16 ParameterCount; | ||
1061 | __le16 ParameterOffset; | ||
1062 | __le16 ParameterDisplacement; | ||
1063 | __le16 DataCount; | ||
1064 | __le16 DataOffset; | ||
1065 | __le16 DataDisplacement; | ||
1066 | __u8 SetupCount; | ||
1067 | __u8 Reserved1; | ||
1068 | /* SetupWords[SetupCount]; | ||
1069 | __u16 ByteCount; | ||
1070 | __u16 Reserved2;*/ | ||
1071 | /* data area follows */ | ||
1072 | }; | ||
1073 | |||
1074 | struct smb_t2_rsp { | ||
1075 | struct smb_hdr hdr; | ||
1076 | struct trans2_resp t2_rsp; | ||
1077 | }; | ||
1078 | |||
1079 | /* PathInfo/FileInfo infolevels */ | ||
1080 | #define SMB_INFO_STANDARD 1 | ||
1081 | #define SMB_SET_FILE_EA 2 | ||
1082 | #define SMB_QUERY_FILE_EA_SIZE 2 | ||
1083 | #define SMB_INFO_QUERY_EAS_FROM_LIST 3 | ||
1084 | #define SMB_INFO_QUERY_ALL_EAS 4 | ||
1085 | #define SMB_INFO_IS_NAME_VALID 6 | ||
1086 | #define SMB_QUERY_FILE_BASIC_INFO 0x101 | ||
1087 | #define SMB_QUERY_FILE_STANDARD_INFO 0x102 | ||
1088 | #define SMB_QUERY_FILE_EA_INFO 0x103 | ||
1089 | #define SMB_QUERY_FILE_NAME_INFO 0x104 | ||
1090 | #define SMB_QUERY_FILE_ALLOCATION_INFO 0x105 | ||
1091 | #define SMB_QUERY_FILE_END_OF_FILEINFO 0x106 | ||
1092 | #define SMB_QUERY_FILE_ALL_INFO 0x107 | ||
1093 | #define SMB_QUERY_ALT_NAME_INFO 0x108 | ||
1094 | #define SMB_QUERY_FILE_STREAM_INFO 0x109 | ||
1095 | #define SMB_QUERY_FILE_COMPRESSION_INFO 0x10B | ||
1096 | #define SMB_QUERY_FILE_UNIX_BASIC 0x200 | ||
1097 | #define SMB_QUERY_FILE_UNIX_LINK 0x201 | ||
1098 | #define SMB_QUERY_POSIX_ACL 0x204 | ||
1099 | #define SMB_QUERY_XATTR 0x205 | ||
1100 | #define SMB_QUERY_ATTR_FLAGS 0x206 /* append,immutable etc. */ | ||
1101 | #define SMB_QUERY_FILE_INTERNAL_INFO 0x3ee | ||
1102 | #define SMB_QUERY_FILE_ACCESS_INFO 0x3f0 | ||
1103 | #define SMB_QUERY_FILE_NAME_INFO2 0x3f1 /* 0x30 bytes */ | ||
1104 | #define SMB_QUERY_FILE_POSITION_INFO 0x3f6 | ||
1105 | #define SMB_QUERY_FILE_MODE_INFO 0x3f8 | ||
1106 | #define SMB_QUERY_FILE_ALGN_INFO 0x3f9 | ||
1107 | |||
1108 | |||
1109 | #define SMB_SET_FILE_BASIC_INFO 0x101 | ||
1110 | #define SMB_SET_FILE_DISPOSITION_INFO 0x102 | ||
1111 | #define SMB_SET_FILE_ALLOCATION_INFO 0x103 | ||
1112 | #define SMB_SET_FILE_END_OF_FILE_INFO 0x104 | ||
1113 | #define SMB_SET_FILE_UNIX_BASIC 0x200 | ||
1114 | #define SMB_SET_FILE_UNIX_LINK 0x201 | ||
1115 | #define SMB_SET_FILE_UNIX_HLINK 0x203 | ||
1116 | #define SMB_SET_POSIX_ACL 0x204 | ||
1117 | #define SMB_SET_XATTR 0x205 | ||
1118 | #define SMB_SET_ATTR_FLAGS 0x206 /* append, immutable etc. */ | ||
1119 | #define SMB_SET_FILE_BASIC_INFO2 0x3ec | ||
1120 | #define SMB_SET_FILE_RENAME_INFORMATION 0x3f2 /* BB check if qpathinfo level too */ | ||
1121 | #define SMB_FILE_ALL_INFO2 0x3fa | ||
1122 | #define SMB_SET_FILE_ALLOCATION_INFO2 0x3fb | ||
1123 | #define SMB_SET_FILE_END_OF_FILE_INFO2 0x3fc | ||
1124 | #define SMB_FILE_MOVE_CLUSTER_INFO 0x407 | ||
1125 | #define SMB_FILE_QUOTA_INFO 0x408 | ||
1126 | #define SMB_FILE_REPARSEPOINT_INFO 0x409 | ||
1127 | #define SMB_FILE_MAXIMUM_INFO 0x40d | ||
1128 | |||
1129 | /* Find File infolevels */ | ||
1130 | #define SMB_FIND_FILE_DIRECTORY_INFO 0x101 | ||
1131 | #define SMB_FIND_FILE_FULL_DIRECTORY_INFO 0x102 | ||
1132 | #define SMB_FIND_FILE_NAMES_INFO 0x103 | ||
1133 | #define SMB_FIND_FILE_BOTH_DIRECTORY_INFO 0x104 | ||
1134 | #define SMB_FIND_FILE_ID_FULL_DIR_INFO 0x105 | ||
1135 | #define SMB_FIND_FILE_ID_BOTH_DIR_INFO 0x106 | ||
1136 | #define SMB_FIND_FILE_UNIX 0x202 | ||
1137 | |||
1138 | typedef struct smb_com_transaction2_qpi_req { | ||
1139 | struct smb_hdr hdr; /* wct = 14+ */ | ||
1140 | __le16 TotalParameterCount; | ||
1141 | __le16 TotalDataCount; | ||
1142 | __le16 MaxParameterCount; | ||
1143 | __le16 MaxDataCount; | ||
1144 | __u8 MaxSetupCount; | ||
1145 | __u8 Reserved; | ||
1146 | __le16 Flags; | ||
1147 | __le32 Timeout; | ||
1148 | __u16 Reserved2; | ||
1149 | __le16 ParameterCount; | ||
1150 | __le16 ParameterOffset; | ||
1151 | __le16 DataCount; | ||
1152 | __le16 DataOffset; | ||
1153 | __u8 SetupCount; | ||
1154 | __u8 Reserved3; | ||
1155 | __le16 SubCommand; /* one setup word */ | ||
1156 | __le16 ByteCount; | ||
1157 | __u8 Pad; | ||
1158 | __le16 InformationLevel; | ||
1159 | __u32 Reserved4; | ||
1160 | char FileName[1]; | ||
1161 | } TRANSACTION2_QPI_REQ; | ||
1162 | |||
1163 | typedef struct smb_com_transaction2_qpi_rsp { | ||
1164 | struct smb_hdr hdr; /* wct = 10 + SetupCount */ | ||
1165 | struct trans2_resp t2; | ||
1166 | __u16 ByteCount; | ||
1167 | __u16 Reserved2; /* parameter word reserved - present for infolevels > 100 */ | ||
1168 | } TRANSACTION2_QPI_RSP; | ||
1169 | |||
1170 | typedef struct smb_com_transaction2_spi_req { | ||
1171 | struct smb_hdr hdr; /* wct = 15 */ | ||
1172 | __le16 TotalParameterCount; | ||
1173 | __le16 TotalDataCount; | ||
1174 | __le16 MaxParameterCount; | ||
1175 | __le16 MaxDataCount; | ||
1176 | __u8 MaxSetupCount; | ||
1177 | __u8 Reserved; | ||
1178 | __le16 Flags; | ||
1179 | __le32 Timeout; | ||
1180 | __u16 Reserved2; | ||
1181 | __le16 ParameterCount; | ||
1182 | __le16 ParameterOffset; | ||
1183 | __le16 DataCount; | ||
1184 | __le16 DataOffset; | ||
1185 | __u8 SetupCount; | ||
1186 | __u8 Reserved3; | ||
1187 | __le16 SubCommand; /* one setup word */ | ||
1188 | __le16 ByteCount; | ||
1189 | __u8 Pad; | ||
1190 | __u16 Pad1; | ||
1191 | __le16 InformationLevel; | ||
1192 | __u32 Reserved4; | ||
1193 | char FileName[1]; | ||
1194 | } TRANSACTION2_SPI_REQ; | ||
1195 | |||
1196 | typedef struct smb_com_transaction2_spi_rsp { | ||
1197 | struct smb_hdr hdr; /* wct = 10 + SetupCount */ | ||
1198 | struct trans2_resp t2; | ||
1199 | __u16 ByteCount; | ||
1200 | __u16 Reserved2; /* parameter word reserved - present for infolevels > 100 */ | ||
1201 | } TRANSACTION2_SPI_RSP; | ||
1202 | |||
1203 | struct set_file_rename { | ||
1204 | __le32 overwrite; /* 1 = overwrite dest */ | ||
1205 | __u32 root_fid; /* zero */ | ||
1206 | __le32 target_name_len; | ||
1207 | char target_name[0]; /* Must be unicode */ | ||
1208 | }; | ||
1209 | |||
1210 | struct smb_com_transaction2_sfi_req { | ||
1211 | struct smb_hdr hdr; /* wct = 15 */ | ||
1212 | __le16 TotalParameterCount; | ||
1213 | __le16 TotalDataCount; | ||
1214 | __le16 MaxParameterCount; | ||
1215 | __le16 MaxDataCount; | ||
1216 | __u8 MaxSetupCount; | ||
1217 | __u8 Reserved; | ||
1218 | __le16 Flags; | ||
1219 | __le32 Timeout; | ||
1220 | __u16 Reserved2; | ||
1221 | __le16 ParameterCount; | ||
1222 | __le16 ParameterOffset; | ||
1223 | __le16 DataCount; | ||
1224 | __le16 DataOffset; | ||
1225 | __u8 SetupCount; | ||
1226 | __u8 Reserved3; | ||
1227 | __le16 SubCommand; /* one setup word */ | ||
1228 | __le16 ByteCount; | ||
1229 | __u8 Pad; | ||
1230 | __u16 Pad1; | ||
1231 | __u16 Fid; | ||
1232 | __le16 InformationLevel; | ||
1233 | __u16 Reserved4; | ||
1234 | }; | ||
1235 | |||
1236 | struct smb_com_transaction2_sfi_rsp { | ||
1237 | struct smb_hdr hdr; /* wct = 10 + SetupCount */ | ||
1238 | struct trans2_resp t2; | ||
1239 | __u16 ByteCount; | ||
1240 | __u16 Reserved2; /* parameter word reserved - present for infolevels > 100 */ | ||
1241 | }; | ||
1242 | |||
1243 | |||
1244 | /* | ||
1245 | * Flags on T2 FINDFIRST and FINDNEXT | ||
1246 | */ | ||
1247 | #define CIFS_SEARCH_CLOSE_ALWAYS 0x0001 | ||
1248 | #define CIFS_SEARCH_CLOSE_AT_END 0x0002 | ||
1249 | #define CIFS_SEARCH_RETURN_RESUME 0x0004 | ||
1250 | #define CIFS_SEARCH_CONTINUE_FROM_LAST 0x0008 | ||
1251 | #define CIFS_SEARCH_BACKUP_SEARCH 0x0010 | ||
1252 | |||
1253 | /* | ||
1254 | * Size of the resume key on FINDFIRST and FINDNEXT calls | ||
1255 | */ | ||
1256 | #define CIFS_SMB_RESUME_KEY_SIZE 4 | ||
1257 | |||
1258 | typedef struct smb_com_transaction2_ffirst_req { | ||
1259 | struct smb_hdr hdr; /* wct = 15 */ | ||
1260 | __le16 TotalParameterCount; | ||
1261 | __le16 TotalDataCount; | ||
1262 | __le16 MaxParameterCount; | ||
1263 | __le16 MaxDataCount; | ||
1264 | __u8 MaxSetupCount; | ||
1265 | __u8 Reserved; | ||
1266 | __le16 Flags; | ||
1267 | __le32 Timeout; | ||
1268 | __u16 Reserved2; | ||
1269 | __le16 ParameterCount; | ||
1270 | __le16 ParameterOffset; | ||
1271 | __le16 DataCount; | ||
1272 | __le16 DataOffset; | ||
1273 | __u8 SetupCount; /* one */ | ||
1274 | __u8 Reserved3; | ||
1275 | __le16 SubCommand; /* TRANS2_FIND_FIRST */ | ||
1276 | __le16 ByteCount; | ||
1277 | __u8 Pad; | ||
1278 | __le16 SearchAttributes; | ||
1279 | __le16 SearchCount; | ||
1280 | __le16 SearchFlags; | ||
1281 | __le16 InformationLevel; | ||
1282 | __le32 SearchStorageType; | ||
1283 | char FileName[1]; | ||
1284 | } TRANSACTION2_FFIRST_REQ; | ||
1285 | |||
1286 | typedef struct smb_com_transaction2_ffirst_rsp { | ||
1287 | struct smb_hdr hdr; /* wct = 10 */ | ||
1288 | struct trans2_resp t2; | ||
1289 | __u16 ByteCount; | ||
1290 | } TRANSACTION2_FFIRST_RSP; | ||
1291 | |||
1292 | typedef struct smb_com_transaction2_ffirst_rsp_parms { | ||
1293 | __u16 SearchHandle; | ||
1294 | __le16 SearchCount; | ||
1295 | __le16 EndofSearch; | ||
1296 | __le16 EAErrorOffset; | ||
1297 | __le16 LastNameOffset; | ||
1298 | } T2_FFIRST_RSP_PARMS; | ||
1299 | |||
1300 | typedef struct smb_com_transaction2_fnext_req { | ||
1301 | struct smb_hdr hdr; /* wct = 15 */ | ||
1302 | __le16 TotalParameterCount; | ||
1303 | __le16 TotalDataCount; | ||
1304 | __le16 MaxParameterCount; | ||
1305 | __le16 MaxDataCount; | ||
1306 | __u8 MaxSetupCount; | ||
1307 | __u8 Reserved; | ||
1308 | __le16 Flags; | ||
1309 | __le32 Timeout; | ||
1310 | __u16 Reserved2; | ||
1311 | __le16 ParameterCount; | ||
1312 | __le16 ParameterOffset; | ||
1313 | __le16 DataCount; | ||
1314 | __le16 DataOffset; | ||
1315 | __u8 SetupCount; /* one */ | ||
1316 | __u8 Reserved3; | ||
1317 | __le16 SubCommand; /* TRANS2_FIND_NEXT */ | ||
1318 | __le16 ByteCount; | ||
1319 | __u8 Pad; | ||
1320 | __u16 SearchHandle; | ||
1321 | __le16 SearchCount; | ||
1322 | __le16 InformationLevel; | ||
1323 | __u32 ResumeKey; | ||
1324 | __le16 SearchFlags; | ||
1325 | char ResumeFileName[1]; | ||
1326 | } TRANSACTION2_FNEXT_REQ; | ||
1327 | |||
1328 | typedef struct smb_com_transaction2_fnext_rsp { | ||
1329 | struct smb_hdr hdr; /* wct = 10 */ | ||
1330 | struct trans2_resp t2; | ||
1331 | __u16 ByteCount; | ||
1332 | } TRANSACTION2_FNEXT_RSP; | ||
1333 | |||
1334 | typedef struct smb_com_transaction2_fnext_rsp_parms { | ||
1335 | __le16 SearchCount; | ||
1336 | __le16 EndofSearch; | ||
1337 | __le16 EAErrorOffset; | ||
1338 | __le16 LastNameOffset; | ||
1339 | } T2_FNEXT_RSP_PARMS; | ||
1340 | |||
1341 | /* QFSInfo Levels */ | ||
1342 | #define SMB_INFO_ALLOCATION 1 | ||
1343 | #define SMB_INFO_VOLUME 2 | ||
1344 | #define SMB_QUERY_FS_VOLUME_INFO 0x102 | ||
1345 | #define SMB_QUERY_FS_SIZE_INFO 0x103 | ||
1346 | #define SMB_QUERY_FS_DEVICE_INFO 0x104 | ||
1347 | #define SMB_QUERY_FS_ATTRIBUTE_INFO 0x105 | ||
1348 | #define SMB_QUERY_CIFS_UNIX_INFO 0x200 | ||
1349 | #define SMB_QUERY_POSIX_FS_INFO 0x201 | ||
1350 | #define SMB_QUERY_LABEL_INFO 0x3ea | ||
1351 | #define SMB_QUERY_FS_QUOTA_INFO 0x3ee | ||
1352 | #define SMB_QUERY_FS_FULL_SIZE_INFO 0x3ef | ||
1353 | #define SMB_QUERY_OBJECTID_INFO 0x3f0 | ||
1354 | |||
1355 | typedef struct smb_com_transaction2_qfsi_req { | ||
1356 | struct smb_hdr hdr; /* wct = 14+ */ | ||
1357 | __le16 TotalParameterCount; | ||
1358 | __le16 TotalDataCount; | ||
1359 | __le16 MaxParameterCount; | ||
1360 | __le16 MaxDataCount; | ||
1361 | __u8 MaxSetupCount; | ||
1362 | __u8 Reserved; | ||
1363 | __le16 Flags; | ||
1364 | __le32 Timeout; | ||
1365 | __u16 Reserved2; | ||
1366 | __le16 ParameterCount; | ||
1367 | __le16 ParameterOffset; | ||
1368 | __le16 DataCount; | ||
1369 | __le16 DataOffset; | ||
1370 | __u8 SetupCount; | ||
1371 | __u8 Reserved3; | ||
1372 | __le16 SubCommand; /* one setup word */ | ||
1373 | __le16 ByteCount; | ||
1374 | __u8 Pad; | ||
1375 | __le16 InformationLevel; | ||
1376 | } TRANSACTION2_QFSI_REQ; | ||
1377 | |||
1378 | typedef struct smb_com_transaction_qfsi_rsp { | ||
1379 | struct smb_hdr hdr; /* wct = 10 + SetupCount */ | ||
1380 | struct trans2_resp t2; | ||
1381 | __u16 ByteCount; | ||
1382 | __u8 Pad; /* may be three bytes *//* followed by data area */ | ||
1383 | } TRANSACTION2_QFSI_RSP; | ||
1384 | |||
1385 | typedef struct smb_com_transaction2_get_dfs_refer_req { | ||
1386 | struct smb_hdr hdr; /* wct = 15 */ | ||
1387 | __le16 TotalParameterCount; | ||
1388 | __le16 TotalDataCount; | ||
1389 | __le16 MaxParameterCount; | ||
1390 | __le16 MaxDataCount; | ||
1391 | __u8 MaxSetupCount; | ||
1392 | __u8 Reserved; | ||
1393 | __le16 Flags; | ||
1394 | __le32 Timeout; | ||
1395 | __u16 Reserved2; | ||
1396 | __le16 ParameterCount; | ||
1397 | __le16 ParameterOffset; | ||
1398 | __le16 DataCount; | ||
1399 | __le16 DataOffset; | ||
1400 | __u8 SetupCount; | ||
1401 | __u8 Reserved3; | ||
1402 | __le16 SubCommand; /* one setup word */ | ||
1403 | __le16 ByteCount; | ||
1404 | __u8 Pad[3]; /* Win2K has sent 0x0F01 (max resp length perhaps?) followed by one byte pad - doesn't seem to matter though */ | ||
1405 | __le16 MaxReferralLevel; | ||
1406 | char RequestFileName[1]; | ||
1407 | } TRANSACTION2_GET_DFS_REFER_REQ; | ||
1408 | |||
1409 | typedef struct dfs_referral_level_3 { | ||
1410 | __le16 VersionNumber; | ||
1411 | __le16 ReferralSize; | ||
1412 | __le16 ServerType; /* 0x0001 = CIFS server */ | ||
1413 | __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 */ | ||
1414 | __le16 TimeToLive; | ||
1415 | __le16 Proximity; | ||
1416 | __le16 DfsPathOffset; | ||
1417 | __le16 DfsAlternatePathOffset; | ||
1418 | __le16 NetworkAddressOffset; | ||
1419 | } REFERRAL3; | ||
1420 | |||
1421 | typedef struct smb_com_transaction_get_dfs_refer_rsp { | ||
1422 | struct smb_hdr hdr; /* wct = 10 */ | ||
1423 | struct trans2_resp t2; | ||
1424 | __u16 ByteCount; | ||
1425 | __u8 Pad; | ||
1426 | __le16 PathConsumed; | ||
1427 | __le16 NumberOfReferrals; | ||
1428 | __le16 DFSFlags; | ||
1429 | __u16 Pad2; | ||
1430 | REFERRAL3 referrals[1]; /* array of level 3 dfs_referral structures */ | ||
1431 | /* followed by the strings pointed to by the referral structures */ | ||
1432 | } TRANSACTION2_GET_DFS_REFER_RSP; | ||
1433 | |||
1434 | /* DFS Flags */ | ||
1435 | #define DFSREF_REFERRAL_SERVER 0x0001 | ||
1436 | #define DFSREF_STORAGE_SERVER 0x0002 | ||
1437 | |||
1438 | /* IOCTL information */ | ||
1439 | /* List of ioctl function codes that look to be of interest to remote clients like this. */ | ||
1440 | /* Need to do some experimentation to make sure they all work remotely. */ | ||
1441 | /* Some of the following such as the encryption/compression ones would be */ | ||
1442 | /* invoked from tools via a specialized hook into the VFS rather than via the */ | ||
1443 | /* standard vfs entry points */ | ||
1444 | #define FSCTL_REQUEST_OPLOCK_LEVEL_1 0x00090000 | ||
1445 | #define FSCTL_REQUEST_OPLOCK_LEVEL_2 0x00090004 | ||
1446 | #define FSCTL_REQUEST_BATCH_OPLOCK 0x00090008 | ||
1447 | #define FSCTL_LOCK_VOLUME 0x00090018 | ||
1448 | #define FSCTL_UNLOCK_VOLUME 0x0009001C | ||
1449 | #define FSCTL_GET_COMPRESSION 0x0009003C | ||
1450 | #define FSCTL_SET_COMPRESSION 0x0009C040 | ||
1451 | #define FSCTL_REQUEST_FILTER_OPLOCK 0x0009008C | ||
1452 | #define FSCTL_FILESYS_GET_STATISTICS 0x00090090 | ||
1453 | #define FSCTL_SET_REPARSE_POINT 0x000900A4 | ||
1454 | #define FSCTL_GET_REPARSE_POINT 0x000900A8 | ||
1455 | #define FSCTL_DELETE_REPARSE_POINT 0x000900AC | ||
1456 | #define FSCTL_SET_SPARSE 0x000900C4 | ||
1457 | #define FSCTL_SET_ZERO_DATA 0x000900C8 | ||
1458 | #define FSCTL_SET_ENCRYPTION 0x000900D7 | ||
1459 | #define FSCTL_ENCRYPTION_FSCTL_IO 0x000900DB | ||
1460 | #define FSCTL_WRITE_RAW_ENCRYPTED 0x000900DF | ||
1461 | #define FSCTL_READ_RAW_ENCRYPTED 0x000900E3 | ||
1462 | #define FSCTL_SIS_COPYFILE 0x00090100 | ||
1463 | #define FSCTL_SIS_LINK_FILES 0x0009C104 | ||
1464 | |||
1465 | #define IO_REPARSE_TAG_MOUNT_POINT 0xA0000003 | ||
1466 | #define IO_REPARSE_TAG_HSM 0xC0000004 | ||
1467 | #define IO_REPARSE_TAG_SIS 0x80000007 | ||
1468 | |||
1469 | /* | ||
1470 | ************************************************************************ | ||
1471 | * All structs for everything above the SMB PDUs themselves | ||
1472 | * (such as the T2 level specific data) go here | ||
1473 | ************************************************************************ | ||
1474 | */ | ||
1475 | |||
1476 | /* | ||
1477 | * Information on a server | ||
1478 | */ | ||
1479 | |||
1480 | struct serverInfo { | ||
1481 | char name[16]; | ||
1482 | unsigned char versionMajor; | ||
1483 | unsigned char versionMinor; | ||
1484 | unsigned long type; | ||
1485 | unsigned int commentOffset; | ||
1486 | }; | ||
1487 | |||
1488 | /* | ||
1489 | * The following structure is the format of the data returned on a NetShareEnum | ||
1490 | * with level "90" (x5A) | ||
1491 | */ | ||
1492 | |||
1493 | struct shareInfo { | ||
1494 | char shareName[13]; | ||
1495 | char pad; | ||
1496 | unsigned short type; | ||
1497 | unsigned int commentOffset; | ||
1498 | }; | ||
1499 | |||
1500 | struct aliasInfo { | ||
1501 | char aliasName[9]; | ||
1502 | char pad; | ||
1503 | unsigned int commentOffset; | ||
1504 | unsigned char type[2]; | ||
1505 | }; | ||
1506 | |||
1507 | struct aliasInfo92 { | ||
1508 | int aliasNameOffset; | ||
1509 | int serverNameOffset; | ||
1510 | int shareNameOffset; | ||
1511 | }; | ||
1512 | |||
1513 | typedef struct { | ||
1514 | __le64 TotalAllocationUnits; | ||
1515 | __le64 FreeAllocationUnits; | ||
1516 | __le32 SectorsPerAllocationUnit; | ||
1517 | __le32 BytesPerSector; | ||
1518 | } FILE_SYSTEM_INFO; /* size info, level 0x103 */ | ||
1519 | |||
1520 | typedef struct { | ||
1521 | __le16 MajorVersionNumber; | ||
1522 | __le16 MinorVersionNumber; | ||
1523 | __le64 Capability; | ||
1524 | } FILE_SYSTEM_UNIX_INFO; /* Unix extensions info, level 0x200 */ | ||
1525 | /* Linux/Unix extensions capability flags */ | ||
1526 | #define CIFS_UNIX_FCNTL_CAP 0x00000001 /* support for fcntl locks */ | ||
1527 | #define CIFS_UNIX_POSIX_ACL_CAP 0x00000002 | ||
1528 | #define CIFS_UNIX_XATTR_CAP 0x00000004 /*support for new namespace*/ | ||
1529 | |||
1530 | typedef struct { | ||
1531 | /* For undefined recommended transfer size return -1 in that field */ | ||
1532 | __le32 OptimalTransferSize; /* bsize on some os, iosize on other os */ | ||
1533 | __le32 BlockSize; | ||
1534 | /* The next three fields are in terms of the block size. | ||
1535 | (above). If block size is unknown, 4096 would be a | ||
1536 | reasonable block size for a server to report. | ||
1537 | Note that returning the blocks/blocksavail removes need | ||
1538 | to make a second call (to QFSInfo level 0x103 to get this info. | ||
1539 | UserBlockAvail is typically less than or equal to BlocksAvail, | ||
1540 | if no distinction is made return the same value in each */ | ||
1541 | __le64 TotalBlocks; | ||
1542 | __le64 BlocksAvail; /* bfree */ | ||
1543 | __le64 UserBlocksAvail; /* bavail */ | ||
1544 | /* For undefined Node fields or FSID return -1 */ | ||
1545 | __le64 TotalFileNodes; | ||
1546 | __le64 FreeFileNodes; | ||
1547 | __le64 FileSysIdentifier; /* fsid */ | ||
1548 | /* NB Namelen comes from FILE_SYSTEM_ATTRIBUTE_INFO call */ | ||
1549 | /* NB flags can come from FILE_SYSTEM_DEVICE_INFO call */ | ||
1550 | } FILE_SYSTEM_POSIX_INFO; | ||
1551 | |||
1552 | /* DeviceType Flags */ | ||
1553 | #define FILE_DEVICE_CD_ROM 0x00000002 | ||
1554 | #define FILE_DEVICE_CD_ROM_FILE_SYSTEM 0x00000003 | ||
1555 | #define FILE_DEVICE_DFS 0x00000006 | ||
1556 | #define FILE_DEVICE_DISK 0x00000007 | ||
1557 | #define FILE_DEVICE_DISK_FILE_SYSTEM 0x00000008 | ||
1558 | #define FILE_DEVICE_FILE_SYSTEM 0x00000009 | ||
1559 | #define FILE_DEVICE_NAMED_PIPE 0x00000011 | ||
1560 | #define FILE_DEVICE_NETWORK 0x00000012 | ||
1561 | #define FILE_DEVICE_NETWORK_FILE_SYSTEM 0x00000014 | ||
1562 | #define FILE_DEVICE_NULL 0x00000015 | ||
1563 | #define FILE_DEVICE_PARALLEL_PORT 0x00000016 | ||
1564 | #define FILE_DEVICE_PRINTER 0x00000018 | ||
1565 | #define FILE_DEVICE_SERIAL_PORT 0x0000001b | ||
1566 | #define FILE_DEVICE_STREAMS 0x0000001e | ||
1567 | #define FILE_DEVICE_TAPE 0x0000001f | ||
1568 | #define FILE_DEVICE_TAPE_FILE_SYSTEM 0x00000020 | ||
1569 | #define FILE_DEVICE_VIRTUAL_DISK 0x00000024 | ||
1570 | #define FILE_DEVICE_NETWORK_REDIRECTOR 0x00000028 | ||
1571 | |||
1572 | typedef struct { | ||
1573 | __le32 DeviceType; | ||
1574 | __le32 DeviceCharacteristics; | ||
1575 | } FILE_SYSTEM_DEVICE_INFO; /* device info, level 0x104 */ | ||
1576 | |||
1577 | typedef struct { | ||
1578 | __le32 Attributes; | ||
1579 | __le32 MaxPathNameComponentLength; | ||
1580 | __le32 FileSystemNameLen; | ||
1581 | char FileSystemName[52]; /* do not really need to save this - so potentially get only subset of name */ | ||
1582 | } FILE_SYSTEM_ATTRIBUTE_INFO; | ||
1583 | |||
1584 | /******************************************************************************/ | ||
1585 | /* QueryFileInfo/QueryPathinfo (also for SetPath/SetFile) data buffer formats */ | ||
1586 | /******************************************************************************/ | ||
1587 | typedef struct { /* data block encoding of response to level 263 QPathInfo */ | ||
1588 | __le64 CreationTime; | ||
1589 | __le64 LastAccessTime; | ||
1590 | __le64 LastWriteTime; | ||
1591 | __le64 ChangeTime; | ||
1592 | __le32 Attributes; | ||
1593 | __u32 Pad1; | ||
1594 | __le64 AllocationSize; | ||
1595 | __le64 EndOfFile; /* size ie offset to first free byte in file */ | ||
1596 | __le32 NumberOfLinks; /* hard links */ | ||
1597 | __u8 DeletePending; | ||
1598 | __u8 Directory; | ||
1599 | __u16 Pad2; | ||
1600 | __u64 IndexNumber; | ||
1601 | __le32 EASize; | ||
1602 | __le32 AccessFlags; | ||
1603 | __u64 IndexNumber1; | ||
1604 | __le64 CurrentByteOffset; | ||
1605 | __le32 Mode; | ||
1606 | __le32 AlignmentRequirement; | ||
1607 | __le32 FileNameLength; | ||
1608 | char FileName[1]; | ||
1609 | } FILE_ALL_INFO; /* level 0x107 QPathInfo */ | ||
1610 | |||
1611 | /* defines for enumerating possible values of the Unix type field below */ | ||
1612 | #define UNIX_FILE 0 | ||
1613 | #define UNIX_DIR 1 | ||
1614 | #define UNIX_SYMLINK 2 | ||
1615 | #define UNIX_CHARDEV 3 | ||
1616 | #define UNIX_BLOCKDEV 4 | ||
1617 | #define UNIX_FIFO 5 | ||
1618 | #define UNIX_SOCKET 6 | ||
1619 | typedef struct { | ||
1620 | __le64 EndOfFile; | ||
1621 | __le64 NumOfBytes; | ||
1622 | __le64 LastStatusChange; /*SNIA specs DCE time for the 3 time fields */ | ||
1623 | __le64 LastAccessTime; | ||
1624 | __le64 LastModificationTime; | ||
1625 | __le64 Uid; | ||
1626 | __le64 Gid; | ||
1627 | __le32 Type; | ||
1628 | __le64 DevMajor; | ||
1629 | __le64 DevMinor; | ||
1630 | __u64 UniqueId; | ||
1631 | __le64 Permissions; | ||
1632 | __le64 Nlinks; | ||
1633 | } FILE_UNIX_BASIC_INFO; /* level 0x200 QPathInfo */ | ||
1634 | |||
1635 | typedef struct { | ||
1636 | char LinkDest[1]; | ||
1637 | } FILE_UNIX_LINK_INFO; /* level 0x201 QPathInfo */ | ||
1638 | |||
1639 | /* The following three structures are needed only for | ||
1640 | setting time to NT4 and some older servers via | ||
1641 | the primitive DOS time format */ | ||
1642 | typedef struct { | ||
1643 | __u16 Day:5; | ||
1644 | __u16 Month:4; | ||
1645 | __u16 Year:7; | ||
1646 | } SMB_DATE; | ||
1647 | |||
1648 | typedef struct { | ||
1649 | __u16 TwoSeconds:5; | ||
1650 | __u16 Minutes:6; | ||
1651 | __u16 Hours:5; | ||
1652 | } SMB_TIME; | ||
1653 | |||
1654 | typedef struct { | ||
1655 | __le16 CreationDate; /* SMB Date see above */ | ||
1656 | __le16 CreationTime; /* SMB Time */ | ||
1657 | __le16 LastAccessDate; | ||
1658 | __le16 LastAccessTime; | ||
1659 | __le16 LastWriteDate; | ||
1660 | __le16 LastWriteTime; | ||
1661 | __le32 DataSize; /* File Size (EOF) */ | ||
1662 | __le32 AllocationSize; | ||
1663 | __le16 Attributes; /* verify not u32 */ | ||
1664 | __le32 EASize; | ||
1665 | } FILE_INFO_STANDARD; /* level 1 SetPath/FileInfo */ | ||
1666 | |||
1667 | typedef struct { | ||
1668 | __le64 CreationTime; | ||
1669 | __le64 LastAccessTime; | ||
1670 | __le64 LastWriteTime; | ||
1671 | __le64 ChangeTime; | ||
1672 | __le32 Attributes; | ||
1673 | __u32 Pad; | ||
1674 | } FILE_BASIC_INFO; /* size info, level 0x101 */ | ||
1675 | |||
1676 | struct file_allocation_info { | ||
1677 | __le64 AllocationSize; /* Note old Samba srvr rounds this up too much */ | ||
1678 | }; /* size used on disk, level 0x103 for set, 0x105 for query */ | ||
1679 | |||
1680 | struct file_end_of_file_info { | ||
1681 | __le64 FileSize; /* offset to end of file */ | ||
1682 | }; /* size info, level 0x104 for set, 0x106 for query */ | ||
1683 | |||
1684 | struct file_alt_name_info { | ||
1685 | __u8 alt_name[1]; | ||
1686 | }; /* level 0x0108 */ | ||
1687 | |||
1688 | struct file_stream_info { | ||
1689 | __le32 number_of_streams; /* BB check sizes and verify location */ | ||
1690 | /* followed by info on streams themselves | ||
1691 | u64 size; | ||
1692 | u64 allocation_size | ||
1693 | stream info */ | ||
1694 | }; /* level 0x109 */ | ||
1695 | |||
1696 | struct file_compression_info { | ||
1697 | __le64 compressed_size; | ||
1698 | __le16 format; | ||
1699 | __u8 unit_shift; | ||
1700 | __u8 ch_shift; | ||
1701 | __u8 cl_shift; | ||
1702 | __u8 pad[3]; | ||
1703 | }; /* level 0x10b */ | ||
1704 | |||
1705 | /* POSIX ACL set/query path info structures */ | ||
1706 | #define CIFS_ACL_VERSION 1 | ||
1707 | struct cifs_posix_ace { /* access control entry (ACE) */ | ||
1708 | __u8 cifs_e_tag; | ||
1709 | __u8 cifs_e_perm; | ||
1710 | __le64 cifs_uid; /* or gid */ | ||
1711 | }; | ||
1712 | |||
1713 | struct cifs_posix_acl { /* access conrol list (ACL) */ | ||
1714 | __le16 version; | ||
1715 | __le16 access_entry_count; /* access ACL - count of entries */ | ||
1716 | __le16 default_entry_count; /* default ACL - count of entries */ | ||
1717 | struct cifs_posix_ace ace_array[0]; | ||
1718 | /* followed by | ||
1719 | struct cifs_posix_ace default_ace_arraay[] */ | ||
1720 | }; /* level 0x204 */ | ||
1721 | |||
1722 | /* types of access control entries already defined in posix_acl.h */ | ||
1723 | /* #define CIFS_POSIX_ACL_USER_OBJ 0x01 | ||
1724 | #define CIFS_POSIX_ACL_USER 0x02 | ||
1725 | #define CIFS_POSIX_ACL_GROUP_OBJ 0x04 | ||
1726 | #define CIFS_POSIX_ACL_GROUP 0x08 | ||
1727 | #define CIFS_POSIX_ACL_MASK 0x10 | ||
1728 | #define CIFS_POSIX_ACL_OTHER 0x20 */ | ||
1729 | |||
1730 | /* types of perms */ | ||
1731 | /* #define CIFS_POSIX_ACL_EXECUTE 0x01 | ||
1732 | #define CIFS_POSIX_ACL_WRITE 0x02 | ||
1733 | #define CIFS_POSIX_ACL_READ 0x04 */ | ||
1734 | |||
1735 | /* end of POSIX ACL definitions */ | ||
1736 | |||
1737 | struct file_internal_info { | ||
1738 | __u64 UniqueId; /* inode number */ | ||
1739 | }; /* level 0x3ee */ | ||
1740 | struct file_mode_info { | ||
1741 | __le32 Mode; | ||
1742 | }; /* level 0x3f8 */ | ||
1743 | |||
1744 | struct file_attrib_tag { | ||
1745 | __le32 Attribute; | ||
1746 | __le32 ReparseTag; | ||
1747 | }; /* level 0x40b */ | ||
1748 | |||
1749 | |||
1750 | /********************************************************/ | ||
1751 | /* FindFirst/FindNext transact2 data buffer formats */ | ||
1752 | /********************************************************/ | ||
1753 | |||
1754 | typedef struct { | ||
1755 | __le32 NextEntryOffset; | ||
1756 | __u32 ResumeKey; /* as with FileIndex - no need to convert */ | ||
1757 | __le64 EndOfFile; | ||
1758 | __le64 NumOfBytes; | ||
1759 | __le64 LastStatusChange; /*SNIA specs DCE time for the 3 time fields */ | ||
1760 | __le64 LastAccessTime; | ||
1761 | __le64 LastModificationTime; | ||
1762 | __le64 Uid; | ||
1763 | __le64 Gid; | ||
1764 | __le32 Type; | ||
1765 | __le64 DevMajor; | ||
1766 | __le64 DevMinor; | ||
1767 | __u64 UniqueId; | ||
1768 | __le64 Permissions; | ||
1769 | __le64 Nlinks; | ||
1770 | char FileName[1]; | ||
1771 | } FILE_UNIX_INFO; /* level 0x202 */ | ||
1772 | |||
1773 | typedef struct { | ||
1774 | __le32 NextEntryOffset; | ||
1775 | __u32 FileIndex; | ||
1776 | __le64 CreationTime; | ||
1777 | __le64 LastAccessTime; | ||
1778 | __le64 LastWriteTime; | ||
1779 | __le64 ChangeTime; | ||
1780 | __le64 EndOfFile; | ||
1781 | __le64 AllocationSize; | ||
1782 | __le32 ExtFileAttributes; | ||
1783 | __le32 FileNameLength; | ||
1784 | char FileName[1]; | ||
1785 | } FILE_DIRECTORY_INFO; /* level 0x101 FF response data area */ | ||
1786 | |||
1787 | typedef struct { | ||
1788 | __le32 NextEntryOffset; | ||
1789 | __u32 FileIndex; | ||
1790 | __le64 CreationTime; | ||
1791 | __le64 LastAccessTime; | ||
1792 | __le64 LastWriteTime; | ||
1793 | __le64 ChangeTime; | ||
1794 | __le64 EndOfFile; | ||
1795 | __le64 AllocationSize; | ||
1796 | __le32 ExtFileAttributes; | ||
1797 | __le32 FileNameLength; | ||
1798 | __le32 EaSize; /* length of the xattrs */ | ||
1799 | char FileName[1]; | ||
1800 | } FILE_FULL_DIRECTORY_INFO; /* level 0x102 FF response data area */ | ||
1801 | |||
1802 | typedef struct { | ||
1803 | __le32 NextEntryOffset; | ||
1804 | __u32 FileIndex; | ||
1805 | __le64 CreationTime; | ||
1806 | __le64 LastAccessTime; | ||
1807 | __le64 LastWriteTime; | ||
1808 | __le64 ChangeTime; | ||
1809 | __le64 EndOfFile; | ||
1810 | __le64 AllocationSize; | ||
1811 | __le32 ExtFileAttributes; | ||
1812 | __le32 FileNameLength; | ||
1813 | __le32 EaSize; /* EA size */ | ||
1814 | __le32 Reserved; | ||
1815 | __u64 UniqueId; /* inode num - le since Samba puts ino in low 32 bit*/ | ||
1816 | char FileName[1]; | ||
1817 | } SEARCH_ID_FULL_DIR_INFO; /* level 0x105 FF response data area */ | ||
1818 | |||
1819 | typedef 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 | __u8 ShortNameLength; | ||
1832 | __u8 Reserved; | ||
1833 | __u8 ShortName[12]; | ||
1834 | char FileName[1]; | ||
1835 | } FILE_BOTH_DIRECTORY_INFO; /* level 0x104 FF response data area */ | ||
1836 | |||
1837 | |||
1838 | struct gea { | ||
1839 | unsigned char name_len; | ||
1840 | char name[1]; | ||
1841 | }; | ||
1842 | |||
1843 | struct gealist { | ||
1844 | unsigned long list_len; | ||
1845 | struct gea list[1]; | ||
1846 | }; | ||
1847 | |||
1848 | struct fea { | ||
1849 | unsigned char EA_flags; | ||
1850 | __u8 name_len; | ||
1851 | __le16 value_len; | ||
1852 | char name[1]; | ||
1853 | /* optionally followed by value */ | ||
1854 | }; | ||
1855 | /* flags for _FEA.fEA */ | ||
1856 | #define FEA_NEEDEA 0x80 /* need EA bit */ | ||
1857 | |||
1858 | struct fealist { | ||
1859 | __le32 list_len; | ||
1860 | struct fea list[1]; | ||
1861 | }; | ||
1862 | |||
1863 | /* used to hold an arbitrary blob of data */ | ||
1864 | struct data_blob { | ||
1865 | __u8 *data; | ||
1866 | size_t length; | ||
1867 | void (*free) (struct data_blob * data_blob); | ||
1868 | }; | ||
1869 | |||
1870 | |||
1871 | #ifdef CONFIG_CIFS_POSIX | ||
1872 | /* | ||
1873 | For better POSIX semantics from Linux client, (even better | ||
1874 | than the existing CIFS Unix Extensions) we need updated PDUs for: | ||
1875 | |||
1876 | 1) PosixCreateX - to set and return the mode, inode#, device info and | ||
1877 | perhaps add a CreateDevice - to create Pipes and other special .inodes | ||
1878 | Also note POSIX open flags | ||
1879 | 2) Close - to return the last write time to do cache across close more safely | ||
1880 | 3) PosixQFSInfo - to return statfs info | ||
1881 | 4) FindFirst return unique inode number - what about resume key, two forms short (matches readdir) and full (enough info to cache inodes) | ||
1882 | 5) Mkdir - set mode | ||
1883 | |||
1884 | And under consideration: | ||
1885 | 6) FindClose2 (return nanosecond timestamp ??) | ||
1886 | 7) Use nanosecond timestamps throughout all time fields if | ||
1887 | corresponding attribute flag is set | ||
1888 | 8) sendfile - handle based copy | ||
1889 | 9) Direct i/o | ||
1890 | 10) "POSIX ACL" support | ||
1891 | 11) Misc fcntls? | ||
1892 | |||
1893 | what about fixing 64 bit alignment | ||
1894 | |||
1895 | There are also various legacy SMB/CIFS requests used as is | ||
1896 | |||
1897 | From existing Lanman and NTLM dialects: | ||
1898 | -------------------------------------- | ||
1899 | NEGOTIATE | ||
1900 | SESSION_SETUP_ANDX (BB which?) | ||
1901 | TREE_CONNECT_ANDX (BB which wct?) | ||
1902 | TREE_DISCONNECT (BB add volume timestamp on response) | ||
1903 | LOGOFF_ANDX | ||
1904 | DELETE (note delete open file behavior) | ||
1905 | DELETE_DIRECTORY | ||
1906 | READ_AND_X | ||
1907 | WRITE_AND_X | ||
1908 | LOCKING_AND_X (note posix lock semantics) | ||
1909 | RENAME (note rename across dirs and open file rename posix behaviors) | ||
1910 | NT_RENAME (for hardlinks) Is this good enough for all features? | ||
1911 | FIND_CLOSE2 | ||
1912 | TRANSACTION2 (18 cases) | ||
1913 | SMB_SET_FILE_END_OF_FILE_INFO2 SMB_SET_PATH_END_OF_FILE_INFO2 | ||
1914 | (BB verify that never need to set allocation size) | ||
1915 | SMB_SET_FILE_BASIC_INFO2 (setting times - BB can it be done via Unix ext?) | ||
1916 | |||
1917 | COPY (note support for copy across directories) - FUTURE, OPTIONAL | ||
1918 | setting/getting OS/2 EAs - FUTURE (BB can this handle | ||
1919 | setting Linux xattrs perfectly) - OPTIONAL | ||
1920 | dnotify - FUTURE, OPTIONAL | ||
1921 | quota - FUTURE, OPTIONAL | ||
1922 | |||
1923 | Note that various requests implemented for NT interop such as | ||
1924 | NT_TRANSACT (IOCTL) QueryReparseInfo | ||
1925 | are unneeded to servers compliant with the CIFS POSIX extensions | ||
1926 | |||
1927 | From CIFS Unix Extensions: | ||
1928 | ------------------------- | ||
1929 | T2 SET_PATH_INFO (SMB_SET_FILE_UNIX_LINK) for symlinks | ||
1930 | T2 SET_PATH_INFO (SMB_SET_FILE_BASIC_INFO2) | ||
1931 | T2 QUERY_PATH_INFO (SMB_QUERY_FILE_UNIX_LINK) | ||
1932 | T2 QUERY_PATH_INFO (SMB_QUERY_FILE_UNIX_BASIC) - BB check for missing inode fields | ||
1933 | Actually need QUERY_FILE_UNIX_INFO since has inode num | ||
1934 | BB what about a) blksize/blkbits/blocks | ||
1935 | b) i_version | ||
1936 | c) i_rdev | ||
1937 | d) notify mask? | ||
1938 | e) generation | ||
1939 | f) size_seqcount | ||
1940 | T2 FIND_FIRST/FIND_NEXT FIND_FILE_UNIX | ||
1941 | TRANS2_GET_DFS_REFERRAL - OPTIONAL but recommended | ||
1942 | T2_QFS_INFO QueryDevice/AttributeInfo - OPTIONAL | ||
1943 | |||
1944 | |||
1945 | */ | ||
1946 | |||
1947 | /* xsymlink is a symlink format that can be used | ||
1948 | to save symlink info in a regular file when | ||
1949 | mounted to operating systems that do not | ||
1950 | support the cifs Unix extensions or EAs (for xattr | ||
1951 | based symlinks). For such a file to be recognized | ||
1952 | as containing symlink data: | ||
1953 | |||
1954 | 1) file size must be 1067, | ||
1955 | 2) signature must begin file data, | ||
1956 | 3) length field must be set to ASCII representation | ||
1957 | of a number which is less than or equal to 1024, | ||
1958 | 4) md5 must match that of the path data */ | ||
1959 | |||
1960 | struct xsymlink { | ||
1961 | /* 1067 bytes */ | ||
1962 | char signature[4]; /* XSym */ /* not null terminated */ | ||
1963 | char cr0; /* \n */ | ||
1964 | /* ASCII representation of length (4 bytes decimal) terminated by \n not null */ | ||
1965 | char length[4]; | ||
1966 | char cr1; /* \n */ | ||
1967 | /* md5 of valid subset of path ie path[0] through path[length-1] */ | ||
1968 | __u8 md5[32]; | ||
1969 | char cr2; /* \n */ | ||
1970 | /* if room left, then end with \n then 0x20s by convention but not required */ | ||
1971 | char path[1024]; | ||
1972 | }; | ||
1973 | |||
1974 | typedef struct { | ||
1975 | /* BB do we need another field for flags? BB */ | ||
1976 | __u32 xattr_name_len; | ||
1977 | __u32 xattr_value_len; | ||
1978 | char xattr_name[0]; | ||
1979 | /* followed by xattr_value[xattr_value_len], no pad */ | ||
1980 | } FILE_XATTR_INFO; /* extended attribute, info level 205 */ | ||
1981 | |||
1982 | |||
1983 | #endif | ||
1984 | |||
1985 | #pragma pack() /* resume default structure packing */ | ||
1986 | |||
1987 | #endif /* _CIFSPDU_H */ | ||