Fixed some more client SPOOLSS functions. The following
[Samba.git] / source / include / rpc_misc.h
blob5ef4044cb4eb58e86f8100055491a9406a49232b
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[MAX_UNISTRLEN];
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[MAX_UNISTRLEN];
150 } BUFFER2;
152 /* BUFFER3 */
153 typedef struct buffer3_info
155 uint32 buf_max_len;
156 uint8 buffer[MAX_BUFFERLEN]; /* 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. **NOT** necessarily null-terminated */
175 uint16 buffer[MAX_UNISTRLEN];
177 } UNISTR2;
179 /* STRING2 - string size (in uint8 chars) and buffer */
180 typedef struct string2_info
182 uint32 str_max_len;
183 uint32 undoc;
184 uint32 str_str_len;
185 uint8 buffer[MAX_STRINGLEN]; /* uint8 characters. **NOT** necessarily null-terminated */
187 } STRING2;
189 /* UNISTR3 - XXXX not sure about this structure */
190 typedef struct unistr3_info
192 uint32 uni_str_len;
193 UNISTR str;
195 } UNISTR3;
198 /* DOM_RID2 - domain RID structure for ntlsa pipe */
199 typedef struct domrid2_info
201 uint8 type; /* value is SID_NAME_USE enum */
202 uint32 rid;
203 uint32 rid_idx; /* referenced domain index */
205 } DOM_RID2;
207 /* DOM_RID3 - domain RID structure for samr pipe */
208 typedef struct domrid3_info
210 uint32 rid; /* domain-relative (to a SID) id */
211 uint32 type1; /* value is 0x1 */
212 uint32 ptr_type; /* undocumented pointer */
213 uint32 type2; /* value is 0x1 */
214 uint32 unk; /* value is 0x2 */
216 } DOM_RID3;
218 /* DOM_RID4 - rid + user attributes */
219 typedef struct domrid4_info
221 uint32 unknown;
222 uint16 attr;
223 uint32 rid; /* user RID */
225 } DOM_RID4;
227 /* DOM_CLNT_SRV - client / server names */
228 typedef struct clnt_srv_info
230 uint32 undoc_buffer; /* undocumented 32 bit buffer pointer */
231 UNISTR2 uni_logon_srv; /* logon server name */
232 uint32 undoc_buffer2; /* undocumented 32 bit buffer pointer */
233 UNISTR2 uni_comp_name; /* client machine name */
235 } DOM_CLNT_SRV;
237 /* DOM_LOG_INFO - login info */
238 typedef struct log_info
240 uint32 undoc_buffer; /* undocumented 32 bit buffer pointer */
241 UNISTR2 uni_logon_srv; /* logon server name */
242 UNISTR2 uni_acct_name; /* account name */
243 uint16 sec_chan; /* secure channel type */
244 UNISTR2 uni_comp_name; /* client machine name */
246 } DOM_LOG_INFO;
248 /* DOM_CLNT_INFO - client info */
249 typedef struct clnt_info
251 DOM_LOG_INFO login;
252 DOM_CRED cred;
254 } DOM_CLNT_INFO;
256 /* DOM_CLNT_INFO2 - client info */
257 typedef struct clnt_info2
259 DOM_CLNT_SRV login;
260 uint32 ptr_cred;
261 DOM_CRED cred;
263 } DOM_CLNT_INFO2;
265 /* DOM_LOGON_ID - logon id */
266 typedef struct logon_info
268 uint32 low;
269 uint32 high;
271 } DOM_LOGON_ID;
273 /* OWF INFO */
274 typedef struct owf_info
276 uint8 data[16];
278 } OWF_INFO;
281 /* DOM_GID - group id + user attributes */
282 typedef struct gid_info
284 uint32 g_rid; /* a group RID */
285 uint32 attr;
287 } DOM_GID;
289 #define POL_HND_SIZE 20
291 /* POLICY_HND */
292 typedef struct lsa_policy_info
294 uint8 data[POL_HND_SIZE]; /* policy handle */
296 } POLICY_HND;
300 * A client connection's state, pipe name,
301 * user credentials, etc...
303 typedef struct _cli_auth_fns cli_auth_fns;
304 struct user_creds;
305 struct cli_connection {
307 uint32 num_connections;
308 char *srv_name;
309 char *pipe_name;
310 struct user_creds usr_creds;
312 struct cli_state *pCli_state;
314 cli_auth_fns *auth;
316 void *auth_info;
317 void *auth_creds;
322 * Associate a POLICY_HND with a cli_connection
324 typedef struct rpc_hnd_node {
326 POLICY_HND hnd;
327 struct cli_connection *cli;
329 } RPC_HND_NODE;
331 typedef struct uint64_s
333 uint32 low;
334 uint32 high;
335 } UINT64_S;
337 #endif /* _RPC_MISC_H */