1c5689dd877967135bcc1a2423740d4d529f4183
[tprouty/samba.git] / source / include / rpc_misc.h
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
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 _RPC_MISC_H /* _RPC_MISC_H */
25 #define _RPC_MISC_H 
26
27
28 #include "rpc_dce.h"
29
30 /* well-known RIDs - Relative IDs */
31
32 /* RIDs - Well-known users ... */
33 #define DOMAIN_USER_RID_ADMIN          (0x000001F4L)
34 #define DOMAIN_USER_RID_GUEST          (0x000001F5L)
35
36 /* RIDs - well-known groups ... */
37 #define DOMAIN_GROUP_RID_ADMINS        (0x00000200L)
38 #define DOMAIN_GROUP_RID_USERS         (0x00000201L)
39 #define DOMAIN_GROUP_RID_GUESTS        (0x00000202L)
40
41 /* RIDs - well-known aliases ... */
42 #define BUILTIN_ALIAS_RID_ADMINS        (0x00000220L)
43 #define BUILTIN_ALIAS_RID_USERS         (0x00000221L)
44 #define BUILTIN_ALIAS_RID_GUESTS        (0x00000222L)
45 #define BUILTIN_ALIAS_RID_POWER_USERS   (0x00000223L)
46 #define BUILTIN_ALIAS_RID_ACCOUNT_OPS   (0x00000224L)
47 #define BUILTIN_ALIAS_RID_SYSTEM_OPS    (0x00000225L)
48 #define BUILTIN_ALIAS_RID_PRINT_OPS     (0x00000226L)
49 #define BUILTIN_ALIAS_RID_BACKUP_OPS    (0x00000227L)
50 #define BUILTIN_ALIAS_RID_REPLICATOR    (0x00000228L)
51
52 /*
53  * Masks for mappings between unix uid and gid types and
54  * NT RIDS.
55  */
56
57 /* Take the bottom bits. */
58 #define RID_TYPE_MASK 2
59 #define RID_MULTIPLIER 4
60
61 /* The three common types. */
62 #define RID_TYPE_USER    0
63 #define RID_TYPE_GROUP   1
64 #define RID_TYPE_ALIAS   2
65
66 /* ENUM_HND */
67 typedef struct enum_hnd_info
68 {
69         uint32 ptr_hnd;          /* pointer to enumeration handle */
70         uint32 handle;           /* enumeration handle */
71
72 } ENUM_HND;
73
74 /* LOOKUP_LEVEL - switch value */
75 typedef struct lookup_level_info
76 {
77   uint16 value;
78
79 } LOOKUP_LEVEL;
80
81 /* DOM_SID2 - security id */
82 typedef struct sid_info_2
83 {
84         uint32 num_auths; /* length, bytes, including length of len :-) */
85
86         DOM_SID sid;
87
88 } DOM_SID2;
89
90 /* STRHDR - string header */
91 typedef struct header_info
92 {
93   uint16 str_str_len;
94   uint16 str_max_len;
95   uint32 buffer; /* non-zero */
96
97 } STRHDR;
98
99 /* STRHDR2 - string header, 32-bit lengths */
100 typedef struct header2_info
101 {
102   uint32 str_str_len;
103   uint32 str_max_len;
104   uint32 buffer;
105
106 } STRHDR2;
107
108 /* UNIHDR - unicode string header */
109 typedef struct unihdr_info
110 {
111   uint16 uni_str_len;
112   uint16 uni_max_len;
113   uint32 buffer; /* usually has a value of 4 */
114
115 } UNIHDR;
116
117 /* UNIHDR2 - unicode string header and undocumented buffer */
118 typedef struct unihdr2_info
119 {
120   UNIHDR unihdr;
121   uint32 buffer; /* 32 bit buffer pointer */
122
123 } UNIHDR2;
124
125 /* clueless as to what maximum length should be */
126 #define MAX_UNISTRLEN 256
127 #define MAX_STRINGLEN 256
128 #define MAX_BUFFERLEN 512
129
130 /* UNISTR - unicode string size and buffer */
131 typedef struct unistr_info
132 {
133   uint16 buffer[MAX_UNISTRLEN]; /* unicode characters. ***MUST*** be null-terminated */
134
135 } UNISTR;
136
137 /* BUFHDR - buffer header */
138 typedef struct bufhdr_info
139 {
140   uint32 buf_max_len;
141   uint32 buf_len;
142
143 } BUFHDR;
144
145 /* BUFFER2 - unicode string, size (in uint8 ascii chars) and buffer */
146 /* pathetic.  some stupid team of \PIPE\winreg writers got the concept */
147 /* of a unicode string different from the other \PIPE\ writers */
148 typedef struct buffer2_info
149 {
150   uint32 buf_max_len;
151   uint32 undoc;
152   uint32 buf_len;
153   uint16 buffer[MAX_UNISTRLEN]; /* unicode characters. **NOT** necessarily null-terminated */
154
155 } BUFFER2;
156
157 /* BUFFER3 */
158 typedef struct buffer3_info
159 {
160   uint32 buf_max_len;
161   uint8  buffer[MAX_BUFFERLEN]; /* data */
162   uint32 buf_len;
163
164 } BUFFER3;
165
166 /* UNISTR2 - unicode string size (in uint16 unicode chars) and buffer */
167 typedef struct unistr2_info
168 {
169   uint32 uni_max_len;
170   uint32 undoc;
171   uint32 uni_str_len;
172   uint16 buffer[MAX_UNISTRLEN]; /* unicode characters. **NOT** necessarily null-terminated */
173
174 } UNISTR2;
175
176 /* STRING2 - string size (in uint8 chars) and buffer */
177 typedef struct string2_info
178 {
179   uint32 str_max_len;
180   uint32 undoc;
181   uint32 str_str_len;
182   uint8  buffer[MAX_STRINGLEN]; /* uint8 characters. **NOT** necessarily null-terminated */
183
184 } STRING2;
185
186 /* UNISTR3 - XXXX not sure about this structure */
187 typedef struct unistr3_info
188 {
189         uint32 uni_str_len;
190         UNISTR str;
191
192 } UNISTR3;
193
194
195 /* DOM_RID2 - domain RID structure for ntlsa pipe */
196 typedef struct domrid2_info
197 {
198         uint8 type; /* value is SID_NAME_USE enum */
199         uint32 rid;
200         uint32 rid_idx; /* referenced domain index */
201
202 } DOM_RID2;
203
204 /* DOM_RID3 - domain RID structure for samr pipe */
205 typedef struct domrid3_info
206 {
207         uint32 rid;        /* domain-relative (to a SID) id */
208         uint32 type1;      /* value is 0x1 */
209         uint32 ptr_type;   /* undocumented pointer */
210         uint32 type2;      /* value is 0x1 */
211         uint32 unk; /* value is 0x2 */
212
213 } DOM_RID3;
214
215 /* DOM_RID4 - rid + user attributes */
216 typedef struct domrid4_info
217 {
218         uint32 unknown;      
219         uint16 attr;
220         uint32 rid;  /* user RID */
221
222 } DOM_RID4;
223
224 /* DOM_CLNT_SRV - client / server names */
225 typedef struct clnt_srv_info
226 {
227   uint32  undoc_buffer; /* undocumented 32 bit buffer pointer */
228   UNISTR2 uni_logon_srv; /* logon server name */
229   uint32  undoc_buffer2; /* undocumented 32 bit buffer pointer */
230   UNISTR2 uni_comp_name; /* client machine name */
231
232 } DOM_CLNT_SRV;
233
234 /* DOM_LOG_INFO - login info */
235 typedef struct log_info
236 {
237   uint32  undoc_buffer; /* undocumented 32 bit buffer pointer */
238   UNISTR2 uni_logon_srv; /* logon server name */
239   UNISTR2 uni_acct_name; /* account name */
240   uint16  sec_chan;      /* secure channel type */
241   UNISTR2 uni_comp_name; /* client machine name */
242
243 } DOM_LOG_INFO;
244
245 /* DOM_CLNT_INFO - client info */
246 typedef struct clnt_info
247 {
248   DOM_LOG_INFO login;
249   DOM_CRED     cred;
250
251 } DOM_CLNT_INFO;
252
253 /* DOM_CLNT_INFO2 - client info */
254 typedef struct clnt_info2
255 {
256   DOM_CLNT_SRV login;
257   uint32        ptr_cred;
258   DOM_CRED      cred;
259
260 } DOM_CLNT_INFO2;
261
262 /* DOM_LOGON_ID - logon id */
263 typedef struct logon_info
264 {
265   uint32 low;
266   uint32 high;
267
268 } DOM_LOGON_ID;
269
270 /* OWF INFO */
271 typedef struct owf_info
272 {
273   uint8 data[16];
274
275 } OWF_INFO;
276
277
278 /* DOM_GID - group id + user attributes */
279 typedef struct gid_info
280 {
281   uint32 g_rid;  /* a group RID */
282   uint32 attr;
283
284 } DOM_GID;
285
286 #define POL_HND_SIZE 20
287
288 /* POLICY_HND */
289 typedef struct lsa_policy_info
290 {
291   uint8 data[POL_HND_SIZE]; /* policy handle */
292
293 } POLICY_HND;
294
295 #endif /* _RPC_MISC_H */
296