summaryrefslogtreecommitdiff
path: root/source4/librpc/idl/drsblobs.idl
blob: 4a3cf2bb4527b55e6d2e42b9bfad4e8464892b30 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
#include "idl_types.h"

[
  uuid("38578646-4566-4564-2244-275796345667"),
  version(0.0),
  helpstring("Active Directory Replication LDAP Blobs")
]
interface drsblobs {
	/*
	 * replPropertyMetaData
	 * w2k  uses version 1
	 * w2k3 uses version 1
	 */
	typedef struct {
		uint32 attribute_id;
		uint32 version;
		NTTIME_1sec orginating_time;
		GUID orginating_dsa; /* the 'invocationId' ? */
		uint64 orginating_usn;
		uint64 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 {
		GUID invocation_id_guid; /* the 'invocationId' field of the CN=NTDS Settings object */
		uint64 highest_usn; /* updated after a full replication cycle */
	} replUpToDateVector1;

	typedef struct {
		uint32 count;
		uint32 reserved;
		replUpToDateVector1 array[count];
	} replUpToDateVectorCtr1;

	typedef struct {
		GUID invocation_id_guid; /* the 'invocationId' field of the CN=NTDS Settings object */
		uint64 highest_usn; /* updated after a full replication cycle */
		NTTIME_1sec last_success;
	} replUpToDateVector2;

	typedef struct {
		uint32 count;
		uint32 reserved;
		replUpToDateVector2 array[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 [gensize] struct {
		asclstr dns_name;
	} repsFromTo1OtherInfo;

	typedef [gensize,flag(NDR_PAHEX)] struct {
		/* this includes the 8 bytes of the repsFromToBlob header */
		[value(ndr_size_repsFromTo1(8, r, ndr->flags))] uint32 blobsize;
		uint32 consecutive_failures;
		NTTIME_1sec last_success;
		NTTIME_1sec last_attempt;
		WERROR result_last_attempt;
		[relative,length_is(other_info_length)] repsFromTo1OtherInfo *other_info;
		[value(ndr_size_repsFromTo1OtherInfo(0, r->other_info, ndr->flags))] uint32 other_info_length;
		uint32 replica_flags;
		uint8 schedule[84];
		uint32 reserved;
		uint64 tmp_highest_usn; /* updated after each object update */
		uint64 reserved_usn;
		uint64 highest_usn; /* updated after a full replication cycle */
		GUID dsa_guid; /* the 'objectGuid' field of the CN=NTDS Settings object */
		GUID invocation_id_guid; /* 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
		);
}