Merge branch 'v4-0-test' of ssh://git.samba.org/data/git/samba into 4-0-local
[kai/samba.git] / source4 / dsdb / schema / schema_init.c
1 /* 
2    Unix SMB/CIFS mplementation.
3    DSDB schema header
4    
5    Copyright (C) Stefan Metzmacher <metze@samba.org> 2006
6    Copyright (C) Andrew Bartlett <abartlet@samba.org> 2007
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 "dsdb/samdb/samdb.h"
25 #include "lib/ldb/include/ldb_errors.h"
26 #include "lib/util/dlinklist.h"
27 #include "librpc/gen_ndr/ndr_misc.h"
28 #include "librpc/gen_ndr/ndr_drsuapi.h"
29 #include "librpc/gen_ndr/ndr_drsblobs.h"
30 #include "param/param.h"
31
32 struct dsdb_schema *dsdb_new_schema(TALLOC_CTX *mem_ctx, struct smb_iconv_convenience *iconv_convenience)
33 {
34         struct dsdb_schema *schema = talloc_zero(mem_ctx, struct dsdb_schema);
35         if (!schema) {
36                 return NULL;
37         }
38
39         schema->iconv_convenience = iconv_convenience;
40         return schema;
41 }
42
43
44 WERROR dsdb_load_oid_mappings_drsuapi(struct dsdb_schema *schema, const struct drsuapi_DsReplicaOIDMapping_Ctr *ctr)
45 {
46         uint32_t i,j;
47
48         schema->prefixes = talloc_array(schema, struct dsdb_schema_oid_prefix, ctr->num_mappings);
49         W_ERROR_HAVE_NO_MEMORY(schema->prefixes);
50
51         for (i=0, j=0; i < ctr->num_mappings; i++) {
52                 if (ctr->mappings[i].oid.oid == NULL) {
53                         return WERR_INVALID_PARAM;
54                 }
55
56                 if (strncasecmp(ctr->mappings[i].oid.oid, "ff", 2) == 0) {
57                         if (ctr->mappings[i].id_prefix != 0) {
58                                 return WERR_INVALID_PARAM;
59                         }
60
61                         /* the magic value should be in the last array member */
62                         if (i != (ctr->num_mappings - 1)) {
63                                 return WERR_INVALID_PARAM;
64                         }
65
66                         if (ctr->mappings[i].oid.__ndr_size != 21) {
67                                 return WERR_INVALID_PARAM;
68                         }
69
70                         schema->schema_info = talloc_strdup(schema, ctr->mappings[i].oid.oid);
71                         W_ERROR_HAVE_NO_MEMORY(schema->schema_info);
72                 } else {
73                         /* the last array member should contain the magic value not a oid */
74                         if (i == (ctr->num_mappings - 1)) {
75                                 return WERR_INVALID_PARAM;
76                         }
77
78                         schema->prefixes[j].id  = ctr->mappings[i].id_prefix<<16;
79                         schema->prefixes[j].oid = talloc_asprintf(schema->prefixes, "%s.",
80                                                                   ctr->mappings[i].oid.oid);
81                         W_ERROR_HAVE_NO_MEMORY(schema->prefixes[j].oid);
82                         schema->prefixes[j].oid_len = strlen(schema->prefixes[j].oid);
83                         j++;
84                 }
85         }
86
87         schema->num_prefixes = j;
88         return WERR_OK;
89 }
90
91 WERROR dsdb_load_oid_mappings_ldb(struct dsdb_schema *schema,
92                                   const struct ldb_val *prefixMap,
93                                   const struct ldb_val *schemaInfo)
94 {
95         WERROR status;
96         enum ndr_err_code ndr_err;
97         struct prefixMapBlob pfm;
98         char *schema_info;
99
100         TALLOC_CTX *mem_ctx = talloc_new(schema);
101         W_ERROR_HAVE_NO_MEMORY(mem_ctx);
102         
103         ndr_err = ndr_pull_struct_blob(prefixMap, mem_ctx, schema->iconv_convenience, &pfm, (ndr_pull_flags_fn_t)ndr_pull_prefixMapBlob);
104         if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {
105                 NTSTATUS nt_status = ndr_map_error2ntstatus(ndr_err);
106                 talloc_free(mem_ctx);
107                 return ntstatus_to_werror(nt_status);
108         }
109
110         if (pfm.version != PREFIX_MAP_VERSION_DSDB) {
111                 talloc_free(mem_ctx);
112                 return WERR_FOOBAR;
113         }
114
115         if (schemaInfo->length != 21 && schemaInfo->data[0] == 0xFF) {
116                 talloc_free(mem_ctx);
117                 return WERR_FOOBAR;
118         }
119
120         /* append the schema info as last element */
121         pfm.ctr.dsdb.num_mappings++;
122         pfm.ctr.dsdb.mappings = talloc_realloc(mem_ctx, pfm.ctr.dsdb.mappings,
123                                                struct drsuapi_DsReplicaOIDMapping,
124                                                pfm.ctr.dsdb.num_mappings);
125         W_ERROR_HAVE_NO_MEMORY(pfm.ctr.dsdb.mappings);
126
127         schema_info = data_blob_hex_string(pfm.ctr.dsdb.mappings, schemaInfo);
128         W_ERROR_HAVE_NO_MEMORY(schema_info);
129
130         pfm.ctr.dsdb.mappings[pfm.ctr.dsdb.num_mappings - 1].id_prefix          = 0;    
131         pfm.ctr.dsdb.mappings[pfm.ctr.dsdb.num_mappings - 1].oid.__ndr_size     = schemaInfo->length;
132         pfm.ctr.dsdb.mappings[pfm.ctr.dsdb.num_mappings - 1].oid.oid            = schema_info;
133
134         /* call the drsuapi version */
135         status = dsdb_load_oid_mappings_drsuapi(schema, &pfm.ctr.dsdb);
136         talloc_free(mem_ctx);
137
138         W_ERROR_NOT_OK_RETURN(status);
139
140         return WERR_OK;
141 }
142
143 WERROR dsdb_get_oid_mappings_drsuapi(const struct dsdb_schema *schema,
144                                      bool include_schema_info,
145                                      TALLOC_CTX *mem_ctx,
146                                      struct drsuapi_DsReplicaOIDMapping_Ctr **_ctr)
147 {
148         struct drsuapi_DsReplicaOIDMapping_Ctr *ctr;
149         uint32_t i;
150
151         ctr = talloc(mem_ctx, struct drsuapi_DsReplicaOIDMapping_Ctr);
152         W_ERROR_HAVE_NO_MEMORY(ctr);
153
154         ctr->num_mappings       = schema->num_prefixes;
155         if (include_schema_info) ctr->num_mappings++;
156         ctr->mappings = talloc_array(schema, struct drsuapi_DsReplicaOIDMapping, ctr->num_mappings);
157         W_ERROR_HAVE_NO_MEMORY(ctr->mappings);
158
159         for (i=0; i < schema->num_prefixes; i++) {
160                 ctr->mappings[i].id_prefix      = schema->prefixes[i].id>>16;
161                 ctr->mappings[i].oid.oid        = talloc_strndup(ctr->mappings,
162                                                                  schema->prefixes[i].oid,
163                                                                  schema->prefixes[i].oid_len - 1);
164                 W_ERROR_HAVE_NO_MEMORY(ctr->mappings[i].oid.oid);
165         }
166
167         if (include_schema_info) {
168                 ctr->mappings[i].id_prefix      = 0;
169                 ctr->mappings[i].oid.oid        = talloc_strdup(ctr->mappings,
170                                                                 schema->schema_info);
171                 W_ERROR_HAVE_NO_MEMORY(ctr->mappings[i].oid.oid);
172         }
173
174         *_ctr = ctr;
175         return WERR_OK;
176 }
177
178 WERROR dsdb_get_oid_mappings_ldb(const struct dsdb_schema *schema,
179                                  TALLOC_CTX *mem_ctx,
180                                  struct ldb_val *prefixMap,
181                                  struct ldb_val *schemaInfo)
182 {
183         WERROR status;
184         enum ndr_err_code ndr_err;
185         struct drsuapi_DsReplicaOIDMapping_Ctr *ctr;
186         struct prefixMapBlob pfm;
187
188         status = dsdb_get_oid_mappings_drsuapi(schema, false, mem_ctx, &ctr);
189         W_ERROR_NOT_OK_RETURN(status);
190
191         pfm.version     = PREFIX_MAP_VERSION_DSDB;
192         pfm.reserved    = 0;
193         pfm.ctr.dsdb    = *ctr;
194
195         ndr_err = ndr_push_struct_blob(prefixMap, mem_ctx, schema->iconv_convenience, &pfm, (ndr_push_flags_fn_t)ndr_push_prefixMapBlob);
196         talloc_free(ctr);
197         if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {
198                 NTSTATUS nt_status = ndr_map_error2ntstatus(ndr_err);
199                 return ntstatus_to_werror(nt_status);
200         }
201
202         *schemaInfo = strhex_to_data_blob(schema->schema_info);
203         W_ERROR_HAVE_NO_MEMORY(schemaInfo->data);
204         talloc_steal(mem_ctx, schemaInfo->data);
205
206         return WERR_OK;
207 }
208
209 WERROR dsdb_verify_oid_mappings_drsuapi(const struct dsdb_schema *schema, const struct drsuapi_DsReplicaOIDMapping_Ctr *ctr)
210 {
211         uint32_t i,j;
212
213         for (i=0; i < ctr->num_mappings; i++) {
214                 if (ctr->mappings[i].oid.oid == NULL) {
215                         return WERR_INVALID_PARAM;
216                 }
217
218                 if (strncasecmp(ctr->mappings[i].oid.oid, "ff", 2) == 0) {
219                         if (ctr->mappings[i].id_prefix != 0) {
220                                 return WERR_INVALID_PARAM;
221                         }
222
223                         /* the magic value should be in the last array member */
224                         if (i != (ctr->num_mappings - 1)) {
225                                 return WERR_INVALID_PARAM;
226                         }
227
228                         if (ctr->mappings[i].oid.__ndr_size != 21) {
229                                 return WERR_INVALID_PARAM;
230                         }
231
232                         if (strcasecmp(schema->schema_info, ctr->mappings[i].oid.oid) != 0) {
233                                 return WERR_DS_DRA_SCHEMA_MISMATCH;
234                         }
235                 } else {
236                         /* the last array member should contain the magic value not a oid */
237                         if (i == (ctr->num_mappings - 1)) {
238                                 return WERR_INVALID_PARAM;
239                         }
240
241                         for (j=0; j < schema->num_prefixes; j++) {
242                                 size_t oid_len;
243                                 if (schema->prefixes[j].id != (ctr->mappings[i].id_prefix<<16)) {
244                                         continue;
245                                 }
246
247                                 oid_len = strlen(ctr->mappings[i].oid.oid);
248
249                                 if (oid_len != (schema->prefixes[j].oid_len - 1)) {
250                                         return WERR_DS_DRA_SCHEMA_MISMATCH;
251                                 }
252
253                                 if (strncmp(ctr->mappings[i].oid.oid, schema->prefixes[j].oid, oid_len) != 0) {
254                                         return WERR_DS_DRA_SCHEMA_MISMATCH;                             
255                                 }
256
257                                 break;
258                         }
259
260                         if (j == schema->num_prefixes) {
261                                 return WERR_DS_DRA_SCHEMA_MISMATCH;                             
262                         }
263                 }
264         }
265
266         return WERR_OK;
267 }
268
269 WERROR dsdb_map_oid2int(const struct dsdb_schema *schema, const char *in, uint32_t *out)
270 {
271         uint32_t i;
272
273         for (i=0; i < schema->num_prefixes; i++) {
274                 const char *val_str;
275                 char *end_str;
276                 unsigned val;
277
278                 if (strncmp(schema->prefixes[i].oid, in, schema->prefixes[i].oid_len) != 0) {
279                         continue;
280                 }
281
282                 val_str = in + schema->prefixes[i].oid_len;
283                 end_str = NULL;
284                 errno = 0;
285
286                 if (val_str[0] == '\0') {
287                         return WERR_INVALID_PARAM;
288                 }
289
290                 /* two '.' chars are invalid */
291                 if (val_str[0] == '.') {
292                         return WERR_INVALID_PARAM;
293                 }
294
295                 val = strtoul(val_str, &end_str, 10);
296                 if (end_str[0] == '.' && end_str[1] != '\0') {
297                         /*
298                          * if it's a '.' and not the last char
299                          * then maybe an other mapping apply
300                          */
301                         continue;
302                 } else if (end_str[0] != '\0') {
303                         return WERR_INVALID_PARAM;
304                 } else if (val > 0xFFFF) {
305                         return WERR_INVALID_PARAM;
306                 }
307
308                 *out = schema->prefixes[i].id | val;
309                 return WERR_OK;
310         }
311
312         return WERR_DS_NO_MSDS_INTID;
313 }
314
315 WERROR dsdb_map_int2oid(const struct dsdb_schema *schema, uint32_t in, TALLOC_CTX *mem_ctx, const char **out)
316 {
317         uint32_t i;
318
319         for (i=0; i < schema->num_prefixes; i++) {
320                 const char *val;
321                 if (schema->prefixes[i].id != (in & 0xFFFF0000)) {
322                         continue;
323                 }
324
325                 val = talloc_asprintf(mem_ctx, "%s%u",
326                                       schema->prefixes[i].oid,
327                                       in & 0xFFFF);
328                 W_ERROR_HAVE_NO_MEMORY(val);
329
330                 *out = val;
331                 return WERR_OK;
332         }
333
334         return WERR_DS_NO_MSDS_INTID;
335 }
336
337 /*
338  * this function is called from within a ldb transaction from the schema_fsmo module
339  */
340 WERROR dsdb_create_prefix_mapping(struct ldb_context *ldb, struct dsdb_schema *schema, const char *full_oid)
341 {
342         /*
343          * TODO:
344          *      - (maybe) read the old prefixMap attribute and parse it
345          *
346          *      - recheck the prefix doesn't exist (because the ldb
347          *        has maybe a more uptodate value than schem->prefixes
348          *
349          *      - calculate a new mapping for the oid prefix of full_oid
350          *      - store the new prefixMap attribute
351          *
352          *      - (maybe) update schema->prefixes
353          *      or
354          *      - better find a way to indicate a schema reload,
355          *        so that other processes also notice the schema change
356          */
357         return WERR_NOT_SUPPORTED;
358 }
359
360 #define GET_STRING_LDB(msg, attr, mem_ctx, p, elem, strict) do { \
361         (p)->elem = samdb_result_string(msg, attr, NULL);\
362         if (strict && (p)->elem == NULL) { \
363                 d_printf("%s: %s == NULL\n", __location__, attr); \
364                 return WERR_INVALID_PARAM; \
365         } \
366         talloc_steal(mem_ctx, (p)->elem); \
367 } while (0)
368
369 #define GET_STRING_LIST_LDB(msg, attr, mem_ctx, p, elem, strict) do {   \
370         int get_string_list_counter;                                    \
371         struct ldb_message_element *get_string_list_el = ldb_msg_find_element(msg, attr); \
372         if (get_string_list_el == NULL) {                               \
373                 if (strict) {                                           \
374                         d_printf("%s: %s == NULL\n", __location__, attr); \
375                         return WERR_INVALID_PARAM;                      \
376                 } else {                                                \
377                         (p)->elem = NULL;                               \
378                         break;                                          \
379                 }                                                       \
380         }                                                               \
381         (p)->elem = talloc_array(mem_ctx, const char *, get_string_list_el->num_values + 1); \
382         for (get_string_list_counter=0;                                 \
383              get_string_list_counter < get_string_list_el->num_values;  \
384              get_string_list_counter++) {                               \
385                 (p)->elem[get_string_list_counter] = talloc_strndup((p)->elem, \
386                                                                     (const char *)get_string_list_el->values[get_string_list_counter].data, \
387                                                                     get_string_list_el->values[get_string_list_counter].length); \
388                 if (!(p)->elem[get_string_list_counter]) {              \
389                         d_printf("%s: talloc_strndup failed for %s\n", __location__, attr); \
390                         return WERR_NOMEM;                              \
391                 }                                                       \
392                 (p)->elem[get_string_list_counter+1] = NULL;            \
393         }                                                               \
394         talloc_steal(mem_ctx, (p)->elem);                               \
395 } while (0)
396
397 #define GET_BOOL_LDB(msg, attr, p, elem, strict) do { \
398         const char *str; \
399         str = samdb_result_string(msg, attr, NULL);\
400         if (str == NULL) { \
401                 if (strict) { \
402                         d_printf("%s: %s == NULL\n", __location__, attr); \
403                         return WERR_INVALID_PARAM; \
404                 } else { \
405                         (p)->elem = false; \
406                 } \
407         } else if (strcasecmp("TRUE", str) == 0) { \
408                 (p)->elem = true; \
409         } else if (strcasecmp("FALSE", str) == 0) { \
410                 (p)->elem = false; \
411         } else { \
412                 d_printf("%s: %s == %s\n", __location__, attr, str); \
413                 return WERR_INVALID_PARAM; \
414         } \
415 } while (0)
416
417 #define GET_UINT32_LDB(msg, attr, p, elem) do { \
418         (p)->elem = samdb_result_uint(msg, attr, 0);\
419 } while (0)
420
421 #define GET_GUID_LDB(msg, attr, p, elem) do { \
422         (p)->elem = samdb_result_guid(msg, attr);\
423 } while (0)
424
425 #define GET_BLOB_LDB(msg, attr, mem_ctx, p, elem) do { \
426         const struct ldb_val *_val;\
427         _val = ldb_msg_find_ldb_val(msg, attr);\
428         if (_val) {\
429                 (p)->elem = *_val;\
430                 talloc_steal(mem_ctx, (p)->elem.data);\
431         } else {\
432                 ZERO_STRUCT((p)->elem);\
433         }\
434 } while (0)
435
436 WERROR dsdb_attribute_from_ldb(const struct dsdb_schema *schema,
437                                struct ldb_message *msg,
438                                TALLOC_CTX *mem_ctx,
439                                struct dsdb_attribute *attr)
440 {
441         WERROR status;
442
443         GET_STRING_LDB(msg, "cn", mem_ctx, attr, cn, false);
444         GET_STRING_LDB(msg, "lDAPDisplayName", mem_ctx, attr, lDAPDisplayName, true);
445         GET_STRING_LDB(msg, "attributeID", mem_ctx, attr, attributeID_oid, true);
446         if (schema->num_prefixes == 0) {
447                 /* set an invalid value */
448                 attr->attributeID_id = 0xFFFFFFFF;
449         } else {
450                 status = dsdb_map_oid2int(schema, attr->attributeID_oid, &attr->attributeID_id);
451                 if (!W_ERROR_IS_OK(status)) {
452                         DEBUG(0,("%s: '%s': unable to map attributeID %s: %s\n",
453                                 __location__, attr->lDAPDisplayName, attr->attributeID_oid,
454                                 win_errstr(status)));
455                         return status;
456                 }
457         }
458         GET_GUID_LDB(msg, "schemaIDGUID", attr, schemaIDGUID);
459         GET_UINT32_LDB(msg, "mAPIID", attr, mAPIID);
460
461         GET_GUID_LDB(msg, "attributeSecurityGUID", attr, attributeSecurityGUID);
462
463         GET_UINT32_LDB(msg, "searchFlags", attr, searchFlags);
464         GET_UINT32_LDB(msg, "systemFlags", attr, systemFlags);
465         GET_BOOL_LDB(msg, "isMemberOfPartialAttributeSet", attr, isMemberOfPartialAttributeSet, false);
466         GET_UINT32_LDB(msg, "linkID", attr, linkID);
467
468         GET_STRING_LDB(msg, "attributeSyntax", mem_ctx, attr, attributeSyntax_oid, true);
469         if (schema->num_prefixes == 0) {
470                 /* set an invalid value */
471                 attr->attributeSyntax_id = 0xFFFFFFFF;
472         } else {
473                 status = dsdb_map_oid2int(schema, attr->attributeSyntax_oid, &attr->attributeSyntax_id);
474                 if (!W_ERROR_IS_OK(status)) {
475                         DEBUG(0,("%s: '%s': unable to map attributeSyntax_ %s: %s\n",
476                                 __location__, attr->lDAPDisplayName, attr->attributeSyntax_oid,
477                                 win_errstr(status)));
478                         return status;
479                 }
480         }
481         GET_UINT32_LDB(msg, "oMSyntax", attr, oMSyntax);
482         GET_BLOB_LDB(msg, "oMObjectClass", mem_ctx, attr, oMObjectClass);
483
484         GET_BOOL_LDB(msg, "isSingleValued", attr, isSingleValued, true);
485         GET_UINT32_LDB(msg, "rangeLower", attr, rangeLower);
486         GET_UINT32_LDB(msg, "rangeUpper", attr, rangeUpper);
487         GET_BOOL_LDB(msg, "extendedCharsAllowed", attr, extendedCharsAllowed, false);
488
489         GET_UINT32_LDB(msg, "schemaFlagsEx", attr, schemaFlagsEx);
490         GET_BLOB_LDB(msg, "msDs-Schema-Extensions", mem_ctx, attr, msDs_Schema_Extensions);
491
492         GET_BOOL_LDB(msg, "showInAdvancedViewOnly", attr, showInAdvancedViewOnly, false);
493         GET_STRING_LDB(msg, "adminDisplayName", mem_ctx, attr, adminDisplayName, false);
494         GET_STRING_LDB(msg, "adminDescription", mem_ctx, attr, adminDescription, false);
495         GET_STRING_LDB(msg, "classDisplayName", mem_ctx, attr, classDisplayName, false);
496         GET_BOOL_LDB(msg, "isEphemeral", attr, isEphemeral, false);
497         GET_BOOL_LDB(msg, "isDefunct", attr, isDefunct, false);
498         GET_BOOL_LDB(msg, "systemOnly", attr, systemOnly, false);
499
500         attr->syntax = dsdb_syntax_for_attribute(attr);
501         if (!attr->syntax) {
502                 return WERR_DS_ATT_SCHEMA_REQ_SYNTAX;
503         }
504
505         return WERR_OK;
506 }
507
508 WERROR dsdb_class_from_ldb(const struct dsdb_schema *schema,
509                            struct ldb_message *msg,
510                            TALLOC_CTX *mem_ctx,
511                            struct dsdb_class *obj)
512 {
513         WERROR status;
514
515         GET_STRING_LDB(msg, "cn", mem_ctx, obj, cn, false);
516         GET_STRING_LDB(msg, "lDAPDisplayName", mem_ctx, obj, lDAPDisplayName, true);
517         GET_STRING_LDB(msg, "governsID", mem_ctx, obj, governsID_oid, true);
518         if (schema->num_prefixes == 0) {
519                 /* set an invalid value */
520                 obj->governsID_id = 0xFFFFFFFF;
521         } else {
522                 status = dsdb_map_oid2int(schema, obj->governsID_oid, &obj->governsID_id);
523                 if (!W_ERROR_IS_OK(status)) {
524                         DEBUG(0,("%s: '%s': unable to map governsID %s: %s\n",
525                                 __location__, obj->lDAPDisplayName, obj->governsID_oid,
526                                 win_errstr(status)));
527                         return status;
528                 }
529         }
530         GET_GUID_LDB(msg, "schemaIDGUID", obj, schemaIDGUID);
531
532         GET_UINT32_LDB(msg, "objectClassCategory", obj, objectClassCategory);
533         GET_STRING_LDB(msg, "rDNAttID", mem_ctx, obj, rDNAttID, false);
534         GET_STRING_LDB(msg, "defaultObjectCategory", mem_ctx, obj, defaultObjectCategory, true);
535  
536         GET_STRING_LDB(msg, "subClassOf", mem_ctx, obj, subClassOf, true);
537
538         GET_STRING_LIST_LDB(msg, "systemAuxiliaryClass", mem_ctx, obj, systemAuxiliaryClass, false);
539         GET_STRING_LIST_LDB(msg, "auxiliaryClass", mem_ctx, obj, auxiliaryClass, false);
540
541         GET_STRING_LIST_LDB(msg, "systemMustContain", mem_ctx, obj, systemMustContain, false);
542         GET_STRING_LIST_LDB(msg, "systemMayContain", mem_ctx, obj, systemMayContain, false);
543         GET_STRING_LIST_LDB(msg, "mustContain", mem_ctx, obj, mustContain, false);
544         GET_STRING_LIST_LDB(msg, "mayContain", mem_ctx, obj, mayContain, false);
545
546         GET_STRING_LIST_LDB(msg, "systemPossSuperiors", mem_ctx, obj, systemPossSuperiors, false);
547         GET_STRING_LIST_LDB(msg, "possSuperiors", mem_ctx, obj, possSuperiors, false);
548         GET_STRING_LIST_LDB(msg, "possibleInferiors", mem_ctx, obj, possibleInferiors, false);
549
550         GET_STRING_LDB(msg, "defaultSecurityDescriptor", mem_ctx, obj, defaultSecurityDescriptor, false);
551
552         GET_UINT32_LDB(msg, "schemaFlagsEx", obj, schemaFlagsEx);
553         GET_BLOB_LDB(msg, "msDs-Schema-Extensions", mem_ctx, obj, msDs_Schema_Extensions);
554
555         GET_BOOL_LDB(msg, "showInAdvancedViewOnly", obj, showInAdvancedViewOnly, false);
556         GET_STRING_LDB(msg, "adminDisplayName", mem_ctx, obj, adminDisplayName, false);
557         GET_STRING_LDB(msg, "adminDescription", mem_ctx, obj, adminDescription, false);
558         GET_STRING_LDB(msg, "classDisplayName", mem_ctx, obj, classDisplayName, false);
559         GET_BOOL_LDB(msg, "defaultHidingValue", obj, defaultHidingValue, false);
560         GET_BOOL_LDB(msg, "isDefunct", obj, isDefunct, false);
561         GET_BOOL_LDB(msg, "systemOnly", obj, systemOnly, false);
562
563         return WERR_OK;
564 }
565
566 #define dsdb_oom(error_string, mem_ctx) *error_string = talloc_asprintf(mem_ctx, "dsdb out of memory at %s:%d\n", __FILE__, __LINE__)
567
568 int dsdb_schema_from_ldb_results(TALLOC_CTX *mem_ctx, struct ldb_context *ldb,
569                                  struct smb_iconv_convenience *iconv_convenience, 
570                                  struct ldb_result *schema_res,
571                                  struct ldb_result *attrs_res, struct ldb_result *objectclass_res, 
572                                  struct dsdb_schema **schema_out,
573                                  char **error_string)
574 {
575         WERROR status;
576         uint32_t i;
577         const struct ldb_val *prefix_val;
578         const struct ldb_val *info_val;
579         struct ldb_val info_val_default;
580         struct dsdb_schema *schema;
581
582         schema = dsdb_new_schema(mem_ctx, iconv_convenience);
583         if (!schema) {
584                 dsdb_oom(error_string, mem_ctx);
585                 return LDB_ERR_OPERATIONS_ERROR;
586         }
587
588         prefix_val = ldb_msg_find_ldb_val(schema_res->msgs[0], "prefixMap");
589         if (!prefix_val) {
590                 *error_string = talloc_asprintf(mem_ctx, 
591                                                 "schema_fsmo_init: no prefixMap attribute found");
592                 talloc_free(mem_ctx);
593                 return LDB_ERR_CONSTRAINT_VIOLATION;
594         }
595         info_val = ldb_msg_find_ldb_val(schema_res->msgs[0], "schemaInfo");
596         if (!info_val) {
597                 info_val_default = strhex_to_data_blob("FF0000000000000000000000000000000000000000");
598                 if (!info_val_default.data) {
599                         dsdb_oom(error_string, mem_ctx);
600                         return LDB_ERR_OPERATIONS_ERROR;
601                 }
602                 talloc_steal(mem_ctx, info_val_default.data);
603                 info_val = &info_val_default;
604         }
605
606         status = dsdb_load_oid_mappings_ldb(schema, prefix_val, info_val);
607         if (!W_ERROR_IS_OK(status)) {
608                 *error_string = talloc_asprintf(mem_ctx, 
609                               "schema_fsmo_init: failed to load oid mappings: %s",
610                               win_errstr(status));
611                 talloc_free(mem_ctx);
612                 return LDB_ERR_CONSTRAINT_VIOLATION;
613         }
614
615         for (i=0; i < attrs_res->count; i++) {
616                 struct dsdb_attribute *sa;
617
618                 sa = talloc_zero(schema, struct dsdb_attribute);
619                 if (!sa) {
620                         dsdb_oom(error_string, mem_ctx);
621                         return LDB_ERR_OPERATIONS_ERROR;
622                 }
623
624                 status = dsdb_attribute_from_ldb(schema, attrs_res->msgs[i], sa, sa);
625                 if (!W_ERROR_IS_OK(status)) {
626                         *error_string = talloc_asprintf(mem_ctx, 
627                                       "schema_fsmo_init: failed to load attriute definition: %s:%s",
628                                       ldb_dn_get_linearized(attrs_res->msgs[i]->dn),
629                                       win_errstr(status));
630                         talloc_free(mem_ctx);
631                         return LDB_ERR_CONSTRAINT_VIOLATION;
632                 }
633
634                 DLIST_ADD_END(schema->attributes, sa, struct dsdb_attribute *);
635         }
636
637         for (i=0; i < objectclass_res->count; i++) {
638                 struct dsdb_class *sc;
639
640                 sc = talloc_zero(schema, struct dsdb_class);
641                 if (!sc) {
642                         dsdb_oom(error_string, mem_ctx);
643                         return LDB_ERR_OPERATIONS_ERROR;
644                 }
645
646                 status = dsdb_class_from_ldb(schema, objectclass_res->msgs[i], sc, sc);
647                 if (!W_ERROR_IS_OK(status)) {
648                         *error_string = talloc_asprintf(mem_ctx, 
649                                       "schema_fsmo_init: failed to load class definition: %s:%s",
650                                       ldb_dn_get_linearized(objectclass_res->msgs[i]->dn),
651                                       win_errstr(status));
652                         talloc_free(mem_ctx);
653                         return LDB_ERR_CONSTRAINT_VIOLATION;
654                 }
655
656                 DLIST_ADD_END(schema->classes, sc, struct dsdb_class *);
657         }
658
659         schema->fsmo.master_dn = ldb_msg_find_attr_as_dn(ldb, schema, schema_res->msgs[0], "fSMORoleOwner");
660         if (ldb_dn_compare(samdb_ntds_settings_dn(ldb), schema->fsmo.master_dn) == 0) {
661                 schema->fsmo.we_are_master = true;
662         } else {
663                 schema->fsmo.we_are_master = false;
664         }
665
666         DEBUG(5, ("schema_fsmo_init: we are master: %s\n",
667                   (schema->fsmo.we_are_master?"yes":"no")));
668
669         *schema_out = schema;
670         return LDB_SUCCESS;
671 }
672
673
674 static const struct {
675         const char *name;
676         const char *oid;
677 } name_mappings[] = {
678         { "cn",                                 "2.5.4.3" },
679         { "name",                               "1.2.840.113556.1.4.1" },
680         { "lDAPDisplayName",                    "1.2.840.113556.1.2.460" },
681         { "attributeID",                        "1.2.840.113556.1.2.30" },
682         { "schemaIDGUID",                       "1.2.840.113556.1.4.148" },
683         { "mAPIID",                             "1.2.840.113556.1.2.49" },
684         { "attributeSecurityGUID",              "1.2.840.113556.1.4.149" },
685         { "searchFlags",                        "1.2.840.113556.1.2.334" },
686         { "systemFlags",                        "1.2.840.113556.1.4.375" },
687         { "isMemberOfPartialAttributeSet",      "1.2.840.113556.1.4.639" },
688         { "linkID",                             "1.2.840.113556.1.2.50" },
689         { "attributeSyntax",                    "1.2.840.113556.1.2.32" },
690         { "oMSyntax",                           "1.2.840.113556.1.2.231" },
691         { "oMObjectClass",                      "1.2.840.113556.1.2.218" },
692         { "isSingleValued",                     "1.2.840.113556.1.2.33" },
693         { "rangeLower",                         "1.2.840.113556.1.2.34" },
694         { "rangeUpper",                         "1.2.840.113556.1.2.35" },
695         { "extendedCharsAllowed",               "1.2.840.113556.1.2.380" },
696         { "schemaFlagsEx",                      "1.2.840.113556.1.4.120" },
697         { "msDs-Schema-Extensions",             "1.2.840.113556.1.4.1440" },
698         { "showInAdvancedViewOnly",             "1.2.840.113556.1.2.169" },
699         { "adminDisplayName",                   "1.2.840.113556.1.2.194" },
700         { "adminDescription",                   "1.2.840.113556.1.2.226" },
701         { "classDisplayName",                   "1.2.840.113556.1.4.610" },
702         { "isEphemeral",                        "1.2.840.113556.1.4.1212" },
703         { "isDefunct",                          "1.2.840.113556.1.4.661" },
704         { "systemOnly",                         "1.2.840.113556.1.4.170" },
705         { "governsID",                          "1.2.840.113556.1.2.22" },
706         { "objectClassCategory",                "1.2.840.113556.1.2.370" },
707         { "rDNAttID",                           "1.2.840.113556.1.2.26" },
708         { "defaultObjectCategory",              "1.2.840.113556.1.4.783" },
709         { "subClassOf",                         "1.2.840.113556.1.2.21" },
710         { "systemAuxiliaryClass",               "1.2.840.113556.1.4.198" },
711         { "systemPossSuperiors",                "1.2.840.113556.1.4.195" },
712         { "systemMustContain",                  "1.2.840.113556.1.4.197" },
713         { "systemMayContain",                   "1.2.840.113556.1.4.196" },
714         { "auxiliaryClass",                     "1.2.840.113556.1.2.351" },
715         { "possSuperiors",                      "1.2.840.113556.1.2.8" },
716         { "mustContain",                        "1.2.840.113556.1.2.24" },
717         { "mayContain",                         "1.2.840.113556.1.2.25" },
718         { "defaultSecurityDescriptor",          "1.2.840.113556.1.4.224" },
719         { "defaultHidingValue",                 "1.2.840.113556.1.4.518" },
720 };
721
722 static struct drsuapi_DsReplicaAttribute *dsdb_find_object_attr_name(struct dsdb_schema *schema,
723                                                                      struct drsuapi_DsReplicaObject *obj,
724                                                                      const char *name,
725                                                                      uint32_t *idx)
726 {
727         WERROR status;
728         uint32_t i, id;
729         const char *oid = NULL;
730
731         for(i=0; i < ARRAY_SIZE(name_mappings); i++) {
732                 if (strcmp(name_mappings[i].name, name) != 0) continue;
733
734                 oid = name_mappings[i].oid;
735                 break;
736         }
737
738         if (!oid) {
739                 return NULL;
740         }
741
742         status = dsdb_map_oid2int(schema, oid, &id);
743         if (!W_ERROR_IS_OK(status)) {
744                 return NULL;
745         }
746
747         for (i=0; i < obj->attribute_ctr.num_attributes; i++) {
748                 if (obj->attribute_ctr.attributes[i].attid != id) continue;
749
750                 if (idx) *idx = i;
751                 return &obj->attribute_ctr.attributes[i];
752         }
753
754         return NULL;
755 }
756
757 #define GET_STRING_DS(s, r, attr, mem_ctx, p, elem, strict) do { \
758         struct drsuapi_DsReplicaAttribute *_a; \
759         _a = dsdb_find_object_attr_name(s, r, attr, NULL); \
760         if (strict && !_a) { \
761                 d_printf("%s: %s == NULL\n", __location__, attr); \
762                 return WERR_INVALID_PARAM; \
763         } \
764         if (strict && _a->value_ctr.num_values != 1) { \
765                 d_printf("%s: %s num_values == %u\n", __location__, attr, \
766                         _a->value_ctr.num_values); \
767                 return WERR_INVALID_PARAM; \
768         } \
769         if (_a && _a->value_ctr.num_values >= 1) { \
770                 ssize_t _ret; \
771                 _ret = convert_string_talloc(mem_ctx, s->iconv_convenience, CH_UTF16, CH_UNIX, \
772                                              _a->value_ctr.values[0].blob->data, \
773                                              _a->value_ctr.values[0].blob->length, \
774                                              (void **)discard_const(&(p)->elem)); \
775                 if (_ret == -1) { \
776                         DEBUG(0,("%s: invalid data!\n", attr)); \
777                         dump_data(0, \
778                                      _a->value_ctr.values[0].blob->data, \
779                                      _a->value_ctr.values[0].blob->length); \
780                         return WERR_FOOBAR; \
781                 } \
782         } else { \
783                 (p)->elem = NULL; \
784         } \
785 } while (0)
786
787 #define GET_DN_DS(s, r, attr, mem_ctx, p, elem, strict) do { \
788         struct drsuapi_DsReplicaAttribute *_a; \
789         _a = dsdb_find_object_attr_name(s, r, attr, NULL); \
790         if (strict && !_a) { \
791                 d_printf("%s: %s == NULL\n", __location__, attr); \
792                 return WERR_INVALID_PARAM; \
793         } \
794         if (strict && _a->value_ctr.num_values != 1) { \
795                 d_printf("%s: %s num_values == %u\n", __location__, attr, \
796                         _a->value_ctr.num_values); \
797                 return WERR_INVALID_PARAM; \
798         } \
799         if (strict && !_a->value_ctr.values[0].blob) { \
800                 d_printf("%s: %s data == NULL\n", __location__, attr); \
801                 return WERR_INVALID_PARAM; \
802         } \
803         if (_a && _a->value_ctr.num_values >= 1 \
804             && _a->value_ctr.values[0].blob) { \
805                 struct drsuapi_DsReplicaObjectIdentifier3 _id3; \
806                 enum ndr_err_code _ndr_err; \
807                 _ndr_err = ndr_pull_struct_blob_all(_a->value_ctr.values[0].blob, \
808                                                       mem_ctx, s->iconv_convenience, &_id3,\
809                                                       (ndr_pull_flags_fn_t)ndr_pull_drsuapi_DsReplicaObjectIdentifier3);\
810                 if (!NDR_ERR_CODE_IS_SUCCESS(_ndr_err)) { \
811                         NTSTATUS _nt_status = ndr_map_error2ntstatus(_ndr_err); \
812                         return ntstatus_to_werror(_nt_status); \
813                 } \
814                 (p)->elem = _id3.dn; \
815         } else { \
816                 (p)->elem = NULL; \
817         } \
818 } while (0)
819
820 #define GET_BOOL_DS(s, r, attr, p, elem, strict) do { \
821         struct drsuapi_DsReplicaAttribute *_a; \
822         _a = dsdb_find_object_attr_name(s, r, attr, NULL); \
823         if (strict && !_a) { \
824                 d_printf("%s: %s == NULL\n", __location__, attr); \
825                 return WERR_INVALID_PARAM; \
826         } \
827         if (strict && _a->value_ctr.num_values != 1) { \
828                 d_printf("%s: %s num_values == %u\n", __location__, attr, \
829                          (unsigned int)_a->value_ctr.num_values);       \
830                 return WERR_INVALID_PARAM; \
831         } \
832         if (strict && !_a->value_ctr.values[0].blob) { \
833                 d_printf("%s: %s data == NULL\n", __location__, attr); \
834                 return WERR_INVALID_PARAM; \
835         } \
836         if (strict && _a->value_ctr.values[0].blob->length != 4) { \
837                 d_printf("%s: %s length == %u\n", __location__, attr, \
838                          (unsigned int)_a->value_ctr.values[0].blob->length); \
839                 return WERR_INVALID_PARAM; \
840         } \
841         if (_a && _a->value_ctr.num_values >= 1 \
842             && _a->value_ctr.values[0].blob \
843             && _a->value_ctr.values[0].blob->length == 4) { \
844                 (p)->elem = (IVAL(_a->value_ctr.values[0].blob->data,0)?true:false);\
845         } else { \
846                 (p)->elem = false; \
847         } \
848 } while (0)
849
850 #define GET_UINT32_DS(s, r, attr, p, elem) do { \
851         struct drsuapi_DsReplicaAttribute *_a; \
852         _a = dsdb_find_object_attr_name(s, r, attr, NULL); \
853         if (_a && _a->value_ctr.num_values >= 1 \
854             && _a->value_ctr.values[0].blob \
855             && _a->value_ctr.values[0].blob->length == 4) { \
856                 (p)->elem = IVAL(_a->value_ctr.values[0].blob->data,0);\
857         } else { \
858                 (p)->elem = 0; \
859         } \
860 } while (0)
861
862 #define GET_GUID_DS(s, r, attr, mem_ctx, p, elem) do { \
863         struct drsuapi_DsReplicaAttribute *_a; \
864         _a = dsdb_find_object_attr_name(s, r, attr, NULL); \
865         if (_a && _a->value_ctr.num_values >= 1 \
866             && _a->value_ctr.values[0].blob \
867             && _a->value_ctr.values[0].blob->length == 16) { \
868                 enum ndr_err_code _ndr_err; \
869                 _ndr_err = ndr_pull_struct_blob_all(_a->value_ctr.values[0].blob, \
870                                                       mem_ctx, s->iconv_convenience, &(p)->elem, \
871                                                       (ndr_pull_flags_fn_t)ndr_pull_GUID); \
872                 if (!NDR_ERR_CODE_IS_SUCCESS(_ndr_err)) { \
873                         NTSTATUS _nt_status = ndr_map_error2ntstatus(_ndr_err); \
874                         return ntstatus_to_werror(_nt_status); \
875                 } \
876         } else { \
877                 ZERO_STRUCT((p)->elem);\
878         } \
879 } while (0)
880
881 #define GET_BLOB_DS(s, r, attr, mem_ctx, p, elem) do { \
882         struct drsuapi_DsReplicaAttribute *_a; \
883         _a = dsdb_find_object_attr_name(s, r, attr, NULL); \
884         if (_a && _a->value_ctr.num_values >= 1 \
885             && _a->value_ctr.values[0].blob) { \
886                 (p)->elem = *_a->value_ctr.values[0].blob;\
887                 talloc_steal(mem_ctx, (p)->elem.data); \
888         } else { \
889                 ZERO_STRUCT((p)->elem);\
890         }\
891 } while (0)
892
893 WERROR dsdb_attribute_from_drsuapi(struct dsdb_schema *schema,
894                                    struct drsuapi_DsReplicaObject *r,
895                                    TALLOC_CTX *mem_ctx,
896                                    struct dsdb_attribute *attr)
897 {
898         WERROR status;
899
900         GET_STRING_DS(schema, r, "name", mem_ctx, attr, cn, true);
901         GET_STRING_DS(schema, r, "lDAPDisplayName", mem_ctx, attr, lDAPDisplayName, true);
902         GET_UINT32_DS(schema, r, "attributeID", attr, attributeID_id);
903         status = dsdb_map_int2oid(schema, attr->attributeID_id, mem_ctx, &attr->attributeID_oid);
904         if (!W_ERROR_IS_OK(status)) {
905                 DEBUG(0,("%s: '%s': unable to map attributeID 0x%08X: %s\n",
906                         __location__, attr->lDAPDisplayName, attr->attributeID_id,
907                         win_errstr(status)));
908                 return status;
909         }
910         GET_GUID_DS(schema, r, "schemaIDGUID", mem_ctx, attr, schemaIDGUID);
911         GET_UINT32_DS(schema, r, "mAPIID", attr, mAPIID);
912
913         GET_GUID_DS(schema, r, "attributeSecurityGUID", mem_ctx, attr, attributeSecurityGUID);
914
915         GET_UINT32_DS(schema, r, "searchFlags", attr, searchFlags);
916         GET_UINT32_DS(schema, r, "systemFlags", attr, systemFlags);
917         GET_BOOL_DS(schema, r, "isMemberOfPartialAttributeSet", attr, isMemberOfPartialAttributeSet, false);
918         GET_UINT32_DS(schema, r, "linkID", attr, linkID);
919
920         GET_UINT32_DS(schema, r, "attributeSyntax", attr, attributeSyntax_id);
921         status = dsdb_map_int2oid(schema, attr->attributeSyntax_id, mem_ctx, &attr->attributeSyntax_oid);
922         if (!W_ERROR_IS_OK(status)) {
923                 DEBUG(0,("%s: '%s': unable to map attributeSyntax 0x%08X: %s\n",
924                         __location__, attr->lDAPDisplayName, attr->attributeSyntax_id,
925                         win_errstr(status)));
926                 return status;
927         }
928         GET_UINT32_DS(schema, r, "oMSyntax", attr, oMSyntax);
929         GET_BLOB_DS(schema, r, "oMObjectClass", mem_ctx, attr, oMObjectClass);
930
931         GET_BOOL_DS(schema, r, "isSingleValued", attr, isSingleValued, true);
932         GET_UINT32_DS(schema, r, "rangeLower", attr, rangeLower);
933         GET_UINT32_DS(schema, r, "rangeUpper", attr, rangeUpper);
934         GET_BOOL_DS(schema, r, "extendedCharsAllowed", attr, extendedCharsAllowed, false);
935
936         GET_UINT32_DS(schema, r, "schemaFlagsEx", attr, schemaFlagsEx);
937         GET_BLOB_DS(schema, r, "msDs-Schema-Extensions", mem_ctx, attr, msDs_Schema_Extensions);
938
939         GET_BOOL_DS(schema, r, "showInAdvancedViewOnly", attr, showInAdvancedViewOnly, false);
940         GET_STRING_DS(schema, r, "adminDisplayName", mem_ctx, attr, adminDisplayName, false);
941         GET_STRING_DS(schema, r, "adminDescription", mem_ctx, attr, adminDescription, false);
942         GET_STRING_DS(schema, r, "classDisplayName", mem_ctx, attr, classDisplayName, false);
943         GET_BOOL_DS(schema, r, "isEphemeral", attr, isEphemeral, false);
944         GET_BOOL_DS(schema, r, "isDefunct", attr, isDefunct, false);
945         GET_BOOL_DS(schema, r, "systemOnly", attr, systemOnly, false);
946
947         attr->syntax = dsdb_syntax_for_attribute(attr);
948         if (!attr->syntax) {
949                 return WERR_DS_ATT_SCHEMA_REQ_SYNTAX;
950         }
951
952         return WERR_OK;
953 }
954
955 WERROR dsdb_class_from_drsuapi(struct dsdb_schema *schema,
956                                struct drsuapi_DsReplicaObject *r,
957                                TALLOC_CTX *mem_ctx,
958                                struct dsdb_class *obj)
959 {
960         WERROR status;
961
962         GET_STRING_DS(schema, r, "name", mem_ctx, obj, cn, true);
963         GET_STRING_DS(schema, r, "lDAPDisplayName", mem_ctx, obj, lDAPDisplayName, true);
964         GET_UINT32_DS(schema, r, "governsID", obj, governsID_id);
965         status = dsdb_map_int2oid(schema, obj->governsID_id, mem_ctx, &obj->governsID_oid);
966         if (!W_ERROR_IS_OK(status)) {
967                 DEBUG(0,("%s: '%s': unable to map governsID 0x%08X: %s\n",
968                         __location__, obj->lDAPDisplayName, obj->governsID_id,
969                         win_errstr(status)));
970                 return status;
971         }
972         GET_GUID_DS(schema, r, "schemaIDGUID", mem_ctx, obj, schemaIDGUID);
973
974         GET_UINT32_DS(schema, r, "objectClassCategory", obj, objectClassCategory);
975         GET_STRING_DS(schema, r, "rDNAttID", mem_ctx, obj, rDNAttID, false);
976         GET_DN_DS(schema, r, "defaultObjectCategory", mem_ctx, obj, defaultObjectCategory, true);
977
978         GET_STRING_DS(schema, r, "subClassOf", mem_ctx, obj, subClassOf, true);
979
980         obj->systemAuxiliaryClass       = NULL;
981         obj->systemPossSuperiors        = NULL;
982         obj->systemMustContain          = NULL;
983         obj->systemMayContain           = NULL;
984
985         obj->auxiliaryClass             = NULL;
986         obj->possSuperiors              = NULL;
987         obj->mustContain                = NULL;
988         obj->mayContain                 = NULL;
989
990         obj->possibleInferiors          = NULL;
991
992         GET_STRING_DS(schema, r, "defaultSecurityDescriptor", mem_ctx, obj, defaultSecurityDescriptor, false);
993
994         GET_UINT32_DS(schema, r, "schemaFlagsEx", obj, schemaFlagsEx);
995         GET_BLOB_DS(schema, r, "msDs-Schema-Extensions", mem_ctx, obj, msDs_Schema_Extensions);
996
997         GET_BOOL_DS(schema, r, "showInAdvancedViewOnly", obj, showInAdvancedViewOnly, false);
998         GET_STRING_DS(schema, r, "adminDisplayName", mem_ctx, obj, adminDisplayName, false);
999         GET_STRING_DS(schema, r, "adminDescription", mem_ctx, obj, adminDescription, false);
1000         GET_STRING_DS(schema, r, "classDisplayName", mem_ctx, obj, classDisplayName, false);
1001         GET_BOOL_DS(schema, r, "defaultHidingValue", obj, defaultHidingValue, false);
1002         GET_BOOL_DS(schema, r, "isDefunct", obj, isDefunct, false);
1003         GET_BOOL_DS(schema, r, "systemOnly", obj, systemOnly, false);
1004
1005         return WERR_OK;
1006 }
1007
1008 const struct dsdb_attribute *dsdb_attribute_by_attributeID_id(const struct dsdb_schema *schema,
1009                                                               uint32_t id)
1010 {
1011         struct dsdb_attribute *cur;
1012
1013         /*
1014          * 0xFFFFFFFF is used as value when no mapping table is available,
1015          * so don't try to match with it
1016          */
1017         if (id == 0xFFFFFFFF) return NULL;
1018
1019         /* TODO: add binary search */
1020         for (cur = schema->attributes; cur; cur = cur->next) {
1021                 if (cur->attributeID_id != id) continue;
1022
1023                 return cur;
1024         }
1025
1026         return NULL;
1027 }
1028
1029 const struct dsdb_attribute *dsdb_attribute_by_attributeID_oid(const struct dsdb_schema *schema,
1030                                                                const char *oid)
1031 {
1032         struct dsdb_attribute *cur;
1033
1034         if (!oid) return NULL;
1035
1036         /* TODO: add binary search */
1037         for (cur = schema->attributes; cur; cur = cur->next) {
1038                 if (strcmp(cur->attributeID_oid, oid) != 0) continue;
1039
1040                 return cur;
1041         }
1042
1043         return NULL;
1044 }
1045
1046 const struct dsdb_attribute *dsdb_attribute_by_lDAPDisplayName(const struct dsdb_schema *schema,
1047                                                                const char *name)
1048 {
1049         struct dsdb_attribute *cur;
1050
1051         if (!name) return NULL;
1052
1053         /* TODO: add binary search */
1054         for (cur = schema->attributes; cur; cur = cur->next) {
1055                 if (strcasecmp(cur->lDAPDisplayName, name) != 0) continue;
1056
1057                 return cur;
1058         }
1059
1060         return NULL;
1061 }
1062
1063 const struct dsdb_attribute *dsdb_attribute_by_linkID(const struct dsdb_schema *schema,
1064                                                       int linkID)
1065 {
1066         struct dsdb_attribute *cur;
1067
1068         /* TODO: add binary search */
1069         for (cur = schema->attributes; cur; cur = cur->next) {
1070                 if (cur->linkID != linkID) continue;
1071
1072                 return cur;
1073         }
1074
1075         return NULL;
1076 }
1077
1078 const struct dsdb_class *dsdb_class_by_governsID_id(const struct dsdb_schema *schema,
1079                                                     uint32_t id)
1080 {
1081         struct dsdb_class *cur;
1082
1083         /*
1084          * 0xFFFFFFFF is used as value when no mapping table is available,
1085          * so don't try to match with it
1086          */
1087         if (id == 0xFFFFFFFF) return NULL;
1088
1089         /* TODO: add binary search */
1090         for (cur = schema->classes; cur; cur = cur->next) {
1091                 if (cur->governsID_id != id) continue;
1092
1093                 return cur;
1094         }
1095
1096         return NULL;
1097 }
1098
1099 const struct dsdb_class *dsdb_class_by_governsID_oid(const struct dsdb_schema *schema,
1100                                                      const char *oid)
1101 {
1102         struct dsdb_class *cur;
1103
1104         if (!oid) return NULL;
1105
1106         /* TODO: add binary search */
1107         for (cur = schema->classes; cur; cur = cur->next) {
1108                 if (strcmp(cur->governsID_oid, oid) != 0) continue;
1109
1110                 return cur;
1111         }
1112
1113         return NULL;
1114 }
1115
1116 const struct dsdb_class *dsdb_class_by_lDAPDisplayName(const struct dsdb_schema *schema,
1117                                                        const char *name)
1118 {
1119         struct dsdb_class *cur;
1120
1121         if (!name) return NULL;
1122
1123         /* TODO: add binary search */
1124         for (cur = schema->classes; cur; cur = cur->next) {
1125                 if (strcasecmp(cur->lDAPDisplayName, name) != 0) continue;
1126
1127                 return cur;
1128         }
1129
1130         return NULL;
1131 }
1132
1133 const struct dsdb_class *dsdb_class_by_cn(const struct dsdb_schema *schema,
1134                                           const char *cn)
1135 {
1136         struct dsdb_class *cur;
1137
1138         if (!cn) return NULL;
1139
1140         /* TODO: add binary search */
1141         for (cur = schema->classes; cur; cur = cur->next) {
1142                 if (strcasecmp(cur->cn, cn) != 0) continue;
1143
1144                 return cur;
1145         }
1146
1147         return NULL;
1148 }
1149
1150 const char *dsdb_lDAPDisplayName_by_id(const struct dsdb_schema *schema,
1151                                        uint32_t id)
1152 {
1153         const struct dsdb_attribute *a;
1154         const struct dsdb_class *c;
1155
1156         /* TODO: add binary search */
1157         a = dsdb_attribute_by_attributeID_id(schema, id);
1158         if (a) {
1159                 return a->lDAPDisplayName;
1160         }
1161
1162         c = dsdb_class_by_governsID_id(schema, id);
1163         if (c) {
1164                 return c->lDAPDisplayName;
1165         }
1166
1167         return NULL;
1168 }
1169
1170 WERROR dsdb_linked_attribute_lDAPDisplayName_list(const struct dsdb_schema *schema, TALLOC_CTX *mem_ctx, const char ***attr_list_ret)
1171 {
1172         const char **attr_list = NULL;
1173         struct dsdb_attribute *cur;
1174         int i = 0;
1175         for (cur = schema->attributes; cur; cur = cur->next) {
1176                 if (cur->linkID == 0) continue;
1177                 
1178                 attr_list = talloc_realloc(mem_ctx, attr_list, const char *, i+2);
1179                 if (!attr_list) {
1180                         return WERR_NOMEM;
1181                 }
1182                 attr_list[i] = cur->lDAPDisplayName;
1183                 i++;
1184         }
1185         attr_list[i] = NULL;
1186         *attr_list_ret = attr_list;
1187         return WERR_OK;
1188 }
1189
1190 /**
1191  * Attach the schema to an opaque pointer on the ldb, so ldb modules
1192  * can find it 
1193  */
1194
1195 int dsdb_set_schema(struct ldb_context *ldb, struct dsdb_schema *schema)
1196 {
1197         int ret;
1198
1199         ret = ldb_set_opaque(ldb, "dsdb_schema", schema);
1200         if (ret != LDB_SUCCESS) {
1201                 return ret;
1202         }
1203
1204         talloc_steal(ldb, schema);
1205
1206         return LDB_SUCCESS;
1207 }
1208
1209 /**
1210  * Global variable to hold one copy of the schema, used to avoid memory bloat
1211  */
1212 static struct dsdb_schema *global_schema;
1213
1214 /**
1215  * Make this ldb use the 'global' schema, setup to avoid having multiple copies in this process
1216  */
1217 int dsdb_set_global_schema(struct ldb_context *ldb)
1218 {
1219         int ret;
1220         if (!global_schema) {
1221                 return LDB_SUCCESS;
1222         }
1223         ret = ldb_set_opaque(ldb, "dsdb_schema", global_schema);
1224         if (ret != LDB_SUCCESS) {
1225                 return ret;
1226         }
1227
1228         return LDB_SUCCESS;
1229 }
1230
1231 /**
1232  * Find the schema object for this ldb
1233  */
1234
1235 struct dsdb_schema *dsdb_get_schema(struct ldb_context *ldb)
1236 {
1237         const void *p;
1238         struct dsdb_schema *schema;
1239
1240         /* see if we have a cached copy */
1241         p = ldb_get_opaque(ldb, "dsdb_schema");
1242         if (!p) {
1243                 return NULL;
1244         }
1245
1246         schema = talloc_get_type(p, struct dsdb_schema);
1247         if (!schema) {
1248                 return NULL;
1249         }
1250
1251         return schema;
1252 }
1253
1254 /**
1255  * Make the schema found on this ldb the 'global' schema
1256  */
1257
1258 void dsdb_make_schema_global(struct ldb_context *ldb)
1259 {
1260         struct dsdb_schema *schema = dsdb_get_schema(ldb);
1261         if (!schema) {
1262                 return;
1263         }
1264
1265         talloc_steal(talloc_autofree_context(), schema);
1266         global_schema = schema;
1267
1268         dsdb_set_global_schema(ldb);
1269 }
1270
1271
1272 /**
1273  * Rather than read a schema from the LDB itself, read it from an ldif
1274  * file.  This allows schema to be loaded and used while adding the
1275  * schema itself to the directory.
1276  */
1277
1278 WERROR dsdb_attach_schema_from_ldif_file(struct ldb_context *ldb, const char *pf, const char *df)
1279 {
1280         struct ldb_ldif *ldif;
1281         struct ldb_message *msg;
1282         TALLOC_CTX *mem_ctx;
1283         WERROR status;
1284         int ret;
1285         struct dsdb_schema *schema;
1286         const struct ldb_val *prefix_val;
1287         const struct ldb_val *info_val;
1288         struct ldb_val info_val_default;
1289
1290         mem_ctx = talloc_new(ldb);
1291         if (!mem_ctx) {
1292                 goto nomem;
1293         }
1294
1295         schema = dsdb_new_schema(mem_ctx, lp_iconv_convenience(ldb_get_opaque(ldb, "loadparm")));
1296
1297         schema->fsmo.we_are_master = true;
1298         schema->fsmo.master_dn = ldb_dn_new_fmt(schema, ldb, "@PROVISION_SCHEMA_MASTER");
1299         if (!schema->fsmo.master_dn) {
1300                 goto nomem;
1301         }
1302
1303         /*
1304          * load the prefixMap attribute from pf
1305          */
1306         ldif = ldb_ldif_read_string(ldb, &pf);
1307         if (!ldif) {
1308                 status = WERR_INVALID_PARAM;
1309                 goto failed;
1310         }
1311         talloc_steal(mem_ctx, ldif);
1312
1313         msg = ldb_msg_canonicalize(ldb, ldif->msg);
1314         if (!msg) {
1315                 goto nomem;
1316         }
1317         talloc_steal(mem_ctx, msg);
1318         talloc_free(ldif);
1319
1320         prefix_val = ldb_msg_find_ldb_val(msg, "prefixMap");
1321         if (!prefix_val) {
1322                 status = WERR_INVALID_PARAM;
1323                 goto failed;
1324         }
1325
1326         info_val = ldb_msg_find_ldb_val(msg, "schemaInfo");
1327         if (!info_val) {
1328                 info_val_default = strhex_to_data_blob("FF0000000000000000000000000000000000000000");
1329                 if (!info_val_default.data) {
1330                         goto nomem;
1331                 }
1332                 talloc_steal(mem_ctx, info_val_default.data);
1333                 info_val = &info_val_default;
1334         }
1335
1336         status = dsdb_load_oid_mappings_ldb(schema, prefix_val, info_val);
1337         if (!W_ERROR_IS_OK(status)) {
1338                 goto failed;
1339         }
1340
1341         /*
1342          * load the attribute and class definitions outof df
1343          */
1344         while ((ldif = ldb_ldif_read_string(ldb, &df))) {
1345                 bool is_sa;
1346                 bool is_sc;
1347
1348                 talloc_steal(mem_ctx, ldif);
1349
1350                 msg = ldb_msg_canonicalize(ldb, ldif->msg);
1351                 if (!msg) {
1352                         goto nomem;
1353                 }
1354
1355                 talloc_steal(mem_ctx, msg);
1356                 talloc_free(ldif);
1357
1358                 is_sa = ldb_msg_check_string_attribute(msg, "objectClass", "attributeSchema");
1359                 is_sc = ldb_msg_check_string_attribute(msg, "objectClass", "classSchema");
1360
1361                 if (is_sa) {
1362                         struct dsdb_attribute *sa;
1363
1364                         sa = talloc_zero(schema, struct dsdb_attribute);
1365                         if (!sa) {
1366                                 goto nomem;
1367                         }
1368
1369                         status = dsdb_attribute_from_ldb(schema, msg, sa, sa);
1370                         if (!W_ERROR_IS_OK(status)) {
1371                                 goto failed;
1372                         }
1373
1374                         DLIST_ADD_END(schema->attributes, sa, struct dsdb_attribute *);
1375                 } else if (is_sc) {
1376                         struct dsdb_class *sc;
1377
1378                         sc = talloc_zero(schema, struct dsdb_class);
1379                         if (!sc) {
1380                                 goto nomem;
1381                         }
1382
1383                         status = dsdb_class_from_ldb(schema, msg, sc, sc);
1384                         if (!W_ERROR_IS_OK(status)) {
1385                                 goto failed;
1386                         }
1387
1388                         DLIST_ADD_END(schema->classes, sc, struct dsdb_class *);
1389                 }
1390         }
1391
1392         ret = dsdb_set_schema(ldb, schema);
1393         if (ret != LDB_SUCCESS) {
1394                 status = WERR_FOOBAR;
1395                 goto failed;
1396         }
1397
1398         goto done;
1399
1400 nomem:
1401         status = WERR_NOMEM;
1402 failed:
1403 done:
1404         talloc_free(mem_ctx);
1405         return status;
1406 }