2 Unix SMB/Netbios implementation.
4 SMB parameters and setup
5 Copyright (C) Andrew Tridgell 1992-1997
6 Copyright (C) Luke Kenneth Casson Leighton 1996-1997
7 Copyright (C) Paul Ashton 1997
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.
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.
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.
27 #ifndef _RPC_MISC_H /* _RPC_MISC_H */
32 /* well-known RIDs - Relative IDs */
34 /* RIDs - Well-known users ... */
35 #define DOMAIN_USER_RID_ADMIN (0x000001F4L)
36 #define DOMAIN_USER_RID_GUEST (0x000001F5L)
38 /* RIDs - well-known groups ... */
39 #define DOMAIN_GROUP_RID_ADMINS (0x00000200L)
40 #define DOMAIN_GROUP_RID_USERS (0x00000201L)
41 #define DOMAIN_GROUP_RID_GUESTS (0x00000202L)
43 /* RIDs - well-known aliases ... */
44 #define BUILTIN_ALIAS_RID_ADMINS (0x00000220L)
45 #define BUILTIN_ALIAS_RID_USERS (0x00000221L)
46 #define BUILTIN_ALIAS_RID_GUESTS (0x00000222L)
47 #define BUILTIN_ALIAS_RID_POWER_USERS (0x00000223L)
49 #define BUILTIN_ALIAS_RID_ACCOUNT_OPS (0x00000224L)
50 #define BUILTIN_ALIAS_RID_SYSTEM_OPS (0x00000225L)
51 #define BUILTIN_ALIAS_RID_PRINT_OPS (0x00000226L)
52 #define BUILTIN_ALIAS_RID_BACKUP_OPS (0x00000227L)
54 #define BUILTIN_ALIAS_RID_REPLICATOR (0x00000228L)
57 * Masks for mappings between unix uid and gid types and
61 /* Take the bottom bit. */
62 #define RID_TYPE_MASK 1
63 #define RID_MULTIPLIER 2
65 /* The two common types. */
66 #define USER_RID_TYPE 0
67 #define GROUP_RID_TYPE 1
70 typedef struct enum_hnd_info
72 uint32 ptr_hnd
; /* pointer to enumeration handle */
73 uint32 handle
; /* enumeration handle */
77 /* LOOKUP_LEVEL - switch value */
78 typedef struct lookup_level_info
84 /* DOM_SID2 - security id */
85 typedef struct sid_info_2
87 uint32 num_auths
; /* length, bytes, including length of len :-) */
93 /* STRHDR - string header */
94 typedef struct header_info
98 uint32 buffer
; /* non-zero */
102 /* UNIHDR - unicode string header */
103 typedef struct unihdr_info
107 uint32 buffer
; /* usually has a value of 4 */
111 /* UNIHDR2 - unicode string header and undocumented buffer */
112 typedef struct unihdr2_info
115 uint32 buffer
; /* 32 bit buffer pointer */
119 /* clueless as to what maximum length should be */
120 #define MAX_UNISTRLEN 256
121 #define MAX_STRINGLEN 256
122 #define MAX_BUFFERLEN 512
124 /* UNISTR - unicode string size and buffer */
125 typedef struct unistr_info
127 /* unicode characters. ***MUST*** be little-endian. ***MUST*** be null-terminated */
131 /* BUFHDR - buffer header */
132 typedef struct bufhdr_info
139 /* BUFFER2 - unicode string, size (in uint8 ascii chars) and buffer */
140 /* pathetic. some stupid team of \PIPE\winreg writers got the concept */
141 /* of a unicode string different from the other \PIPE\ writers */
142 typedef struct buffer2_info
147 /* unicode characters. ***MUST*** be little-endian. **NOT** necessarily null-terminated */
153 typedef struct buffer3_info
156 uint8
*buffer
; /* Data */
162 typedef struct buffer5_info
165 uint16
*buffer
; /* data */
168 /* UNISTR2 - unicode string size (in uint16 unicode chars) and buffer */
169 typedef struct unistr2_info
174 /* unicode characters. ***MUST*** be little-endian.
175 **must** be null-terminated and the uni_str_len should include
176 the NULL character */
181 /* STRING2 - string size (in uint8 chars) and buffer */
182 typedef struct string2_info
187 uint8
*buffer
; /* uint8 characters. **NOT** necessarily null-terminated */
191 /* UNISTR3 - XXXX not sure about this structure */
192 typedef struct unistr3_info
200 /* DOM_RID2 - domain RID structure for ntlsa pipe */
201 typedef struct domrid2_info
203 uint8 type
; /* value is SID_NAME_USE enum */
205 uint32 rid_idx
; /* referenced domain index */
209 /* DOM_RID3 - domain RID structure for samr pipe */
210 typedef struct domrid3_info
212 uint32 rid
; /* domain-relative (to a SID) id */
213 uint32 type1
; /* value is 0x1 */
214 uint32 ptr_type
; /* undocumented pointer */
215 uint32 type2
; /* value is 0x1 */
216 uint32 unk
; /* value is 0x2 */
220 /* DOM_RID4 - rid + user attributes */
221 typedef struct domrid4_info
225 uint32 rid
; /* user RID */
229 /* DOM_CLNT_SRV - client / server names */
230 typedef struct clnt_srv_info
232 uint32 undoc_buffer
; /* undocumented 32 bit buffer pointer */
233 UNISTR2 uni_logon_srv
; /* logon server name */
234 uint32 undoc_buffer2
; /* undocumented 32 bit buffer pointer */
235 UNISTR2 uni_comp_name
; /* client machine name */
239 /* DOM_LOG_INFO - login info */
240 typedef struct log_info
242 uint32 undoc_buffer
; /* undocumented 32 bit buffer pointer */
243 UNISTR2 uni_logon_srv
; /* logon server name */
244 UNISTR2 uni_acct_name
; /* account name */
245 uint16 sec_chan
; /* secure channel type */
246 UNISTR2 uni_comp_name
; /* client machine name */
250 /* DOM_CHAL - challenge info */
251 typedef struct chal_info
253 uchar data
[8]; /* credentials */
256 /* DOM_CREDs - timestamped client or server credentials */
257 typedef struct cred_info
259 DOM_CHAL challenge
; /* credentials */
260 UTIME timestamp
; /* credential time-stamp */
263 /* DOM_CLNT_INFO - client info */
264 typedef struct clnt_info
271 /* DOM_CLNT_INFO2 - client info */
272 typedef struct clnt_info2
280 /* DOM_LOGON_ID - logon id */
281 typedef struct logon_info
289 typedef struct owf_info
296 /* DOM_GID - group id + user attributes */
297 typedef struct gid_info
299 uint32 g_rid
; /* a group RID */
305 typedef struct lsa_policy_info
315 * A client connection's state, pipe name,
316 * user credentials, etc...
318 typedef struct _cli_auth_fns cli_auth_fns
;
320 struct cli_connection
{
324 struct user_creds usr_creds
;
326 struct cli_state
*pCli_state
;
336 * Associate a POLICY_HND with a cli_connection
338 typedef struct rpc_hnd_node
{
341 struct cli_connection
*cli
;
345 typedef struct uint64_s
351 /* BUFHDR2 - another buffer header, with info level */
352 typedef struct bufhdr2_info
355 uint32 length
; /* uint8 chars */
361 /* BUFFER4 - simple length and buffer */
362 typedef struct buffer4_info
365 uint8 buffer
[MAX_BUFFERLEN
];
371 #endif /* _RPC_MISC_H */