s4:dsdb/schema: fix dsdb_schema_set_el_from_ldb_msg() (bug #9470)
[Samba/gebeck_regimport.git] / source4 / dsdb / schema / schema_set.c
blob31862a43b789b08d95bb2a95f871ebf02281f0e4
1 /*
2 Unix SMB/CIFS implementation.
3 DSDB schema header
5 Copyright (C) Stefan Metzmacher <metze@samba.org> 2006-2007
6 Copyright (C) Andrew Bartlett <abartlet@samba.org> 2006-2008
7 Copyright (C) Matthieu Patou <mat@matws.net> 2011
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>.
24 #include "includes.h"
25 #include "lib/util/dlinklist.h"
26 #include "dsdb/samdb/samdb.h"
27 #include <ldb_module.h>
28 #include "param/param.h"
29 #include "librpc/ndr/libndr.h"
30 #include "librpc/gen_ndr/ndr_misc.h"
31 #include "lib/util/tsort.h"
33 /* change this when we change something in our schema code that
34 * requires a re-index of the database
36 #define SAMDB_INDEXING_VERSION "2"
39 override the name to attribute handler function
41 const struct ldb_schema_attribute *dsdb_attribute_handler_override(struct ldb_context *ldb,
42 void *private_data,
43 const char *name)
45 struct dsdb_schema *schema = talloc_get_type_abort(private_data, struct dsdb_schema);
46 const struct dsdb_attribute *a = dsdb_attribute_by_lDAPDisplayName(schema, name);
47 if (a == NULL) {
48 /* this will fall back to ldb internal handling */
49 return NULL;
51 return a->ldb_schema_attribute;
54 * Set the attribute handlers onto the LDB, and potentially write the
55 * @INDEXLIST, @IDXONE and @ATTRIBUTES records. The @ATTRIBUTES records
56 * are required so we can operate on a schema-less database (say the
57 * backend during emergency fixes) and during the schema load.
59 static int dsdb_schema_set_indices_and_attributes(struct ldb_context *ldb, struct dsdb_schema *schema, bool write_indices_and_attributes)
61 int ret = LDB_SUCCESS;
62 struct ldb_result *res;
63 struct ldb_result *res_idx;
64 struct dsdb_attribute *attr;
65 struct ldb_message *mod_msg;
66 TALLOC_CTX *mem_ctx;
67 struct ldb_message *msg;
68 struct ldb_message *msg_idx;
70 /* setup our own attribute name to schema handler */
71 ldb_schema_attribute_set_override_handler(ldb, dsdb_attribute_handler_override, schema);
73 if (!write_indices_and_attributes) {
74 return ret;
77 mem_ctx = talloc_new(ldb);
78 if (!mem_ctx) {
79 return ldb_oom(ldb);
82 msg = ldb_msg_new(mem_ctx);
83 if (!msg) {
84 ldb_oom(ldb);
85 goto op_error;
87 msg_idx = ldb_msg_new(mem_ctx);
88 if (!msg_idx) {
89 ldb_oom(ldb);
90 goto op_error;
92 msg->dn = ldb_dn_new(msg, ldb, "@ATTRIBUTES");
93 if (!msg->dn) {
94 ldb_oom(ldb);
95 goto op_error;
97 msg_idx->dn = ldb_dn_new(msg_idx, ldb, "@INDEXLIST");
98 if (!msg_idx->dn) {
99 ldb_oom(ldb);
100 goto op_error;
103 ret = ldb_msg_add_string(msg_idx, "@IDXONE", "1");
104 if (ret != LDB_SUCCESS) {
105 goto op_error;
109 ret = ldb_msg_add_string(msg_idx, "@IDXVERSION", SAMDB_INDEXING_VERSION);
110 if (ret != LDB_SUCCESS) {
111 goto op_error;
114 for (attr = schema->attributes; attr; attr = attr->next) {
115 const char *syntax = attr->syntax->ldb_syntax;
117 if (!syntax) {
118 syntax = attr->syntax->ldap_oid;
122 * Write out a rough approximation of the schema
123 * as an @ATTRIBUTES value, for bootstrapping
125 if (strcmp(syntax, LDB_SYNTAX_INTEGER) == 0) {
126 ret = ldb_msg_add_string(msg, attr->lDAPDisplayName, "INTEGER");
127 } else if (strcmp(syntax, LDB_SYNTAX_DIRECTORY_STRING) == 0) {
128 ret = ldb_msg_add_string(msg, attr->lDAPDisplayName, "CASE_INSENSITIVE");
130 if (ret != LDB_SUCCESS) {
131 break;
134 if (attr->searchFlags & SEARCH_FLAG_ATTINDEX) {
135 ret = ldb_msg_add_string(msg_idx, "@IDXATTR", attr->lDAPDisplayName);
136 if (ret != LDB_SUCCESS) {
137 break;
142 if (ret != LDB_SUCCESS) {
143 talloc_free(mem_ctx);
144 return ret;
148 * Try to avoid churning the attributes too much,
149 * we only want to do this if they have changed
151 ret = ldb_search(ldb, mem_ctx, &res, msg->dn, LDB_SCOPE_BASE, NULL,
152 NULL);
153 if (ret == LDB_ERR_NO_SUCH_OBJECT) {
154 ret = ldb_add(ldb, msg);
155 } else if (ret != LDB_SUCCESS) {
156 } else if (res->count != 1) {
157 ret = ldb_add(ldb, msg);
158 } else {
159 ret = LDB_SUCCESS;
160 /* Annoyingly added to our search results */
161 ldb_msg_remove_attr(res->msgs[0], "distinguishedName");
163 ret = ldb_msg_difference(ldb, mem_ctx,
164 res->msgs[0], msg, &mod_msg);
165 if (ret != LDB_SUCCESS) {
166 goto op_error;
168 if (mod_msg->num_elements > 0) {
169 ret = dsdb_replace(ldb, mod_msg, 0);
171 talloc_free(mod_msg);
174 if (ret == LDB_ERR_OPERATIONS_ERROR || ret == LDB_ERR_INSUFFICIENT_ACCESS_RIGHTS || ret == LDB_ERR_INVALID_DN_SYNTAX) {
175 /* We might be on a read-only DB or LDAP */
176 ret = LDB_SUCCESS;
178 if (ret != LDB_SUCCESS) {
179 talloc_free(mem_ctx);
180 return ret;
183 /* Now write out the indexes, as found in the schema (if they have changed) */
185 ret = ldb_search(ldb, mem_ctx, &res_idx, msg_idx->dn, LDB_SCOPE_BASE,
186 NULL, NULL);
187 if (ret == LDB_ERR_NO_SUCH_OBJECT) {
188 ret = ldb_add(ldb, msg_idx);
189 } else if (ret != LDB_SUCCESS) {
190 } else if (res_idx->count != 1) {
191 ret = ldb_add(ldb, msg_idx);
192 } else {
193 ret = LDB_SUCCESS;
194 /* Annoyingly added to our search results */
195 ldb_msg_remove_attr(res_idx->msgs[0], "distinguishedName");
197 ret = ldb_msg_difference(ldb, mem_ctx,
198 res_idx->msgs[0], msg_idx, &mod_msg);
199 if (ret != LDB_SUCCESS) {
200 goto op_error;
202 if (mod_msg->num_elements > 0) {
203 ret = dsdb_replace(ldb, mod_msg, 0);
205 talloc_free(mod_msg);
207 if (ret == LDB_ERR_OPERATIONS_ERROR || ret == LDB_ERR_INSUFFICIENT_ACCESS_RIGHTS || ret == LDB_ERR_INVALID_DN_SYNTAX) {
208 /* We might be on a read-only DB */
209 ret = LDB_SUCCESS;
211 talloc_free(mem_ctx);
212 return ret;
214 op_error:
215 talloc_free(mem_ctx);
216 return ldb_operr(ldb);
221 create extra attribute shortcuts
223 static void dsdb_setup_attribute_shortcuts(struct ldb_context *ldb, struct dsdb_schema *schema)
225 struct dsdb_attribute *attribute;
227 /* setup fast access to one_way_link and DN format */
228 for (attribute=schema->attributes; attribute; attribute=attribute->next) {
229 attribute->dn_format = dsdb_dn_oid_to_format(attribute->syntax->ldap_oid);
231 if (attribute->dn_format == DSDB_INVALID_DN) {
232 attribute->one_way_link = false;
233 continue;
236 /* these are not considered to be one way links for
237 the purpose of DN link fixups */
238 if (ldb_attr_cmp("distinguishedName", attribute->lDAPDisplayName) == 0 ||
239 ldb_attr_cmp("objectCategory", attribute->lDAPDisplayName) == 0) {
240 attribute->one_way_link = false;
241 continue;
244 if (attribute->linkID == 0) {
245 attribute->one_way_link = true;
246 continue;
248 /* handle attributes with a linkID but no backlink */
249 if ((attribute->linkID & 1) == 0 &&
250 dsdb_attribute_by_linkID(schema, attribute->linkID + 1) == NULL) {
251 attribute->one_way_link = true;
252 continue;
254 attribute->one_way_link = false;
258 static int uint32_cmp(uint32_t c1, uint32_t c2)
260 if (c1 == c2) return 0;
261 return c1 > c2 ? 1 : -1;
264 static int dsdb_compare_class_by_lDAPDisplayName(struct dsdb_class **c1, struct dsdb_class **c2)
266 return strcasecmp((*c1)->lDAPDisplayName, (*c2)->lDAPDisplayName);
268 static int dsdb_compare_class_by_governsID_id(struct dsdb_class **c1, struct dsdb_class **c2)
270 return uint32_cmp((*c1)->governsID_id, (*c2)->governsID_id);
272 static int dsdb_compare_class_by_governsID_oid(struct dsdb_class **c1, struct dsdb_class **c2)
274 return strcasecmp((*c1)->governsID_oid, (*c2)->governsID_oid);
276 static int dsdb_compare_class_by_cn(struct dsdb_class **c1, struct dsdb_class **c2)
278 return strcasecmp((*c1)->cn, (*c2)->cn);
281 static int dsdb_compare_attribute_by_lDAPDisplayName(struct dsdb_attribute **a1, struct dsdb_attribute **a2)
283 return strcasecmp((*a1)->lDAPDisplayName, (*a2)->lDAPDisplayName);
285 static int dsdb_compare_attribute_by_attributeID_id(struct dsdb_attribute **a1, struct dsdb_attribute **a2)
287 return uint32_cmp((*a1)->attributeID_id, (*a2)->attributeID_id);
289 static int dsdb_compare_attribute_by_msDS_IntId(struct dsdb_attribute **a1, struct dsdb_attribute **a2)
291 return uint32_cmp((*a1)->msDS_IntId, (*a2)->msDS_IntId);
293 static int dsdb_compare_attribute_by_attributeID_oid(struct dsdb_attribute **a1, struct dsdb_attribute **a2)
295 return strcasecmp((*a1)->attributeID_oid, (*a2)->attributeID_oid);
297 static int dsdb_compare_attribute_by_linkID(struct dsdb_attribute **a1, struct dsdb_attribute **a2)
299 return uint32_cmp((*a1)->linkID, (*a2)->linkID);
303 * Clean up Classes and Attributes accessor arrays
305 static void dsdb_sorted_accessors_free(struct dsdb_schema *schema)
307 /* free classes accessors */
308 TALLOC_FREE(schema->classes_by_lDAPDisplayName);
309 TALLOC_FREE(schema->classes_by_governsID_id);
310 TALLOC_FREE(schema->classes_by_governsID_oid);
311 TALLOC_FREE(schema->classes_by_cn);
312 /* free attribute accessors */
313 TALLOC_FREE(schema->attributes_by_lDAPDisplayName);
314 TALLOC_FREE(schema->attributes_by_attributeID_id);
315 TALLOC_FREE(schema->attributes_by_msDS_IntId);
316 TALLOC_FREE(schema->attributes_by_attributeID_oid);
317 TALLOC_FREE(schema->attributes_by_linkID);
321 create the sorted accessor arrays for the schema
323 int dsdb_setup_sorted_accessors(struct ldb_context *ldb,
324 struct dsdb_schema *schema)
326 struct dsdb_class *cur;
327 struct dsdb_attribute *a;
328 unsigned int i;
329 unsigned int num_int_id;
330 int ret;
332 /* free all caches */
333 dsdb_sorted_accessors_free(schema);
335 /* count the classes */
336 for (i=0, cur=schema->classes; cur; i++, cur=cur->next) /* noop */ ;
337 schema->num_classes = i;
339 /* setup classes_by_* */
340 schema->classes_by_lDAPDisplayName = talloc_array(schema, struct dsdb_class *, i);
341 schema->classes_by_governsID_id = talloc_array(schema, struct dsdb_class *, i);
342 schema->classes_by_governsID_oid = talloc_array(schema, struct dsdb_class *, i);
343 schema->classes_by_cn = talloc_array(schema, struct dsdb_class *, i);
344 if (schema->classes_by_lDAPDisplayName == NULL ||
345 schema->classes_by_governsID_id == NULL ||
346 schema->classes_by_governsID_oid == NULL ||
347 schema->classes_by_cn == NULL) {
348 goto failed;
351 for (i=0, cur=schema->classes; cur; i++, cur=cur->next) {
352 schema->classes_by_lDAPDisplayName[i] = cur;
353 schema->classes_by_governsID_id[i] = cur;
354 schema->classes_by_governsID_oid[i] = cur;
355 schema->classes_by_cn[i] = cur;
358 /* sort the arrays */
359 TYPESAFE_QSORT(schema->classes_by_lDAPDisplayName, schema->num_classes, dsdb_compare_class_by_lDAPDisplayName);
360 TYPESAFE_QSORT(schema->classes_by_governsID_id, schema->num_classes, dsdb_compare_class_by_governsID_id);
361 TYPESAFE_QSORT(schema->classes_by_governsID_oid, schema->num_classes, dsdb_compare_class_by_governsID_oid);
362 TYPESAFE_QSORT(schema->classes_by_cn, schema->num_classes, dsdb_compare_class_by_cn);
364 /* now build the attribute accessor arrays */
366 /* count the attributes
367 * and attributes with msDS-IntId set */
368 num_int_id = 0;
369 for (i=0, a=schema->attributes; a; i++, a=a->next) {
370 if (a->msDS_IntId != 0) {
371 num_int_id++;
374 schema->num_attributes = i;
375 schema->num_int_id_attr = num_int_id;
377 /* setup attributes_by_* */
378 schema->attributes_by_lDAPDisplayName = talloc_array(schema, struct dsdb_attribute *, i);
379 schema->attributes_by_attributeID_id = talloc_array(schema, struct dsdb_attribute *, i);
380 schema->attributes_by_msDS_IntId = talloc_array(schema,
381 struct dsdb_attribute *, num_int_id);
382 schema->attributes_by_attributeID_oid = talloc_array(schema, struct dsdb_attribute *, i);
383 schema->attributes_by_linkID = talloc_array(schema, struct dsdb_attribute *, i);
384 if (schema->attributes_by_lDAPDisplayName == NULL ||
385 schema->attributes_by_attributeID_id == NULL ||
386 schema->attributes_by_msDS_IntId == NULL ||
387 schema->attributes_by_attributeID_oid == NULL ||
388 schema->attributes_by_linkID == NULL) {
389 goto failed;
392 num_int_id = 0;
393 for (i=0, a=schema->attributes; a; i++, a=a->next) {
394 schema->attributes_by_lDAPDisplayName[i] = a;
395 schema->attributes_by_attributeID_id[i] = a;
396 schema->attributes_by_attributeID_oid[i] = a;
397 schema->attributes_by_linkID[i] = a;
398 /* append attr-by-msDS-IntId values */
399 if (a->msDS_IntId != 0) {
400 schema->attributes_by_msDS_IntId[num_int_id] = a;
401 num_int_id++;
404 SMB_ASSERT(num_int_id == schema->num_int_id_attr);
406 /* sort the arrays */
407 TYPESAFE_QSORT(schema->attributes_by_lDAPDisplayName, schema->num_attributes, dsdb_compare_attribute_by_lDAPDisplayName);
408 TYPESAFE_QSORT(schema->attributes_by_attributeID_id, schema->num_attributes, dsdb_compare_attribute_by_attributeID_id);
409 TYPESAFE_QSORT(schema->attributes_by_msDS_IntId, schema->num_int_id_attr, dsdb_compare_attribute_by_msDS_IntId);
410 TYPESAFE_QSORT(schema->attributes_by_attributeID_oid, schema->num_attributes, dsdb_compare_attribute_by_attributeID_oid);
411 TYPESAFE_QSORT(schema->attributes_by_linkID, schema->num_attributes, dsdb_compare_attribute_by_linkID);
413 dsdb_setup_attribute_shortcuts(ldb, schema);
415 ret = schema_fill_constructed(schema);
416 if (ret != LDB_SUCCESS) {
417 dsdb_sorted_accessors_free(schema);
418 return ret;
421 return LDB_SUCCESS;
423 failed:
424 dsdb_sorted_accessors_free(schema);
425 return ldb_oom(ldb);
429 * Attach the schema to an opaque pointer on the ldb,
430 * so ldb modules can find it
432 int dsdb_set_schema(struct ldb_context *ldb, struct dsdb_schema *schema)
434 struct dsdb_schema *old_schema;
435 int ret;
437 ret = dsdb_setup_sorted_accessors(ldb, schema);
438 if (ret != LDB_SUCCESS) {
439 return ret;
442 old_schema = ldb_get_opaque(ldb, "dsdb_schema");
444 ret = ldb_set_opaque(ldb, "dsdb_schema", schema);
445 if (ret != LDB_SUCCESS) {
446 return ret;
449 /* Remove the reference to the schema we just overwrote - if there was
450 * none, NULL is harmless here */
451 if (old_schema != schema) {
452 talloc_unlink(ldb, old_schema);
453 talloc_steal(ldb, schema);
456 ret = ldb_set_opaque(ldb, "dsdb_use_global_schema", NULL);
457 if (ret != LDB_SUCCESS) {
458 return ret;
461 /* Set the new attributes based on the new schema */
462 ret = dsdb_schema_set_indices_and_attributes(ldb, schema, true);
463 if (ret != LDB_SUCCESS) {
464 return ret;
467 return LDB_SUCCESS;
471 * Global variable to hold one copy of the schema, used to avoid memory bloat
473 static struct dsdb_schema *global_schema;
476 * Make this ldb use a specified schema, already fully calculated and belonging to another ldb
478 * The write_indices_and_attributes controls writing of the @ records
479 * because we cannot write to a database that does not yet exist on
480 * disk.
482 int dsdb_reference_schema(struct ldb_context *ldb, struct dsdb_schema *schema,
483 bool write_indices_and_attributes)
485 int ret;
486 struct dsdb_schema *old_schema;
487 old_schema = ldb_get_opaque(ldb, "dsdb_schema");
488 ret = ldb_set_opaque(ldb, "dsdb_schema", schema);
489 if (ret != LDB_SUCCESS) {
490 return ret;
493 /* Remove the reference to the schema we just overwrote - if there was
494 * none, NULL is harmless here */
495 talloc_unlink(ldb, old_schema);
497 if (talloc_reference(ldb, schema) == NULL) {
498 return ldb_oom(ldb);
501 /* Make this ldb use local schema preferably */
502 ret = ldb_set_opaque(ldb, "dsdb_use_global_schema", NULL);
503 if (ret != LDB_SUCCESS) {
504 return ret;
507 ret = dsdb_schema_set_indices_and_attributes(ldb, schema, write_indices_and_attributes);
508 if (ret != LDB_SUCCESS) {
509 return ret;
512 return LDB_SUCCESS;
516 * Make this ldb use the 'global' schema, setup to avoid having multiple copies in this process
518 int dsdb_set_global_schema(struct ldb_context *ldb)
520 int ret;
521 void *use_global_schema = (void *)1;
522 if (!global_schema) {
523 return LDB_SUCCESS;
525 ret = ldb_set_opaque(ldb, "dsdb_use_global_schema", use_global_schema);
526 if (ret != LDB_SUCCESS) {
527 return ret;
530 /* Set the new attributes based on the new schema */
531 ret = dsdb_schema_set_indices_and_attributes(ldb, global_schema, false /* Don't write indices and attributes, it's expensive */);
532 if (ret == LDB_SUCCESS) {
533 /* Keep a reference to this schema, just in case the original copy is replaced */
534 if (talloc_reference(ldb, global_schema) == NULL) {
535 return ldb_oom(ldb);
539 return ret;
542 bool dsdb_uses_global_schema(struct ldb_context *ldb)
544 return (ldb_get_opaque(ldb, "dsdb_use_global_schema") != NULL);
548 * Find the schema object for this ldb
550 * If reference_ctx is not NULL, then talloc_reference onto that context
553 struct dsdb_schema *dsdb_get_schema(struct ldb_context *ldb, TALLOC_CTX *reference_ctx)
555 const void *p;
556 struct dsdb_schema *schema_out;
557 struct dsdb_schema *schema_in;
558 bool use_global_schema;
559 TALLOC_CTX *tmp_ctx = talloc_new(reference_ctx);
560 if (!tmp_ctx) {
561 return NULL;
564 /* see if we have a cached copy */
565 use_global_schema = dsdb_uses_global_schema(ldb);
566 if (use_global_schema) {
567 schema_in = global_schema;
568 } else {
569 p = ldb_get_opaque(ldb, "dsdb_schema");
571 schema_in = talloc_get_type(p, struct dsdb_schema);
572 if (!schema_in) {
573 talloc_free(tmp_ctx);
574 return NULL;
578 if (schema_in->refresh_fn && !schema_in->refresh_in_progress) {
579 if (!talloc_reference(tmp_ctx, schema_in)) {
581 * ensure that the schema_in->refresh_in_progress
582 * remains valid for the right amount of time
584 talloc_free(tmp_ctx);
585 return NULL;
587 schema_in->refresh_in_progress = true;
588 /* This may change schema, if it needs to reload it from disk */
589 schema_out = schema_in->refresh_fn(schema_in->loaded_from_module,
590 schema_in,
591 use_global_schema);
592 schema_in->refresh_in_progress = false;
593 } else {
594 schema_out = schema_in;
597 /* This removes the extra reference above */
598 talloc_free(tmp_ctx);
599 if (!reference_ctx) {
600 return schema_out;
601 } else {
602 return talloc_reference(reference_ctx, schema_out);
607 * Make the schema found on this ldb the 'global' schema
610 void dsdb_make_schema_global(struct ldb_context *ldb, struct dsdb_schema *schema)
612 if (!schema) {
613 return;
616 if (global_schema) {
617 talloc_unlink(talloc_autofree_context(), global_schema);
620 /* we want the schema to be around permanently */
621 talloc_reparent(ldb, talloc_autofree_context(), schema);
622 global_schema = schema;
624 /* This calls the talloc_reference() of the global schema back onto the ldb */
625 dsdb_set_global_schema(ldb);
629 * When loading the schema from LDIF files, we don't get the extended DNs.
631 * We need to set these up, so that from the moment we start the provision,
632 * the defaultObjectCategory links are set up correctly.
634 int dsdb_schema_fill_extended_dn(struct ldb_context *ldb, struct dsdb_schema *schema)
636 struct dsdb_class *cur;
637 const struct dsdb_class *target_class;
638 for (cur = schema->classes; cur; cur = cur->next) {
639 const struct ldb_val *rdn;
640 struct ldb_val guid;
641 NTSTATUS status;
642 struct ldb_dn *dn = ldb_dn_new(NULL, ldb, cur->defaultObjectCategory);
644 if (!dn) {
645 return LDB_ERR_INVALID_DN_SYNTAX;
647 rdn = ldb_dn_get_component_val(dn, 0);
648 if (!rdn) {
649 talloc_free(dn);
650 return LDB_ERR_INVALID_DN_SYNTAX;
652 target_class = dsdb_class_by_cn_ldb_val(schema, rdn);
653 if (!target_class) {
654 talloc_free(dn);
655 return LDB_ERR_CONSTRAINT_VIOLATION;
658 status = GUID_to_ndr_blob(&target_class->objectGUID, dn, &guid);
659 if (!NT_STATUS_IS_OK(status)) {
660 talloc_free(dn);
661 return ldb_operr(ldb);
663 ldb_dn_set_extended_component(dn, "GUID", &guid);
665 cur->defaultObjectCategory = ldb_dn_get_extended_linearized(cur, dn, 1);
666 talloc_free(dn);
668 return LDB_SUCCESS;
672 * Add an element to the schema (attribute or class) from an LDB message
674 WERROR dsdb_schema_set_el_from_ldb_msg(struct ldb_context *ldb, struct dsdb_schema *schema,
675 struct ldb_message *msg)
677 const char* tstring;
678 time_t ts;
679 tstring = ldb_msg_find_attr_as_string(msg, "whenChanged", NULL);
680 /* keep a trace of the ts of the most recently changed object */
681 if (tstring) {
682 ts = ldb_string_to_time(tstring);
683 if (ts > schema->ts_last_change) {
684 schema->ts_last_change = ts;
687 if (samdb_find_attribute(ldb, msg,
688 "objectclass", "attributeSchema") != NULL) {
689 return dsdb_set_attribute_from_ldb(ldb, schema, msg);
690 } else if (samdb_find_attribute(ldb, msg,
691 "objectclass", "classSchema") != NULL) {
692 return dsdb_set_class_from_ldb(schema, msg);
694 /* Don't fail on things not classes or attributes */
695 return WERR_OK;
699 * Rather than read a schema from the LDB itself, read it from an ldif
700 * file. This allows schema to be loaded and used while adding the
701 * schema itself to the directory.
704 WERROR dsdb_set_schema_from_ldif(struct ldb_context *ldb,
705 const char *pf, const char *df,
706 const char *dn)
708 struct ldb_ldif *ldif;
709 struct ldb_message *msg;
710 TALLOC_CTX *mem_ctx;
711 WERROR status;
712 int ret;
713 struct dsdb_schema *schema;
714 const struct ldb_val *prefix_val;
715 const struct ldb_val *info_val;
716 struct ldb_val info_val_default;
719 mem_ctx = talloc_new(ldb);
720 if (!mem_ctx) {
721 goto nomem;
724 schema = dsdb_new_schema(mem_ctx);
725 if (!schema) {
726 goto nomem;
728 schema->base_dn = ldb_dn_new(schema, ldb, dn);
729 if (!schema->base_dn) {
730 goto nomem;
732 schema->fsmo.we_are_master = true;
733 schema->fsmo.update_allowed = true;
734 schema->fsmo.master_dn = ldb_dn_new(schema, ldb, "@PROVISION_SCHEMA_MASTER");
735 if (!schema->fsmo.master_dn) {
736 goto nomem;
740 * load the prefixMap attribute from pf
742 ldif = ldb_ldif_read_string(ldb, &pf);
743 if (!ldif) {
744 status = WERR_INVALID_PARAM;
745 goto failed;
747 talloc_steal(mem_ctx, ldif);
749 ret = ldb_msg_normalize(ldb, mem_ctx, ldif->msg, &msg);
750 if (ret != LDB_SUCCESS) {
751 goto nomem;
753 talloc_free(ldif);
755 prefix_val = ldb_msg_find_ldb_val(msg, "prefixMap");
756 if (!prefix_val) {
757 status = WERR_INVALID_PARAM;
758 goto failed;
761 info_val = ldb_msg_find_ldb_val(msg, "schemaInfo");
762 if (!info_val) {
763 status = dsdb_schema_info_blob_new(mem_ctx, &info_val_default);
764 W_ERROR_NOT_OK_GOTO(status, failed);
765 info_val = &info_val_default;
768 status = dsdb_load_oid_mappings_ldb(schema, prefix_val, info_val);
769 if (!W_ERROR_IS_OK(status)) {
770 DEBUG(0,("ERROR: dsdb_load_oid_mappings_ldb() failed with %s\n", win_errstr(status)));
771 goto failed;
774 schema->ts_last_change = 0;
775 /* load the attribute and class definitions out of df */
776 while ((ldif = ldb_ldif_read_string(ldb, &df))) {
777 talloc_steal(mem_ctx, ldif);
779 ret = ldb_msg_normalize(ldb, ldif, ldif->msg, &msg);
780 if (ret != LDB_SUCCESS) {
781 goto nomem;
784 status = dsdb_schema_set_el_from_ldb_msg(ldb, schema, msg);
785 talloc_free(ldif);
786 if (!W_ERROR_IS_OK(status)) {
787 goto failed;
791 ret = dsdb_set_schema(ldb, schema);
792 if (ret != LDB_SUCCESS) {
793 status = WERR_FOOBAR;
794 goto failed;
797 ret = dsdb_schema_fill_extended_dn(ldb, schema);
798 if (ret != LDB_SUCCESS) {
799 status = WERR_FOOBAR;
800 goto failed;
803 goto done;
805 nomem:
806 status = WERR_NOMEM;
807 failed:
808 done:
809 talloc_free(mem_ctx);
810 return status;