s4-rpc_server/drsupai: Avoid looping with Azure AD Connect by not incrementing temp_h...
[Samba.git] / source4 / rpc_server / drsuapi / getncchanges.c
blob8864e79f10ea9df702f71e6af4d76777a4e59c78
1 /*
2 Unix SMB/CIFS implementation.
4 implement the DSGetNCChanges call
6 Copyright (C) Anatoliy Atanasov 2009
7 Copyright (C) Andrew Tridgell 2009-2010
8 Copyright (C) Andrew Bartlett 2010-2016
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 3 of the License, or
13 (at your option) any later version.
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with this program. If not, see <http://www.gnu.org/licenses/>.
24 #include "includes.h"
25 #include "rpc_server/dcerpc_server.h"
26 #include "dsdb/samdb/samdb.h"
27 #include "param/param.h"
28 #include "librpc/gen_ndr/ndr_drsblobs.h"
29 #include "librpc/gen_ndr/ndr_drsuapi.h"
30 #include "librpc/gen_ndr/ndr_security.h"
31 #include "libcli/security/security.h"
32 #include "libcli/security/session.h"
33 #include "rpc_server/drsuapi/dcesrv_drsuapi.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"
39 #include "lib/dbwrap/dbwrap.h"
40 #include "lib/dbwrap/dbwrap_rbt.h"
41 #include "librpc/gen_ndr/ndr_misc.h"
43 #undef DBGC_CLASS
44 #define DBGC_CLASS DBGC_DRS_REPL
46 #define DRS_GUID_SIZE 16
47 #define DEFAULT_MAX_OBJECTS 1000
48 #define DEFAULT_MAX_LINKS 1500
51 * state of a partially-completed replication cycle. This state persists
52 * over multiple calls to dcesrv_drsuapi_DsGetNCChanges()
54 struct drsuapi_getncchanges_state {
55 struct db_context *obj_cache;
56 struct GUID *guids;
57 uint32_t num_records;
58 uint32_t num_processed;
59 struct ldb_dn *ncRoot_dn;
60 struct GUID ncRoot_guid;
61 bool is_schema_nc;
62 bool is_get_anc;
63 bool broken_samba_4_5_get_anc_emulation;
64 bool is_get_tgt;
65 bool send_nc_root_first;
66 uint64_t min_usn;
67 uint64_t max_usn;
68 struct drsuapi_DsReplicaHighWaterMark last_hwm;
69 struct ldb_dn *last_dn;
70 struct drsuapi_DsReplicaHighWaterMark final_hwm;
71 struct drsuapi_DsReplicaCursor2CtrEx *final_udv;
72 struct drsuapi_DsReplicaLinkedAttribute *la_list;
73 uint32_t la_count;
74 uint32_t la_idx;
76 /* these are just used for debugging the replication's progress */
77 uint32_t links_given;
78 uint32_t total_links;
81 /* We must keep the GUIDs in NDR form for sorting */
82 struct la_for_sorting {
83 const struct drsuapi_DsReplicaLinkedAttribute *link;
84 uint8_t target_guid[DRS_GUID_SIZE];
85 uint8_t source_guid[DRS_GUID_SIZE];
89 * stores the state for a chunk of replication data. This state information
90 * only exists for a single call to dcesrv_drsuapi_DsGetNCChanges()
92 struct getncchanges_repl_chunk {
93 uint32_t max_objects;
94 uint32_t max_links;
95 uint32_t tgt_la_count;
96 bool immediate_link_sync;
97 time_t max_wait;
98 time_t start;
100 /* stores the objects to be sent in this chunk */
101 uint32_t object_count;
102 struct drsuapi_DsReplicaObjectListItemEx *object_list;
104 /* the last object added to this replication chunk */
105 struct drsuapi_DsReplicaObjectListItemEx *last_object;
108 static int drsuapi_DsReplicaHighWaterMark_cmp(const struct drsuapi_DsReplicaHighWaterMark *h1,
109 const struct drsuapi_DsReplicaHighWaterMark *h2)
111 if (h1->highest_usn < h2->highest_usn) {
112 return -1;
113 } else if (h1->highest_usn > h2->highest_usn) {
114 return 1;
115 } else if (h1->tmp_highest_usn < h2->tmp_highest_usn) {
116 return -1;
117 } else if (h1->tmp_highest_usn > h2->tmp_highest_usn) {
118 return 1;
119 } else if (h1->reserved_usn < h2->reserved_usn) {
120 return -1;
121 } else if (h1->reserved_usn > h2->reserved_usn) {
122 return 1;
125 return 0;
129 build a DsReplicaObjectIdentifier from a ldb msg
131 static struct drsuapi_DsReplicaObjectIdentifier *get_object_identifier(TALLOC_CTX *mem_ctx,
132 const struct ldb_message *msg)
134 struct drsuapi_DsReplicaObjectIdentifier *identifier;
135 struct dom_sid *sid;
137 identifier = talloc(mem_ctx, struct drsuapi_DsReplicaObjectIdentifier);
138 if (identifier == NULL) {
139 return NULL;
142 identifier->dn = ldb_dn_alloc_linearized(identifier, msg->dn);
143 identifier->guid = samdb_result_guid(msg, "objectGUID");
145 sid = samdb_result_dom_sid(identifier, msg, "objectSid");
146 if (sid) {
147 identifier->sid = *sid;
148 } else {
149 ZERO_STRUCT(identifier->sid);
151 return identifier;
154 static int udv_compare(const struct GUID *guid1, struct GUID guid2)
156 return GUID_compare(guid1, &guid2);
160 see if we can filter an attribute using the uptodateness_vector
162 static bool udv_filter(const struct drsuapi_DsReplicaCursorCtrEx *udv,
163 const struct GUID *originating_invocation_id,
164 uint64_t originating_usn)
166 const struct drsuapi_DsReplicaCursor *c;
167 if (udv == NULL) return false;
168 BINARY_ARRAY_SEARCH(udv->cursors, udv->count, source_dsa_invocation_id,
169 originating_invocation_id, udv_compare, c);
170 if (c && originating_usn <= c->highest_usn) {
171 return true;
173 return false;
176 static int uint32_t_cmp(uint32_t a1, uint32_t a2)
178 if (a1 == a2) return 0;
179 return a1 > a2 ? 1 : -1;
182 static int uint32_t_ptr_cmp(uint32_t *a1, uint32_t *a2)
184 if (*a1 == *a2) return 0;
185 return *a1 > *a2 ? 1 : -1;
188 static WERROR getncchanges_attid_remote_to_local(const struct dsdb_schema *schema,
189 const struct dsdb_syntax_ctx *ctx,
190 enum drsuapi_DsAttributeId remote_attid_as_enum,
191 enum drsuapi_DsAttributeId *local_attid_as_enum,
192 const struct dsdb_attribute **_sa)
194 WERROR werr;
195 const struct dsdb_attribute *sa = NULL;
197 if (ctx->pfm_remote == NULL) {
198 DEBUG(7, ("No prefixMap supplied, falling back to local prefixMap.\n"));
199 goto fail;
202 werr = dsdb_attribute_drsuapi_remote_to_local(ctx,
203 remote_attid_as_enum,
204 local_attid_as_enum,
205 _sa);
206 if (!W_ERROR_IS_OK(werr)) {
207 DEBUG(3, ("WARNING: Unable to resolve remote attid, falling back to local prefixMap.\n"));
208 goto fail;
211 return werr;
212 fail:
214 sa = dsdb_attribute_by_attributeID_id(schema, remote_attid_as_enum);
215 if (sa == NULL) {
216 return WERR_DS_DRA_SCHEMA_MISMATCH;
217 } else {
218 if (local_attid_as_enum != NULL) {
219 *local_attid_as_enum = sa->attributeID_id;
221 if (_sa != NULL) {
222 *_sa = sa;
224 return WERR_OK;
228 static WERROR getncchanges_update_revealed_list(struct ldb_context *sam_ctx,
229 TALLOC_CTX *mem_ctx,
230 struct ldb_message **msg,
231 struct ldb_dn *object_dn,
232 const struct GUID *object_guid,
233 const struct dsdb_attribute *sa,
234 struct replPropertyMetaData1 *meta_data,
235 struct ldb_message *revealed_users)
237 enum ndr_err_code ndr_err;
238 int ldb_err;
239 char *attr_str = NULL;
240 char *attr_hex = NULL;
241 DATA_BLOB attr_blob;
242 struct ldb_message_element *existing = NULL, *el_add = NULL, *el_del = NULL;
243 const char * const * secret_attributes = ldb_get_opaque(sam_ctx, "LDB_SECRET_ATTRIBUTE_LIST");
245 if (!ldb_attr_in_list(secret_attributes,
246 sa->lDAPDisplayName)) {
247 return WERR_OK;
251 ndr_err = ndr_push_struct_blob(&attr_blob, mem_ctx, meta_data, (ndr_push_flags_fn_t)ndr_push_replPropertyMetaData1);
252 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {
253 return WERR_DS_DRA_INTERNAL_ERROR;
256 attr_hex = hex_encode_talloc(mem_ctx, attr_blob.data, attr_blob.length);
257 if (attr_hex == NULL) {
258 return WERR_NOT_ENOUGH_MEMORY;
261 attr_str = talloc_asprintf(mem_ctx, "B:%zd:%s:%s", attr_blob.length*2, attr_hex, ldb_dn_get_linearized(object_dn));
262 if (attr_str == NULL) {
263 return WERR_NOT_ENOUGH_MEMORY;
266 existing = ldb_msg_find_element(revealed_users, "msDS-RevealedUsers");
267 if (existing != NULL) {
268 /* Replace the old value (if one exists) with the current one */
269 struct parsed_dn *link_dns;
270 struct parsed_dn *exact = NULL, *unused = NULL;
271 uint8_t attid[4];
272 DATA_BLOB partial_meta;
274 ldb_err = get_parsed_dns_trusted(mem_ctx, existing, &link_dns);
275 if (ldb_err != LDB_SUCCESS) {
276 return WERR_DS_DRA_INTERNAL_ERROR;
279 /* Construct a partial metadata blob to match on in the DB */
280 SIVAL(attid, 0, sa->attributeID_id);
281 partial_meta.length = 4;
282 partial_meta.data = attid;
284 /* Binary search using GUID and attribute id for uniqueness */
285 ldb_err = parsed_dn_find(sam_ctx, link_dns, existing->num_values,
286 object_guid, object_dn,
287 partial_meta, 4,
288 &exact, &unused,
289 DSDB_SYNTAX_BINARY_DN, true);
291 if (ldb_err != LDB_SUCCESS) {
292 DEBUG(0,(__location__ ": Failed parsed DN find - %s\n",
293 ldb_errstring(sam_ctx)));
294 return WERR_DS_DRA_INTERNAL_ERROR;
297 if (exact != NULL) {
298 /* Perform some verification of the blob */
299 struct replPropertyMetaData1 existing_meta_data;
300 ndr_err = ndr_pull_struct_blob_all_noalloc(&exact->dsdb_dn->extra_part,
301 &existing_meta_data,
302 (ndr_pull_flags_fn_t)ndr_pull_replPropertyMetaData1);
303 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {
304 return WERR_DS_DRA_INTERNAL_ERROR;
307 if (existing_meta_data.attid == sa->attributeID_id) {
308 ldb_err = ldb_msg_add_empty(*msg, "msDS-RevealedUsers", LDB_FLAG_MOD_DELETE, &el_del);
309 if (ldb_err != LDB_SUCCESS) {
310 return WERR_DS_DRA_INTERNAL_ERROR;
313 el_del->values = talloc_array((*msg)->elements, struct ldb_val, 1);
314 if (el_del->values == NULL) {
315 return WERR_NOT_ENOUGH_MEMORY;
317 el_del->values[0] = *exact->v;
318 el_del->num_values = 1;
319 } else {
320 return WERR_DS_DRA_INTERNAL_ERROR;
325 ldb_err = ldb_msg_add_empty(*msg, "msDS-RevealedUsers", LDB_FLAG_MOD_ADD, &el_add);
326 if (ldb_err != LDB_SUCCESS) {
327 return WERR_DS_DRA_INTERNAL_ERROR;
330 el_add->values = talloc_array((*msg)->elements, struct ldb_val, 1);
331 if (el_add->values == NULL) {
332 return WERR_NOT_ENOUGH_MEMORY;
336 el_add->values[0] = data_blob_string_const(attr_str);
337 el_add->num_values = 1;
339 return WERR_OK;
343 * This function filter attributes for build_object based on the
344 * uptodatenessvector and partial attribute set.
346 * Any secret attributes are forced here for REPL_SECRET, and audited at this
347 * point with msDS-RevealedUsers.
349 static WERROR get_nc_changes_filter_attrs(struct drsuapi_DsReplicaObjectListItemEx *obj,
350 struct replPropertyMetaDataBlob md,
351 struct ldb_context *sam_ctx,
352 const struct ldb_message *msg,
353 const struct GUID *guid,
354 uint32_t *count,
355 uint64_t highest_usn,
356 const struct dsdb_attribute *rdn_sa,
357 struct dsdb_schema *schema,
358 struct drsuapi_DsReplicaCursorCtrEx *uptodateness_vector,
359 struct drsuapi_DsPartialAttributeSet *partial_attribute_set,
360 uint32_t *local_pas,
361 uint32_t *attids,
362 bool exop_secret,
363 struct ldb_message **revealed_list_msg,
364 struct ldb_message *existing_revealed_list_msg)
366 uint32_t i, n;
367 WERROR werr;
368 for (n=i=0; i<md.ctr.ctr1.count; i++) {
369 const struct dsdb_attribute *sa;
370 bool force_attribute = false;
372 /* if the attribute has not changed, and it is not the
373 instanceType then don't include it */
374 if (md.ctr.ctr1.array[i].local_usn < highest_usn &&
375 !exop_secret &&
376 md.ctr.ctr1.array[i].attid != DRSUAPI_ATTID_instanceType) continue;
378 /* don't include the rDN */
379 if (md.ctr.ctr1.array[i].attid == rdn_sa->attributeID_id) continue;
381 sa = dsdb_attribute_by_attributeID_id(schema, md.ctr.ctr1.array[i].attid);
382 if (!sa) {
383 DEBUG(0,(__location__ ": Failed to find attribute in schema for attrid %u mentioned in replPropertyMetaData of %s\n",
384 (unsigned int)md.ctr.ctr1.array[i].attid,
385 ldb_dn_get_linearized(msg->dn)));
386 return WERR_DS_DRA_INTERNAL_ERROR;
389 if (sa->linkID) {
390 struct ldb_message_element *el;
391 el = ldb_msg_find_element(msg, sa->lDAPDisplayName);
392 if (el && el->num_values && dsdb_dn_is_upgraded_link_val(&el->values[0])) {
393 /* don't send upgraded links inline */
394 continue;
398 if (exop_secret &&
399 !dsdb_attr_in_rodc_fas(sa)) {
400 force_attribute = true;
401 DEBUG(4,("Forcing attribute %s in %s\n",
402 sa->lDAPDisplayName, ldb_dn_get_linearized(msg->dn)));
403 werr = getncchanges_update_revealed_list(sam_ctx, obj,
404 revealed_list_msg,
405 msg->dn, guid, sa,
406 &md.ctr.ctr1.array[i],
407 existing_revealed_list_msg);
408 if (!W_ERROR_IS_OK(werr)) {
409 return werr;
413 /* filter by uptodateness_vector */
414 if (md.ctr.ctr1.array[i].attid != DRSUAPI_ATTID_instanceType &&
415 !force_attribute &&
416 udv_filter(uptodateness_vector,
417 &md.ctr.ctr1.array[i].originating_invocation_id,
418 md.ctr.ctr1.array[i].originating_usn)) {
419 continue;
422 /* filter by partial_attribute_set */
423 if (partial_attribute_set && !force_attribute) {
424 uint32_t *result = NULL;
425 BINARY_ARRAY_SEARCH_V(local_pas, partial_attribute_set->num_attids, sa->attributeID_id,
426 uint32_t_cmp, result);
427 if (result == NULL) {
428 continue;
432 obj->meta_data_ctr->meta_data[n].originating_change_time = md.ctr.ctr1.array[i].originating_change_time;
433 obj->meta_data_ctr->meta_data[n].version = md.ctr.ctr1.array[i].version;
434 obj->meta_data_ctr->meta_data[n].originating_invocation_id = md.ctr.ctr1.array[i].originating_invocation_id;
435 obj->meta_data_ctr->meta_data[n].originating_usn = md.ctr.ctr1.array[i].originating_usn;
436 attids[n] = md.ctr.ctr1.array[i].attid;
438 n++;
441 *count = n;
443 return WERR_OK;
447 drsuapi_DsGetNCChanges for one object
449 static WERROR get_nc_changes_build_object(struct drsuapi_DsReplicaObjectListItemEx *obj,
450 const struct ldb_message *msg,
451 struct ldb_context *sam_ctx,
452 struct drsuapi_getncchanges_state *getnc_state,
453 struct dsdb_schema *schema,
454 DATA_BLOB *session_key,
455 struct drsuapi_DsGetNCChangesRequest10 *req10,
456 bool force_object_return,
457 uint32_t *local_pas,
458 struct ldb_dn *machine_dn,
459 const struct GUID *guid)
461 const struct ldb_val *md_value;
462 uint32_t i, n;
463 struct replPropertyMetaDataBlob md;
464 uint32_t rid = 0;
465 int ldb_err;
466 enum ndr_err_code ndr_err;
467 uint32_t *attids;
468 const char *rdn;
469 const struct dsdb_attribute *rdn_sa;
470 uint64_t uSNChanged;
471 unsigned int instanceType;
472 struct dsdb_syntax_ctx syntax_ctx;
473 struct ldb_result *res = NULL;
474 WERROR werr;
475 int ret;
476 uint32_t replica_flags = req10->replica_flags;
477 struct drsuapi_DsPartialAttributeSet *partial_attribute_set =
478 req10->partial_attribute_set;
479 struct drsuapi_DsReplicaCursorCtrEx *uptodateness_vector =
480 req10->uptodateness_vector;
481 enum drsuapi_DsExtendedOperation extended_op = req10->extended_op;
482 bool is_schema_nc = getnc_state->is_schema_nc;
483 uint64_t highest_usn = getnc_state->min_usn;
485 /* make dsdb sytanx context for conversions */
486 dsdb_syntax_ctx_init(&syntax_ctx, sam_ctx, schema);
487 syntax_ctx.is_schema_nc = is_schema_nc;
489 uSNChanged = ldb_msg_find_attr_as_uint64(msg, "uSNChanged", 0);
490 instanceType = ldb_msg_find_attr_as_uint(msg, "instanceType", 0);
491 if (instanceType & INSTANCE_TYPE_IS_NC_HEAD) {
492 obj->is_nc_prefix = true;
493 obj->parent_object_guid = NULL;
494 } else {
495 obj->is_nc_prefix = false;
496 obj->parent_object_guid = talloc(obj, struct GUID);
497 if (obj->parent_object_guid == NULL) {
498 return WERR_DS_DRA_INTERNAL_ERROR;
500 *obj->parent_object_guid = samdb_result_guid(msg, "parentGUID");
501 if (GUID_all_zero(obj->parent_object_guid)) {
502 DEBUG(0,(__location__ ": missing parentGUID for %s\n",
503 ldb_dn_get_linearized(msg->dn)));
504 return WERR_DS_DRA_INTERNAL_ERROR;
507 obj->next_object = NULL;
509 md_value = ldb_msg_find_ldb_val(msg, "replPropertyMetaData");
510 if (!md_value) {
511 /* nothing to send */
512 return WERR_OK;
515 if (instanceType & INSTANCE_TYPE_UNINSTANT) {
516 /* don't send uninstantiated objects */
517 return WERR_OK;
520 if (uSNChanged <= highest_usn) {
521 /* nothing to send */
522 return WERR_OK;
525 ndr_err = ndr_pull_struct_blob(md_value, obj, &md,
526 (ndr_pull_flags_fn_t)ndr_pull_replPropertyMetaDataBlob);
527 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {
528 return WERR_DS_DRA_INTERNAL_ERROR;
531 if (md.version != 1) {
532 return WERR_DS_DRA_INTERNAL_ERROR;
535 rdn = ldb_dn_get_rdn_name(msg->dn);
536 if (rdn == NULL) {
537 DEBUG(0,(__location__ ": No rDN for %s\n", ldb_dn_get_linearized(msg->dn)));
538 return WERR_DS_DRA_INTERNAL_ERROR;
541 rdn_sa = dsdb_attribute_by_lDAPDisplayName(schema, rdn);
542 if (rdn_sa == NULL) {
543 DEBUG(0,(__location__ ": Can't find dsds_attribute for rDN %s in %s\n",
544 rdn, ldb_dn_get_linearized(msg->dn)));
545 return WERR_DS_DRA_INTERNAL_ERROR;
548 obj->meta_data_ctr = talloc(obj, struct drsuapi_DsReplicaMetaDataCtr);
549 attids = talloc_array(obj, uint32_t, md.ctr.ctr1.count);
551 obj->object.identifier = get_object_identifier(obj, msg);
552 if (obj->object.identifier == NULL) {
553 return WERR_NOT_ENOUGH_MEMORY;
555 dom_sid_split_rid(NULL, &obj->object.identifier->sid, NULL, &rid);
557 obj->meta_data_ctr->meta_data = talloc_array(obj, struct drsuapi_DsReplicaMetaData, md.ctr.ctr1.count);
559 if (extended_op == DRSUAPI_EXOP_REPL_SECRET) {
560 /* Get the existing revealed users for the destination */
561 struct ldb_message *revealed_list_msg = NULL;
562 struct ldb_message *existing_revealed_list_msg = NULL;
563 const char *machine_attrs[] = {
564 "msDS-RevealedUsers",
565 NULL
568 revealed_list_msg = ldb_msg_new(sam_ctx);
569 if (revealed_list_msg == NULL) {
570 return WERR_NOT_ENOUGH_MEMORY;
572 revealed_list_msg->dn = machine_dn;
574 ret = ldb_transaction_start(sam_ctx);
575 if (ret != LDB_SUCCESS) {
576 DEBUG(0,(__location__ ": Failed transaction start - %s\n",
577 ldb_errstring(sam_ctx)));
578 return WERR_DS_DRA_INTERNAL_ERROR;
581 ldb_err = dsdb_search_dn(sam_ctx, obj, &res, machine_dn, machine_attrs, DSDB_SEARCH_SHOW_EXTENDED_DN);
582 if (ldb_err != LDB_SUCCESS || res->count != 1) {
583 ldb_transaction_cancel(sam_ctx);
584 return WERR_DS_DRA_INTERNAL_ERROR;
587 existing_revealed_list_msg = res->msgs[0];
589 werr = get_nc_changes_filter_attrs(obj, md, sam_ctx, msg,
590 guid, &n, highest_usn,
591 rdn_sa, schema,
592 uptodateness_vector,
593 partial_attribute_set, local_pas,
594 attids,
595 true,
596 &revealed_list_msg,
597 existing_revealed_list_msg);
598 if (!W_ERROR_IS_OK(werr)) {
599 ldb_transaction_cancel(sam_ctx);
600 return werr;
603 if (revealed_list_msg != NULL) {
604 ret = ldb_modify(sam_ctx, revealed_list_msg);
605 if (ret != LDB_SUCCESS) {
606 DEBUG(0,(__location__ ": Failed to alter revealed links - %s\n",
607 ldb_errstring(sam_ctx)));
608 ldb_transaction_cancel(sam_ctx);
609 return WERR_DS_DRA_INTERNAL_ERROR;
613 ret = ldb_transaction_commit(sam_ctx);
614 if (ret != LDB_SUCCESS) {
615 DEBUG(0,(__location__ ": Failed transaction commit - %s\n",
616 ldb_errstring(sam_ctx)));
617 return WERR_DS_DRA_INTERNAL_ERROR;
619 } else {
620 werr = get_nc_changes_filter_attrs(obj, md, sam_ctx, msg, guid,
621 &n, highest_usn, rdn_sa,
622 schema, uptodateness_vector,
623 partial_attribute_set, local_pas,
624 attids,
625 false,
626 NULL,
627 NULL);
628 if (!W_ERROR_IS_OK(werr)) {
629 return werr;
633 /* ignore it if its an empty change. Note that renames always
634 * change the 'name' attribute, so they won't be ignored by
635 * this
637 * the force_object_return check is used to force an empty
638 * object return when we timeout in the getncchanges loop.
639 * This allows us to return an empty object, which keeps the
640 * client happy while preventing timeouts
642 if (n == 0 ||
643 (n == 1 &&
644 attids[0] == DRSUAPI_ATTID_instanceType &&
645 !force_object_return)) {
646 talloc_free(obj->meta_data_ctr);
647 obj->meta_data_ctr = NULL;
648 return WERR_OK;
651 obj->meta_data_ctr->count = n;
653 obj->object.flags = DRSUAPI_DS_REPLICA_OBJECT_FROM_MASTER;
654 obj->object.attribute_ctr.num_attributes = obj->meta_data_ctr->count;
655 obj->object.attribute_ctr.attributes = talloc_array(obj, struct drsuapi_DsReplicaAttribute,
656 obj->object.attribute_ctr.num_attributes);
657 if (obj->object.attribute_ctr.attributes == NULL) {
658 return WERR_NOT_ENOUGH_MEMORY;
662 * Note that the meta_data array and the attributes array must
663 * be the same size and in the same order
665 for (i=0; i<obj->object.attribute_ctr.num_attributes; i++) {
666 struct ldb_message_element *el;
667 const struct dsdb_attribute *sa;
669 sa = dsdb_attribute_by_attributeID_id(schema, attids[i]);
670 if (!sa) {
671 DEBUG(0,("Unable to find attributeID %u in schema\n", attids[i]));
672 return WERR_DS_DRA_INTERNAL_ERROR;
675 el = ldb_msg_find_element(msg, sa->lDAPDisplayName);
676 if (el == NULL) {
677 /* this happens for attributes that have been removed */
678 DEBUG(5,("No element '%s' for attributeID %u in message\n",
679 sa->lDAPDisplayName, attids[i]));
680 ZERO_STRUCT(obj->object.attribute_ctr.attributes[i]);
681 obj->object.attribute_ctr.attributes[i].attid =
682 dsdb_attribute_get_attid(sa, syntax_ctx.is_schema_nc);
683 } else {
684 werr = sa->syntax->ldb_to_drsuapi(&syntax_ctx, sa, el, obj,
685 &obj->object.attribute_ctr.attributes[i]);
686 if (!W_ERROR_IS_OK(werr)) {
687 DEBUG(0,("Unable to convert %s on %s to DRS object - %s\n",
688 sa->lDAPDisplayName, ldb_dn_get_linearized(msg->dn),
689 win_errstr(werr)));
690 return werr;
692 /* if DRSUAPI_DRS_SPECIAL_SECRET_PROCESSING is set
693 * check if attribute is secret and send a null value
695 if (replica_flags & DRSUAPI_DRS_SPECIAL_SECRET_PROCESSING) {
696 drsuapi_process_secret_attribute(&obj->object.attribute_ctr.attributes[i],
697 &obj->meta_data_ctr->meta_data[i]);
699 /* some attributes needs to be encrypted
700 before being sent */
701 werr = drsuapi_encrypt_attribute(obj, session_key, rid,
702 &obj->object.attribute_ctr.attributes[i]);
703 if (!W_ERROR_IS_OK(werr)) {
704 DEBUG(0,("Unable to encrypt %s on %s in DRS object - %s\n",
705 sa->lDAPDisplayName, ldb_dn_get_linearized(msg->dn),
706 win_errstr(werr)));
707 return werr;
710 if (attids[i] != obj->object.attribute_ctr.attributes[i].attid) {
711 DEBUG(0, ("Unable to replicate attribute %s on %s via DRS, incorrect attributeID: "
712 "0x%08x vs 0x%08x "
713 "Run dbcheck!\n",
714 sa->lDAPDisplayName,
715 ldb_dn_get_linearized(msg->dn),
716 attids[i],
717 obj->object.attribute_ctr.attributes[i].attid));
718 return WERR_DS_DATABASE_ERROR;
722 return WERR_OK;
726 add one linked attribute from an object to the list of linked
727 attributes in a getncchanges request
729 static WERROR get_nc_changes_add_la(TALLOC_CTX *mem_ctx,
730 struct ldb_context *sam_ctx,
731 const struct dsdb_schema *schema,
732 const struct dsdb_attribute *sa,
733 const struct ldb_message *msg,
734 struct dsdb_dn *dsdb_dn,
735 struct drsuapi_DsReplicaLinkedAttribute **la_list,
736 uint32_t *la_count,
737 bool is_schema_nc)
739 struct drsuapi_DsReplicaLinkedAttribute *la;
740 bool active;
741 NTSTATUS status;
742 WERROR werr;
744 (*la_list) = talloc_realloc(mem_ctx, *la_list, struct drsuapi_DsReplicaLinkedAttribute, (*la_count)+1);
745 W_ERROR_HAVE_NO_MEMORY(*la_list);
747 la = &(*la_list)[*la_count];
749 la->identifier = get_object_identifier(*la_list, msg);
750 W_ERROR_HAVE_NO_MEMORY(la->identifier);
752 active = (dsdb_dn_rmd_flags(dsdb_dn->dn) & DSDB_RMD_FLAG_DELETED) == 0;
754 if (!active) {
755 /* We have to check that the inactive link still point to an existing object */
756 struct GUID guid;
757 struct ldb_dn *tdn;
758 int ret;
759 const char *v;
761 v = ldb_msg_find_attr_as_string(msg, "isDeleted", "FALSE");
762 if (strncmp(v, "TRUE", 4) == 0) {
764 * Note: we skip the transmition of the deleted link even if the other part used to
765 * know about it because when we transmit the deletion of the object, the link will
766 * be deleted too due to deletion of object where link points and Windows do so.
768 if (dsdb_functional_level(sam_ctx) >= DS_DOMAIN_FUNCTION_2008_R2) {
769 v = ldb_msg_find_attr_as_string(msg, "isRecycled", "FALSE");
771 * On Windows 2008R2 isRecycled is always present even if FL or DL are < FL 2K8R2
772 * if it join an existing domain with deleted objets, it firsts impose to have a
773 * schema with the is-Recycled object and for all deleted objects it adds the isRecycled
774 * either during initial replication or after the getNCChanges.
775 * Behavior of samba has been changed to always have this attribute if it's present in the schema.
777 * So if FL <2K8R2 isRecycled might be here or not but we don't care, it's meaning less.
778 * If FL >=2K8R2 we are sure that this attribute will be here.
779 * For this kind of forest level we do not return the link if the object is recycled
780 * (isRecycled = true).
782 if (strncmp(v, "TRUE", 4) == 0) {
783 DEBUG(2, (" object %s is recycled, not returning linked attribute !\n",
784 ldb_dn_get_linearized(msg->dn)));
785 return WERR_OK;
787 } else {
788 return WERR_OK;
791 status = dsdb_get_extended_dn_guid(dsdb_dn->dn, &guid, "GUID");
792 if (!NT_STATUS_IS_OK(status)) {
793 DEBUG(0,(__location__ " Unable to extract GUID in linked attribute '%s' in '%s'\n",
794 sa->lDAPDisplayName, ldb_dn_get_linearized(msg->dn)));
795 return ntstatus_to_werror(status);
797 ret = dsdb_find_dn_by_guid(sam_ctx, mem_ctx, &guid, 0, &tdn);
798 if (ret == LDB_ERR_NO_SUCH_OBJECT) {
799 DEBUG(2, (" Search of guid %s returned 0 objects, skipping it !\n",
800 GUID_string(mem_ctx, &guid)));
801 return WERR_OK;
802 } else if (ret != LDB_SUCCESS) {
803 DEBUG(0, (__location__ " Search of guid %s failed with error code %d\n",
804 GUID_string(mem_ctx, &guid),
805 ret));
806 return WERR_OK;
809 la->attid = dsdb_attribute_get_attid(sa, is_schema_nc);
810 la->flags = active?DRSUAPI_DS_LINKED_ATTRIBUTE_FLAG_ACTIVE:0;
812 status = dsdb_get_extended_dn_uint32(dsdb_dn->dn, &la->meta_data.version, "RMD_VERSION");
813 if (!NT_STATUS_IS_OK(status)) {
814 DEBUG(0,(__location__ " No RMD_VERSION in linked attribute '%s' in '%s'\n",
815 sa->lDAPDisplayName, ldb_dn_get_linearized(msg->dn)));
816 return ntstatus_to_werror(status);
818 status = dsdb_get_extended_dn_nttime(dsdb_dn->dn, &la->meta_data.originating_change_time, "RMD_CHANGETIME");
819 if (!NT_STATUS_IS_OK(status)) {
820 DEBUG(0,(__location__ " No RMD_CHANGETIME in linked attribute '%s' in '%s'\n",
821 sa->lDAPDisplayName, ldb_dn_get_linearized(msg->dn)));
822 return ntstatus_to_werror(status);
824 status = dsdb_get_extended_dn_guid(dsdb_dn->dn, &la->meta_data.originating_invocation_id, "RMD_INVOCID");
825 if (!NT_STATUS_IS_OK(status)) {
826 DEBUG(0,(__location__ " No RMD_INVOCID in linked attribute '%s' in '%s'\n",
827 sa->lDAPDisplayName, ldb_dn_get_linearized(msg->dn)));
828 return ntstatus_to_werror(status);
830 status = dsdb_get_extended_dn_uint64(dsdb_dn->dn, &la->meta_data.originating_usn, "RMD_ORIGINATING_USN");
831 if (!NT_STATUS_IS_OK(status)) {
832 DEBUG(0,(__location__ " No RMD_ORIGINATING_USN in linked attribute '%s' in '%s'\n",
833 sa->lDAPDisplayName, ldb_dn_get_linearized(msg->dn)));
834 return ntstatus_to_werror(status);
837 status = dsdb_get_extended_dn_nttime(dsdb_dn->dn, &la->originating_add_time, "RMD_ADDTIME");
838 if (!NT_STATUS_IS_OK(status)) {
839 /* this is possible for upgraded links */
840 la->originating_add_time = la->meta_data.originating_change_time;
843 werr = dsdb_dn_la_to_blob(sam_ctx, sa, schema, *la_list, dsdb_dn, &la->value.blob);
844 W_ERROR_NOT_OK_RETURN(werr);
846 (*la_count)++;
847 return WERR_OK;
852 add linked attributes from an object to the list of linked
853 attributes in a getncchanges request
855 static WERROR get_nc_changes_add_links(struct ldb_context *sam_ctx,
856 TALLOC_CTX *mem_ctx,
857 bool is_schema_nc,
858 struct dsdb_schema *schema,
859 uint64_t highest_usn,
860 uint32_t replica_flags,
861 const struct ldb_message *msg,
862 struct drsuapi_DsReplicaLinkedAttribute **la_list,
863 uint32_t *la_count,
864 struct drsuapi_DsReplicaCursorCtrEx *uptodateness_vector)
866 unsigned int i;
867 TALLOC_CTX *tmp_ctx = NULL;
868 uint64_t uSNChanged = ldb_msg_find_attr_as_uint64(msg, "uSNChanged", 0);
869 bool is_critical = ldb_msg_find_attr_as_bool(msg, "isCriticalSystemObject", false);
871 if (replica_flags & DRSUAPI_DRS_CRITICAL_ONLY) {
872 if (!is_critical) {
873 return WERR_OK;
877 if (uSNChanged <= highest_usn) {
878 return WERR_OK;
881 tmp_ctx = talloc_new(mem_ctx);
882 if (tmp_ctx == NULL) {
883 return WERR_NOT_ENOUGH_MEMORY;
886 for (i=0; i<msg->num_elements; i++) {
887 struct ldb_message_element *el = &msg->elements[i];
888 const struct dsdb_attribute *sa;
889 unsigned int j;
891 sa = dsdb_attribute_by_lDAPDisplayName(schema, el->name);
893 if (!sa || sa->linkID == 0 || (sa->linkID & 1)) {
894 /* we only want forward links */
895 continue;
898 if (el->num_values && !dsdb_dn_is_upgraded_link_val(&el->values[0])) {
899 /* its an old style link, it will have been
900 * sent in the main replication data */
901 continue;
904 for (j=0; j<el->num_values; j++) {
905 struct dsdb_dn *dsdb_dn;
906 uint64_t local_usn;
907 uint64_t originating_usn;
908 NTSTATUS status, status2;
909 WERROR werr;
910 struct GUID originating_invocation_id;
912 dsdb_dn = dsdb_dn_parse(tmp_ctx, sam_ctx, &el->values[j], sa->syntax->ldap_oid);
913 if (dsdb_dn == NULL) {
914 DEBUG(1,(__location__ ": Failed to parse DN for %s in %s\n",
915 el->name, ldb_dn_get_linearized(msg->dn)));
916 talloc_free(tmp_ctx);
917 return WERR_DS_DRA_INTERNAL_ERROR;
920 status = dsdb_get_extended_dn_uint64(dsdb_dn->dn, &local_usn, "RMD_LOCAL_USN");
921 if (!NT_STATUS_IS_OK(status)) {
922 /* this can happen for attributes
923 given to us with old style meta
924 data */
925 continue;
928 if (local_usn > uSNChanged) {
929 DEBUG(1,(__location__ ": uSNChanged less than RMD_LOCAL_USN for %s on %s\n",
930 el->name, ldb_dn_get_linearized(msg->dn)));
931 talloc_free(tmp_ctx);
932 return WERR_DS_DRA_INTERNAL_ERROR;
935 if (local_usn <= highest_usn) {
936 continue;
939 status = dsdb_get_extended_dn_guid(dsdb_dn->dn,
940 &originating_invocation_id,
941 "RMD_INVOCID");
942 status2 = dsdb_get_extended_dn_uint64(dsdb_dn->dn,
943 &originating_usn,
944 "RMD_ORIGINATING_USN");
946 if (NT_STATUS_IS_OK(status) && NT_STATUS_IS_OK(status2)) {
947 if (udv_filter(uptodateness_vector,
948 &originating_invocation_id,
949 originating_usn)) {
950 continue;
954 werr = get_nc_changes_add_la(mem_ctx, sam_ctx, schema,
955 sa, msg, dsdb_dn, la_list,
956 la_count, is_schema_nc);
957 if (!W_ERROR_IS_OK(werr)) {
958 talloc_free(tmp_ctx);
959 return werr;
964 talloc_free(tmp_ctx);
965 return WERR_OK;
969 fill in the cursors return based on the replUpToDateVector for the ncRoot_dn
971 static WERROR get_nc_changes_udv(struct ldb_context *sam_ctx,
972 struct ldb_dn *ncRoot_dn,
973 struct drsuapi_DsReplicaCursor2CtrEx *udv)
975 int ret;
977 udv->version = 2;
978 udv->reserved1 = 0;
979 udv->reserved2 = 0;
981 ret = dsdb_load_udv_v2(sam_ctx, ncRoot_dn, udv, &udv->cursors, &udv->count);
982 if (ret != LDB_SUCCESS) {
983 DEBUG(0,(__location__ ": Failed to load UDV for %s - %s\n",
984 ldb_dn_get_linearized(ncRoot_dn), ldb_errstring(sam_ctx)));
985 return WERR_DS_DRA_INTERNAL_ERROR;
988 return WERR_OK;
992 /* comparison function for linked attributes - see CompareLinks() in
993 * MS-DRSR section 4.1.10.5.17 */
994 static int linked_attribute_compare(const struct la_for_sorting *la1,
995 const struct la_for_sorting *la2)
997 int c;
998 c = memcmp(la1->source_guid,
999 la2->source_guid, sizeof(la2->source_guid));
1000 if (c != 0) {
1001 return c;
1004 if (la1->link->attid != la2->link->attid) {
1005 return la1->link->attid < la2->link->attid? -1:1;
1008 if ((la1->link->flags & DRSUAPI_DS_LINKED_ATTRIBUTE_FLAG_ACTIVE) !=
1009 (la2->link->flags & DRSUAPI_DS_LINKED_ATTRIBUTE_FLAG_ACTIVE)) {
1010 return (la1->link->flags &
1011 DRSUAPI_DS_LINKED_ATTRIBUTE_FLAG_ACTIVE)? 1:-1;
1014 return memcmp(la1->target_guid,
1015 la2->target_guid, sizeof(la2->target_guid));
1018 struct drsuapi_changed_objects {
1019 struct ldb_dn *dn;
1020 struct GUID guid;
1021 uint64_t usn;
1026 sort the objects we send by tree order (Samba 4.5 emulation)
1028 static int site_res_cmp_anc_order(struct drsuapi_changed_objects *m1,
1029 struct drsuapi_changed_objects *m2,
1030 struct drsuapi_getncchanges_state *getnc_state)
1032 return ldb_dn_compare(m2->dn, m1->dn);
1036 sort the objects we send first by uSNChanged
1038 static int site_res_cmp_usn_order(struct drsuapi_changed_objects *m1,
1039 struct drsuapi_changed_objects *m2,
1040 struct drsuapi_getncchanges_state *getnc_state)
1042 if (m1->usn == m2->usn) {
1043 return ldb_dn_compare(m2->dn, m1->dn);
1046 if (m1->usn < m2->usn) {
1047 return -1;
1050 return 1;
1055 handle a DRSUAPI_EXOP_FSMO_RID_ALLOC call
1057 static WERROR getncchanges_rid_alloc(struct drsuapi_bind_state *b_state,
1058 TALLOC_CTX *mem_ctx,
1059 struct drsuapi_DsGetNCChangesRequest10 *req10,
1060 struct drsuapi_DsGetNCChangesCtr6 *ctr6,
1061 struct ldb_dn **rid_manager_dn)
1063 struct ldb_dn *req_dn, *ntds_dn = NULL;
1064 int ret;
1065 struct ldb_context *ldb = b_state->sam_ctx;
1066 struct ldb_result *ext_res;
1067 struct dsdb_fsmo_extended_op *exop;
1068 bool is_us;
1071 steps:
1072 - verify that the DN being asked for is the RID Manager DN
1073 - verify that we are the RID Manager
1076 /* work out who is the RID Manager, also return to caller */
1077 ret = samdb_rid_manager_dn(ldb, mem_ctx, rid_manager_dn);
1078 if (ret != LDB_SUCCESS) {
1079 DEBUG(0, (__location__ ": Failed to find RID Manager object - %s\n", ldb_errstring(ldb)));
1080 return WERR_DS_DRA_INTERNAL_ERROR;
1083 ret = drs_ObjectIdentifier_to_dn_and_nc_root(mem_ctx,
1084 ldb,
1085 req10->naming_context,
1086 &req_dn,
1087 NULL);
1088 if (ret != LDB_SUCCESS) {
1089 DBG_ERR("RID Alloc request for invalid DN %s: %s\n",
1090 drs_ObjectIdentifier_to_debug_string(mem_ctx, req10->naming_context),
1091 ldb_strerror(ret));
1092 ctr6->extended_ret = DRSUAPI_EXOP_ERR_MISMATCH;
1093 return WERR_OK;
1096 if (ldb_dn_compare(req_dn, *rid_manager_dn) != 0) {
1097 /* that isn't the RID Manager DN */
1098 DBG_ERR("RID Alloc request for wrong DN %s\n",
1099 drs_ObjectIdentifier_to_debug_string(mem_ctx,
1100 req10->naming_context));
1101 ctr6->extended_ret = DRSUAPI_EXOP_ERR_MISMATCH;
1102 return WERR_OK;
1105 /* TODO: make sure ntds_dn is a valid nTDSDSA object */
1106 ret = dsdb_find_dn_by_guid(ldb, mem_ctx, &req10->destination_dsa_guid, 0, &ntds_dn);
1107 if (ret != LDB_SUCCESS) {
1108 DEBUG(0, (__location__ ": Unable to find NTDS object for guid %s - %s\n",
1109 GUID_string(mem_ctx, &req10->destination_dsa_guid), ldb_errstring(ldb)));
1110 ctr6->extended_ret = DRSUAPI_EXOP_ERR_UNKNOWN_CALLER;
1111 return WERR_OK;
1114 /* find the DN of the RID Manager */
1115 ret = samdb_reference_dn_is_our_ntdsa(ldb, *rid_manager_dn, "fSMORoleOwner", &is_us);
1116 if (ret != LDB_SUCCESS) {
1117 DEBUG(0,("Failed to find fSMORoleOwner in RID Manager object\n"));
1118 ctr6->extended_ret = DRSUAPI_EXOP_ERR_FSMO_NOT_OWNER;
1119 return WERR_DS_DRA_INTERNAL_ERROR;
1122 if (!is_us) {
1123 /* we're not the RID Manager - go away */
1124 DEBUG(0,(__location__ ": RID Alloc request when not RID Manager\n"));
1125 ctr6->extended_ret = DRSUAPI_EXOP_ERR_FSMO_NOT_OWNER;
1126 return WERR_OK;
1129 exop = talloc(mem_ctx, struct dsdb_fsmo_extended_op);
1130 W_ERROR_HAVE_NO_MEMORY(exop);
1132 exop->fsmo_info = req10->fsmo_info;
1133 exop->destination_dsa_guid = req10->destination_dsa_guid;
1135 ret = ldb_transaction_start(ldb);
1136 if (ret != LDB_SUCCESS) {
1137 DEBUG(0,(__location__ ": Failed transaction start - %s\n",
1138 ldb_errstring(ldb)));
1139 return WERR_DS_DRA_INTERNAL_ERROR;
1142 ret = ldb_extended(ldb, DSDB_EXTENDED_ALLOCATE_RID_POOL, exop, &ext_res);
1143 if (ret != LDB_SUCCESS) {
1144 DEBUG(0,(__location__ ": Failed extended allocation RID pool operation - %s\n",
1145 ldb_errstring(ldb)));
1146 ldb_transaction_cancel(ldb);
1147 return WERR_DS_DRA_INTERNAL_ERROR;
1150 ret = ldb_transaction_commit(ldb);
1151 if (ret != LDB_SUCCESS) {
1152 DEBUG(0,(__location__ ": Failed transaction commit - %s\n",
1153 ldb_errstring(ldb)));
1154 return WERR_DS_DRA_INTERNAL_ERROR;
1157 talloc_free(ext_res);
1159 DEBUG(2,("Allocated RID pool for server %s\n",
1160 GUID_string(mem_ctx, &req10->destination_dsa_guid)));
1162 ctr6->extended_ret = DRSUAPI_EXOP_ERR_SUCCESS;
1164 return WERR_OK;
1168 handle a DRSUAPI_EXOP_REPL_SECRET call
1170 static WERROR getncchanges_repl_secret(struct drsuapi_bind_state *b_state,
1171 TALLOC_CTX *mem_ctx,
1172 struct drsuapi_DsGetNCChangesRequest10 *req10,
1173 struct dom_sid *user_sid,
1174 struct drsuapi_DsGetNCChangesCtr6 *ctr6,
1175 bool has_get_all_changes,
1176 struct ldb_dn **machine_dn)
1178 struct drsuapi_DsReplicaObjectIdentifier *ncRoot = req10->naming_context;
1179 struct ldb_dn *obj_dn = NULL;
1180 struct ldb_message *ntds_msg = NULL;
1181 struct ldb_dn *ntds_dn = NULL, *server_dn = NULL;
1182 struct ldb_dn *rodc_dn, *krbtgt_link_dn;
1183 int ret;
1184 const char *ntds_attrs[] = { NULL };
1185 const char *rodc_attrs[] = { "msDS-KrbTgtLink",
1186 "msDS-NeverRevealGroup",
1187 "msDS-RevealOnDemandGroup",
1188 "userAccountControl",
1189 NULL };
1190 const char *obj_attrs[] = { "tokenGroups", "objectSid", "UserAccountControl", "msDS-KrbTgtLinkBL", NULL };
1191 struct ldb_result *rodc_res = NULL, *obj_res = NULL;
1192 WERROR werr;
1193 struct GUID_txt_buf guid_buf;
1195 DEBUG(3,(__location__ ": DRSUAPI_EXOP_REPL_SECRET extended op on %s\n",
1196 drs_ObjectIdentifier_to_debug_string(mem_ctx, ncRoot)));
1199 * we need to work out if we will allow this DC to
1200 * replicate the secrets for this object
1202 * see 4.1.10.5.14 GetRevealSecretsPolicyForUser for details
1203 * of this function
1206 if (b_state->sam_ctx_system == NULL) {
1207 /* this operation needs system level access */
1208 ctr6->extended_ret = DRSUAPI_EXOP_ERR_ACCESS_DENIED;
1209 return WERR_DS_DRA_ACCESS_DENIED;
1213 * Before we accept or deny, fetch the machine DN for the destination
1214 * DSA GUID.
1216 * If we are the RODC, we will check that this matches the SID.
1218 ret = samdb_get_ntds_obj_by_guid(mem_ctx,
1219 b_state->sam_ctx_system,
1220 &req10->destination_dsa_guid,
1221 ntds_attrs,
1222 &ntds_msg);
1223 if (ret != LDB_SUCCESS) {
1224 goto dest_dsa_error;
1227 ntds_dn = ntds_msg->dn;
1229 server_dn = ldb_dn_get_parent(mem_ctx, ntds_dn);
1230 if (server_dn == NULL) {
1231 goto failed;
1234 ret = samdb_reference_dn(b_state->sam_ctx_system, mem_ctx, server_dn,
1235 "serverReference", machine_dn);
1237 if (ret != LDB_SUCCESS) {
1238 goto dest_dsa_error;
1242 * In MS-DRSR.pdf 5.99 IsGetNCChangesPermissionGranted
1244 * The pseudo code indicate
1245 * revealsecrets = true
1246 * if IsRevealSecretRequest(msgIn) then
1247 * if AccessCheckCAR(ncRoot, Ds-Replication-Get-Changes-All) = false
1248 * then
1249 * if (msgIn.ulExtendedOp = EXOP_REPL_SECRETS) then
1250 * <... check if this account is ok to be replicated on this DC ...>
1251 * <... and if not reveal secrets = no ...>
1252 * else
1253 * reveal secrets = false
1254 * endif
1255 * endif
1256 * endif
1258 * Which basically means that if you have GET_ALL_CHANGES rights (~== RWDC)
1259 * then you can do EXOP_REPL_SECRETS
1261 ret = drs_ObjectIdentifier_to_dn_and_nc_root(mem_ctx,
1262 b_state->sam_ctx_system,
1263 ncRoot,
1264 &obj_dn,
1265 NULL);
1266 if (ret != LDB_SUCCESS) {
1267 DBG_ERR("RevealSecretRequest for for invalid DN %s\n",
1268 drs_ObjectIdentifier_to_debug_string(mem_ctx, ncRoot));
1269 goto failed;
1272 if (!ldb_dn_validate(obj_dn)) goto failed;
1274 if (has_get_all_changes) {
1275 goto allowed;
1278 rodc_dn = ldb_dn_new_fmt(mem_ctx, b_state->sam_ctx_system, "<SID=%s>",
1279 dom_sid_string(mem_ctx, user_sid));
1280 if (!ldb_dn_validate(rodc_dn)) goto failed;
1283 * do the two searches we need
1284 * We need DSDB_SEARCH_SHOW_EXTENDED_DN as we get a SID lists
1285 * out of the extended DNs
1287 ret = dsdb_search_dn(b_state->sam_ctx_system, mem_ctx, &rodc_res, rodc_dn, rodc_attrs,
1288 DSDB_SEARCH_SHOW_EXTENDED_DN);
1289 if (ret != LDB_SUCCESS || rodc_res->count != 1) goto failed;
1291 ret = dsdb_search_dn(b_state->sam_ctx_system, mem_ctx, &obj_res, obj_dn, obj_attrs, 0);
1292 if (ret != LDB_SUCCESS || obj_res->count != 1) goto failed;
1295 * Must be an RODC account at this point, verify machine DN matches the
1296 * SID account
1298 if (ldb_dn_compare(rodc_res->msgs[0]->dn, *machine_dn) != 0) {
1299 goto denied;
1302 /* an RODC is allowed to get its own krbtgt account secrets */
1303 krbtgt_link_dn = samdb_result_dn(b_state->sam_ctx_system, mem_ctx,
1304 rodc_res->msgs[0], "msDS-KrbTgtLink", NULL);
1305 if (krbtgt_link_dn != NULL &&
1306 ldb_dn_compare(obj_dn, krbtgt_link_dn) == 0) {
1307 goto allowed;
1310 werr = samdb_confirm_rodc_allowed_to_repl_to(b_state->sam_ctx_system,
1311 user_sid,
1312 rodc_res->msgs[0],
1313 obj_res->msgs[0]);
1315 if (W_ERROR_IS_OK(werr)) {
1316 goto allowed;
1319 /* default deny */
1320 denied:
1321 DEBUG(2,(__location__ ": Denied single object with secret replication for %s by RODC %s\n",
1322 ldb_dn_get_linearized(obj_dn), ldb_dn_get_linearized(rodc_res->msgs[0]->dn)));
1323 ctr6->extended_ret = DRSUAPI_EXOP_ERR_NONE;
1324 return WERR_DS_DRA_SECRETS_DENIED;
1326 allowed:
1327 DEBUG(2,(__location__ ": Allowed single object with secret replication for %s by %s %s\n",
1328 ldb_dn_get_linearized(obj_dn), has_get_all_changes?"RWDC":"RODC",
1329 ldb_dn_get_linearized(*machine_dn)));
1330 ctr6->extended_ret = DRSUAPI_EXOP_ERR_SUCCESS;
1331 req10->highwatermark.highest_usn = 0;
1332 return WERR_OK;
1334 failed:
1335 DEBUG(2,(__location__ ": Failed single secret replication for %s by RODC %s\n",
1336 ldb_dn_get_linearized(obj_dn), dom_sid_string(mem_ctx, user_sid)));
1337 ctr6->extended_ret = DRSUAPI_EXOP_ERR_NONE;
1338 return WERR_DS_DRA_BAD_DN;
1340 dest_dsa_error:
1341 DBG_WARNING("Failed secret replication for %s by RODC %s as dest_dsa_guid %s is invalid\n",
1342 ldb_dn_get_linearized(obj_dn),
1343 dom_sid_string(mem_ctx, user_sid),
1344 GUID_buf_string(&req10->destination_dsa_guid,
1345 &guid_buf));
1346 ctr6->extended_ret = DRSUAPI_EXOP_ERR_NONE;
1347 return WERR_DS_DRA_DB_ERROR;
1351 handle a DRSUAPI_EXOP_REPL_OBJ call
1353 static WERROR getncchanges_repl_obj(struct drsuapi_bind_state *b_state,
1354 TALLOC_CTX *mem_ctx,
1355 struct drsuapi_DsGetNCChangesRequest10 *req10,
1356 struct dom_sid *user_sid,
1357 struct drsuapi_DsGetNCChangesCtr6 *ctr6)
1359 struct drsuapi_DsReplicaObjectIdentifier *ncRoot = req10->naming_context;
1361 DEBUG(3,(__location__ ": DRSUAPI_EXOP_REPL_OBJ extended op on %s\n",
1362 drs_ObjectIdentifier_to_debug_string(mem_ctx, ncRoot)));
1364 ctr6->extended_ret = DRSUAPI_EXOP_ERR_SUCCESS;
1365 return WERR_OK;
1370 handle DRSUAPI_EXOP_FSMO_REQ_ROLE,
1371 DRSUAPI_EXOP_FSMO_RID_REQ_ROLE,
1372 and DRSUAPI_EXOP_FSMO_REQ_PDC calls
1374 static WERROR getncchanges_change_master(struct drsuapi_bind_state *b_state,
1375 TALLOC_CTX *mem_ctx,
1376 struct drsuapi_DsGetNCChangesRequest10 *req10,
1377 struct drsuapi_DsGetNCChangesCtr6 *ctr6)
1379 struct ldb_dn *req_dn, *ntds_dn;
1380 int ret;
1381 unsigned int i;
1382 struct ldb_context *ldb = b_state->sam_ctx;
1383 struct ldb_message *msg;
1384 bool is_us;
1387 steps:
1388 - verify that the client dn exists
1389 - verify that we are the current master
1392 ret = drs_ObjectIdentifier_to_dn_and_nc_root(mem_ctx, ldb, req10->naming_context,
1393 &req_dn, NULL);
1394 if (ret != LDB_SUCCESS) {
1395 /* that is not a valid dn */
1396 DBG_ERR("FSMO role transfer request for invalid DN %s: %s\n",
1397 drs_ObjectIdentifier_to_debug_string(mem_ctx, req10->naming_context),
1398 ldb_strerror(ret));
1399 ctr6->extended_ret = DRSUAPI_EXOP_ERR_MISMATCH;
1400 return WERR_OK;
1403 /* find the DN of the current role owner */
1404 ret = samdb_reference_dn_is_our_ntdsa(ldb, req_dn, "fSMORoleOwner", &is_us);
1405 if (ret != LDB_SUCCESS) {
1406 DEBUG(0,("Failed to find fSMORoleOwner in RID Manager object\n"));
1407 ctr6->extended_ret = DRSUAPI_EXOP_ERR_FSMO_NOT_OWNER;
1408 return WERR_DS_DRA_INTERNAL_ERROR;
1411 if (!is_us) {
1412 /* we're not the RID Manager or role owner - go away */
1413 DEBUG(0,(__location__ ": FSMO role or RID manager transfer owner request when not role owner\n"));
1414 ctr6->extended_ret = DRSUAPI_EXOP_ERR_FSMO_NOT_OWNER;
1415 return WERR_OK;
1418 /* change the current master */
1419 msg = ldb_msg_new(ldb);
1420 W_ERROR_HAVE_NO_MEMORY(msg);
1421 ret = drs_ObjectIdentifier_to_dn_and_nc_root(msg, ldb, req10->naming_context,
1422 &msg->dn, NULL);
1423 if (ret != LDB_SUCCESS) {
1424 /* that is not a valid dn */
1425 DBG_ERR("FSMO role transfer request for invalid DN %s: %s\n",
1426 drs_ObjectIdentifier_to_debug_string(mem_ctx, req10->naming_context),
1427 ldb_strerror(ret));
1428 ctr6->extended_ret = DRSUAPI_EXOP_ERR_MISMATCH;
1429 return WERR_OK;
1432 /* TODO: make sure ntds_dn is a valid nTDSDSA object */
1433 ret = dsdb_find_dn_by_guid(ldb, msg, &req10->destination_dsa_guid, 0, &ntds_dn);
1434 if (ret != LDB_SUCCESS) {
1435 DEBUG(0, (__location__ ": Unable to find NTDS object for guid %s - %s\n",
1436 GUID_string(mem_ctx, &req10->destination_dsa_guid), ldb_errstring(ldb)));
1437 talloc_free(msg);
1438 ctr6->extended_ret = DRSUAPI_EXOP_ERR_UNKNOWN_CALLER;
1439 return WERR_OK;
1442 ret = ldb_msg_add_string(msg, "fSMORoleOwner", ldb_dn_get_linearized(ntds_dn));
1443 if (ret != 0) {
1444 talloc_free(msg);
1445 return WERR_DS_DRA_INTERNAL_ERROR;
1448 for (i=0;i<msg->num_elements;i++) {
1449 msg->elements[i].flags = LDB_FLAG_MOD_REPLACE;
1452 ret = ldb_transaction_start(ldb);
1453 if (ret != LDB_SUCCESS) {
1454 DEBUG(0,(__location__ ": Failed transaction start - %s\n",
1455 ldb_errstring(ldb)));
1456 return WERR_DS_DRA_INTERNAL_ERROR;
1459 ret = ldb_modify(ldb, msg);
1460 if (ret != LDB_SUCCESS) {
1461 DEBUG(0,(__location__ ": Failed to change current owner - %s\n",
1462 ldb_errstring(ldb)));
1463 ldb_transaction_cancel(ldb);
1464 return WERR_DS_DRA_INTERNAL_ERROR;
1467 ret = ldb_transaction_commit(ldb);
1468 if (ret != LDB_SUCCESS) {
1469 DEBUG(0,(__location__ ": Failed transaction commit - %s\n",
1470 ldb_errstring(ldb)));
1471 return WERR_DS_DRA_INTERNAL_ERROR;
1474 ctr6->extended_ret = DRSUAPI_EXOP_ERR_SUCCESS;
1476 return WERR_OK;
1480 see if this getncchanges request includes a request to reveal secret information
1482 static WERROR dcesrv_drsuapi_is_reveal_secrets_request(struct drsuapi_bind_state *b_state,
1483 struct drsuapi_DsGetNCChangesRequest10 *req10,
1484 struct dsdb_schema_prefixmap *pfm_remote,
1485 bool *is_secret_request)
1487 enum drsuapi_DsExtendedOperation exop;
1488 uint32_t i;
1489 struct dsdb_schema *schema;
1490 struct dsdb_syntax_ctx syntax_ctx;
1492 *is_secret_request = true;
1494 exop = req10->extended_op;
1496 switch (exop) {
1497 case DRSUAPI_EXOP_FSMO_REQ_ROLE:
1498 case DRSUAPI_EXOP_FSMO_RID_ALLOC:
1499 case DRSUAPI_EXOP_FSMO_RID_REQ_ROLE:
1500 case DRSUAPI_EXOP_FSMO_REQ_PDC:
1501 case DRSUAPI_EXOP_FSMO_ABANDON_ROLE:
1502 /* FSMO exops can reveal secrets */
1503 *is_secret_request = true;
1504 return WERR_OK;
1505 case DRSUAPI_EXOP_REPL_SECRET:
1506 case DRSUAPI_EXOP_REPL_OBJ:
1507 case DRSUAPI_EXOP_NONE:
1508 break;
1511 if (req10->replica_flags & DRSUAPI_DRS_SPECIAL_SECRET_PROCESSING) {
1512 *is_secret_request = false;
1513 return WERR_OK;
1516 if (exop == DRSUAPI_EXOP_REPL_SECRET ||
1517 req10->partial_attribute_set == NULL) {
1518 /* they want secrets */
1519 *is_secret_request = true;
1520 return WERR_OK;
1523 schema = dsdb_get_schema(b_state->sam_ctx, NULL);
1524 dsdb_syntax_ctx_init(&syntax_ctx, b_state->sam_ctx, schema);
1525 syntax_ctx.pfm_remote = pfm_remote;
1527 /* check the attributes they asked for */
1528 for (i=0; i<req10->partial_attribute_set->num_attids; i++) {
1529 const struct dsdb_attribute *sa;
1530 WERROR werr = getncchanges_attid_remote_to_local(schema,
1531 &syntax_ctx,
1532 req10->partial_attribute_set->attids[i],
1533 NULL,
1534 &sa);
1536 if (!W_ERROR_IS_OK(werr)) {
1537 DEBUG(0,(__location__": attid 0x%08X not found: %s\n",
1538 req10->partial_attribute_set->attids[i], win_errstr(werr)));
1539 return werr;
1542 if (!dsdb_attr_in_rodc_fas(sa)) {
1543 *is_secret_request = true;
1544 return WERR_OK;
1548 if (req10->partial_attribute_set_ex) {
1549 /* check the extended attributes they asked for */
1550 for (i=0; i<req10->partial_attribute_set_ex->num_attids; i++) {
1551 const struct dsdb_attribute *sa;
1552 WERROR werr = getncchanges_attid_remote_to_local(schema,
1553 &syntax_ctx,
1554 req10->partial_attribute_set_ex->attids[i],
1555 NULL,
1556 &sa);
1558 if (!W_ERROR_IS_OK(werr)) {
1559 DEBUG(0,(__location__": attid 0x%08X not found: %s\n",
1560 req10->partial_attribute_set_ex->attids[i], win_errstr(werr)));
1561 return werr;
1564 if (!dsdb_attr_in_rodc_fas(sa)) {
1565 *is_secret_request = true;
1566 return WERR_OK;
1571 *is_secret_request = false;
1572 return WERR_OK;
1576 see if this getncchanges request is only for attributes in the GC
1577 partial attribute set
1579 static WERROR dcesrv_drsuapi_is_gc_pas_request(struct drsuapi_bind_state *b_state,
1580 struct drsuapi_DsGetNCChangesRequest10 *req10,
1581 struct dsdb_schema_prefixmap *pfm_remote,
1582 bool *is_gc_pas_request)
1584 enum drsuapi_DsExtendedOperation exop;
1585 uint32_t i;
1586 struct dsdb_schema *schema;
1587 struct dsdb_syntax_ctx syntax_ctx;
1589 exop = req10->extended_op;
1591 switch (exop) {
1592 case DRSUAPI_EXOP_FSMO_REQ_ROLE:
1593 case DRSUAPI_EXOP_FSMO_RID_ALLOC:
1594 case DRSUAPI_EXOP_FSMO_RID_REQ_ROLE:
1595 case DRSUAPI_EXOP_FSMO_REQ_PDC:
1596 case DRSUAPI_EXOP_FSMO_ABANDON_ROLE:
1597 case DRSUAPI_EXOP_REPL_SECRET:
1598 *is_gc_pas_request = false;
1599 return WERR_OK;
1600 case DRSUAPI_EXOP_REPL_OBJ:
1601 case DRSUAPI_EXOP_NONE:
1602 break;
1605 if (req10->partial_attribute_set == NULL) {
1606 /* they want it all */
1607 *is_gc_pas_request = false;
1608 return WERR_OK;
1611 schema = dsdb_get_schema(b_state->sam_ctx, NULL);
1612 dsdb_syntax_ctx_init(&syntax_ctx, b_state->sam_ctx, schema);
1613 syntax_ctx.pfm_remote = pfm_remote;
1615 /* check the attributes they asked for */
1616 for (i=0; i<req10->partial_attribute_set->num_attids; i++) {
1617 const struct dsdb_attribute *sa;
1618 WERROR werr = getncchanges_attid_remote_to_local(schema,
1619 &syntax_ctx,
1620 req10->partial_attribute_set->attids[i],
1621 NULL,
1622 &sa);
1624 if (!W_ERROR_IS_OK(werr)) {
1625 DEBUG(0,(__location__": attid 0x%08X not found: %s\n",
1626 req10->partial_attribute_set->attids[i], win_errstr(werr)));
1627 return werr;
1630 if (!sa->isMemberOfPartialAttributeSet) {
1631 *is_gc_pas_request = false;
1632 return WERR_OK;
1636 if (req10->partial_attribute_set_ex) {
1637 /* check the extended attributes they asked for */
1638 for (i=0; i<req10->partial_attribute_set_ex->num_attids; i++) {
1639 const struct dsdb_attribute *sa;
1640 WERROR werr = getncchanges_attid_remote_to_local(schema,
1641 &syntax_ctx,
1642 req10->partial_attribute_set_ex->attids[i],
1643 NULL,
1644 &sa);
1646 if (!W_ERROR_IS_OK(werr)) {
1647 DEBUG(0,(__location__": attid 0x%08X not found: %s\n",
1648 req10->partial_attribute_set_ex->attids[i], win_errstr(werr)));
1649 return werr;
1652 if (!sa->isMemberOfPartialAttributeSet) {
1653 *is_gc_pas_request = false;
1654 return WERR_OK;
1659 *is_gc_pas_request = true;
1660 return WERR_OK;
1665 map from req8 to req10
1667 static struct drsuapi_DsGetNCChangesRequest10 *
1668 getncchanges_map_req8(TALLOC_CTX *mem_ctx,
1669 struct drsuapi_DsGetNCChangesRequest8 *req8)
1671 struct drsuapi_DsGetNCChangesRequest10 *req10 = talloc_zero(mem_ctx,
1672 struct drsuapi_DsGetNCChangesRequest10);
1673 if (req10 == NULL) {
1674 return NULL;
1677 req10->destination_dsa_guid = req8->destination_dsa_guid;
1678 req10->source_dsa_invocation_id = req8->source_dsa_invocation_id;
1679 req10->naming_context = req8->naming_context;
1680 req10->highwatermark = req8->highwatermark;
1681 req10->uptodateness_vector = req8->uptodateness_vector;
1682 req10->replica_flags = req8->replica_flags;
1683 req10->max_object_count = req8->max_object_count;
1684 req10->max_ndr_size = req8->max_ndr_size;
1685 req10->extended_op = req8->extended_op;
1686 req10->fsmo_info = req8->fsmo_info;
1687 req10->partial_attribute_set = req8->partial_attribute_set;
1688 req10->partial_attribute_set_ex = req8->partial_attribute_set_ex;
1689 req10->mapping_ctr = req8->mapping_ctr;
1691 return req10;
1694 static const char *collect_objects_attrs[] = { "uSNChanged",
1695 "objectGUID" ,
1696 NULL };
1699 * Collects object for normal replication cycle.
1701 static WERROR getncchanges_collect_objects(struct drsuapi_bind_state *b_state,
1702 TALLOC_CTX *mem_ctx,
1703 struct drsuapi_getncchanges_state *getnc_state,
1704 struct drsuapi_DsGetNCChangesRequest10 *req10,
1705 struct ldb_dn *search_dn,
1706 const char *extra_filter,
1707 struct ldb_result **search_res)
1709 int ret;
1710 char* search_filter;
1711 enum ldb_scope scope = LDB_SCOPE_SUBTREE;
1712 bool critical_only = false;
1714 if (req10->replica_flags & DRSUAPI_DRS_CRITICAL_ONLY) {
1715 critical_only = true;
1718 if (req10->extended_op == DRSUAPI_EXOP_REPL_OBJ ||
1719 req10->extended_op == DRSUAPI_EXOP_REPL_SECRET) {
1720 scope = LDB_SCOPE_BASE;
1721 critical_only = false;
1724 /* Construct response. */
1725 search_filter = talloc_asprintf(mem_ctx,
1726 "(uSNChanged>=%llu)",
1727 (unsigned long long)(getnc_state->min_usn+1));
1729 if (extra_filter) {
1730 search_filter = talloc_asprintf(mem_ctx, "(&%s(%s))", search_filter, extra_filter);
1733 if (critical_only) {
1734 search_filter = talloc_asprintf(mem_ctx,
1735 "(&%s(isCriticalSystemObject=TRUE))",
1736 search_filter);
1739 if (req10->replica_flags & DRSUAPI_DRS_ASYNC_REP) {
1740 scope = LDB_SCOPE_BASE;
1743 if (!search_dn) {
1744 search_dn = getnc_state->ncRoot_dn;
1747 DEBUG(2,(__location__ ": getncchanges on %s using filter %s\n",
1748 ldb_dn_get_linearized(getnc_state->ncRoot_dn), search_filter));
1749 ret = drsuapi_search_with_extended_dn(b_state->sam_ctx, getnc_state, search_res,
1750 search_dn, scope,
1751 collect_objects_attrs,
1752 search_filter);
1753 if (ret != LDB_SUCCESS) {
1754 return WERR_DS_DRA_INTERNAL_ERROR;
1757 return WERR_OK;
1761 * Collects object for normal replication cycle.
1763 static WERROR getncchanges_collect_objects_exop(struct drsuapi_bind_state *b_state,
1764 TALLOC_CTX *mem_ctx,
1765 struct drsuapi_getncchanges_state *getnc_state,
1766 struct drsuapi_DsGetNCChangesRequest10 *req10,
1767 struct drsuapi_DsGetNCChangesCtr6 *ctr6,
1768 struct ldb_dn *search_dn,
1769 const char *extra_filter,
1770 struct ldb_result **search_res)
1772 /* we have nothing to do in case of ex-op failure */
1773 if (ctr6->extended_ret != DRSUAPI_EXOP_ERR_SUCCESS) {
1774 return WERR_OK;
1777 switch (req10->extended_op) {
1778 case DRSUAPI_EXOP_FSMO_RID_ALLOC:
1780 int ret;
1781 struct ldb_dn *ntds_dn = NULL;
1782 struct ldb_dn *server_dn = NULL;
1783 struct ldb_dn *machine_dn = NULL;
1784 struct ldb_dn *rid_set_dn = NULL;
1785 struct ldb_result *search_res2 = NULL;
1786 struct ldb_result *search_res3 = NULL;
1787 TALLOC_CTX *frame = talloc_stackframe();
1788 /* get RID manager, RID set and server DN (in that order) */
1790 /* This first search will get the RID Manager */
1791 ret = drsuapi_search_with_extended_dn(b_state->sam_ctx, frame,
1792 search_res,
1793 search_dn, LDB_SCOPE_BASE,
1794 collect_objects_attrs,
1795 NULL);
1796 if (ret != LDB_SUCCESS) {
1797 DEBUG(1, ("DRSUAPI_EXOP_FSMO_RID_ALLOC: Failed to get RID Manager object %s - %s",
1798 ldb_dn_get_linearized(search_dn),
1799 ldb_errstring(b_state->sam_ctx)));
1800 TALLOC_FREE(frame);
1801 return WERR_DS_DRA_INTERNAL_ERROR;
1804 if ((*search_res)->count != 1) {
1805 DEBUG(1, ("DRSUAPI_EXOP_FSMO_RID_ALLOC: Failed to get RID Manager object %s - %u objects returned",
1806 ldb_dn_get_linearized(search_dn),
1807 (*search_res)->count));
1808 TALLOC_FREE(frame);
1809 return WERR_DS_DRA_INTERNAL_ERROR;
1812 /* Now extend it to the RID set */
1814 /* Find the computer account DN for the destination
1815 * dsa GUID specified */
1817 ret = dsdb_find_dn_by_guid(b_state->sam_ctx, frame,
1818 &req10->destination_dsa_guid, 0,
1819 &ntds_dn);
1820 if (ret != LDB_SUCCESS) {
1821 DEBUG(1, ("DRSUAPI_EXOP_FSMO_RID_ALLOC: Unable to find NTDS object for guid %s - %s\n",
1822 GUID_string(frame,
1823 &req10->destination_dsa_guid),
1824 ldb_errstring(b_state->sam_ctx)));
1825 TALLOC_FREE(frame);
1826 return WERR_DS_DRA_INTERNAL_ERROR;
1829 server_dn = ldb_dn_get_parent(frame, ntds_dn);
1830 if (!server_dn) {
1831 TALLOC_FREE(frame);
1832 return WERR_DS_DRA_INTERNAL_ERROR;
1835 ret = samdb_reference_dn(b_state->sam_ctx, frame, server_dn,
1836 "serverReference", &machine_dn);
1837 if (ret != LDB_SUCCESS) {
1838 DEBUG(1, ("DRSUAPI_EXOP_FSMO_RID_ALLOC: Failed to find serverReference in %s - %s",
1839 ldb_dn_get_linearized(server_dn),
1840 ldb_errstring(b_state->sam_ctx)));
1841 TALLOC_FREE(frame);
1842 return WERR_DS_DRA_INTERNAL_ERROR;
1845 ret = samdb_reference_dn(b_state->sam_ctx, frame, machine_dn,
1846 "rIDSetReferences", &rid_set_dn);
1847 if (ret != LDB_SUCCESS) {
1848 DEBUG(1, ("DRSUAPI_EXOP_FSMO_RID_ALLOC: Failed to find rIDSetReferences in %s - %s",
1849 ldb_dn_get_linearized(server_dn),
1850 ldb_errstring(b_state->sam_ctx)));
1851 TALLOC_FREE(frame);
1852 return WERR_DS_DRA_INTERNAL_ERROR;
1856 /* This first search will get the RID Manager, now get the RID set */
1857 ret = drsuapi_search_with_extended_dn(b_state->sam_ctx, frame,
1858 &search_res2,
1859 rid_set_dn, LDB_SCOPE_BASE,
1860 collect_objects_attrs,
1861 NULL);
1862 if (ret != LDB_SUCCESS) {
1863 DEBUG(1, ("DRSUAPI_EXOP_FSMO_RID_ALLOC: Failed to get RID Set object %s - %s",
1864 ldb_dn_get_linearized(rid_set_dn),
1865 ldb_errstring(b_state->sam_ctx)));
1866 TALLOC_FREE(frame);
1867 return WERR_DS_DRA_INTERNAL_ERROR;
1870 if (search_res2->count != 1) {
1871 DEBUG(1, ("DRSUAPI_EXOP_FSMO_RID_ALLOC: Failed to get RID Set object %s - %u objects returned",
1872 ldb_dn_get_linearized(rid_set_dn),
1873 search_res2->count));
1874 TALLOC_FREE(frame);
1875 return WERR_DS_DRA_INTERNAL_ERROR;
1878 /* Finally get the server DN */
1879 ret = drsuapi_search_with_extended_dn(b_state->sam_ctx, frame,
1880 &search_res3,
1881 machine_dn, LDB_SCOPE_BASE,
1882 collect_objects_attrs,
1883 NULL);
1884 if (ret != LDB_SUCCESS) {
1885 DEBUG(1, ("DRSUAPI_EXOP_FSMO_RID_ALLOC: Failed to get server object %s - %s",
1886 ldb_dn_get_linearized(server_dn),
1887 ldb_errstring(b_state->sam_ctx)));
1888 TALLOC_FREE(frame);
1889 return WERR_DS_DRA_INTERNAL_ERROR;
1892 if (search_res3->count != 1) {
1893 DEBUG(1, ("DRSUAPI_EXOP_FSMO_RID_ALLOC: Failed to get server object %s - %u objects returned",
1894 ldb_dn_get_linearized(server_dn),
1895 search_res3->count));
1896 TALLOC_FREE(frame);
1897 return WERR_DS_DRA_INTERNAL_ERROR;
1900 /* Now extend the original search_res with these answers */
1901 (*search_res)->count = 3;
1903 (*search_res)->msgs = talloc_realloc(frame, (*search_res)->msgs,
1904 struct ldb_message *,
1905 (*search_res)->count);
1906 if ((*search_res)->msgs == NULL) {
1907 TALLOC_FREE(frame);
1908 return WERR_NOT_ENOUGH_MEMORY;
1912 talloc_steal(mem_ctx, *search_res);
1913 (*search_res)->msgs[1] =
1914 talloc_steal((*search_res)->msgs, search_res2->msgs[0]);
1915 (*search_res)->msgs[2] =
1916 talloc_steal((*search_res)->msgs, search_res3->msgs[0]);
1918 TALLOC_FREE(frame);
1919 return WERR_OK;
1921 default:
1922 /* TODO: implement extended op specific collection
1923 * of objects. Right now we just normal procedure
1924 * for collecting objects */
1925 return getncchanges_collect_objects(b_state,
1926 mem_ctx,
1927 getnc_state,
1928 req10,
1929 search_dn,
1930 extra_filter,
1931 search_res);
1935 static void dcesrv_drsuapi_update_highwatermark(const struct ldb_message *msg,
1936 uint64_t max_usn,
1937 struct drsuapi_DsReplicaHighWaterMark *hwm)
1939 uint64_t uSN = ldb_msg_find_attr_as_uint64(msg, "uSNChanged", 0);
1941 if (uSN > max_usn) {
1943 * Only report the max_usn we had at the start
1944 * of the replication cycle.
1946 * If this object has changed lately we better
1947 * let the destination dsa refetch the change.
1948 * This is better than the risk of loosing some
1949 * objects or linked attributes.
1951 return;
1954 if (uSN <= hwm->tmp_highest_usn) {
1955 return;
1958 hwm->tmp_highest_usn = uSN;
1959 hwm->reserved_usn = 0;
1963 * Adds an object's GUID to the cache of objects already sent.
1964 * This avoids us sending the same object multiple times when
1965 * the GetNCChanges request uses a flag like GET_ANC.
1967 static WERROR dcesrv_drsuapi_obj_cache_add(struct db_context *obj_cache,
1968 const struct GUID *guid)
1970 enum ndr_err_code ndr_err;
1971 uint8_t guid_buf[DRS_GUID_SIZE] = { 0, };
1972 DATA_BLOB b = {
1973 .data = guid_buf,
1974 .length = sizeof(guid_buf),
1976 TDB_DATA key = {
1977 .dptr = b.data,
1978 .dsize = b.length,
1980 TDB_DATA val = {
1981 .dptr = NULL,
1982 .dsize = 0,
1984 NTSTATUS status;
1986 ndr_err = ndr_push_struct_into_fixed_blob(&b, guid,
1987 (ndr_push_flags_fn_t)ndr_push_GUID);
1988 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {
1989 return WERR_DS_DRA_INTERNAL_ERROR;
1992 status = dbwrap_store(obj_cache, key, val, TDB_REPLACE);
1993 if (!NT_STATUS_IS_OK(status)) {
1994 return WERR_DS_DRA_INTERNAL_ERROR;
1997 return WERR_OK;
2001 * Checks if the object with the GUID specified already exists in the
2002 * object cache, i.e. it's already been sent in a GetNCChanges response.
2004 static WERROR dcesrv_drsuapi_obj_cache_exists(struct db_context *obj_cache,
2005 const struct GUID *guid)
2007 enum ndr_err_code ndr_err;
2008 uint8_t guid_buf[DRS_GUID_SIZE] = { 0, };
2009 DATA_BLOB b = {
2010 .data = guid_buf,
2011 .length = sizeof(guid_buf),
2013 TDB_DATA key = {
2014 .dptr = b.data,
2015 .dsize = b.length,
2017 bool exists;
2019 ndr_err = ndr_push_struct_into_fixed_blob(&b, guid,
2020 (ndr_push_flags_fn_t)ndr_push_GUID);
2021 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {
2022 return WERR_DS_DRA_INTERNAL_ERROR;
2025 exists = dbwrap_exists(obj_cache, key);
2026 if (!exists) {
2027 return WERR_OBJECT_NOT_FOUND;
2030 return WERR_OBJECT_NAME_EXISTS;
2034 * Copies the la_list specified into a sorted array, ready to be sent in a
2035 * GetNCChanges response.
2037 static WERROR getncchanges_get_sorted_array(const struct drsuapi_DsReplicaLinkedAttribute *la_list,
2038 const uint32_t link_count,
2039 struct ldb_context *sam_ctx,
2040 TALLOC_CTX *mem_ctx,
2041 const struct dsdb_schema *schema,
2042 struct la_for_sorting **ret_array)
2044 int j;
2045 struct la_for_sorting *guid_array;
2046 WERROR werr = WERR_OK;
2048 *ret_array = NULL;
2049 guid_array = talloc_array(mem_ctx, struct la_for_sorting, link_count);
2050 if (guid_array == NULL) {
2051 DEBUG(0, ("Out of memory allocating %u linked attributes for sorting", link_count));
2052 return WERR_NOT_ENOUGH_MEMORY;
2055 for (j = 0; j < link_count; j++) {
2057 /* we need to get the target GUIDs to compare */
2058 struct dsdb_dn *dn;
2059 const struct drsuapi_DsReplicaLinkedAttribute *la = &la_list[j];
2060 const struct dsdb_attribute *schema_attrib;
2061 const struct ldb_val *target_guid;
2062 DATA_BLOB source_guid;
2063 TALLOC_CTX *frame = talloc_stackframe();
2064 NTSTATUS status;
2066 schema_attrib = dsdb_attribute_by_attributeID_id(schema, la->attid);
2068 werr = dsdb_dn_la_from_blob(sam_ctx, schema_attrib, schema, frame, la->value.blob, &dn);
2069 if (!W_ERROR_IS_OK(werr)) {
2070 DEBUG(0,(__location__ ": Bad la blob in sort\n"));
2071 TALLOC_FREE(frame);
2072 return werr;
2075 /* Extract the target GUID in NDR form */
2076 target_guid = ldb_dn_get_extended_component(dn->dn, "GUID");
2077 if (target_guid == NULL
2078 || target_guid->length != sizeof(guid_array[0].target_guid)) {
2079 status = NT_STATUS_OBJECT_NAME_NOT_FOUND;
2080 } else {
2081 /* Repack the source GUID as NDR for sorting */
2082 status = GUID_to_ndr_blob(&la->identifier->guid,
2083 frame,
2084 &source_guid);
2087 if (!NT_STATUS_IS_OK(status)
2088 || source_guid.length != sizeof(guid_array[0].source_guid)) {
2089 DEBUG(0,(__location__ ": Bad la guid in sort\n"));
2090 TALLOC_FREE(frame);
2091 return ntstatus_to_werror(status);
2094 guid_array[j].link = &la_list[j];
2095 memcpy(guid_array[j].target_guid, target_guid->data,
2096 sizeof(guid_array[j].target_guid));
2097 memcpy(guid_array[j].source_guid, source_guid.data,
2098 sizeof(guid_array[j].source_guid));
2099 TALLOC_FREE(frame);
2102 TYPESAFE_QSORT(guid_array, link_count, linked_attribute_compare);
2104 *ret_array = guid_array;
2106 return werr;
2111 * Adds any ancestor/parent objects of the child_obj specified.
2112 * This is needed when the GET_ANC flag is specified in the request.
2113 * @param new_objs if parents are added, this gets updated to point to a chain
2114 * of parent objects (with the parents first and the child last)
2116 static WERROR getncchanges_add_ancestors(const struct GUID *parent_object_guid,
2117 struct ldb_dn *child_dn,
2118 TALLOC_CTX *mem_ctx,
2119 struct ldb_context *sam_ctx,
2120 struct drsuapi_getncchanges_state *getnc_state,
2121 struct dsdb_schema *schema,
2122 DATA_BLOB *session_key,
2123 struct drsuapi_DsGetNCChangesRequest10 *req10,
2124 uint32_t *local_pas,
2125 struct ldb_dn *machine_dn,
2126 struct drsuapi_DsReplicaObjectListItemEx **new_objs)
2128 int ret;
2129 const struct GUID *next_anc_guid = NULL;
2130 WERROR werr = WERR_OK;
2131 static const char * const msg_attrs[] = {
2132 "*",
2133 "nTSecurityDescriptor",
2134 "parentGUID",
2135 "replPropertyMetaData",
2136 DSDB_SECRET_ATTRIBUTES,
2137 NULL };
2139 next_anc_guid = parent_object_guid;
2141 while (next_anc_guid != NULL) {
2142 struct drsuapi_DsReplicaObjectListItemEx *anc_obj = NULL;
2143 struct ldb_message *anc_msg = NULL;
2144 struct ldb_result *anc_res = NULL;
2145 struct ldb_dn *anc_dn = NULL;
2148 * For the GET_ANC case (but not the 'send NC root
2149 * first' case), don't send an object twice.
2151 * (If we've sent the object, then we've also sent all
2152 * its parents as well)
2154 if (getnc_state->obj_cache) {
2155 werr = dcesrv_drsuapi_obj_cache_exists(getnc_state->obj_cache,
2156 next_anc_guid);
2157 if (W_ERROR_EQUAL(werr, WERR_OBJECT_NAME_EXISTS)) {
2158 return WERR_OK;
2160 if (W_ERROR_IS_OK(werr)) {
2161 return WERR_INTERNAL_ERROR;
2163 if (!W_ERROR_EQUAL(werr, WERR_OBJECT_NOT_FOUND)) {
2164 return werr;
2168 anc_obj = talloc_zero(mem_ctx,
2169 struct drsuapi_DsReplicaObjectListItemEx);
2170 if (anc_obj == NULL) {
2171 return WERR_NOT_ENOUGH_MEMORY;
2174 anc_dn = ldb_dn_new_fmt(anc_obj, sam_ctx, "<GUID=%s>",
2175 GUID_string(anc_obj, next_anc_guid));
2176 if (anc_dn == NULL) {
2177 return WERR_NOT_ENOUGH_MEMORY;
2180 ret = drsuapi_search_with_extended_dn(sam_ctx, anc_obj,
2181 &anc_res, anc_dn,
2182 LDB_SCOPE_BASE,
2183 msg_attrs, NULL);
2184 if (ret != LDB_SUCCESS) {
2185 const char *anc_str = NULL;
2186 const char *obj_str = NULL;
2188 anc_str = ldb_dn_get_extended_linearized(anc_obj,
2189 anc_dn,
2191 obj_str = ldb_dn_get_extended_linearized(anc_obj,
2192 child_dn,
2195 DBG_ERR("getncchanges: failed to fetch ANC "
2196 "DN %s for DN %s - %s\n",
2197 anc_str, obj_str, ldb_errstring(sam_ctx));
2198 return WERR_DS_DRA_INCONSISTENT_DIT;
2201 anc_msg = anc_res->msgs[0];
2203 werr = get_nc_changes_build_object(anc_obj, anc_msg,
2204 sam_ctx,
2205 getnc_state,
2206 schema, session_key,
2207 req10,
2208 false, /* force_object_return */
2209 local_pas,
2210 machine_dn,
2211 next_anc_guid);
2212 if (!W_ERROR_IS_OK(werr)) {
2213 return werr;
2217 * Regardless of whether we actually use it or not,
2218 * we add it to the cache so we don't look at it again
2220 * The only time we are here without
2221 * getnc_state->obj_cache is for the forced addition
2222 * of the NC root to the start of the reply, this we
2223 * want to add each and every call..
2225 if (getnc_state->obj_cache) {
2226 werr = dcesrv_drsuapi_obj_cache_add(getnc_state->obj_cache,
2227 next_anc_guid);
2228 if (!W_ERROR_IS_OK(werr)) {
2229 return werr;
2234 * Any ancestors which are below the highwatermark
2235 * or uptodateness_vector shouldn't be added,
2236 * but we still look further up the
2237 * tree for ones which have been changed recently.
2239 if (anc_obj->meta_data_ctr != NULL) {
2242 * prepend the parent to the list so that the client-side
2243 * adds the parent object before it adds the children
2245 anc_obj->next_object = *new_objs;
2246 *new_objs = anc_obj;
2249 anc_msg = NULL;
2250 TALLOC_FREE(anc_res);
2251 TALLOC_FREE(anc_dn);
2254 * We may need to resolve more parents...
2256 next_anc_guid = anc_obj->parent_object_guid;
2258 return werr;
2262 * Adds a list of new objects into the current chunk of replication data to send
2264 static void getncchanges_chunk_add_objects(struct getncchanges_repl_chunk *repl_chunk,
2265 struct drsuapi_DsReplicaObjectListItemEx *obj_list)
2267 struct drsuapi_DsReplicaObjectListItemEx *obj;
2270 * We track the last object added to the replication chunk, so just add
2271 * the new object-list onto the end
2273 if (repl_chunk->object_list == NULL) {
2274 repl_chunk->object_list = obj_list;
2275 } else {
2276 repl_chunk->last_object->next_object = obj_list;
2279 for (obj = obj_list; obj != NULL; obj = obj->next_object) {
2280 repl_chunk->object_count += 1;
2283 * Remember the last object in the response - we'll use this to
2284 * link the next object(s) processed onto the existing list
2286 if (obj->next_object == NULL) {
2287 repl_chunk->last_object = obj;
2293 * Gets the object to send, packed into an RPC struct ready to send. This also
2294 * adds the object to the object cache, and adds any ancestors (if needed).
2295 * @param msg - DB search result for the object to add
2296 * @param guid - GUID of the object to add
2297 * @param ret_obj_list - returns the object ready to be sent (in a list, along
2298 * with any ancestors that might be needed). NULL if nothing to send.
2300 static WERROR getncchanges_get_obj_to_send(const struct ldb_message *msg,
2301 TALLOC_CTX *mem_ctx,
2302 struct ldb_context *sam_ctx,
2303 struct drsuapi_getncchanges_state *getnc_state,
2304 struct dsdb_schema *schema,
2305 DATA_BLOB *session_key,
2306 struct drsuapi_DsGetNCChangesRequest10 *req10,
2307 bool force_object_return,
2308 uint32_t *local_pas,
2309 struct ldb_dn *machine_dn,
2310 const struct GUID *guid,
2311 struct drsuapi_DsReplicaObjectListItemEx **ret_obj_list)
2313 struct drsuapi_DsReplicaObjectListItemEx *obj;
2314 WERROR werr;
2316 *ret_obj_list = NULL;
2318 obj = talloc_zero(mem_ctx, struct drsuapi_DsReplicaObjectListItemEx);
2319 W_ERROR_HAVE_NO_MEMORY(obj);
2321 werr = get_nc_changes_build_object(obj, msg, sam_ctx, getnc_state,
2322 schema, session_key, req10,
2323 force_object_return,
2324 local_pas, machine_dn, guid);
2325 if (!W_ERROR_IS_OK(werr)) {
2326 return werr;
2330 * The object may get filtered out by the UTDV's USN and not actually
2331 * sent, in which case there's nothing more to do here
2333 if (obj->meta_data_ctr == NULL) {
2334 TALLOC_FREE(obj);
2335 return WERR_OK;
2338 if (getnc_state->obj_cache != NULL) {
2339 werr = dcesrv_drsuapi_obj_cache_add(getnc_state->obj_cache,
2340 guid);
2341 if (!W_ERROR_IS_OK(werr)) {
2342 return werr;
2346 *ret_obj_list = obj;
2349 * If required, also add any ancestors that the client may need to know
2350 * about before it can resolve this object. These get prepended to the
2351 * ret_obj_list so the client adds them first.
2353 * We allow this to be disabled to permit testing of a
2354 * client-side fallback for the broken behaviour in Samba 4.5
2355 * and earlier.
2357 if (getnc_state->is_get_anc
2358 && !getnc_state->broken_samba_4_5_get_anc_emulation) {
2359 werr = getncchanges_add_ancestors(obj->parent_object_guid,
2360 msg->dn, mem_ctx,
2361 sam_ctx, getnc_state,
2362 schema, session_key,
2363 req10, local_pas,
2364 machine_dn, ret_obj_list);
2367 return werr;
2371 * Returns the number of links that are waiting to be sent
2373 static uint32_t getncchanges_chunk_links_pending(struct getncchanges_repl_chunk *repl_chunk,
2374 struct drsuapi_getncchanges_state *getnc_state)
2376 uint32_t links_to_send = 0;
2378 if (getnc_state->is_get_tgt) {
2381 * when the GET_TGT flag is set, only include the linked
2382 * attributes whose target object has already been checked
2383 * (i.e. they're ready to send).
2385 if (repl_chunk->tgt_la_count > getnc_state->la_idx) {
2386 links_to_send = (repl_chunk->tgt_la_count -
2387 getnc_state->la_idx);
2389 } else {
2390 links_to_send = getnc_state->la_count - getnc_state->la_idx;
2393 return links_to_send;
2397 * Returns the max number of links that will fit in the current replication chunk
2399 static uint32_t getncchanges_chunk_max_links(struct getncchanges_repl_chunk *repl_chunk)
2401 uint32_t max_links = 0;
2403 if (repl_chunk->max_links != DEFAULT_MAX_LINKS ||
2404 repl_chunk->max_objects != DEFAULT_MAX_OBJECTS) {
2407 * We're using non-default settings, so don't try to adjust
2408 * them, just trust the user has configured decent values
2410 max_links = repl_chunk->max_links;
2412 } else if (repl_chunk->max_links > repl_chunk->object_count) {
2415 * This is just an approximate guess to avoid overfilling the
2416 * replication chunk. It's the logic we've used historically.
2417 * E.g. if we've already sent 1000 objects, then send 1000 fewer
2418 * links. For comparison, the max that Windows seems to send is
2419 * ~2700 links and ~250 objects (although this may vary based
2420 * on timeouts)
2422 max_links = repl_chunk->max_links - repl_chunk->object_count;
2425 return max_links;
2429 * Returns true if the current GetNCChanges() call has taken longer than its
2430 * allotted time. This prevents the client from timing out.
2432 static bool getncchanges_chunk_timed_out(struct getncchanges_repl_chunk *repl_chunk)
2434 return (time(NULL) - repl_chunk->start > repl_chunk->max_wait);
2438 * Returns true if the current chunk of replication data has reached the
2439 * max_objects and/or max_links thresholds.
2441 static bool getncchanges_chunk_is_full(struct getncchanges_repl_chunk *repl_chunk,
2442 struct drsuapi_getncchanges_state *getnc_state)
2444 bool chunk_full = false;
2445 uint32_t links_to_send;
2446 uint32_t chunk_limit;
2448 /* check if the current chunk is already full with objects */
2449 if (repl_chunk->object_count >= repl_chunk->max_objects) {
2450 chunk_full = true;
2452 } else if (repl_chunk->object_count > 0 &&
2453 getncchanges_chunk_timed_out(repl_chunk)) {
2456 * We've exceeded our allotted time building this chunk,
2457 * and we have at least one object to send back to the client
2459 chunk_full = true;
2461 } else if (repl_chunk->immediate_link_sync) {
2463 /* check if the chunk is already full with links */
2464 links_to_send = getncchanges_chunk_links_pending(repl_chunk,
2465 getnc_state);
2467 chunk_limit = getncchanges_chunk_max_links(repl_chunk);
2470 * The chunk is full if we've got more links to send than will
2471 * fit in one chunk
2473 if (links_to_send > 0 && chunk_limit <= links_to_send) {
2474 chunk_full = true;
2478 return chunk_full;
2482 * Goes through any new linked attributes and checks that the target object
2483 * will be known to the client, i.e. we've already sent it in an replication
2484 * chunk. If not, then it adds the target object to the current replication
2485 * chunk. This is only done when the client specifies DRS_GET_TGT.
2487 static WERROR getncchanges_chunk_add_la_targets(struct getncchanges_repl_chunk *repl_chunk,
2488 struct drsuapi_getncchanges_state *getnc_state,
2489 uint32_t start_la_index,
2490 TALLOC_CTX *mem_ctx,
2491 struct ldb_context *sam_ctx,
2492 struct dsdb_schema *schema,
2493 DATA_BLOB *session_key,
2494 struct drsuapi_DsGetNCChangesRequest10 *req10,
2495 uint32_t *local_pas,
2496 struct ldb_dn *machine_dn)
2498 int ret;
2499 uint32_t i;
2500 uint32_t max_la_index;
2501 uint32_t max_links;
2502 uint32_t target_count = 0;
2503 WERROR werr = WERR_OK;
2504 static const char * const msg_attrs[] = {
2505 "*",
2506 "nTSecurityDescriptor",
2507 "parentGUID",
2508 "replPropertyMetaData",
2509 DSDB_SECRET_ATTRIBUTES,
2510 NULL };
2513 * A object can potentially link to thousands of targets. Only bother
2514 * checking as many targets as will fit into the current response
2516 max_links = getncchanges_chunk_max_links(repl_chunk);
2517 max_la_index = MIN(getnc_state->la_count,
2518 start_la_index + max_links);
2520 /* loop through any linked attributes to check */
2521 for (i = start_la_index;
2522 (i < max_la_index &&
2523 !getncchanges_chunk_is_full(repl_chunk, getnc_state));
2524 i++) {
2526 struct GUID target_guid;
2527 struct drsuapi_DsReplicaObjectListItemEx *new_objs = NULL;
2528 const struct drsuapi_DsReplicaLinkedAttribute *la;
2529 struct ldb_result *msg_res;
2530 struct ldb_dn *search_dn;
2531 TALLOC_CTX *tmp_ctx;
2532 struct dsdb_dn *dn;
2533 const struct dsdb_attribute *schema_attrib;
2534 NTSTATUS status;
2535 bool same_nc;
2537 la = &getnc_state->la_list[i];
2538 tmp_ctx = talloc_new(mem_ctx);
2541 * Track what linked attribute targets we've checked. We might
2542 * not have time to check them all, so we should only send back
2543 * the ones we've actually checked.
2545 repl_chunk->tgt_la_count = i + 1;
2547 /* get the GUID of the linked attribute's target object */
2548 schema_attrib = dsdb_attribute_by_attributeID_id(schema,
2549 la->attid);
2551 werr = dsdb_dn_la_from_blob(sam_ctx, schema_attrib, schema,
2552 tmp_ctx, la->value.blob, &dn);
2554 if (!W_ERROR_IS_OK(werr)) {
2555 DEBUG(0,(__location__ ": Bad la blob\n"));
2556 return werr;
2559 status = dsdb_get_extended_dn_guid(dn->dn, &target_guid, "GUID");
2561 if (!NT_STATUS_IS_OK(status)) {
2562 return ntstatus_to_werror(status);
2566 * if the target isn't in the cache, then the client
2567 * might not know about it, so send the target now
2569 werr = dcesrv_drsuapi_obj_cache_exists(getnc_state->obj_cache,
2570 &target_guid);
2572 if (W_ERROR_EQUAL(werr, WERR_OBJECT_NAME_EXISTS)) {
2574 /* target already sent, nothing to do */
2575 TALLOC_FREE(tmp_ctx);
2576 continue;
2579 same_nc = dsdb_objects_have_same_nc(sam_ctx, tmp_ctx, dn->dn,
2580 getnc_state->ncRoot_dn);
2582 /* don't try to fetch target objects from another partition */
2583 if (!same_nc) {
2584 TALLOC_FREE(tmp_ctx);
2585 continue;
2588 search_dn = ldb_dn_new_fmt(tmp_ctx, sam_ctx, "<GUID=%s>",
2589 GUID_string(tmp_ctx, &target_guid));
2590 W_ERROR_HAVE_NO_MEMORY(search_dn);
2592 ret = drsuapi_search_with_extended_dn(sam_ctx, tmp_ctx,
2593 &msg_res, search_dn,
2594 LDB_SCOPE_BASE,
2595 msg_attrs, NULL);
2598 * Don't fail the replication if we can't find the target.
2599 * This could happen for a one-way linked attribute, if the
2600 * target is deleted and then later expunged (thus, the source
2601 * object can be left with a hanging link). Continue to send
2602 * the the link (the client-side has already tried once with
2603 * GET_TGT, so it should just end up ignoring it).
2605 if (ret == LDB_ERR_NO_SUCH_OBJECT) {
2606 DBG_WARNING("Encountered unknown link target DN %s\n",
2607 ldb_dn_get_extended_linearized(tmp_ctx, dn->dn, 1));
2608 TALLOC_FREE(tmp_ctx);
2609 continue;
2611 } else if (ret != LDB_SUCCESS) {
2612 DBG_ERR("Failed to fetch link target DN %s - %s\n",
2613 ldb_dn_get_extended_linearized(tmp_ctx, dn->dn, 1),
2614 ldb_errstring(sam_ctx));
2615 return WERR_DS_DRA_INCONSISTENT_DIT;
2619 * Construct an object, ready to send (this will include
2620 * the object's ancestors as well, if GET_ANC is set)
2622 werr = getncchanges_get_obj_to_send(msg_res->msgs[0], mem_ctx,
2623 sam_ctx, getnc_state,
2624 schema, session_key, req10,
2625 false, local_pas,
2626 machine_dn, &target_guid,
2627 &new_objs);
2628 if (!W_ERROR_IS_OK(werr)) {
2629 return werr;
2632 if (new_objs != NULL) {
2633 target_count++;
2634 getncchanges_chunk_add_objects(repl_chunk, new_objs);
2636 TALLOC_FREE(tmp_ctx);
2639 if (target_count > 0) {
2640 DEBUG(3, ("GET_TGT: checked %u link-attrs, added %u target objs\n",
2641 i - start_la_index, target_count));
2644 return WERR_OK;
2648 * Creates a helper struct used for building a chunk of replication data,
2649 * i.e. used over a single call to dcesrv_drsuapi_DsGetNCChanges().
2651 static struct getncchanges_repl_chunk * getncchanges_chunk_new(TALLOC_CTX *mem_ctx,
2652 struct dcesrv_call_state *dce_call,
2653 struct drsuapi_DsGetNCChangesRequest10 *req10)
2655 struct getncchanges_repl_chunk *repl_chunk;
2657 repl_chunk = talloc_zero(mem_ctx, struct getncchanges_repl_chunk);
2659 repl_chunk->start = time(NULL);
2661 repl_chunk->max_objects = lpcfg_parm_int(dce_call->conn->dce_ctx->lp_ctx, NULL,
2662 "drs", "max object sync",
2663 DEFAULT_MAX_OBJECTS);
2666 * The client control here only applies in normal replication, not extended
2667 * operations, which return a fixed set, even if the caller
2668 * sets max_object_count == 0
2670 if (req10->extended_op == DRSUAPI_EXOP_NONE) {
2673 * use this to force single objects at a time, which is useful
2674 * for working out what object is giving problems
2676 if (req10->max_object_count < repl_chunk->max_objects) {
2677 repl_chunk->max_objects = req10->max_object_count;
2681 repl_chunk->max_links =
2682 lpcfg_parm_int(dce_call->conn->dce_ctx->lp_ctx, NULL,
2683 "drs", "max link sync",
2684 DEFAULT_MAX_LINKS);
2686 repl_chunk->immediate_link_sync =
2687 lpcfg_parm_bool(dce_call->conn->dce_ctx->lp_ctx, NULL,
2688 "drs", "immediate link sync", false);
2691 * Maximum time that we can spend in a getncchanges
2692 * in order to avoid timeout of the other part.
2693 * 10 seconds by default.
2695 repl_chunk->max_wait = lpcfg_parm_int(dce_call->conn->dce_ctx->lp_ctx,
2696 NULL, "drs", "max work time", 10);
2698 return repl_chunk;
2702 drsuapi_DsGetNCChanges
2704 see MS-DRSR 4.1.10.5.2 for basic logic of this function
2706 WERROR dcesrv_drsuapi_DsGetNCChanges(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
2707 struct drsuapi_DsGetNCChanges *r)
2709 struct auth_session_info *session_info =
2710 dcesrv_call_session_info(dce_call);
2711 struct imessaging_context *imsg_ctx =
2712 dcesrv_imessaging_context(dce_call->conn);
2713 struct drsuapi_DsReplicaObjectIdentifier *untrusted_ncRoot;
2714 int ret;
2715 uint32_t i, k;
2716 struct dsdb_schema *schema;
2717 struct drsuapi_DsReplicaOIDMapping_Ctr *ctr;
2718 struct getncchanges_repl_chunk *repl_chunk;
2719 NTSTATUS status;
2720 DATA_BLOB session_key;
2721 WERROR werr;
2722 struct dcesrv_handle *h;
2723 struct drsuapi_bind_state *b_state;
2724 struct drsuapi_getncchanges_state *getnc_state = NULL;
2725 struct drsuapi_DsGetNCChangesRequest10 *req10;
2726 uint32_t options;
2727 uint32_t link_count = 0;
2728 struct ldb_dn *search_dn = NULL;
2729 bool am_rodc;
2730 enum security_user_level security_level;
2731 struct ldb_context *sam_ctx;
2732 struct dom_sid *user_sid;
2733 bool is_secret_request;
2734 bool is_gc_pas_request;
2735 struct drsuapi_changed_objects *changes;
2736 bool has_get_all_changes = false;
2737 struct GUID invocation_id;
2738 static const struct drsuapi_DsReplicaLinkedAttribute no_linked_attr;
2739 struct dsdb_schema_prefixmap *pfm_remote = NULL;
2740 bool full = true;
2741 uint32_t *local_pas = NULL;
2742 struct ldb_dn *machine_dn = NULL; /* Only used for REPL SECRET EXOP */
2744 DCESRV_PULL_HANDLE_WERR(h, r->in.bind_handle, DRSUAPI_BIND_HANDLE);
2745 b_state = h->data;
2747 /* sam_ctx_system is not present for non-administrator users */
2748 sam_ctx = b_state->sam_ctx_system?b_state->sam_ctx_system:b_state->sam_ctx;
2750 invocation_id = *(samdb_ntds_invocation_id(sam_ctx));
2752 *r->out.level_out = 6;
2754 r->out.ctr->ctr6.linked_attributes_count = 0;
2755 r->out.ctr->ctr6.linked_attributes = discard_const_p(struct drsuapi_DsReplicaLinkedAttribute, &no_linked_attr);
2757 r->out.ctr->ctr6.object_count = 0;
2758 r->out.ctr->ctr6.nc_object_count = 0;
2759 r->out.ctr->ctr6.more_data = false;
2760 r->out.ctr->ctr6.uptodateness_vector = NULL;
2761 r->out.ctr->ctr6.source_dsa_guid = *(samdb_ntds_objectGUID(sam_ctx));
2762 r->out.ctr->ctr6.source_dsa_invocation_id = *(samdb_ntds_invocation_id(sam_ctx));
2763 r->out.ctr->ctr6.first_object = NULL;
2765 /* Check request revision.
2767 switch (r->in.level) {
2768 case 8:
2769 req10 = getncchanges_map_req8(mem_ctx, &r->in.req->req8);
2770 if (req10 == NULL) {
2771 return WERR_NOT_ENOUGH_MEMORY;
2773 break;
2774 case 10:
2775 req10 = &r->in.req->req10;
2776 break;
2777 default:
2778 DEBUG(0,(__location__ ": Request for DsGetNCChanges with unsupported level %u\n",
2779 r->in.level));
2780 return WERR_REVISION_MISMATCH;
2783 repl_chunk = getncchanges_chunk_new(mem_ctx, dce_call, req10);
2785 if (repl_chunk == NULL) {
2786 return WERR_NOT_ENOUGH_MEMORY;
2789 /* a RODC doesn't allow for any replication */
2790 ret = samdb_rodc(sam_ctx, &am_rodc);
2791 if (ret == LDB_SUCCESS && am_rodc) {
2792 DEBUG(0,(__location__ ": DsGetNCChanges attempt on RODC\n"));
2793 return WERR_DS_DRA_SOURCE_DISABLED;
2797 * Help our tests pass by pre-checking the
2798 * destination_dsa_guid before the NC permissions. Info on
2799 * valid DSA GUIDs is not sensitive so this isn't a leak
2801 switch (req10->extended_op) {
2802 case DRSUAPI_EXOP_FSMO_REQ_ROLE:
2803 case DRSUAPI_EXOP_FSMO_RID_ALLOC:
2804 case DRSUAPI_EXOP_FSMO_RID_REQ_ROLE:
2805 case DRSUAPI_EXOP_FSMO_REQ_PDC:
2806 case DRSUAPI_EXOP_FSMO_ABANDON_ROLE:
2808 const char *attrs[] = { NULL };
2810 ret = samdb_get_ntds_obj_by_guid(mem_ctx,
2811 sam_ctx,
2812 &req10->destination_dsa_guid,
2813 attrs,
2814 NULL);
2815 if (ret == LDB_ERR_NO_SUCH_OBJECT) {
2817 * Error out with an EXOP error but success at
2818 * the top level return value
2820 r->out.ctr->ctr6.extended_ret = DRSUAPI_EXOP_ERR_UNKNOWN_CALLER;
2821 return WERR_OK;
2822 } else if (ret != LDB_SUCCESS) {
2823 return WERR_DS_DRA_INTERNAL_ERROR;
2826 break;
2828 case DRSUAPI_EXOP_REPL_SECRET:
2829 case DRSUAPI_EXOP_REPL_OBJ:
2830 case DRSUAPI_EXOP_NONE:
2831 break;
2834 /* Perform access checks. */
2835 untrusted_ncRoot = req10->naming_context;
2836 if (untrusted_ncRoot == NULL) {
2837 DEBUG(0,(__location__ ": Request for DsGetNCChanges with no NC\n"));
2838 return WERR_DS_DRA_INVALID_PARAMETER;
2841 if (samdb_ntds_options(sam_ctx, &options) != LDB_SUCCESS) {
2842 return WERR_DS_DRA_INTERNAL_ERROR;
2845 if ((options & DS_NTDSDSA_OPT_DISABLE_OUTBOUND_REPL) &&
2846 !(req10->replica_flags & DRSUAPI_DRS_SYNC_FORCED)) {
2847 return WERR_DS_DRA_SOURCE_DISABLED;
2850 user_sid = &session_info->security_token->sids[PRIMARY_USER_SID_INDEX];
2853 * all clients must have GUID_DRS_GET_CHANGES. This finds the
2854 * actual NC root of the given value and checks that, allowing
2855 * REPL_OBJ to work safely
2857 werr = drs_security_access_check_nc_root(sam_ctx,
2858 mem_ctx,
2859 session_info->security_token,
2860 req10->naming_context,
2861 GUID_DRS_GET_CHANGES);
2863 if (W_ERROR_EQUAL(werr, WERR_DS_DRA_BAD_NC)) {
2865 * These extended operations need a different error if
2866 * the supplied DN can't be found
2868 switch (req10->extended_op) {
2869 case DRSUAPI_EXOP_REPL_OBJ:
2870 case DRSUAPI_EXOP_REPL_SECRET:
2871 return WERR_DS_DRA_BAD_DN;
2872 default:
2873 return werr;
2876 if (!W_ERROR_IS_OK(werr)) {
2877 return werr;
2880 if (dsdb_functional_level(sam_ctx) >= DS_DOMAIN_FUNCTION_2008) {
2881 full = req10->partial_attribute_set == NULL &&
2882 req10->partial_attribute_set_ex == NULL;
2883 } else {
2884 full = (options & DRSUAPI_DRS_WRIT_REP) != 0;
2887 werr = dsdb_schema_pfm_from_drsuapi_pfm(&req10->mapping_ctr, true,
2888 mem_ctx, &pfm_remote, NULL);
2890 /* We were supplied a partial attribute set, without the prefix map! */
2891 if (!full && !W_ERROR_IS_OK(werr)) {
2892 if (req10->mapping_ctr.num_mappings == 0) {
2894 * Despite the fact MS-DRSR specifies that this shouldn't
2895 * happen, Windows RODCs will in fact not provide a prefixMap.
2897 DEBUG(5,(__location__ ": Failed to provide a remote prefixMap,"
2898 " falling back to local prefixMap\n"));
2899 } else {
2900 DEBUG(0,(__location__ ": Failed to decode remote prefixMap: %s\n",
2901 win_errstr(werr)));
2902 return werr;
2906 /* allowed if the GC PAS and client has
2907 GUID_DRS_GET_FILTERED_ATTRIBUTES */
2908 werr = dcesrv_drsuapi_is_gc_pas_request(b_state, req10, pfm_remote, &is_gc_pas_request);
2909 if (!W_ERROR_IS_OK(werr)) {
2910 return werr;
2912 if (is_gc_pas_request) {
2913 werr = drs_security_access_check_nc_root(sam_ctx,
2914 mem_ctx,
2915 session_info->security_token,
2916 req10->naming_context,
2917 GUID_DRS_GET_FILTERED_ATTRIBUTES);
2918 if (W_ERROR_IS_OK(werr)) {
2919 goto allowed;
2923 werr = dcesrv_drsuapi_is_reveal_secrets_request(b_state, req10,
2924 pfm_remote,
2925 &is_secret_request);
2926 if (!W_ERROR_IS_OK(werr)) {
2927 return werr;
2929 if (is_secret_request) {
2930 werr = drs_security_access_check_nc_root(sam_ctx,
2931 mem_ctx,
2932 session_info->security_token,
2933 req10->naming_context,
2934 GUID_DRS_GET_ALL_CHANGES);
2935 if (!W_ERROR_IS_OK(werr)) {
2936 /* Only bail if this is not a EXOP_REPL_SECRET */
2937 if (req10->extended_op != DRSUAPI_EXOP_REPL_SECRET) {
2938 return werr;
2940 } else {
2941 has_get_all_changes = true;
2945 allowed:
2946 /* for non-administrator replications, check that they have
2947 given the correct source_dsa_invocation_id */
2948 security_level = security_session_user_level(session_info,
2949 samdb_domain_sid(sam_ctx));
2950 if (security_level == SECURITY_RO_DOMAIN_CONTROLLER) {
2951 if (req10->replica_flags & DRSUAPI_DRS_WRIT_REP) {
2952 /* we rely on this flag being unset for RODC requests */
2953 req10->replica_flags &= ~DRSUAPI_DRS_WRIT_REP;
2957 if (req10->replica_flags & DRSUAPI_DRS_FULL_SYNC_PACKET) {
2958 /* Ignore the _in_ uptpdateness vector*/
2959 req10->uptodateness_vector = NULL;
2962 if (GUID_all_zero(&req10->source_dsa_invocation_id)) {
2963 req10->source_dsa_invocation_id = invocation_id;
2966 if (!GUID_equal(&req10->source_dsa_invocation_id, &invocation_id)) {
2968 * The given highwatermark is only valid relative to the
2969 * specified source_dsa_invocation_id.
2971 ZERO_STRUCT(req10->highwatermark);
2975 * An extended operation is "special single-response cycle"
2976 * per MS-DRSR 4.1.10.1.1 "Start and Finish" so we don't need
2977 * to guess if this is a continuation of any long-term
2978 * state.
2980 * Otherwise, maintain (including marking as stale, which is
2981 * what the below is for) the replication state.
2983 * Note that point 5 "The server implementation MAY declare
2984 * the supplied values ... as too stale to use." would allow
2985 * resetting the state at almost any point, Microsoft Azure AD
2986 * Connect will switch back and forth between a REPL_OBJ and a
2987 * full replication, so we must not reset the statue during
2988 * extended operations.
2990 if (req10->extended_op == DRSUAPI_EXOP_NONE &&
2991 b_state->getncchanges_full_repl_state != NULL) {
2993 * Knowing that this is not an extended operation, we
2994 * can access (and validate) the full replication
2995 * state
2997 getnc_state = b_state->getncchanges_full_repl_state;
3000 /* see if a previous replication has been abandoned */
3001 if (getnc_state != NULL) {
3002 struct ldb_dn *new_dn;
3003 ret = drs_ObjectIdentifier_to_dn_and_nc_root(getnc_state,
3004 sam_ctx,
3005 untrusted_ncRoot,
3006 &new_dn,
3007 NULL);
3008 if (ret != LDB_SUCCESS) {
3010 * This can't fail as we have done this above
3011 * implicitly but not got the DN out, but
3012 * print a good error message regardless just
3013 * in case.
3015 DBG_ERR("Bad DN '%s' as Naming Context for GetNCChanges: %s\n",
3016 drs_ObjectIdentifier_to_debug_string(mem_ctx, untrusted_ncRoot),
3017 ldb_strerror(ret));
3018 return WERR_DS_DRA_INVALID_PARAMETER;
3020 if (ldb_dn_compare(new_dn, getnc_state->ncRoot_dn) != 0) {
3021 DEBUG(0,(__location__ ": DsGetNCChanges 2nd replication on different DN %s %s (last_dn %s)\n",
3022 ldb_dn_get_linearized(new_dn),
3023 ldb_dn_get_linearized(getnc_state->ncRoot_dn),
3024 ldb_dn_get_linearized(getnc_state->last_dn)));
3025 TALLOC_FREE(getnc_state);
3026 b_state->getncchanges_full_repl_state = NULL;
3030 if (getnc_state != NULL) {
3031 ret = drsuapi_DsReplicaHighWaterMark_cmp(&getnc_state->last_hwm,
3032 &req10->highwatermark);
3033 if (ret != 0) {
3034 DEBUG(0,(__location__ ": DsGetNCChanges 2nd replication "
3035 "on DN %s %s highwatermark (last_dn %s)\n",
3036 ldb_dn_get_linearized(getnc_state->ncRoot_dn),
3037 (ret > 0) ? "older" : "newer",
3038 ldb_dn_get_linearized(getnc_state->last_dn)));
3039 TALLOC_FREE(getnc_state);
3040 b_state->getncchanges_full_repl_state = NULL;
3045 * This is either a new replication cycle, or an extended
3046 * operation. A new cycle is triggered above by the
3047 * TALLOC_FREE() which sets getnc_state to NULL.
3049 if (getnc_state == NULL) {
3050 struct ldb_result *res = NULL;
3051 const char *attrs[] = {
3052 "instanceType",
3053 "objectGuID",
3054 NULL
3056 uint32_t nc_instanceType;
3057 struct ldb_dn *ncRoot_dn;
3059 ret = drs_ObjectIdentifier_to_dn_and_nc_root(mem_ctx,
3060 sam_ctx,
3061 untrusted_ncRoot,
3062 &ncRoot_dn,
3063 NULL);
3064 if (ret != LDB_SUCCESS) {
3065 DBG_ERR("Bad DN '%s' as Naming Context or EXOP DN for GetNCChanges: %s\n",
3066 drs_ObjectIdentifier_to_debug_string(mem_ctx, untrusted_ncRoot),
3067 ldb_strerror(ret));
3068 return WERR_DS_DRA_BAD_DN;
3071 ret = dsdb_search_dn(sam_ctx, mem_ctx, &res,
3072 ncRoot_dn, attrs,
3073 DSDB_SEARCH_SHOW_DELETED |
3074 DSDB_SEARCH_SHOW_RECYCLED);
3075 if (ret != LDB_SUCCESS) {
3076 DBG_WARNING("Failed to find ncRoot_dn %s\n",
3077 ldb_dn_get_linearized(ncRoot_dn));
3078 return WERR_DS_DRA_BAD_DN;
3080 nc_instanceType = ldb_msg_find_attr_as_int(res->msgs[0],
3081 "instanceType",
3084 if (req10->extended_op != DRSUAPI_EXOP_NONE) {
3085 r->out.ctr->ctr6.extended_ret = DRSUAPI_EXOP_ERR_SUCCESS;
3089 * This is the first replication cycle and it is
3090 * a good place to handle extended operations
3092 * FIXME: we don't fully support extended operations yet
3094 switch (req10->extended_op) {
3095 case DRSUAPI_EXOP_NONE:
3096 if ((nc_instanceType & INSTANCE_TYPE_IS_NC_HEAD) == 0) {
3097 const char *dn_str
3098 = ldb_dn_get_linearized(ncRoot_dn);
3100 DBG_NOTICE("Rejecting full replication on "
3101 "not NC %s", dn_str);
3103 return WERR_DS_CANT_FIND_EXPECTED_NC;
3106 break;
3107 case DRSUAPI_EXOP_FSMO_RID_ALLOC:
3108 werr = getncchanges_rid_alloc(b_state, mem_ctx, req10, &r->out.ctr->ctr6, &search_dn);
3109 W_ERROR_NOT_OK_RETURN(werr);
3110 if (r->out.ctr->ctr6.extended_ret != DRSUAPI_EXOP_ERR_SUCCESS) {
3111 return WERR_OK;
3113 break;
3114 case DRSUAPI_EXOP_REPL_SECRET:
3115 werr = getncchanges_repl_secret(b_state, mem_ctx, req10,
3116 user_sid,
3117 &r->out.ctr->ctr6,
3118 has_get_all_changes,
3119 &machine_dn);
3120 r->out.result = werr;
3121 W_ERROR_NOT_OK_RETURN(werr);
3122 break;
3123 case DRSUAPI_EXOP_FSMO_REQ_ROLE:
3124 werr = getncchanges_change_master(b_state, mem_ctx, req10, &r->out.ctr->ctr6);
3125 W_ERROR_NOT_OK_RETURN(werr);
3126 if (r->out.ctr->ctr6.extended_ret != DRSUAPI_EXOP_ERR_SUCCESS) {
3127 return WERR_OK;
3129 break;
3130 case DRSUAPI_EXOP_FSMO_RID_REQ_ROLE:
3131 werr = getncchanges_change_master(b_state, mem_ctx, req10, &r->out.ctr->ctr6);
3132 W_ERROR_NOT_OK_RETURN(werr);
3133 if (r->out.ctr->ctr6.extended_ret != DRSUAPI_EXOP_ERR_SUCCESS) {
3134 return WERR_OK;
3136 break;
3137 case DRSUAPI_EXOP_FSMO_REQ_PDC:
3138 werr = getncchanges_change_master(b_state, mem_ctx, req10, &r->out.ctr->ctr6);
3139 W_ERROR_NOT_OK_RETURN(werr);
3140 if (r->out.ctr->ctr6.extended_ret != DRSUAPI_EXOP_ERR_SUCCESS) {
3141 return WERR_OK;
3143 break;
3144 case DRSUAPI_EXOP_REPL_OBJ:
3145 werr = getncchanges_repl_obj(b_state, mem_ctx, req10, user_sid, &r->out.ctr->ctr6);
3146 r->out.result = werr;
3147 W_ERROR_NOT_OK_RETURN(werr);
3148 break;
3150 case DRSUAPI_EXOP_FSMO_ABANDON_ROLE:
3152 DEBUG(0,(__location__ ": Request for DsGetNCChanges unsupported extended op 0x%x\n",
3153 (unsigned)req10->extended_op));
3154 return WERR_DS_DRA_NOT_SUPPORTED;
3158 * Initialize the state, initially for the remainder
3159 * of this call (EXOPs)
3161 * An extended operation is a "special single-response
3162 * cycle" per MS-DRSR 4.1.10.1.1 "Start and Finish"
3165 getnc_state = talloc_zero(mem_ctx, struct drsuapi_getncchanges_state);
3166 if (getnc_state == NULL) {
3167 return WERR_NOT_ENOUGH_MEMORY;
3170 if (req10->extended_op == DRSUAPI_EXOP_NONE) {
3172 * Promote the memory to being a store of
3173 * long-term state that we will use over the
3174 * replication cycle for full replication
3175 * requests
3177 * Store the state in a clearly named location
3178 * for pulling back only during full
3179 * replications
3181 b_state->getncchanges_full_repl_state
3182 = talloc_steal(b_state, getnc_state);
3185 getnc_state->ncRoot_dn = ncRoot_dn;
3186 talloc_steal(getnc_state, ncRoot_dn);
3188 getnc_state->ncRoot_guid = samdb_result_guid(res->msgs[0],
3189 "objectGUID");
3191 /* find out if we are to replicate Schema NC */
3192 ret = ldb_dn_compare_base(ldb_get_schema_basedn(sam_ctx),
3193 ncRoot_dn);
3194 getnc_state->is_schema_nc = (0 == ret);
3196 TALLOC_FREE(res);
3199 /* we need the session key for encrypting password attributes */
3200 status = dcesrv_auth_session_key(dce_call, &session_key);
3201 if (!NT_STATUS_IS_OK(status)) {
3202 DEBUG(0,(__location__ ": Failed to get session key\n"));
3203 return WERR_DS_DRA_INTERNAL_ERROR;
3207 TODO: MS-DRSR section 4.1.10.1.1
3208 Work out if this is the start of a new cycle */
3210 if (getnc_state->guids == NULL) {
3211 const char *extra_filter;
3212 struct ldb_result *search_res = NULL;
3213 static const struct drsuapi_DsReplicaCursorCtrEx empty_udv;
3214 const struct drsuapi_DsReplicaCursorCtrEx *udv = NULL;
3216 extra_filter = lpcfg_parm_string(dce_call->conn->dce_ctx->lp_ctx, NULL, "drs", "object filter");
3218 if (req10->extended_op == DRSUAPI_EXOP_NONE) {
3219 if (req10->uptodateness_vector != NULL) {
3220 udv = req10->uptodateness_vector;
3221 } else {
3222 udv = &empty_udv;
3225 getnc_state->min_usn = req10->highwatermark.highest_usn;
3226 for (i = 0; i < udv->count; i++) {
3227 bool match;
3228 const struct drsuapi_DsReplicaCursor *cur =
3229 &udv->cursors[i];
3231 match = GUID_equal(&invocation_id,
3232 &cur->source_dsa_invocation_id);
3233 if (!match) {
3234 continue;
3236 if (cur->highest_usn > getnc_state->min_usn) {
3237 getnc_state->min_usn = cur->highest_usn;
3239 break;
3241 } else {
3242 /* We do not want REPL_SECRETS or REPL_SINGLE to return empty-handed */
3243 udv = &empty_udv;
3244 getnc_state->min_usn = 0;
3247 getnc_state->max_usn = getnc_state->min_usn;
3249 getnc_state->final_udv = talloc_zero(getnc_state,
3250 struct drsuapi_DsReplicaCursor2CtrEx);
3251 if (getnc_state->final_udv == NULL) {
3252 return WERR_NOT_ENOUGH_MEMORY;
3254 werr = get_nc_changes_udv(sam_ctx, getnc_state->ncRoot_dn,
3255 getnc_state->final_udv);
3256 if (!W_ERROR_IS_OK(werr)) {
3257 return werr;
3260 if (req10->extended_op == DRSUAPI_EXOP_NONE) {
3261 werr = getncchanges_collect_objects(b_state, mem_ctx,
3262 getnc_state, req10,
3263 search_dn, extra_filter,
3264 &search_res);
3265 } else {
3266 werr = getncchanges_collect_objects_exop(b_state, mem_ctx,
3267 getnc_state, req10,
3268 &r->out.ctr->ctr6,
3269 search_dn, extra_filter,
3270 &search_res);
3272 W_ERROR_NOT_OK_RETURN(werr);
3274 /* extract out the GUIDs list */
3275 getnc_state->num_records = search_res ? search_res->count : 0;
3276 getnc_state->guids = talloc_array(getnc_state, struct GUID, getnc_state->num_records);
3277 W_ERROR_HAVE_NO_MEMORY(getnc_state->guids);
3279 changes = talloc_array(getnc_state,
3280 struct drsuapi_changed_objects,
3281 getnc_state->num_records);
3282 W_ERROR_HAVE_NO_MEMORY(changes);
3284 for (i=0; i<getnc_state->num_records; i++) {
3285 changes[i].dn = search_res->msgs[i]->dn;
3286 changes[i].guid = samdb_result_guid(search_res->msgs[i], "objectGUID");
3287 changes[i].usn = ldb_msg_find_attr_as_uint64(search_res->msgs[i], "uSNChanged", 0);
3289 if (changes[i].usn > getnc_state->max_usn) {
3290 getnc_state->max_usn = changes[i].usn;
3293 if (req10->extended_op == DRSUAPI_EXOP_NONE &&
3294 GUID_equal(&changes[i].guid, &getnc_state->ncRoot_guid))
3296 getnc_state->send_nc_root_first = true;
3300 if (req10->extended_op == DRSUAPI_EXOP_NONE) {
3301 getnc_state->is_get_anc =
3302 ((req10->replica_flags & DRSUAPI_DRS_GET_ANC) != 0);
3303 if (getnc_state->is_get_anc
3304 && lpcfg_parm_bool(dce_call->conn->dce_ctx->lp_ctx,
3305 NULL,
3306 "drs",
3307 "broken_samba_4.5_get_anc_emulation",
3308 false)) {
3309 getnc_state->broken_samba_4_5_get_anc_emulation = true;
3311 if (lpcfg_parm_bool(dce_call->conn->dce_ctx->lp_ctx,
3312 NULL,
3313 "drs",
3314 "get_tgt_support",
3315 true)) {
3316 getnc_state->is_get_tgt =
3317 ((req10->more_flags & DRSUAPI_DRS_GET_TGT) != 0);
3321 /* RID_ALLOC returns 3 objects in a fixed order */
3322 if (req10->extended_op == DRSUAPI_EXOP_FSMO_RID_ALLOC) {
3323 /* Do nothing */
3324 } else if (getnc_state->broken_samba_4_5_get_anc_emulation) {
3325 LDB_TYPESAFE_QSORT(changes,
3326 getnc_state->num_records,
3327 getnc_state,
3328 site_res_cmp_anc_order);
3329 } else {
3330 LDB_TYPESAFE_QSORT(changes,
3331 getnc_state->num_records,
3332 getnc_state,
3333 site_res_cmp_usn_order);
3336 for (i=0; i < getnc_state->num_records; i++) {
3337 getnc_state->guids[i] = changes[i].guid;
3338 if (GUID_all_zero(&getnc_state->guids[i])) {
3339 DEBUG(2,("getncchanges: bad objectGUID from %s\n",
3340 ldb_dn_get_linearized(search_res->msgs[i]->dn)));
3341 return WERR_DS_DRA_INTERNAL_ERROR;
3345 getnc_state->final_hwm.tmp_highest_usn = getnc_state->max_usn;
3346 getnc_state->final_hwm.reserved_usn = 0;
3347 getnc_state->final_hwm.highest_usn = getnc_state->max_usn;
3349 talloc_free(search_res);
3350 talloc_free(changes);
3353 * when using GET_ANC or GET_TGT, cache the objects that have
3354 * been already sent, to avoid sending them multiple times
3356 if (getnc_state->is_get_anc || getnc_state->is_get_tgt) {
3357 DEBUG(3,("Using object cache, GET_ANC %u, GET_TGT %u\n",
3358 getnc_state->is_get_anc,
3359 getnc_state->is_get_tgt));
3361 getnc_state->obj_cache = db_open_rbt(getnc_state);
3362 if (getnc_state->obj_cache == NULL) {
3363 return WERR_NOT_ENOUGH_MEMORY;
3368 if (req10->uptodateness_vector) {
3369 /* make sure its sorted */
3370 TYPESAFE_QSORT(req10->uptodateness_vector->cursors,
3371 req10->uptodateness_vector->count,
3372 drsuapi_DsReplicaCursor_compare);
3375 /* Prefix mapping */
3376 schema = dsdb_get_schema(sam_ctx, mem_ctx);
3377 if (!schema) {
3378 DEBUG(0,("No schema in sam_ctx\n"));
3379 return WERR_DS_DRA_INTERNAL_ERROR;
3382 r->out.ctr->ctr6.naming_context = talloc(mem_ctx, struct drsuapi_DsReplicaObjectIdentifier);
3383 if (r->out.ctr->ctr6.naming_context == NULL) {
3384 return WERR_NOT_ENOUGH_MEMORY;
3388 * Match Windows and echo back the original values from the request, even if
3389 * they say DummyDN for the string NC
3391 *r->out.ctr->ctr6.naming_context = *untrusted_ncRoot;
3393 /* find the SID if there is one */
3394 dsdb_find_sid_by_dn(sam_ctx, getnc_state->ncRoot_dn, &r->out.ctr->ctr6.naming_context->sid);
3396 /* Set GUID */
3397 r->out.ctr->ctr6.naming_context->guid = getnc_state->ncRoot_guid;
3399 dsdb_get_oid_mappings_drsuapi(schema, true, mem_ctx, &ctr);
3400 r->out.ctr->ctr6.mapping_ctr = *ctr;
3402 r->out.ctr->ctr6.source_dsa_guid = *(samdb_ntds_objectGUID(sam_ctx));
3403 r->out.ctr->ctr6.source_dsa_invocation_id = *(samdb_ntds_invocation_id(sam_ctx));
3405 r->out.ctr->ctr6.old_highwatermark = req10->highwatermark;
3406 r->out.ctr->ctr6.new_highwatermark = req10->highwatermark;
3409 * If the client has already set GET_TGT then we know they can handle
3410 * receiving the linked attributes interleaved with the source objects
3412 if (getnc_state->is_get_tgt) {
3413 repl_chunk->immediate_link_sync = true;
3416 if (req10->partial_attribute_set != NULL) {
3417 struct dsdb_syntax_ctx syntax_ctx;
3418 uint32_t j = 0;
3420 dsdb_syntax_ctx_init(&syntax_ctx, sam_ctx, schema);
3421 syntax_ctx.pfm_remote = pfm_remote;
3423 local_pas = talloc_array(b_state, uint32_t, req10->partial_attribute_set->num_attids);
3425 for (j = 0; j < req10->partial_attribute_set->num_attids; j++) {
3426 getncchanges_attid_remote_to_local(schema,
3427 &syntax_ctx,
3428 req10->partial_attribute_set->attids[j],
3429 (enum drsuapi_DsAttributeId *)&local_pas[j],
3430 NULL);
3433 TYPESAFE_QSORT(local_pas,
3434 req10->partial_attribute_set->num_attids,
3435 uint32_t_ptr_cmp);
3439 * If we have the NC root in this replication, send it
3440 * first regardless. However, don't bump the USN now,
3441 * treat it as if it was sent early due to GET_ANC
3443 * This is triggered for each call, so every page of responses
3444 * gets the NC root as the first object, up to the point where
3445 * it naturally occurs in the replication.
3448 if (getnc_state->send_nc_root_first) {
3449 struct drsuapi_DsReplicaObjectListItemEx *new_objs = NULL;
3451 werr = getncchanges_add_ancestors(&getnc_state->ncRoot_guid,
3452 NULL, mem_ctx,
3453 sam_ctx, getnc_state,
3454 schema, &session_key,
3455 req10, local_pas,
3456 machine_dn, &new_objs);
3458 if (!W_ERROR_IS_OK(werr)) {
3459 return werr;
3462 getncchanges_chunk_add_objects(repl_chunk, new_objs);
3464 DEBUG(8,(__location__ ": replicating NC root %s\n",
3465 ldb_dn_get_linearized(getnc_state->ncRoot_dn)));
3469 * Check in case we're still processing the links from an object in the
3470 * previous chunk. We want to send the links (and any targets needed)
3471 * before moving on to the next object.
3473 if (getnc_state->is_get_tgt) {
3474 werr = getncchanges_chunk_add_la_targets(repl_chunk,
3475 getnc_state,
3476 getnc_state->la_idx,
3477 mem_ctx, sam_ctx,
3478 schema, &session_key,
3479 req10, local_pas,
3480 machine_dn);
3482 if (!W_ERROR_IS_OK(werr)) {
3483 return werr;
3487 for (i=getnc_state->num_processed;
3488 i<getnc_state->num_records &&
3489 !getncchanges_chunk_is_full(repl_chunk, getnc_state);
3490 i++) {
3491 struct drsuapi_DsReplicaObjectListItemEx *new_objs = NULL;
3492 struct ldb_message *msg;
3493 static const char * const msg_attrs[] = {
3494 "*",
3495 "nTSecurityDescriptor",
3496 "parentGUID",
3497 "replPropertyMetaData",
3498 DSDB_SECRET_ATTRIBUTES,
3499 NULL };
3500 struct ldb_result *msg_res;
3501 struct ldb_dn *msg_dn;
3502 bool obj_already_sent = false;
3503 TALLOC_CTX *tmp_ctx = talloc_new(mem_ctx);
3504 uint32_t old_la_index;
3507 * Once we get to the 'natural' place to send the NC
3508 * root, stop sending it at the front of each reply
3509 * and make sure to suppress sending it now
3511 * We don't just 'continue' here as we must send links
3512 * and unlike Windows we want to update the
3513 * tmp_highest_usn
3516 if (getnc_state->send_nc_root_first &&
3517 GUID_equal(&getnc_state->guids[i], &getnc_state->ncRoot_guid))
3519 getnc_state->send_nc_root_first = false;
3520 obj_already_sent = true;
3523 msg_dn = ldb_dn_new_fmt(tmp_ctx, sam_ctx, "<GUID=%s>",
3524 GUID_string(tmp_ctx, &getnc_state->guids[i]));
3525 W_ERROR_HAVE_NO_MEMORY(msg_dn);
3528 * by re-searching here we avoid having a lot of full
3529 * records in memory between calls to getncchanges.
3531 * We expect that we may get some objects that vanish
3532 * (tombstone expunge) between the first and second
3533 * check.
3535 ret = drsuapi_search_with_extended_dn(sam_ctx, tmp_ctx, &msg_res,
3536 msg_dn,
3537 LDB_SCOPE_BASE, msg_attrs, NULL);
3538 if (ret != LDB_SUCCESS) {
3539 if (ret != LDB_ERR_NO_SUCH_OBJECT) {
3540 DEBUG(1,("getncchanges: failed to fetch DN %s - %s\n",
3541 ldb_dn_get_extended_linearized(tmp_ctx, msg_dn, 1),
3542 ldb_errstring(sam_ctx)));
3544 TALLOC_FREE(tmp_ctx);
3545 continue;
3548 if (msg_res->count == 0) {
3549 DEBUG(1,("getncchanges: got LDB_SUCCESS but failed"
3550 "to get any results in fetch of DN "
3551 "%s (race with tombstone expunge?)\n",
3552 ldb_dn_get_extended_linearized(tmp_ctx,
3553 msg_dn, 1)));
3554 TALLOC_FREE(tmp_ctx);
3555 continue;
3558 msg = msg_res->msgs[0];
3561 * Check if we've already sent the object as an ancestor of
3562 * another object. If so, we don't need to send it again
3564 if (getnc_state->obj_cache != NULL) {
3565 werr = dcesrv_drsuapi_obj_cache_exists(getnc_state->obj_cache,
3566 &getnc_state->guids[i]);
3567 if (W_ERROR_EQUAL(werr, WERR_OBJECT_NAME_EXISTS)) {
3568 obj_already_sent = true;
3572 if (!obj_already_sent) {
3573 bool max_wait_reached;
3575 max_wait_reached = getncchanges_chunk_timed_out(repl_chunk);
3578 * Construct an object, ready to send (this will include
3579 * the object's ancestors as well, if needed)
3581 werr = getncchanges_get_obj_to_send(msg, mem_ctx, sam_ctx,
3582 getnc_state, schema,
3583 &session_key, req10,
3584 max_wait_reached,
3585 local_pas, machine_dn,
3586 &getnc_state->guids[i],
3587 &new_objs);
3588 if (!W_ERROR_IS_OK(werr)) {
3589 return werr;
3593 old_la_index = getnc_state->la_count;
3596 * We've reached the USN where this object naturally occurs.
3597 * Regardless of whether we've already sent the object (as an
3598 * ancestor), we add its links and update the HWM at this point
3600 werr = get_nc_changes_add_links(sam_ctx, getnc_state,
3601 getnc_state->is_schema_nc,
3602 schema, getnc_state->min_usn,
3603 req10->replica_flags,
3604 msg,
3605 &getnc_state->la_list,
3606 &getnc_state->la_count,
3607 req10->uptodateness_vector);
3608 if (!W_ERROR_IS_OK(werr)) {
3609 return werr;
3612 dcesrv_drsuapi_update_highwatermark(msg,
3613 getnc_state->max_usn,
3614 &r->out.ctr->ctr6.new_highwatermark);
3616 if (new_objs != NULL) {
3619 * Add the object (and, if GET_ANC, any parents it may
3620 * have) into the current chunk of replication data
3622 getncchanges_chunk_add_objects(repl_chunk, new_objs);
3624 talloc_free(getnc_state->last_dn);
3626 * talloc_steal() as we still need msg->dn to
3627 * be a valid pointer for the log on the next
3628 * line.
3630 * msg only remains in scope for the next 25
3631 * lines or so anyway.
3633 getnc_state->last_dn = talloc_steal(getnc_state, msg->dn);
3636 DEBUG(8,(__location__ ": %s object %s new tmp_highest_usn=%" PRIu64 "\n",
3637 new_objs ? "replicating" : "skipping send of",
3638 ldb_dn_get_linearized(msg->dn),
3639 r->out.ctr->ctr6.new_highwatermark.tmp_highest_usn));
3641 getnc_state->total_links += (getnc_state->la_count - old_la_index);
3644 * If the GET_TGT flag was set, check any new links added to
3645 * make sure the client knows about the link target object
3647 if (getnc_state->is_get_tgt) {
3648 werr = getncchanges_chunk_add_la_targets(repl_chunk,
3649 getnc_state,
3650 old_la_index,
3651 mem_ctx, sam_ctx,
3652 schema, &session_key,
3653 req10, local_pas,
3654 machine_dn);
3656 if (!W_ERROR_IS_OK(werr)) {
3657 return werr;
3661 TALLOC_FREE(tmp_ctx);
3664 /* copy the constructed object list into the response message */
3665 r->out.ctr->ctr6.object_count = repl_chunk->object_count;
3666 r->out.ctr->ctr6.first_object = repl_chunk->object_list;
3668 getnc_state->num_processed = i;
3670 if (i < getnc_state->num_records) {
3671 r->out.ctr->ctr6.more_data = true;
3674 /* the client can us to call UpdateRefs on its behalf to
3675 re-establish monitoring of the NC */
3676 if ((req10->replica_flags & (DRSUAPI_DRS_ADD_REF | DRSUAPI_DRS_REF_GCSPN)) &&
3677 !GUID_all_zero(&req10->destination_dsa_guid)) {
3678 struct drsuapi_DsReplicaUpdateRefsRequest1 ureq;
3679 DEBUG(3,("UpdateRefs on getncchanges for %s\n",
3680 GUID_string(mem_ctx, &req10->destination_dsa_guid)));
3683 * We pass the pre-validation NC root here as
3684 * drsuapi_UpdateRefs() has to check its own input
3685 * values due to being called from
3686 * dcesrv_drsuapi_DsReplicaUpdateRefs()
3689 ureq.naming_context = untrusted_ncRoot;
3690 ureq.dest_dsa_dns_name = samdb_ntds_msdcs_dns_name(sam_ctx, mem_ctx,
3691 &req10->destination_dsa_guid);
3692 if (!ureq.dest_dsa_dns_name) {
3693 return WERR_NOT_ENOUGH_MEMORY;
3695 ureq.dest_dsa_guid = req10->destination_dsa_guid;
3696 ureq.options = DRSUAPI_DRS_ADD_REF |
3697 DRSUAPI_DRS_ASYNC_OP |
3698 DRSUAPI_DRS_GETCHG_CHECK;
3700 /* we also need to pass through the
3701 DRSUAPI_DRS_REF_GCSPN bit so that repsTo gets flagged
3702 to send notifies using the GC SPN */
3703 ureq.options |= (req10->replica_flags & DRSUAPI_DRS_REF_GCSPN);
3705 werr = drsuapi_UpdateRefs(imsg_ctx,
3706 dce_call->event_ctx,
3707 b_state,
3708 mem_ctx,
3709 &ureq);
3710 if (!W_ERROR_IS_OK(werr)) {
3711 DEBUG(0,(__location__ ": Failed UpdateRefs on %s for %s in DsGetNCChanges - %s\n",
3712 drs_ObjectIdentifier_to_debug_string(mem_ctx, untrusted_ncRoot),
3713 ureq.dest_dsa_dns_name,
3714 win_errstr(werr)));
3719 * Work out how many links we can send in this chunk. The default is to
3720 * send all the links last, but there is a config option to send them
3721 * immediately, in the same chunk as their source object
3723 if (!r->out.ctr->ctr6.more_data || repl_chunk->immediate_link_sync) {
3724 link_count = getncchanges_chunk_links_pending(repl_chunk,
3725 getnc_state);
3726 link_count = MIN(link_count,
3727 getncchanges_chunk_max_links(repl_chunk));
3730 /* If we've got linked attributes to send, add them now */
3731 if (link_count > 0) {
3732 struct la_for_sorting *la_sorted;
3735 * Grab a chunk of linked attributes off the list and put them
3736 * in sorted array, ready to send
3738 werr = getncchanges_get_sorted_array(&getnc_state->la_list[getnc_state->la_idx],
3739 link_count,
3740 sam_ctx, getnc_state,
3741 schema,
3742 &la_sorted);
3743 if (!W_ERROR_IS_OK(werr)) {
3744 return werr;
3747 r->out.ctr->ctr6.linked_attributes_count = link_count;
3748 r->out.ctr->ctr6.linked_attributes = talloc_array(r->out.ctr, struct drsuapi_DsReplicaLinkedAttribute, link_count);
3749 if (r->out.ctr->ctr6.linked_attributes == NULL) {
3750 DEBUG(0, ("Out of memory allocating %u linked attributes for output", link_count));
3751 return WERR_NOT_ENOUGH_MEMORY;
3754 for (k = 0; k < link_count; k++) {
3755 r->out.ctr->ctr6.linked_attributes[k] = *la_sorted[k].link;
3758 getnc_state->la_idx += link_count;
3759 getnc_state->links_given += link_count;
3761 if (getnc_state->la_idx < getnc_state->la_count) {
3762 r->out.ctr->ctr6.more_data = true;
3763 } else {
3766 * We've now sent all the links seen so far, so we can
3767 * reset la_list back to an empty list again. Note that
3768 * the steal means the linked attribute memory gets
3769 * freed after this RPC message is sent on the wire.
3771 talloc_steal(mem_ctx, getnc_state->la_list);
3772 getnc_state->la_list = NULL;
3773 getnc_state->la_idx = 0;
3774 getnc_state->la_count = 0;
3777 TALLOC_FREE(la_sorted);
3780 if (req10->replica_flags & DRSUAPI_DRS_GET_NC_SIZE) {
3782 * TODO: This implementation is wrong
3783 * we should find out the total number of
3784 * objects and links in the whole naming context
3785 * at the start of the cycle and return these
3786 * values in each message.
3788 * For now we keep our current strategy and return
3789 * the number of objects for this cycle and the number
3790 * of links we found so far during the cycle.
3792 r->out.ctr->ctr6.nc_object_count = getnc_state->num_records;
3793 r->out.ctr->ctr6.nc_linked_attributes_count = getnc_state->total_links;
3796 if (req10->extended_op != DRSUAPI_EXOP_NONE) {
3797 r->out.ctr->ctr6.uptodateness_vector = NULL;
3798 r->out.ctr->ctr6.nc_object_count = 0;
3799 ZERO_STRUCT(r->out.ctr->ctr6.new_highwatermark);
3800 } else if (!r->out.ctr->ctr6.more_data) {
3802 /* this is the last response in the replication cycle */
3803 r->out.ctr->ctr6.new_highwatermark = getnc_state->final_hwm;
3804 r->out.ctr->ctr6.uptodateness_vector = talloc_move(mem_ctx,
3805 &getnc_state->final_udv);
3808 * Free the state info stored for the replication cycle. Note
3809 * that the RPC message we're sending contains links stored in
3810 * getnc_state. mem_ctx is local to this RPC call, so the memory
3811 * will get freed after the RPC message is sent on the wire.
3813 * We must not do this for an EXOP, as that should not
3814 * end the replication state, which is why that is
3815 * checked first above.
3817 talloc_steal(mem_ctx, getnc_state);
3818 b_state->getncchanges_full_repl_state = NULL;
3819 } else {
3820 ret = drsuapi_DsReplicaHighWaterMark_cmp(&r->out.ctr->ctr6.old_highwatermark,
3821 &r->out.ctr->ctr6.new_highwatermark);
3822 if (ret == 0) {
3824 * We need to make sure that we never return the
3825 * same highwatermark within the same replication
3826 * cycle more than once. Otherwise we cannot detect
3827 * when the client uses an unexptected highwatermark.
3829 * This is a HACK which is needed because our
3830 * object ordering is wrong and set tmp_highest_usn
3831 * to a value that is higher than what we already
3832 * sent to the client (destination dsa).
3834 r->out.ctr->ctr6.new_highwatermark.reserved_usn += 1;
3837 getnc_state->last_hwm = r->out.ctr->ctr6.new_highwatermark;
3840 TALLOC_FREE(repl_chunk);
3842 DEBUG(r->out.ctr->ctr6.more_data?4:2,
3843 ("DsGetNCChanges with uSNChanged >= %llu flags 0x%08x on %s gave %u objects (done %u/%u) %u links (done %u/%u (as %s))\n",
3844 (unsigned long long)(req10->highwatermark.highest_usn+1),
3845 req10->replica_flags,
3846 drs_ObjectIdentifier_to_debug_string(mem_ctx, untrusted_ncRoot),
3847 r->out.ctr->ctr6.object_count,
3848 i, r->out.ctr->ctr6.more_data?getnc_state->num_records:i,
3849 r->out.ctr->ctr6.linked_attributes_count,
3850 getnc_state->links_given, getnc_state->total_links,
3851 dom_sid_string(mem_ctx, user_sid)));
3853 #if 0
3854 if (!r->out.ctr->ctr6.more_data && req10->extended_op != DRSUAPI_EXOP_NONE) {
3855 NDR_PRINT_FUNCTION_DEBUG(drsuapi_DsGetNCChanges, NDR_BOTH, r);
3857 #endif
3859 return WERR_OK;