Merge branch 'master' of git://git.samba.org/samba
[ira/wip.git] / source4 / librpc / idl / samr.idl
1 #include "idl_types.h"
2
3 /*
4   samr interface definition
5 */
6 import "misc.idl", "lsa.idl", "security.idl";
7
8 /*
9   Thanks to Todd Sabin for some information from his samr.idl in acltools
10 */
11
12 [ uuid("12345778-1234-abcd-ef00-0123456789ac"),
13   version(1.0),
14   endpoint("ncacn_np:[\\pipe\\samr]","ncacn_ip_tcp:", "ncalrpc:"),
15   pointer_default(unique)
16 ] interface samr
17 {
18         typedef bitmap security_secinfo security_secinfo;
19
20         /* account control (acct_flags) bits */
21         typedef [public,bitmap32bit] bitmap {
22                 ACB_DISABLED                    = 0x00000001,  /* 1 = User account disabled */
23                 ACB_HOMDIRREQ                   = 0x00000002,  /* 1 = Home directory required */
24                 ACB_PWNOTREQ                    = 0x00000004,  /* 1 = User password not required */
25                 ACB_TEMPDUP                     = 0x00000008,  /* 1 = Temporary duplicate account */
26                 ACB_NORMAL                      = 0x00000010,  /* 1 = Normal user account */
27                 ACB_MNS                         = 0x00000020,  /* 1 = MNS logon user account */
28                 ACB_DOMTRUST                    = 0x00000040,  /* 1 = Interdomain trust account */
29                 ACB_WSTRUST                     = 0x00000080,  /* 1 = Workstation trust account */
30                 ACB_SVRTRUST                    = 0x00000100,  /* 1 = Server trust account */
31                 ACB_PWNOEXP                     = 0x00000200,  /* 1 = User password does not expire */
32                 ACB_AUTOLOCK                    = 0x00000400,  /* 1 = Account auto locked */
33                 ACB_ENC_TXT_PWD_ALLOWED         = 0x00000800,  /* 1 = Encryped text password is allowed */
34                 ACB_SMARTCARD_REQUIRED          = 0x00001000,  /* 1 = Smart Card required */
35                 ACB_TRUSTED_FOR_DELEGATION      = 0x00002000,  /* 1 = Trusted for Delegation */
36                 ACB_NOT_DELEGATED               = 0x00004000,  /* 1 = Not delegated */
37                 ACB_USE_DES_KEY_ONLY            = 0x00008000,  /* 1 = Use DES key only */
38                 ACB_DONT_REQUIRE_PREAUTH        = 0x00010000,  /* 1 = Preauth not required */
39                 ACB_PW_EXPIRED                  = 0x00020000,  /* 1 = Password Expired */
40                 ACB_NO_AUTH_DATA_REQD           = 0x00080000   /* 1 = No authorization data required */
41         } samr_AcctFlags;
42
43         typedef [bitmap32bit] bitmap {
44                 SAMR_ACCESS_CONNECT_TO_SERVER   = 0x00000001,
45                 SAMR_ACCESS_SHUTDOWN_SERVER     = 0x00000002,
46                 SAMR_ACCESS_INITIALIZE_SERVER   = 0x00000004,
47                 SAMR_ACCESS_CREATE_DOMAIN       = 0x00000008,
48                 SAMR_ACCESS_ENUM_DOMAINS        = 0x00000010,
49                 SAMR_ACCESS_OPEN_DOMAIN         = 0x00000020
50         } samr_ConnectAccessMask;
51
52         typedef [bitmap32bit] bitmap {
53                 SAMR_USER_ACCESS_GET_NAME_ETC             = 0x00000001,
54                 SAMR_USER_ACCESS_GET_LOCALE               = 0x00000002,
55                 SAMR_USER_ACCESS_SET_LOC_COM              = 0x00000004,
56                 SAMR_USER_ACCESS_GET_LOGONINFO            = 0x00000008,
57                 SAMR_USER_ACCESS_GET_ATTRIBUTES           = 0x00000010,
58                 SAMR_USER_ACCESS_SET_ATTRIBUTES           = 0x00000020,
59                 SAMR_USER_ACCESS_CHANGE_PASSWORD          = 0x00000040,
60                 SAMR_USER_ACCESS_SET_PASSWORD             = 0x00000080,
61                 SAMR_USER_ACCESS_GET_GROUPS               = 0x00000100,
62                 SAMR_USER_ACCESS_GET_GROUP_MEMBERSHIP     = 0x00000200,
63                 SAMR_USER_ACCESS_CHANGE_GROUP_MEMBERSHIP  = 0x00000400
64         } samr_UserAccessMask;
65
66         typedef [bitmap32bit] bitmap {
67                 SAMR_DOMAIN_ACCESS_LOOKUP_INFO_1  = 0x00000001,
68                 SAMR_DOMAIN_ACCESS_SET_INFO_1     = 0x00000002,
69                 SAMR_DOMAIN_ACCESS_LOOKUP_INFO_2  = 0x00000004,
70                 SAMR_DOMAIN_ACCESS_SET_INFO_2     = 0x00000008,
71                 SAMR_DOMAIN_ACCESS_CREATE_USER    = 0x00000010,
72                 SAMR_DOMAIN_ACCESS_CREATE_GROUP   = 0x00000020,
73                 SAMR_DOMAIN_ACCESS_CREATE_ALIAS   = 0x00000040,
74                 SAMR_DOMAIN_ACCESS_LOOKUP_ALIAS   = 0x00000080,
75                 SAMR_DOMAIN_ACCESS_ENUM_ACCOUNTS  = 0x00000100,
76                 SAMR_DOMAIN_ACCESS_OPEN_ACCOUNT   = 0x00000200,
77                 SAMR_DOMAIN_ACCESS_SET_INFO_3     = 0x00000400
78         } samr_DomainAccessMask;
79
80         typedef [bitmap32bit] bitmap {
81                 SAMR_GROUP_ACCESS_LOOKUP_INFO     = 0x00000001,
82                 SAMR_GROUP_ACCESS_SET_INFO        = 0x00000002,
83                 SAMR_GROUP_ACCESS_ADD_MEMBER      = 0x00000004,
84                 SAMR_GROUP_ACCESS_REMOVE_MEMBER   = 0x00000008,
85                 SAMR_GROUP_ACCESS_GET_MEMBERS     = 0x00000010
86         } samr_GroupAccessMask;
87
88         typedef [bitmap32bit] bitmap {
89                 SAMR_ALIAS_ACCESS_ADD_MEMBER      = 0x00000001,
90                 SAMR_ALIAS_ACCESS_REMOVE_MEMBER   = 0x00000002,
91                 SAMR_ALIAS_ACCESS_GET_MEMBERS     = 0x00000004,
92                 SAMR_ALIAS_ACCESS_LOOKUP_INFO     = 0x00000008,
93                 SAMR_ALIAS_ACCESS_SET_INFO        = 0x00000010
94         } samr_AliasAccessMask;
95
96         /******************/
97         /* Function: 0x00 */
98         NTSTATUS samr_Connect (
99                 /* notice the lack of [string] */
100                 [in,unique] uint16 *system_name,
101                 [in]       samr_ConnectAccessMask access_mask,
102                 [out,ref]  policy_handle *connect_handle
103                 );
104
105
106         /******************/
107         /* Function: 0x01 */
108         [public] NTSTATUS samr_Close (
109                 [in,out,ref]  policy_handle *handle
110                 );
111
112         /******************/
113         /* Function: 0x02 */
114
115         NTSTATUS samr_SetSecurity (
116                 [in,ref]          policy_handle *handle,
117                 [in]              security_secinfo sec_info,
118                 [in,ref]          sec_desc_buf *sdbuf
119                 );
120
121         /******************/
122         /* Function: 0x03 */
123
124         NTSTATUS samr_QuerySecurity (
125                 [in,ref]          policy_handle *handle,
126                 [in]              security_secinfo sec_info,
127                 [out,unique]      sec_desc_buf *sdbuf
128                 );
129
130         /******************/
131         /* Function: 0x04 */
132
133         /*
134           shutdown the SAM - once you call this the SAM will be dead
135         */
136         NTSTATUS samr_Shutdown (
137                 [in,ref]   policy_handle *connect_handle
138                 );
139
140         /******************/
141         /* Function: 0x05 */
142         NTSTATUS samr_LookupDomain (
143                 [in,ref]  policy_handle *connect_handle,                
144                 [in,ref]  lsa_String *domain_name,
145                 [out,unique] dom_sid2 *sid
146                 );
147
148
149         /******************/
150         /* Function: 0x06 */
151
152         typedef struct {
153                 uint32 idx;
154                 lsa_String name;
155         } samr_SamEntry;
156
157         typedef struct {
158                 uint32 count;
159                 [size_is(count)] samr_SamEntry *entries;
160         } samr_SamArray;
161
162         NTSTATUS samr_EnumDomains (
163                 [in,ref]      policy_handle *connect_handle,
164                 [in,out,ref]  uint32 *resume_handle,
165                 [in]          uint32 buf_size,
166                 [out,unique]  samr_SamArray *sam,
167                 [out]         uint32 num_entries
168                 );
169
170
171         /************************/
172         /* Function    0x07     */
173         [public] NTSTATUS samr_OpenDomain(
174                 [in,ref]      policy_handle *connect_handle,
175                 [in]          samr_DomainAccessMask access_mask,
176                 [in,ref]      dom_sid2 *sid,
177                 [out,ref]     policy_handle *domain_handle
178                 );
179
180         /************************/
181         /* Function    0x08     */
182         /* server roles */
183         typedef [v1_enum] enum {
184                 SAMR_ROLE_STANDALONE    = 0,
185                 SAMR_ROLE_DOMAIN_MEMBER = 1,
186                 SAMR_ROLE_DOMAIN_BDC    = 2,
187                 SAMR_ROLE_DOMAIN_PDC    = 3
188         } samr_Role;
189
190         /* password properties flags */
191         typedef [public,bitmap32bit] bitmap {
192                 DOMAIN_PASSWORD_COMPLEX         = 0x00000001,
193                 DOMAIN_PASSWORD_NO_ANON_CHANGE  = 0x00000002,
194                 DOMAIN_PASSWORD_NO_CLEAR_CHANGE = 0x00000004,
195                 DOMAIN_PASSWORD_LOCKOUT_ADMINS  = 0x00000008,
196                 DOMAIN_PASSWORD_STORE_CLEARTEXT = 0x00000010,
197                 DOMAIN_REFUSE_PASSWORD_CHANGE   = 0x00000020
198         } samr_PasswordProperties;
199
200         typedef struct {
201                 uint16 min_password_length;
202                 uint16 password_history_length;
203                 samr_PasswordProperties password_properties;
204                 /* yes, these are signed. They are in negative 100ns */
205                 dlong  max_password_age;
206                 dlong  min_password_age;
207         } samr_DomInfo1;
208
209         typedef struct {
210                 NTTIME force_logoff_time;
211                 lsa_String oem_information; /* comment */
212                 lsa_String domain_name;
213                 lsa_String primary; /* PDC name if this is a BDC */
214                 udlong sequence_num;
215                 uint32 unknown2;
216                 samr_Role role;
217                 uint32 unknown3;
218                 uint32 num_users;
219                 uint32 num_groups;
220                 uint32 num_aliases;
221         } samr_DomGeneralInformation;
222
223         typedef struct {
224                 NTTIME force_logoff_time;
225         } samr_DomInfo3;
226
227         typedef struct {
228                 lsa_String oem_information; /* comment */
229         } samr_DomOEMInformation;
230
231         typedef struct {
232                 lsa_String domain_name;
233         } samr_DomInfo5;
234
235         typedef struct {
236                 lsa_String primary;
237         } samr_DomInfo6;
238
239         typedef struct {
240                 samr_Role role;
241         } samr_DomInfo7;
242
243         typedef struct {
244                 hyper sequence_num;
245                 NTTIME domain_create_time;
246         } samr_DomInfo8;
247
248         typedef struct {
249                 uint32 unknown; /* w2k3 returns 1 */
250         } samr_DomInfo9;
251
252         typedef struct {
253                 samr_DomGeneralInformation general;
254                 hyper lockout_duration;
255                 hyper lockout_window;
256                 uint16 lockout_threshold;
257         } samr_DomGeneralInformation2;
258
259         typedef struct {
260                 hyper lockout_duration;
261                 hyper lockout_window;
262                 uint16 lockout_threshold;
263         } samr_DomInfo12;
264
265         typedef struct {
266                 hyper sequence_num;
267                 NTTIME domain_create_time;
268                 uint32 unknown1;
269                 uint32 unknown2;
270         } samr_DomInfo13;
271
272         typedef [switch_type(uint16)] union {
273                 [case(1)] samr_DomInfo1 info1;
274                 [case(2)] samr_DomGeneralInformation general;
275                 [case(3)] samr_DomInfo3 info3;
276                 [case(4)] samr_DomOEMInformation oem;
277                 [case(5)] samr_DomInfo5 info5;
278                 [case(6)] samr_DomInfo6 info6;
279                 [case(7)] samr_DomInfo7 info7;
280                 [case(8)] samr_DomInfo8 info8;
281                 [case(9)] samr_DomInfo9 info9;
282                 [case(11)] samr_DomGeneralInformation2 general2;
283                 [case(12)] samr_DomInfo12 info12;
284                 [case(13)] samr_DomInfo13 info13;
285         } samr_DomainInfo;
286
287         NTSTATUS samr_QueryDomainInfo(
288                 [in,ref]      policy_handle *domain_handle,
289                 [in]          uint16 level,
290                 [out,switch_is(level),unique] samr_DomainInfo *info
291                 );
292
293         /************************/
294         /* Function    0x09     */
295         /*
296           only levels 1, 3, 4, 6, 7, 9, 12 are valid for this 
297           call in w2k3
298         */
299         NTSTATUS samr_SetDomainInfo(
300                 [in,ref]      policy_handle *domain_handle,
301                 [in]          uint16 level,
302                 [in,switch_is(level),ref] samr_DomainInfo *info
303                 );
304
305
306         /************************/
307         /* Function    0x0a     */
308         NTSTATUS samr_CreateDomainGroup(
309                 [in,ref]      policy_handle *domain_handle,
310                 [in,ref]      lsa_String *name,
311                 [in]          samr_GroupAccessMask access_mask,
312                 [out,ref]     policy_handle *group_handle,
313                 [out,ref]     uint32 *rid
314                 );
315                 
316
317         /************************/
318         /* Function    0x0b     */
319         NTSTATUS samr_EnumDomainGroups(
320                 [in,ref]      policy_handle *domain_handle,
321                 [in,out,ref]  uint32 *resume_handle,
322                 [in]          uint32 max_size,
323                 [out,unique]  samr_SamArray *sam,
324                 [out]         uint32 num_entries
325                 );
326
327         /************************/
328         /* Function    0x0c     */
329         NTSTATUS samr_CreateUser(
330                 [in,ref]      policy_handle *domain_handle,
331                 [in,ref]      lsa_String *account_name,
332                 [in]          samr_UserAccessMask access_mask,
333                 [out,ref]     policy_handle *user_handle,
334                 [out,ref]     uint32 *rid
335                 );
336
337         /************************/
338         /* Function    0x0d     */
339
340
341         /* w2k3 treats max_size as max_users*54 and sets the
342            resume_handle as the rid of the last user sent
343         */
344         const int SAMR_ENUM_USERS_MULTIPLIER = 54;
345
346         NTSTATUS samr_EnumDomainUsers(
347                 [in,ref]      policy_handle *domain_handle,
348                 [in,out,ref]  uint32 *resume_handle,
349                 [in]          samr_AcctFlags acct_flags,
350                 [in]          uint32 max_size,
351                 [out,unique]  samr_SamArray *sam,
352                 [out]         uint32 num_entries
353                 );
354
355         /************************/
356         /* Function    0x0e     */
357         NTSTATUS samr_CreateDomAlias(
358                 [in,ref]      policy_handle *domain_handle,
359                 [in,ref]      lsa_String   *alias_name,
360                 [in]          samr_AliasAccessMask access_mask,
361                 [out,ref]     policy_handle *alias_handle,
362                 [out,ref]     uint32        *rid
363                 );
364
365         /************************/
366         /* Function    0x0f     */
367         NTSTATUS samr_EnumDomainAliases(
368                 [in,ref]      policy_handle *domain_handle,
369                 [in,out,ref]  uint32 *resume_handle,
370                 [in]          samr_AcctFlags acct_flags,
371                 [out,unique]  samr_SamArray *sam,
372                 [out]         uint32 num_entries
373                 );
374
375         /************************/
376         /* Function    0x10     */
377
378         typedef struct {
379                 [range(0,1024)]  uint32 count;
380                 [size_is(count)] uint32 *ids;
381         } samr_Ids;
382
383         NTSTATUS samr_GetAliasMembership(
384                 [in,ref]      policy_handle *domain_handle,
385                 [in,ref]      lsa_SidArray  *sids,
386                 [out,ref]     samr_Ids *rids
387                 );
388
389         /************************/
390         /* Function    0x11     */
391
392         [public] NTSTATUS samr_LookupNames(
393                 [in,ref]      policy_handle *domain_handle,
394                 [in,range(0,1000)] uint32 num_names,
395                 [in,size_is(1000),length_is(num_names)] lsa_String names[],
396                 [out]         samr_Ids rids,
397                 [out]         samr_Ids types
398                 );
399
400
401         /************************/
402         /* Function    0x12     */
403         NTSTATUS samr_LookupRids(
404                 [in,ref]      policy_handle *domain_handle,
405                 [in,range(0,1000)] uint32 num_rids,
406                 [in,size_is(1000),length_is(num_rids)] uint32 rids[],
407                 [out]         lsa_Strings names,
408                 [out]         samr_Ids types
409                 );
410
411         /************************/
412         /* Function    0x13     */
413         NTSTATUS samr_OpenGroup(
414                 [in,ref]      policy_handle *domain_handle,
415                 [in]          samr_GroupAccessMask access_mask,
416                 [in]          uint32 rid,
417                 [out,ref]     policy_handle *group_handle
418                 );
419
420         /* Group attributes */
421         typedef [public,bitmap32bit] bitmap {
422                 SE_GROUP_MANDATORY              = 0x00000001,
423                 SE_GROUP_ENABLED_BY_DEFAULT     = 0x00000002,
424                 SE_GROUP_ENABLED                = 0x00000004,
425                 SE_GROUP_OWNER                  = 0x00000008,
426                 SE_GROUP_USE_FOR_DENY_ONLY      = 0x00000010,
427                 SE_GROUP_RESOURCE               = 0x20000000,
428                 SE_GROUP_LOGON_ID               = 0xC0000000
429         } samr_GroupAttrs;
430
431         /************************/
432         /* Function    0x14     */
433
434         typedef struct {
435                 lsa_String name;
436                 samr_GroupAttrs attributes;
437                 uint32 num_members;
438                 lsa_String description;
439         } samr_GroupInfoAll;
440
441         typedef struct {
442                 samr_GroupAttrs attributes;
443         } samr_GroupInfoAttributes;
444
445         typedef struct {
446                 lsa_String description;
447         } samr_GroupInfoDescription;
448
449         typedef enum {
450                 GROUPINFOALL          = 1,
451                 GROUPINFONAME         = 2,
452                 GROUPINFOATTRIBUTES   = 3,
453                 GROUPINFODESCRIPTION  = 4,
454                 GROUPINFOALL2         = 5
455         } samr_GroupInfoEnum;
456
457         typedef [switch_type(samr_GroupInfoEnum)] union {
458                 [case(GROUPINFOALL)]         samr_GroupInfoAll        all;
459                 [case(GROUPINFONAME)]        lsa_String               name;
460                 [case(GROUPINFOATTRIBUTES)]  samr_GroupInfoAttributes attributes;
461                 [case(GROUPINFODESCRIPTION)] lsa_String               description;
462                 [case(GROUPINFOALL2)]        samr_GroupInfoAll        all2;
463         } samr_GroupInfo;
464
465         NTSTATUS samr_QueryGroupInfo(
466                 [in,ref]                  policy_handle *group_handle,
467                 [in]                      samr_GroupInfoEnum level,
468                 [out,switch_is(level),unique] samr_GroupInfo *info
469                 );
470
471         /************************/
472         /* Function    0x15     */
473         NTSTATUS samr_SetGroupInfo(
474                 [in,ref]                  policy_handle *group_handle,
475                 [in]                      samr_GroupInfoEnum level,
476                 [in,switch_is(level),ref] samr_GroupInfo *info
477                 );
478
479         /************************/
480         /* Function    0x16     */
481         NTSTATUS samr_AddGroupMember(
482                 [in,ref]                  policy_handle *group_handle,
483                 [in]                      uint32 rid,
484                 [in]                      uint32 flags
485                 );
486
487         /************************/
488         /* Function    0x17     */
489         NTSTATUS samr_DeleteDomainGroup(
490                 [in,out,ref]   policy_handle *group_handle
491                 );
492
493         /************************/
494         /* Function    0x18     */
495         NTSTATUS samr_DeleteGroupMember(
496                 [in,ref]                  policy_handle *group_handle,
497                 [in]                      uint32 rid
498                 );
499
500
501         /************************/
502         /* Function    0x19     */
503         typedef struct {
504                 uint32 count;
505                 [size_is(count)] uint32 *rids;
506                 [size_is(count)] uint32 *types;
507         } samr_RidTypeArray;
508
509         NTSTATUS samr_QueryGroupMember(
510                 [in,ref]  policy_handle *group_handle,
511                 [out,unique] samr_RidTypeArray *rids
512                 );
513
514
515         /************************/
516         /* Function    0x1a     */
517
518         /*
519           win2003 seems to accept any data at all for the two integers
520           below, and doesn't seem to do anything with them that I can
521           see. Weird. I really expected the first integer to be a rid
522           and the second to be the attributes for that rid member.
523         */
524         NTSTATUS samr_SetMemberAttributesOfGroup(
525                 [in,ref]  policy_handle *group_handle,
526                 [in]      uint32 unknown1,
527                 [in]      uint32 unknown2
528                 );
529
530
531         /************************/
532         /* Function    0x1b     */
533         NTSTATUS samr_OpenAlias (
534                 [in,ref]      policy_handle *domain_handle,
535                 [in]          samr_AliasAccessMask access_mask,
536                 [in]          uint32 rid,
537                 [out,ref]     policy_handle *alias_handle
538                 );
539
540
541         /************************/
542         /* Function    0x1c     */
543
544         typedef struct {
545                 lsa_String name;
546                 uint32 num_members;
547                 lsa_String description;
548         } samr_AliasInfoAll;
549
550         typedef enum {
551                 ALIASINFOALL          = 1,
552                 ALIASINFONAME         = 2,
553                 ALIASINFODESCRIPTION  = 3
554         } samr_AliasInfoEnum;
555
556         typedef [switch_type(samr_AliasInfoEnum)] union {
557                 [case(ALIASINFOALL)] samr_AliasInfoAll all;
558                 [case(ALIASINFONAME)] lsa_String name;
559                 [case(ALIASINFODESCRIPTION)] lsa_String description;
560         } samr_AliasInfo;
561
562         NTSTATUS samr_QueryAliasInfo(
563                 [in,ref]                  policy_handle  *alias_handle,
564                 [in]                      samr_AliasInfoEnum      level,
565                 [out,switch_is(level),unique] samr_AliasInfo *info
566                 );
567
568         /************************/
569         /* Function    0x1d     */
570         NTSTATUS samr_SetAliasInfo(
571                 [in,ref]                  policy_handle  *alias_handle,
572                 [in]                      samr_AliasInfoEnum      level,
573                 [in,switch_is(level),ref] samr_AliasInfo *info
574                 );
575
576         /************************/
577         /* Function    0x1e     */
578         NTSTATUS samr_DeleteDomAlias(
579                 [in,out,ref]  policy_handle *alias_handle
580                 );
581
582         /************************/
583         /* Function    0x1f     */
584         NTSTATUS samr_AddAliasMember(
585                 [in,ref]  policy_handle *alias_handle,
586                 [in,ref]  dom_sid2      *sid
587                 );
588
589         /************************/
590         /* Function    0x20     */
591         NTSTATUS samr_DeleteAliasMember(
592                 [in,ref] policy_handle *alias_handle,
593                 [in,ref] dom_sid2      *sid
594                 );
595
596         /************************/
597         /* Function    0x21     */
598         NTSTATUS samr_GetMembersInAlias(
599                 [in,ref]   policy_handle *alias_handle,
600                 [out,ref]  lsa_SidArray    *sids
601                 );
602
603         /************************/
604         /* Function    0x22     */
605         [public] NTSTATUS samr_OpenUser(
606                 [in,ref]      policy_handle *domain_handle,
607                 [in]          samr_UserAccessMask access_mask,
608                 [in]          uint32 rid,
609                 [out,ref]     policy_handle *user_handle
610                 );
611
612         /************************/
613         /* Function    0x23     */
614         NTSTATUS samr_DeleteUser(
615                 [in,out,ref]   policy_handle *user_handle
616                 );
617
618         /************************/
619         /* Function    0x24     */
620         typedef struct {
621                 lsa_String account_name;
622                 lsa_String full_name;
623                 uint32 primary_gid;
624                 lsa_String description;
625                 lsa_String comment;
626         } samr_UserInfo1;
627
628         typedef struct {
629                 lsa_String comment;
630                 lsa_String unknown; /* settable, but doesn't stick. probably obsolete */
631                 uint16 country_code;
632                 uint16 code_page;
633         } samr_UserInfo2;
634
635         /* this is also used in samr and netlogon */
636         typedef [public, flag(NDR_PAHEX)] struct {
637                 uint16 units_per_week;
638                 [size_is(1260), length_is(units_per_week/8)] uint8 *bits;
639         } samr_LogonHours;
640
641         typedef struct {
642                 lsa_String account_name;
643                 lsa_String full_name;
644                 uint32 rid;
645                 uint32 primary_gid;
646                 lsa_String home_directory;
647                 lsa_String home_drive;
648                 lsa_String logon_script;
649                 lsa_String profile_path;
650                 lsa_String workstations;
651                 NTTIME last_logon;
652                 NTTIME last_logoff;
653                 NTTIME last_password_change;
654                 NTTIME allow_password_change;
655                 NTTIME force_password_change;
656                 samr_LogonHours logon_hours;
657                 uint16 bad_password_count;
658                 uint16 logon_count;
659                 samr_AcctFlags acct_flags;
660         } samr_UserInfo3;
661
662         typedef struct {
663                 samr_LogonHours logon_hours;
664         } samr_UserInfo4;
665
666         typedef struct {
667                 lsa_String account_name;
668                 lsa_String full_name;
669                 uint32 rid;
670                 uint32 primary_gid;
671                 lsa_String home_directory;
672                 lsa_String home_drive;
673                 lsa_String logon_script;
674                 lsa_String profile_path;
675                 lsa_String description;
676                 lsa_String workstations;
677                 NTTIME last_logon;
678                 NTTIME last_logoff;
679                 samr_LogonHours logon_hours;
680                 uint16 bad_password_count;
681                 uint16 logon_count;
682                 NTTIME last_password_change;
683                 NTTIME acct_expiry;
684                 samr_AcctFlags acct_flags;
685         } samr_UserInfo5;
686
687         typedef struct {
688                 lsa_String account_name;
689                 lsa_String full_name;
690         } samr_UserInfo6;
691
692         typedef struct {
693                 lsa_String account_name;
694         } samr_UserInfo7;
695
696         typedef struct {
697                 lsa_String full_name;
698         } samr_UserInfo8;
699
700         typedef struct {
701                 uint32 primary_gid;
702         } samr_UserInfo9;
703
704         typedef struct {
705                 lsa_String home_directory;
706                 lsa_String home_drive;
707         } samr_UserInfo10;
708
709         typedef struct {
710                 lsa_String logon_script;
711         } samr_UserInfo11;
712
713         typedef struct {
714                 lsa_String profile_path;
715         } samr_UserInfo12;
716
717         typedef struct {
718                 lsa_String description;
719         } samr_UserInfo13;
720
721         typedef struct {
722                 lsa_String workstations;
723         } samr_UserInfo14;
724
725         typedef struct {
726                 samr_AcctFlags acct_flags;
727         } samr_UserInfo16;
728         
729         typedef struct {
730                 NTTIME acct_expiry;
731         } samr_UserInfo17;
732
733         typedef [public, flag(NDR_PAHEX)] struct {
734                 uint8 hash[16];
735         } samr_Password;
736
737         typedef struct {
738                 samr_Password lm_pwd;
739                 samr_Password nt_pwd;
740                 boolean8 lm_pwd_active;
741                 boolean8 nt_pwd_active;
742         } samr_UserInfo18;
743
744         typedef struct {
745                 lsa_String parameters;
746         } samr_UserInfo20;
747
748         /* this defines the bits used for fields_present in info21 */
749         typedef [bitmap32bit] bitmap {
750                 SAMR_FIELD_ACCOUNT_NAME     = 0x00000001,
751                 SAMR_FIELD_FULL_NAME        = 0x00000002,
752                 SAMR_FIELD_RID              = 0x00000004,
753                 SAMR_FIELD_PRIMARY_GID      = 0x00000008,
754                 SAMR_FIELD_DESCRIPTION      = 0x00000010,
755                 SAMR_FIELD_COMMENT          = 0x00000020,
756                 SAMR_FIELD_HOME_DIRECTORY   = 0x00000040,
757                 SAMR_FIELD_HOME_DRIVE       = 0x00000080,
758                 SAMR_FIELD_LOGON_SCRIPT     = 0x00000100,
759                 SAMR_FIELD_PROFILE_PATH     = 0x00000200,
760                 SAMR_FIELD_WORKSTATIONS     = 0x00000400,
761                 SAMR_FIELD_LAST_LOGON       = 0x00000800,
762                 SAMR_FIELD_LAST_LOGOFF      = 0x00001000,
763                 SAMR_FIELD_LOGON_HOURS      = 0x00002000,
764                 SAMR_FIELD_BAD_PWD_COUNT    = 0x00004000,
765                 SAMR_FIELD_NUM_LOGONS       = 0x00008000,
766                 SAMR_FIELD_ALLOW_PWD_CHANGE = 0x00010000,
767                 SAMR_FIELD_FORCE_PWD_CHANGE = 0x00020000,
768                 SAMR_FIELD_LAST_PWD_CHANGE  = 0x00040000,
769                 SAMR_FIELD_ACCT_EXPIRY      = 0x00080000,
770                 SAMR_FIELD_ACCT_FLAGS       = 0x00100000,
771                 SAMR_FIELD_PARAMETERS       = 0x00200000,
772                 SAMR_FIELD_COUNTRY_CODE     = 0x00400000,
773                 SAMR_FIELD_CODE_PAGE        = 0x00800000,
774                 SAMR_FIELD_PASSWORD         = 0x01000000, /* either of these */
775                 SAMR_FIELD_PASSWORD2        = 0x02000000, /* two bits seems to work */
776                 SAMR_FIELD_PRIVATE_DATA     = 0x04000000,
777                 SAMR_FIELD_EXPIRED_FLAG     = 0x08000000,
778                 SAMR_FIELD_SEC_DESC         = 0x10000000,
779                 SAMR_FIELD_OWF_PWD          = 0x20000000
780         } samr_FieldsPresent;
781
782         /* used for 'password_expired' in samr_UserInfo21 */
783         const int PASS_MUST_CHANGE_AT_NEXT_LOGON = 0x01;
784         const int PASS_DONT_CHANGE_AT_NEXT_LOGON = 0x00;
785
786         typedef struct {
787                 NTTIME last_logon;
788                 NTTIME last_logoff;
789                 NTTIME last_password_change;
790                 NTTIME acct_expiry;
791                 NTTIME allow_password_change;
792                 NTTIME force_password_change;
793                 lsa_String account_name;
794                 lsa_String full_name;
795                 lsa_String home_directory;
796                 lsa_String home_drive;
797                 lsa_String logon_script;
798                 lsa_String profile_path;
799                 lsa_String description;
800                 lsa_String workstations;
801                 lsa_String comment;
802                 lsa_String parameters;
803                 lsa_String unknown1;
804                 lsa_String unknown2;
805                 lsa_String unknown3;
806                 uint32 buf_count;
807                 [size_is(buf_count)] uint8 *buffer;
808                 uint32 rid;
809                 uint32 primary_gid;
810                 samr_AcctFlags acct_flags;
811                 samr_FieldsPresent fields_present;
812                 samr_LogonHours logon_hours;
813                 uint16 bad_password_count;
814                 uint16 logon_count;
815                 uint16 country_code;
816                 uint16 code_page;
817                 uint8  nt_password_set;
818                 uint8  lm_password_set;
819                 uint8  password_expired;
820                 uint8  unknown4;
821         } samr_UserInfo21;
822
823         typedef [public, flag(NDR_PAHEX)] struct {
824                 uint8 data[516];
825         } samr_CryptPassword;
826
827         typedef struct {
828                 samr_UserInfo21 info;
829                 samr_CryptPassword password;
830         } samr_UserInfo23;
831
832         typedef struct {
833                 samr_CryptPassword password;
834                 uint8 pw_len;
835         } samr_UserInfo24;
836
837         typedef [flag(NDR_PAHEX)] struct {
838                 uint8 data[532];
839         } samr_CryptPasswordEx;
840
841         typedef struct {
842                 samr_UserInfo21 info;
843                 samr_CryptPasswordEx password;
844         } samr_UserInfo25;
845
846         typedef struct {
847                 samr_CryptPasswordEx password;
848                 uint8 pw_len;
849         } samr_UserInfo26;
850
851         typedef [switch_type(uint16)] union {
852                 [case(1)] samr_UserInfo1 info1;
853                 [case(2)] samr_UserInfo2 info2;
854                 [case(3)] samr_UserInfo3 info3;
855                 [case(4)] samr_UserInfo4 info4;
856                 [case(5)] samr_UserInfo5 info5;
857                 [case(6)] samr_UserInfo6 info6;
858                 [case(7)] samr_UserInfo7 info7;
859                 [case(8)] samr_UserInfo8 info8;
860                 [case(9)] samr_UserInfo9 info9;
861                 [case(10)] samr_UserInfo10 info10;
862                 [case(11)] samr_UserInfo11 info11;
863                 [case(12)] samr_UserInfo12 info12;
864                 [case(13)] samr_UserInfo13 info13;
865                 [case(14)] samr_UserInfo14 info14;
866                 [case(16)] samr_UserInfo16 info16;
867                 [case(17)] samr_UserInfo17 info17;
868                 [case(18)] samr_UserInfo18 info18;
869                 [case(20)] samr_UserInfo20 info20;
870                 [case(21)] samr_UserInfo21 info21;
871                 [case(23)] samr_UserInfo23 info23;
872                 [case(24)] samr_UserInfo24 info24;
873                 [case(25)] samr_UserInfo25 info25;
874                 [case(26)] samr_UserInfo26 info26;
875         } samr_UserInfo;
876
877         [public] NTSTATUS samr_QueryUserInfo(
878                 [in,ref]                  policy_handle *user_handle,
879                 [in]                      uint16 level,
880                 [out,unique,switch_is(level)] samr_UserInfo *info
881                 );
882
883
884         /************************/
885         /* Function    0x25     */
886         [public] NTSTATUS samr_SetUserInfo(
887                 [in,ref]                   policy_handle *user_handle,
888                 [in]                       uint16 level,
889                 [in,ref,switch_is(level)]  samr_UserInfo *info
890                 );
891
892         /************************/
893         /* Function    0x26     */
894         /*
895           this is a password change interface that doesn't give
896           the server the plaintext password. Depricated.
897         */
898         NTSTATUS samr_ChangePasswordUser(
899                 [in,ref]    policy_handle *user_handle,
900                 [in]        boolean8 lm_present,
901                 [in,unique] samr_Password *old_lm_crypted,
902                 [in,unique] samr_Password *new_lm_crypted,
903                 [in]        boolean8 nt_present,
904                 [in,unique] samr_Password *old_nt_crypted,
905                 [in,unique] samr_Password *new_nt_crypted,
906                 [in]        boolean8 cross1_present,
907                 [in,unique] samr_Password *nt_cross,
908                 [in]        boolean8 cross2_present,
909                 [in,unique] samr_Password *lm_cross
910                 );
911
912         /************************/
913         /* Function    0x27     */
914
915         typedef [public] struct {
916                 uint32 rid;
917                 samr_GroupAttrs attributes;
918         } samr_RidWithAttribute;
919
920         typedef [public] struct {
921                 uint32     count;
922                 [size_is(count)] samr_RidWithAttribute *rids;
923         } samr_RidWithAttributeArray;
924
925         NTSTATUS samr_GetGroupsForUser(
926                 [in,ref]   policy_handle *user_handle,
927                 [out,unique] samr_RidWithAttributeArray  *rids
928                 );
929
930         /************************/
931         /* Function    0x28     */
932
933         typedef struct {
934                 uint32    idx;
935                 uint32    rid;
936                 samr_AcctFlags acct_flags;
937                 lsa_String account_name;
938                 lsa_String description;
939                 lsa_String full_name;
940         } samr_DispEntryGeneral;
941
942         typedef struct {
943                 uint32 count;
944                 [size_is(count)] samr_DispEntryGeneral *entries;
945         } samr_DispInfoGeneral;
946
947         typedef struct {
948                 uint32    idx;
949                 uint32    rid;
950                 samr_AcctFlags acct_flags;
951                 lsa_String account_name;
952                 lsa_String description;
953         } samr_DispEntryFull;
954
955         typedef struct {
956                 uint32 count;
957                 [size_is(count)] samr_DispEntryFull *entries;
958         } samr_DispInfoFull;
959
960         typedef struct {
961                 uint32    idx;
962                 uint32    rid;
963                 samr_GroupAttrs acct_flags;
964                 lsa_String account_name;
965                 lsa_String description;
966         } samr_DispEntryFullGroup;
967
968         typedef struct {
969                 uint32 count;
970                 [size_is(count)] samr_DispEntryFullGroup *entries;
971         } samr_DispInfoFullGroups;
972
973         typedef struct {
974                 uint32    idx;
975                 lsa_AsciiStringLarge account_name;
976         } samr_DispEntryAscii;
977
978         typedef struct {
979                 uint32 count;
980                 [size_is(count)] samr_DispEntryAscii *entries;
981         } samr_DispInfoAscii;
982
983         typedef [switch_type(uint16)] union {
984                 [case(1)] samr_DispInfoGeneral info1;/* users */
985                 [case(2)] samr_DispInfoFull info2; /* trust accounts? */
986                 [case(3)] samr_DispInfoFullGroups info3; /* groups */
987                 [case(4)] samr_DispInfoAscii info4; /* users */
988                 [case(5)] samr_DispInfoAscii info5; /* groups */
989         } samr_DispInfo;
990
991         NTSTATUS samr_QueryDisplayInfo(
992                 [in,ref]    policy_handle *domain_handle,
993                 [in]        uint16 level,
994                 [in]        uint32 start_idx,
995                 [in]        uint32 max_entries,
996                 [in]        uint32 buf_size,
997                 [out]       uint32 total_size,
998                 [out]       uint32 returned_size,
999                 [out,switch_is(level)] samr_DispInfo info
1000                 );
1001
1002
1003         /************************/
1004         /* Function    0x29     */
1005
1006         /*
1007           this seems to be an alphabetic search function. The returned index
1008           is the index for samr_QueryDisplayInfo needed to get names occurring
1009           after the specified name. The supplied name does not need to exist
1010           in the database (for example you can supply just a first letter for 
1011           searching starting at that letter)
1012
1013           The level corresponds to the samr_QueryDisplayInfo level
1014         */
1015         NTSTATUS samr_GetDisplayEnumerationIndex(
1016                 [in,ref]    policy_handle *domain_handle,
1017                 [in]        uint16 level,
1018                 [in]        lsa_String name,
1019                 [out]       uint32 idx
1020                 );
1021
1022
1023
1024         /************************/
1025         /* Function    0x2a     */
1026
1027         /*
1028           w2k3 returns NT_STATUS_NOT_IMPLEMENTED for this
1029         */
1030         NTSTATUS samr_TestPrivateFunctionsDomain(
1031                 [in,ref]    policy_handle *domain_handle
1032                 );
1033
1034
1035         /************************/
1036         /* Function    0x2b     */
1037
1038         /*
1039           w2k3 returns NT_STATUS_NOT_IMPLEMENTED for this
1040         */
1041         NTSTATUS samr_TestPrivateFunctionsUser(
1042                 [in,ref]    policy_handle *user_handle
1043                 );
1044
1045
1046         /************************/
1047         /* Function    0x2c     */
1048
1049         typedef struct {
1050                 uint16 min_password_length;
1051                 samr_PasswordProperties password_properties;
1052         } samr_PwInfo;
1053
1054         [public] NTSTATUS samr_GetUserPwInfo(
1055                 [in,ref]    policy_handle *user_handle,
1056                 [out]       samr_PwInfo info
1057                 );
1058
1059         /************************/
1060         /* Function    0x2d     */
1061         NTSTATUS samr_RemoveMemberFromForeignDomain(
1062                 [in,ref]    policy_handle *domain_handle,
1063                 [in,ref]    dom_sid2 *sid
1064                 );
1065
1066         /************************/
1067         /* Function    0x2e     */
1068
1069         /*
1070           how is this different from QueryDomainInfo ??
1071         */
1072         NTSTATUS samr_QueryDomainInfo2(
1073                 [in,ref]      policy_handle *domain_handle,
1074                 [in]          uint16 level,
1075                 [out,unique,switch_is(level)] samr_DomainInfo *info
1076                 );
1077
1078         /************************/
1079         /* Function    0x2f     */
1080
1081         /*
1082           how is this different from QueryUserInfo ??
1083         */
1084         NTSTATUS samr_QueryUserInfo2(
1085                 [in,ref]                  policy_handle *user_handle,
1086                 [in]                      uint16 level,
1087                 [out,unique,switch_is(level)]    samr_UserInfo *info
1088                 );
1089
1090         /************************/
1091         /* Function    0x30     */
1092
1093         /*
1094           how is this different from QueryDisplayInfo??
1095         */
1096         NTSTATUS samr_QueryDisplayInfo2(
1097                 [in,ref]    policy_handle *domain_handle,
1098                 [in]        uint16 level,
1099                 [in]        uint32 start_idx,
1100                 [in]        uint32 max_entries,
1101                 [in]        uint32 buf_size,
1102                 [out]       uint32 total_size,
1103                 [out]       uint32 returned_size,
1104                 [out,switch_is(level)] samr_DispInfo info
1105                 );
1106
1107         /************************/
1108         /* Function    0x31     */
1109
1110         /*
1111           how is this different from GetDisplayEnumerationIndex ??
1112         */
1113         NTSTATUS samr_GetDisplayEnumerationIndex2(
1114                 [in,ref]    policy_handle *domain_handle,
1115                 [in]        uint16 level,
1116                 [in]        lsa_String name,
1117                 [out]       uint32 idx
1118                 );
1119
1120
1121         /************************/
1122         /* Function    0x32     */
1123         NTSTATUS samr_CreateUser2(
1124                 [in,ref]      policy_handle *domain_handle,
1125                 [in,ref]      lsa_String *account_name,
1126                 [in]          samr_AcctFlags acct_flags,
1127                 [in]          samr_UserAccessMask access_mask,
1128                 [out,ref]     policy_handle *user_handle,
1129                 [out,ref]     uint32 *access_granted,
1130                 [out,ref]     uint32 *rid
1131                 );
1132
1133
1134         /************************/
1135         /* Function    0x33     */
1136
1137         /*
1138           another duplicate. There must be a reason ....
1139         */
1140         NTSTATUS samr_QueryDisplayInfo3(
1141                 [in,ref]    policy_handle *domain_handle,
1142                 [in]        uint16 level,
1143                 [in]        uint32 start_idx,
1144                 [in]        uint32 max_entries,
1145                 [in]        uint32 buf_size,
1146                 [out]       uint32 total_size,
1147                 [out]       uint32 returned_size,
1148                 [out,switch_is(level)] samr_DispInfo info
1149                 );
1150
1151         /************************/
1152         /* Function    0x34     */
1153         NTSTATUS samr_AddMultipleMembersToAlias(
1154                 [in,ref]    policy_handle *alias_handle,
1155                 [in,ref]    lsa_SidArray *sids
1156                 );
1157
1158         /************************/
1159         /* Function    0x35     */
1160         NTSTATUS samr_RemoveMultipleMembersFromAlias(
1161                 [in,ref]    policy_handle *alias_handle,
1162                 [in,ref]    lsa_SidArray *sids
1163                 );
1164
1165         /************************/
1166         /* Function    0x36     */
1167
1168         NTSTATUS samr_OemChangePasswordUser2(
1169                 [in,unique]       lsa_AsciiString *server,
1170                 [in,ref]          lsa_AsciiString *account,
1171                 [in,unique]       samr_CryptPassword *password,
1172                 [in,unique]       samr_Password *hash
1173                 );
1174
1175         /************************/
1176         /* Function    0x37     */
1177         NTSTATUS samr_ChangePasswordUser2(
1178                 [in,unique]       lsa_String *server,
1179                 [in,ref]          lsa_String *account,
1180                 [in,unique]       samr_CryptPassword *nt_password,
1181                 [in,unique]       samr_Password *nt_verifier,
1182                 [in]              boolean8 lm_change,
1183                 [in,unique]       samr_CryptPassword *lm_password,
1184                 [in,unique]       samr_Password *lm_verifier
1185                 );
1186
1187         /************************/
1188         /* Function    0x38     */
1189         NTSTATUS samr_GetDomPwInfo(
1190                 [in,unique] lsa_String *domain_name,
1191                 [out]       samr_PwInfo info
1192                 );
1193
1194         /************************/
1195         /* Function    0x39     */
1196         NTSTATUS samr_Connect2(
1197                 [in,unique,string,charset(UTF16)] uint16 *system_name,
1198                 [in] samr_ConnectAccessMask access_mask,
1199                 [out,ref]  policy_handle *connect_handle
1200                 );
1201
1202         /************************/
1203         /* Function    0x3a     */
1204         /*
1205           seems to be an exact alias for samr_SetUserInfo() 
1206         */
1207         [public] NTSTATUS samr_SetUserInfo2(
1208                 [in,ref]                   policy_handle *user_handle,
1209                 [in]                       uint16 level,
1210                 [in,ref,switch_is(level)]  samr_UserInfo *info
1211                 );
1212
1213         /************************/
1214         /* Function    0x3b     */
1215         /*
1216           this one is mysterious. I have a few guesses, but nothing working yet
1217         */
1218         NTSTATUS samr_SetBootKeyInformation(
1219                 [in,ref]   policy_handle *connect_handle,
1220                 [in]       uint32 unknown1,
1221                 [in]       uint32 unknown2,
1222                 [in]       uint32 unknown3
1223                 );
1224
1225         /************************/
1226         /* Function    0x3c     */
1227         NTSTATUS samr_GetBootKeyInformation(
1228                 [in,ref]   policy_handle *domain_handle,
1229                 [out]      uint32 unknown
1230                 );
1231
1232         /************************/
1233         /* Function    0x3d     */
1234         NTSTATUS samr_Connect3(
1235                 [in,unique,string,charset(UTF16)] uint16 *system_name,
1236                 /* this unknown value seems to be completely ignored by w2k3 */
1237                 [in] uint32 unknown,
1238                 [in] samr_ConnectAccessMask access_mask,
1239                 [out,ref]  policy_handle *connect_handle
1240                 );
1241
1242         /************************/
1243         /* Function    0x3e     */
1244
1245         typedef enum {
1246                 SAMR_CONNECT_PRE_W2K    = 1,
1247                 SAMR_CONNECT_W2K        = 2,
1248                 SAMR_CONNECT_AFTER_W2K  = 3
1249         } samr_ConnectVersion;
1250
1251         NTSTATUS samr_Connect4(
1252                 [in,unique,string,charset(UTF16)] uint16 *system_name,
1253                 [in] samr_ConnectVersion client_version,
1254                 [in] samr_ConnectAccessMask access_mask,
1255                 [out,ref]  policy_handle *connect_handle
1256                 );
1257
1258         /************************/
1259         /* Function    0x3f     */
1260
1261         typedef enum samr_RejectReason samr_RejectReason;
1262
1263         typedef struct {
1264                 samr_RejectReason reason;
1265                 uint32 unknown1;
1266                 uint32 unknown2;
1267         } samr_ChangeReject;
1268
1269         NTSTATUS samr_ChangePasswordUser3(
1270                 [in,unique]       lsa_String *server,
1271                 [in,ref]          lsa_String *account,
1272                 [in,unique]       samr_CryptPassword *nt_password,
1273                 [in,unique]       samr_Password *nt_verifier,
1274                 [in]              boolean8 lm_change,
1275                 [in,unique]       samr_CryptPassword *lm_password,
1276                 [in,unique]       samr_Password *lm_verifier,
1277                 [in,unique]       samr_CryptPassword *password3,
1278                 [out,unique]      samr_DomInfo1 *dominfo,
1279                 [out,unique]      samr_ChangeReject *reject
1280                 );
1281
1282         /************************/
1283         /* Function    0x40      */
1284
1285         typedef struct {
1286                 samr_ConnectVersion client_version; /* w2k3 gives 3 */
1287                 uint32         unknown2; /* w2k3 gives 0 */
1288         } samr_ConnectInfo1;
1289
1290         typedef union {
1291                 [case(1)]  samr_ConnectInfo1 info1;
1292         } samr_ConnectInfo;
1293
1294         [public] NTSTATUS samr_Connect5(
1295                 [in,unique,string,charset(UTF16)] uint16 *system_name,
1296                 [in]       samr_ConnectAccessMask  access_mask,
1297                 [in,out]   uint32             level,
1298                 [in,out,switch_is(level),ref] samr_ConnectInfo *info,
1299                 [out,ref]  policy_handle      *connect_handle
1300                 );
1301
1302         /************************/
1303         /* Function    0x41     */
1304         NTSTATUS samr_RidToSid(
1305                 [in,ref]    policy_handle *domain_handle,
1306                 [in]        uint32        rid,
1307                 [out,unique] dom_sid2      *sid
1308                 );
1309
1310
1311         /************************/
1312         /* Function    0x42     */
1313
1314         /*
1315           this should set the DSRM password for the server, which is used
1316           when booting into Directory Services Recovery Mode on a DC. Win2003
1317           gives me NT_STATUS_NOT_SUPPORTED
1318         */
1319
1320         NTSTATUS samr_SetDsrmPassword(
1321                 [in,unique] lsa_String *name,
1322                 [in]       uint32 unknown,
1323                 [in,unique] samr_Password *hash
1324                 );
1325
1326
1327         /************************/
1328         /* Function    0x43     */
1329         /************************/
1330         typedef [bitmap32bit] bitmap {
1331                 SAMR_VALIDATE_FIELD_PASSWORD_LAST_SET           = 0x00000001,
1332                 SAMR_VALIDATE_FIELD_BAD_PASSWORD_TIME           = 0x00000002,
1333                 SAMR_VALIDATE_FIELD_LOCKOUT_TIME                = 0x00000004,
1334                 SAMR_VALIDATE_FIELD_BAD_PASSWORD_COUNT          = 0x00000008,
1335                 SAMR_VALIDATE_FIELD_PASSWORD_HISTORY_LENGTH     = 0x00000010,
1336                 SAMR_VALIDATE_FIELD_PASSWORD_HISTORY            = 0x00000020
1337         } samr_ValidateFieldsPresent;
1338
1339         typedef enum {
1340                 NetValidateAuthentication = 1,
1341                 NetValidatePasswordChange= 2,
1342                 NetValidatePasswordReset = 3
1343         } samr_ValidatePasswordLevel;
1344
1345         /* NetApi maps samr_ValidationStatus errors to WERRORs. Haven't
1346          * identified the mapping of
1347          * - NERR_PasswordFilterError
1348          * - NERR_PasswordExpired and
1349          * - NERR_PasswordCantChange
1350          * yet - Guenther
1351          */
1352
1353         typedef enum {
1354                 SAMR_VALIDATION_STATUS_SUCCESS = 0,
1355                 SAMR_VALIDATION_STATUS_PASSWORD_MUST_CHANGE = 1,
1356                 SAMR_VALIDATION_STATUS_ACCOUNT_LOCKED_OUT = 2,
1357                 SAMR_VALIDATION_STATUS_BAD_PASSWORD = 4,
1358                 SAMR_VALIDATION_STATUS_PWD_HISTORY_CONFLICT = 5,
1359                 SAMR_VALIDATION_STATUS_PWD_TOO_SHORT = 6,
1360                 SAMR_VALIDATION_STATUS_PWD_TOO_LONG = 7,
1361                 SAMR_VALIDATION_STATUS_NOT_COMPLEX_ENOUGH = 8,
1362                 SAMR_VALIDATION_STATUS_PASSWORD_TOO_RECENT = 9
1363         } samr_ValidationStatus;
1364
1365         typedef struct {
1366                 uint32 length;
1367                 [size_is(length)] uint8 *data;
1368         } samr_ValidationBlob;
1369
1370         typedef struct {
1371                 samr_ValidateFieldsPresent fields_present;
1372                 NTTIME_hyper last_password_change;
1373                 NTTIME_hyper bad_password_time;
1374                 NTTIME_hyper lockout_time;
1375                 uint32 bad_pwd_count;
1376                 uint32 pwd_history_len;
1377                 [size_is(pwd_history_len)] samr_ValidationBlob *pwd_history;
1378         } samr_ValidatePasswordInfo;
1379
1380         typedef struct {
1381                 samr_ValidatePasswordInfo info;
1382                 samr_ValidationStatus status;
1383         } samr_ValidatePasswordRepCtr;
1384
1385         typedef [switch_type(uint16)] union {
1386                 [case(1)] samr_ValidatePasswordRepCtr ctr1;
1387                 [case(2)] samr_ValidatePasswordRepCtr ctr2;
1388                 [case(3)] samr_ValidatePasswordRepCtr ctr3;
1389         } samr_ValidatePasswordRep;
1390
1391         typedef struct {
1392                 samr_ValidatePasswordInfo info;
1393                 lsa_StringLarge password;
1394                 lsa_StringLarge account;
1395                 samr_ValidationBlob hash;
1396                 boolean8 pwd_must_change_at_next_logon;
1397                 boolean8 clear_lockout;
1398         } samr_ValidatePasswordReq3;
1399
1400         typedef struct {
1401                 samr_ValidatePasswordInfo info;
1402                 lsa_StringLarge password;
1403                 lsa_StringLarge account;
1404                 samr_ValidationBlob hash;
1405                 boolean8 password_matched;
1406         } samr_ValidatePasswordReq2;
1407
1408         typedef struct {
1409                 samr_ValidatePasswordInfo info;
1410                 boolean8 password_matched;
1411         } samr_ValidatePasswordReq1;
1412
1413         typedef [switch_type(uint16)] union {
1414                 [case(1)] samr_ValidatePasswordReq1 req1;
1415                 [case(2)] samr_ValidatePasswordReq2 req2;
1416                 [case(3)] samr_ValidatePasswordReq3 req3;
1417         } samr_ValidatePasswordReq;
1418
1419         NTSTATUS samr_ValidatePassword(
1420                 [in] samr_ValidatePasswordLevel level,
1421                 [in,switch_is(level)] samr_ValidatePasswordReq req,
1422                 [out,unique,switch_is(level)] samr_ValidatePasswordRep *rep
1423                 );
1424 }