dsdb: Ensure to cancel the transaction if we fail to save the prefixMap
[Samba.git] / source4 / dsdb / repl / replicated_objects.c
blob4c8890f055305255a44c3d89be70416a1a5957ef
1 /*
2 Unix SMB/CIFS mplementation.
3 Helper functions for applying replicated objects
5 Copyright (C) Stefan Metzmacher <metze@samba.org> 2007
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>.
22 #include "includes.h"
23 #include "dsdb/samdb/samdb.h"
24 #include <ldb_errors.h>
25 #include "../lib/util/dlinklist.h"
26 #include "librpc/gen_ndr/ndr_misc.h"
27 #include "librpc/gen_ndr/ndr_drsuapi.h"
28 #include "librpc/gen_ndr/ndr_drsblobs.h"
29 #include "../lib/crypto/crypto.h"
30 #include "../libcli/drsuapi/drsuapi.h"
31 #include "libcli/auth/libcli_auth.h"
32 #include "param/param.h"
34 #undef DBGC_CLASS
35 #define DBGC_CLASS DBGC_DRS_REPL
37 static WERROR dsdb_repl_merge_working_schema(struct ldb_context *ldb,
38 struct dsdb_schema *dest_schema,
39 const struct dsdb_schema *ref_schema)
41 const struct dsdb_class *cur_class = NULL;
42 const struct dsdb_attribute *cur_attr = NULL;
43 int ret;
45 for (cur_class = ref_schema->classes;
46 cur_class;
47 cur_class = cur_class->next)
49 const struct dsdb_class *tmp1;
50 struct dsdb_class *tmp2;
52 tmp1 = dsdb_class_by_governsID_id(dest_schema,
53 cur_class->governsID_id);
54 if (tmp1 != NULL) {
55 continue;
59 * Do a shallow copy so that original next and prev are
60 * not modified, we don't need to do a deep copy
61 * as the rest won't be modified and this is for
62 * a short lived object.
64 tmp2 = talloc(dest_schema, struct dsdb_class);
65 if (tmp2 == NULL) {
66 return WERR_NOT_ENOUGH_MEMORY;
68 *tmp2 = *cur_class;
69 DLIST_ADD(dest_schema->classes, tmp2);
72 for (cur_attr = ref_schema->attributes;
73 cur_attr;
74 cur_attr = cur_attr->next)
76 const struct dsdb_attribute *tmp1;
77 struct dsdb_attribute *tmp2;
79 tmp1 = dsdb_attribute_by_attributeID_id(dest_schema,
80 cur_attr->attributeID_id);
81 if (tmp1 != NULL) {
82 continue;
86 * Do a shallow copy so that original next and prev are
87 * not modified, we don't need to do a deep copy
88 * as the rest won't be modified and this is for
89 * a short lived object.
91 tmp2 = talloc(dest_schema, struct dsdb_attribute);
92 if (tmp2 == NULL) {
93 return WERR_NOT_ENOUGH_MEMORY;
95 *tmp2 = *cur_attr;
96 DLIST_ADD(dest_schema->attributes, tmp2);
99 ret = dsdb_setup_sorted_accessors(ldb, dest_schema);
100 if (LDB_SUCCESS != ret) {
101 DEBUG(0,("Failed to add new attribute to reference schema!\n"));
102 return WERR_INTERNAL_ERROR;
105 return WERR_OK;
108 WERROR dsdb_repl_resolve_working_schema(struct ldb_context *ldb,
109 struct dsdb_schema_prefixmap *pfm_remote,
110 uint32_t cycle_before_switching,
111 struct dsdb_schema *initial_schema,
112 struct dsdb_schema *resulting_schema,
113 uint32_t object_count,
114 const struct drsuapi_DsReplicaObjectListItemEx *first_object)
116 struct schema_list {
117 struct schema_list *next, *prev;
118 const struct drsuapi_DsReplicaObjectListItemEx *obj;
120 struct schema_list *schema_list = NULL, *schema_list_item, *schema_list_next_item;
121 WERROR werr;
122 struct dsdb_schema *working_schema;
123 const struct drsuapi_DsReplicaObjectListItemEx *cur;
124 DATA_BLOB empty_key = data_blob_null;
125 int ret, pass_no;
126 uint32_t ignore_attids[] = {
127 DRSUAPI_ATTID_auxiliaryClass,
128 DRSUAPI_ATTID_mayContain,
129 DRSUAPI_ATTID_mustContain,
130 DRSUAPI_ATTID_possSuperiors,
131 DRSUAPI_ATTID_systemPossSuperiors,
132 DRSUAPI_ATTID_INVALID
134 TALLOC_CTX *frame = talloc_stackframe();
136 /* create a list of objects yet to be converted */
137 for (cur = first_object; cur; cur = cur->next_object) {
138 schema_list_item = talloc(frame, struct schema_list);
139 if (schema_list_item == NULL) {
140 return WERR_NOT_ENOUGH_MEMORY;
143 schema_list_item->obj = cur;
144 DLIST_ADD_END(schema_list, schema_list_item);
147 /* resolve objects until all are resolved and in local schema */
148 pass_no = 1;
149 working_schema = initial_schema;
151 while (schema_list) {
152 uint32_t converted_obj_count = 0;
153 uint32_t failed_obj_count = 0;
155 if (resulting_schema != working_schema) {
157 * If the selfmade schema is not the schema used to
158 * translate and validate replicated object,
159 * Which means that we are using the bootstrap schema
160 * Then we add attributes and classes that were already
161 * translated to the working schema, the idea is that
162 * we might need to add new attributes and classes
163 * to be able to translate critical replicated objects
164 * and without that we wouldn't be able to translate them
166 werr = dsdb_repl_merge_working_schema(ldb,
167 working_schema,
168 resulting_schema);
169 if (!W_ERROR_IS_OK(werr)) {
170 talloc_free(frame);
171 return werr;
175 for (schema_list_item = schema_list;
176 schema_list_item;
177 schema_list_item=schema_list_next_item) {
178 struct dsdb_extended_replicated_object object;
180 cur = schema_list_item->obj;
183 * Save the next item, now we have saved out
184 * the current one, so we can DLIST_REMOVE it
185 * safely
187 schema_list_next_item = schema_list_item->next;
190 * Convert the objects into LDB messages using the
191 * schema we have so far. It's ok if we fail to convert
192 * an object. We should convert more objects on next pass.
194 werr = dsdb_convert_object_ex(ldb, working_schema,
195 NULL,
196 pfm_remote,
197 cur, &empty_key,
198 ignore_attids,
200 schema_list_item, &object);
201 if (!W_ERROR_IS_OK(werr)) {
202 DEBUG(4,("debug: Failed to convert schema "
203 "object %s into ldb msg, "
204 "will try during next loop\n",
205 cur->object.identifier->dn));
207 failed_obj_count++;
208 } else {
210 * Convert the schema from ldb_message format
211 * (OIDs as OID strings) into schema, using
212 * the remote prefixMap
214 * It's not likely, but possible to get the
215 * same object twice and we should keep
216 * the last instance.
218 werr = dsdb_schema_set_el_from_ldb_msg_dups(ldb,
219 resulting_schema,
220 object.msg,
221 true);
222 if (!W_ERROR_IS_OK(werr)) {
223 DEBUG(4,("debug: failed to convert "
224 "object %s into a schema element, "
225 "will try during next loop: %s\n",
226 ldb_dn_get_linearized(object.msg->dn),
227 win_errstr(werr)));
228 failed_obj_count++;
229 } else {
230 DEBUG(8,("Converted object %s into a schema element\n",
231 ldb_dn_get_linearized(object.msg->dn)));
232 DLIST_REMOVE(schema_list, schema_list_item);
233 TALLOC_FREE(schema_list_item);
234 converted_obj_count++;
239 DEBUG(4,("Schema load pass %d: converted %d, %d of %d objects left to be converted.\n",
240 pass_no, converted_obj_count, failed_obj_count, object_count));
242 /* check if we converted any objects in this pass */
243 if (converted_obj_count == 0) {
244 DEBUG(0,("Can't continue Schema load: "
245 "didn't manage to convert any objects: "
246 "all %d remaining of %d objects "
247 "failed to convert\n",
248 failed_obj_count, object_count));
249 talloc_free(frame);
250 return WERR_INTERNAL_ERROR;
254 * Don't try to load the schema if there is missing object
255 * _and_ we are on the first pass as some critical objects
256 * might be missing.
258 if (failed_obj_count == 0 || pass_no > cycle_before_switching) {
259 /* prepare for another cycle */
260 working_schema = resulting_schema;
262 ret = dsdb_setup_sorted_accessors(ldb, working_schema);
263 if (LDB_SUCCESS != ret) {
264 DEBUG(0,("Failed to create schema-cache indexes!\n"));
265 talloc_free(frame);
266 return WERR_INTERNAL_ERROR;
269 pass_no++;
272 talloc_free(frame);
273 return WERR_OK;
277 * Multi-pass working schema creation
278 * Function will:
279 * - shallow copy initial schema supplied
280 * - create a working schema in multiple passes
281 * until all objects are resolved
282 * Working schema is a schema with Attributes, Classes
283 * and indexes, but w/o subClassOf, possibleSupperiors etc.
284 * It is to be used just us cache for converting attribute values.
286 WERROR dsdb_repl_make_working_schema(struct ldb_context *ldb,
287 const struct dsdb_schema *initial_schema,
288 const struct drsuapi_DsReplicaOIDMapping_Ctr *mapping_ctr,
289 uint32_t object_count,
290 const struct drsuapi_DsReplicaObjectListItemEx *first_object,
291 const DATA_BLOB *gensec_skey,
292 TALLOC_CTX *mem_ctx,
293 struct dsdb_schema **_schema_out)
295 WERROR werr;
296 struct dsdb_schema_prefixmap *pfm_remote;
297 uint32_t r;
298 struct dsdb_schema *working_schema;
300 /* make a copy of the iniatial_scheam so we don't mess with it */
301 working_schema = dsdb_schema_copy_shallow(mem_ctx, ldb, initial_schema);
302 if (!working_schema) {
303 DEBUG(0,(__location__ ": schema copy failed!\n"));
304 return WERR_NOT_ENOUGH_MEMORY;
306 working_schema->resolving_in_progress = true;
308 /* we are going to need remote prefixMap for decoding */
309 werr = dsdb_schema_pfm_from_drsuapi_pfm(mapping_ctr, true,
310 working_schema, &pfm_remote, NULL);
311 if (!W_ERROR_IS_OK(werr)) {
312 DEBUG(0,(__location__ ": Failed to decode remote prefixMap: %s\n",
313 win_errstr(werr)));
314 talloc_free(working_schema);
315 return werr;
318 for (r=0; r < pfm_remote->length; r++) {
319 const struct dsdb_schema_prefixmap_oid *rm = &pfm_remote->prefixes[r];
320 bool found_oid = false;
321 uint32_t l;
323 for (l=0; l < working_schema->prefixmap->length; l++) {
324 const struct dsdb_schema_prefixmap_oid *lm = &working_schema->prefixmap->prefixes[l];
325 int cmp;
327 cmp = data_blob_cmp(&rm->bin_oid, &lm->bin_oid);
328 if (cmp == 0) {
329 found_oid = true;
330 break;
334 if (found_oid) {
335 continue;
339 * We prefer the same is as we got from the remote peer
340 * if there's no conflict.
342 werr = dsdb_schema_pfm_add_entry(working_schema->prefixmap,
343 rm->bin_oid, &rm->id, NULL);
344 if (!W_ERROR_IS_OK(werr)) {
345 DEBUG(0,(__location__ ": Failed to merge remote prefixMap: %s",
346 win_errstr(werr)));
347 talloc_free(working_schema);
348 return werr;
352 werr = dsdb_repl_resolve_working_schema(ldb,
353 pfm_remote,
354 0, /* cycle_before_switching */
355 working_schema,
356 working_schema,
357 object_count,
358 first_object);
359 if (!W_ERROR_IS_OK(werr)) {
360 DEBUG(0, ("%s: dsdb_repl_resolve_working_schema() failed: %s",
361 __location__, win_errstr(werr)));
362 talloc_free(working_schema);
363 return werr;
366 working_schema->resolving_in_progress = false;
368 *_schema_out = working_schema;
370 return WERR_OK;
373 static bool dsdb_attid_in_list(const uint32_t attid_list[], uint32_t attid)
375 const uint32_t *cur;
376 if (!attid_list) {
377 return false;
379 for (cur = attid_list; *cur != DRSUAPI_ATTID_INVALID; cur++) {
380 if (*cur == attid) {
381 return true;
384 return false;
387 WERROR dsdb_convert_object_ex(struct ldb_context *ldb,
388 const struct dsdb_schema *schema,
389 struct ldb_dn *partition_dn,
390 const struct dsdb_schema_prefixmap *pfm_remote,
391 const struct drsuapi_DsReplicaObjectListItemEx *in,
392 const DATA_BLOB *gensec_skey,
393 const uint32_t *ignore_attids,
394 uint32_t dsdb_repl_flags,
395 TALLOC_CTX *mem_ctx,
396 struct dsdb_extended_replicated_object *out)
398 WERROR status = WERR_OK;
399 uint32_t i;
400 struct ldb_message *msg;
401 struct replPropertyMetaDataBlob *md;
402 int instanceType;
403 struct ldb_message_element *instanceType_e = NULL;
404 NTTIME whenChanged = 0;
405 time_t whenChanged_t;
406 const char *whenChanged_s;
407 struct dom_sid *sid = NULL;
408 uint32_t rid = 0;
409 uint32_t attr_count;
411 if (!in->object.identifier) {
412 return WERR_FOOBAR;
415 if (!in->object.identifier->dn || !in->object.identifier->dn[0]) {
416 return WERR_FOOBAR;
419 if (in->object.attribute_ctr.num_attributes != 0 && !in->meta_data_ctr) {
420 return WERR_FOOBAR;
423 if (in->object.attribute_ctr.num_attributes != in->meta_data_ctr->count) {
424 return WERR_FOOBAR;
427 sid = &in->object.identifier->sid;
428 if (sid->num_auths > 0) {
429 rid = sid->sub_auths[sid->num_auths - 1];
432 msg = ldb_msg_new(mem_ctx);
433 W_ERROR_HAVE_NO_MEMORY(msg);
435 msg->dn = ldb_dn_new(msg, ldb, in->object.identifier->dn);
436 W_ERROR_HAVE_NO_MEMORY(msg->dn);
438 msg->num_elements = in->object.attribute_ctr.num_attributes;
439 msg->elements = talloc_array(msg, struct ldb_message_element,
440 msg->num_elements);
441 W_ERROR_HAVE_NO_MEMORY(msg->elements);
443 md = talloc(mem_ctx, struct replPropertyMetaDataBlob);
444 W_ERROR_HAVE_NO_MEMORY(md);
446 md->version = 1;
447 md->reserved = 0;
448 md->ctr.ctr1.count = in->meta_data_ctr->count;
449 md->ctr.ctr1.reserved = 0;
450 md->ctr.ctr1.array = talloc_array(mem_ctx,
451 struct replPropertyMetaData1,
452 md->ctr.ctr1.count);
453 W_ERROR_HAVE_NO_MEMORY(md->ctr.ctr1.array);
455 for (i=0, attr_count=0; i < in->meta_data_ctr->count; i++, attr_count++) {
456 struct drsuapi_DsReplicaAttribute *a;
457 struct drsuapi_DsReplicaMetaData *d;
458 struct replPropertyMetaData1 *m;
459 struct ldb_message_element *e;
460 uint32_t j;
462 a = &in->object.attribute_ctr.attributes[i];
463 d = &in->meta_data_ctr->meta_data[i];
464 m = &md->ctr.ctr1.array[attr_count];
465 e = &msg->elements[attr_count];
467 if (dsdb_attid_in_list(ignore_attids, a->attid)) {
468 attr_count--;
469 continue;
472 if (GUID_all_zero(&d->originating_invocation_id)) {
473 status = WERR_DS_SRC_GUID_MISMATCH;
474 DEBUG(0, ("Refusing replication of object containing invalid zero invocationID on attribute %d of %s: %s\n",
475 a->attid,
476 ldb_dn_get_linearized(msg->dn),
477 win_errstr(status)));
478 return status;
481 if (a->attid == DRSUAPI_ATTID_instanceType) {
482 if (instanceType_e != NULL) {
483 return WERR_FOOBAR;
485 instanceType_e = e;
488 for (j=0; j<a->value_ctr.num_values; j++) {
489 status = drsuapi_decrypt_attribute(a->value_ctr.values[j].blob,
490 gensec_skey, rid,
491 dsdb_repl_flags, a);
492 if (!W_ERROR_IS_OK(status)) {
493 break;
496 if (W_ERROR_EQUAL(status, WERR_TOO_MANY_SECRETS)) {
497 WERROR get_name_status = dsdb_attribute_drsuapi_to_ldb(ldb, schema, pfm_remote,
498 a, msg->elements, e, NULL);
499 if (W_ERROR_IS_OK(get_name_status)) {
500 DEBUG(0, ("Unxpectedly got secret value %s on %s from DRS server\n",
501 e->name, ldb_dn_get_linearized(msg->dn)));
502 } else {
503 DEBUG(0, ("Unxpectedly got secret value on %s from DRS server",
504 ldb_dn_get_linearized(msg->dn)));
506 } else if (!W_ERROR_IS_OK(status)) {
507 return status;
511 * This function also fills in the local attid value,
512 * based on comparing the remote and local prefixMap
513 * tables. If we don't convert the value, then we can
514 * have invalid values in the replPropertyMetaData we
515 * store on disk, as the prefixMap is per host, not
516 * per-domain. This may be why Microsoft added the
517 * msDS-IntID feature, however this is not used for
518 * extra attributes in the schema partition itself.
520 status = dsdb_attribute_drsuapi_to_ldb(ldb, schema, pfm_remote,
521 a, msg->elements, e,
522 &m->attid);
523 W_ERROR_NOT_OK_RETURN(status);
525 m->version = d->version;
526 m->originating_change_time = d->originating_change_time;
527 m->originating_invocation_id = d->originating_invocation_id;
528 m->originating_usn = d->originating_usn;
529 m->local_usn = 0;
531 if (a->attid == DRSUAPI_ATTID_name) {
532 const struct ldb_val *rdn_val = ldb_dn_get_rdn_val(msg->dn);
533 if (rdn_val == NULL) {
534 DEBUG(0, ("Unxpectedly unable to get RDN from %s for validation",
535 ldb_dn_get_linearized(msg->dn)));
536 return WERR_FOOBAR;
538 if (e->num_values != 1) {
539 DEBUG(0, ("Unxpectedly got wrong number of attribute values (got %u, expected 1) when checking RDN against name of %s",
540 e->num_values,
541 ldb_dn_get_linearized(msg->dn)));
542 return WERR_FOOBAR;
544 if (data_blob_cmp(rdn_val,
545 &e->values[0]) != 0) {
546 DEBUG(0, ("Unxpectedly got mismatching RDN values when checking RDN against name of %s",
547 ldb_dn_get_linearized(msg->dn)));
548 return WERR_FOOBAR;
551 if (d->originating_change_time > whenChanged) {
552 whenChanged = d->originating_change_time;
557 msg->num_elements = attr_count;
558 md->ctr.ctr1.count = attr_count;
560 if (instanceType_e == NULL) {
561 return WERR_FOOBAR;
564 instanceType = ldb_msg_find_attr_as_int(msg, "instanceType", 0);
566 if ((instanceType & INSTANCE_TYPE_IS_NC_HEAD)
567 && partition_dn != NULL) {
568 int partition_dn_cmp = ldb_dn_compare(partition_dn, msg->dn);
569 if (partition_dn_cmp != 0) {
570 DEBUG(4, ("Remote server advised us of a new partition %s while processing %s, ignoring\n",
571 ldb_dn_get_linearized(msg->dn),
572 ldb_dn_get_linearized(partition_dn)));
573 return WERR_DS_ADD_REPLICA_INHIBITED;
577 if (dsdb_repl_flags & DSDB_REPL_FLAG_PARTIAL_REPLICA) {
578 /* the instanceType type for partial_replica
579 replication is sent via DRS with TYPE_WRITE set, but
580 must be used on the client with TYPE_WRITE removed
582 if (instanceType & INSTANCE_TYPE_WRITE) {
584 * Make sure we do not change the order
585 * of msg->elements!
587 * That's why we use
588 * instanceType_e->num_values = 0
589 * instead of
590 * ldb_msg_remove_attr(msg, "instanceType");
592 struct ldb_message_element *e;
594 e = ldb_msg_find_element(msg, "instanceType");
595 if (e != instanceType_e) {
596 DEBUG(0,("instanceType_e[%p] changed to e[%p]\n",
597 instanceType_e, e));
598 return WERR_FOOBAR;
601 instanceType_e->num_values = 0;
603 instanceType &= ~INSTANCE_TYPE_WRITE;
604 if (ldb_msg_add_fmt(msg, "instanceType", "%d", instanceType) != LDB_SUCCESS) {
605 return WERR_INTERNAL_ERROR;
608 } else {
609 if (!(instanceType & INSTANCE_TYPE_WRITE)) {
610 DEBUG(0, ("Refusing to replicate %s from a read-only repilca into a read-write replica!\n",
611 ldb_dn_get_linearized(msg->dn)));
612 return WERR_DS_DRA_SOURCE_IS_PARTIAL_REPLICA;
616 whenChanged_t = nt_time_to_unix(whenChanged);
617 whenChanged_s = ldb_timestring(msg, whenChanged_t);
618 W_ERROR_HAVE_NO_MEMORY(whenChanged_s);
620 out->object_guid = in->object.identifier->guid;
622 if (in->parent_object_guid == NULL) {
623 out->parent_guid = NULL;
624 } else {
625 out->parent_guid = talloc(mem_ctx, struct GUID);
626 W_ERROR_HAVE_NO_MEMORY(out->parent_guid);
627 *out->parent_guid = *in->parent_object_guid;
630 out->msg = msg;
631 out->when_changed = whenChanged_s;
632 out->meta_data = md;
633 return WERR_OK;
636 WERROR dsdb_replicated_objects_convert(struct ldb_context *ldb,
637 const struct dsdb_schema *schema,
638 struct ldb_dn *partition_dn,
639 const struct drsuapi_DsReplicaOIDMapping_Ctr *mapping_ctr,
640 uint32_t object_count,
641 const struct drsuapi_DsReplicaObjectListItemEx *first_object,
642 uint32_t linked_attributes_count,
643 const struct drsuapi_DsReplicaLinkedAttribute *linked_attributes,
644 const struct repsFromTo1 *source_dsa,
645 const struct drsuapi_DsReplicaCursor2CtrEx *uptodateness_vector,
646 const DATA_BLOB *gensec_skey,
647 uint32_t dsdb_repl_flags,
648 TALLOC_CTX *mem_ctx,
649 struct dsdb_extended_replicated_objects **objects)
651 WERROR status;
652 struct dsdb_schema_prefixmap *pfm_remote;
653 struct dsdb_extended_replicated_objects *out;
654 const struct drsuapi_DsReplicaObjectListItemEx *cur;
655 struct dsdb_syntax_ctx syntax_ctx;
656 uint32_t i;
658 out = talloc_zero(mem_ctx, struct dsdb_extended_replicated_objects);
659 W_ERROR_HAVE_NO_MEMORY(out);
660 out->version = DSDB_EXTENDED_REPLICATED_OBJECTS_VERSION;
661 out->dsdb_repl_flags = dsdb_repl_flags;
664 * Ensure schema is kept valid for as long as 'out'
665 * which may contain pointers to it
667 schema = talloc_reference(out, schema);
668 W_ERROR_HAVE_NO_MEMORY(schema);
670 status = dsdb_schema_pfm_from_drsuapi_pfm(mapping_ctr, true,
671 out, &pfm_remote, NULL);
672 if (!W_ERROR_IS_OK(status)) {
673 DEBUG(0,(__location__ ": Failed to decode remote prefixMap: %s\n",
674 win_errstr(status)));
675 talloc_free(out);
676 return status;
679 /* use default syntax conversion context */
680 dsdb_syntax_ctx_init(&syntax_ctx, ldb, schema);
681 syntax_ctx.pfm_remote = pfm_remote;
683 if (ldb_dn_compare(partition_dn, ldb_get_schema_basedn(ldb)) != 0) {
685 * check for schema changes in case
686 * we are not replicating Schema NC
688 status = dsdb_schema_info_cmp(schema, mapping_ctr);
689 if (!W_ERROR_IS_OK(status)) {
690 DEBUG(4,("Can't replicate %s because remote schema has changed since we last replicated the schema\n",
691 ldb_dn_get_linearized(partition_dn)));
692 talloc_free(out);
693 return status;
697 out->partition_dn = partition_dn;
699 out->source_dsa = source_dsa;
700 out->uptodateness_vector= uptodateness_vector;
702 out->num_objects = 0;
703 out->objects = talloc_array(out,
704 struct dsdb_extended_replicated_object,
705 object_count);
706 W_ERROR_HAVE_NO_MEMORY_AND_FREE(out->objects, out);
708 for (i=0, cur = first_object; cur; cur = cur->next_object, i++) {
709 if (i == object_count) {
710 talloc_free(out);
711 return WERR_FOOBAR;
714 status = dsdb_convert_object_ex(ldb, schema, out->partition_dn,
715 pfm_remote,
716 cur, gensec_skey,
717 NULL,
718 dsdb_repl_flags,
719 out->objects,
720 &out->objects[out->num_objects]);
723 * Check to see if we have been advised of a
724 * subdomain or new application partition. We don't
725 * want to start on that here, instead the caller
726 * should consider if it would like to replicate it
727 * based on the cross-ref object.
729 if (W_ERROR_EQUAL(status, WERR_DS_ADD_REPLICA_INHIBITED)) {
730 continue;
733 if (!W_ERROR_IS_OK(status)) {
734 talloc_free(out);
735 DEBUG(0,("Failed to convert object %s: %s\n",
736 cur->object.identifier->dn,
737 win_errstr(status)));
738 return status;
741 /* Assuming we didn't skip or error, increment the number of objects */
742 out->num_objects++;
744 out->objects = talloc_realloc(out, out->objects,
745 struct dsdb_extended_replicated_object,
746 out->num_objects);
747 if (out->num_objects != 0 && out->objects == NULL) {
748 talloc_free(out);
749 return WERR_FOOBAR;
751 if (i != object_count) {
752 talloc_free(out);
753 return WERR_FOOBAR;
756 out->linked_attributes = talloc_array(out,
757 struct drsuapi_DsReplicaLinkedAttribute,
758 linked_attributes_count);
759 W_ERROR_HAVE_NO_MEMORY_AND_FREE(out->linked_attributes, out);
761 for (i=0; i < linked_attributes_count; i++) {
762 const struct drsuapi_DsReplicaLinkedAttribute *ra = &linked_attributes[i];
763 struct drsuapi_DsReplicaLinkedAttribute *la = &out->linked_attributes[i];
765 if (ra->identifier == NULL) {
766 talloc_free(out);
767 return WERR_BAD_NET_RESP;
770 *la = *ra;
772 la->identifier = talloc_zero(out->linked_attributes,
773 struct drsuapi_DsReplicaObjectIdentifier);
774 W_ERROR_HAVE_NO_MEMORY_AND_FREE(la->identifier, out);
777 * We typically only get the guid filled
778 * and the repl_meta_data module only cares abouf
779 * the guid.
781 la->identifier->guid = ra->identifier->guid;
783 if (ra->value.blob != NULL) {
784 la->value.blob = talloc_zero(out->linked_attributes,
785 DATA_BLOB);
786 W_ERROR_HAVE_NO_MEMORY_AND_FREE(la->value.blob, out);
788 if (ra->value.blob->length != 0) {
789 *la->value.blob = data_blob_dup_talloc(la->value.blob,
790 *ra->value.blob);
791 W_ERROR_HAVE_NO_MEMORY_AND_FREE(la->value.blob->data, out);
795 status = dsdb_attribute_drsuapi_remote_to_local(&syntax_ctx,
796 ra->attid,
797 &la->attid,
798 NULL);
799 if (!W_ERROR_IS_OK(status)) {
800 DEBUG(0,(__location__": linked_attribute[%u] attid 0x%08X not found: %s\n",
801 i, ra->attid, win_errstr(status)));
802 return status;
806 out->linked_attributes_count = linked_attributes_count;
808 /* free pfm_remote, we won't need it anymore */
809 talloc_free(pfm_remote);
811 *objects = out;
812 return WERR_OK;
816 * Commits a list of replicated objects.
818 * @param working_schema dsdb_schema to be used for resolving
819 * Classes/Attributes during Schema replication. If not NULL,
820 * it will be set on ldb and used while committing replicated objects
822 WERROR dsdb_replicated_objects_commit(struct ldb_context *ldb,
823 struct dsdb_schema *working_schema,
824 struct dsdb_extended_replicated_objects *objects,
825 uint64_t *notify_uSN)
827 WERROR werr;
828 struct ldb_result *ext_res;
829 struct dsdb_schema *cur_schema = NULL;
830 struct dsdb_schema *new_schema = NULL;
831 int ret;
832 uint64_t seq_num1, seq_num2;
833 bool used_global_schema = false;
835 TALLOC_CTX *tmp_ctx = talloc_new(objects);
836 if (!tmp_ctx) {
837 DEBUG(0,("Failed to start talloc\n"));
838 return WERR_NOT_ENOUGH_MEMORY;
841 /* wrap the extended operation in a transaction
842 See [MS-DRSR] 3.3.2 Transactions
844 ret = ldb_transaction_start(ldb);
845 if (ret != LDB_SUCCESS) {
846 DEBUG(0,(__location__ " Failed to start transaction: %s\n",
847 ldb_errstring(ldb)));
848 return WERR_FOOBAR;
851 ret = dsdb_load_partition_usn(ldb, objects->partition_dn, &seq_num1, NULL);
852 if (ret != LDB_SUCCESS) {
853 DEBUG(0,(__location__ " Failed to load partition uSN\n"));
854 ldb_transaction_cancel(ldb);
855 TALLOC_FREE(tmp_ctx);
856 return WERR_FOOBAR;
860 * Set working_schema for ldb in case we are replicating from Schema NC.
861 * Schema won't be reloaded during Replicated Objects commit, as it is
862 * done in a transaction. So we need some way to search for newly
863 * added Classes and Attributes
865 if (working_schema) {
866 /* store current schema so we can fall back in case of failure */
867 cur_schema = dsdb_get_schema(ldb, tmp_ctx);
868 used_global_schema = dsdb_uses_global_schema(ldb);
870 ret = dsdb_reference_schema(ldb, working_schema, SCHEMA_MEMORY_ONLY);
871 if (ret != LDB_SUCCESS) {
872 DEBUG(0,(__location__ "Failed to reference working schema - %s\n",
873 ldb_strerror(ret)));
874 /* TODO: Map LDB Error to NTSTATUS? */
875 ldb_transaction_cancel(ldb);
876 TALLOC_FREE(tmp_ctx);
877 return WERR_INTERNAL_ERROR;
881 ret = ldb_extended(ldb, DSDB_EXTENDED_REPLICATED_OBJECTS_OID, objects, &ext_res);
882 if (ret != LDB_SUCCESS) {
883 /* restore previous schema */
884 if (used_global_schema) {
885 dsdb_set_global_schema(ldb);
886 } else if (cur_schema) {
887 dsdb_reference_schema(ldb, cur_schema, SCHEMA_MEMORY_ONLY);
890 if (W_ERROR_EQUAL(objects->error, WERR_DS_DRA_RECYCLED_TARGET)) {
891 DEBUG(3,("Missing target while attempting to apply records: %s\n",
892 ldb_errstring(ldb)));
893 } else if (W_ERROR_EQUAL(objects->error, WERR_DS_DRA_MISSING_PARENT)) {
894 DEBUG(3,("Missing parent while attempting to apply records: %s\n",
895 ldb_errstring(ldb)));
896 } else {
897 DEBUG(1,("Failed to apply records: %s: %s\n",
898 ldb_errstring(ldb), ldb_strerror(ret)));
900 ldb_transaction_cancel(ldb);
901 TALLOC_FREE(tmp_ctx);
903 if (!W_ERROR_IS_OK(objects->error)) {
904 return objects->error;
906 return WERR_FOOBAR;
908 talloc_free(ext_res);
910 /* Save our updated prefixMap */
911 if (working_schema) {
912 werr = dsdb_write_prefixes_from_schema_to_ldb(working_schema,
913 ldb,
914 working_schema);
915 if (!W_ERROR_IS_OK(werr)) {
916 /* restore previous schema */
917 if (used_global_schema) {
918 dsdb_set_global_schema(ldb);
919 } else if (cur_schema ) {
920 dsdb_reference_schema(ldb, cur_schema, SCHEMA_MEMORY_ONLY);
922 DEBUG(0,("Failed to save updated prefixMap: %s\n",
923 win_errstr(werr)));
924 ldb_transaction_cancel(ldb);
925 TALLOC_FREE(tmp_ctx);
926 return werr;
930 ret = ldb_transaction_prepare_commit(ldb);
931 if (ret != LDB_SUCCESS) {
932 /* restore previous schema */
933 if (used_global_schema) {
934 dsdb_set_global_schema(ldb);
935 } else if (cur_schema ) {
936 dsdb_reference_schema(ldb, cur_schema, SCHEMA_MEMORY_ONLY);
938 DEBUG(0,(__location__ " Failed to prepare commit of transaction: %s\n",
939 ldb_errstring(ldb)));
940 TALLOC_FREE(tmp_ctx);
941 return WERR_FOOBAR;
944 ret = dsdb_load_partition_usn(ldb, objects->partition_dn, &seq_num2, NULL);
945 if (ret != LDB_SUCCESS) {
946 /* restore previous schema */
947 if (used_global_schema) {
948 dsdb_set_global_schema(ldb);
949 } else if (cur_schema ) {
950 dsdb_reference_schema(ldb, cur_schema, SCHEMA_MEMORY_ONLY);
952 DEBUG(0,(__location__ " Failed to load partition uSN\n"));
953 ldb_transaction_cancel(ldb);
954 TALLOC_FREE(tmp_ctx);
955 return WERR_FOOBAR;
958 ret = ldb_transaction_commit(ldb);
959 if (ret != LDB_SUCCESS) {
960 /* restore previous schema */
961 if (used_global_schema) {
962 dsdb_set_global_schema(ldb);
963 } else if (cur_schema ) {
964 dsdb_reference_schema(ldb, cur_schema, SCHEMA_MEMORY_ONLY);
966 DEBUG(0,(__location__ " Failed to commit transaction\n"));
967 TALLOC_FREE(tmp_ctx);
968 return WERR_FOOBAR;
971 if (seq_num1 > *notify_uSN) {
973 * A notify was already required before
974 * the current transaction.
976 } else if (objects->originating_updates) {
978 * Applying the replicated changes
979 * required originating updates,
980 * so a notify is required.
982 } else {
984 * There's no need to notify the
985 * server about the change we just from it.
987 *notify_uSN = seq_num2;
991 * Reset the Schema used by ldb. This will lead to
992 * a schema cache being refreshed from database.
994 if (working_schema) {
995 /* Reload the schema */
996 new_schema = dsdb_get_schema(ldb, tmp_ctx);
997 /* TODO:
998 * If dsdb_get_schema() fails, we just fall back
999 * to what we had. However, the database is probably
1000 * unable to operate for other users from this
1001 * point... */
1002 if (new_schema == NULL || new_schema == working_schema) {
1003 DBG_ERR("Failed to re-load schema after commit of "
1004 "transaction (working: %p/%"PRIu64", new: "
1005 "%p/%"PRIu64")\n", new_schema,
1006 new_schema != NULL ?
1007 new_schema->metadata_usn : 0,
1008 working_schema, working_schema->metadata_usn);
1009 dsdb_reference_schema(ldb, cur_schema, SCHEMA_MEMORY_ONLY);
1010 if (used_global_schema) {
1011 dsdb_set_global_schema(ldb);
1013 TALLOC_FREE(tmp_ctx);
1014 return WERR_INTERNAL_ERROR;
1015 } else if (used_global_schema) {
1016 dsdb_make_schema_global(ldb, new_schema);
1020 DEBUG(2,("Replicated %u objects (%u linked attributes) for %s\n",
1021 objects->num_objects, objects->linked_attributes_count,
1022 ldb_dn_get_linearized(objects->partition_dn)));
1024 TALLOC_FREE(tmp_ctx);
1025 return WERR_OK;
1028 static WERROR dsdb_origin_object_convert(struct ldb_context *ldb,
1029 const struct dsdb_schema *schema,
1030 const struct drsuapi_DsReplicaObjectListItem *in,
1031 TALLOC_CTX *mem_ctx,
1032 struct ldb_message **_msg)
1034 WERROR status;
1035 unsigned int i;
1036 struct ldb_message *msg;
1038 if (!in->object.identifier) {
1039 return WERR_FOOBAR;
1042 if (!in->object.identifier->dn || !in->object.identifier->dn[0]) {
1043 return WERR_FOOBAR;
1046 msg = ldb_msg_new(mem_ctx);
1047 W_ERROR_HAVE_NO_MEMORY(msg);
1049 msg->dn = ldb_dn_new(msg, ldb, in->object.identifier->dn);
1050 W_ERROR_HAVE_NO_MEMORY(msg->dn);
1052 msg->num_elements = in->object.attribute_ctr.num_attributes;
1053 msg->elements = talloc_array(msg, struct ldb_message_element,
1054 msg->num_elements);
1055 W_ERROR_HAVE_NO_MEMORY(msg->elements);
1057 for (i=0; i < msg->num_elements; i++) {
1058 struct drsuapi_DsReplicaAttribute *a;
1059 struct ldb_message_element *e;
1061 a = &in->object.attribute_ctr.attributes[i];
1062 e = &msg->elements[i];
1064 status = dsdb_attribute_drsuapi_to_ldb(ldb, schema, schema->prefixmap,
1065 a, msg->elements, e, NULL);
1066 W_ERROR_NOT_OK_RETURN(status);
1070 *_msg = msg;
1072 return WERR_OK;
1075 WERROR dsdb_origin_objects_commit(struct ldb_context *ldb,
1076 TALLOC_CTX *mem_ctx,
1077 const struct drsuapi_DsReplicaObjectListItem *first_object,
1078 uint32_t *_num,
1079 uint32_t dsdb_repl_flags,
1080 struct drsuapi_DsReplicaObjectIdentifier2 **_ids)
1082 WERROR status;
1083 const struct dsdb_schema *schema;
1084 const struct drsuapi_DsReplicaObjectListItem *cur;
1085 struct ldb_message **objects;
1086 struct drsuapi_DsReplicaObjectIdentifier2 *ids;
1087 uint32_t i;
1088 uint32_t num_objects = 0;
1089 const char * const attrs[] = {
1090 "objectGUID",
1091 "objectSid",
1092 NULL
1094 struct ldb_result *res;
1095 int ret;
1097 for (cur = first_object; cur; cur = cur->next_object) {
1098 num_objects++;
1101 if (num_objects == 0) {
1102 return WERR_OK;
1105 ret = ldb_transaction_start(ldb);
1106 if (ret != LDB_SUCCESS) {
1107 return WERR_DS_INTERNAL_FAILURE;
1110 objects = talloc_array(mem_ctx, struct ldb_message *,
1111 num_objects);
1112 if (objects == NULL) {
1113 status = WERR_NOT_ENOUGH_MEMORY;
1114 goto cancel;
1117 schema = dsdb_get_schema(ldb, objects);
1118 if (!schema) {
1119 return WERR_DS_SCHEMA_NOT_LOADED;
1122 for (i=0, cur = first_object; cur; cur = cur->next_object, i++) {
1123 status = dsdb_origin_object_convert(ldb, schema, cur,
1124 objects, &objects[i]);
1125 if (!W_ERROR_IS_OK(status)) {
1126 goto cancel;
1130 ids = talloc_array(mem_ctx,
1131 struct drsuapi_DsReplicaObjectIdentifier2,
1132 num_objects);
1133 if (ids == NULL) {
1134 status = WERR_NOT_ENOUGH_MEMORY;
1135 goto cancel;
1138 if (dsdb_repl_flags & DSDB_REPL_FLAG_ADD_NCNAME) {
1139 /* check for possible NC creation */
1140 for (i=0; i < num_objects; i++) {
1141 struct ldb_message *msg = objects[i];
1142 struct ldb_message_element *el;
1143 struct ldb_dn *nc_dn;
1145 if (ldb_msg_check_string_attribute(msg, "objectClass", "crossRef") == 0) {
1146 continue;
1148 el = ldb_msg_find_element(msg, "nCName");
1149 if (el == NULL || el->num_values != 1) {
1150 continue;
1152 nc_dn = ldb_dn_from_ldb_val(objects, ldb, &el->values[0]);
1153 if (!ldb_dn_validate(nc_dn)) {
1154 continue;
1156 ret = dsdb_create_partial_replica_NC(ldb, nc_dn);
1157 if (ret != LDB_SUCCESS) {
1158 status = WERR_DS_INTERNAL_FAILURE;
1159 goto cancel;
1164 for (i=0; i < num_objects; i++) {
1165 struct dom_sid *sid = NULL;
1166 struct ldb_request *add_req;
1168 DEBUG(6,(__location__ ": adding %s\n",
1169 ldb_dn_get_linearized(objects[i]->dn)));
1171 ret = ldb_build_add_req(&add_req,
1172 ldb,
1173 objects,
1174 objects[i],
1175 NULL,
1176 NULL,
1177 ldb_op_default_callback,
1178 NULL);
1179 if (ret != LDB_SUCCESS) {
1180 status = WERR_DS_INTERNAL_FAILURE;
1181 goto cancel;
1184 ret = ldb_request_add_control(add_req, LDB_CONTROL_RELAX_OID, true, NULL);
1185 if (ret != LDB_SUCCESS) {
1186 status = WERR_DS_INTERNAL_FAILURE;
1187 goto cancel;
1190 ret = ldb_request(ldb, add_req);
1191 if (ret == LDB_SUCCESS) {
1192 ret = ldb_wait(add_req->handle, LDB_WAIT_ALL);
1194 if (ret != LDB_SUCCESS) {
1195 DEBUG(0,(__location__ ": Failed add of %s - %s\n",
1196 ldb_dn_get_linearized(objects[i]->dn), ldb_errstring(ldb)));
1197 status = WERR_DS_INTERNAL_FAILURE;
1198 goto cancel;
1201 talloc_free(add_req);
1203 ret = ldb_search(ldb, objects, &res, objects[i]->dn,
1204 LDB_SCOPE_BASE, attrs,
1205 "(objectClass=*)");
1206 if (ret != LDB_SUCCESS) {
1207 status = WERR_DS_INTERNAL_FAILURE;
1208 goto cancel;
1210 ids[i].guid = samdb_result_guid(res->msgs[0], "objectGUID");
1211 sid = samdb_result_dom_sid(objects, res->msgs[0], "objectSid");
1212 if (sid) {
1213 ids[i].sid = *sid;
1214 } else {
1215 ZERO_STRUCT(ids[i].sid);
1219 ret = ldb_transaction_commit(ldb);
1220 if (ret != LDB_SUCCESS) {
1221 return WERR_DS_INTERNAL_FAILURE;
1224 talloc_free(objects);
1226 *_num = num_objects;
1227 *_ids = ids;
1228 return WERR_OK;
1230 cancel:
1231 talloc_free(objects);
1232 ldb_transaction_cancel(ldb);
1233 return status;