r14634: Many bug fixes thanks to train rides and overnight stays in airports
[samba.git] / source / include / rpc_samr.h
1 /* 
2    Unix SMB/CIFS implementation.
3    SMB parameters and setup
4    Copyright (C) Andrew Tridgell              1992-2000
5    Copyright (C) Luke Kenneth Casson Leighton 1996-2000
6    Copyright (C) Paul Ashton                  1997-2000
7    Copyright (C) Jean François Micouleau      1998-2001
8    Copyright (C) Jim McDonough <jmcd@us.ibm.com> 2002
9    
10    
11    This program is free software; you can redistribute it and/or modify
12    it under the terms of the GNU General Public License as published by
13    the Free Software Foundation; either version 2 of the License, or
14    (at your option) any later version.
15    
16    This program is distributed in the hope that it will be useful,
17    but WITHOUT ANY WARRANTY; without even the implied warranty of
18    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19    GNU General Public License for more details.
20    
21    You should have received a copy of the GNU General Public License
22    along with this program; if not, write to the Free Software
23    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24 */
25
26 #ifndef _RPC_SAMR_H /* _RPC_SAMR_H */
27 #define _RPC_SAMR_H 
28
29 /*******************************************************************
30  the following information comes from a QuickView on samsrv.dll,
31  and gives an idea of exactly what is needed:
32  
33 x SamrAddMemberToAlias
34 x SamrAddMemberToGroup
35 SamrAddMultipleMembersToAlias
36 x SamrChangePasswordUser
37 x SamrCloseHandle
38 x SamrConnect
39 x SamrCreateAliasInDomain
40 x SamrCreateGroupInDomain
41 x SamrCreateUserInDomain
42 ? SamrDeleteAlias
43 SamrDeleteGroup
44 x SamrDeleteUser
45 x SamrEnumerateAliasesInDomain
46 SamrEnumerateDomainsInSamServer
47 x SamrEnumerateGroupsInDomain
48 x SamrEnumerateUsersInDomain
49 SamrGetUserDomainPasswordInformation
50 SamrLookupDomainInSamServer
51 ? SamrLookupIdsInDomain
52 x SamrLookupNamesInDomain
53 x SamrOpenAlias
54 x SamrOpenDomain
55 x SamrOpenGroup
56 x SamrOpenUser
57 x SamrQueryDisplayInformation
58 x SamrQueryInformationAlias
59 SamrQueryInformationDomain
60 ? SamrQueryInformationUser
61 x SamrQuerySecurityObject
62 SamrRemoveMemberFromAlias
63 SamrRemoveMemberFromForiegnDomain
64 SamrRemoveMemberFromGroup
65 SamrRemoveMultipleMembersFromAlias
66 x SamrSetInformationAlias
67 SamrSetInformationDomain
68 x SamrSetInformationGroup
69 x SamrSetInformationUser
70 SamrSetMemberAttributesOfGroup
71 SamrSetSecurityObject
72 SamrShutdownSamServer
73 SamrTestPrivateFunctionsDomain
74 SamrTestPrivateFunctionsUser
75
76 ********************************************************************/
77
78 #define SAMR_CONNECT_ANON      0x00
79 #define SAMR_CLOSE_HND         0x01
80 #define SAMR_SET_SEC_OBJECT    0x02
81 #define SAMR_QUERY_SEC_OBJECT  0x03
82
83 #define SAMR_UNKNOWN_4         0x04 /* profile info? */
84 #define SAMR_LOOKUP_DOMAIN     0x05
85 #define SAMR_ENUM_DOMAINS      0x06
86 #define SAMR_OPEN_DOMAIN       0x07
87 #define SAMR_QUERY_DOMAIN_INFO 0x08
88 #define SAMR_SET_DOMAIN_INFO   0x09
89
90 #define SAMR_CREATE_DOM_GROUP  0x0a
91 #define SAMR_ENUM_DOM_GROUPS   0x0b
92 #define SAMR_ENUM_DOM_USERS    0x0d
93 #define SAMR_CREATE_DOM_ALIAS  0x0e
94 #define SAMR_ENUM_DOM_ALIASES  0x0f
95 #define SAMR_QUERY_USERALIASES 0x10
96
97 #define SAMR_LOOKUP_NAMES      0x11
98 #define SAMR_LOOKUP_RIDS       0x12
99
100 #define SAMR_OPEN_GROUP        0x13
101 #define SAMR_QUERY_GROUPINFO   0x14
102 #define SAMR_SET_GROUPINFO     0x15
103 #define SAMR_ADD_GROUPMEM      0x16
104 #define SAMR_DELETE_DOM_GROUP  0x17
105 #define SAMR_DEL_GROUPMEM      0x18
106 #define SAMR_QUERY_GROUPMEM    0x19
107 #define SAMR_UNKNOWN_1A        0x1a
108
109 #define SAMR_OPEN_ALIAS        0x1b
110 #define SAMR_QUERY_ALIASINFO   0x1c
111 #define SAMR_SET_ALIASINFO     0x1d
112 #define SAMR_DELETE_DOM_ALIAS  0x1e
113 #define SAMR_ADD_ALIASMEM      0x1f
114 #define SAMR_DEL_ALIASMEM      0x20
115 #define SAMR_QUERY_ALIASMEM    0x21
116
117 #define SAMR_OPEN_USER         0x22
118 #define SAMR_DELETE_DOM_USER   0x23
119 #define SAMR_QUERY_USERINFO    0x24
120 #define SAMR_SET_USERINFO2     0x25
121 #define SAMR_QUERY_USERGROUPS  0x27
122
123 #define SAMR_QUERY_DISPINFO    0x28
124 #define SAMR_UNKNOWN_29        0x29
125 #define SAMR_UNKNOWN_2a        0x2a
126 #define SAMR_UNKNOWN_2b        0x2b
127 #define SAMR_GET_USRDOM_PWINFO 0x2c
128 #define SAMR_REMOVE_SID_FOREIGN_DOMAIN        0x2d
129 #define SAMR_QUERY_DOMAIN_INFO2  0x2e /* looks like an alias for SAMR_QUERY_DOMAIN_INFO */
130 #define SAMR_UNKNOWN_2f        0x2f
131 #define SAMR_QUERY_DISPINFO3   0x30 /* Alias for SAMR_QUERY_DISPINFO
132                                        with info level 3 */
133 #define SAMR_UNKNOWN_31        0x31
134 #define SAMR_CREATE_USER       0x32
135 #define SAMR_QUERY_DISPINFO4   0x33 /* Alias for SAMR_QUERY_DISPINFO
136                                        with info level 4 */
137 #define SAMR_ADDMULTI_ALIASMEM 0x34
138
139 #define SAMR_UNKNOWN_35        0x35
140 #define SAMR_UNKNOWN_36        0x36
141 #define SAMR_CHGPASSWD_USER    0x37
142 #define SAMR_GET_DOM_PWINFO    0x38
143 #define SAMR_CONNECT           0x39
144 #define SAMR_SET_USERINFO      0x3A
145 #define SAMR_CONNECT4          0x3E
146 #define SAMR_CHGPASSWD_USER3   0x3F
147 #define SAMR_CONNECT5          0x40
148
149 typedef struct logon_hours_info
150 {
151         uint32 max_len; /* normally 1260 bytes */
152         uint32 offset;
153         uint32 len; /* normally 21 bytes */
154         uint8 hours[32];
155
156 } LOGON_HRS;
157
158 /* SAM_USER_INFO_23 */
159 typedef struct sam_user_info_23
160 {
161         /* TIMES MAY NOT IN RIGHT ORDER!!!! */
162         NTTIME logon_time;            /* logon time */
163         NTTIME logoff_time;           /* logoff time */
164         NTTIME kickoff_time;          /* kickoff time */
165         NTTIME pass_last_set_time;    /* password last set time */
166         NTTIME pass_can_change_time;  /* password can change time */
167         NTTIME pass_must_change_time; /* password must change time */
168
169         UNIHDR hdr_user_name;    /* NULL - user name unicode string header */
170         UNIHDR hdr_full_name;    /* user's full name unicode string header */
171         UNIHDR hdr_home_dir;     /* home directory unicode string header */
172         UNIHDR hdr_dir_drive;    /* home drive unicode string header */
173         UNIHDR hdr_logon_script; /* logon script unicode string header */
174         UNIHDR hdr_profile_path; /* profile path unicode string header */
175         UNIHDR hdr_acct_desc  ;  /* user description */
176         UNIHDR hdr_workstations; /* comma-separated workstations user can log in from */
177         UNIHDR hdr_unknown_str ; /* don't know what this is, yet. */
178         UNIHDR hdr_munged_dial ; /* munged path name and dial-back tel number */
179
180         uint8 lm_pwd[16];    /* lm user passwords */
181         uint8 nt_pwd[16];    /* nt user passwords */
182
183         uint32 user_rid;      /* Primary User ID */
184         uint32 group_rid;     /* Primary Group ID */
185
186         uint32 acb_info; /* account info (ACB_xxxx bit-mask) */
187
188         uint32 fields_present; /* 0x09f8 27fa */
189
190         uint16 logon_divs; /* 0x0000 00a8 which is 168 which is num hrs in a week */
191         /* uint8 pad[2] */
192         uint32 ptr_logon_hrs; /* pointer to logon hours */
193
194         /* Was unknown_5. */
195         uint16 bad_password_count;
196         uint16 logon_count;
197
198         uint8 padding1[6];
199                 
200         uint8 passmustchange; /* 0x00 must change = 0x01 */
201
202         uint8 padding2;
203
204         uint8 pass[516];
205
206         UNISTR2 uni_user_name;    /* NULL - username unicode string */
207         UNISTR2 uni_full_name;    /* user's full name unicode string */
208         UNISTR2 uni_home_dir;     /* home directory unicode string */
209         UNISTR2 uni_dir_drive;    /* home directory drive unicode string */
210         UNISTR2 uni_logon_script; /* logon script unicode string */
211         UNISTR2 uni_profile_path; /* profile path unicode string */
212         UNISTR2 uni_acct_desc  ;  /* user description unicode string */
213         UNISTR2 uni_workstations; /* login from workstations unicode string */
214         UNISTR2 uni_unknown_str ; /* don't know what this is, yet. */
215         UNISTR2 uni_munged_dial ; /* munged path name and dial-back tel no */
216
217         LOGON_HRS logon_hrs;
218
219 } SAM_USER_INFO_23;
220
221 /* SAM_USER_INFO_24 */
222 typedef struct sam_user_info_24
223 {
224         uint8 pass[516];
225         uint16 pw_len;
226 } SAM_USER_INFO_24;
227
228 /*
229  * NB. This structure is *definately* incorrect. It's my best guess
230  * currently for W2K SP2. The password field is encrypted in a different
231  * way than normal... And there are definately other problems. JRA.
232  */
233
234 /* SAM_USER_INFO_25 */
235 typedef struct sam_user_info_25
236 {
237         /* TIMES MAY NOT IN RIGHT ORDER!!!! */
238         NTTIME logon_time;            /* logon time */
239         NTTIME logoff_time;           /* logoff time */
240         NTTIME kickoff_time;          /* kickoff time */
241         NTTIME pass_last_set_time;    /* password last set time */
242         NTTIME pass_can_change_time;  /* password can change time */
243         NTTIME pass_must_change_time; /* password must change time */
244
245         UNIHDR hdr_user_name;    /* NULL - user name unicode string header */
246         UNIHDR hdr_full_name;    /* user's full name unicode string header */
247         UNIHDR hdr_home_dir;     /* home directory unicode string header */
248         UNIHDR hdr_dir_drive;    /* home drive unicode string header */
249         UNIHDR hdr_logon_script; /* logon script unicode string header */
250         UNIHDR hdr_profile_path; /* profile path unicode string header */
251         UNIHDR hdr_acct_desc  ;  /* user description */
252         UNIHDR hdr_workstations; /* comma-separated workstations user can log in from */
253         UNIHDR hdr_unknown_str ; /* don't know what this is, yet. */
254         UNIHDR hdr_munged_dial ; /* munged path name and dial-back tel number */
255
256         uint8 lm_pwd[16];    /* lm user passwords */
257         uint8 nt_pwd[16];    /* nt user passwords */
258
259         uint32 user_rid;      /* Primary User ID */
260         uint32 group_rid;     /* Primary Group ID */
261
262         uint32 acb_info; /* account info (ACB_xxxx bit-mask) */
263
264         uint32 unknown_6[6];
265
266         uint8 pass[532];
267
268         UNISTR2 uni_user_name;    /* NULL - username unicode string */
269         UNISTR2 uni_full_name;    /* user's full name unicode string */
270         UNISTR2 uni_home_dir;     /* home directory unicode string */
271         UNISTR2 uni_dir_drive;    /* home directory drive unicode string */
272         UNISTR2 uni_logon_script; /* logon script unicode string */
273         UNISTR2 uni_profile_path; /* profile path unicode string */
274         UNISTR2 uni_acct_desc  ;  /* user description unicode string */
275         UNISTR2 uni_workstations; /* login from workstations unicode string */
276         UNISTR2 uni_unknown_str ; /* don't know what this is, yet. */
277         UNISTR2 uni_munged_dial ; /* munged path name and dial-back tel no */
278 } SAM_USER_INFO_25;
279
280 /* SAM_USER_INFO_26 */
281 typedef struct sam_user_info_26
282 {
283         uint8 pass[532];
284         uint8 pw_len;
285 } SAM_USER_INFO_26;
286
287
288 /* SAM_USER_INFO_21 */
289 typedef struct sam_user_info_21
290 {
291         NTTIME logon_time;            /* logon time */
292         NTTIME logoff_time;           /* logoff time */
293         NTTIME kickoff_time;          /* kickoff time */
294         NTTIME pass_last_set_time;    /* password last set time */
295         NTTIME pass_can_change_time;  /* password can change time */
296         NTTIME pass_must_change_time; /* password must change time */
297
298         UNIHDR hdr_user_name;    /* username unicode string header */
299         UNIHDR hdr_full_name;    /* user's full name unicode string header */
300         UNIHDR hdr_home_dir;     /* home directory unicode string header */
301         UNIHDR hdr_dir_drive;    /* home drive unicode string header */
302         UNIHDR hdr_logon_script; /* logon script unicode string header */
303         UNIHDR hdr_profile_path; /* profile path unicode string header */
304         UNIHDR hdr_acct_desc  ;  /* user description */
305         UNIHDR hdr_workstations; /* comma-separated workstations user can log in from */
306         UNIHDR hdr_unknown_str ; /* don't know what this is, yet. */
307         UNIHDR hdr_munged_dial ; /* munged path name and dial-back tel number */
308
309         uint8 lm_pwd[16];    /* lm user passwords */
310         uint8 nt_pwd[16];    /* nt user passwords */
311
312         uint32 user_rid;      /* Primary User ID */
313         uint32 group_rid;     /* Primary Group ID */
314
315         uint32 acb_info; /* account info (ACB_xxxx bit-mask) */
316
317         /* Was unknown_3 */
318         uint32 fields_present; /* 0x00ff ffff */
319
320         uint16 logon_divs; /* 0x0000 00a8 which is 168 which is num hrs in a week */
321         /* uint8 pad[2] */
322         uint32 ptr_logon_hrs; /* unknown pointer */
323
324         /* Was unknown_5. */
325         uint16 bad_password_count;
326         uint16 logon_count;
327
328         uint8 padding1[6];
329                 
330         uint8 passmustchange; /* 0x00 must change = 0x01 */
331
332         uint8 padding2;
333
334         UNISTR2 uni_user_name;    /* username unicode string */
335         UNISTR2 uni_full_name;    /* user's full name unicode string */
336         UNISTR2 uni_home_dir;     /* home directory unicode string */
337         UNISTR2 uni_dir_drive;    /* home directory drive unicode string */
338         UNISTR2 uni_logon_script; /* logon script unicode string */
339         UNISTR2 uni_profile_path; /* profile path unicode string */
340         UNISTR2 uni_acct_desc  ;  /* user description unicode string */
341         UNISTR2 uni_workstations; /* login from workstations unicode string */
342         UNISTR2 uni_unknown_str ; /* don't know what this is, yet. */
343         UNISTR2 uni_munged_dial ; /* munged path name and dial-back tel number */
344
345         LOGON_HRS logon_hrs;
346
347 } SAM_USER_INFO_21;
348
349 #define PASS_MUST_CHANGE_AT_NEXT_LOGON  0x01
350 #define PASS_DONT_CHANGE_AT_NEXT_LOGON  0x00
351
352 /* SAM_USER_INFO_20 */
353 typedef struct sam_user_info_20
354 {
355         UNIHDR hdr_munged_dial ; /* munged path name and dial-back tel number */
356
357         UNISTR2 uni_munged_dial ; /* munged path name and dial-back tel number */
358
359 } SAM_USER_INFO_20;
360
361 /* SAM_USER_INFO_18 */
362 typedef struct sam_user_info_18
363 {
364         uint8 lm_pwd[16];    /* lm user passwords */
365         uint8 nt_pwd[16];    /* nt user passwords */
366
367         uint8 lm_pwd_active; 
368         uint8 nt_pwd_active; 
369
370 } SAM_USER_INFO_18;
371
372 /* SAM_USER_INFO_17 */
373 typedef struct sam_user_info_17
374 {
375         uint8  padding_0[16];  /* 0 - padding 16 bytes */
376         NTTIME expiry;         /* expiry time or something? */
377         uint8  padding_1[24];  /* 0 - padding 24 bytes */
378
379         UNIHDR hdr_mach_acct;  /* unicode header for machine account */
380         uint32 padding_2;      /* 0 - padding 4 bytes */
381
382         uint32 ptr_1;          /* pointer */
383         uint8  padding_3[32];  /* 0 - padding 32 bytes */
384         uint32 padding_4;      /* 0 - padding 4 bytes */
385
386         uint32 ptr_2;          /* pointer */
387         uint32 padding_5;      /* 0 - padding 4 bytes */
388
389         uint32 ptr_3;          /* pointer */
390         uint8  padding_6[32];  /* 0 - padding 32 bytes */
391
392         uint32 rid_user;       /* user RID */
393         uint32 rid_group;      /* group RID */
394
395         uint16 acct_ctrl;      /* 0080 - ACB_XXXX */
396         uint16 unknown_3;      /* 16 bit padding */
397
398         uint16 unknown_4;      /* 0x003f      - 16 bit unknown */
399         uint16 unknown_5;      /* 0x003c      - 16 bit unknown */
400
401         uint8  padding_7[16];  /* 0 - padding 16 bytes */
402         uint32 padding_8;      /* 0 - padding 4 bytes */
403         
404         UNISTR2 uni_mach_acct; /* unicode string for machine account */
405
406         uint8  padding_9[48];  /* 0 - padding 48 bytes */
407
408 } SAM_USER_INFO_17;
409
410
411 /* SAM_USER_INFO_16 */
412 typedef struct sam_user_info_16
413 {
414         uint32 acb_info;
415
416 } SAM_USER_INFO_16;
417
418
419 /* SAM_USER_INFO_7 */
420 typedef struct sam_user_info_7
421 {
422         UNIHDR hdr_name;  /* unicode header for name */
423         UNISTR2 uni_name; /* unicode string for name */
424
425 } SAM_USER_INFO_7;
426
427
428 /* SAM_USER_INFO_9 */
429 typedef struct sam_user_info_9
430 {
431         uint32 rid_group;     /* Primary Group RID */
432 } SAM_USER_INFO_9;
433
434
435 /* SAMR_Q_CLOSE_HND - probably a policy handle close */
436 typedef struct q_samr_close_hnd_info
437 {
438     POLICY_HND pol;          /* policy handle */
439
440 } SAMR_Q_CLOSE_HND;
441
442
443 /* SAMR_R_CLOSE_HND - probably a policy handle close */
444 typedef struct r_samr_close_hnd_info
445 {
446         POLICY_HND pol;       /* policy handle */
447         NTSTATUS status;         /* return status */
448
449 } SAMR_R_CLOSE_HND;
450
451
452 /****************************************************************************
453 SAMR_Q_GET_USRDOM_PWINFO - a "set user info" occurs just after this
454 *****************************************************************************/
455
456 /* SAMR_Q_GET_USRDOM_PWINFO */
457 typedef struct q_samr_usrdom_pwinfo_info
458 {
459         POLICY_HND user_pol;          /* policy handle */
460
461 } SAMR_Q_GET_USRDOM_PWINFO;
462
463
464 /****************************************************************************
465 SAMR_R_GET_USRDOM_PWINFO - a "set user info" occurs just after this
466 *****************************************************************************/
467
468 /* SAMR_R_GET_USRDOM_PWINFO */
469 typedef struct r_samr_usrdom_pwinfo_info
470 {
471         uint16 min_pwd_length;
472         uint16 unknown_1; /* 0x0016 or 0x0015 */
473         uint32 password_properties;
474         NTSTATUS status; 
475
476 } SAMR_R_GET_USRDOM_PWINFO;
477
478 /****************************************************************************
479 SAMR_Q_SET_SEC_OBJ - info level 4.
480 *****************************************************************************/
481
482 /* SAMR_Q_SET_SEC_OBJ - */
483 typedef struct q_samr_set_sec_obj_info
484 {
485         POLICY_HND pol;          /* policy handle */
486         uint32 sec_info;         /* xxxx_SECURITY_INFORMATION 0x0000 0004 */
487         SEC_DESC_BUF *buf;
488
489 } SAMR_Q_SET_SEC_OBJ;
490
491 /* SAMR_R_SET_SEC_OBJ - */
492 typedef struct r_samr_set_sec_obj_info
493 {
494         NTSTATUS status;         /* return status */
495
496 } SAMR_R_SET_SEC_OBJ;
497
498
499 /****************************************************************************
500 SAMR_Q_QUERY_SEC_OBJ - info level 4.  returns SIDs.
501 *****************************************************************************/
502
503 /* SAMR_Q_QUERY_SEC_OBJ - probably get domain info... */
504 typedef struct q_samr_query_sec_obj_info
505 {
506         POLICY_HND user_pol;          /* policy handle */
507         uint32 sec_info;     /* xxxx_SECURITY_INFORMATION 0x0000 0004 */
508
509 } SAMR_Q_QUERY_SEC_OBJ;
510
511 /* SAMR_R_QUERY_SEC_OBJ - probably an open */
512 typedef struct r_samr_query_sec_obj_info
513 {
514         uint32 ptr;
515         SEC_DESC_BUF *buf;
516
517         NTSTATUS status;         /* return status */
518
519 } SAMR_R_QUERY_SEC_OBJ;
520
521
522 /****************************************************************************
523 SAMR_Q_QUERY_DOMAIN_INFO - probably a query on domain group info.
524 *****************************************************************************/
525
526 /* SAMR_Q_QUERY_DOMAIN_INFO - */
527 typedef struct q_samr_query_domain_info
528 {
529         POLICY_HND domain_pol;   /* policy handle */
530         uint16 switch_value;     /* 0x0002, 0x0001 */
531
532 } SAMR_Q_QUERY_DOMAIN_INFO;
533
534 typedef struct sam_unknown_info_3_info
535 {
536         NTTIME logout;  
537         /* 0x8000 0000 */ /* DON'T forcibly disconnect remote users from server when logon hours expire*/
538
539         /* 0x0000 0000 */ /* forcibly disconnect remote users from server when logon hours expire*/
540
541 } SAM_UNK_INFO_3;
542
543 typedef struct sam_unknown_info_6_info
544 {
545         uint32 unknown_0; /* 0x0000 0000 */
546
547         uint32 ptr_0;     /* pointer to unknown structure */
548         uint8  padding[12]; /* 12 bytes zeros */
549
550 } SAM_UNK_INFO_6;
551
552 typedef struct sam_unknown_info_7_info
553 {
554         uint16 server_role;
555
556 } SAM_UNK_INFO_7;
557
558 typedef struct sam_unknown_info_8_info
559 {
560         UINT64_S seq_num;
561         NTTIME domain_create_time;
562
563 } SAM_UNK_INFO_8;
564
565 typedef struct sam_unknown_info_12_inf
566 {
567         NTTIME duration;
568         NTTIME reset_count;
569         uint16 bad_attempt_lockout;
570
571 } SAM_UNK_INFO_12;
572
573 typedef struct sam_unknown_info_5_inf
574 {
575         UNIHDR hdr_server; /* server name unicode header */
576         UNISTR2 uni_server; /* server name unicode string */
577
578 } SAM_UNK_INFO_5;
579
580 typedef struct sam_unknown_info_2_inf
581 {
582         NTTIME logout; /* whether users are forcibly disconnected when logon hours expire */
583         UNIHDR hdr_comment; /* comment according to samba4 idl */
584         UNIHDR hdr_domain; /* domain name unicode header */
585         UNIHDR hdr_server; /* server name unicode header */
586
587         /* put all the data in here, at the moment, including what the above
588            pointer is referring to
589          */
590
591         UINT64_S seq_num;
592         
593         uint32 unknown_4; /* 0x0000 0001 */
594         uint32 server_role;
595         uint32 unknown_6; /* 0x0000 0001 */
596         uint32 num_domain_usrs; /* number of users in domain */
597         uint32 num_domain_grps; /* number of domain groups in domain */
598         uint32 num_local_grps; /* number of local groups in domain */
599
600         uint8 padding[12]; /* 12 bytes zeros */
601
602         UNISTR2 uni_comment; /* comment unicode string */
603         UNISTR2 uni_domain; /* domain name unicode string */
604         UNISTR2 uni_server; /* server name unicode string */
605
606 } SAM_UNK_INFO_2;
607
608 typedef struct sam_unknown_info_1_inf
609 {
610         uint16 min_length_password;
611         uint16 password_history;
612         uint32 password_properties;
613         NTTIME expire;
614         NTTIME min_passwordage;
615
616 } SAM_UNK_INFO_1;
617
618
619 typedef struct sam_unknown_ctr_info
620 {
621         union
622         {
623                 SAM_UNK_INFO_1 inf1;
624                 SAM_UNK_INFO_2 inf2;
625                 SAM_UNK_INFO_3 inf3;
626                 SAM_UNK_INFO_5 inf5;
627                 SAM_UNK_INFO_6 inf6;
628                 SAM_UNK_INFO_7 inf7;
629                 SAM_UNK_INFO_8 inf8;
630                 SAM_UNK_INFO_12 inf12;
631
632         } info;
633
634 } SAM_UNK_CTR;
635
636
637 /* SAMR_R_QUERY_DOMAIN_INFO - */
638 typedef struct r_samr_query_domain_info
639 {
640         uint32 ptr_0;
641         uint16 switch_value; /* same as in query */
642
643         SAM_UNK_CTR *ctr;
644
645         NTSTATUS status;         /* return status */
646
647 } SAMR_R_QUERY_DOMAIN_INFO;
648
649
650 /* SAMR_Q_LOOKUP_DOMAIN - obtain SID for a local domain */
651 typedef struct q_samr_lookup_domain_info
652 {
653         POLICY_HND connect_pol;
654
655         UNIHDR  hdr_domain;
656         UNISTR2 uni_domain;
657
658 } SAMR_Q_LOOKUP_DOMAIN;
659
660
661 /* SAMR_R_LOOKUP_DOMAIN */
662 typedef struct r_samr_lookup_domain_info
663 {
664         uint32   ptr_sid;
665         DOM_SID2 dom_sid;
666
667         NTSTATUS status;
668
669 } SAMR_R_LOOKUP_DOMAIN;
670
671
672 /****************************************************************************
673 SAMR_Q_OPEN_DOMAIN - unknown_0 values seen associated with SIDs:
674
675 0x0000 03f1 and a specific   domain sid - S-1-5-21-44c01ca6-797e5c3d-33f83fd0
676 0x0000 0200 and a specific   domain sid - S-1-5-21-44c01ca6-797e5c3d-33f83fd0
677 *****************************************************************************/
678
679 /* SAMR_Q_OPEN_DOMAIN */
680 typedef struct q_samr_open_domain_info
681 {
682         POLICY_HND pol;   /* policy handle */
683         uint32 flags;               /* 0x2000 0000; 0x0000 0211; 0x0000 0280; 0x0000 0200 - flags? */
684         DOM_SID2 dom_sid;         /* domain SID */
685
686 } SAMR_Q_OPEN_DOMAIN;
687
688
689 /* SAMR_R_OPEN_DOMAIN - probably an open */
690 typedef struct r_samr_open_domain_info
691 {
692         POLICY_HND domain_pol; /* policy handle associated with the SID */
693         NTSTATUS status;         /* return status */
694
695 } SAMR_R_OPEN_DOMAIN;
696
697 #define MAX_SAM_ENTRIES_W2K 0x400
698 #define MAX_SAM_ENTRIES_W95 50
699 /* The following should be the greater of the preceeding two. */
700 #define MAX_SAM_ENTRIES MAX_SAM_ENTRIES_W2K
701
702 typedef struct samr_entry_info
703 {
704         uint32 rid;
705         UNIHDR hdr_name;
706
707 } SAM_ENTRY;
708
709
710 /* SAMR_Q_ENUM_DOMAINS - SAM rids and names */
711 typedef struct q_samr_enum_domains_info
712 {
713         POLICY_HND pol;     /* policy handle */
714
715         uint32 start_idx;   /* enumeration handle */
716         uint32 max_size;    /* 0x0000 ffff */
717
718 } SAMR_Q_ENUM_DOMAINS;
719
720 /* SAMR_R_ENUM_DOMAINS - SAM rids and Domain names */
721 typedef struct r_samr_enum_domains_info
722 {
723         uint32 next_idx;     /* next starting index required for enum */
724         uint32 ptr_entries1;  
725
726         uint32 num_entries2;
727         uint32 ptr_entries2;
728
729         uint32 num_entries3;
730
731         SAM_ENTRY *sam;
732         UNISTR2 *uni_dom_name;
733
734         uint32 num_entries4;
735
736         NTSTATUS status;
737
738 } SAMR_R_ENUM_DOMAINS;
739
740 /* SAMR_Q_ENUM_DOM_USERS - SAM rids and names */
741 typedef struct q_samr_enum_dom_users_info
742 {
743         POLICY_HND pol;          /* policy handle */
744
745         uint32 start_idx;   /* number of values (0 indicates unlimited?) */
746         uint32 acb_mask;          /* 0x0000 indicates all */
747
748         uint32 max_size;              /* 0x0000 ffff */
749
750 } SAMR_Q_ENUM_DOM_USERS;
751
752
753 /* SAMR_R_ENUM_DOM_USERS - SAM rids and names */
754 typedef struct r_samr_enum_dom_users_info
755 {
756         uint32 next_idx;     /* next starting index required for enum */
757         uint32 ptr_entries1;  
758
759         uint32 num_entries2;
760         uint32 ptr_entries2;
761
762         uint32 num_entries3;
763
764         SAM_ENTRY *sam;
765         UNISTR2 *uni_acct_name;
766
767         uint32 num_entries4;
768
769         NTSTATUS status;
770
771 } SAMR_R_ENUM_DOM_USERS;
772
773
774 /* SAMR_Q_ENUM_DOM_GROUPS - SAM rids and names */
775 typedef struct q_samr_enum_dom_groups_info
776 {
777         POLICY_HND pol;          /* policy handle */
778
779         /* this is possibly an enumeration context handle... */
780         uint32 start_idx;         /* 0x0000 0000 */
781
782         uint32 max_size;              /* 0x0000 ffff */
783
784 } SAMR_Q_ENUM_DOM_GROUPS;
785
786
787 /* SAMR_R_ENUM_DOM_GROUPS - SAM rids and names */
788 typedef struct r_samr_enum_dom_groups_info
789 {
790         uint32 next_idx;
791         uint32 ptr_entries1;
792
793         uint32 num_entries2;
794         uint32 ptr_entries2;
795
796         uint32 num_entries3;
797
798         SAM_ENTRY *sam;
799         UNISTR2 *uni_grp_name;
800
801         uint32 num_entries4;
802
803         NTSTATUS status;
804
805 } SAMR_R_ENUM_DOM_GROUPS;
806
807
808 /* SAMR_Q_ENUM_DOM_ALIASES - SAM rids and names */
809 typedef struct q_samr_enum_dom_aliases_info
810 {
811         POLICY_HND pol;          /* policy handle */
812
813         /* this is possibly an enumeration context handle... */
814         uint32 start_idx;         /* 0x0000 0000 */
815
816         uint32 max_size;              /* 0x0000 ffff */
817
818 } SAMR_Q_ENUM_DOM_ALIASES;
819
820
821 /* SAMR_R_ENUM_DOM_ALIASES - SAM rids and names */
822 typedef struct r_samr_enum_dom_aliases_info
823 {
824         uint32 next_idx;
825         uint32 ptr_entries1;
826
827         uint32 num_entries2;
828         uint32 ptr_entries2;
829
830         uint32 num_entries3;
831
832         SAM_ENTRY *sam;
833         UNISTR2 *uni_grp_name;
834
835         uint32 num_entries4;
836
837         NTSTATUS status;
838
839 } SAMR_R_ENUM_DOM_ALIASES;
840
841
842 /* -- Level 1 Display Info - User Information -- */
843
844 typedef struct samr_entry_info1
845 {
846         uint32 user_idx;
847
848         uint32 rid_user;
849         uint32 acb_info;
850
851         UNIHDR hdr_acct_name;
852         UNIHDR hdr_user_name;
853         UNIHDR hdr_user_desc;
854
855 } SAM_ENTRY1;
856
857 typedef struct samr_str_entry_info1
858 {
859         UNISTR2 uni_acct_name;
860         UNISTR2 uni_full_name;
861         UNISTR2 uni_acct_desc;
862
863 } SAM_STR1;
864
865 typedef struct sam_entry_info_1
866 {
867         SAM_ENTRY1 *sam;
868         SAM_STR1   *str;
869
870 } SAM_DISPINFO_1;
871
872
873 /* -- Level 2 Display Info - Trust Account Information -- */
874
875 typedef struct samr_entry_info2
876 {
877         uint32 user_idx;
878
879         uint32 rid_user;
880         uint32 acb_info;
881
882         UNIHDR hdr_srv_name;
883         UNIHDR hdr_srv_desc;
884
885 } SAM_ENTRY2;
886
887 typedef struct samr_str_entry_info2
888 {
889         UNISTR2 uni_srv_name;
890         UNISTR2 uni_srv_desc;
891
892 } SAM_STR2;
893
894 typedef struct sam_entry_info_2
895 {
896         SAM_ENTRY2 *sam;
897         SAM_STR2   *str;
898
899 } SAM_DISPINFO_2;
900
901
902 /* -- Level 3 Display Info - Domain Group Information -- */
903
904 typedef struct samr_entry_info3
905 {
906         uint32 grp_idx;
907
908         uint32 rid_grp;
909         uint32 attr;     /* SE_GROUP_xxx, usually 7 */
910
911         UNIHDR hdr_grp_name;
912         UNIHDR hdr_grp_desc;
913
914 } SAM_ENTRY3;
915
916 typedef struct samr_str_entry_info3
917 {
918         UNISTR2 uni_grp_name;
919         UNISTR2 uni_grp_desc;
920
921 } SAM_STR3;
922
923 typedef struct sam_entry_info_3
924 {
925         SAM_ENTRY3 *sam;
926         SAM_STR3   *str;
927
928 } SAM_DISPINFO_3;
929
930
931 /* -- Level 4 Display Info - User List (ASCII) -- */
932
933 typedef struct samr_entry_info4
934 {
935         uint32 user_idx;
936         STRHDR hdr_acct_name;
937
938 } SAM_ENTRY4;
939
940 typedef struct samr_str_entry_info4
941 {
942         STRING2 acct_name;
943
944 } SAM_STR4;
945
946 typedef struct sam_entry_info_4
947 {
948         SAM_ENTRY4 *sam;
949         SAM_STR4   *str;
950
951 } SAM_DISPINFO_4;
952
953
954 /* -- Level 5 Display Info - Group List (ASCII) -- */
955
956 typedef struct samr_entry_info5
957 {
958         uint32 grp_idx;
959         STRHDR hdr_grp_name;
960
961 } SAM_ENTRY5;
962
963 typedef struct samr_str_entry_info5
964 {
965         STRING2 grp_name;
966
967 } SAM_STR5;
968
969 typedef struct sam_entry_info_5
970 {
971         SAM_ENTRY5 *sam;
972         SAM_STR5   *str;
973
974 } SAM_DISPINFO_5;
975
976
977 typedef struct sam_dispinfo_ctr_info
978 {
979         union
980         {
981                 SAM_DISPINFO_1 *info1; /* users/names/descriptions */
982                 SAM_DISPINFO_2 *info2; /* trust accounts */
983                 SAM_DISPINFO_3 *info3; /* domain groups/descriptions */
984                 SAM_DISPINFO_4 *info4; /* user list (ASCII) - used by Win95 */
985                 SAM_DISPINFO_5 *info5; /* group list (ASCII) */
986                 void       *info; /* allows assignment without typecasting, */
987
988         } sam;
989
990 } SAM_DISPINFO_CTR;
991
992
993 /* SAMR_Q_QUERY_DISPINFO - SAM rids, names and descriptions */
994 typedef struct q_samr_query_disp_info
995 {
996         POLICY_HND domain_pol;
997
998         uint16 switch_level;    /* see SAM_DISPINFO_CTR above */
999         /* align */
1000
1001         uint32 start_idx;       /* start enumeration index */
1002         uint32 max_entries;     /* maximum number of entries to return */
1003         uint32 max_size;        /* recommended data size; if exceeded server
1004                                    should return STATUS_MORE_ENTRIES */
1005
1006 } SAMR_Q_QUERY_DISPINFO;
1007
1008
1009 /* SAMR_R_QUERY_DISPINFO  */
1010 typedef struct r_samr_query_dispinfo_info
1011 {
1012         uint32 total_size;     /* total data size for all matching entries
1013                                   (0 = uncalculated) */
1014         uint32 data_size;      /* actual data size returned = size of SAM_ENTRY
1015                                   structures + total length of strings */
1016
1017         uint16 switch_level;   /* see SAM_DISPINFO_CTR above */
1018         /* align */
1019
1020         uint32 num_entries;    /* number of entries returned */
1021         uint32 ptr_entries;
1022         uint32 num_entries2;
1023
1024         SAM_DISPINFO_CTR *ctr;
1025
1026         NTSTATUS status;
1027
1028 } SAMR_R_QUERY_DISPINFO;
1029
1030
1031 /* SAMR_Q_DELETE_DOM_GROUP - delete domain group */
1032 typedef struct q_samr_delete_dom_group_info
1033 {
1034     POLICY_HND group_pol;          /* policy handle */
1035
1036 } SAMR_Q_DELETE_DOM_GROUP;
1037
1038
1039 /* SAMR_R_DELETE_DOM_GROUP - delete domain group */
1040 typedef struct r_samr_delete_dom_group_info
1041 {
1042         POLICY_HND pol;       /* policy handle */
1043         NTSTATUS status;        /* return status */
1044
1045 } SAMR_R_DELETE_DOM_GROUP;
1046
1047
1048 /* SAMR_Q_CREATE_DOM_GROUP - SAM create group */
1049 typedef struct q_samr_create_dom_group_info
1050 {
1051         POLICY_HND pol;        /* policy handle */
1052
1053         UNIHDR hdr_acct_desc;
1054         UNISTR2 uni_acct_desc;
1055
1056         uint32 access_mask;    
1057
1058 } SAMR_Q_CREATE_DOM_GROUP;
1059
1060 /* SAMR_R_CREATE_DOM_GROUP - SAM create group */
1061 typedef struct r_samr_create_dom_group_info
1062 {
1063         POLICY_HND pol;        /* policy handle */
1064
1065         uint32 rid;    
1066         NTSTATUS status;    
1067
1068 } SAMR_R_CREATE_DOM_GROUP;
1069
1070 /* SAMR_Q_QUERY_GROUPINFO - SAM Group Info */
1071 typedef struct q_samr_query_group_info
1072 {
1073         POLICY_HND pol;        /* policy handle */
1074
1075         uint16 switch_level;    /* 0x0001 seen */
1076
1077 } SAMR_Q_QUERY_GROUPINFO;
1078
1079 typedef struct samr_group_info1
1080 {
1081         UNIHDR hdr_acct_name;
1082
1083         uint32 group_attr; /* 0x0000 0003 - group attribute */
1084         uint32 num_members; /* 0x0000 0001 - number of group members? */
1085
1086         UNIHDR hdr_acct_desc;
1087
1088         UNISTR2 uni_acct_name;
1089         UNISTR2 uni_acct_desc;
1090
1091 } GROUP_INFO1;
1092
1093 typedef struct samr_group_info2
1094 {
1095         uint16 level;
1096         UNIHDR hdr_acct_name;
1097         UNISTR2 uni_acct_name;
1098
1099 } GROUP_INFO2;
1100
1101 typedef struct samr_group_info3
1102 {
1103         uint32 group_attr; /* 0x0000 0003 - group attribute */
1104
1105 } GROUP_INFO3;
1106
1107 typedef struct samr_group_info4
1108 {
1109         uint16 level;
1110         UNIHDR hdr_acct_desc;
1111         UNISTR2 uni_acct_desc;
1112
1113 } GROUP_INFO4;
1114
1115 /* GROUP_INFO_CTR */
1116 typedef struct group_info_ctr
1117 {
1118         uint16 switch_value1;
1119
1120         union
1121         {
1122                 GROUP_INFO1 info1;
1123                 GROUP_INFO2 info2;
1124                 GROUP_INFO3 info3;
1125                 GROUP_INFO4 info4;
1126
1127         } group;
1128
1129 } GROUP_INFO_CTR;
1130
1131 /* SAMR_R_QUERY_GROUPINFO - SAM Group Info */
1132 typedef struct r_samr_query_groupinfo_info
1133 {
1134         uint32 ptr;        
1135         GROUP_INFO_CTR *ctr;
1136
1137         NTSTATUS status;
1138
1139 } SAMR_R_QUERY_GROUPINFO;
1140
1141
1142 /* SAMR_Q_SET_GROUPINFO - SAM Group Info */
1143 typedef struct q_samr_set_group_info
1144 {
1145         POLICY_HND pol;        /* policy handle */
1146         GROUP_INFO_CTR *ctr;
1147
1148 } SAMR_Q_SET_GROUPINFO;
1149
1150 /* SAMR_R_SET_GROUPINFO - SAM Group Info */
1151 typedef struct r_samr_set_group_info
1152 {
1153         NTSTATUS status;
1154
1155 } SAMR_R_SET_GROUPINFO;
1156
1157
1158 /* SAMR_Q_DELETE_DOM_ALIAS - delete domain alias */
1159 typedef struct q_samr_delete_dom_alias_info
1160 {
1161     POLICY_HND alias_pol;          /* policy handle */
1162
1163 } SAMR_Q_DELETE_DOM_ALIAS;
1164
1165
1166 /* SAMR_R_DELETE_DOM_ALIAS - delete domain alias */
1167 typedef struct r_samr_delete_dom_alias_info
1168 {
1169         POLICY_HND pol;       /* policy handle */
1170         NTSTATUS status;        /* return status */
1171
1172 } SAMR_R_DELETE_DOM_ALIAS;
1173
1174
1175 /* SAMR_Q_CREATE_DOM_ALIAS - SAM create alias */
1176 typedef struct q_samr_create_dom_alias_info
1177 {
1178         POLICY_HND dom_pol;        /* policy handle */
1179
1180         UNIHDR hdr_acct_desc;
1181         UNISTR2 uni_acct_desc;
1182
1183         uint32 access_mask;    /* 0x001f000f */
1184
1185 } SAMR_Q_CREATE_DOM_ALIAS;
1186
1187 /* SAMR_R_CREATE_DOM_ALIAS - SAM create alias */
1188 typedef struct r_samr_create_dom_alias_info
1189 {
1190         POLICY_HND alias_pol;        /* policy handle */
1191
1192         uint32 rid;    
1193         NTSTATUS status;    
1194
1195 } SAMR_R_CREATE_DOM_ALIAS;
1196
1197
1198 /********************************************************/
1199
1200 typedef struct {
1201         UNISTR4 name;
1202         UNISTR4 description;
1203         uint32 num_member;
1204 } ALIAS_INFO1;
1205
1206 typedef struct {
1207         UNISTR4 name;
1208 } ALIAS_INFO2;
1209
1210 typedef struct {
1211         UNISTR4 description;
1212 } ALIAS_INFO3;
1213
1214 typedef struct {
1215         POLICY_HND pol;        /* policy handle */
1216         uint16 level;    /* 0x0003 seen */
1217 } SAMR_Q_QUERY_ALIASINFO;
1218
1219 typedef struct {
1220         uint16 level;
1221         union {
1222                 ALIAS_INFO1 info1;
1223                 ALIAS_INFO2 info2;
1224                 ALIAS_INFO3 info3;
1225         } alias;
1226 } ALIAS_INFO_CTR;
1227
1228 typedef struct {
1229         ALIAS_INFO_CTR *ctr;
1230         NTSTATUS status;
1231 } SAMR_R_QUERY_ALIASINFO;
1232
1233
1234 /********************************************************/
1235
1236 typedef struct {
1237         POLICY_HND alias_pol;        /* policy handle */
1238         ALIAS_INFO_CTR ctr;
1239 } SAMR_Q_SET_ALIASINFO;
1240
1241 typedef struct {
1242         NTSTATUS status;
1243 } SAMR_R_SET_ALIASINFO;
1244
1245
1246 /********************************************************/
1247
1248 /* SAMR_Q_QUERY_USERGROUPS - */
1249 typedef struct q_samr_query_usergroup_info
1250 {
1251         POLICY_HND pol;          /* policy handle associated with unknown id */
1252
1253 } SAMR_Q_QUERY_USERGROUPS;
1254
1255 /* SAMR_R_QUERY_USERGROUPS - probably a get sam info */
1256 typedef struct r_samr_query_usergroup_info
1257 {
1258         uint32 ptr_0;            /* pointer */
1259         uint32 num_entries;      /* number of RID groups */
1260         uint32 ptr_1;            /* pointer */
1261         uint32 num_entries2;     /* number of RID groups */
1262
1263         DOM_GID *gid; /* group info */
1264
1265         NTSTATUS status;         /* return status */
1266
1267 } SAMR_R_QUERY_USERGROUPS;
1268
1269 /* SAM_USERINFO_CTR - sam user info */
1270 typedef struct sam_userinfo_ctr_info
1271 {
1272         uint16 switch_value;      
1273
1274         union
1275         {
1276                 SAM_USER_INFO_7  *id7;
1277                 SAM_USER_INFO_9  *id9;
1278                 SAM_USER_INFO_16 *id16;
1279                 SAM_USER_INFO_17 *id17;
1280                 SAM_USER_INFO_18 *id18;
1281                 SAM_USER_INFO_20 *id20;
1282                 SAM_USER_INFO_21 *id21;
1283                 SAM_USER_INFO_23 *id23;
1284                 SAM_USER_INFO_24 *id24;
1285                 SAM_USER_INFO_25 *id25;
1286                 SAM_USER_INFO_26 *id26;
1287                 void* id; /* to make typecasting easy */
1288
1289         } info;
1290
1291 } SAM_USERINFO_CTR;
1292
1293
1294 /* SAMR_Q_SET_USERINFO2 - set sam info */
1295 typedef struct q_samr_set_user_info2
1296 {
1297         POLICY_HND pol;          /* policy handle associated with user */
1298         uint16 switch_value;      /* 0x0010 */
1299
1300         SAM_USERINFO_CTR *ctr;
1301
1302 } SAMR_Q_SET_USERINFO2;
1303
1304 /* SAMR_R_SET_USERINFO2 - set sam info */
1305 typedef struct r_samr_set_user_info2
1306 {
1307         NTSTATUS status;         /* return status */
1308
1309 } SAMR_R_SET_USERINFO2;
1310
1311 /* SAMR_Q_SET_USERINFO - set sam info */
1312 typedef struct q_samr_set_user_info
1313 {
1314         POLICY_HND pol;          /* policy handle associated with user */
1315         uint16 switch_value;
1316         SAM_USERINFO_CTR *ctr;
1317
1318 } SAMR_Q_SET_USERINFO;
1319
1320 /* SAMR_R_SET_USERINFO - set sam info */
1321 typedef struct r_samr_set_user_info
1322 {
1323         NTSTATUS status;         /* return status */
1324
1325 } SAMR_R_SET_USERINFO;
1326
1327
1328 /* SAMR_Q_QUERY_USERINFO - probably a get sam info */
1329 typedef struct q_samr_query_user_info
1330 {
1331         POLICY_HND pol;          /* policy handle associated with unknown id */
1332         uint16 switch_value;         /* 0x0015, 0x0011 or 0x0010 - 16 bit unknown */
1333
1334 } SAMR_Q_QUERY_USERINFO;
1335
1336 /* SAMR_R_QUERY_USERINFO - probably a get sam info */
1337 typedef struct r_samr_query_user_info
1338 {
1339         uint32 ptr;            /* pointer */
1340         SAM_USERINFO_CTR *ctr;
1341
1342         NTSTATUS status;         /* return status */
1343
1344 } SAMR_R_QUERY_USERINFO;
1345
1346
1347 /****************************************************************************
1348 SAMR_Q_QUERY_USERALIASES - do a conversion from name to RID.
1349
1350 the policy handle allocated by an "samr open secret" call is associated
1351 with a SID.  this policy handle is what is queried here, *not* the SID
1352 itself.  the response to the lookup rids is relative to this SID.
1353 *****************************************************************************/
1354 /* SAMR_Q_QUERY_USERALIASES */
1355 typedef struct q_samr_query_useraliases_info
1356 {
1357         POLICY_HND pol;       /* policy handle */
1358
1359         uint32 num_sids1;      /* number of rids being looked up */
1360         uint32 ptr;            /* buffer pointer */
1361         uint32 num_sids2;      /* number of rids being looked up */
1362
1363         uint32   *ptr_sid; /* pointers to sids to be looked up */
1364         DOM_SID2 *sid    ; /* sids to be looked up. */
1365
1366 } SAMR_Q_QUERY_USERALIASES;
1367
1368
1369 /* SAMR_R_QUERY_USERALIASES */
1370 typedef struct r_samr_query_useraliases_info
1371 {
1372         uint32 num_entries;
1373         uint32 ptr; /* undocumented buffer pointer */
1374
1375         uint32 num_entries2; 
1376         uint32 *rid; /* domain RIDs being looked up */
1377
1378         NTSTATUS status; /* return code */
1379
1380 } SAMR_R_QUERY_USERALIASES;
1381
1382
1383 /****************************************************************************
1384 SAMR_Q_LOOKUP_NAMES - do a conversion from Names to RIDs+types.
1385 *****************************************************************************/
1386 /* SAMR_Q_LOOKUP_NAMES */
1387 typedef struct q_samr_lookup_names_info
1388 {
1389         POLICY_HND pol;       /* policy handle */
1390
1391         uint32 num_names1;      /* number of names being looked up */
1392         uint32 flags;           /* 0x0000 03e8 - unknown */
1393         uint32 ptr;            /* 0x0000 0000 - 32 bit unknown */
1394         uint32 num_names2;      /* number of names being looked up */
1395
1396         UNIHDR  *hdr_name; /* unicode account name header */
1397         UNISTR2 *uni_name; /* unicode account name string */
1398
1399 } SAMR_Q_LOOKUP_NAMES;
1400
1401
1402 /* SAMR_R_LOOKUP_NAMES */
1403 typedef struct r_samr_lookup_names_info
1404 {
1405         uint32 num_rids1;      /* number of aliases being looked up */
1406         uint32 ptr_rids;       /* pointer to aliases */
1407         uint32 num_rids2;      /* number of aliases being looked up */
1408
1409         uint32 *rids; /* rids */
1410
1411         uint32 num_types1;      /* number of users in aliases being looked up */
1412         uint32 ptr_types;       /* pointer to users in aliases */
1413         uint32 num_types2;      /* number of users in aliases being looked up */
1414
1415         uint32 *types; /* SID_ENUM type */
1416
1417         NTSTATUS status; /* return code */
1418
1419 } SAMR_R_LOOKUP_NAMES;
1420
1421
1422 /****************************************************************************
1423 SAMR_Q_LOOKUP_RIDS - do a conversion from RID groups to something.
1424
1425 called to resolve domain RID groups.
1426 *****************************************************************************/
1427 /* SAMR_Q_LOOKUP_RIDS */
1428 typedef struct q_samr_lookup_rids_info
1429 {
1430         POLICY_HND pol;       /* policy handle */
1431
1432         uint32 num_rids1;      /* number of rids being looked up */
1433         uint32 flags;          /* 0x0000 03e8 - unknown */
1434         uint32 ptr;            /* 0x0000 0000 - 32 bit unknown */
1435         uint32 num_rids2;      /* number of rids being looked up */
1436
1437         uint32 *rid; /* domain RIDs being looked up */
1438
1439 } SAMR_Q_LOOKUP_RIDS;
1440
1441
1442 /****************************************************************************
1443 SAMR_R_LOOKUP_RIDS - do a conversion from group RID to names
1444
1445 *****************************************************************************/
1446 /* SAMR_R_LOOKUP_RIDS */
1447 typedef struct r_samr_lookup_rids_info
1448 {
1449         uint32 num_names1;      /* number of aliases being looked up */
1450         uint32 ptr_names;       /* pointer to aliases */
1451         uint32 num_names2;      /* number of aliases being looked up */
1452
1453         UNIHDR  *hdr_name; /* unicode account name header */
1454         UNISTR2 *uni_name; /* unicode account name string */
1455
1456         uint32 num_types1;      /* number of users in aliases being looked up */
1457         uint32 ptr_types;       /* pointer to users in aliases */
1458         uint32 num_types2;      /* number of users in aliases being looked up */
1459
1460         uint32 *type; /* SID_ENUM type */
1461
1462         NTSTATUS status;
1463
1464 } SAMR_R_LOOKUP_RIDS;
1465
1466
1467 /* SAMR_Q_OPEN_USER - probably an open */
1468 typedef struct q_samr_open_user_info
1469 {
1470         POLICY_HND domain_pol;       /* policy handle */
1471         uint32 access_mask;     /* 32 bit unknown - 0x02011b */
1472         uint32 user_rid;      /* user RID */
1473
1474 } SAMR_Q_OPEN_USER;
1475
1476
1477 /* SAMR_R_OPEN_USER - probably an open */
1478 typedef struct r_samr_open_user_info
1479 {
1480         POLICY_HND user_pol;       /* policy handle associated with unknown id */
1481         NTSTATUS status;         /* return status */
1482
1483 } SAMR_R_OPEN_USER;
1484
1485
1486 /* SAMR_Q_CREATE_USER - probably a create */
1487 typedef struct q_samr_create_user_info
1488 {
1489         POLICY_HND domain_pol;       /* policy handle */
1490
1491         UNIHDR  hdr_name;       /* unicode account name header */
1492         UNISTR2 uni_name;       /* unicode account name */
1493
1494         uint32 acb_info;      /* account control info */
1495         uint32 access_mask;     /* 0xe005 00b0 */
1496
1497 } SAMR_Q_CREATE_USER;
1498
1499
1500 /* SAMR_R_CREATE_USER - probably a create */
1501 typedef struct r_samr_create_user_info
1502 {
1503         POLICY_HND user_pol;       /* policy handle associated with user */
1504
1505         uint32 access_granted;
1506         uint32 user_rid;      /* user RID */
1507         NTSTATUS status;         /* return status */
1508
1509 } SAMR_R_CREATE_USER;
1510
1511
1512 /* SAMR_Q_DELETE_DOM_USER - delete domain user */
1513 typedef struct q_samr_delete_dom_user_info
1514 {
1515     POLICY_HND user_pol;          /* policy handle */
1516
1517 } SAMR_Q_DELETE_DOM_USER;
1518
1519
1520 /* SAMR_R_DELETE_DOM_USER - delete domain user */
1521 typedef struct r_samr_delete_dom_user_info
1522 {
1523         POLICY_HND pol;       /* policy handle */
1524         NTSTATUS status;        /* return status */
1525
1526 } SAMR_R_DELETE_DOM_USER;
1527
1528
1529 /* SAMR_Q_QUERY_GROUPMEM - query group members */
1530 typedef struct q_samr_query_groupmem_info
1531 {
1532         POLICY_HND group_pol;        /* policy handle */
1533
1534 } SAMR_Q_QUERY_GROUPMEM;
1535
1536
1537 /* SAMR_R_QUERY_GROUPMEM - query group members */
1538 typedef struct r_samr_query_groupmem_info
1539 {
1540         uint32 ptr;
1541         uint32 num_entries;
1542
1543         uint32 ptr_rids;
1544         uint32 ptr_attrs;
1545
1546         uint32 num_rids;
1547         uint32 *rid;
1548
1549         uint32 num_attrs;
1550         uint32 *attr;
1551
1552         NTSTATUS status;
1553
1554 } SAMR_R_QUERY_GROUPMEM;
1555
1556
1557 /* SAMR_Q_DEL_GROUPMEM - probably an del group member */
1558 typedef struct q_samr_del_group_mem_info
1559 {
1560         POLICY_HND pol;       /* policy handle */
1561         uint32 rid;         /* rid */
1562
1563 } SAMR_Q_DEL_GROUPMEM;
1564
1565
1566 /* SAMR_R_DEL_GROUPMEM - probably an del group member */
1567 typedef struct r_samr_del_group_mem_info
1568 {
1569         NTSTATUS status;         /* return status */
1570
1571 } SAMR_R_DEL_GROUPMEM;
1572
1573
1574 /* SAMR_Q_ADD_GROUPMEM - probably an add group member */
1575 typedef struct q_samr_add_group_mem_info
1576 {
1577         POLICY_HND pol;       /* policy handle */
1578
1579         uint32 rid;         /* rid */
1580         uint32 unknown;     /* 0x0000 0005 */
1581
1582 } SAMR_Q_ADD_GROUPMEM;
1583
1584
1585 /* SAMR_R_ADD_GROUPMEM - probably an add group member */
1586 typedef struct r_samr_add_group_mem_info
1587 {
1588         NTSTATUS status;         /* return status */
1589
1590 } SAMR_R_ADD_GROUPMEM;
1591
1592
1593 /* SAMR_Q_OPEN_GROUP - probably an open */
1594 typedef struct q_samr_open_group_info
1595 {
1596         POLICY_HND domain_pol;       /* policy handle */
1597         uint32 access_mask;         /* 0x0000 0001, 0x0000 0003, 0x0000 001f */
1598         uint32 rid_group;        /* rid */
1599
1600 } SAMR_Q_OPEN_GROUP;
1601
1602
1603 /* SAMR_R_OPEN_GROUP - probably an open */
1604 typedef struct r_samr_open_group_info
1605 {
1606         POLICY_HND pol;       /* policy handle */
1607         NTSTATUS status;         /* return status */
1608
1609 } SAMR_R_OPEN_GROUP;
1610
1611
1612 /* SAMR_Q_QUERY_ALIASMEM - query alias members */
1613 typedef struct q_samr_query_aliasmem_info
1614 {
1615         POLICY_HND alias_pol;        /* policy handle */
1616
1617 } SAMR_Q_QUERY_ALIASMEM;
1618
1619
1620 /* SAMR_R_QUERY_ALIASMEM - query alias members */
1621 typedef struct r_samr_query_aliasmem_info
1622 {
1623         uint32 num_sids;
1624         uint32 ptr;
1625         uint32 num_sids1;
1626
1627         DOM_SID2 *sid;
1628
1629         NTSTATUS status;
1630
1631 } SAMR_R_QUERY_ALIASMEM;
1632
1633
1634 /* SAMR_Q_ADD_ALIASMEM - add alias member */
1635 typedef struct q_samr_add_alias_mem_info
1636 {
1637         POLICY_HND alias_pol;       /* policy handle */
1638
1639         DOM_SID2 sid; /* member sid to be added to the alias */
1640
1641 } SAMR_Q_ADD_ALIASMEM;
1642
1643
1644 /* SAMR_R_ADD_ALIASMEM - add alias member */
1645 typedef struct r_samr_add_alias_mem_info
1646 {
1647         NTSTATUS status;         /* return status */
1648
1649 } SAMR_R_ADD_ALIASMEM;
1650
1651
1652 /* SAMR_Q_DEL_ALIASMEM - add an add alias member */
1653 typedef struct q_samr_del_alias_mem_info
1654 {
1655         POLICY_HND alias_pol;       /* policy handle */
1656
1657         DOM_SID2 sid; /* member sid to be added to alias */
1658
1659 } SAMR_Q_DEL_ALIASMEM;
1660
1661
1662 /* SAMR_R_DEL_ALIASMEM - delete alias member */
1663 typedef struct r_samr_del_alias_mem_info
1664 {
1665         NTSTATUS status;         /* return status */
1666
1667 } SAMR_R_DEL_ALIASMEM;
1668
1669
1670
1671 /* SAMR_Q_OPEN_ALIAS - probably an open */
1672 typedef struct q_samr_open_alias_info
1673 {
1674         POLICY_HND dom_pol;
1675
1676         uint32 access_mask;         
1677         uint32 rid_alias;
1678
1679 } SAMR_Q_OPEN_ALIAS;
1680
1681
1682 /* SAMR_R_OPEN_ALIAS - probably an open */
1683 typedef struct r_samr_open_alias_info
1684 {
1685         POLICY_HND pol;       /* policy handle */
1686         NTSTATUS status;         /* return status */
1687
1688 } SAMR_R_OPEN_ALIAS;
1689
1690
1691 /* SAMR_Q_CONNECT_ANON - probably an open */
1692 typedef struct q_samr_connect_anon_info {
1693         uint32 ptr;                  /* ptr? */
1694         uint16 unknown_0;            /* Only pushed if ptr is non-zero. */
1695         uint32 access_mask;
1696 } SAMR_Q_CONNECT_ANON;
1697
1698 /* SAMR_R_CONNECT_ANON - probably an open */
1699 typedef struct r_samr_connect_anon_info
1700 {
1701         POLICY_HND connect_pol;       /* policy handle */
1702         NTSTATUS status;         /* return status */
1703
1704 } SAMR_R_CONNECT_ANON;
1705
1706 /* SAMR_Q_CONNECT - probably an open */
1707 typedef struct q_samr_connect_info
1708 {
1709         uint32 ptr_srv_name;         /* pointer (to server name?) */
1710         UNISTR2 uni_srv_name;        /* unicode server name starting with '\\' */
1711
1712         uint32 access_mask;            
1713
1714 } SAMR_Q_CONNECT;
1715
1716
1717 /* SAMR_R_CONNECT - probably an open */
1718 typedef struct r_samr_connect_info
1719 {
1720         POLICY_HND connect_pol;       /* policy handle */
1721         NTSTATUS status;         /* return status */
1722
1723 } SAMR_R_CONNECT;
1724
1725 /* SAMR_Q_CONNECT4 */
1726 typedef struct q_samr_connect4_info
1727 {
1728         uint32 ptr_srv_name; /* pointer to server name */
1729         UNISTR2 uni_srv_name;
1730
1731         uint32 unk_0; /* possible server name type, 1 for IP num, 2 for name */
1732         uint32 access_mask;
1733 } SAMR_Q_CONNECT4;
1734
1735 /* SAMR_R_CONNECT4 - same format as connect */
1736 typedef struct r_samr_connect_info SAMR_R_CONNECT4;       
1737
1738 /* SAMR_Q_CONNECT5 */
1739 typedef struct q_samr_connect5_info
1740 {
1741         uint32 ptr_srv_name; /* pointer to server name */
1742         UNISTR2 uni_srv_name;
1743         uint32 access_mask;
1744         uint32 level;
1745         /* These following are acutally a level dependent
1746            value. Fudge it for now. JRA */
1747         uint32 info1_unk1;
1748         uint32 info1_unk2;
1749 } SAMR_Q_CONNECT5;
1750
1751 /* SAMR_R_CONNECT5 */
1752 typedef struct r_samr_connect_info5
1753 {
1754         uint32 level;
1755         uint32 info1_unk1;
1756         uint32 info1_unk2;
1757         POLICY_HND connect_pol;       /* policy handle */
1758         NTSTATUS status;         /* return status */
1759
1760 } SAMR_R_CONNECT5;
1761
1762
1763 /* SAMR_Q_GET_DOM_PWINFO */
1764 typedef struct q_samr_get_dom_pwinfo
1765 {
1766         uint32 ptr; 
1767         UNIHDR  hdr_srv_name;
1768         UNISTR2 uni_srv_name;
1769
1770 } SAMR_Q_GET_DOM_PWINFO;
1771
1772 #define DOMAIN_PASSWORD_COMPLEX         0x00000001
1773 #define DOMAIN_PASSWORD_NO_ANON_CHANGE  0x00000002
1774 #define DOMAIN_PASSWORD_NO_CLEAR_CHANGE 0x00000004
1775 #define DOMAIN_LOCKOUT_ADMINS           0x00000008
1776 #define DOMAIN_PASSWORD_STORE_CLEARTEXT 0x00000010
1777 #define DOMAIN_REFUSE_PASSWORD_CHANGE   0x00000020
1778
1779 /* SAMR_R_GET_DOM_PWINFO */
1780 typedef struct r_samr_get_dom_pwinfo
1781 {
1782         uint16 min_pwd_length;
1783         uint32 password_properties;
1784         NTSTATUS status;
1785
1786 } SAMR_R_GET_DOM_PWINFO;
1787
1788 /* SAMR_ENC_PASSWD */
1789 typedef struct enc_passwd_info
1790 {
1791         uint32 ptr;
1792         uint8 pass[516];
1793
1794 } SAMR_ENC_PASSWD;
1795
1796 /* SAMR_ENC_HASH */
1797 typedef struct enc_hash_info
1798 {
1799         uint32 ptr;
1800         uint8 hash[16];
1801
1802 } SAMR_ENC_HASH;
1803
1804 /* SAMR_Q_CHGPASSWD_USER */
1805 typedef struct q_samr_chgpasswd_user_info
1806 {
1807         uint32 ptr_0;
1808
1809         UNIHDR hdr_dest_host; /* server name unicode header */
1810         UNISTR2 uni_dest_host; /* server name unicode string */
1811
1812         UNIHDR hdr_user_name;    /* username unicode string header */
1813         UNISTR2 uni_user_name;    /* username unicode string */
1814
1815         SAMR_ENC_PASSWD nt_newpass;
1816         SAMR_ENC_HASH nt_oldhash;
1817
1818         uint32 unknown; /* 0x0000 0001 */
1819
1820         SAMR_ENC_PASSWD lm_newpass;
1821         SAMR_ENC_HASH lm_oldhash;
1822
1823 } SAMR_Q_CHGPASSWD_USER;
1824
1825 /* SAMR_R_CHGPASSWD_USER */
1826 typedef struct r_samr_chgpasswd_user_info
1827 {
1828         NTSTATUS status; /* 0 == OK, C000006A (NT_STATUS_WRONG_PASSWORD) */
1829
1830 } SAMR_R_CHGPASSWD_USER;
1831
1832 /* SAMR_Q_CHGPASSWD3 */
1833 typedef struct q_samr_chgpasswd_user3
1834 {
1835         uint32 ptr_0;
1836
1837         UNIHDR hdr_dest_host; /* server name unicode header */
1838         UNISTR2 uni_dest_host; /* server name unicode string */
1839
1840         UNIHDR hdr_user_name;    /* username unicode string header */
1841         UNISTR2 uni_user_name;    /* username unicode string */
1842
1843         SAMR_ENC_PASSWD nt_newpass;
1844         SAMR_ENC_HASH nt_oldhash;
1845
1846         uint32 lm_change; /* 0x0000 0001 */
1847
1848         SAMR_ENC_PASSWD lm_newpass;
1849         SAMR_ENC_HASH lm_oldhash;
1850
1851         SAMR_ENC_PASSWD password3;
1852
1853 } SAMR_Q_CHGPASSWD_USER3;
1854
1855 #define REJECT_REASON_OTHER             0x00000000
1856 #define REJECT_REASON_TOO_SHORT         0x00000001
1857 #define REJECT_REASON_IN_HISTORY        0x00000002
1858 #define REJECT_REASON_NOT_COMPLEX       0x00000005
1859
1860 /* SAMR_CHANGE_REJECT */
1861 typedef struct samr_change_reject
1862 {
1863         uint32 reject_reason;
1864         uint32 unknown1;
1865         uint32 unknown2;
1866
1867 } SAMR_CHANGE_REJECT;
1868
1869 /* SAMR_R_CHGPASSWD3 */
1870 typedef struct r_samr_chgpasswd_user3
1871 {
1872         uint32 ptr_info;
1873         uint32 ptr_reject;
1874         SAM_UNK_INFO_1 *info;
1875         SAMR_CHANGE_REJECT *reject;
1876         NTSTATUS status; /* 0 == OK, C000006A (NT_STATUS_WRONG_PASSWORD) */
1877
1878 } SAMR_R_CHGPASSWD_USER3;
1879
1880
1881
1882 /* SAMR_Q_REMOVE_SID_FOREIGN_DOMAIN */
1883 typedef struct q_samr_remove_sid_foreign_domain_info
1884 {
1885         POLICY_HND dom_pol;   /* policy handle */
1886         DOM_SID2 sid;         /* SID */
1887
1888 } SAMR_Q_REMOVE_SID_FOREIGN_DOMAIN;
1889
1890
1891 /* SAMR_R_REMOVE_SID_FOREIGN_DOMAIN */
1892 typedef struct r_samr_remove_sid_foreign_domain_info
1893 {
1894         NTSTATUS status;         /* return status */
1895
1896 } SAMR_R_REMOVE_SID_FOREIGN_DOMAIN;
1897
1898
1899
1900 /* these are from the old rpc_samr.h - they are needed while the merge
1901    is still going on */
1902 #define MAX_SAM_SIDS 15
1903
1904 /* DOM_SID3 - security id */
1905 typedef struct sid_info_3
1906 {
1907         uint16 len; /* length, bytes, including length of len :-) */
1908         /* uint8  pad[2]; */
1909         
1910         DOM_SID sid;
1911
1912 } DOM_SID3;
1913
1914 /* SAMR_Q_QUERY_DOMAIN_INFO2 */
1915 typedef struct q_samr_query_domain_info2
1916 {
1917         POLICY_HND domain_pol;   /* policy handle */
1918         uint16 switch_value;
1919
1920 } SAMR_Q_QUERY_DOMAIN_INFO2;
1921
1922 /* SAMR_R_QUERY_DOMAIN_INFO2 */
1923 typedef struct r_samr_query_domain_info2
1924 {
1925         uint32 ptr_0;
1926         uint16 switch_value;
1927         SAM_UNK_CTR *ctr;
1928         NTSTATUS status;         /* return status */
1929
1930 } SAMR_R_QUERY_DOMAIN_INFO2;
1931
1932 /* SAMR_Q_SET_DOMAIN_INFO */
1933 typedef struct q_samr_set_domain_info
1934 {
1935         POLICY_HND domain_pol;   /* policy handle */
1936         uint16 switch_value0;
1937         uint16 switch_value;
1938         SAM_UNK_CTR *ctr;
1939
1940 } SAMR_Q_SET_DOMAIN_INFO;
1941
1942 /* SAMR_R_SET_DOMAIN_INFO */
1943 typedef struct r_samr_set_domain_info
1944 {
1945         NTSTATUS status;         /* return status */
1946
1947 } SAMR_R_SET_DOMAIN_INFO;
1948
1949 #endif /* _RPC_SAMR_H */