• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/samba/source/include/
1/*
2   Unix SMB/Netbios implementation.
3   Version 1.9.
4   SMB transaction2 handling
5   Copyright (C) Jeremy Allison 1994-1998
6
7   Extensively modified by Andrew Tridgell, 1995
8
9   This program is free software; you can redistribute it and/or modify
10   it under the terms of the GNU General Public License as published by
11   the Free Software Foundation; either version 2 of the License, or
12   (at your option) any later version.
13
14   This program is distributed in the hope that it will be useful,
15   but WITHOUT ANY WARRANTY; without even the implied warranty of
16   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17   GNU General Public License for more details.
18
19   You should have received a copy of the GNU General Public License
20   along with this program; if not, write to the Free Software
21   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22*/
23
24#ifndef _TRANS2_H_
25#define _TRANS2_H_
26
27/* Define the structures needed for the trans2 calls. */
28
29/*******************************************************
30 For DosFindFirst/DosFindNext - level 1
31
32MAXFILENAMELEN = 255;
33FDATE == uint16
34FTIME == uint16
35ULONG == uint32
36USHORT == uint16
37
38typedef struct _FILEFINDBUF {
39Byte offset   Type     name                description
40-------------+-------+-------------------+--------------
410             FDATE    fdateCreation;
422             FTIME    ftimeCreation;
434             FDATE    fdateLastAccess;
446             FTIME    ftimeLastAccess;
458             FDATE    fdateLastWrite;
4610            FTIME    ftimeLastWrite;
4712            ULONG    cbFile               file length in bytes
4816            ULONG    cbFileAlloc          size of file allocation unit
4920            USHORT   attrFile
5022            UCHAR    cchName              length of name to follow (not including zero)
5123            UCHAR    achName[MAXFILENAMELEN]; Null terminated name
52} FILEFINDBUF;
53*********************************************************/
54
55#define l1_fdateCreation 0
56#define l1_fdateLastAccess 4
57#define l1_fdateLastWrite 8
58#define l1_cbFile 12
59#define l1_cbFileAlloc 16
60#define l1_attrFile 20
61#define l1_cchName 22
62#define l1_achName 23
63
64/**********************************************************
65For DosFindFirst/DosFindNext - level 2
66
67typedef struct _FILEFINDBUF2 {
68Byte offset   Type     name                description
69-------------+-------+-------------------+--------------
700             FDATE    fdateCreation;
712             FTIME    ftimeCreation;
724             FDATE    fdateLastAccess;
736             FTIME    ftimeLastAccess;
748             FDATE    fdateLastWrite;
7510            FTIME    ftimeLastWrite;
7612            ULONG    cbFile               file length in bytes
7716            ULONG    cbFileAlloc          size of file allocation unit
7820            USHORT   attrFile
7922            ULONG    cbList               Extended attribute list (always 0)
8026            UCHAR    cchName              length of name to follow (not including zero)
8127            UCHAR    achName[MAXFILENAMELEN]; Null terminated name
82} FILEFINDBUF2;
83*************************************************************/
84
85#define l2_fdateCreation 0
86#define l2_fdateLastAccess 4
87#define l2_fdateLastWrite 8
88#define l2_cbFile 12
89#define l2_cbFileAlloc 16
90#define l2_attrFile 20
91#define l2_cbList 22
92#define l2_cchName 26
93#define l2_achName 27
94
95
96/**********************************************************
97For DosFindFirst/DosFindNext - level 260
98
99typedef struct _FILEFINDBUF260 {
100Byte offset   Type     name                description
101-------------+-------+-------------------+--------------
1020              ULONG  NextEntryOffset;
1034              ULONG  FileIndex;
1048              LARGE_INTEGER CreationTime;
10516             LARGE_INTEGER LastAccessTime;
10624             LARGE_INTEGER LastWriteTime;
10732             LARGE_INTEGER ChangeTime;
10840             LARGE_INTEGER EndOfFile;
10948             LARGE_INTEGER AllocationSize;
11056             ULONG FileAttributes;
11160             ULONG FileNameLength;
11264             ULONG EaSize;
11368             CHAR ShortNameLength;
11470             UNICODE ShortName[12];
11594             UNICODE FileName[];
116*************************************************************/
117
118#define l260_achName 94
119
120
121/**********************************************************
122For DosQueryPathInfo/DosQueryFileInfo/DosSetPathInfo/
123DosSetFileInfo - level 1
124
125typedef struct _FILESTATUS {
126Byte offset   Type     name                description
127-------------+-------+-------------------+--------------
1280             FDATE    fdateCreation;
1292             FTIME    ftimeCreation;
1304             FDATE    fdateLastAccess;
1316             FTIME    ftimeLastAccess;
1328             FDATE    fdateLastWrite;
13310            FTIME    ftimeLastWrite;
13412            ULONG    cbFile               file length in bytes
13516            ULONG    cbFileAlloc          size of file allocation unit
13620            USHORT   attrFile
137} FILESTATUS;
138*************************************************************/
139
140/* Use the l1_ defines from DosFindFirst */
141
142/**********************************************************
143For DosQueryPathInfo/DosQueryFileInfo/DosSetPathInfo/
144DosSetFileInfo - level 2
145
146typedef struct _FILESTATUS2 {
147Byte offset   Type     name                description
148-------------+-------+-------------------+--------------
1490             FDATE    fdateCreation;
1502             FTIME    ftimeCreation;
1514             FDATE    fdateLastAccess;
1526             FTIME    ftimeLastAccess;
1538             FDATE    fdateLastWrite;
15410            FTIME    ftimeLastWrite;
15512            ULONG    cbFile               file length in bytes
15616            ULONG    cbFileAlloc          size of file allocation unit
15720            USHORT   attrFile
15822            ULONG    cbList               Length of EA's (0)
159} FILESTATUS2;
160*************************************************************/
161
162/* Use the l2_ #defines from DosFindFirst */
163
164/**********************************************************
165For DosQFSInfo/DosSetFSInfo - level 1
166
167typedef struct _FSALLOCATE {
168Byte offset   Type     name                description
169-------------+-------+-------------------+--------------
1700             ULONG    idFileSystem       id of file system
1714             ULONG    cSectorUnit        number of sectors per allocation unit
1728             ULONG    cUnit              number of allocation units
17312            ULONG    cUnitAvail         Available allocation units
17416            USHORT   cbSector           bytes per sector
175} FSALLOCATE;
176*************************************************************/
177
178#define l1_idFileSystem 0
179#define l1_cSectorUnit 4
180#define l1_cUnit 8
181#define l1_cUnitAvail 12
182#define l1_cbSector 16
183
184/**********************************************************
185For DosQFSInfo/DosSetFSInfo - level 2
186
187typedef struct _FSINFO {
188Byte offset   Type     name                description
189-------------+-------+-------------------+--------------
1900             FDATE   vol_fdateCreation
1912             FTIME   vol_ftimeCreation
1924             UCHAR   vol_cch             length of volume name (excluding NULL)
1935             UCHAR   vol_szVolLabel[12]  volume name
194} FSINFO;
195*************************************************************/
196
197#define SMB_INFO_STANDARD               1
198#define SMB_INFO_QUERY_EA_SIZE          2
199#define SMB_INFO_QUERY_EAS_FROM_LIST    3
200#define SMB_INFO_QUERY_ALL_EAS          4
201#define SMB_INFO_IS_NAME_VALID          6
202#define SMB_QUERY_FS_LABEL_INFO			0x101
203#define SMB_QUERY_FS_VOLUME_INFO		0x102
204#define SMB_QUERY_FS_SIZE_INFO			0x103
205#define SMB_QUERY_FS_DEVICE_INFO		0x104
206#define SMB_QUERY_FS_ATTRIBUTE_INFO		0x105
207
208
209#define l2_vol_fdateCreation 0
210#define l2_vol_cch 4
211#define l2_vol_szVolLabel 5
212
213
214#define SMB_QUERY_FILE_BASIC_INFO	0x101
215#define SMB_QUERY_FILE_STANDARD_INFO	0x102
216#define SMB_QUERY_FILE_EA_INFO		0x103
217#define SMB_QUERY_FILE_NAME_INFO	0x104
218#define SMB_QUERY_FILE_ALLOCATION_INFO	0x105
219#define SMB_QUERY_FILE_END_OF_FILEINFO	0x106
220#define SMB_QUERY_FILE_ALL_INFO		0x107
221#define SMB_QUERY_FILE_ALT_NAME_INFO	0x108
222#define SMB_QUERY_FILE_STREAM_INFO	0x109
223
224#define SMB_FIND_FILE_DIRECTORY_INFO		0x101
225#define SMB_FIND_FILE_FULL_DIRECTORY_INFO	0x102
226#define SMB_FIND_FILE_NAMES_INFO		0x103
227#define SMB_FIND_FILE_BOTH_DIRECTORY_INFO	0x104
228
229#define SMB_SET_FILE_BASIC_INFO		0x101
230#define SMB_SET_FILE_DISPOSITION_INFO	0x102
231#define SMB_SET_FILE_ALLOCATION_INFO	0x103
232#define SMB_SET_FILE_END_OF_FILE_INFO	0x104
233
234/*
235 * Thursby MAC extensions....
236 */
237
238#define SMB_MAC_QUERY_FS_INFO           0x301
239
240#define DIRLEN_GUESS (45+MAX(l1_achName,l2_achName))
241
242/*
243 * DeviceType and Characteristics returned in a
244 * SMB_QUERY_FS_DEVICE_INFO call.
245 */
246
247#define DEVICETYPE_CD_ROM		0x2
248#define DEVICETYPE_CD_ROM_FILE_SYSTEM	0x3
249#define DEVICETYPE_DISK			0x7
250#define DEVICETYPE_DISK_FILE_SYSTEM	0x8
251#define DEVICETYPE_FILE_SYSTEM		0x9
252
253/* Characteristics. */
254#define TYPE_REMOVABLE_MEDIA		0x1
255#define TYPE_READ_ONLY_DEVICE		0x2
256#define TYPE_FLOPPY			0x4
257#define TYPE_WORM			0x8
258#define TYPE_REMOTE			0x10
259#define TYPE_MOUNTED			0x20
260#define TYPE_VIRTUAL			0x40
261
262#endif
263
264
265
266