git add -f bin/default/librpc/gen_ndr/*.{c,h,ndr,pidl} bin/default/source*/librpc...
[metze/samba/wip.git] / bin / default / librpc / gen_ndr / krb5pac.h
index 4fe28e166aa77b73e71c93ec3a78cfab7dd7fb1a..b28b24c1b6d2aa59458a7b75cb20a5c4537edf40 100644 (file)
@@ -26,29 +26,67 @@ struct PAC_SIGNATURE_DATA {
        DATA_BLOB signature;/* [flag(LIBNDR_FLAG_REMAINING)] */
 }/* [flag(LIBNDR_PRINT_ARRAY_HEX),public] */;
 
+struct PAC_DOMAIN_GROUP_MEMBERSHIP {
+       struct dom_sid2 *domain_sid;/* [unique] */
+       struct samr_RidWithAttributeArray groups;
+};
+
 struct PAC_LOGON_INFO {
        struct netr_SamInfo3 info3;
-       struct dom_sid2 *res_group_dom_sid;/* [unique] */
-       struct samr_RidWithAttributeArray res_groups;
+       struct PAC_DOMAIN_GROUP_MEMBERSHIP resource_groups;
 };
 
+/* bitmap PAC_CREDENTIAL_NTLM_FLAGS */
+#define PAC_CREDENTIAL_NTLM_HAS_LM_HASH ( 0x00000001 )
+#define PAC_CREDENTIAL_NTLM_HAS_NT_HASH ( 0x00000002 )
+
+struct PAC_CREDENTIAL_NTLM_SECPKG {
+       uint32_t version;/* [value(0)] */
+       uint32_t flags;
+       struct samr_Password lm_password;/* [noprint] */
+       struct samr_Password nt_password;/* [noprint] */
+}/* [public] */;
+
+struct PAC_CREDENTIAL_SUPPLEMENTAL_SECPKG {
+       struct lsa_String package_name;
+       uint32_t credential_size;
+       uint8_t *credential;/* [noprint,size_is(credential_size),unique] */
+}/* [public] */;
+
+struct PAC_CREDENTIAL_DATA {
+       uint32_t credential_count;
+       struct PAC_CREDENTIAL_SUPPLEMENTAL_SECPKG *credentials;/* [size_is(credential_count)] */
+}/* [public] */;
+
+struct PAC_CREDENTIAL_DATA_CTR {
+       struct PAC_CREDENTIAL_DATA *data;/* [unique] */
+}/* [public] */;
+
+struct PAC_CREDENTIAL_DATA_NDR {
+       struct PAC_CREDENTIAL_DATA_CTR ctr;/* [subcontext(0xFFFFFC01)] */
+}/* [public] */;
+
+struct PAC_CREDENTIAL_INFO {
+       uint32_t version;/* [value(0)] */
+       uint32_t encryption_type;
+       DATA_BLOB encrypted_data;/* [flag(LIBNDR_FLAG_REMAINING)] */
+}/* [public] */;
+
 struct PAC_CONSTRAINED_DELEGATION {
        struct lsa_String proxy_target;
        uint32_t num_transited_services;
        struct lsa_String *transited_services;/* [size_is(num_transited_services),unique] */
 };
 
