Merge branch 'v4-0-test' of ssh://git.samba.org/data/git/samba into v4-0-trivial
[kai/samba.git] / source4 / librpc / idl / drsblobs.idl
1 #include "idl_types.h"
2
3 import "drsuapi.idl";
4
5 [
6   uuid("12345778-1234-abcd-0001-00000001"),
7   version(0.0),
8   pointer_default(unique),
9   helpstring("Active Directory Replication LDAP Blobs")
10 ]
11 interface drsblobs {
12         typedef bitmap drsuapi_DsReplicaSyncOptions drsuapi_DsReplicaSyncOptions;
13         typedef bitmap drsuapi_DsReplicaNeighbourFlags drsuapi_DsReplicaNeighbourFlags;
14         typedef [v1_enum] enum drsuapi_DsAttributeId drsuapi_DsAttributeId;
15
16         /*
17          * replPropertyMetaData
18          * w2k  uses version 1
19          * w2k3 uses version 1
20          */
21         typedef struct {
22                 drsuapi_DsAttributeId attid;
23                 uint32 version;
24                 NTTIME_1sec originating_change_time;
25                 GUID originating_invocation_id;
26                 hyper originating_usn;
27                 hyper local_usn;
28         } replPropertyMetaData1;
29
30         typedef struct {
31                 uint32 count;
32                 uint32 reserved;
33                 replPropertyMetaData1 array[count];
34         } replPropertyMetaDataCtr1;
35
36         typedef [nodiscriminant] union {
37                 [case(1)] replPropertyMetaDataCtr1 ctr1;
38         } replPropertyMetaDataCtr;
39         
40         typedef [public] struct {
41                 uint32 version;
42                 uint32 reserved;
43                 [switch_is(version)] replPropertyMetaDataCtr ctr;
44         } replPropertyMetaDataBlob;
45
46         void decode_replPropertyMetaData(
47                 [in] replPropertyMetaDataBlob blob
48                 );
49
50         /*
51          * replUpToDateVector
52          * w2k  uses version 1
53          * w2k3 uses version 2
54          */
55         typedef struct {
56                 uint32 count;
57                 uint32 reserved;
58                 drsuapi_DsReplicaCursor cursors[count];
59         } replUpToDateVectorCtr1;
60
61         typedef struct {
62                 uint32 count;
63                 uint32 reserved;
64                 drsuapi_DsReplicaCursor2 cursors[count];
65         } replUpToDateVectorCtr2;
66
67         typedef [nodiscriminant] union {
68                 [case(1)] replUpToDateVectorCtr1 ctr1;
69                 [case(2)] replUpToDateVectorCtr2 ctr2;
70         } replUpToDateVectorCtr;
71
72         typedef [public] struct {
73                 uint32 version;
74                 uint32 reserved;
75                 [switch_is(version)] replUpToDateVectorCtr ctr;
76         } replUpToDateVectorBlob;
77
78         void decode_replUpToDateVector(
79                 [in] replUpToDateVectorBlob blob
80                 );
81
82         /*
83          * repsFrom/repsTo
84          * w2k  uses version 1
85          * w2k3 uses version 1
86          */
87         typedef [public,gensize] struct {
88                 [value(strlen(dns_name)+1)] uint32 __dns_name_size;
89                 [charset(DOS)] uint8 dns_name[__dns_name_size];
90         } repsFromTo1OtherInfo;
91
92         typedef [public,gensize,flag(NDR_PAHEX)] struct {
93                 /* this includes the 8 bytes of the repsFromToBlob header */
94                 [value(ndr_size_repsFromTo1(r, ndr->flags)+8)] uint32 blobsize;
95                 uint32 consecutive_sync_failures;
96                 NTTIME_1sec last_success;
97                 NTTIME_1sec last_attempt;
98                 WERROR result_last_attempt;
99                 [relative] repsFromTo1OtherInfo *other_info;
100                 [value(ndr_size_repsFromTo1OtherInfo(other_info, ndr->flags))] uint32 other_info_length;
101                 drsuapi_DsReplicaNeighbourFlags replica_flags;
102                 uint8 schedule[84];
103                 uint32 reserved;
104                 drsuapi_DsReplicaHighWaterMark highwatermark;
105                 GUID source_dsa_obj_guid; /* the 'objectGuid' field of the CN=NTDS Settings object */
106                 GUID source_dsa_invocation_id; /* the 'invocationId' field of the CN=NTDS Settings object */
107                 GUID transport_guid;
108         } repsFromTo1;
109
110         typedef [nodiscriminant] union {
111                 [case(1)] repsFromTo1 ctr1;
112         } repsFromTo;
113
114         typedef [public] struct {
115                 uint32 version;
116                 uint32 reserved;
117                 [switch_is(version)] repsFromTo ctr;
118         } repsFromToBlob;
119
120         void decode_repsFromTo(
121                 [in] repsFromToBlob blob
122                 );
123
124         /*
125          * partialAttributeSet
126          * w2k  uses version 1
127          * w2k3 uses version 1
128          */
129         typedef struct {
130                 uint32 count;
131                 drsuapi_DsAttributeId array[count];
132         } partialAttributeSetCtr1;
133
134         typedef [nodiscriminant] union {
135                 [case(1)] partialAttributeSetCtr1 ctr1;
136         } partialAttributeSetCtr;
137
138         typedef [public] struct {
139                 uint32 version;
140                 uint32 reserved;
141                 [switch_is(version)] partialAttributeSetCtr ctr;
142         } partialAttributeSetBlob;
143
144         void decode_partialAttributeSet(
145                 [in] partialAttributeSetBlob blob
146                 );
147
148         /*
149          * prefixMap
150          * w2k  unknown
151          * w2k3 unknown
152          * samba4 uses 0x44534442 'DSDB'
153          *
154          * as we windows don't return the prefixMap attribute when you ask for
155          * we don't know the format, but the attribute is not replicated
156          * so that we can choose our own format...
157          */
158         typedef [v1_enum] enum {
159                 PREFIX_MAP_VERSION_DSDB = 0x44534442
160         } prefixMapVersion;
161
162         typedef [nodiscriminant] union {
163                 [case(PREFIX_MAP_VERSION_DSDB)] drsuapi_DsReplicaOIDMapping_Ctr dsdb;
164         } prefixMapCtr;
165
166         typedef [public] struct {
167                 prefixMapVersion version;
168                 uint32 reserved;
169                 [switch_is(version)] prefixMapCtr ctr;
170         } prefixMapBlob;
171
172         void decode_prefixMap(
173                 [in] prefixMapBlob blob
174                 );
175
176         /*
177          * the cookie for the LDAP dirsync control
178          */
179         typedef [nodiscriminant,gensize] union {
180                 [case(0)];
181                 [default] replUpToDateVectorBlob uptodateness_vector;
182         } ldapControlDirSyncExtra;
183
184         typedef struct {
185                 [value(3)] uint32 u1;
186                 NTTIME time;
187                 uint32 u2;
188                 uint32 u3;
189                 [value(ndr_size_ldapControlDirSyncExtra(&extra, extra.uptodateness_vector.version, 0))] 
190                         uint32 extra_length;
191                 drsuapi_DsReplicaHighWaterMark highwatermark;
192                 GUID guid1;
193                 [switch_is(extra_length)] ldapControlDirSyncExtra extra;
194         } ldapControlDirSyncBlob;
195
196         typedef [public,relative_base] struct {
197                 [charset(DOS),value("MSDS")] uint8 msds[4];
198                 [subcontext(0)] ldapControlDirSyncBlob blob;
199         } ldapControlDirSyncCookie;
200
201         void decode_ldapControlDirSync(
202                 [in] ldapControlDirSyncCookie cookie
203                 );
204
205         typedef struct {
206                 [value(2*strlen_m(name))] uint16 name_len;
207                 [value(strlen(data))] uint16 data_len;
208                 uint16 unknown1; /* 2 for name = 'Packages', 1 for name = 'Primary:*' */
209                 [charset(UTF16)] uint8 name[name_len];
210                 /* 
211                  * the data field contains data as HEX strings
212                  *
213                  * 'Packages':
214                  *   data contains the list of packages
215                  *   as non termiated UTF16 strings with
216                  *   a UTF16 NULL byte as separator
217                  *
218                  * 'Primary:Kerberos':
219                  *    ...
220                  *
221                  * 'Primary:WDigest':
222                  *    ...
223                  *
224                  * 'Primary:CLEARTEXT':
225                  *    data contains the cleartext password
226                  *    as UTF16 string encoded as HEX string
227                  */
228                 [charset(DOS)] uint8 data[data_len];
229         } supplementalCredentialsPackage;
230
231         /* this are 0x30 (48) whitespaces (0x20) followed by 'P' (0x50) */
232         const string SUPPLEMENTAL_CREDENTIALS_PREFIX = "                                                P";
233
234         typedef [gensize] struct {
235                 [value(SUPPLEMENTAL_CREDENTIALS_PREFIX),charset(UTF16)] uint16 prefix[0x31];
236                 uint16 num_packages;
237                 supplementalCredentialsPackage packages[num_packages];
238         } supplementalCredentialsSubBlob;
239
240         typedef [public] struct {
241                 [value(0)] uint32 unknown1;
242                 [value(ndr_size_supplementalCredentialsSubBlob(&sub, ndr->flags))] uint32 __ndr_size;
243                 [value(0)] uint32 unknown2;
244                 [subcontext(0),subcontext_size(__ndr_size)] supplementalCredentialsSubBlob sub;
245                 [value(0)] uint8 unknown3;
246         } supplementalCredentialsBlob;
247
248         void decode_supplementalCredentials(
249                 [in] supplementalCredentialsBlob blob
250                 );
251
252         typedef [public] struct {
253                 [flag(STR_NOTERM|NDR_REMAINING)] string_array names;
254         } package_PackagesBlob;
255
256         void decode_Packages(
257                 [in] package_PackagesBlob blob
258                 );
259
260         typedef struct {
261                 [value(2*strlen_m(string))] uint16 length;
262                 [value(2*strlen_m(string))] uint16 size;
263                 [relative,subcontext(0),subcontext_size(size),flag(STR_NOTERM|NDR_REMAINING)] string *string;
264         } package_PrimaryKerberosString;
265
266         typedef struct {
267                 uint32 keytype;
268                 [value((value?value->length:0))] uint32 value_len;
269                 [relative,subcontext(0),subcontext_size(value_len),flag(NDR_REMAINING)] DATA_BLOB *value;
270                 [value(0)] uint32 unknown1;
271                 [value(0)] uint32 unknown2;
272         } package_PrimaryKerberosKey;
273
274         typedef struct {
275                 uint16 num_keys;
276                 uint16 num_old_keys;
277                 package_PrimaryKerberosString salt;
278                 [value(0)] uint32 unknown1;
279                 [value(0)] uint32 unknown2;
280                 package_PrimaryKerberosKey keys[num_keys];
281                 package_PrimaryKerberosKey old_keys[num_old_keys];
282                 udlong unknown3[num_keys];
283                 udlong unknown3_old[num_old_keys];
284         } package_PrimaryKerberosCtr3;
285
286         typedef [nodiscriminant] union {
287                 [case(3)] package_PrimaryKerberosCtr3 ctr3;
288         } package_PrimaryKerberosCtr;
289
290         typedef [public] struct {
291                 [value(3)] uint32 version;
292                 [switch_is(version)] package_PrimaryKerberosCtr ctr;
293         } package_PrimaryKerberosBlob;
294
295         void decode_PrimaryKerberos(
296                 [in] package_PrimaryKerberosBlob blob
297                 );
298
299         typedef [public] struct {
300                 [flag(STR_NOTERM|NDR_REMAINING)] string cleartext;
301         } package_PrimaryCLEARTEXTBlob;
302
303         void decode_PrimaryCLEARTEXT(
304                 [in] package_PrimaryCLEARTEXTBlob blob
305                 );
306
307         typedef [flag(NDR_PAHEX)] struct {
308                 uint8 hash[16];
309         } package_PrimaryWDigestHash;
310
311         typedef [public] struct {
312                 [value(0x31)] uint16 unknown1;
313                 [value(0x01)] uint8  unknown2;
314                 uint8  num_hashes;
315                 [value(0)] uint32 unknown3;
316                 [value(0)] udlong uuknown4;
317                 package_PrimaryWDigestHash hashes[num_hashes];
318         } package_PrimaryWDigestBlob;
319
320         void decode_PrimaryWDigest(
321                 [in] package_PrimaryWDigestBlob blob
322                 );
323
324         typedef struct {
325                 NTTIME time1;
326                 uint32 unknown1;
327                 /* 
328                  * the secret value is encoded as UTF16 if it's a string
329                  * but krb5 trusts have random bytes here, so converting to UTF16
330                  * mayfail...
331                  *
332                  * TODO: We should try handle the case of a random buffer in all places
333                  *       we deal with cleartext passwords from windows
334                  *
335                  * so we don't use this:
336                  *
337                  * uint32 value_len;
338                  * [charset(UTF16)] uint8 value[value_len];
339                  */
340                 DATA_BLOB value;
341                 [flag(NDR_ALIGN4)] DATA_BLOB _pad;
342         } trustAuthInOutSecret1;
343
344         typedef struct {
345                 [relative] trustAuthInOutSecret1 *value1;
346                 [relative] trustAuthInOutSecret1 *value2;
347         } trustAuthInOutCtr1;
348
349         typedef struct {
350                 NTTIME time1;
351                 uint32 unknown1;
352                 DATA_BLOB value;
353                 NTTIME time2;
354                 uint32 unknown2;
355                 uint32 unknown3;
356                 uint32 unknown4;
357                 [flag(NDR_ALIGN4)] DATA_BLOB _pad;
358         } trustAuthInOutSecret2V1;
359
360         typedef struct {
361                 NTTIME time1;
362                 uint32 unknown1;
363                 DATA_BLOB value;
364                 NTTIME time2;
365                 uint32 unknown2;
366                 uint32 unknown3;
367                 [flag(NDR_ALIGN4)] DATA_BLOB _pad;
368         } trustAuthInOutSecret2V2;
369
370         typedef struct {
371                 [relative] trustAuthInOutSecret2V1 *value1;
372                 [relative] trustAuthInOutSecret2V2 *value2;
373         } trustAuthInOutCtr2;
374
375         typedef [nodiscriminant] union {
376                 [case(1)] trustAuthInOutCtr1 ctr1;
377                 [case(2)] trustAuthInOutCtr2 ctr2;
378         } trustAuthInOutCtr;
379
380         typedef [public] struct {
381                 uint32 version;
382                 [switch_is(version)] trustAuthInOutCtr ctr;
383         } trustAuthInOutBlob;
384
385         void decode_trustAuthInOut(
386                 [in] trustAuthInOutBlob blob
387                 );
388
389         typedef [public] struct {
390                 uint32 marker;
391                 DATA_BLOB data;
392         } DsCompressedChunk;
393
394         typedef [public] struct {
395                 DsCompressedChunk chunks[5];
396         } DsCompressedBlob;
397
398         void decode_DsCompressed(
399                 [in] DsCompressedBlob blob
400                 );
401 }