s4-drs: fix the logic to allow REPL_SECRET if the account has GET_ALL_CHANGES
[Samba/vl.git] / source4 / rpc_server / drsuapi / getncchanges.c
blob09406d67700df3ea63f8a27fddf554f8b1258976
1 /*
2 Unix SMB/CIFS implementation.
4 implement the DSGetNCChanges call
6 Copyright (C) Anatoliy Atanasov 2009
7 Copyright (C) Andrew Tridgell 2009
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>.
23 #include "includes.h"
24 #include "rpc_server/dcerpc_server.h"
25 #include "dsdb/samdb/samdb.h"
26 #include "param/param.h"
27 #include "librpc/gen_ndr/ndr_drsblobs.h"
28 #include "librpc/gen_ndr/ndr_drsuapi.h"
29 #include "librpc/gen_ndr/ndr_security.h"
30 #include "libcli/security/security.h"
31 #include "libcli/security/session.h"
32 #include "rpc_server/drsuapi/dcesrv_drsuapi.h"
33 #include "rpc_server/dcerpc_server_proto.h"
34 #include "../libcli/drsuapi/drsuapi.h"
35 #include "lib/util/binsearch.h"
36 #include "lib/util/tsort.h"
37 #include "auth/session.h"
38 #include "dsdb/common/util.h"
41 build a DsReplicaObjectIdentifier from a ldb msg
43 static struct drsuapi_DsReplicaObjectIdentifier *get_object_identifier(TALLOC_CTX *mem_ctx,
44 struct ldb_message *msg)
46 struct drsuapi_DsReplicaObjectIdentifier *identifier;
47 struct dom_sid *sid;
49 identifier = talloc(mem_ctx, struct drsuapi_DsReplicaObjectIdentifier);
50 if (identifier == NULL) {
51 return NULL;
54 identifier->dn = ldb_dn_alloc_linearized(identifier, msg->dn);
55 identifier->guid = samdb_result_guid(msg, "objectGUID");
57 sid = samdb_result_dom_sid(identifier, msg, "objectSid");
58 if (sid) {
59 identifier->sid = *sid;
60 } else {
61 ZERO_STRUCT(identifier->sid);
63 return identifier;
66 static int udv_compare(const struct GUID *guid1, struct GUID guid2)
68 return GUID_compare(guid1, &guid2);
72 see if we can filter an attribute using the uptodateness_vector
74 static bool udv_filter(const struct drsuapi_DsReplicaCursorCtrEx *udv,
75 const struct GUID *originating_invocation_id,
76 uint64_t originating_usn)
78 const struct drsuapi_DsReplicaCursor *c;
79 if (udv == NULL) return false;
80 BINARY_ARRAY_SEARCH(udv->cursors, udv->count, source_dsa_invocation_id,
81 originating_invocation_id, udv_compare, c);
82 if (c && originating_usn <= c->highest_usn) {
83 return true;
85 return false;
89 static int attid_cmp(enum drsuapi_DsAttributeId a1, enum drsuapi_DsAttributeId a2)
91 if (a1 == a2) return 0;
92 return ((uint32_t)a1) > ((uint32_t)a2) ? 1 : -1;
96 check if an attribute is in a partial_attribute_set
98 static bool check_partial_attribute_set(const struct dsdb_attribute *sa,
99 struct drsuapi_DsPartialAttributeSet *pas)
101 enum drsuapi_DsAttributeId *result;
102 BINARY_ARRAY_SEARCH_V(pas->attids, pas->num_attids, (enum drsuapi_DsAttributeId)sa->attributeID_id,
103 attid_cmp, result);
104 return result != NULL;
109 drsuapi_DsGetNCChanges for one object
111 static WERROR get_nc_changes_build_object(struct drsuapi_DsReplicaObjectListItemEx *obj,
112 struct ldb_message *msg,
113 struct ldb_context *sam_ctx,
114 struct ldb_dn *ncRoot_dn,
115 bool is_schema_nc,
116 struct dsdb_schema *schema,
117 DATA_BLOB *session_key,
118 uint64_t highest_usn,
119 uint32_t replica_flags,
120 struct drsuapi_DsPartialAttributeSet *partial_attribute_set,
121 struct drsuapi_DsReplicaCursorCtrEx *uptodateness_vector,
122 enum drsuapi_DsExtendedOperation extended_op,
123 bool force_object_return)
125 const struct ldb_val *md_value;
126 uint32_t i, n;
127 struct replPropertyMetaDataBlob md;
128 uint32_t rid = 0;
129 enum ndr_err_code ndr_err;
130 uint32_t *attids;
131 const char *rdn;
132 const struct dsdb_attribute *rdn_sa;
133 unsigned int instanceType;
134 struct dsdb_syntax_ctx syntax_ctx;
136 /* make dsdb sytanx context for conversions */
137 dsdb_syntax_ctx_init(&syntax_ctx, sam_ctx, schema);
138 syntax_ctx.is_schema_nc = is_schema_nc;
140 instanceType = ldb_msg_find_attr_as_uint(msg, "instanceType", 0);
141 if (instanceType & INSTANCE_TYPE_IS_NC_HEAD) {
142 obj->is_nc_prefix = true;
143 obj->parent_object_guid = NULL;
144 } else {
145 obj->is_nc_prefix = false;
146 obj->parent_object_guid = talloc(obj, struct GUID);
147 if (obj->parent_object_guid == NULL) {
148 return WERR_DS_DRA_INTERNAL_ERROR;
150 *obj->parent_object_guid = samdb_result_guid(msg, "parentGUID");
151 if (GUID_all_zero(obj->parent_object_guid)) {
152 DEBUG(0,(__location__ ": missing parentGUID for %s\n",
153 ldb_dn_get_linearized(msg->dn)));
154 return WERR_DS_DRA_INTERNAL_ERROR;
157 obj->next_object = NULL;
159 md_value = ldb_msg_find_ldb_val(msg, "replPropertyMetaData");
160 if (!md_value) {
161 /* nothing to send */
162 return WERR_OK;
165 if (instanceType & INSTANCE_TYPE_UNINSTANT) {
166 /* don't send uninstantiated objects */
167 return WERR_OK;
170 ndr_err = ndr_pull_struct_blob(md_value, obj, &md,
171 (ndr_pull_flags_fn_t)ndr_pull_replPropertyMetaDataBlob);
172 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {
173 return WERR_DS_DRA_INTERNAL_ERROR;
176 if (md.version != 1) {
177 return WERR_DS_DRA_INTERNAL_ERROR;
180 rdn = ldb_dn_get_rdn_name(msg->dn);
181 if (rdn == NULL) {
182 DEBUG(0,(__location__ ": No rDN for %s\n", ldb_dn_get_linearized(msg->dn)));
183 return WERR_DS_DRA_INTERNAL_ERROR;
186 rdn_sa = dsdb_attribute_by_lDAPDisplayName(schema, rdn);
187 if (rdn_sa == NULL) {
188 DEBUG(0,(__location__ ": Can't find dsds_attribute for rDN %s in %s\n",
189 rdn, ldb_dn_get_linearized(msg->dn)));
190 return WERR_DS_DRA_INTERNAL_ERROR;
193 obj->meta_data_ctr = talloc(obj, struct drsuapi_DsReplicaMetaDataCtr);
194 attids = talloc_array(obj, uint32_t, md.ctr.ctr1.count);
196 obj->object.identifier = get_object_identifier(obj, msg);
197 if (obj->object.identifier == NULL) {
198 return WERR_NOMEM;
200 dom_sid_split_rid(NULL, &obj->object.identifier->sid, NULL, &rid);
202 obj->meta_data_ctr->meta_data = talloc_array(obj, struct drsuapi_DsReplicaMetaData, md.ctr.ctr1.count);
203 for (n=i=0; i<md.ctr.ctr1.count; i++) {
204 const struct dsdb_attribute *sa;
205 bool force_attribute = false;
207 /* if the attribute has not changed, and it is not the
208 instanceType then don't include it */
209 if (md.ctr.ctr1.array[i].local_usn < highest_usn &&
210 extended_op != DRSUAPI_EXOP_REPL_SECRET &&
211 md.ctr.ctr1.array[i].attid != DRSUAPI_ATTID_instanceType) continue;
213 /* don't include the rDN */
214 if (md.ctr.ctr1.array[i].attid == rdn_sa->attributeID_id) continue;
216 sa = dsdb_attribute_by_attributeID_id(schema, md.ctr.ctr1.array[i].attid);
217 if (!sa) {
218 DEBUG(0,(__location__ ": Failed to find attribute in schema for attrid %u mentioned in replPropertyMetaData of %s\n",
219 (unsigned int)md.ctr.ctr1.array[i].attid,
220 ldb_dn_get_linearized(msg->dn)));
221 return WERR_DS_DRA_INTERNAL_ERROR;
224 if (sa->linkID) {
225 struct ldb_message_element *el;
226 el = ldb_msg_find_element(msg, sa->lDAPDisplayName);
227 if (el && el->num_values && dsdb_dn_is_upgraded_link_val(&el->values[0])) {
228 /* don't send upgraded links inline */
229 continue;
233 if (extended_op == DRSUAPI_EXOP_REPL_SECRET &&
234 !dsdb_attr_in_rodc_fas(sa)) {
235 force_attribute = true;
236 DEBUG(4,("Forcing attribute %s in %s\n",
237 sa->lDAPDisplayName, ldb_dn_get_linearized(msg->dn)));
240 /* filter by uptodateness_vector */
241 if (md.ctr.ctr1.array[i].attid != DRSUAPI_ATTID_instanceType &&
242 !force_attribute &&
243 udv_filter(uptodateness_vector,
244 &md.ctr.ctr1.array[i].originating_invocation_id,
245 md.ctr.ctr1.array[i].originating_usn)) {
246 continue;
249 /* filter by partial_attribute_set */
250 if (partial_attribute_set && !check_partial_attribute_set(sa, partial_attribute_set)) {
251 continue;
254 obj->meta_data_ctr->meta_data[n].originating_change_time = md.ctr.ctr1.array[i].originating_change_time;
255 obj->meta_data_ctr->meta_data[n].version = md.ctr.ctr1.array[i].version;
256 obj->meta_data_ctr->meta_data[n].originating_invocation_id = md.ctr.ctr1.array[i].originating_invocation_id;
257 obj->meta_data_ctr->meta_data[n].originating_usn = md.ctr.ctr1.array[i].originating_usn;
258 attids[n] = md.ctr.ctr1.array[i].attid;
259 n++;
262 /* ignore it if its an empty change. Note that renames always
263 * change the 'name' attribute, so they won't be ignored by
264 * this
266 * the force_object_return check is used to force an empty
267 * object return when we timeout in the getncchanges loop.
268 * This allows us to return an empty object, which keeps the
269 * client happy while preventing timeouts
271 if (n == 0 ||
272 (n == 1 &&
273 attids[0] == DRSUAPI_ATTID_instanceType &&
274 !force_object_return)) {
275 talloc_free(obj->meta_data_ctr);
276 obj->meta_data_ctr = NULL;
277 return WERR_OK;
280 obj->meta_data_ctr->count = n;
282 obj->object.flags = DRSUAPI_DS_REPLICA_OBJECT_FROM_MASTER;
283 obj->object.attribute_ctr.num_attributes = obj->meta_data_ctr->count;
284 obj->object.attribute_ctr.attributes = talloc_array(obj, struct drsuapi_DsReplicaAttribute,
285 obj->object.attribute_ctr.num_attributes);
286 if (obj->object.attribute_ctr.attributes == NULL) {
287 return WERR_NOMEM;
291 * Note that the meta_data array and the attributes array must
292 * be the same size and in the same order
294 for (i=0; i<obj->object.attribute_ctr.num_attributes; i++) {
295 struct ldb_message_element *el;
296 WERROR werr;
297 const struct dsdb_attribute *sa;
299 sa = dsdb_attribute_by_attributeID_id(schema, attids[i]);
300 if (!sa) {
301 DEBUG(0,("Unable to find attributeID %u in schema\n", attids[i]));
302 return WERR_DS_DRA_INTERNAL_ERROR;
305 el = ldb_msg_find_element(msg, sa->lDAPDisplayName);
306 if (el == NULL) {
307 /* this happens for attributes that have been removed */
308 DEBUG(5,("No element '%s' for attributeID %u in message\n",
309 sa->lDAPDisplayName, attids[i]));
310 ZERO_STRUCT(obj->object.attribute_ctr.attributes[i]);
311 obj->object.attribute_ctr.attributes[i].attid =
312 dsdb_attribute_get_attid(sa, syntax_ctx.is_schema_nc);
313 } else {
314 werr = sa->syntax->ldb_to_drsuapi(&syntax_ctx, sa, el, obj,
315 &obj->object.attribute_ctr.attributes[i]);
316 if (!W_ERROR_IS_OK(werr)) {
317 DEBUG(0,("Unable to convert %s to DRS object - %s\n",
318 sa->lDAPDisplayName, win_errstr(werr)));
319 return werr;
321 /* if DRSUAPI_DRS_SPECIAL_SECRET_PROCESSING is set
322 * check if attribute is secret and send a null value
324 if (replica_flags & DRSUAPI_DRS_SPECIAL_SECRET_PROCESSING) {
325 drsuapi_process_secret_attribute(&obj->object.attribute_ctr.attributes[i],
326 &obj->meta_data_ctr->meta_data[i]);
328 /* some attributes needs to be encrypted
329 before being sent */
330 werr = drsuapi_encrypt_attribute(obj, session_key, rid,
331 &obj->object.attribute_ctr.attributes[i]);
332 if (!W_ERROR_IS_OK(werr)) {
333 DEBUG(0,("Unable to encrypt %s in DRS object - %s\n",
334 sa->lDAPDisplayName, win_errstr(werr)));
335 return werr;
340 return WERR_OK;
344 add one linked attribute from an object to the list of linked
345 attributes in a getncchanges request
347 static WERROR get_nc_changes_add_la(TALLOC_CTX *mem_ctx,
348 struct ldb_context *sam_ctx,
349 const struct dsdb_schema *schema,
350 const struct dsdb_attribute *sa,
351 struct ldb_message *msg,
352 struct dsdb_dn *dsdb_dn,
353 struct drsuapi_DsReplicaLinkedAttribute **la_list,
354 uint32_t *la_count)
356 struct drsuapi_DsReplicaLinkedAttribute *la;
357 bool active;
358 NTSTATUS status;
359 WERROR werr;
361 (*la_list) = talloc_realloc(mem_ctx, *la_list, struct drsuapi_DsReplicaLinkedAttribute, (*la_count)+1);
362 W_ERROR_HAVE_NO_MEMORY(*la_list);
364 la = &(*la_list)[*la_count];
366 la->identifier = get_object_identifier(*la_list, msg);
367 W_ERROR_HAVE_NO_MEMORY(la->identifier);
369 active = (dsdb_dn_rmd_flags(dsdb_dn->dn) & DSDB_RMD_FLAG_DELETED) == 0;
371 if (!active) {
372 /* We have to check that the inactive link still point to an existing object */
373 struct GUID guid;
374 struct ldb_dn *tdn;
375 int ret;
376 const char *v;
378 v = ldb_msg_find_attr_as_string(msg, "isDeleted", "FALSE");
379 if (strncmp(v, "TRUE", 4) == 0) {
381 * Note: we skip the transmition of the deleted link even if the other part used to
382 * know about it because when we transmit the deletion of the object, the link will
383 * be deleted too due to deletion of object where link points and Windows do so.
385 if (dsdb_functional_level(sam_ctx) >= DS_DOMAIN_FUNCTION_2008_R2) {
386 v = ldb_msg_find_attr_as_string(msg, "isRecycled", "FALSE");
388 * On Windows 2008R2 isRecycled is always present even if FL or DL are < FL 2K8R2
389 * if it join an existing domain with deleted objets, it firsts impose to have a
390 * schema with the is-Recycled object and for all deleted objects it adds the isRecycled
391 * either during initial replication or after the getNCChanges.
392 * Behavior of samba has been changed to always have this attribute if it's present in the schema.
394 * So if FL <2K8R2 isRecycled might be here or not but we don't care, it's meaning less.
395 * If FL >=2K8R2 we are sure that this attribute will be here.
396 * For this kind of forest level we do not return the link if the object is recycled
397 * (isRecycled = true).
399 if (strncmp(v, "TRUE", 4) == 0) {
400 DEBUG(2, (" object %s is recycled, not returning linked attribute !\n",
401 ldb_dn_get_linearized(msg->dn)));
402 return WERR_OK;
404 } else {
405 return WERR_OK;
408 status = dsdb_get_extended_dn_guid(dsdb_dn->dn, &guid, "GUID");
409 if (!NT_STATUS_IS_OK(status)) {
410 DEBUG(0,(__location__ " Unable to extract GUID in linked attribute '%s' in '%s'\n",
411 sa->lDAPDisplayName, ldb_dn_get_linearized(msg->dn)));
412 return ntstatus_to_werror(status);
414 ret = dsdb_find_dn_by_guid(sam_ctx, mem_ctx, &guid, &tdn);
415 if (ret == LDB_ERR_NO_SUCH_OBJECT) {
416 DEBUG(2, (" Search of guid %s returned 0 objects, skipping it !\n",
417 GUID_string(mem_ctx, &guid)));
418 return WERR_OK;
419 } else if (ret != LDB_SUCCESS) {
420 DEBUG(0, (__location__ " Search of guid %s failed with error code %d\n",
421 GUID_string(mem_ctx, &guid),
422 ret));
423 return WERR_OK;
426 la->attid = sa->attributeID_id;
427 la->flags = active?DRSUAPI_DS_LINKED_ATTRIBUTE_FLAG_ACTIVE:0;
429 status = dsdb_get_extended_dn_uint32(dsdb_dn->dn, &la->meta_data.version, "RMD_VERSION");
430 if (!NT_STATUS_IS_OK(status)) {
431 DEBUG(0,(__location__ " No RMD_VERSION in linked attribute '%s' in '%s'\n",
432 sa->lDAPDisplayName, ldb_dn_get_linearized(msg->dn)));
433 return ntstatus_to_werror(status);
435 status = dsdb_get_extended_dn_nttime(dsdb_dn->dn, &la->meta_data.originating_change_time, "RMD_CHANGETIME");
436 if (!NT_STATUS_IS_OK(status)) {
437 DEBUG(0,(__location__ " No RMD_CHANGETIME in linked attribute '%s' in '%s'\n",
438 sa->lDAPDisplayName, ldb_dn_get_linearized(msg->dn)));
439 return ntstatus_to_werror(status);
441 status = dsdb_get_extended_dn_guid(dsdb_dn->dn, &la->meta_data.originating_invocation_id, "RMD_INVOCID");
442 if (!NT_STATUS_IS_OK(status)) {
443 DEBUG(0,(__location__ " No RMD_INVOCID in linked attribute '%s' in '%s'\n",
444 sa->lDAPDisplayName, ldb_dn_get_linearized(msg->dn)));
445 return ntstatus_to_werror(status);
447 status = dsdb_get_extended_dn_uint64(dsdb_dn->dn, &la->meta_data.originating_usn, "RMD_ORIGINATING_USN");
448 if (!NT_STATUS_IS_OK(status)) {
449 DEBUG(0,(__location__ " No RMD_ORIGINATING_USN in linked attribute '%s' in '%s'\n",
450 sa->lDAPDisplayName, ldb_dn_get_linearized(msg->dn)));
451 return ntstatus_to_werror(status);
454 status = dsdb_get_extended_dn_nttime(dsdb_dn->dn, &la->originating_add_time, "RMD_ADDTIME");
455 if (!NT_STATUS_IS_OK(status)) {
456 /* this is possible for upgraded links */
457 la->originating_add_time = la->meta_data.originating_change_time;
460 werr = dsdb_dn_la_to_blob(sam_ctx, sa, schema, *la_list, dsdb_dn, &la->value.blob);
461 W_ERROR_NOT_OK_RETURN(werr);
463 (*la_count)++;
464 return WERR_OK;
469 add linked attributes from an object to the list of linked
470 attributes in a getncchanges request
472 static WERROR get_nc_changes_add_links(struct ldb_context *sam_ctx,
473 TALLOC_CTX *mem_ctx,
474 struct ldb_dn *ncRoot_dn,
475 struct dsdb_schema *schema,
476 uint64_t highest_usn,
477 uint32_t replica_flags,
478 struct ldb_message *msg,
479 struct drsuapi_DsReplicaLinkedAttribute **la_list,
480 uint32_t *la_count,
481 struct drsuapi_DsReplicaCursorCtrEx *uptodateness_vector)
483 unsigned int i;
484 TALLOC_CTX *tmp_ctx = talloc_new(mem_ctx);
485 uint64_t uSNChanged = ldb_msg_find_attr_as_int(msg, "uSNChanged", -1);
487 for (i=0; i<msg->num_elements; i++) {
488 struct ldb_message_element *el = &msg->elements[i];
489 const struct dsdb_attribute *sa;
490 unsigned int j;
492 sa = dsdb_attribute_by_lDAPDisplayName(schema, el->name);
494 if (!sa || sa->linkID == 0 || (sa->linkID & 1)) {
495 /* we only want forward links */
496 continue;
499 if (el->num_values && !dsdb_dn_is_upgraded_link_val(&el->values[0])) {
500 /* its an old style link, it will have been
501 * sent in the main replication data */
502 continue;
505 for (j=0; j<el->num_values; j++) {
506 struct dsdb_dn *dsdb_dn;
507 uint64_t local_usn;
508 NTSTATUS status;
509 WERROR werr;
511 dsdb_dn = dsdb_dn_parse(tmp_ctx, sam_ctx, &el->values[j], sa->syntax->ldap_oid);
512 if (dsdb_dn == NULL) {
513 DEBUG(1,(__location__ ": Failed to parse DN for %s in %s\n",
514 el->name, ldb_dn_get_linearized(msg->dn)));
515 talloc_free(tmp_ctx);
516 return WERR_DS_DRA_INTERNAL_ERROR;
519 status = dsdb_get_extended_dn_uint64(dsdb_dn->dn, &local_usn, "RMD_LOCAL_USN");
520 if (!NT_STATUS_IS_OK(status)) {
521 /* this can happen for attributes
522 given to us with old style meta
523 data */
524 continue;
527 if (local_usn > uSNChanged) {
528 DEBUG(1,(__location__ ": uSNChanged less than RMD_LOCAL_USN for %s on %s\n",
529 el->name, ldb_dn_get_linearized(msg->dn)));
530 talloc_free(tmp_ctx);
531 return WERR_DS_DRA_INTERNAL_ERROR;
534 if (local_usn < highest_usn) {
535 continue;
538 werr = get_nc_changes_add_la(mem_ctx, sam_ctx, schema, sa, msg,
539 dsdb_dn, la_list, la_count);
540 if (!W_ERROR_IS_OK(werr)) {
541 talloc_free(tmp_ctx);
542 return werr;
547 talloc_free(tmp_ctx);
548 return WERR_OK;
552 fill in the cursors return based on the replUpToDateVector for the ncRoot_dn
554 static WERROR get_nc_changes_udv(struct ldb_context *sam_ctx,
555 struct ldb_dn *ncRoot_dn,
556 struct drsuapi_DsReplicaCursor2CtrEx *udv)
558 int ret;
560 udv->version = 2;
561 udv->reserved1 = 0;
562 udv->reserved2 = 0;
564 ret = dsdb_load_udv_v2(sam_ctx, ncRoot_dn, udv, &udv->cursors, &udv->count);
565 if (ret != LDB_SUCCESS) {
566 DEBUG(0,(__location__ ": Failed to load UDV for %s - %s\n",
567 ldb_dn_get_linearized(ncRoot_dn), ldb_errstring(sam_ctx)));
568 return WERR_DS_DRA_INTERNAL_ERROR;
571 return WERR_OK;
575 /* comparison function for linked attributes - see CompareLinks() in
576 * MS-DRSR section 4.1.10.5.17 */
577 static int linked_attribute_compare(const struct drsuapi_DsReplicaLinkedAttribute *la1,
578 const struct drsuapi_DsReplicaLinkedAttribute *la2,
579 struct ldb_context *sam_ctx)
581 int c;
582 WERROR werr;
583 TALLOC_CTX *tmp_ctx;
584 const struct dsdb_schema *schema;
585 const struct dsdb_attribute *schema_attrib;
586 struct dsdb_dn *dn1, *dn2;
587 struct GUID guid1, guid2;
588 NTSTATUS status;
590 c = GUID_compare(&la1->identifier->guid,
591 &la2->identifier->guid);
592 if (c != 0) return c;
594 if (la1->attid != la2->attid) {
595 return la1->attid < la2->attid? -1:1;
598 if ((la1->flags & DRSUAPI_DS_LINKED_ATTRIBUTE_FLAG_ACTIVE) !=
599 (la2->flags & DRSUAPI_DS_LINKED_ATTRIBUTE_FLAG_ACTIVE)) {
600 return (la1->flags & DRSUAPI_DS_LINKED_ATTRIBUTE_FLAG_ACTIVE)? 1:-1;
603 /* we need to get the target GUIDs to compare */
604 tmp_ctx = talloc_new(sam_ctx);
606 schema = dsdb_get_schema(sam_ctx, tmp_ctx);
607 schema_attrib = dsdb_attribute_by_attributeID_id(schema, la1->attid);
609 werr = dsdb_dn_la_from_blob(sam_ctx, schema_attrib, schema, tmp_ctx, la1->value.blob, &dn1);
610 if (!W_ERROR_IS_OK(werr)) {
611 DEBUG(0,(__location__ ": Bad la1 blob in sort\n"));
612 talloc_free(tmp_ctx);
613 return 0;
616 werr = dsdb_dn_la_from_blob(sam_ctx, schema_attrib, schema, tmp_ctx, la2->value.blob, &dn2);
617 if (!W_ERROR_IS_OK(werr)) {
618 DEBUG(0,(__location__ ": Bad la2 blob in sort\n"));
619 talloc_free(tmp_ctx);
620 return 0;
623 status = dsdb_get_extended_dn_guid(dn1->dn, &guid1, "GUID");
624 if (!NT_STATUS_IS_OK(status)) {
625 DEBUG(0,(__location__ ": Bad la1 guid in sort\n"));
626 talloc_free(tmp_ctx);
627 return 0;
629 status = dsdb_get_extended_dn_guid(dn2->dn, &guid2, "GUID");
630 if (!NT_STATUS_IS_OK(status)) {
631 DEBUG(0,(__location__ ": Bad la2 guid in sort\n"));
632 talloc_free(tmp_ctx);
633 return 0;
636 talloc_free(tmp_ctx);
638 return GUID_compare(&guid1, &guid2);
641 struct drsuapi_changed_objects {
642 struct ldb_dn *dn;
643 struct GUID guid;
644 uint64_t usn;
648 sort the objects we send by tree order
650 static int site_res_cmp_parent_order(struct drsuapi_changed_objects *m1,
651 struct drsuapi_changed_objects *m2)
653 return ldb_dn_compare(m2->dn, m1->dn);
657 sort the objects we send first by uSNChanged
659 static int site_res_cmp_dn_usn_order(struct drsuapi_changed_objects *m1,
660 struct drsuapi_changed_objects *m2)
662 unsigned usnchanged1, usnchanged2;
663 unsigned cn1, cn2;
665 cn1 = ldb_dn_get_comp_num(m1->dn);
666 cn2 = ldb_dn_get_comp_num(m2->dn);
667 if (cn1 != cn2) {
668 return cn1 > cn2 ? 1 : -1;
670 usnchanged1 = m1->usn;
671 usnchanged2 = m2->usn;
672 if (usnchanged1 == usnchanged2) {
673 return 0;
675 return usnchanged1 > usnchanged2 ? 1 : -1;
680 handle a DRSUAPI_EXOP_FSMO_RID_ALLOC call
682 static WERROR getncchanges_rid_alloc(struct drsuapi_bind_state *b_state,
683 TALLOC_CTX *mem_ctx,
684 struct drsuapi_DsGetNCChangesRequest10 *req10,
685 struct drsuapi_DsGetNCChangesCtr6 *ctr6)
687 struct ldb_dn *rid_manager_dn, *req_dn;
688 int ret;
689 struct ldb_context *ldb = b_state->sam_ctx;
690 struct ldb_result *ext_res;
691 struct dsdb_fsmo_extended_op *exop;
692 bool is_us;
695 steps:
696 - verify that the DN being asked for is the RID Manager DN
697 - verify that we are the RID Manager
700 /* work out who is the RID Manager */
701 ret = samdb_rid_manager_dn(ldb, mem_ctx, &rid_manager_dn);
702 if (ret != LDB_SUCCESS) {
703 DEBUG(0, (__location__ ": Failed to find RID Manager object - %s\n", ldb_errstring(ldb)));
704 return WERR_DS_DRA_INTERNAL_ERROR;
707 req_dn = drs_ObjectIdentifier_to_dn(mem_ctx, ldb, req10->naming_context);
708 if (!ldb_dn_validate(req_dn) ||
709 ldb_dn_compare(req_dn, rid_manager_dn) != 0) {
710 /* that isn't the RID Manager DN */
711 DEBUG(0,(__location__ ": RID Alloc request for wrong DN %s\n",
712 drs_ObjectIdentifier_to_string(mem_ctx, req10->naming_context)));
713 ctr6->extended_ret = DRSUAPI_EXOP_ERR_MISMATCH;
714 return WERR_OK;
717 /* find the DN of the RID Manager */
718 ret = samdb_reference_dn_is_our_ntdsa(ldb, rid_manager_dn, "fSMORoleOwner", &is_us);
719 if (ret != LDB_SUCCESS) {
720 DEBUG(0,("Failed to find fSMORoleOwner in RID Manager object\n"));
721 ctr6->extended_ret = DRSUAPI_EXOP_ERR_FSMO_NOT_OWNER;
722 return WERR_DS_DRA_INTERNAL_ERROR;
725 if (!is_us) {
726 /* we're not the RID Manager - go away */
727 DEBUG(0,(__location__ ": RID Alloc request when not RID Manager\n"));
728 ctr6->extended_ret = DRSUAPI_EXOP_ERR_FSMO_NOT_OWNER;
729 return WERR_OK;
732 exop = talloc(mem_ctx, struct dsdb_fsmo_extended_op);
733 W_ERROR_HAVE_NO_MEMORY(exop);
735 exop->fsmo_info = req10->fsmo_info;
736 exop->destination_dsa_guid = req10->destination_dsa_guid;
738 ret = ldb_transaction_start(ldb);
739 if (ret != LDB_SUCCESS) {
740 DEBUG(0,(__location__ ": Failed transaction start - %s\n",
741 ldb_errstring(ldb)));
742 return WERR_DS_DRA_INTERNAL_ERROR;
746 * FIXME (kim): this is a temp hack to return just few object,
747 * but not the whole domain NC.
748 * We should remove this hack and implement a 'scope'
749 * building function to return just the set of object
750 * documented for DRSUAPI_EXOP_FSMO_RID_ALLOC extended_op
752 ldb_sequence_number(ldb, LDB_SEQ_HIGHEST_SEQ, &req10->highwatermark.highest_usn);
754 ret = ldb_extended(ldb, DSDB_EXTENDED_ALLOCATE_RID_POOL, exop, &ext_res);
755 if (ret != LDB_SUCCESS) {
756 DEBUG(0,(__location__ ": Failed extended allocation RID pool operation - %s\n",
757 ldb_errstring(ldb)));
758 ldb_transaction_cancel(ldb);
759 return WERR_DS_DRA_INTERNAL_ERROR;
762 ret = ldb_transaction_commit(ldb);
763 if (ret != LDB_SUCCESS) {
764 DEBUG(0,(__location__ ": Failed transaction commit - %s\n",
765 ldb_errstring(ldb)));
766 return WERR_DS_DRA_INTERNAL_ERROR;
769 talloc_free(ext_res);
771 DEBUG(2,("Allocated RID pool for server %s\n",
772 GUID_string(mem_ctx, &req10->destination_dsa_guid)));
774 ctr6->extended_ret = DRSUAPI_EXOP_ERR_SUCCESS;
776 return WERR_OK;
780 return an array of SIDs from a ldb_message given an attribute name
781 assumes the SIDs are in extended DN format
783 static WERROR samdb_result_sid_array_dn(struct ldb_context *sam_ctx,
784 struct ldb_message *msg,
785 TALLOC_CTX *mem_ctx,
786 const char *attr,
787 const struct dom_sid ***sids)
789 struct ldb_message_element *el;
790 unsigned int i;
792 el = ldb_msg_find_element(msg, attr);
793 if (!el) {
794 *sids = NULL;
795 return WERR_OK;
798 (*sids) = talloc_array(mem_ctx, const struct dom_sid *, el->num_values + 1);
799 W_ERROR_HAVE_NO_MEMORY(*sids);
801 for (i=0; i<el->num_values; i++) {
802 struct ldb_dn *dn = ldb_dn_from_ldb_val(mem_ctx, sam_ctx, &el->values[i]);
803 NTSTATUS status;
804 struct dom_sid *sid;
806 sid = talloc(*sids, struct dom_sid);
807 W_ERROR_HAVE_NO_MEMORY(sid);
808 status = dsdb_get_extended_dn_sid(dn, sid, "SID");
809 if (!NT_STATUS_IS_OK(status)) {
810 return WERR_INTERNAL_DB_CORRUPTION;
812 (*sids)[i] = sid;
814 (*sids)[i] = NULL;
816 return WERR_OK;
821 return an array of SIDs from a ldb_message given an attribute name
822 assumes the SIDs are in NDR form
824 static WERROR samdb_result_sid_array_ndr(struct ldb_context *sam_ctx,
825 struct ldb_message *msg,
826 TALLOC_CTX *mem_ctx,
827 const char *attr,
828 const struct dom_sid ***sids)
830 struct ldb_message_element *el;
831 unsigned int i;
833 el = ldb_msg_find_element(msg, attr);
834 if (!el) {
835 *sids = NULL;
836 return WERR_OK;
839 (*sids) = talloc_array(mem_ctx, const struct dom_sid *, el->num_values + 1);
840 W_ERROR_HAVE_NO_MEMORY(*sids);
842 for (i=0; i<el->num_values; i++) {
843 enum ndr_err_code ndr_err;
844 struct dom_sid *sid;
846 sid = talloc(*sids, struct dom_sid);
847 W_ERROR_HAVE_NO_MEMORY(sid);
849 ndr_err = ndr_pull_struct_blob(&el->values[i], sid, sid,
850 (ndr_pull_flags_fn_t)ndr_pull_dom_sid);
851 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {
852 return WERR_INTERNAL_DB_CORRUPTION;
854 (*sids)[i] = sid;
856 (*sids)[i] = NULL;
858 return WERR_OK;
862 see if any SIDs in list1 are in list2
864 static bool sid_list_match(const struct dom_sid **list1, const struct dom_sid **list2)
866 unsigned int i, j;
867 /* do we ever have enough SIDs here to worry about O(n^2) ? */
868 for (i=0; list1[i]; i++) {
869 for (j=0; list2[j]; j++) {
870 if (dom_sid_equal(list1[i], list2[j])) {
871 return true;
875 return false;
879 handle a DRSUAPI_EXOP_REPL_SECRET call
881 static WERROR getncchanges_repl_secret(struct drsuapi_bind_state *b_state,
882 TALLOC_CTX *mem_ctx,
883 struct drsuapi_DsGetNCChangesRequest10 *req10,
884 struct dom_sid *user_sid,
885 struct drsuapi_DsGetNCChangesCtr6 *ctr6,
886 bool has_get_all_changes)
888 struct drsuapi_DsReplicaObjectIdentifier *ncRoot = req10->naming_context;
889 struct ldb_dn *obj_dn, *rodc_dn, *krbtgt_link_dn;
890 int ret;
891 const char *rodc_attrs[] = { "msDS-KrbTgtLink", "msDS-NeverRevealGroup", "msDS-RevealOnDemandGroup", NULL };
892 const char *obj_attrs[] = { "tokenGroups", "objectSid", "UserAccountControl", "msDS-KrbTgtLinkBL", NULL };
893 struct ldb_result *rodc_res, *obj_res;
894 const struct dom_sid **never_reveal_sids, **reveal_sids, **token_sids;
895 WERROR werr;
897 DEBUG(3,(__location__ ": DRSUAPI_EXOP_REPL_SECRET extended op on %s\n",
898 drs_ObjectIdentifier_to_string(mem_ctx, ncRoot)));
901 * we need to work out if we will allow this DC to
902 * replicate the secrets for this object
904 * see 4.1.10.5.14 GetRevealSecretsPolicyForUser for details
905 * of this function
908 if (b_state->sam_ctx_system == NULL) {
909 /* this operation needs system level access */
910 ctr6->extended_ret = DRSUAPI_EXOP_ERR_ACCESS_DENIED;
911 return WERR_DS_DRA_SOURCE_DISABLED;
915 * In MS-DRSR.pdf 5.99 IsGetNCChangesPermissionGranted
917 * The pseudo code indicate
918 * revealsecrets = true
919 * if IsRevealSecretRequest(msgIn) then
920 * if AccessCheckCAR(ncRoot, Ds-Replication-Get-Changes-All) = false
921 * then
922 * if (msgIn.ulExtendedOp = EXOP_REPL_SECRETS) then
923 * <... check if this account is ok to be replicated on this DC ...>
924 * <... and if not reveal secrets = no ...>
925 * else
926 * reveal secrets = false
927 * endif
928 * endif
929 * endif
931 * Which basically means that if you have GET_ALL_CHANGES rights (~== RWDC)
932 * then you can do EXOP_REPL_SECRETS
934 if (has_get_all_changes) {
935 goto allowed;
938 obj_dn = drs_ObjectIdentifier_to_dn(mem_ctx, b_state->sam_ctx_system, ncRoot);
939 if (!ldb_dn_validate(obj_dn)) goto failed;
941 rodc_dn = ldb_dn_new_fmt(mem_ctx, b_state->sam_ctx_system, "<SID=%s>",
942 dom_sid_string(mem_ctx, user_sid));
943 if (!ldb_dn_validate(rodc_dn)) goto failed;
945 /* do the two searches we need */
946 ret = dsdb_search_dn(b_state->sam_ctx_system, mem_ctx, &rodc_res, rodc_dn, rodc_attrs,
947 DSDB_SEARCH_SHOW_EXTENDED_DN);
948 if (ret != LDB_SUCCESS || rodc_res->count != 1) goto failed;
950 ret = dsdb_search_dn(b_state->sam_ctx_system, mem_ctx, &obj_res, obj_dn, obj_attrs, 0);
951 if (ret != LDB_SUCCESS || obj_res->count != 1) goto failed;
953 /* if the object SID is equal to the user_sid, allow */
954 if (dom_sid_equal(user_sid,
955 samdb_result_dom_sid(mem_ctx, obj_res->msgs[0], "objectSid"))) {
956 goto allowed;
959 /* an RODC is allowed to get its own krbtgt account secrets */
960 krbtgt_link_dn = samdb_result_dn(b_state->sam_ctx_system, mem_ctx,
961 rodc_res->msgs[0], "msDS-KrbTgtLink", NULL);
962 if (krbtgt_link_dn != NULL &&
963 ldb_dn_compare(obj_dn, krbtgt_link_dn) == 0) {
964 goto allowed;
967 /* but it isn't allowed to get anyone elses krbtgt secrets */
968 if (samdb_result_dn(b_state->sam_ctx_system, mem_ctx,
969 obj_res->msgs[0], "msDS-KrbTgtLinkBL", NULL)) {
970 goto denied;
973 if (ldb_msg_find_attr_as_uint(obj_res->msgs[0],
974 "userAccountControl", 0) &
975 UF_INTERDOMAIN_TRUST_ACCOUNT) {
976 goto denied;
979 werr = samdb_result_sid_array_dn(b_state->sam_ctx_system, rodc_res->msgs[0],
980 mem_ctx, "msDS-NeverRevealGroup", &never_reveal_sids);
981 if (!W_ERROR_IS_OK(werr)) {
982 goto denied;
985 werr = samdb_result_sid_array_dn(b_state->sam_ctx_system, rodc_res->msgs[0],
986 mem_ctx, "msDS-RevealOnDemandGroup", &reveal_sids);
987 if (!W_ERROR_IS_OK(werr)) {
988 goto denied;
991 werr = samdb_result_sid_array_ndr(b_state->sam_ctx_system, obj_res->msgs[0],
992 mem_ctx, "tokenGroups", &token_sids);
993 if (!W_ERROR_IS_OK(werr) || token_sids==NULL) {
994 goto denied;
997 if (never_reveal_sids &&
998 sid_list_match(token_sids, never_reveal_sids)) {
999 goto denied;
1002 if (reveal_sids &&
1003 sid_list_match(token_sids, reveal_sids)) {
1004 goto allowed;
1007 /* default deny */
1008 denied:
1009 DEBUG(2,(__location__ ": Denied single object with secret replication for %s by RODC %s\n",
1010 ldb_dn_get_linearized(obj_dn), ldb_dn_get_linearized(rodc_res->msgs[0]->dn)));
1011 ctr6->extended_ret = DRSUAPI_EXOP_ERR_NONE;
1012 return WERR_DS_DRA_ACCESS_DENIED;
1014 allowed:
1015 DEBUG(2,(__location__ ": Allowed single object with secret replication for %s by %s %s\n",
1016 ldb_dn_get_linearized(obj_dn), has_get_all_changes?"RWDC":"RODC",
1017 ldb_dn_get_linearized(rodc_res->msgs[0]->dn)));
1018 ctr6->extended_ret = DRSUAPI_EXOP_ERR_SUCCESS;
1019 req10->highwatermark.highest_usn = 0;
1020 return WERR_OK;
1022 failed:
1023 DEBUG(2,(__location__ ": Failed single secret replication for %s by RODC %s\n",
1024 ldb_dn_get_linearized(obj_dn), dom_sid_string(mem_ctx, user_sid)));
1025 ctr6->extended_ret = DRSUAPI_EXOP_ERR_NONE;
1026 return WERR_DS_DRA_BAD_DN;
1031 handle a DRSUAPI_EXOP_REPL_OBJ call
1033 static WERROR getncchanges_repl_obj(struct drsuapi_bind_state *b_state,
1034 TALLOC_CTX *mem_ctx,
1035 struct drsuapi_DsGetNCChangesRequest10 *req10,
1036 struct dom_sid *user_sid,
1037 struct drsuapi_DsGetNCChangesCtr6 *ctr6)
1039 struct drsuapi_DsReplicaObjectIdentifier *ncRoot = req10->naming_context;
1041 DEBUG(3,(__location__ ": DRSUAPI_EXOP_REPL_OBJ extended op on %s\n",
1042 drs_ObjectIdentifier_to_string(mem_ctx, ncRoot)));
1044 ctr6->extended_ret = DRSUAPI_EXOP_ERR_SUCCESS;
1045 return WERR_OK;
1050 handle DRSUAPI_EXOP_FSMO_REQ_ROLE,
1051 DRSUAPI_EXOP_FSMO_RID_REQ_ROLE,
1052 and DRSUAPI_EXOP_FSMO_REQ_PDC calls
1054 static WERROR getncchanges_change_master(struct drsuapi_bind_state *b_state,
1055 TALLOC_CTX *mem_ctx,
1056 struct drsuapi_DsGetNCChangesRequest10 *req10,
1057 struct drsuapi_DsGetNCChangesCtr6 *ctr6)
1059 struct ldb_dn *req_dn, *ntds_dn;
1060 int ret;
1061 unsigned int i;
1062 struct ldb_context *ldb = b_state->sam_ctx;
1063 struct ldb_message *msg;
1064 bool is_us;
1067 steps:
1068 - verify that the client dn exists
1069 - verify that we are the current master
1072 req_dn = drs_ObjectIdentifier_to_dn(mem_ctx, ldb, req10->naming_context);
1073 if (!ldb_dn_validate(req_dn)) {
1074 /* that is not a valid dn */
1075 DEBUG(0,(__location__ ": FSMO role transfer request for invalid DN %s\n",
1076 drs_ObjectIdentifier_to_string(mem_ctx, req10->naming_context)));
1077 ctr6->extended_ret = DRSUAPI_EXOP_ERR_MISMATCH;
1078 return WERR_OK;
1081 /* retrieve the current role owner */
1082 /* find the DN of the RID Manager */
1083 ret = samdb_reference_dn_is_our_ntdsa(ldb, req_dn, "fSMORoleOwner", &is_us);
1084 if (ret != LDB_SUCCESS) {
1085 DEBUG(0,("Failed to find fSMORoleOwner in RID Manager object\n"));
1086 ctr6->extended_ret = DRSUAPI_EXOP_ERR_FSMO_NOT_OWNER;
1087 return WERR_DS_DRA_INTERNAL_ERROR;
1090 if (!is_us) {
1091 /* we're not the RID Manager - go away */
1092 DEBUG(0,(__location__ ": RID Alloc request when not RID Manager\n"));
1093 ctr6->extended_ret = DRSUAPI_EXOP_ERR_FSMO_NOT_OWNER;
1094 return WERR_OK;
1097 /* change the current master */
1098 msg = ldb_msg_new(ldb);
1099 W_ERROR_HAVE_NO_MEMORY(msg);
1100 msg->dn = drs_ObjectIdentifier_to_dn(msg, ldb, req10->naming_context);
1101 W_ERROR_HAVE_NO_MEMORY(msg->dn);
1103 /* TODO: make sure ntds_dn is a valid nTDSDSA object */
1104 ret = dsdb_find_dn_by_guid(ldb, msg, &req10->destination_dsa_guid, &ntds_dn);
1105 if (ret != LDB_SUCCESS) {
1106 DEBUG(0, (__location__ ": Unable to find NTDS object for guid %s - %s\n",
1107 GUID_string(mem_ctx, &req10->destination_dsa_guid), ldb_errstring(ldb)));
1108 talloc_free(msg);
1109 ctr6->extended_ret = DRSUAPI_EXOP_ERR_UNKNOWN_CALLER;
1110 return WERR_OK;
1113 ret = ldb_msg_add_string(msg, "fSMORoleOwner", ldb_dn_get_linearized(ntds_dn));
1114 if (ret != 0) {
1115 talloc_free(msg);
1116 return WERR_DS_DRA_INTERNAL_ERROR;
1119 for (i=0;i<msg->num_elements;i++) {
1120 msg->elements[i].flags = LDB_FLAG_MOD_REPLACE;
1123 ret = ldb_transaction_start(ldb);
1124 if (ret != LDB_SUCCESS) {
1125 DEBUG(0,(__location__ ": Failed transaction start - %s\n",
1126 ldb_errstring(ldb)));
1127 return WERR_DS_DRA_INTERNAL_ERROR;
1130 ret = ldb_modify(ldb, msg);
1131 if (ret != LDB_SUCCESS) {
1132 DEBUG(0,(__location__ ": Failed to change current owner - %s\n",
1133 ldb_errstring(ldb)));
1134 ldb_transaction_cancel(ldb);
1135 return WERR_DS_DRA_INTERNAL_ERROR;
1138 ret = ldb_transaction_commit(ldb);
1139 if (ret != LDB_SUCCESS) {
1140 DEBUG(0,(__location__ ": Failed transaction commit - %s\n",
1141 ldb_errstring(ldb)));
1142 return WERR_DS_DRA_INTERNAL_ERROR;
1145 ctr6->extended_ret = DRSUAPI_EXOP_ERR_SUCCESS;
1147 return WERR_OK;
1150 /* state of a partially completed getncchanges call */
1151 struct drsuapi_getncchanges_state {
1152 struct GUID *guids;
1153 uint32_t num_records;
1154 uint32_t num_processed;
1155 struct ldb_dn *ncRoot_dn;
1156 bool is_schema_nc;
1157 uint64_t min_usn;
1158 uint64_t highest_usn;
1159 struct ldb_dn *last_dn;
1160 struct drsuapi_DsReplicaLinkedAttribute *la_list;
1161 uint32_t la_count;
1162 bool la_sorted;
1163 uint32_t la_idx;
1164 struct drsuapi_DsReplicaCursorCtrEx *uptodateness_vector;
1168 see if this getncchanges request includes a request to reveal secret information
1170 static WERROR dcesrv_drsuapi_is_reveal_secrets_request(struct drsuapi_bind_state *b_state,
1171 struct drsuapi_DsGetNCChangesRequest10 *req10,
1172 bool *is_secret_request)
1174 enum drsuapi_DsExtendedOperation exop;
1175 uint32_t i;
1176 struct dsdb_schema *schema;
1178 *is_secret_request = true;
1180 exop = req10->extended_op;
1182 switch (exop) {
1183 case DRSUAPI_EXOP_FSMO_REQ_ROLE:
1184 case DRSUAPI_EXOP_FSMO_RID_ALLOC:
1185 case DRSUAPI_EXOP_FSMO_RID_REQ_ROLE:
1186 case DRSUAPI_EXOP_FSMO_REQ_PDC:
1187 case DRSUAPI_EXOP_FSMO_ABANDON_ROLE:
1188 /* FSMO exops can reveal secrets */
1189 *is_secret_request = true;
1190 return WERR_OK;
1191 case DRSUAPI_EXOP_REPL_SECRET:
1192 case DRSUAPI_EXOP_REPL_OBJ:
1193 case DRSUAPI_EXOP_NONE:
1194 break;
1197 if (req10->replica_flags & DRSUAPI_DRS_SPECIAL_SECRET_PROCESSING) {
1198 *is_secret_request = false;
1199 return WERR_OK;
1202 if (exop == DRSUAPI_EXOP_REPL_SECRET ||
1203 req10->partial_attribute_set == NULL) {
1204 /* they want secrets */
1205 *is_secret_request = true;
1206 return WERR_OK;
1209 schema = dsdb_get_schema(b_state->sam_ctx, NULL);
1211 /* check the attributes they asked for */
1212 for (i=0; i<req10->partial_attribute_set->num_attids; i++) {
1213 const struct dsdb_attribute *sa;
1214 sa = dsdb_attribute_by_attributeID_id(schema, req10->partial_attribute_set->attids[i]);
1215 if (sa == NULL) {
1216 return WERR_DS_DRA_SCHEMA_MISMATCH;
1218 if (!dsdb_attr_in_rodc_fas(sa)) {
1219 *is_secret_request = true;
1220 return WERR_OK;
1224 if (req10->partial_attribute_set_ex) {
1225 /* check the extended attributes they asked for */
1226 for (i=0; i<req10->partial_attribute_set_ex->num_attids; i++) {
1227 const struct dsdb_attribute *sa;
1228 sa = dsdb_attribute_by_attributeID_id(schema, req10->partial_attribute_set_ex->attids[i]);
1229 if (sa == NULL) {
1230 return WERR_DS_DRA_SCHEMA_MISMATCH;
1232 if (!dsdb_attr_in_rodc_fas(sa)) {
1233 *is_secret_request = true;
1234 return WERR_OK;
1239 *is_secret_request = false;
1240 return WERR_OK;
1244 see if this getncchanges request is only for attributes in the GC
1245 partial attribute set
1247 static WERROR dcesrv_drsuapi_is_gc_pas_request(struct drsuapi_bind_state *b_state,
1248 struct drsuapi_DsGetNCChangesRequest10 *req10,
1249 bool *is_gc_pas_request)
1251 enum drsuapi_DsExtendedOperation exop;
1252 uint32_t i;
1253 struct dsdb_schema *schema;
1255 exop = req10->extended_op;
1257 switch (exop) {
1258 case DRSUAPI_EXOP_FSMO_REQ_ROLE:
1259 case DRSUAPI_EXOP_FSMO_RID_ALLOC:
1260 case DRSUAPI_EXOP_FSMO_RID_REQ_ROLE:
1261 case DRSUAPI_EXOP_FSMO_REQ_PDC:
1262 case DRSUAPI_EXOP_FSMO_ABANDON_ROLE:
1263 case DRSUAPI_EXOP_REPL_SECRET:
1264 *is_gc_pas_request = false;
1265 return WERR_OK;
1266 case DRSUAPI_EXOP_REPL_OBJ:
1267 case DRSUAPI_EXOP_NONE:
1268 break;
1271 if (req10->partial_attribute_set == NULL) {
1272 /* they want it all */
1273 *is_gc_pas_request = false;
1274 return WERR_OK;
1277 schema = dsdb_get_schema(b_state->sam_ctx, NULL);
1279 /* check the attributes they asked for */
1280 for (i=0; i<req10->partial_attribute_set->num_attids; i++) {
1281 const struct dsdb_attribute *sa;
1282 sa = dsdb_attribute_by_attributeID_id(schema, req10->partial_attribute_set->attids[i]);
1283 if (sa == NULL) {
1284 return WERR_DS_DRA_SCHEMA_MISMATCH;
1286 if (!sa->isMemberOfPartialAttributeSet) {
1287 *is_gc_pas_request = false;
1288 return WERR_OK;
1292 if (req10->partial_attribute_set_ex) {
1293 /* check the extended attributes they asked for */
1294 for (i=0; i<req10->partial_attribute_set_ex->num_attids; i++) {
1295 const struct dsdb_attribute *sa;
1296 sa = dsdb_attribute_by_attributeID_id(schema, req10->partial_attribute_set_ex->attids[i]);
1297 if (sa == NULL) {
1298 return WERR_DS_DRA_SCHEMA_MISMATCH;
1300 if (!sa->isMemberOfPartialAttributeSet) {
1301 *is_gc_pas_request = false;
1302 return WERR_OK;
1307 *is_gc_pas_request = true;
1308 return WERR_OK;
1313 map from req8 to req10
1315 static struct drsuapi_DsGetNCChangesRequest10 *
1316 getncchanges_map_req8(TALLOC_CTX *mem_ctx,
1317 struct drsuapi_DsGetNCChangesRequest8 *req8)
1319 struct drsuapi_DsGetNCChangesRequest10 *req10 = talloc_zero(mem_ctx,
1320 struct drsuapi_DsGetNCChangesRequest10);
1321 if (req10 == NULL) {
1322 return NULL;
1325 req10->destination_dsa_guid = req8->destination_dsa_guid;
1326 req10->source_dsa_invocation_id = req8->source_dsa_invocation_id;
1327 req10->naming_context = req8->naming_context;
1328 req10->highwatermark = req8->highwatermark;
1329 req10->uptodateness_vector = req8->uptodateness_vector;
1330 req10->replica_flags = req8->replica_flags;
1331 req10->max_object_count = req8->max_object_count;
1332 req10->max_ndr_size = req8->max_ndr_size;
1333 req10->extended_op = req8->extended_op;
1334 req10->fsmo_info = req8->fsmo_info;
1335 req10->partial_attribute_set = req8->partial_attribute_set;
1336 req10->partial_attribute_set_ex = req8->partial_attribute_set_ex;
1337 req10->mapping_ctr = req8->mapping_ctr;
1339 return req10;
1344 * Collects object for normal replication cycle.
1346 static WERROR getncchanges_collect_objects(struct drsuapi_bind_state *b_state,
1347 TALLOC_CTX *mem_ctx,
1348 struct drsuapi_DsGetNCChangesRequest10 *req10,
1349 struct ldb_dn *search_dn,
1350 const char *extra_filter,
1351 struct ldb_result **search_res)
1353 int ret;
1354 char* search_filter;
1355 enum ldb_scope scope = LDB_SCOPE_SUBTREE;
1356 //const char *extra_filter;
1357 struct drsuapi_getncchanges_state *getnc_state = b_state->getncchanges_state;
1358 const char *attrs[] = { "uSNChanged",
1359 "objectGUID" ,
1360 NULL };
1362 if (req10->extended_op == DRSUAPI_EXOP_REPL_OBJ ||
1363 req10->extended_op == DRSUAPI_EXOP_REPL_SECRET) {
1364 scope = LDB_SCOPE_BASE;
1367 //extra_filter = lpcfg_parm_string(dce_call->conn->dce_ctx->lp_ctx, NULL, "drs", "object filter");
1369 //getnc_state->min_usn = req10->highwatermark.highest_usn;
1371 /* Construct response. */
1372 search_filter = talloc_asprintf(mem_ctx,
1373 "(uSNChanged>=%llu)",
1374 (unsigned long long)(getnc_state->min_usn+1));
1376 if (extra_filter) {
1377 search_filter = talloc_asprintf(mem_ctx, "(&%s(%s))", search_filter, extra_filter);
1380 if (req10->replica_flags & DRSUAPI_DRS_CRITICAL_ONLY) {
1381 search_filter = talloc_asprintf(mem_ctx,
1382 "(&%s(isCriticalSystemObject=TRUE))",
1383 search_filter);
1386 if (req10->replica_flags & DRSUAPI_DRS_ASYNC_REP) {
1387 scope = LDB_SCOPE_BASE;
1390 if (!search_dn) {
1391 search_dn = getnc_state->ncRoot_dn;
1394 DEBUG(2,(__location__ ": getncchanges on %s using filter %s\n",
1395 ldb_dn_get_linearized(getnc_state->ncRoot_dn), search_filter));
1396 ret = drsuapi_search_with_extended_dn(b_state->sam_ctx, getnc_state, search_res,
1397 search_dn, scope, attrs,
1398 search_filter);
1399 if (ret != LDB_SUCCESS) {
1400 return WERR_DS_DRA_INTERNAL_ERROR;
1403 return WERR_OK;
1407 * Collects object for normal replication cycle.
1409 static WERROR getncchanges_collect_objects_exop(struct drsuapi_bind_state *b_state,
1410 TALLOC_CTX *mem_ctx,
1411 struct drsuapi_DsGetNCChangesRequest10 *req10,
1412 struct drsuapi_DsGetNCChangesCtr6 *ctr6,
1413 struct ldb_dn *search_dn,
1414 const char *extra_filter,
1415 struct ldb_result **search_res)
1417 /* we have nothing to do in case of ex-op failure */
1418 if (ctr6->extended_ret != DRSUAPI_EXOP_ERR_SUCCESS) {
1419 return WERR_OK;
1422 /* TODO: implement extended op specific collection
1423 * of objects. Right now we just normal procedure
1424 * for collecting objects */
1425 return getncchanges_collect_objects(b_state, mem_ctx, req10, search_dn, extra_filter, search_res);
1429 drsuapi_DsGetNCChanges
1431 see MS-DRSR 4.1.10.5.2 for basic logic of this function
1433 WERROR dcesrv_drsuapi_DsGetNCChanges(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
1434 struct drsuapi_DsGetNCChanges *r)
1436 struct drsuapi_DsReplicaObjectIdentifier *ncRoot;
1437 int ret;
1438 uint32_t i;
1439 struct dsdb_schema *schema;
1440 struct drsuapi_DsReplicaOIDMapping_Ctr *ctr;
1441 struct drsuapi_DsReplicaObjectListItemEx **currentObject;
1442 NTSTATUS status;
1443 DATA_BLOB session_key;
1444 WERROR werr;
1445 struct dcesrv_handle *h;
1446 struct drsuapi_bind_state *b_state;
1447 struct drsuapi_getncchanges_state *getnc_state;
1448 struct drsuapi_DsGetNCChangesRequest10 *req10;
1449 uint32_t options;
1450 uint32_t max_objects;
1451 uint32_t max_links;
1452 uint32_t link_count = 0;
1453 uint32_t link_total = 0;
1454 uint32_t link_given = 0;
1455 struct ldb_dn *search_dn = NULL;
1456 bool am_rodc, null_scope=false;
1457 enum security_user_level security_level;
1458 struct ldb_context *sam_ctx;
1459 struct dom_sid *user_sid;
1460 bool is_secret_request;
1461 bool is_gc_pas_request;
1462 struct drsuapi_changed_objects *changes;
1463 time_t max_wait;
1464 time_t start = time(NULL);
1465 bool max_wait_reached = false;
1466 bool has_get_all_changes = false;
1468 DCESRV_PULL_HANDLE_WERR(h, r->in.bind_handle, DRSUAPI_BIND_HANDLE);
1469 b_state = h->data;
1471 sam_ctx = b_state->sam_ctx_system?b_state->sam_ctx_system:b_state->sam_ctx;
1473 *r->out.level_out = 6;
1474 /* TODO: linked attributes*/
1475 r->out.ctr->ctr6.linked_attributes_count = 0;
1476 r->out.ctr->ctr6.linked_attributes = NULL;
1478 r->out.ctr->ctr6.object_count = 0;
1479 r->out.ctr->ctr6.nc_object_count = 0;
1480 r->out.ctr->ctr6.more_data = false;
1481 r->out.ctr->ctr6.uptodateness_vector = NULL;
1483 /* a RODC doesn't allow for any replication */
1484 ret = samdb_rodc(sam_ctx, &am_rodc);
1485 if (ret == LDB_SUCCESS && am_rodc) {
1486 DEBUG(0,(__location__ ": DsGetNCChanges attempt on RODC\n"));
1487 return WERR_DS_DRA_SOURCE_DISABLED;
1490 /* Check request revision.
1492 switch (r->in.level) {
1493 case 8:
1494 req10 = getncchanges_map_req8(mem_ctx, &r->in.req->req8);
1495 if (req10 == NULL) {
1496 return WERR_NOMEM;
1498 break;
1499 case 10:
1500 req10 = &r->in.req->req10;
1501 break;
1502 default:
1503 DEBUG(0,(__location__ ": Request for DsGetNCChanges with unsupported level %u\n",
1504 r->in.level));
1505 return WERR_REVISION_MISMATCH;
1509 /* Perform access checks. */
1510 /* TODO: we need to support a sync on a specific non-root
1511 * DN. We'll need to find the real partition root here */
1512 ncRoot = req10->naming_context;
1513 if (ncRoot == NULL) {
1514 DEBUG(0,(__location__ ": Request for DsGetNCChanges with no NC\n"));
1515 return WERR_DS_DRA_INVALID_PARAMETER;
1518 if (samdb_ntds_options(sam_ctx, &options) != LDB_SUCCESS) {
1519 return WERR_DS_DRA_INTERNAL_ERROR;
1522 if ((options & DS_NTDSDSA_OPT_DISABLE_OUTBOUND_REPL) &&
1523 !(req10->replica_flags & DRSUAPI_DRS_SYNC_FORCED)) {
1524 return WERR_DS_DRA_SOURCE_DISABLED;
1527 user_sid = &dce_call->conn->auth_state.session_info->security_token->sids[PRIMARY_USER_SID_INDEX];
1529 /* all clients must have GUID_DRS_GET_CHANGES */
1530 werr = drs_security_access_check_nc_root(b_state->sam_ctx,
1531 mem_ctx,
1532 dce_call->conn->auth_state.session_info->security_token,
1533 req10->naming_context,
1534 GUID_DRS_GET_CHANGES);
1535 if (!W_ERROR_IS_OK(werr)) {
1536 return werr;
1539 /* allowed if the GC PAS and client has
1540 GUID_DRS_GET_FILTERED_ATTRIBUTES */
1541 werr = dcesrv_drsuapi_is_gc_pas_request(b_state, req10, &is_gc_pas_request);
1542 if (!W_ERROR_IS_OK(werr)) {
1543 return werr;
1545 if (is_gc_pas_request) {
1546 werr = drs_security_access_check_nc_root(b_state->sam_ctx,
1547 mem_ctx,
1548 dce_call->conn->auth_state.session_info->security_token,
1549 req10->naming_context,
1550 GUID_DRS_GET_FILTERED_ATTRIBUTES);
1551 if (W_ERROR_IS_OK(werr)) {
1552 goto allowed;
1556 werr = dcesrv_drsuapi_is_reveal_secrets_request(b_state, req10, &is_secret_request);
1557 if (!W_ERROR_IS_OK(werr)) {
1558 return werr;
1560 if (is_secret_request && req10->extended_op != DRSUAPI_EXOP_REPL_SECRET) {
1561 werr = drs_security_access_check_nc_root(b_state->sam_ctx,
1562 mem_ctx,
1563 dce_call->conn->auth_state.session_info->security_token,
1564 req10->naming_context,
1565 GUID_DRS_GET_ALL_CHANGES);
1566 if (!W_ERROR_IS_OK(werr)) {
1567 return werr;
1568 } else {
1569 has_get_all_changes = true;
1573 allowed:
1574 /* for non-administrator replications, check that they have
1575 given the correct source_dsa_invocation_id */
1576 security_level = security_session_user_level(dce_call->conn->auth_state.session_info,
1577 samdb_domain_sid(sam_ctx));
1578 if (security_level == SECURITY_RO_DOMAIN_CONTROLLER) {
1579 if (req10->replica_flags & DRSUAPI_DRS_WRIT_REP) {
1580 /* we rely on this flag being unset for RODC requests */
1581 req10->replica_flags &= ~DRSUAPI_DRS_WRIT_REP;
1585 if (req10->replica_flags & DRSUAPI_DRS_FULL_SYNC_PACKET) {
1586 /* Ignore the _in_ uptpdateness vector*/
1587 req10->uptodateness_vector = NULL;
1590 getnc_state = b_state->getncchanges_state;
1592 /* see if a previous replication has been abandoned */
1593 if (getnc_state) {
1594 struct ldb_dn *new_dn = drs_ObjectIdentifier_to_dn(getnc_state, sam_ctx, ncRoot);
1595 if (ldb_dn_compare(new_dn, getnc_state->ncRoot_dn) != 0) {
1596 DEBUG(0,(__location__ ": DsGetNCChanges 2nd replication on different DN %s %s (last_dn %s)\n",
1597 ldb_dn_get_linearized(new_dn),
1598 ldb_dn_get_linearized(getnc_state->ncRoot_dn),
1599 ldb_dn_get_linearized(getnc_state->last_dn)));
1600 talloc_free(getnc_state);
1601 getnc_state = NULL;
1605 if (getnc_state == NULL) {
1606 getnc_state = talloc_zero(b_state, struct drsuapi_getncchanges_state);
1607 if (getnc_state == NULL) {
1608 return WERR_NOMEM;
1610 b_state->getncchanges_state = getnc_state;
1611 getnc_state->ncRoot_dn = drs_ObjectIdentifier_to_dn(getnc_state, sam_ctx, ncRoot);
1613 /* find out if we are to replicate Schema NC */
1614 ret = ldb_dn_compare(getnc_state->ncRoot_dn,
1615 ldb_get_schema_basedn(b_state->sam_ctx));
1616 getnc_state->is_schema_nc = (0 == ret);
1618 if (req10->extended_op != DRSUAPI_EXOP_NONE) {
1619 r->out.ctr->ctr6.extended_ret = DRSUAPI_EXOP_ERR_SUCCESS;
1623 * This is the first replication cycle and it is
1624 * a good place to handle extended operations
1626 * FIXME: we don't fully support extended operations yet
1628 switch (req10->extended_op) {
1629 case DRSUAPI_EXOP_NONE:
1630 break;
1631 case DRSUAPI_EXOP_FSMO_RID_ALLOC:
1632 werr = getncchanges_rid_alloc(b_state, mem_ctx, req10, &r->out.ctr->ctr6);
1633 W_ERROR_NOT_OK_RETURN(werr);
1634 search_dn = ldb_get_default_basedn(sam_ctx);
1635 break;
1636 case DRSUAPI_EXOP_REPL_SECRET:
1637 werr = getncchanges_repl_secret(b_state, mem_ctx, req10,
1638 user_sid,
1639 &r->out.ctr->ctr6,
1640 has_get_all_changes);
1641 r->out.result = werr;
1642 W_ERROR_NOT_OK_RETURN(werr);
1643 break;
1644 case DRSUAPI_EXOP_FSMO_REQ_ROLE:
1645 werr = getncchanges_change_master(b_state, mem_ctx, req10, &r->out.ctr->ctr6);
1646 W_ERROR_NOT_OK_RETURN(werr);
1647 break;
1648 case DRSUAPI_EXOP_FSMO_RID_REQ_ROLE:
1649 werr = getncchanges_change_master(b_state, mem_ctx, req10, &r->out.ctr->ctr6);
1650 W_ERROR_NOT_OK_RETURN(werr);
1651 break;
1652 case DRSUAPI_EXOP_FSMO_REQ_PDC:
1653 werr = getncchanges_change_master(b_state, mem_ctx, req10, &r->out.ctr->ctr6);
1654 W_ERROR_NOT_OK_RETURN(werr);
1655 break;
1656 case DRSUAPI_EXOP_REPL_OBJ:
1657 werr = getncchanges_repl_obj(b_state, mem_ctx, req10, user_sid, &r->out.ctr->ctr6);
1658 r->out.result = werr;
1659 W_ERROR_NOT_OK_RETURN(werr);
1660 break;
1662 case DRSUAPI_EXOP_FSMO_ABANDON_ROLE:
1664 DEBUG(0,(__location__ ": Request for DsGetNCChanges unsupported extended op 0x%x\n",
1665 (unsigned)req10->extended_op));
1666 return WERR_DS_DRA_NOT_SUPPORTED;
1670 if (!ldb_dn_validate(getnc_state->ncRoot_dn) ||
1671 ldb_dn_is_null(getnc_state->ncRoot_dn)) {
1672 DEBUG(0,(__location__ ": Bad DN '%s'\n",
1673 drs_ObjectIdentifier_to_string(mem_ctx, ncRoot)));
1674 return WERR_DS_DRA_INVALID_PARAMETER;
1677 /* we need the session key for encrypting password attributes */
1678 status = dcesrv_inherited_session_key(dce_call->conn, &session_key);
1679 if (!NT_STATUS_IS_OK(status)) {
1680 DEBUG(0,(__location__ ": Failed to get session key\n"));
1681 return WERR_DS_DRA_INTERNAL_ERROR;
1685 TODO: MS-DRSR section 4.1.10.1.1
1686 Work out if this is the start of a new cycle */
1688 if (getnc_state->guids == NULL) {
1689 const char *extra_filter;
1690 struct ldb_result *search_res = NULL;
1692 extra_filter = lpcfg_parm_string(dce_call->conn->dce_ctx->lp_ctx, NULL, "drs", "object filter");
1694 getnc_state->min_usn = req10->highwatermark.highest_usn;
1696 if (req10->extended_op == DRSUAPI_EXOP_NONE) {
1697 werr = getncchanges_collect_objects(b_state, mem_ctx, req10,
1698 search_dn, extra_filter,
1699 &search_res);
1700 } else {
1701 werr = getncchanges_collect_objects_exop(b_state, mem_ctx, req10,
1702 &r->out.ctr->ctr6,
1703 search_dn, extra_filter,
1704 &search_res);
1706 W_ERROR_NOT_OK_RETURN(werr);
1708 /* extract out the GUIDs list */
1709 getnc_state->num_records = search_res ? search_res->count : 0;
1710 getnc_state->guids = talloc_array(getnc_state, struct GUID, getnc_state->num_records);
1711 W_ERROR_HAVE_NO_MEMORY(getnc_state->guids);
1713 changes = talloc_array(getnc_state,
1714 struct drsuapi_changed_objects,
1715 getnc_state->num_records);
1716 W_ERROR_HAVE_NO_MEMORY(changes);
1718 for (i=0; i<getnc_state->num_records; i++) {
1719 changes[i].dn = search_res->msgs[i]->dn;
1720 changes[i].guid = samdb_result_guid(search_res->msgs[i], "objectGUID");
1721 changes[i].usn = ldb_msg_find_attr_as_uint64(search_res->msgs[i], "uSNChanged", 0);
1724 if (req10->replica_flags & DRSUAPI_DRS_GET_ANC) {
1725 TYPESAFE_QSORT(changes,
1726 getnc_state->num_records,
1727 site_res_cmp_parent_order);
1728 } else {
1729 TYPESAFE_QSORT(changes,
1730 getnc_state->num_records,
1731 site_res_cmp_dn_usn_order);
1734 getnc_state->uptodateness_vector = talloc_steal(getnc_state, req10->uptodateness_vector);
1735 if (getnc_state->uptodateness_vector) {
1736 /* make sure its sorted */
1737 TYPESAFE_QSORT(getnc_state->uptodateness_vector->cursors,
1738 getnc_state->uptodateness_vector->count,
1739 drsuapi_DsReplicaCursor_compare);
1742 for (i=0; i < getnc_state->num_records; i++) {
1743 getnc_state->guids[i] = changes[i].guid;
1744 if (GUID_all_zero(&getnc_state->guids[i])) {
1745 DEBUG(2,("getncchanges: bad objectGUID from %s\n",
1746 ldb_dn_get_linearized(search_res->msgs[i]->dn)));
1747 return WERR_DS_DRA_INTERNAL_ERROR;
1751 talloc_free(search_res);
1752 talloc_free(changes);
1755 /* Prefix mapping */
1756 schema = dsdb_get_schema(sam_ctx, mem_ctx);
1757 if (!schema) {
1758 DEBUG(0,("No schema in sam_ctx\n"));
1759 return WERR_DS_DRA_INTERNAL_ERROR;
1762 r->out.ctr->ctr6.naming_context = talloc(mem_ctx, struct drsuapi_DsReplicaObjectIdentifier);
1763 *r->out.ctr->ctr6.naming_context = *ncRoot;
1765 if (dsdb_find_guid_by_dn(sam_ctx, getnc_state->ncRoot_dn,
1766 &r->out.ctr->ctr6.naming_context->guid) != LDB_SUCCESS) {
1767 DEBUG(0,(__location__ ": Failed to find GUID of ncRoot_dn %s\n",
1768 ldb_dn_get_linearized(getnc_state->ncRoot_dn)));
1769 return WERR_DS_DRA_INTERNAL_ERROR;
1772 /* find the SID if there is one */
1773 dsdb_find_sid_by_dn(sam_ctx, getnc_state->ncRoot_dn, &r->out.ctr->ctr6.naming_context->sid);
1775 dsdb_get_oid_mappings_drsuapi(schema, true, mem_ctx, &ctr);
1776 r->out.ctr->ctr6.mapping_ctr = *ctr;
1778 r->out.ctr->ctr6.source_dsa_guid = *(samdb_ntds_objectGUID(sam_ctx));
1779 r->out.ctr->ctr6.source_dsa_invocation_id = *(samdb_ntds_invocation_id(sam_ctx));
1781 r->out.ctr->ctr6.old_highwatermark = req10->highwatermark;
1782 r->out.ctr->ctr6.new_highwatermark = req10->highwatermark;
1784 r->out.ctr->ctr6.first_object = NULL;
1785 currentObject = &r->out.ctr->ctr6.first_object;
1787 /* use this to force single objects at a time, which is useful
1788 * for working out what object is giving problems
1790 max_objects = lpcfg_parm_int(dce_call->conn->dce_ctx->lp_ctx, NULL, "drs", "max object sync", 1000);
1791 if (req10->max_object_count < max_objects) {
1792 max_objects = req10->max_object_count;
1795 * TODO: work out how the maximum should be calculated
1797 max_links = lpcfg_parm_int(dce_call->conn->dce_ctx->lp_ctx, NULL, "drs", "max link sync", 1500);
1800 * Maximum time that we can spend in a getncchanges
1801 * in order to avoid timeout of the other part.
1802 * 10 seconds by default.
1804 max_wait = lpcfg_parm_int(dce_call->conn->dce_ctx->lp_ctx, NULL, "drs", "max work time", 10);
1805 for (i=getnc_state->num_processed;
1806 i<getnc_state->num_records &&
1807 !null_scope &&
1808 (r->out.ctr->ctr6.object_count < max_objects)
1809 && !max_wait_reached;
1810 i++) {
1811 int uSN;
1812 struct drsuapi_DsReplicaObjectListItemEx *obj;
1813 struct ldb_message *msg;
1814 static const char * const msg_attrs[] = {
1815 "*",
1816 "nTSecurityDescriptor",
1817 "parentGUID",
1818 "replPropertyMetaData",
1819 DSDB_SECRET_ATTRIBUTES,
1820 NULL };
1821 struct ldb_result *msg_res;
1822 struct ldb_dn *msg_dn;
1824 obj = talloc_zero(mem_ctx, struct drsuapi_DsReplicaObjectListItemEx);
1825 W_ERROR_HAVE_NO_MEMORY(obj);
1827 msg_dn = ldb_dn_new_fmt(obj, sam_ctx, "<GUID=%s>", GUID_string(obj, &getnc_state->guids[i]));
1828 W_ERROR_HAVE_NO_MEMORY(msg_dn);
1831 /* by re-searching here we avoid having a lot of full
1832 * records in memory between calls to getncchanges
1834 ret = drsuapi_search_with_extended_dn(sam_ctx, obj, &msg_res,
1835 msg_dn,
1836 LDB_SCOPE_BASE, msg_attrs, NULL);
1837 if (ret != LDB_SUCCESS) {
1838 if (ret != LDB_ERR_NO_SUCH_OBJECT) {
1839 DEBUG(1,("getncchanges: failed to fetch DN %s - %s\n",
1840 ldb_dn_get_extended_linearized(obj, msg_dn, 1), ldb_errstring(sam_ctx)));
1842 talloc_free(obj);
1843 continue;
1846 msg = msg_res->msgs[0];
1848 max_wait_reached = (time(NULL) - start > max_wait);
1850 werr = get_nc_changes_build_object(obj, msg,
1851 sam_ctx, getnc_state->ncRoot_dn,
1852 getnc_state->is_schema_nc,
1853 schema, &session_key, getnc_state->min_usn,
1854 req10->replica_flags,
1855 req10->partial_attribute_set,
1856 getnc_state->uptodateness_vector,
1857 req10->extended_op,
1858 max_wait_reached);
1859 if (!W_ERROR_IS_OK(werr)) {
1860 return werr;
1863 werr = get_nc_changes_add_links(sam_ctx, getnc_state,
1864 getnc_state->ncRoot_dn,
1865 schema, getnc_state->min_usn,
1866 req10->replica_flags,
1867 msg,
1868 &getnc_state->la_list,
1869 &getnc_state->la_count,
1870 getnc_state->uptodateness_vector);
1871 if (!W_ERROR_IS_OK(werr)) {
1872 return werr;
1875 uSN = ldb_msg_find_attr_as_int(msg, "uSNChanged", -1);
1876 if (uSN > r->out.ctr->ctr6.new_highwatermark.tmp_highest_usn) {
1877 r->out.ctr->ctr6.new_highwatermark.tmp_highest_usn = uSN;
1879 if (uSN > getnc_state->highest_usn) {
1880 getnc_state->highest_usn = uSN;
1883 if (obj->meta_data_ctr == NULL) {
1884 DEBUG(8,(__location__ ": getncchanges skipping send of object %s\n",
1885 ldb_dn_get_linearized(msg->dn)));
1886 /* no attributes to send */
1887 talloc_free(obj);
1888 continue;
1891 r->out.ctr->ctr6.object_count++;
1893 *currentObject = obj;
1894 currentObject = &obj->next_object;
1896 talloc_free(getnc_state->last_dn);
1897 getnc_state->last_dn = ldb_dn_copy(getnc_state, msg->dn);
1899 DEBUG(8,(__location__ ": replicating object %s\n", ldb_dn_get_linearized(msg->dn)));
1901 talloc_free(msg_res);
1902 talloc_free(msg_dn);
1905 getnc_state->num_processed = i;
1907 r->out.ctr->ctr6.nc_object_count = getnc_state->num_records;
1909 /* the client can us to call UpdateRefs on its behalf to
1910 re-establish monitoring of the NC */
1911 if ((req10->replica_flags & (DRSUAPI_DRS_ADD_REF | DRSUAPI_DRS_REF_GCSPN)) &&
1912 !GUID_all_zero(&req10->destination_dsa_guid)) {
1913 struct drsuapi_DsReplicaUpdateRefsRequest1 ureq;
1914 DEBUG(3,("UpdateRefs on getncchanges for %s\n",
1915 GUID_string(mem_ctx, &req10->destination_dsa_guid)));
1916 ureq.naming_context = ncRoot;
1917 ureq.dest_dsa_dns_name = samdb_ntds_msdcs_dns_name(b_state->sam_ctx, mem_ctx,
1918 &req10->destination_dsa_guid);
1919 if (!ureq.dest_dsa_dns_name) {
1920 return WERR_NOMEM;
1922 ureq.dest_dsa_guid = req10->destination_dsa_guid;
1923 ureq.options = DRSUAPI_DRS_ADD_REF |
1924 DRSUAPI_DRS_ASYNC_OP |
1925 DRSUAPI_DRS_GETCHG_CHECK;
1927 /* we also need to pass through the
1928 DRSUAPI_DRS_REF_GCSPN bit so that repsTo gets flagged
1929 to send notifies using the GC SPN */
1930 ureq.options |= (req10->replica_flags & DRSUAPI_DRS_REF_GCSPN);
1932 werr = drsuapi_UpdateRefs(b_state, mem_ctx, &ureq);
1933 if (!W_ERROR_IS_OK(werr)) {
1934 DEBUG(0,(__location__ ": Failed UpdateRefs in DsGetNCChanges - %s\n",
1935 win_errstr(werr)));
1940 * TODO:
1941 * This is just a guess, how to calculate the
1942 * number of linked attributes to send, we need to
1943 * find out how to do this right.
1945 if (r->out.ctr->ctr6.object_count >= max_links) {
1946 max_links = 0;
1947 } else {
1948 max_links -= r->out.ctr->ctr6.object_count;
1951 link_total = getnc_state->la_count;
1953 if (i < getnc_state->num_records) {
1954 r->out.ctr->ctr6.more_data = true;
1955 } else {
1956 /* sort the whole array the first time */
1957 if (!getnc_state->la_sorted) {
1958 LDB_TYPESAFE_QSORT(getnc_state->la_list, getnc_state->la_count,
1959 sam_ctx, linked_attribute_compare);
1960 getnc_state->la_sorted = true;
1963 link_count = getnc_state->la_count - getnc_state->la_idx;
1964 link_count = MIN(max_links, link_count);
1966 r->out.ctr->ctr6.linked_attributes_count = link_count;
1967 r->out.ctr->ctr6.linked_attributes = getnc_state->la_list + getnc_state->la_idx;
1969 getnc_state->la_idx += link_count;
1970 link_given = getnc_state->la_idx;
1972 if (getnc_state->la_idx < getnc_state->la_count) {
1973 r->out.ctr->ctr6.more_data = true;
1977 if (!r->out.ctr->ctr6.more_data) {
1978 talloc_steal(mem_ctx, getnc_state->la_list);
1980 r->out.ctr->ctr6.uptodateness_vector = talloc(mem_ctx, struct drsuapi_DsReplicaCursor2CtrEx);
1981 r->out.ctr->ctr6.new_highwatermark.highest_usn = r->out.ctr->ctr6.new_highwatermark.tmp_highest_usn;
1983 werr = get_nc_changes_udv(sam_ctx, getnc_state->ncRoot_dn,
1984 r->out.ctr->ctr6.uptodateness_vector);
1985 if (!W_ERROR_IS_OK(werr)) {
1986 return werr;
1989 talloc_free(getnc_state);
1990 b_state->getncchanges_state = NULL;
1993 if (req10->extended_op != DRSUAPI_EXOP_NONE) {
1994 r->out.ctr->ctr6.uptodateness_vector = NULL;
1995 r->out.ctr->ctr6.nc_object_count = 0;
1996 ZERO_STRUCT(r->out.ctr->ctr6.new_highwatermark);
1999 DEBUG(r->out.ctr->ctr6.more_data?4:2,
2000 ("DsGetNCChanges with uSNChanged >= %llu flags 0x%08x on %s gave %u objects (done %u/%u) %u links (done %u/%u (as %s))\n",
2001 (unsigned long long)(req10->highwatermark.highest_usn+1),
2002 req10->replica_flags, drs_ObjectIdentifier_to_string(mem_ctx, ncRoot),
2003 r->out.ctr->ctr6.object_count,
2004 i, r->out.ctr->ctr6.more_data?getnc_state->num_records:i,
2005 r->out.ctr->ctr6.linked_attributes_count,
2006 link_given, link_total,
2007 dom_sid_string(mem_ctx, user_sid)));
2009 #if 0
2010 if (!r->out.ctr->ctr6.more_data && req10->extended_op != DRSUAPI_EXOP_NONE) {
2011 NDR_PRINT_FUNCTION_DEBUG(drsuapi_DsGetNCChanges, NDR_BOTH, r);
2013 #endif
2015 return WERR_OK;