-struct PAC_UNKNOWN_12 {
-       uint16_t upn_size;/* [value(2*strlen_m(upn_name))] */
-       uint16_t upn_offset;
-       uint16_t domain_size;/* [value(2*strlen_m(domain_name))] */
-       uint16_t domain_offset;
-       uint16_t unknown3;
-       uint16_t unknown4;
-       uint32_t unknown5;
-       const char *upn_name;/* [charset(UTF16)] */
-       const char *domain_name;/* [charset(UTF16)] */
-       uint32_t unknown6;
+/* bitmap PAC_UPN_DNS_FLAGS */
+#define PAC_UPN_DNS_FLAG_CONSTRUCTED ( 0x00000001 )
+
+struct PAC_UPN_DNS_INFO {
+       uint16_t upn_name_size;/* [value(2*strlen_m(upn_name))] */
+       const char * upn_name;/* [flag(LIBNDR_FLAG_ALIGN8|LIBNDR_FLAG_STR_NOTERM|LIBNDR_FLAG_REMAINING),relative_short,subcontext(0),subcontext_size(upn_name_size)] */
+       uint16_t dns_domain_name_size;/* [value(2*strlen_m(dns_domain_name))] */
+       const char * dns_domain_name;/* [flag(LIBNDR_FLAG_ALIGN8|LIBNDR_FLAG_STR_NOTERM|LIBNDR_FLAG_REMAINING),relative_short,subcontext(0),subcontext_size(dns_domain_name_size)] */
+       uint32_t flags;
 };
 
 struct PAC_LOGON_INFO_CTR {
@@ -63,20 +101,22 @@ enum PAC_TYPE
 #ifndef USE_UINT_ENUMS
  {
        PAC_TYPE_LOGON_INFO=(int)(1),
+       PAC_TYPE_CREDENTIAL_INFO=(int)(2),
        PAC_TYPE_SRV_CHECKSUM=(int)(6),
        PAC_TYPE_KDC_CHECKSUM=(int)(7),
        PAC_TYPE_LOGON_NAME=(int)(10),
        PAC_TYPE_CONSTRAINED_DELEGATION=(int)(11),
-       PAC_TYPE_UNKNOWN_12=(int)(12)
+       PAC_TYPE_UPN_DNS_INFO=(int)(12)
 }
 #else
  { __do_not_use_enum_PAC_TYPE=0x7FFFFFFF}
 #define PAC_TYPE_LOGON_INFO ( 1 )
+#define PAC_TYPE_CREDENTIAL_INFO ( 2 )
 #define PAC_TYPE_SRV_CHECKSUM ( 6 )
 #define PAC_TYPE_KDC_CHECKSUM ( 7 )
 #define PAC_TYPE_LOGON_NAME ( 10 )
 #define PAC_TYPE_CONSTRAINED_DELEGATION ( 11 )
-#define PAC_TYPE_UNKNOWN_12 ( 12 )
+#define PAC_TYPE_UPN_DNS_INFO ( 12 )
 #endif
 ;
 
@@ -86,19 +126,21 @@ struct DATA_BLOB_REM {
 
 union PAC_INFO {
        struct PAC_LOGON_INFO_CTR logon_info;/* [case(PAC_TYPE_LOGON_INFO),subcontext(0xFFFFFC01)] */
+       struct PAC_CREDENTIAL_INFO credential_info;/* [case(PAC_TYPE_CREDENTIAL_INFO)] */
        struct PAC_SIGNATURE_DATA srv_cksum;/* [case(PAC_TYPE_SRV_CHECKSUM)] */
        struct PAC_SIGNATURE_DATA kdc_cksum;/* [case(PAC_TYPE_KDC_CHECKSUM)] */
        struct PAC_LOGON_NAME logon_name;/* [case(PAC_TYPE_LOGON_NAME)] */
        struct PAC_CONSTRAINED_DELEGATION_CTR constrained_delegation;/* [case(PAC_TYPE_CONSTRAINED_DELEGATION),subcontext(0xFFFFFC01)] */
+       struct PAC_UPN_DNS_INFO upn_dns_info;/* [case(PAC_TYPE_UPN_DNS_INFO)] */
        struct DATA_BLOB_REM unknown;/* [default,subcontext(0)] */
 }/* [gensize,nodiscriminant,public] */;
 
 struct PAC_BUFFER {
        enum PAC_TYPE type;
        uint32_t _ndr_size;/* [value(_ndr_size_PAC_INFO(info,type,0))] */
-       union PAC_INFO *info;/* [flag(LIBNDR_FLAG_ALIGN8),relative,subcontext(0),subcontext_size(_subcontext_size_PAC_INFO(r,ndr->flags)),switch_is(type)] */
+       union PAC_INFO *info;/* [flag(LIBNDR_FLAG_ALIGN8),relative,subcontext(0),subcontext_size(NDR_ROUND(_ndr_size,8)),switch_is(type)] */
        uint32_t _pad;/* [value(0)] */
-}/* [noprint,nopull,nopush,public] */;
+}/* [nopull,nopush,public] */;
 
 struct PAC_DATA {
        uint32_t num_buffers;
@@ -165,6 +207,22 @@ struct decode_login_info_ctr {
 };
 
 
+struct decode_credential_data_ndr {
+       struct {
+               struct PAC_CREDENTIAL_DATA_NDR credential_data_ndr;
+       } in;
+
+};
+
+
+struct decode_upn_dns_info {
+       struct {
+               struct PAC_UPN_DNS_INFO upn_dns_info;
+       } in;
+
+};
+
+
 struct decode_pac_validate {
        struct {
                struct PAC_Validate pac_validate;