oopss. message for previous commit should have been
[Samba.git] / source / include / rpc_misc.h
blob558c28459e3cd7fe496bc07988398682fec18b2a
1 /*
2 Unix SMB/Netbios implementation.
3 Version 1.9.
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.
24 #include "ntdomain.h"
25 #include "rpc_dce.h"
27 #ifndef _RPC_MISC_H /* _RPC_MISC_H */
28 #define _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
58 * NT RIDS.
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
69 /* ENUM_HND */
70 typedef struct enum_hnd_info
72 uint32 ptr_hnd; /* pointer to enumeration handle */
73 uint32 handle; /* enumeration handle */
75 } ENUM_HND;
77 /* LOOKUP_LEVEL - switch value */
78 typedef struct lookup_level_info
80 uint16 value;
82 } LOOKUP_LEVEL;
84 /* DOM_SID2 - security id */
85 typedef struct sid_info_2
87 uint32 num_auths; /* length, bytes, including length of len :-) */
89 DOM_SID sid;
91 } DOM_SID2;
93 /* STRHDR - string header */
94 typedef struct header_info
96 uint16 str_str_len;
97 uint16 str_max_len;
98 uint32 buffer; /* non-zero */
100 } STRHDR;
102 /* UNIHDR - unicode string header */
103 typedef struct unihdr_info
105 uint16 uni_str_len;
106 uint16 uni_max_len;
107 uint32 buffer; /* usually has a value of 4 */
109 } UNIHDR;
111 /* UNIHDR2 - unicode string header and undocumented buffer */
112 typedef struct unihdr2_info
114 UNIHDR unihdr;
115 uint32 buffer; /* 32 bit buffer pointer */
117 } UNIHDR2;
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 */
128 uint16 *buffer;
129 } UNISTR;
131 /* BUFHDR - buffer header */
132 typedef struct bufhdr_info
134 uint32 buf_max_len;
135 uint32 buf_len;
137 } BUFHDR;
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
144 uint32 buf_max_len;
145 uint32 undoc;
146 uint32 buf_len;
147 /* unicode characters. ***MUST*** be little-endian. **NOT** necessarily null-terminated */
148 uint16 *buffer;
150 } BUFFER2;
152 /* BUFFER3 */
153 typedef struct buffer3_info
155 uint32 buf_max_len;
156 uint8 *buffer; /* Data */
157 uint32 buf_len;
159 } BUFFER3;
161 /* BUFFER5 */
162 typedef struct buffer5_info
164 uint32 buf_len;
165 uint16 *buffer; /* data */
166 } BUFFER5;
168 /* UNISTR2 - unicode string size (in uint16 unicode chars) and buffer */
169 typedef struct unistr2_info
171 uint32 uni_max_len;
172 uint32 undoc;
173 uint32 uni_str_len;
174 /* unicode characters. ***MUST*** be little-endian.
175 **must** be null-terminated and the uni_str_len should include
176 the NULL character */
177 uint16 *buffer;
179 } UNISTR2;
181 /* STRING2 - string size (in uint8 chars) and buffer */
182 typedef struct string2_info
184 uint32 str_max_len;
185 uint32 undoc;
186 uint32 str_str_len;
187 uint8 *buffer; /* uint8 characters. **NOT** necessarily null-terminated */
189 } STRING2;
191 /* UNISTR3 - XXXX not sure about this structure */
192 typedef struct unistr3_info
194 uint32 uni_str_len;
195 UNISTR str;
197 } UNISTR3;
200 /* DOM_RID2 - domain RID structure for ntlsa pipe */
201 typedef struct domrid2_info
203 uint8 type; /* value is SID_NAME_USE enum */
204 uint32 rid;
205 uint32 rid_idx; /* referenced domain index */
207 } DOM_RID2;
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 */
218 } DOM_RID3;
220 /* DOM_RID4 - rid + user attributes */
221 typedef struct domrid4_info
223 uint32 unknown;
224 uint16 attr;
225 uint32 rid; /* user RID */
227 } DOM_RID4;
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 */
237 } DOM_CLNT_SRV;
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 */
248 } DOM_LOG_INFO;
250 /* DOM_CHAL - challenge info */
251 typedef struct chal_info
253 uchar data[8]; /* credentials */
254 } DOM_CHAL;
256 /* DOM_CREDs - timestamped client or server credentials */
257 typedef struct cred_info
259 DOM_CHAL challenge; /* credentials */
260 UTIME timestamp; /* credential time-stamp */
261 } DOM_CRED;
263 /* DOM_CLNT_INFO - client info */
264 typedef struct clnt_info
266 DOM_LOG_INFO login;
267 DOM_CRED cred;
269 } DOM_CLNT_INFO;
271 /* DOM_CLNT_INFO2 - client info */
272 typedef struct clnt_info2
274 DOM_CLNT_SRV login;
275 uint32 ptr_cred;
276 DOM_CRED cred;
278 } DOM_CLNT_INFO2;
280 /* DOM_LOGON_ID - logon id */
281 typedef struct logon_info
283 uint32 low;
284 uint32 high;
286 } DOM_LOGON_ID;
288 /* OWF INFO */
289 typedef struct owf_info
291 uint8 data[16];
293 } OWF_INFO;
296 /* DOM_GID - group id + user attributes */
297 typedef struct gid_info
299 uint32 g_rid; /* a group RID */
300 uint32 attr;
302 } DOM_GID;
304 /* POLICY_HND */
305 typedef struct lsa_policy_info
307 uint32 data1;
308 uint32 data2;
309 uint16 data3;
310 uint16 data4;
311 uint8 data5[8];
312 } POLICY_HND;
315 * A client connection's state, pipe name,
316 * user credentials, etc...
318 typedef struct _cli_auth_fns cli_auth_fns;
319 struct user_creds;
320 struct cli_connection {
322 char *srv_name;
323 char *pipe_name;
324 struct user_creds usr_creds;
326 struct cli_state *pCli_state;
328 cli_auth_fns *auth;
330 void *auth_info;
331 void *auth_creds;
336 * Associate a POLICY_HND with a cli_connection
338 typedef struct rpc_hnd_node {
340 POLICY_HND hnd;
341 struct cli_connection *cli;
343 } RPC_HND_NODE;
345 typedef struct uint64_s
347 uint32 low;
348 uint32 high;
349 } UINT64_S;
351 /* BUFHDR2 - another buffer header, with info level */
352 typedef struct bufhdr2_info
354 uint32 info_level;
355 uint32 length; /* uint8 chars */
356 uint32 buffer;
359 BUFHDR2;
361 /* BUFFER4 - simple length and buffer */
362 typedef struct buffer4_info
364 uint32 buf_len;
365 uint8 buffer[MAX_BUFFERLEN];
368 BUFFER4;
371 #endif /* _RPC_MISC_H */