3 much of this was derived from the ethereal sources - thanks to everyone
7 import
"misc.idl", "lsa.idl", "samr.idl", "security.idl", "nbt.idl";
11 cpp_quote
("#define netr_DeltaEnum8Bit netr_DeltaEnum")
12 cpp_quote
("#define netr_SamDatabaseID8Bit netr_SamDatabaseID")
15 uuid("12345678-1234-abcd-ef00-01234567cffb"),
17 endpoint("ncacn_np:[\\pipe\\netlogon]","ncacn_ip_tcp:","ncalrpc:"),
18 helper
("../librpc/ndr/ndr_netlogon.h"),
19 pointer_default(unique)
24 typedef bitmap samr_AcctFlags samr_AcctFlags
;
25 typedef bitmap samr_GroupAttrs samr_GroupAttrs
;
26 typedef enum netr_DeltaEnum8Bit netr_DeltaEnum8Bit
;
27 typedef enum netr_SamDatabaseID8Bit netr_SamDatabaseID8Bit
;
33 [string,charset
(UTF16
)] uint16
*account_name
;
44 time_t pw_must_change
;
45 [string,charset
(UTF16
)] uint16
*computer
;
46 [string,charset
(UTF16
)] uint16
*domain
;
47 [string,charset
(UTF16
)] uint16
*script_path
;
51 WERROR netr_LogonUasLogon
(
52 [in,unique] [string,charset
(UTF16
)] uint16
*server_name
,
53 [in] [string,charset
(UTF16
)] uint16
*account_name
,
54 [in] [string,charset
(UTF16
)] uint16
*workstation
,
55 [out,ref] netr_UasInfo
**info
67 WERROR netr_LogonUasLogoff
(
68 [in,unique] [string,charset
(UTF16
)] uint16
*server_name
,
69 [in] [string,charset
(UTF16
)] uint16
*account_name
,
70 [in] [string,charset
(UTF16
)] uint16
*workstation
,
71 [out,ref] netr_UasLogoffInfo
*info
78 /* in netr_AcctLockStr size seems to be be 24, and rrenard thinks
79 that the structure of the bindata looks like this:
81 dlong lockout_duration;
83 uint32 bad_attempt_lockout;
86 but it doesn't look as though this structure is reflected at the
87 NDR level. Maybe it is left to the application to decode the bindata array.
89 typedef [public] struct {
90 dlong lockout_duration
;
92 uint32 bad_attempt_lockout
;
96 /* - MSV1_0_ALLOW_SERVER_TRUST_ACCOUNT
97 * sets the NETLOGON_SERVER_TRUST_ACCOUNT user_flag
98 * - MSV1_0_UPDATE_LOGON_STATISTICS
99 * sets the logon time on network logon
100 * - MSV1_0_RETURN_USER_PARAMETERS
101 * sets the user parameters in the driveletter
102 * - MSV1_0_RETURN_PROFILE_PATH
103 * returns the profilepath in the driveletter and
104 * sets LOGON_PROFILE_PATH_RETURNED user_flag
107 typedef [public,bitmap32bit
] bitmap
{
108 MSV1_0_CLEARTEXT_PASSWORD_ALLOWED
= 0x00000002,
109 MSV1_0_UPDATE_LOGON_STATISTICS
= 0x00000004,
110 MSV1_0_RETURN_USER_PARAMETERS
= 0x00000008,
111 MSV1_0_DONT_TRY_GUEST_ACCOUNT
= 0x00000010,
112 MSV1_0_ALLOW_SERVER_TRUST_ACCOUNT
= 0x00000020,
113 MSV1_0_RETURN_PASSWORD_EXPIRY
= 0x00000040,
114 MSV1_0_USE_CLIENT_CHALLENGE
= 0x00000080,
115 MSV1_0_TRY_GUEST_ACCOUNT_ONLY
= 0x00000100,
116 MSV1_0_RETURN_PROFILE_PATH
= 0x00000200,
117 MSV1_0_TRY_SPECIFIED_DOMAIN_ONLY
= 0x00000400,
118 MSV1_0_ALLOW_WORKSTATION_TRUST_ACCOUNT
= 0x00000800,
119 MSV1_0_DISABLE_PERSONAL_FALLBACK
= 0x00001000,
120 MSV1_0_ALLOW_FORCE_GUEST
= 0x00002000,
121 MSV1_0_CLEARTEXT_PASSWORD_SUPPLIED
= 0x00004000,
122 MSV1_0_USE_DOMAIN_FOR_ROUTING_ONLY
= 0x00008000,
123 MSV1_0_ALLOW_MSVCHAPV2
= 0x00010000,
124 MSV1_0_S4U2SELF
= 0x00020000,
125 MSV1_0_CHECK_LOGONHOURS_FOR_S4U
= 0x00040000,
126 MSV1_0_SUBAUTHENTICATION_DLL_EX
= 0x00100000
127 } netr_LogonParameterControl
;
130 lsa_String domain_name
;
131 netr_LogonParameterControl parameter_control
; /* see MSV1_0_* */
133 uint32 logon_id_high
;
134 lsa_String account_name
;
135 lsa_String workstation
;
139 netr_IdentityInfo identity_info
;
140 samr_Password lmpassword
;
141 samr_Password ntpassword
;
144 typedef [flag
(NDR_PAHEX
)] struct {
146 [value
(length
)] uint16 size
;
147 [size_is(length
),length_is(length
)] uint8
*data
;
148 } netr_ChallengeResponse
;
150 typedef [flag
(NDR_PAHEX
)] struct {
151 netr_IdentityInfo identity_info
;
153 netr_ChallengeResponse nt
;
154 netr_ChallengeResponse lm
;
157 typedef [flag
(NDR_PAHEX
)] struct {
158 netr_IdentityInfo identity_info
;
159 lsa_String package_name
;
161 [size_is(length
)] uint8
*data
;
165 NetlogonInteractiveInformation
= 1,
166 NetlogonNetworkInformation
= 2,
167 NetlogonServiceInformation
= 3,
168 NetlogonGenericInformation
= 4,
169 NetlogonInteractiveTransitiveInformation
= 5,
170 NetlogonNetworkTransitiveInformation
= 6,
171 NetlogonServiceTransitiveInformation
= 7
172 } netr_LogonInfoClass
;
174 typedef [public,switch_type(netr_LogonInfoClass
)] union {
175 [case(NetlogonInteractiveInformation
)] netr_PasswordInfo
*password
;
176 [case(NetlogonNetworkInformation
)] netr_NetworkInfo
*network
;
177 [case(NetlogonServiceInformation
)] netr_PasswordInfo
*password
;
178 [case(NetlogonGenericInformation
)] netr_GenericInfo
*generic
;
179 [case(NetlogonInteractiveTransitiveInformation
)] netr_PasswordInfo
*password
;
180 [case(NetlogonNetworkTransitiveInformation
)] netr_NetworkInfo
*network
;
181 [case(NetlogonServiceTransitiveInformation
)] netr_PasswordInfo
*password
;
184 typedef [public,flag
(NDR_PAHEX
)] struct {
186 } netr_UserSessionKey
;
188 typedef [public,flag
(NDR_PAHEX
)] struct {
192 /* Flags for user_flags below */
193 typedef [public,bitmap32bit
] bitmap
{
194 NETLOGON_GUEST
= 0x00000001,
195 NETLOGON_NOENCRYPTION
= 0x00000002,
196 NETLOGON_CACHED_ACCOUNT
= 0x00000004,
197 NETLOGON_USED_LM_PASSWORD
= 0x00000008,
198 NETLOGON_EXTRA_SIDS
= 0x00000020,
199 NETLOGON_SUBAUTH_SESSION_KEY
= 0x00000040,
200 NETLOGON_SERVER_TRUST_ACCOUNT
= 0x00000080,
201 NETLOGON_NTLMV2_ENABLED
= 0x00000100,
202 NETLOGON_RESOURCE_GROUPS
= 0x00000200,
203 NETLOGON_PROFILE_PATH_RETURNED
= 0x00000400,
204 NETLOGON_GRACE_LOGON
= 0x01000000
211 NTTIME last_password_change
;
212 NTTIME allow_password_change
;
213 NTTIME force_password_change
;
214 lsa_String account_name
;
215 lsa_String full_name
;
216 lsa_String logon_script
;
217 lsa_String profile_path
;
218 lsa_String home_directory
;
219 lsa_String home_drive
;
221 uint16 bad_password_count
;
224 samr_RidWithAttributeArray groups
;
225 netr_UserFlags user_flags
;
226 netr_UserSessionKey key
;
227 lsa_StringLarge logon_server
;
228 lsa_StringLarge domain
;
229 dom_sid2
*domain_sid
;
230 netr_LMSessionKey LMSessKey
;
231 samr_AcctFlags acct_flags
;
236 netr_SamBaseInfo base
;
241 samr_GroupAttrs attributes
;
244 typedef [public] struct {
245 netr_SamBaseInfo base
;
247 [size_is(sidcount
)] netr_SidAttr
*sids
;
251 netr_SamBaseInfo base
;
253 [size_is(sidcount
)] netr_SidAttr
*sids
;
255 lsa_String principle
;
261 [size_is(pac_size
)] uint8
*pac
;
262 lsa_String logon_domain
;
263 lsa_String logon_server
;
264 lsa_String principal_name
;
266 [size_is(auth_size
)] uint8
*auth
;
267 netr_UserSessionKey user_session_key
;
268 uint32 expansionroom
[10];
275 typedef [flag
(NDR_PAHEX
)] struct {
277 [size_is(length
)] uint8
*data
;
281 NetlogonValidationUasInfo
= 1,
282 NetlogonValidationSamInfo
= 2,
283 NetlogonValidationSamInfo2
= 3,
284 NetlogonValidationGenericInfo2
= 5,
285 NetlogonValidationSamInfo4
= 6
286 } netr_ValidationInfoClass
;
288 typedef [public,switch_type(uint16
)] union {
289 [case(NetlogonValidationSamInfo
)] netr_SamInfo2
*sam2
;
290 [case(NetlogonValidationSamInfo2
)] netr_SamInfo3
*sam3
;
291 [case(4)] netr_PacInfo
*pac
;
292 [case(NetlogonValidationGenericInfo2
)] netr_GenericInfo2
*generic
;
293 [case(NetlogonValidationSamInfo4
)] netr_SamInfo6
*sam6
;
296 typedef [public, flag
(NDR_PAHEX
)] struct {
300 typedef [public] struct {
301 netr_Credential cred
;
303 } netr_Authenticator
;
305 NTSTATUS netr_LogonSamLogon
(
306 [in,unique] [string,charset
(UTF16
)] uint16
*server_name
,
307 [in,unique] [string,charset
(UTF16
)] uint16
*computer_name
,
308 [in,unique] netr_Authenticator
*credential
,
309 [in,out,unique] netr_Authenticator
*return_authenticator
,
310 [in] netr_LogonInfoClass logon_level
,
311 [in,ref] [switch_is(logon_level
)] netr_LogonLevel
*logon
,
312 [in] uint16 validation_level
,
313 [out,ref] [switch_is(validation_level
)] netr_Validation
*validation
,
314 [out,ref] uint8
*authoritative
321 NTSTATUS netr_LogonSamLogoff
(
322 [in,unique] [string,charset
(UTF16
)] uint16
*server_name
,
323 [in,unique] [string,charset
(UTF16
)] uint16
*computer_name
,
324 [in,unique] netr_Authenticator
*credential
,
325 [in,out,unique] netr_Authenticator
*return_authenticator
,
326 [in] netr_LogonInfoClass logon_level
,
327 [in] [switch_is(logon_level
)] netr_LogonLevel logon
335 [public] NTSTATUS netr_ServerReqChallenge
(
336 [in,unique,string,charset
(UTF16
)] uint16
*server_name
,
337 [in,string,charset
(UTF16
)] uint16
*computer_name
,
338 [in,ref] netr_Credential
*credentials
,
339 [out,ref] netr_Credential
*return_credentials
346 typedef enum netr_SchannelType netr_SchannelType
;
348 NTSTATUS netr_ServerAuthenticate
(
349 [in,unique,string,charset
(UTF16
)] uint16
*server_name
,
350 [in,string,charset
(UTF16
)] uint16
*account_name
,
351 [in] netr_SchannelType secure_channel_type
,
352 [in,string,charset
(UTF16
)] uint16
*computer_name
,
353 [in,ref] netr_Credential
*credentials
,
354 [out,ref] netr_Credential
*return_credentials
361 NTSTATUS netr_ServerPasswordSet
(
362 [in,unique] [string,charset
(UTF16
)] uint16
*server_name
,
363 [in] [string,charset
(UTF16
)] uint16
*account_name
,
364 [in] netr_SchannelType secure_channel_type
,
365 [in] [string,charset
(UTF16
)] uint16
*computer_name
,
366 [in,ref] netr_Authenticator
*credential
,
367 [out,ref] netr_Authenticator
*return_authenticator
,
368 [in,ref] samr_Password
*new_password
375 typedef enum netr_SamDatabaseID netr_SamDatabaseID
;
378 [string,charset
(UTF16
)] uint16
*account_name
;
387 } netr_DELTA_DELETE_USER
;
391 [value
(length
)] uint16 size
;
398 [value
(nt_length
)] uint16 nt_size
;
401 [value
(lm_length
)] uint16 lm_size
;
403 uint8 nt_history
[nt_length
];
404 uint8 lm_history
[lm_length
];
405 } netr_PasswordHistory
;
408 netr_USER_KEY16 lmpassword
;
409 netr_USER_KEY16 ntpassword
;
410 netr_PasswordHistory history
;
413 typedef struct { /* TODO: make this a union! */
414 netr_USER_KEYS2 keys2
;
415 } netr_USER_KEY_UNION
;
417 typedef [public] struct {
419 netr_USER_KEY_UNION keys
;
423 boolean8 SensitiveDataFlag
;
426 /* netr_USER_KEYS encrypted with the session key */
427 [size_is(DataLength
)][flag
(NDR_PAHEX
)] uint8
*SensitiveData
;
428 } netr_USER_PRIVATE_INFO
;
431 lsa_String account_name
;
432 lsa_String full_name
;
435 lsa_String home_directory
;
436 lsa_String home_drive
;
437 lsa_String logon_script
;
438 lsa_String description
;
439 lsa_String workstations
;
442 samr_LogonHours logon_hours
;
443 uint16 bad_password_count
;
445 NTTIME last_password_change
;
447 samr_AcctFlags acct_flags
;
448 samr_Password lmpassword
;
449 samr_Password ntpassword
;
450 boolean8 nt_password_present
;
451 boolean8 lm_password_present
;
452 boolean8 password_expired
;
454 lsa_BinaryString parameters
;
457 netr_USER_PRIVATE_INFO user_private_info
;
458 uint32 SecurityInformation
;
460 lsa_String profile_path
;
471 lsa_String domain_name
;
472 lsa_String oem_information
; /* comment */
473 dlong force_logoff_time
;
474 uint16 min_password_length
;
475 uint16 password_history_length
;
476 /* yes, these are signed. They are in negative 100ns */
477 dlong max_password_age
;
478 dlong min_password_age
;
480 NTTIME domain_create_time
;
481 uint32 SecurityInformation
;
483 lsa_BinaryString account_lockout
;
487 uint32 logon_to_chgpass
;
494 lsa_String group_name
;
497 lsa_String description
;
498 uint32 SecurityInformation
;
524 [size_is(num_rids
)] uint32
*rids
;
525 [size_is(num_rids
)] uint32
*attribs
;
531 } netr_DELTA_GROUP_MEMBER
;
534 lsa_String alias_name
;
536 uint32 SecurityInformation
;
538 lsa_String description
;
554 } netr_DELTA_ALIAS_MEMBER
;
557 uint32 pagedpoollimit
;
558 uint32 nonpagedpoollimit
;
559 uint32 minimumworkingsetsize
;
560 uint32 maximumworkingsetsize
;
561 uint32 pagefilelimit
;
567 NTTIME auditretentionperiod
;
568 boolean8 auditingmode
;
569 uint32 maxauditeventcount
;
570 [size_is(maxauditeventcount
+1)] uint32
*eventauditoptions
;
571 lsa_String primary_domain_name
;
573 netr_QUOTA_LIMITS quota_limits
;
575 NTTIME db_create_time
;
576 uint32 SecurityInformation
;
589 lsa_String domain_name
;
590 uint32 num_controllers
;
591 [size_is(num_controllers
)] lsa_String
*controller_names
;
592 uint32 SecurityInformation
;
602 } netr_DELTA_TRUSTED_DOMAIN
;
606 } netr_DELTA_DELETE_TRUST
;
609 uint32 privilege_entries
;
610 uint32 privilege_control
;
611 [size_is(privilege_entries
)] uint32
*privilege_attrib
;
612 [size_is(privilege_entries
)] lsa_String
*privilege_name
;
613 netr_QUOTA_LIMITS quotalimits
;
615 uint32 SecurityInformation
;
625 } netr_DELTA_ACCOUNT
;
629 } netr_DELTA_DELETE_ACCOUNT
;
633 } netr_DELTA_DELETE_SECRET
;
638 [size_is(maxlen
)][length_is(len
)] uint8
*cipher_data
;
642 netr_CIPHER_VALUE current_cipher
;
643 NTTIME current_cipher_set_time
;
644 netr_CIPHER_VALUE old_cipher
;
645 NTTIME old_cipher_set_time
;
646 uint32 SecurityInformation
;
659 NETR_DELTA_DOMAIN
= 1,
660 NETR_DELTA_GROUP
= 2,
661 NETR_DELTA_DELETE_GROUP
= 3,
662 NETR_DELTA_RENAME_GROUP
= 4,
664 NETR_DELTA_DELETE_USER
= 6,
665 NETR_DELTA_RENAME_USER
= 7,
666 NETR_DELTA_GROUP_MEMBER
= 8,
667 NETR_DELTA_ALIAS
= 9,
668 NETR_DELTA_DELETE_ALIAS
= 10,
669 NETR_DELTA_RENAME_ALIAS
= 11,
670 NETR_DELTA_ALIAS_MEMBER
= 12,
671 NETR_DELTA_POLICY
= 13,
672 NETR_DELTA_TRUSTED_DOMAIN
= 14,
673 NETR_DELTA_DELETE_TRUST
= 15,
674 NETR_DELTA_ACCOUNT
= 16,
675 NETR_DELTA_DELETE_ACCOUNT
= 17,
676 NETR_DELTA_SECRET
= 18,
677 NETR_DELTA_DELETE_SECRET
= 19,
678 NETR_DELTA_DELETE_GROUP2
= 20,
679 NETR_DELTA_DELETE_USER2
= 21,
680 NETR_DELTA_MODIFY_COUNT
= 22
683 typedef [switch_type(netr_DeltaEnum
)] union {
684 [case(NETR_DELTA_DOMAIN
)] netr_DELTA_DOMAIN
*domain
;
685 [case(NETR_DELTA_GROUP
)] netr_DELTA_GROUP
*group
;
686 [case(NETR_DELTA_DELETE_GROUP
)] ; /* rid only */
687 [case(NETR_DELTA_RENAME_GROUP
)] netr_DELTA_RENAME
*rename_group
;
688 [case(NETR_DELTA_USER
)] netr_DELTA_USER
*user
;
689 [case(NETR_DELTA_DELETE_USER
)] ; /* rid only */
690 [case(NETR_DELTA_RENAME_USER
)] netr_DELTA_RENAME
*rename_user
;
691 [case(NETR_DELTA_GROUP_MEMBER
)] netr_DELTA_GROUP_MEMBER
*group_member
;
692 [case(NETR_DELTA_ALIAS
)] netr_DELTA_ALIAS
*alias
;
693 [case(NETR_DELTA_DELETE_ALIAS
)] ; /* rid only */
694 [case(NETR_DELTA_RENAME_ALIAS
)] netr_DELTA_RENAME
*rename_alias
;
695 [case(NETR_DELTA_ALIAS_MEMBER
)] netr_DELTA_ALIAS_MEMBER
*alias_member
;
696 [case(NETR_DELTA_POLICY
)] netr_DELTA_POLICY
*policy
;
697 [case(NETR_DELTA_TRUSTED_DOMAIN
)] netr_DELTA_TRUSTED_DOMAIN
*trusted_domain
;
698 [case(NETR_DELTA_DELETE_TRUST
)] netr_DELTA_DELETE_TRUST delete_trust
;
699 [case(NETR_DELTA_ACCOUNT
)] netr_DELTA_ACCOUNT
*account
;
700 [case(NETR_DELTA_DELETE_ACCOUNT
)] netr_DELTA_DELETE_ACCOUNT delete_account
;
701 [case(NETR_DELTA_SECRET
)] netr_DELTA_SECRET
*secret
;
702 [case(NETR_DELTA_DELETE_SECRET
)] netr_DELTA_DELETE_SECRET delete_secret
;
703 [case(NETR_DELTA_DELETE_GROUP2
)] netr_DELTA_DELETE_USER
*delete_group
;
704 [case(NETR_DELTA_DELETE_USER2
)] netr_DELTA_DELETE_USER
*delete_user
;
705 [case(NETR_DELTA_MODIFY_COUNT
)] udlong
*modified_count
;
708 typedef [switch_type(netr_DeltaEnum
)] union {
709 [case(NETR_DELTA_DOMAIN
)] uint32 rid
;
710 [case(NETR_DELTA_GROUP
)] uint32 rid
;
711 [case(NETR_DELTA_DELETE_GROUP
)] uint32 rid
;
712 [case(NETR_DELTA_RENAME_GROUP
)] uint32 rid
;
713 [case(NETR_DELTA_USER
)] uint32 rid
;
714 [case(NETR_DELTA_DELETE_USER
)] uint32 rid
;
715 [case(NETR_DELTA_RENAME_USER
)] uint32 rid
;
716 [case(NETR_DELTA_GROUP_MEMBER
)] uint32 rid
;
717 [case(NETR_DELTA_ALIAS
)] uint32 rid
;
718 [case(NETR_DELTA_DELETE_ALIAS
)] uint32 rid
;
719 [case(NETR_DELTA_RENAME_ALIAS
)] uint32 rid
;
720 [case(NETR_DELTA_ALIAS_MEMBER
)] uint32 rid
;
721 [case(NETR_DELTA_POLICY
)] dom_sid2
*sid
;
722 [case(NETR_DELTA_TRUSTED_DOMAIN
)] dom_sid2
*sid
;
723 [case(NETR_DELTA_DELETE_TRUST
)] dom_sid2
*sid
;
724 [case(NETR_DELTA_ACCOUNT
)] dom_sid2
*sid
;
725 [case(NETR_DELTA_DELETE_ACCOUNT
)] dom_sid2
*sid
;
726 [case(NETR_DELTA_SECRET
)] [string,charset
(UTF16
)] uint16
*name
;
727 [case(NETR_DELTA_DELETE_SECRET
)] [string,charset
(UTF16
)] uint16
*name
;
728 [case(NETR_DELTA_DELETE_GROUP2
)] uint32 rid
;
729 [case(NETR_DELTA_DELETE_USER2
)] uint32 rid
;
730 [case(NETR_DELTA_MODIFY_COUNT
)] ;
731 } netr_DELTA_ID_UNION
;
734 netr_DeltaEnum delta_type
;
735 [switch_is(delta_type
)] netr_DELTA_ID_UNION delta_id_union
;
736 [switch_is(delta_type
)] netr_DELTA_UNION delta_union
;
741 [size_is(num_deltas
)] netr_DELTA_ENUM
*delta_enum
;
742 } netr_DELTA_ENUM_ARRAY
;
744 NTSTATUS netr_DatabaseDeltas
(
745 [in] [string,charset
(UTF16
)] uint16
*logon_server
,
746 [in] [string,charset
(UTF16
)] uint16
*computername
,
747 [in,ref] netr_Authenticator
*credential
,
748 [in,out,ref] netr_Authenticator
*return_authenticator
,
749 [in] netr_SamDatabaseID database_id
,
750 [in,out,ref] udlong
*sequence_num
,
751 [out,ref] netr_DELTA_ENUM_ARRAY
**delta_enum_array
,
752 [in] uint32 preferredmaximumlength
759 NTSTATUS netr_DatabaseSync
(
760 [in] [string,charset
(UTF16
)] uint16
*logon_server
,
761 [in] [string,charset
(UTF16
)] uint16
*computername
,
762 [in,ref] netr_Authenticator
*credential
,
763 [in,out,ref] netr_Authenticator
*return_authenticator
,
764 [in] netr_SamDatabaseID database_id
,
765 [in,out,ref] uint32
*sync_context
,
766 [out,ref] netr_DELTA_ENUM_ARRAY
**delta_enum_array
,
767 [in] uint32 preferredmaximumlength
774 /* w2k3 returns NT_STATUS_NOT_IMPLEMENTED for this call */
776 typedef [flag
(NDR_PAHEX
)] struct {
777 uint8 computer_name
[16];
779 uint32 serial_number
;
783 [flag
(NDR_REMAINING
)] DATA_BLOB blob
;
784 } netr_AccountBuffer
;
786 NTSTATUS netr_AccountDeltas
(
787 [in,unique] [string,charset
(UTF16
)] uint16
*logon_server
,
788 [in] [string,charset
(UTF16
)] uint16
*computername
,
789 [in] netr_Authenticator credential
,
790 [in,out,ref] netr_Authenticator
*return_authenticator
,
791 [in] netr_UAS_INFO_0 uas
,
794 [in] uint32 buffersize
,
795 [out,ref,subcontext
(4)] netr_AccountBuffer
*buffer
,
796 [out,ref] uint32
*count_returned
,
797 [out,ref] uint32
*total_entries
,
798 [out,ref] netr_UAS_INFO_0
*recordid
805 NTSTATUS netr_AccountSync
(
806 [in,unique] [string,charset
(UTF16
)] uint16
*logon_server
,
807 [in] [string,charset
(UTF16
)] uint16
*computername
,
808 [in] netr_Authenticator credential
,
809 [in,out,ref] netr_Authenticator
*return_authenticator
,
810 [in] uint32 reference
,
812 [in] uint32 buffersize
,
813 [out,ref,subcontext
(4)] netr_AccountBuffer
*buffer
,
814 [out,ref] uint32
*count_returned
,
815 [out,ref] uint32
*total_entries
,
816 [out,ref] uint32
*next_reference
,
817 [in,out,ref] netr_UAS_INFO_0
*recordid
824 WERROR netr_GetDcName
(
825 [in] [string,charset
(UTF16
)] uint16
*logon_server
,
826 [in,unique] [string,charset
(UTF16
)] uint16
*domainname
,
827 [out,ref] [string,charset
(UTF16
)] uint16
**dcname
833 typedef [bitmap32bit
] bitmap
{
834 NETLOGON_REPLICATION_NEEDED
= 0x00000001,
835 NETLOGON_REPLICATION_IN_PROGRESS
= 0x00000002,
836 NETLOGON_FULL_SYNC_REPLICATION
= 0x00000004,
837 NETLOGON_REDO_NEEDED
= 0x00000008,
838 NETLOGON_HAS_IP
= 0x00000010,
839 NETLOGON_HAS_TIMESERV
= 0x00000020,
840 NETLOGON_DNS_UPDATE_FAILURE
= 0x00000040,
841 NETLOGON_VERIFY_STATUS_RETURNED
= 0x00000080
845 netr_InfoFlags flags
;
846 WERROR pdc_connection_status
;
847 } netr_NETLOGON_INFO_1
;
850 netr_InfoFlags flags
;
851 WERROR pdc_connection_status
;
852 [string,charset
(UTF16
)] uint16
*trusted_dc_name
;
853 WERROR tc_connection_status
;
854 } netr_NETLOGON_INFO_2
;
857 netr_InfoFlags flags
;
858 uint32 logon_attempts
;
864 } netr_NETLOGON_INFO_3
;
867 [string,charset
(UTF16
)] uint16
*trusted_dc_name
;
868 [string,charset
(UTF16
)] uint16
*trusted_domain_name
;
869 } netr_NETLOGON_INFO_4
;
872 [case(1)] netr_NETLOGON_INFO_1
*info1
;
873 [case(2)] netr_NETLOGON_INFO_2
*info2
;
874 [case(3)] netr_NETLOGON_INFO_3
*info3
;
875 [case(4)] netr_NETLOGON_INFO_4
*info4
;
877 } netr_CONTROL_QUERY_INFORMATION
;
879 /* function_code values */
880 typedef [v1_enum] enum {
881 NETLOGON_CONTROL_QUERY
= 0x00000001,
882 NETLOGON_CONTROL_REPLICATE
= 0x00000002,
883 NETLOGON_CONTROL_SYNCHRONIZE
= 0x00000003,
884 NETLOGON_CONTROL_PDC_REPLICATE
= 0x00000004,
885 NETLOGON_CONTROL_REDISCOVER
= 0x00000005,
886 NETLOGON_CONTROL_TC_QUERY
= 0x00000006,
887 NETLOGON_CONTROL_TRANSPORT_NOTIFY
= 0x00000007,
888 NETLOGON_CONTROL_FIND_USER
= 0x00000008,
889 NETLOGON_CONTROL_CHANGE_PASSWORD
= 0x00000009,
890 NETLOGON_CONTROL_TC_VERIFY
= 0x0000000A,
891 NETLOGON_CONTROL_FORCE_DNS_REG
= 0x0000000B,
892 NETLOGON_CONTROL_QUERY_DNS_REG
= 0x0000000C,
893 NETLOGON_CONTROL_BACKUP_CHANGE_LOG
= 0x0000FFFC,
894 NETLOGON_CONTROL_TRUNCATE_LOG
= 0x0000FFFD,
895 NETLOGON_CONTROL_SET_DBFLAG
= 0x0000FFFE,
896 NETLOGON_CONTROL_BREAKPOINT
= 0x0000FFFF
897 } netr_LogonControlCode
;
899 WERROR netr_LogonControl
(
900 [in,unique] [string,charset
(UTF16
)] uint16
*logon_server
,
901 [in] netr_LogonControlCode function_code
,
903 [out,ref,switch_is(level
)] netr_CONTROL_QUERY_INFORMATION
*query
910 WERROR netr_GetAnyDCName
(
911 [in,unique] [string,charset
(UTF16
)] uint16
*logon_server
,
912 [in,unique] [string,charset
(UTF16
)] uint16
*domainname
,
913 [out,ref] [string,charset
(UTF16
)] uint16
**dcname
921 [case(NETLOGON_CONTROL_REDISCOVER
)] [string,charset
(UTF16
)] uint16
*domain
;
922 [case(NETLOGON_CONTROL_TC_QUERY
)] [string,charset
(UTF16
)] uint16
*domain
;
923 [case(NETLOGON_CONTROL_TRANSPORT_NOTIFY
)] [string,charset
(UTF16
)] uint16
*domain
;
924 [case(NETLOGON_CONTROL_CHANGE_PASSWORD
)] [string,charset
(UTF16
)] uint16
*domain
;
925 [case(NETLOGON_CONTROL_TC_VERIFY
)] [string,charset
(UTF16
)] uint16
*domain
;
926 [case(NETLOGON_CONTROL_FIND_USER
)] [string,charset
(UTF16
)] uint16
*user
;
927 [case(NETLOGON_CONTROL_SET_DBFLAG
)] uint32 debug_level
;
929 } netr_CONTROL_DATA_INFORMATION
;
931 WERROR netr_LogonControl2
(
932 [in,unique] [string,charset
(UTF16
)] uint16
*logon_server
,
933 [in] netr_LogonControlCode function_code
,
935 [in,ref][switch_is(function_code
)] netr_CONTROL_DATA_INFORMATION
*data
,
936 [out,ref][switch_is(level
)] netr_CONTROL_QUERY_INFORMATION
*query
940 /* If NETLOGON_NEG_ARCFOUR flag is not set, then the passwords and LM
941 * session keys are encrypted with DES calls. (And the user session key
947 typedef [public,bitmap32bit
] bitmap
{
948 NETLOGON_NEG_ACCOUNT_LOCKOUT
= 0x00000001,
949 NETLOGON_NEG_PERSISTENT_SAMREPL
= 0x00000002,
950 NETLOGON_NEG_ARCFOUR
= 0x00000004,
951 NETLOGON_NEG_PROMOTION_COUNT
= 0x00000008,
952 NETLOGON_NEG_CHANGELOG_BDC
= 0x00000010,
953 NETLOGON_NEG_FULL_SYNC_REPL
= 0x00000020,
954 NETLOGON_NEG_MULTIPLE_SIDS
= 0x00000040,
955 NETLOGON_NEG_REDO
= 0x00000080,
956 NETLOGON_NEG_PASSWORD_CHANGE_REFUSAL
= 0x00000100,
957 NETLOGON_NEG_SEND_PASSWORD_INFO_PDC
= 0x00000200,
958 NETLOGON_NEG_GENERIC_PASSTHROUGH
= 0x00000400,
959 NETLOGON_NEG_CONCURRENT_RPC
= 0x00000800,
960 NETLOGON_NEG_AVOID_ACCOUNT_DB_REPL
= 0x00001000,
961 NETLOGON_NEG_AVOID_SECURITYAUTH_DB_REPL
= 0x00002000,
962 NETLOGON_NEG_STRONG_KEYS
= 0x00004000,
963 NETLOGON_NEG_TRANSITIVE_TRUSTS
= 0x00008000,
964 NETLOGON_NEG_DNS_DOMAIN_TRUSTS
= 0x00010000,
965 NETLOGON_NEG_PASSWORD_SET2
= 0x00020000,
966 NETLOGON_NEG_GETDOMAININFO
= 0x00040000,
967 NETLOGON_NEG_CROSS_FOREST_TRUSTS
= 0x00080000,
968 NETLOGON_NEG_NEUTRALIZE_NT4_EMULATION
= 0x00100000,
969 NETLOGON_NEG_RODC_PASSTHROUGH
= 0x00200000,
970 NETLOGON_NEG_SUPPORTS_AES_SHA2
= 0x00400000,
971 NETLOGON_NEG_SUPPORTS_AES
= 0x01000000,
972 NETLOGON_NEG_AUTHENTICATED_RPC_LSASS
= 0x20000000,
973 NETLOGON_NEG_AUTHENTICATED_RPC
= 0x40000000
974 } netr_NegotiateFlags
;
976 const uint32 NETLOGON_NEG_128BIT
= NETLOGON_NEG_STRONG_KEYS
;
977 const uint32 NETLOGON_NEG_SCHANNEL
= NETLOGON_NEG_AUTHENTICATED_RPC
;
979 NTSTATUS netr_ServerAuthenticate2
(
980 [in,unique] [string,charset
(UTF16
)] uint16
*server_name
,
981 [in] [string,charset
(UTF16
)] uint16
*account_name
,
982 [in] netr_SchannelType secure_channel_type
,
983 [in] [string,charset
(UTF16
)] uint16
*computer_name
,
984 [in,ref] netr_Credential
*credentials
,
985 [out,ref] netr_Credential
*return_credentials
,
986 [in,out,ref] netr_NegotiateFlags
*negotiate_flags
994 SYNCSTATE_NORMAL_STATE
= 0,
995 SYNCSTATE_DOMAIN_STATE
= 1,
996 SYNCSTATE_GROUP_STATE
= 2,
997 SYNCSTATE_UAS_BUILT_IN_GROUP_STATE
= 3,
998 SYNCSTATE_USER_STATE
= 4,
999 SYNCSTATE_GROUP_MEMBER_STATE
= 5,
1000 SYNCSTATE_ALIAS_STATE
= 6,
1001 SYNCSTATE_ALIAS_MEMBER_STATE
= 7,
1002 SYNCSTATE_SAM_DONE_STATE
= 8
1005 NTSTATUS netr_DatabaseSync2
(
1006 [in] [string,charset
(UTF16
)] uint16
*logon_server
,
1007 [in] [string,charset
(UTF16
)] uint16
*computername
,
1008 [in,ref] netr_Authenticator
*credential
,
1009 [in,out,ref] netr_Authenticator
*return_authenticator
,
1010 [in] netr_SamDatabaseID database_id
,
1011 [in] SyncStateEnum restart_state
,
1012 [in,out,ref] uint32
*sync_context
,
1013 [out,ref] netr_DELTA_ENUM_ARRAY
**delta_enum_array
,
1014 [in] uint32 preferredmaximumlength
1021 /* i'm not at all sure how this call works */
1023 typedef [bitmap16bit
] bitmap
{
1024 NETR_CHANGELOG_IMMEDIATE_REPL_REQUIRED
= 0x0001,
1025 NETR_CHANGELOG_CHANGED_PASSWORD
= 0x0002,
1026 NETR_CHANGELOG_SID_INCLUDED
= 0x0004,
1027 NETR_CHANGELOG_NAME_INCLUDED
= 0x0008,
1028 NETR_CHANGELOG_FIRST_PROMOTION_OBJ
= 0x0010
1029 } netr_ChangeLogFlags
;
1031 typedef [nodiscriminant
] union {
1032 [case(NETR_CHANGELOG_SID_INCLUDED
)] dom_sid object_sid
;
1033 [case(NETR_CHANGELOG_NAME_INCLUDED
)] nstring object_name
;
1035 } netr_ChangeLogObject
;
1037 typedef [public,gensize
] struct {
1038 uint32 serial_number1
;
1039 uint32 serial_number2
;
1041 netr_ChangeLogFlags flags
;
1042 netr_SamDatabaseID8Bit db_index
;
1043 netr_DeltaEnum8Bit delta_type
;
1044 [switch_is(flags
& (NETR_CHANGELOG_SID_INCLUDED|NETR_CHANGELOG_NAME_INCLUDED
))] netr_ChangeLogObject
object;
1045 } netr_ChangeLogEntry
;
1047 NTSTATUS netr_DatabaseRedo
(
1048 [in] [string,charset
(UTF16
)] uint16
*logon_server
,
1049 [in] [string,charset
(UTF16
)] uint16
*computername
,
1050 [in] netr_Authenticator
*credential
,
1051 [in,out,ref] netr_Authenticator
*return_authenticator
,
1052 [in] [subcontext
(4),subcontext_size
(change_log_entry_size
)] netr_ChangeLogEntry change_log_entry
,
1053 [in] [value
(ndr_size_netr_ChangeLogEntry
(&change_log_entry
, ndr
->iconv_convenience
, ndr
->flags
))] uint32 change_log_entry_size
,
1054 [out,ref] netr_DELTA_ENUM_ARRAY
**delta_enum_array
1061 WERROR netr_LogonControl2Ex
(
1062 [in,unique] [string,charset
(UTF16
)] uint16
*logon_server
,
1063 [in] netr_LogonControlCode function_code
,
1065 [in,ref][switch_is(function_code
)] netr_CONTROL_DATA_INFORMATION
*data
,
1066 [out,ref][switch_is(level
)] netr_CONTROL_QUERY_INFORMATION
*query
1073 [size_is(length
)] uint8
*data
;
1076 WERROR netr_NetrEnumerateTrustedDomains
(
1077 [in,unique] [string,charset
(UTF16
)] uint16
*server_name
,
1078 [out,ref] netr_Blob
*trusted_domains_blob
1084 /* one unkown bit still: DS_IP_VERSION_AGNOSTIC - gd*/
1086 const int DSGETDC_VALID_FLAGS
= (DS_FORCE_REDISCOVERY |
1087 DS_DIRECTORY_SERVICE_REQUIRED |
1088 DS_DIRECTORY_SERVICE_PREFERRED |
1089 DS_GC_SERVER_REQUIRED |
1091 DS_BACKGROUND_ONLY |
1094 DS_TIMESERV_REQUIRED |
1095 DS_WRITABLE_REQUIRED |
1096 DS_GOOD_TIMESERV_PREFERRED |
1098 DS_ONLY_LDAP_NEEDED |
1101 DS_RETURN_FLAT_NAME |
1102 DS_RETURN_DNS_NAME
);
1104 typedef [bitmap32bit
] bitmap
{
1105 DS_FORCE_REDISCOVERY
= 0x00000001,
1106 DS_DIRECTORY_SERVICE_REQUIRED
= 0x00000010,
1107 DS_DIRECTORY_SERVICE_PREFERRED
= 0x00000020,
1108 DS_GC_SERVER_REQUIRED
= 0x00000040,
1109 DS_PDC_REQUIRED
= 0x00000080,
1110 DS_BACKGROUND_ONLY
= 0x00000100,
1111 DS_IP_REQUIRED
= 0x00000200,
1112 DS_KDC_REQUIRED
= 0x00000400,
1113 DS_TIMESERV_REQUIRED
= 0x00000800,
1114 DS_WRITABLE_REQUIRED
= 0x00001000,
1115 DS_GOOD_TIMESERV_PREFERRED
= 0x00002000,
1116 DS_AVOID_SELF
= 0x00004000,
1117 DS_ONLY_LDAP_NEEDED
= 0x00008000,
1118 DS_IS_FLAT_NAME
= 0x00010000,
1119 DS_IS_DNS_NAME
= 0x00020000,
1120 DS_TRY_NEXTCLOSEST_SITE
= 0x00040000,
1121 DS_DIRECTORY_SERVICE_6_REQUIRED
= 0x00080000,
1122 DS_WEB_SERVICE_REQUIRED
= 0x00100000,
1123 DS_RETURN_DNS_NAME
= 0x40000000,
1124 DS_RETURN_FLAT_NAME
= 0x80000000
1125 } netr_DsRGetDCName_flags
;
1127 typedef [v1_enum] enum {
1128 DS_ADDRESS_TYPE_INET
= 1,
1129 DS_ADDRESS_TYPE_NETBIOS
= 2
1130 } netr_DsRGetDCNameInfo_AddressType
;
1132 typedef [bitmap32bit
] bitmap
{
1133 DS_SERVER_PDC
= NBT_SERVER_PDC
,
1134 DS_SERVER_GC
= NBT_SERVER_GC
,
1135 DS_SERVER_LDAP
= NBT_SERVER_LDAP
,
1136 DS_SERVER_DS
= NBT_SERVER_DS
,
1137 DS_SERVER_KDC
= NBT_SERVER_KDC
,
1138 DS_SERVER_TIMESERV
= NBT_SERVER_TIMESERV
,
1139 DS_SERVER_CLOSEST
= NBT_SERVER_CLOSEST
,
1140 DS_SERVER_WRITABLE
= NBT_SERVER_WRITABLE
,
1141 DS_SERVER_GOOD_TIMESERV
= NBT_SERVER_GOOD_TIMESERV
,
1142 DS_SERVER_NDNC
= NBT_SERVER_NDNC
,
1143 DS_SERVER_SELECT_SECRET_DOMAIN_6
= NBT_SERVER_SELECT_SECRET_DOMAIN_6
,
1144 DS_SERVER_FULL_SECRET_DOMAIN_6
= NBT_SERVER_FULL_SECRET_DOMAIN_6
,
1145 DS_DNS_CONTROLLER
= 0x20000000,
1146 DS_DNS_DOMAIN
= 0x40000000,
1147 DS_DNS_FOREST
= 0x80000000
1150 typedef [public] struct {
1151 [string,charset
(UTF16
)] uint16
*dc_unc
;
1152 [string,charset
(UTF16
)] uint16
*dc_address
;
1153 netr_DsRGetDCNameInfo_AddressType dc_address_type
;
1155 [string,charset
(UTF16
)] uint16
*domain_name
;
1156 [string,charset
(UTF16
)] uint16
*forest_name
;
1157 netr_DsR_DcFlags dc_flags
;
1158 [string,charset
(UTF16
)] uint16
*dc_site_name
;
1159 [string,charset
(UTF16
)] uint16
*client_site_name
;
1160 } netr_DsRGetDCNameInfo
;
1162 WERROR netr_DsRGetDCName
(
1163 [in,unique] [string,charset
(UTF16
)] uint16
*server_unc
,
1164 [in,unique] [string,charset
(UTF16
)] uint16
*domain_name
,
1165 [in,unique] GUID
*domain_guid
,
1166 [in,unique] GUID
*site_guid
,
1167 [in] netr_DsRGetDCName_flags flags
,
1168 [out,ref] netr_DsRGetDCNameInfo
**info
1173 typedef [switch_type(uint32
)] union {
1174 [case(1)] netr_NegotiateFlags server_capabilities
;
1175 } netr_Capabilities
;
1177 NTSTATUS netr_LogonGetCapabilities
(
1178 [in] [string,charset
(UTF16
)] uint16
*server_name
,
1179 [in,unique] [string,charset
(UTF16
)] uint16
*computer_name
,
1180 [in,ref] netr_Authenticator
*credential
,
1181 [in,out,ref] netr_Authenticator
*return_authenticator
,
1182 [in] uint32 query_level
,
1183 [out,ref,switch_is(query_level
)] netr_Capabilities
*capabilities
1188 [todo
] WERROR netr_NETRLOGONSETSERVICEBITS
();
1192 WERROR netr_LogonGetTrustRid
(
1193 [in,unique] [string,charset
(UTF16
)] uint16
*server_name
,
1194 [in,unique] [string,charset
(UTF16
)] uint16
*domain_name
,
1195 [out,ref] uint32
*rid
1200 [todo
] WERROR netr_NETRLOGONCOMPUTESERVERDIGEST
();
1204 [todo
] WERROR netr_NETRLOGONCOMPUTECLIENTDIGEST
();
1208 [public] NTSTATUS netr_ServerAuthenticate3
(
1209 [in,unique] [string,charset
(UTF16
)] uint16
*server_name
,
1210 [in] [string,charset
(UTF16
)] uint16
*account_name
,
1211 [in] netr_SchannelType secure_channel_type
,
1212 [in] [string,charset
(UTF16
)] uint16
*computer_name
,
1213 [in,ref] netr_Credential
*credentials
,
1214 [out,ref] netr_Credential
*return_credentials
,
1215 [in,out,ref] netr_NegotiateFlags
*negotiate_flags
,
1216 [out,ref] uint32
*rid
1222 WERROR netr_DsRGetDCNameEx
(
1223 [in,unique] [string,charset
(UTF16
)] uint16
*server_unc
,
1224 [in,unique] [string,charset
(UTF16
)] uint16
*domain_name
,
1225 [in,unique] GUID
*domain_guid
,
1226 [in,unique] [string,charset
(UTF16
)] uint16
*site_name
,
1227 [in] netr_DsRGetDCName_flags flags
,
1228 [out,ref] netr_DsRGetDCNameInfo
**info
1234 WERROR netr_DsRGetSiteName
(
1235 [in,unique] [string,charset
(UTF16
)] uint16
*computer_name
,
1236 [out,ref] [string,charset
(UTF16
)] uint16
**site
1241 typedef [bitmap32bit
] bitmap
{
1242 NETR_TRUST_FLAG_IN_FOREST
= 0x00000001,
1243 NETR_TRUST_FLAG_OUTBOUND
= 0x00000002,
1244 NETR_TRUST_FLAG_TREEROOT
= 0x00000004,
1245 NETR_TRUST_FLAG_PRIMARY
= 0x00000008,
1246 NETR_TRUST_FLAG_NATIVE
= 0x00000010,
1247 NETR_TRUST_FLAG_INBOUND
= 0x00000020,
1248 NETR_TRUST_FLAG_MIT_KRB5
= 0x00000080,
1249 NETR_TRUST_FLAG_AES
= 0x00000100
1252 typedef [bitmap32bit
] bitmap
{
1253 NETR_WS_FLAG_HANDLES_INBOUND_TRUSTS
= 0x00000001,
1254 NETR_WS_FLAG_HANDLES_SPN_UPDATE
= 0x00000002
1255 } netr_WorkstationFlags
;
1257 typedef [bitmap16bit
] bitmap
{
1258 NETR_VER_SUITE_BACKOFFICE
= 0x0004,
1259 NETR_VER_SUITE_BLADE
= 0x0400,
1260 NETR_VER_SUITE_COMPUTE_SERVER
= 0x4000,
1261 NETR_VER_SUITE_DATACENTER
= 0x0080,
1262 NETR_VER_SUITE_ENTERPRISE
= 0x0002,
1263 NETR_VER_SUITE_EMBEDDEDNT
= 0x0040,
1264 NETR_VER_SUITE_PERSONAL
= 0x0200,
1265 NETR_VER_SUITE_SINGLEUSERTS
= 0x0100,
1266 NETR_VER_SUITE_SMALLBUSINESS
= 0x0001,
1267 NETR_VER_SUITE_SMALLBUSINESS_RESTRICTED
= 0x0020,
1268 NETR_VER_SUITE_STORAGE_SERVER
= 0x2000,
1269 NETR_VER_SUITE_TERMINAL
= 0x0010,
1270 NETR_VER_SUITE_WH_SERVER
= 0x8000
1273 typedef [bitmap8bit
] bitmap
{
1274 NETR_VER_NT_DOMAIN_CONTROLLER
= 0x02,
1275 NETR_VER_NT_SERVER
= 0x03,
1276 NETR_VER_NT_WORKSTATION
= 0x01
1281 [size_is(policy_size
)] uint8
*policy
;
1282 } netr_LsaPolicyInformation
;
1285 [value
(284)] uint32 OSVersionInfoSize
;
1286 uint32 MajorVersion
;
1287 uint32 MinorVersion
;
1290 [subcontext
(0),subcontext_size
(256)] nstring CSDVersion
;
1291 uint16 ServicePackMajor
;
1292 uint16 ServicePackMinor
;
1293 netr_SuiteMask SuiteMask
;
1294 netr_ProductType ProductType
;
1296 } netr_OsVersionInfoEx
;
1299 /* these first 3 values come from the fact windows
1300 actually encodes this structure as a UNICODE_STRING
1301 - see MS-NRPC section 2.2.1.3.9 */
1302 /* 142 * 2 = 284 (length of structure "netr_OsVersionInfoEx") */
1303 [value
(142)] uint32 length
;
1304 [value
(0)] uint32 dummy
;
1305 [value
(142)] uint32 size
;
1306 netr_OsVersionInfoEx os
;
1310 /* value is 284 when info != os, otherwise 0 (for length and
1312 [value
(os
== NULL ?
0 : 284)] uint16 length
;
1313 [value
(os
== NULL ?
0 : 284)] uint16 size
;
1315 } netr_OsVersionContainer
;
1318 netr_LsaPolicyInformation lsa_policy
;
1319 [string,charset
(UTF16
)] uint16
*dns_hostname
;
1320 [string,charset
(UTF16
)] uint16
*sitename
;
1321 [string,charset
(UTF16
)] uint16
*dummy1
;
1322 [string,charset
(UTF16
)] uint16
*dummy2
;
1323 [string,charset
(UTF16
)] uint16
*dummy3
;
1324 [string,charset
(UTF16
)] uint16
*dummy4
;
1325 netr_OsVersionContainer os_version
;
1327 lsa_String dummy_string3
;
1328 lsa_String dummy_string4
;
1329 netr_WorkstationFlags workstation_flags
;
1333 } netr_WorkstationInformation
;
1336 [case(1)] netr_WorkstationInformation
*workstation_info
;
1337 [case(2)] netr_WorkstationInformation
*lsa_policy_info
;
1338 } netr_WorkstationInfo
;
1341 /* these first 3 values come from the fact windows
1342 actually encodes this structure as a UNICODE_STRING
1343 - see MS-NRPC section 2.2.1.3.9 */
1344 [value
(8)] uint32 length
;
1345 [value
(0)] uint32 dummy
;
1346 [value
(8)] uint32 size
;
1347 netr_TrustFlags flags
;
1348 uint32 parent_index
;
1350 uint32 trust_attributes
;
1351 } netr_trust_extension
;
1354 uint16 length
; /* value is 16 when info != NULL, otherwise 0 */
1355 [value
(length
)] uint16 size
; /* value is 16 when info != NULL, otherwise 0 */
1356 netr_trust_extension
*info
;
1357 } netr_trust_extension_container
;
1360 lsa_StringLarge domainname
;
1361 lsa_StringLarge dns_domainname
;
1362 lsa_StringLarge dns_forestname
;
1364 dom_sid2
*domain_sid
;
1365 netr_trust_extension_container trust_extension
;
1366 lsa_StringLarge dummy_string2
;
1367 lsa_StringLarge dummy_string3
;
1368 lsa_StringLarge dummy_string4
;
1373 } netr_OneDomainInfo
;
1375 typedef [public,bitmap32bit
] bitmap
{
1376 ENC_CRC32
= 0x00000001,
1377 ENC_RSA_MD5
= 0x00000002,
1378 ENC_RC4_HMAC_MD5
= 0x00000004,
1379 ENC_HMAC_SHA1_96_AES128
= 0x00000008,
1380 ENC_HMAC_SHA1_96_AES256
= 0x00000010
1381 } netr_SupportedEncTypes
;
1384 netr_OneDomainInfo primary_domain
;
1385 uint32 trusted_domain_count
;
1386 [size_is(trusted_domain_count
)] netr_OneDomainInfo
*trusted_domains
;
1387 netr_LsaPolicyInformation lsa_policy
;
1388 lsa_StringLarge dns_hostname
;
1389 lsa_StringLarge dummy_string2
;
1390 lsa_StringLarge dummy_string3
;
1391 lsa_StringLarge dummy_string4
;
1392 netr_WorkstationFlags workstation_flags
;
1393 netr_SupportedEncTypes supported_enc_types
;
1396 } netr_DomainInformation
;
1399 [case(1)] netr_DomainInformation
*domain_info
;
1400 [case(2)] netr_LsaPolicyInformation
*lsa_policy_info
;
1403 NTSTATUS netr_LogonGetDomainInfo
(
1404 [in] [string,charset
(UTF16
)] uint16
*server_name
,
1405 [in,unique] [string,charset
(UTF16
)] uint16
*computer_name
,
1406 [in,ref] netr_Authenticator
*credential
,
1407 [in,out,ref] netr_Authenticator
*return_authenticator
,
1409 [in,ref,switch_is(level
)] netr_WorkstationInfo
*query
,
1410 [out,ref,switch_is(level
)] netr_DomainInfo
*info
1416 /* [MS-NRPC] 2.2.1.3.8 NL_PASSWORD_VERSION */
1418 /* someone's birthday ? */
1419 const int NETLOGON_PASSWORD_VERSION_NUMBER_PRESENT
= 0x02231968;
1422 uint32 ReservedField
;
1423 uint32 PasswordVersionNumber
;
1424 uint32 PasswordVersionPresent
;
1425 } NL_PASSWORD_VERSION
;
1427 typedef [flag
(NDR_PAHEX
)] struct {
1430 } netr_CryptPassword
;
1432 NTSTATUS netr_ServerPasswordSet2
(
1433 [in,unique] [string,charset
(UTF16
)] uint16
*server_name
,
1434 [in] [string,charset
(UTF16
)] uint16
*account_name
,
1435 [in] netr_SchannelType secure_channel_type
,
1436 [in] [string,charset
(UTF16
)] uint16
*computer_name
,
1437 [in,ref] netr_Authenticator
*credential
,
1438 [out,ref] netr_Authenticator
*return_authenticator
,
1439 [in,ref] netr_CryptPassword
*new_password
1444 WERROR netr_ServerPasswordGet
(
1445 [in,unique] [string,charset
(UTF16
)] uint16
*server_name
,
1446 [in] [string,charset
(UTF16
)] uint16
*account_name
,
1447 [in] netr_SchannelType secure_channel_type
,
1448 [in] [string,charset
(UTF16
)] uint16
*computer_name
,
1449 [in,ref] netr_Authenticator
*credential
,
1450 [out,ref] netr_Authenticator
*return_authenticator
,
1451 [out,ref] samr_Password
*password
1456 [todo
] WERROR netr_NETRLOGONSENDTOSAM
();
1462 [size_is(count
)] lsa_String
*sitename
;
1463 } netr_DsRAddressToSitenamesWCtr
;
1466 [size_is(size
)] uint8
*buffer
;
1470 WERROR netr_DsRAddressToSitenamesW
(
1471 [in,unique] [string,charset
(UTF16
)] uint16
*server_name
,
1472 [in] [range(0,32000)] uint32 count
,
1473 [in] [size_is(count
)] [ref] netr_DsRAddress
*addresses
,
1474 [out] [ref] netr_DsRAddressToSitenamesWCtr
**ctr
1479 WERROR netr_DsRGetDCNameEx2
(
1480 [in,unique] [string,charset
(UTF16
)] uint16
*server_unc
,
1481 [in,unique] [string,charset
(UTF16
)] uint16
*client_account
,
1482 [in] samr_AcctFlags mask
,
1483 [in,unique] [string,charset
(UTF16
)] uint16
*domain_name
,
1484 [in,unique] GUID
*domain_guid
,
1485 [in,unique] [string,charset
(UTF16
)] uint16
*site_name
,
1486 [in] netr_DsRGetDCName_flags flags
,
1487 [out,ref] netr_DsRGetDCNameInfo
**info
1492 [todo
] WERROR netr_NETRLOGONGETTIMESERVICEPARENTDOMAIN
();
1497 typedef [v1_enum] enum {
1498 NETR_TRUST_TYPE_DOWNLEVEL
= 1,
1499 NETR_TRUST_TYPE_UPLEVEL
= 2,
1500 NETR_TRUST_TYPE_MIT
= 3,
1501 NETR_TRUST_TYPE_DCE
= 4
1504 typedef [bitmap32bit
] bitmap
{
1505 NETR_TRUST_ATTRIBUTE_NON_TRANSITIVE
= 0x00000001,
1506 NETR_TRUST_ATTRIBUTE_UPLEVEL_ONLY
= 0x00000002,
1507 NETR_TRUST_ATTRIBUTE_QUARANTINED_DOMAIN
= 0x00000004,
1508 NETR_TRUST_ATTRIBUTE_FOREST_TRANSITIVE
= 0x00000008,
1509 NETR_TRUST_ATTRIBUTE_CROSS_ORGANIZATION
= 0x00000010,
1510 NETR_TRUST_ATTRIBUTE_WITHIN_FOREST
= 0x00000020,
1511 NETR_TRUST_ATTRIBUTE_TREAT_AS_EXTERNAL
= 0x00000040
1512 } netr_TrustAttributes
;
1515 [string,charset
(UTF16
)] uint16
*netbios_name
;
1516 [string,charset
(UTF16
)] uint16
*dns_name
;
1517 netr_TrustFlags trust_flags
;
1518 uint32 parent_index
;
1519 netr_TrustType trust_type
;
1520 netr_TrustAttributes trust_attributes
;
1527 [size_is(count
)] netr_DomainTrust
*array
;
1528 } netr_DomainTrustList
;
1530 WERROR netr_NetrEnumerateTrustedDomainsEx
(
1531 [in,unique] [string,charset
(UTF16
)] uint16
*server_name
,
1532 [out,ref] netr_DomainTrustList
*dom_trust_list
1539 [size_is(count
)] lsa_String
*sitename
;
1540 [size_is(count
)] lsa_String
*subnetname
;
1541 } netr_DsRAddressToSitenamesExWCtr
;
1543 WERROR netr_DsRAddressToSitenamesExW
(
1544 [in,unique] [string,charset
(UTF16
)] uint16
*server_name
,
1545 [in] [range(0,32000)] uint32 count
,
1546 [in] [size_is(count
)] [ref] netr_DsRAddress
*addresses
,
1547 [out] [ref] netr_DsRAddressToSitenamesExWCtr
**ctr
1555 [size_is(num_sites
)] [unique] lsa_String
*sites
;
1558 WERROR netr_DsrGetDcSiteCoverageW
(
1559 [in,unique] [string,charset
(UTF16
)] uint16
*server_name
,
1560 [out,ref] DcSitesCtr
**ctr
1565 NTSTATUS netr_LogonSamLogonEx
(
1566 [in,unique] [string,charset
(UTF16
)] uint16
*server_name
,
1567 [in,unique] [string,charset
(UTF16
)] uint16
*computer_name
,
1568 [in] netr_LogonInfoClass logon_level
,
1569 [in,ref] [switch_is(logon_level
)] netr_LogonLevel
*logon
,
1570 [in] uint16 validation_level
,
1571 [out,ref] [switch_is(validation_level
)] netr_Validation
*validation
,
1572 [out,ref] uint8
*authoritative
,
1573 [in,out,ref] uint32
*flags
1579 WERROR netr_DsrEnumerateDomainTrusts
(
1580 [in,unique] [string,charset
(UTF16
)] uint16
*server_name
,
1581 [in] netr_TrustFlags trust_flags
,
1582 [out,ref] netr_DomainTrustList
*trusts
1588 WERROR netr_DsrDeregisterDNSHostRecords
(
1589 [in,unique] [string,charset
(UTF16
)] uint16
*server_name
,
1590 [in,unique] [string,charset
(UTF16
)] uint16
*domain
,
1591 [in,unique] GUID
*domain_guid
,
1592 [in,unique] GUID
*dsa_guid
,
1593 [in,ref] [string,charset
(UTF16
)] uint16
*dns_host
1598 NTSTATUS netr_ServerTrustPasswordsGet
(
1599 [in,unique] [string,charset
(UTF16
)] uint16
*server_name
,
1600 [in] [string,charset
(UTF16
)] uint16
*account_name
,
1601 [in] netr_SchannelType secure_channel_type
,
1602 [in] [string,charset
(UTF16
)] uint16
*computer_name
,
1603 [in,ref] netr_Authenticator
*credential
,
1604 [out,ref] netr_Authenticator
*return_authenticator
,
1605 [out,ref] samr_Password
*password
,
1606 [out,ref] samr_Password
*password2
1612 const int DS_GFTI_UPDATE_TDO
= 0x1;
1614 WERROR netr_DsRGetForestTrustInformation
(
1615 [in,unique] [string,charset
(UTF16
)] uint16
*server_name
,
1616 [in,unique] [string,charset
(UTF16
)] uint16
*trusted_domain_name
,
1618 [out,ref] lsa_ForestTrustInformation
**forest_trust_info
1623 WERROR netr_GetForestTrustInformation
(
1624 [in,unique] [string,charset
(UTF16
)] uint16
*server_name
,
1625 [in,ref] [string,charset
(UTF16
)] uint16
*trusted_domain_name
,
1626 [in,ref] netr_Authenticator
*credential
,
1627 [out,ref] netr_Authenticator
*return_authenticator
,
1629 [out,ref] lsa_ForestTrustInformation
**forest_trust_info
1635 /* this is the ADS varient. I don't yet know what the "flags" are for */
1636 NTSTATUS netr_LogonSamLogonWithFlags
(
1637 [in,unique] [string,charset
(UTF16
)] uint16
*server_name
,
1638 [in,unique] [string,charset
(UTF16
)] uint16
*computer_name
,
1639 [in,unique] netr_Authenticator
*credential
,
1640 [in,out,unique] netr_Authenticator
*return_authenticator
,
1641 [in] netr_LogonInfoClass logon_level
,
1642 [in,ref] [switch_is(logon_level
)] netr_LogonLevel
*logon
,
1643 [in] uint16 validation_level
,
1644 [out,ref] [switch_is(validation_level
)] netr_Validation
*validation
,
1645 [out,ref] uint8
*authoritative
,
1646 [in,out,ref] uint32
*flags
1654 [size_is(count
)] uint32
*data
;
1656 [size_is(count
)] lsa_String
*entries
;
1659 NTSTATUS netr_ServerGetTrustInfo
(
1660 [in,unique] [string,charset
(UTF16
)] uint16
*server_name
,
1661 [in,ref] [string,charset
(UTF16
)] uint16
*account_name
,
1662 [in] netr_SchannelType secure_channel_type
,
1663 [in,ref] [string,charset
(UTF16
)] uint16
*computer_name
,
1664 [in,ref] netr_Authenticator
*credential
,
1665 [out,ref] netr_Authenticator
*return_authenticator
,
1666 [out,ref] samr_Password
*new_owf_password
,
1667 [out,ref] samr_Password
*old_owf_password
,
1668 [out,ref] netr_TrustInfo
**trust_info