mirror of
https://github.com/samba-team/samba.git
synced 2025-01-19 10:03:58 +03:00
0410300810
as w2k3 doesn't return it when you ask for we don't know the exact format, but we assume that it starts with a uint32 version and as this attribute is not replicated we can chosse our own version... metze (This used to be commit cf546b7c182f6a9b636023377b5260d155bc15dd)
217 lines
5.1 KiB
Plaintext
217 lines
5.1 KiB
Plaintext
#include "idl_types.h"
|
|
|
|
import "drsuapi.idl";
|
|
|
|
[
|
|
uuid("12345778-1234-abcd-0001-00000001"),
|
|
version(0.0),
|
|
pointer_default(unique),
|
|
helpstring("Active Directory Replication LDAP Blobs")
|
|
]
|
|
interface drsblobs {
|
|
declare bitmap drsuapi_DsReplicaSyncOptions;
|
|
declare bitmap drsuapi_DsReplicaNeighbourFlags;
|
|
declare [v1_enum] enum drsuapi_DsAttributeId;
|
|
|
|
/*
|
|
* replPropertyMetaData
|
|
* w2k uses version 1
|
|
* w2k3 uses version 1
|
|
*/
|
|
typedef struct {
|
|
drsuapi_DsAttributeId attid;
|
|
uint32 version;
|
|
NTTIME_1sec orginating_time;
|
|
GUID orginating_invocation_id;
|
|
hyper orginating_usn;
|
|
hyper local_usn;
|
|
} replPropertyMetaData1;
|
|
|
|
typedef struct {
|
|
uint32 count;
|
|
uint32 reserved;
|
|
replPropertyMetaData1 array[count];
|
|
} replPropertyMetaDataCtr1;
|
|
|
|
typedef [nodiscriminant] union {
|
|
[case(1)] replPropertyMetaDataCtr1 ctr1;
|
|
} replPropertyMetaDataCtr;
|
|
|
|
typedef [public] struct {
|
|
uint32 version;
|
|
uint32 reserved;
|
|
[switch_is(version)] replPropertyMetaDataCtr ctr;
|
|
} replPropertyMetaDataBlob;
|
|
|
|
void decode_replPropertyMetaData(
|
|
[in] replPropertyMetaDataBlob blob
|
|
);
|
|
|
|
/*
|
|
* replUpToDateVector
|
|
* w2k uses version 1
|
|
* w2k3 uses version 2
|
|
*/
|
|
typedef struct {
|
|
uint32 count;
|
|
uint32 reserved;
|
|
drsuapi_DsReplicaCursor cursors[count];
|
|
} replUpToDateVectorCtr1;
|
|
|
|
typedef struct {
|
|
uint32 count;
|
|
uint32 reserved;
|
|
drsuapi_DsReplicaCursor2 cursors[count];
|
|
} replUpToDateVectorCtr2;
|
|
|
|
typedef [nodiscriminant] union {
|
|
[case(1)] replUpToDateVectorCtr1 ctr1;
|
|
[case(2)] replUpToDateVectorCtr2 ctr2;
|
|
} replUpToDateVectorCtr;
|
|
|
|
typedef [public] struct {
|
|
uint32 version;
|
|
uint32 reserved;
|
|
[switch_is(version)] replUpToDateVectorCtr ctr;
|
|
} replUpToDateVectorBlob;
|
|
|
|
void decode_replUpToDateVector(
|
|
[in] replUpToDateVectorBlob blob
|
|
);
|
|
|
|
/*
|
|
* repsFrom/repsTo
|
|
* w2k uses version 1
|
|
* w2k3 uses version 1
|
|
*/
|
|
typedef [public,gensize] struct {
|
|
asclstr dns_name;
|
|
} repsFromTo1OtherInfo;
|
|
|
|
typedef [public,gensize,flag(NDR_PAHEX)] struct {
|
|
/* this includes the 8 bytes of the repsFromToBlob header */
|
|
[value(ndr_size_repsFromTo1(r, ndr->flags)+8)] uint32 blobsize;
|
|
uint32 consecutive_sync_failures;
|
|
NTTIME_1sec last_success;
|
|
NTTIME_1sec last_attempt;
|
|
WERROR result_last_attempt;
|
|
[relative] repsFromTo1OtherInfo *other_info;
|
|
[value(ndr_size_repsFromTo1OtherInfo(other_info, ndr->flags))] uint32 other_info_length;
|
|
drsuapi_DsReplicaNeighbourFlags replica_flags;
|
|
uint8 schedule[84];
|
|
uint32 reserved;
|
|
drsuapi_DsReplicaHighWaterMark highwatermark;
|
|
GUID source_dsa_obj_guid; /* the 'objectGuid' field of the CN=NTDS Settings object */
|
|
GUID source_dsa_invocation_id; /* the 'invocationId' field of the CN=NTDS Settings object */
|
|
GUID transport_guid;
|
|
} repsFromTo1;
|
|
|
|
typedef [nodiscriminant] union {
|
|
[case(1)] repsFromTo1 ctr1;
|
|
} repsFromTo;
|
|
|
|
typedef [public] struct {
|
|
uint32 version;
|
|
uint32 reserved;
|
|
[switch_is(version)] repsFromTo ctr;
|
|
} repsFromToBlob;
|
|
|
|
void decode_repsFromTo(
|
|
[in] repsFromToBlob blob
|
|
);
|
|
|
|
/*
|
|
* partialAttributeSet
|
|
* w2k uses version 1
|
|
* w2k3 uses version 1
|
|
*/
|
|
typedef struct {
|
|
uint32 count;
|
|
drsuapi_DsAttributeId array[count];
|
|
} partialAttributeSetCtr1;
|
|
|
|
typedef [nodiscriminant] union {
|
|
[case(1)] partialAttributeSetCtr1 ctr1;
|
|
} partialAttributeSetCtr;
|
|
|
|
typedef [public] struct {
|
|
uint32 version;
|
|
uint32 reserved;
|
|
[switch_is(version)] partialAttributeSetCtr ctr;
|
|
} partialAttributeSetBlob;
|
|
|
|
void decode_partialAttributeSet(
|
|
[in] partialAttributeSetBlob blob
|
|
);
|
|
|
|
/*
|
|
* prefixMap
|
|
* w2k unknown
|
|
* w2k3 unknown
|
|
* samba4 uses 0x44544442 'DSDB'
|
|
*
|
|
* as we windows don't return the prefixMap attribute when you ask for
|
|
* we don't know the format, but the attribute is not replicated
|
|
* so that we can choose our own format...
|
|
*/
|
|
typedef [v1_enum] enum {
|
|
PREFIX_MAP_VERSION_DSDB = 0x44544442
|
|
} prefixMapVersion;
|
|
|
|
typedef [nodiscriminant] union {
|
|
[case(PREFIX_MAP_VERSION_DSDB)] drsuapi_DsReplicaOIDMapping_Ctr dsdb;
|
|
} prefixMapCtr;
|
|
|
|
typedef [public] struct {
|
|
prefixMapVersion version;
|
|
uint32 reserved;
|
|
[switch_is(version)] prefixMapCtr ctr;
|
|
} prefixMapBlob;
|
|
|
|
void decode_prefixMap(
|
|
[in] prefixMapBlob blob
|
|
);
|
|
|
|
/*
|
|
* the cookie for the LDAP dirsync control
|
|
*/
|
|
typedef [nodiscriminant,gensize] union {
|
|
[case(0)];
|
|
[default] replUpToDateVectorBlob uptodateness_vector;
|
|
} ldapControlDirSyncExtra;
|
|
|
|
typedef struct {
|
|
[value(3)] uint32 u1;
|
|
NTTIME time;
|
|
uint32 u2;
|
|
uint32 u3;
|
|
[value(ndr_size_ldapControlDirSyncExtra(&extra, extra.uptodateness_vector.version, 0))]
|
|
uint32 extra_length;
|
|
drsuapi_DsReplicaHighWaterMark highwatermark;
|
|
GUID guid1;
|
|
[switch_is(extra_length)] ldapControlDirSyncExtra extra;
|
|
} ldapControlDirSyncBlob;
|
|
|
|
typedef [public,relative_base] struct {
|
|
[charset(DOS),value("MSDS")] uint8 msds[4];
|
|
[subcontext(0)] ldapControlDirSyncBlob blob;
|
|
} ldapControlDirSyncCookie;
|
|
|
|
void decode_ldapControlDirSync(
|
|
[in] ldapControlDirSyncCookie cookie
|
|
);
|
|
|
|
typedef [public] struct {
|
|
uint32 marker;
|
|
DATA_BLOB data;
|
|
} DsCompressedChunk;
|
|
|
|
typedef [public] struct {
|
|
DsCompressedChunk chunks[5];
|
|
} DsCompressedBlob;
|
|
|
|
void decode_DsCompressed(
|
|
[in] DsCompressedBlob blob
|
|
);
|
|
}
|