s4-dsdb/schema/schema_set.c: fix trailing spaces and comments spelling
[samba.git] / source4 / dsdb / schema / schema_set.c
1 /*
2    Unix SMB/CIFS implementation.
3    DSDB schema header
4
5    Copyright (C) Stefan Metzmacher <metze@samba.org> 2006-2007
6    Copyright (C) Andrew Bartlett <abartlet@samba.org> 2006-2008
7
8    This program is free software; you can redistribute it and/or modify
9    it under the terms of the GNU General Public License as published by
10    the Free Software Foundation; either version 3 of the License, or
11    (at your option) any later version.
12
13    This program is distributed in the hope that it will be useful,
14    but WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16    GNU General Public License for more details.
17
18    You should have received a copy of the GNU General Public License
19    along with this program.  If not, see <http://www.gnu.org/licenses/>.
20
21 */
22
23 #include "includes.h"
24 #include "lib/util/dlinklist.h"
25 #include "dsdb/samdb/samdb.h"
26 #include "lib/ldb/include/ldb_module.h"
27 #include "param/param.h"
28 #include "librpc/ndr/libndr.h"
29 #include "librpc/gen_ndr/ndr_misc.h"
30 #include "lib/util/tsort.h"
31
32 /*
33   override the name to attribute handler function
34  */
35 const struct ldb_schema_attribute *dsdb_attribute_handler_override(struct ldb_context *ldb,
36                                                                    void *private_data,
37                                                                    const char *name)
38 {
39         struct dsdb_schema *schema = talloc_get_type_abort(private_data, struct dsdb_schema);
40         const struct dsdb_attribute *a = dsdb_attribute_by_lDAPDisplayName(schema, name);
41         if (a == NULL) {
42                 /* this will fall back to ldb internal handling */
43                 return NULL;
44         }
45         return a->ldb_schema_attribute;
46 }
47
48 static int dsdb_schema_set_attributes(struct ldb_context *ldb, struct dsdb_schema *schema, bool write_attributes)
49 {
50         int ret = LDB_SUCCESS;
51         struct ldb_result *res;
52         struct ldb_result *res_idx;
53         struct dsdb_attribute *attr;
54         struct ldb_message *mod_msg;
55         TALLOC_CTX *mem_ctx;
56         struct ldb_message *msg;
57         struct ldb_message *msg_idx;
58
59         /* setup our own attribute name to schema handler */
60         ldb_schema_attribute_set_override_handler(ldb, dsdb_attribute_handler_override, schema);
61
62         if (!write_attributes) {
63                 return ret;
64         }
65
66         mem_ctx = talloc_new(ldb);
67         if (!mem_ctx) {
68                 return ldb_oom(ldb);
69         }
70
71         msg = ldb_msg_new(mem_ctx);
72         if (!msg) {
73                 ldb_oom(ldb);
74                 goto op_error;
75         }
76         msg_idx = ldb_msg_new(mem_ctx);
77         if (!msg_idx) {
78                 ldb_oom(ldb);
79                 goto op_error;
80         }
81         msg->dn = ldb_dn_new(msg, ldb, "@ATTRIBUTES");
82         if (!msg->dn) {
83                 ldb_oom(ldb);
84                 goto op_error;
85         }
86         msg_idx->dn = ldb_dn_new(msg_idx, ldb, "@INDEXLIST");
87         if (!msg_idx->dn) {
88                 ldb_oom(ldb);
89                 goto op_error;
90         }
91
92         ret = ldb_msg_add_string(msg_idx, "@IDXONE", "1");
93         if (ret != LDB_SUCCESS) {
94                 goto op_error;
95         }
96
97         for (attr = schema->attributes; attr; attr = attr->next) {
98                 const char *syntax = attr->syntax->ldb_syntax;
99
100                 if (!syntax) {
101                         syntax = attr->syntax->ldap_oid;
102                 }
103
104                 /*
105                  * Write out a rough approximation of the schema
106                  * as an @ATTRIBUTES value, for bootstrapping
107                  */
108                 if (strcmp(syntax, LDB_SYNTAX_INTEGER) == 0) {
109                         ret = ldb_msg_add_string(msg, attr->lDAPDisplayName, "INTEGER");
110                 } else if (strcmp(syntax, LDB_SYNTAX_DIRECTORY_STRING) == 0) {
111                         ret = ldb_msg_add_string(msg, attr->lDAPDisplayName, "CASE_INSENSITIVE");
112                 }
113                 if (ret != LDB_SUCCESS) {
114                         break;
115                 }
116
117                 if (attr->searchFlags & SEARCH_FLAG_ATTINDEX) {
118                         ret = ldb_msg_add_string(msg_idx, "@IDXATTR", attr->lDAPDisplayName);
119                         if (ret != LDB_SUCCESS) {
120                                 break;
121                         }
122                 }
123         }
124
125         if (ret != LDB_SUCCESS) {
126                 talloc_free(mem_ctx);
127                 return ret;
128         }
129
130         /*
131          * Try to avoid churning the attributes too much,
132          * we only want to do this if they have changed
133          */
134         ret = ldb_search(ldb, mem_ctx, &res, msg->dn, LDB_SCOPE_BASE, NULL,
135                          NULL);
136         if (ret == LDB_ERR_NO_SUCH_OBJECT) {
137                 ret = ldb_add(ldb, msg);
138         } else if (ret != LDB_SUCCESS) {
139         } else if (res->count != 1) {
140                 ret = ldb_add(ldb, msg);
141         } else {
142                 ret = LDB_SUCCESS;
143                 /* Annoyingly added to our search results */
144                 ldb_msg_remove_attr(res->msgs[0], "distinguishedName");
145
146                 ret = ldb_msg_difference(ldb, mem_ctx,
147                                          res->msgs[0], msg, &mod_msg);
148                 if (ret != LDB_SUCCESS) {
149                         goto op_error;
150                 }
151                 if (mod_msg->num_elements > 0) {
152                         ret = dsdb_replace(ldb, mod_msg, 0);
153                 }
154                 talloc_free(mod_msg);
155         }
156
157         if (ret == LDB_ERR_OPERATIONS_ERROR || ret == LDB_ERR_INSUFFICIENT_ACCESS_RIGHTS || ret == LDB_ERR_INVALID_DN_SYNTAX) {
158                 /* We might be on a read-only DB or LDAP */
159                 ret = LDB_SUCCESS;
160         }
161         if (ret != LDB_SUCCESS) {
162                 talloc_free(mem_ctx);
163                 return ret;
164         }
165
166         /* Now write out the indexes, as found in the schema (if they have changed) */
167
168         ret = ldb_search(ldb, mem_ctx, &res_idx, msg_idx->dn, LDB_SCOPE_BASE,
169                          NULL, NULL);
170         if (ret == LDB_ERR_NO_SUCH_OBJECT) {
171                 ret = ldb_add(ldb, msg_idx);
172         } else if (ret != LDB_SUCCESS) {
173         } else if (res_idx->count != 1) {
174                 ret = ldb_add(ldb, msg_idx);
175         } else {
176                 ret = LDB_SUCCESS;
177                 /* Annoyingly added to our search results */
178                 ldb_msg_remove_attr(res_idx->msgs[0], "distinguishedName");
179
180                 ret = ldb_msg_difference(ldb, mem_ctx,
181                                          res_idx->msgs[0], msg_idx, &mod_msg);
182                 if (ret != LDB_SUCCESS) {
183                         goto op_error;
184                 }
185                 if (mod_msg->num_elements > 0) {
186                         ret = dsdb_replace(ldb, mod_msg, 0);
187                 }
188                 talloc_free(mod_msg);
189         }
190         if (ret == LDB_ERR_OPERATIONS_ERROR || ret == LDB_ERR_INSUFFICIENT_ACCESS_RIGHTS || ret == LDB_ERR_INVALID_DN_SYNTAX) {
191                 /* We might be on a read-only DB */
192                 ret = LDB_SUCCESS;
193         }
194         talloc_free(mem_ctx);
195         return ret;
196
197 op_error:
198         talloc_free(mem_ctx);
199         return ldb_operr(ldb);
200 }
201
202 static int uint32_cmp(uint32_t c1, uint32_t c2)
203 {
204         if (c1 == c2) return 0;
205         return c1 > c2 ? 1 : -1;
206 }
207
208 static int dsdb_compare_class_by_lDAPDisplayName(struct dsdb_class **c1, struct dsdb_class **c2)
209 {
210         return strcasecmp((*c1)->lDAPDisplayName, (*c2)->lDAPDisplayName);
211 }
212 static int dsdb_compare_class_by_governsID_id(struct dsdb_class **c1, struct dsdb_class **c2)
213 {
214         return uint32_cmp((*c1)->governsID_id, (*c2)->governsID_id);
215 }
216 static int dsdb_compare_class_by_governsID_oid(struct dsdb_class **c1, struct dsdb_class **c2)
217 {
218         return strcasecmp((*c1)->governsID_oid, (*c2)->governsID_oid);
219 }
220 static int dsdb_compare_class_by_cn(struct dsdb_class **c1, struct dsdb_class **c2)
221 {
222         return strcasecmp((*c1)->cn, (*c2)->cn);
223 }
224
225 static int dsdb_compare_attribute_by_lDAPDisplayName(struct dsdb_attribute **a1, struct dsdb_attribute **a2)
226 {
227         return strcasecmp((*a1)->lDAPDisplayName, (*a2)->lDAPDisplayName);
228 }
229 static int dsdb_compare_attribute_by_attributeID_id(struct dsdb_attribute **a1, struct dsdb_attribute **a2)
230 {
231         return uint32_cmp((*a1)->attributeID_id, (*a2)->attributeID_id);
232 }
233 static int dsdb_compare_attribute_by_attributeID_oid(struct dsdb_attribute **a1, struct dsdb_attribute **a2)
234 {
235         return strcasecmp((*a1)->attributeID_oid, (*a2)->attributeID_oid);
236 }
237 static int dsdb_compare_attribute_by_linkID(struct dsdb_attribute **a1, struct dsdb_attribute **a2)
238 {
239         return uint32_cmp((*a1)->linkID, (*a2)->linkID);
240 }
241
242 /**
243  * Clean up Classes and Attributes accessor arrays
244  */
245 static void dsdb_sorted_accessors_free(struct dsdb_schema *schema)
246 {
247         /* free classes accessors */
248         TALLOC_FREE(schema->classes_by_lDAPDisplayName);
249         TALLOC_FREE(schema->classes_by_governsID_id);
250         TALLOC_FREE(schema->classes_by_governsID_oid);
251         TALLOC_FREE(schema->classes_by_cn);
252         /* free attribute accessors */
253         TALLOC_FREE(schema->attributes_by_lDAPDisplayName);
254         TALLOC_FREE(schema->attributes_by_attributeID_id);
255         TALLOC_FREE(schema->attributes_by_msDS_IntId);
256         TALLOC_FREE(schema->attributes_by_attributeID_oid);
257         TALLOC_FREE(schema->attributes_by_linkID);
258 }
259
260 /*
261   create the sorted accessor arrays for the schema
262  */
263 static int dsdb_setup_sorted_accessors(struct ldb_context *ldb,
264                                        struct dsdb_schema *schema)
265 {
266         struct dsdb_class *cur;
267         struct dsdb_attribute *a;
268         unsigned int i;
269         unsigned int num_int_id;
270
271         /* free all caches */
272         dsdb_sorted_accessors_free(schema);
273
274         /* count the classes */
275         for (i=0, cur=schema->classes; cur; i++, cur=cur->next) /* noop */ ;
276         schema->num_classes = i;
277
278         /* setup classes_by_* */
279         schema->classes_by_lDAPDisplayName = talloc_array(schema, struct dsdb_class *, i);
280         schema->classes_by_governsID_id    = talloc_array(schema, struct dsdb_class *, i);
281         schema->classes_by_governsID_oid   = talloc_array(schema, struct dsdb_class *, i);
282         schema->classes_by_cn              = talloc_array(schema, struct dsdb_class *, i);
283         if (schema->classes_by_lDAPDisplayName == NULL ||
284             schema->classes_by_governsID_id == NULL ||
285             schema->classes_by_governsID_oid == NULL ||
286             schema->classes_by_cn == NULL) {
287                 goto failed;
288         }
289
290         for (i=0, cur=schema->classes; cur; i++, cur=cur->next) {
291                 schema->classes_by_lDAPDisplayName[i] = cur;
292                 schema->classes_by_governsID_id[i]    = cur;
293                 schema->classes_by_governsID_oid[i]   = cur;
294                 schema->classes_by_cn[i]              = cur;
295         }
296
297         /* sort the arrays */
298         TYPESAFE_QSORT(schema->classes_by_lDAPDisplayName, schema->num_classes, dsdb_compare_class_by_lDAPDisplayName);
299         TYPESAFE_QSORT(schema->classes_by_governsID_id, schema->num_classes, dsdb_compare_class_by_governsID_id);
300         TYPESAFE_QSORT(schema->classes_by_governsID_oid, schema->num_classes, dsdb_compare_class_by_governsID_oid);
301         TYPESAFE_QSORT(schema->classes_by_cn, schema->num_classes, dsdb_compare_class_by_cn);
302
303         /* now build the attribute accessor arrays */
304
305         /* count the attributes
306          * and attributes with msDS-IntId set */
307         num_int_id = 0;
308         for (i=0, a=schema->attributes; a; i++, a=a->next) {
309                 if (a->msDS_IntId != 0) {
310                         num_int_id++;
311                 }
312         }
313         schema->num_attributes = i;
314         schema->num_int_id_attr = num_int_id;
315
316         /* setup attributes_by_* */
317         schema->attributes_by_lDAPDisplayName = talloc_array(schema, struct dsdb_attribute *, i);
318         schema->attributes_by_attributeID_id    = talloc_array(schema, struct dsdb_attribute *, i);
319         schema->attributes_by_msDS_IntId        = talloc_array(schema,
320                                                                struct dsdb_attribute *, num_int_id);
321         schema->attributes_by_attributeID_oid   = talloc_array(schema, struct dsdb_attribute *, i);
322         schema->attributes_by_linkID              = talloc_array(schema, struct dsdb_attribute *, i);
323         if (schema->attributes_by_lDAPDisplayName == NULL ||
324             schema->attributes_by_attributeID_id == NULL ||
325             schema->attributes_by_msDS_IntId == NULL ||
326             schema->attributes_by_attributeID_oid == NULL ||
327             schema->attributes_by_linkID == NULL) {
328                 goto failed;
329         }
330
331         num_int_id = 0;
332         for (i=0, a=schema->attributes; a; i++, a=a->next) {
333                 schema->attributes_by_lDAPDisplayName[i] = a;
334                 schema->attributes_by_attributeID_id[i]    = a;
335                 schema->attributes_by_attributeID_oid[i]   = a;
336                 schema->attributes_by_linkID[i]          = a;
337                 /* append attr-by-msDS-IntId values */
338                 if (a->msDS_IntId != 0) {
339                         schema->attributes_by_msDS_IntId[num_int_id] = a;
340                         num_int_id++;
341                 }
342         }
343         SMB_ASSERT(num_int_id == schema->num_int_id_attr);
344
345         /* sort the arrays */
346         TYPESAFE_QSORT(schema->attributes_by_lDAPDisplayName, schema->num_attributes, dsdb_compare_attribute_by_lDAPDisplayName);
347         TYPESAFE_QSORT(schema->attributes_by_attributeID_id, schema->num_attributes, dsdb_compare_attribute_by_attributeID_id);
348         TYPESAFE_QSORT(schema->attributes_by_msDS_IntId, schema->num_int_id_attr, dsdb_compare_attribute_by_attributeID_id);
349         TYPESAFE_QSORT(schema->attributes_by_attributeID_oid, schema->num_attributes, dsdb_compare_attribute_by_attributeID_oid);
350         TYPESAFE_QSORT(schema->attributes_by_linkID, schema->num_attributes, dsdb_compare_attribute_by_linkID);
351
352         return LDB_SUCCESS;
353
354 failed:
355         dsdb_sorted_accessors_free(schema);
356         return ldb_oom(ldb);
357 }
358
359 int dsdb_setup_schema_inversion(struct ldb_context *ldb, struct dsdb_schema *schema)
360 {
361         /* Walk the list of schema classes */
362
363         /*  For each subClassOf, add us to subclasses of the parent */
364
365         /* collect these subclasses into a recursive list of total subclasses, preserving order */
366
367         /* For each subclass under 'top', write the index from it's
368          * order as an integer in the dsdb_class (for sorting
369          * objectClass lists efficiently) */
370
371         /* Walk the list of schema classes */
372
373         /*  Create a 'total possible superiors' on each class */
374         return LDB_SUCCESS;
375 }
376
377 /**
378  * Attach the schema to an opaque pointer on the ldb,
379  * so ldb modules can find it
380  */
381 int dsdb_set_schema(struct ldb_context *ldb, struct dsdb_schema *schema)
382 {
383         struct dsdb_schema *old_schema;
384         int ret;
385
386         ret = dsdb_setup_sorted_accessors(ldb, schema);
387         if (ret != LDB_SUCCESS) {
388                 return ret;
389         }
390
391         ret = schema_fill_constructed(schema);
392         if (ret != LDB_SUCCESS) {
393                 return ret;
394         }
395
396         old_schema = ldb_get_opaque(ldb, "dsdb_schema");
397
398         ret = ldb_set_opaque(ldb, "dsdb_schema", schema);
399         if (ret != LDB_SUCCESS) {
400                 return ret;
401         }
402
403         /* Remove the reference to the schema we just overwrote - if there was
404          * none, NULL is harmless here */
405         if (old_schema != schema) {
406                 talloc_unlink(ldb, old_schema);
407                 talloc_steal(ldb, schema);
408         }
409
410         ret = ldb_set_opaque(ldb, "dsdb_use_global_schema", NULL);
411         if (ret != LDB_SUCCESS) {
412                 return ret;
413         }
414
415         /* Set the new attributes based on the new schema */
416         ret = dsdb_schema_set_attributes(ldb, schema, true);
417         if (ret != LDB_SUCCESS) {
418                 return ret;
419         }
420
421         return LDB_SUCCESS;
422 }
423
424 /**
425  * Global variable to hold one copy of the schema, used to avoid memory bloat
426  */
427 static struct dsdb_schema *global_schema;
428
429 /**
430  * Make this ldb use a specified schema, already fully calculated and belonging to another ldb
431  */
432 int dsdb_reference_schema(struct ldb_context *ldb, struct dsdb_schema *schema,
433                           bool write_attributes)
434 {
435         int ret;
436         struct dsdb_schema *old_schema;
437         old_schema = ldb_get_opaque(ldb, "dsdb_schema");
438         ret = ldb_set_opaque(ldb, "dsdb_schema", schema);
439         if (ret != LDB_SUCCESS) {
440                 return ret;
441         }
442
443         /* Remove the reference to the schema we just overwrote - if there was
444          * none, NULL is harmless here */
445         talloc_unlink(ldb, old_schema);
446
447         if (talloc_reference(ldb, schema) == NULL) {
448                 return ldb_oom(ldb);
449         }
450
451         ret = dsdb_schema_set_attributes(ldb, schema, write_attributes);
452         if (ret != LDB_SUCCESS) {
453                 return ret;
454         }
455
456         return LDB_SUCCESS;
457 }
458
459 /**
460  * Make this ldb use the 'global' schema, setup to avoid having multiple copies in this process
461  */
462 int dsdb_set_global_schema(struct ldb_context *ldb)
463 {
464         int ret;
465         void *use_global_schema = (void *)1;
466         if (!global_schema) {
467                 return LDB_SUCCESS;
468         }
469         ret = ldb_set_opaque(ldb, "dsdb_use_global_schema", use_global_schema);
470         if (ret != LDB_SUCCESS) {
471                 return ret;
472         }
473
474         /* Set the new attributes based on the new schema */
475         ret = dsdb_schema_set_attributes(ldb, global_schema, false /* Don't write attributes, it's expensive */);
476         if (ret == LDB_SUCCESS) {
477                 /* Keep a reference to this schema, just in case the original copy is replaced */
478                 if (talloc_reference(ldb, global_schema) == NULL) {
479                         return ldb_oom(ldb);
480                 }
481         }
482
483         return ret;
484 }
485
486 /**
487  * Find the schema object for this ldb
488  *
489  * If reference_ctx is not NULL, then talloc_reference onto that context
490  */
491
492 struct dsdb_schema *dsdb_get_schema(struct ldb_context *ldb, TALLOC_CTX *reference_ctx)
493 {
494         const void *p;
495         struct dsdb_schema *schema_out;
496         struct dsdb_schema *schema_in;
497         bool use_global_schema;
498         TALLOC_CTX *tmp_ctx = talloc_new(reference_ctx);
499         if (!tmp_ctx) {
500                 return NULL;
501         }
502
503         /* see if we have a cached copy */
504         use_global_schema = (ldb_get_opaque(ldb, "dsdb_use_global_schema") != NULL);
505         if (use_global_schema) {
506                 schema_in = global_schema;
507         } else {
508                 p = ldb_get_opaque(ldb, "dsdb_schema");
509
510                 schema_in = talloc_get_type(p, struct dsdb_schema);
511                 if (!schema_in) {
512                         talloc_free(tmp_ctx);
513                         return NULL;
514                 }
515         }
516
517         if (schema_in->refresh_fn && !schema_in->refresh_in_progress) {
518                 if (!talloc_reference(tmp_ctx, schema_in)) {
519                         /*
520                          * ensure that the schema_in->refresh_in_progress
521                          * remains valid for the right amount of time
522                          */
523                         talloc_free(tmp_ctx);
524                         return NULL;
525                 }
526                 schema_in->refresh_in_progress = true;
527                 /* This may change schema, if it needs to reload it from disk */
528                 schema_out = schema_in->refresh_fn(schema_in->loaded_from_module,
529                                                    schema_in,
530                                                    use_global_schema);
531                 schema_in->refresh_in_progress = false;
532         } else {
533                 schema_out = schema_in;
534         }
535
536         /* This removes the extra reference above */
537         talloc_free(tmp_ctx);
538         if (!reference_ctx) {
539                 return schema_out;
540         } else {
541                 return talloc_reference(reference_ctx, schema_out);
542         }
543 }
544
545 /**
546  * Make the schema found on this ldb the 'global' schema
547  */
548
549 void dsdb_make_schema_global(struct ldb_context *ldb, struct dsdb_schema *schema)
550 {
551         if (!schema) {
552                 return;
553         }
554
555         if (global_schema) {
556                 talloc_unlink(talloc_autofree_context(), global_schema);
557         }
558
559         /* we want the schema to be around permanently */
560         talloc_reparent(ldb, talloc_autofree_context(), schema);
561         global_schema = schema;
562
563         /* This calls the talloc_reference() of the global schema back onto the ldb */
564         dsdb_set_global_schema(ldb);
565 }
566
567 /**
568  * When loading the schema from LDIF files, we don't get the extended DNs.
569  *
570  * We need to set these up, so that from the moment we start the provision,
571  * the defaultObjectCategory links are set up correctly.
572  */
573 int dsdb_schema_fill_extended_dn(struct ldb_context *ldb, struct dsdb_schema *schema)
574 {
575         struct dsdb_class *cur;
576         const struct dsdb_class *target_class;
577         for (cur = schema->classes; cur; cur = cur->next) {
578                 const struct ldb_val *rdn;
579                 struct ldb_val guid;
580                 NTSTATUS status;
581                 struct ldb_dn *dn = ldb_dn_new(NULL, ldb, cur->defaultObjectCategory);
582
583                 if (!dn) {
584                         return LDB_ERR_INVALID_DN_SYNTAX;
585                 }
586                 rdn = ldb_dn_get_component_val(dn, 0);
587                 if (!rdn) {
588                         talloc_free(dn);
589                         return LDB_ERR_INVALID_DN_SYNTAX;
590                 }
591                 target_class = dsdb_class_by_cn_ldb_val(schema, rdn);
592                 if (!target_class) {
593                         talloc_free(dn);
594                         return LDB_ERR_CONSTRAINT_VIOLATION;
595                 }
596
597                 status = GUID_to_ndr_blob(&target_class->objectGUID, dn, &guid);
598                 if (!NT_STATUS_IS_OK(status)) {
599                         talloc_free(dn);
600                         return ldb_operr(ldb);
601                 }
602                 ldb_dn_set_extended_component(dn, "GUID", &guid);
603
604                 cur->defaultObjectCategory = ldb_dn_get_extended_linearized(cur, dn, 1);
605                 talloc_free(dn);
606         }
607         return LDB_SUCCESS;
608 }
609
610 /**
611  * Add an element to the schema (attribute or class) from an LDB message
612  */
613 WERROR dsdb_schema_set_el_from_ldb_msg(struct ldb_context *ldb, struct dsdb_schema *schema,
614                                        struct ldb_message *msg)
615 {
616         if (samdb_find_attribute(ldb, msg,
617                                  "objectclass", "attributeSchema") != NULL) {
618                 return dsdb_attribute_from_ldb(ldb, schema, msg);
619         } else if (samdb_find_attribute(ldb, msg,
620                                  "objectclass", "classSchema") != NULL) {
621                 return dsdb_class_from_ldb(schema, msg);
622         }
623
624         /* Don't fail on things not classes or attributes */
625         return WERR_OK;
626 }
627
628 /**
629  * Rather than read a schema from the LDB itself, read it from an ldif
630  * file.  This allows schema to be loaded and used while adding the
631  * schema itself to the directory.
632  */
633
634 WERROR dsdb_set_schema_from_ldif(struct ldb_context *ldb, const char *pf, const char *df)
635 {
636         struct ldb_ldif *ldif;
637         struct ldb_message *msg;
638         TALLOC_CTX *mem_ctx;
639         WERROR status;
640         int ret;
641         struct dsdb_schema *schema;
642         const struct ldb_val *prefix_val;
643         const struct ldb_val *info_val;
644         struct ldb_val info_val_default;
645
646
647         mem_ctx = talloc_new(ldb);
648         if (!mem_ctx) {
649                 goto nomem;
650         }
651
652         schema = dsdb_new_schema(mem_ctx);
653
654         schema->fsmo.we_are_master = true;
655         schema->fsmo.master_dn = ldb_dn_new_fmt(schema, ldb, "@PROVISION_SCHEMA_MASTER");
656         if (!schema->fsmo.master_dn) {
657                 goto nomem;
658         }
659
660         /*
661          * load the prefixMap attribute from pf
662          */
663         ldif = ldb_ldif_read_string(ldb, &pf);
664         if (!ldif) {
665                 status = WERR_INVALID_PARAM;
666                 goto failed;
667         }
668         talloc_steal(mem_ctx, ldif);
669
670         msg = ldb_msg_canonicalize(ldb, ldif->msg);
671         if (!msg) {
672                 goto nomem;
673         }
674         talloc_steal(mem_ctx, msg);
675         talloc_free(ldif);
676
677         prefix_val = ldb_msg_find_ldb_val(msg, "prefixMap");
678         if (!prefix_val) {
679                 status = WERR_INVALID_PARAM;
680                 goto failed;
681         }
682
683         info_val = ldb_msg_find_ldb_val(msg, "schemaInfo");
684         if (!info_val) {
685                 status = dsdb_schema_info_blob_new(mem_ctx, &info_val_default);
686                 W_ERROR_NOT_OK_GOTO(status, failed);
687                 info_val = &info_val_default;
688         }
689
690         status = dsdb_load_oid_mappings_ldb(schema, prefix_val, info_val);
691         if (!W_ERROR_IS_OK(status)) {
692                 DEBUG(0,("ERROR: dsdb_load_oid_mappings_ldb() failed with %s\n", win_errstr(status)));
693                 goto failed;
694         }
695
696         /* load the attribute and class definitions out of df */
697         while ((ldif = ldb_ldif_read_string(ldb, &df))) {
698                 talloc_steal(mem_ctx, ldif);
699
700                 msg = ldb_msg_canonicalize(ldb, ldif->msg);
701                 if (!msg) {
702                         goto nomem;
703                 }
704
705                 status = dsdb_schema_set_el_from_ldb_msg(ldb, schema, msg);
706                 talloc_free(ldif);
707                 if (!W_ERROR_IS_OK(status)) {
708                         goto failed;
709                 }
710         }
711
712         ret = dsdb_set_schema(ldb, schema);
713         if (ret != LDB_SUCCESS) {
714                 status = WERR_FOOBAR;
715                 goto failed;
716         }
717
718         ret = dsdb_schema_fill_extended_dn(ldb, schema);
719         if (ret != LDB_SUCCESS) {
720                 status = WERR_FOOBAR;
721                 goto failed;
722         }
723
724         goto done;
725
726 nomem:
727         status = WERR_NOMEM;
728 failed:
729 done:
730         talloc_free(mem_ctx);
731         return status;
732 }