2 Unix SMB/CIFS mplementation.
5 Copyright (C) Stefan Metzmacher <metze@samba.org> 2006-2007
6 Copyright (C) Andrew Bartlett <abartlet@samba.org> 2006-2008
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.
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.
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/>.
24 #include "dsdb/samdb/samdb.h"
25 #include "dsdb/common/util.h"
26 #include "lib/ldb/include/ldb_errors.h"
27 #include "../lib/util/dlinklist.h"
28 #include "librpc/gen_ndr/ndr_misc.h"
29 #include "librpc/gen_ndr/ndr_drsuapi.h"
30 #include "librpc/gen_ndr/ndr_drsblobs.h"
31 #include "param/param.h"
32 #include "lib/ldb/include/ldb_module.h"
33 #include "../lib/util/asn1.h"
36 struct dsdb_schema
*dsdb_new_schema(TALLOC_CTX
*mem_ctx
, struct smb_iconv_convenience
*iconv_convenience
)
38 struct dsdb_schema
*schema
= talloc_zero(mem_ctx
, struct dsdb_schema
);
43 schema
->iconv_convenience
= iconv_convenience
;
48 WERROR
dsdb_load_prefixmap_from_drsuapi(struct dsdb_schema
*schema
,
49 const struct drsuapi_DsReplicaOIDMapping_Ctr
*ctr
)
52 const char *schema_info
;
53 struct dsdb_schema_prefixmap
*pfm
;
55 werr
= dsdb_schema_pfm_from_drsuapi_pfm(ctr
, true, schema
, &pfm
, &schema_info
);
56 W_ERROR_NOT_OK_RETURN(werr
);
58 /* set loaded prefixMap */
59 talloc_free(schema
->prefixmap
);
60 schema
->prefixmap
= pfm
;
62 talloc_free(discard_const(schema
->schema_info
));
63 schema
->schema_info
= schema_info
;
68 static WERROR
_dsdb_prefixmap_from_ldb_val(const struct ldb_val
*pfm_ldb_val
,
69 struct smb_iconv_convenience
*iconv_convenience
,
71 struct dsdb_schema_prefixmap
**_pfm
)
74 enum ndr_err_code ndr_err
;
75 struct prefixMapBlob pfm_blob
;
77 TALLOC_CTX
*temp_ctx
= talloc_new(mem_ctx
);
78 W_ERROR_HAVE_NO_MEMORY(temp_ctx
);
80 ndr_err
= ndr_pull_struct_blob(pfm_ldb_val
, temp_ctx
,
81 iconv_convenience
, &pfm_blob
,
82 (ndr_pull_flags_fn_t
)ndr_pull_prefixMapBlob
);
83 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err
)) {
84 NTSTATUS nt_status
= ndr_map_error2ntstatus(ndr_err
);
85 talloc_free(temp_ctx
);
86 return ntstatus_to_werror(nt_status
);
89 if (pfm_blob
.version
!= PREFIX_MAP_VERSION_DSDB
) {
90 DEBUG(0,("_dsdb_prefixmap_from_ldb_val: pfm_blob->version incorrect\n"));
91 talloc_free(temp_ctx
);
92 return WERR_VERSION_PARSE_ERROR
;
95 /* call the drsuapi version */
96 werr
= dsdb_schema_pfm_from_drsuapi_pfm(&pfm_blob
.ctr
.dsdb
, false, mem_ctx
, _pfm
, NULL
);
98 talloc_free(temp_ctx
);
103 WERROR
dsdb_load_oid_mappings_ldb(struct dsdb_schema
*schema
,
104 const struct ldb_val
*prefixMap
,
105 const struct ldb_val
*schemaInfo
)
108 const char *schema_info
;
109 struct dsdb_schema_prefixmap
*pfm
;
110 struct dsdb_schema_info
*schi
;
113 mem_ctx
= talloc_new(schema
);
114 W_ERROR_HAVE_NO_MEMORY(mem_ctx
);
116 /* parse schemaInfo blob to verify it is valid */
117 werr
= dsdb_schema_info_from_blob(schemaInfo
, mem_ctx
, &schi
);
118 W_ERROR_NOT_OK_GOTO(werr
, DONE
);
120 /* fetch prefixMap */
121 werr
= _dsdb_prefixmap_from_ldb_val(prefixMap
,
122 schema
->iconv_convenience
,
124 W_ERROR_NOT_OK_GOTO(werr
, DONE
);
126 /* decode schema_info */
127 schema_info
= hex_encode_talloc(mem_ctx
,
131 talloc_free(mem_ctx
);
135 /* store prefixMap and schema_info into cached Schema */
136 talloc_free(schema
->prefixmap
);
137 schema
->prefixmap
= talloc_steal(schema
, pfm
);
139 talloc_free(discard_const(schema
->schema_info
));
140 schema
->schema_info
= talloc_steal(schema
, schema_info
);
143 /* clean up locally allocated mem */
144 talloc_free(mem_ctx
);
149 WERROR
dsdb_get_oid_mappings_drsuapi(const struct dsdb_schema
*schema
,
150 bool include_schema_info
,
152 struct drsuapi_DsReplicaOIDMapping_Ctr
**_ctr
)
154 return dsdb_drsuapi_pfm_from_schema_pfm(schema
->prefixmap
,
155 include_schema_info
? schema
->schema_info
: NULL
,
159 WERROR
dsdb_get_oid_mappings_ldb(const struct dsdb_schema
*schema
,
161 struct ldb_val
*prefixMap
,
162 struct ldb_val
*schemaInfo
)
165 enum ndr_err_code ndr_err
;
166 struct drsuapi_DsReplicaOIDMapping_Ctr
*ctr
;
167 struct prefixMapBlob pfm
;
169 status
= dsdb_get_oid_mappings_drsuapi(schema
, false, mem_ctx
, &ctr
);
170 W_ERROR_NOT_OK_RETURN(status
);
172 pfm
.version
= PREFIX_MAP_VERSION_DSDB
;
176 ndr_err
= ndr_push_struct_blob(prefixMap
, mem_ctx
, schema
->iconv_convenience
, &pfm
,
177 (ndr_push_flags_fn_t
)ndr_push_prefixMapBlob
);
179 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err
)) {
180 NTSTATUS nt_status
= ndr_map_error2ntstatus(ndr_err
);
181 return ntstatus_to_werror(nt_status
);
184 *schemaInfo
= strhex_to_data_blob(mem_ctx
, schema
->schema_info
);
185 W_ERROR_HAVE_NO_MEMORY(schemaInfo
->data
);
192 * this function is called from within a ldb transaction from the schema_fsmo module
194 WERROR
dsdb_create_prefix_mapping(struct ldb_context
*ldb
, struct dsdb_schema
*schema
, const char *full_oid
)
199 struct dsdb_schema_prefixmap
*pfm
;
201 mem_ctx
= talloc_new(ldb
);
202 W_ERROR_HAVE_NO_MEMORY(mem_ctx
);
204 /* Read prefixes from disk*/
205 status
= dsdb_read_prefixes_from_ldb(ldb
, mem_ctx
, &pfm
);
206 if (!W_ERROR_IS_OK(status
)) {
207 DEBUG(0,("dsdb_create_prefix_mapping: dsdb_read_prefixes_from_ldb: %s\n",
208 win_errstr(status
)));
209 talloc_free(mem_ctx
);
213 /* Check if there is a prefix for the oid in the prefixes array*/
214 status
= dsdb_schema_pfm_find_oid(pfm
, full_oid
, NULL
);
215 if (W_ERROR_IS_OK(status
)) {
217 talloc_free(mem_ctx
);
219 } else if (!W_ERROR_EQUAL(WERR_DS_NO_MSDS_INTID
, status
)) {
221 DEBUG(0,("dsdb_create_prefix_mapping: dsdb_find_prefix_for_oid: %s\n",
222 win_errstr(status
)));
223 talloc_free(mem_ctx
);
227 /* Create the new mapping for the prefix of full_oid */
228 status
= dsdb_schema_pfm_make_attid(pfm
, full_oid
, &attid
);
229 if (!W_ERROR_IS_OK(status
)) {
230 DEBUG(0,("dsdb_create_prefix_mapping: dsdb_schema_pfm_make_attid: %s\n",
231 win_errstr(status
)));
232 talloc_free(mem_ctx
);
236 talloc_unlink(schema
, schema
->prefixmap
);
237 schema
->prefixmap
= talloc_steal(schema
, pfm
);
239 /* Update prefixMap in ldb*/
240 status
= dsdb_write_prefixes_from_schema_to_ldb(mem_ctx
, ldb
, schema
);
241 if (!W_ERROR_IS_OK(status
)) {
242 DEBUG(0,("dsdb_create_prefix_mapping: dsdb_write_prefixes_to_ldb: %s\n",
243 win_errstr(status
)));
244 talloc_free(mem_ctx
);
248 DEBUG(2,(__location__
" Added prefixMap %s - now have %u prefixes\n",
249 full_oid
, schema
->prefixmap
->length
));
251 talloc_free(mem_ctx
);
256 WERROR
dsdb_write_prefixes_from_schema_to_ldb(TALLOC_CTX
*mem_ctx
, struct ldb_context
*ldb
,
257 const struct dsdb_schema
*schema
)
261 struct ldb_message
*msg
;
262 struct ldb_dn
*schema_dn
;
263 struct prefixMapBlob pfm_blob
;
264 struct ldb_val ndr_blob
;
265 enum ndr_err_code ndr_err
;
266 TALLOC_CTX
*temp_ctx
;
267 struct drsuapi_DsReplicaOIDMapping_Ctr
*ctr
;
269 schema_dn
= ldb_get_schema_basedn(ldb
);
271 DEBUG(0,("dsdb_write_prefixes_from_schema_to_ldb: no schema dn present\n"));
275 temp_ctx
= talloc_new(mem_ctx
);
276 W_ERROR_HAVE_NO_MEMORY(temp_ctx
);
278 /* convert schema_prefixMap to prefixMap blob */
279 status
= dsdb_get_oid_mappings_drsuapi(schema
, false, temp_ctx
, &ctr
);
280 if (!W_ERROR_IS_OK(status
)) {
281 talloc_free(temp_ctx
);
285 pfm_blob
.version
= PREFIX_MAP_VERSION_DSDB
;
286 pfm_blob
.ctr
.dsdb
= *ctr
;
288 ndr_err
= ndr_push_struct_blob(&ndr_blob
, temp_ctx
,
289 lp_iconv_convenience(ldb_get_opaque(ldb
, "loadparm")),
291 (ndr_push_flags_fn_t
)ndr_push_prefixMapBlob
);
292 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err
)) {
293 talloc_free(temp_ctx
);
297 /* write serialized prefixMap into LDB */
298 msg
= ldb_msg_new(temp_ctx
);
300 talloc_free(temp_ctx
);
305 ldb_ret
= ldb_msg_add_value(msg
, "prefixMap", &ndr_blob
, NULL
);
307 talloc_free(temp_ctx
);
308 DEBUG(0,("dsdb_write_prefixes_from_schema_to_ldb: ldb_msg_add_value failed\n"));
312 ldb_ret
= dsdb_replace(ldb
, msg
, DSDB_FLAG_AS_SYSTEM
);
314 talloc_free(temp_ctx
);
317 DEBUG(0,("dsdb_write_prefixes_from_schema_to_ldb: dsdb_replace failed\n"));
324 WERROR
dsdb_read_prefixes_from_ldb(struct ldb_context
*ldb
, TALLOC_CTX
*mem_ctx
, struct dsdb_schema_prefixmap
**_pfm
)
328 const struct ldb_val
*prefix_val
;
329 struct smb_iconv_convenience
*iconv_convenience
;
330 struct ldb_dn
*schema_dn
;
331 struct ldb_result
*schema_res
= NULL
;
332 static const char *schema_attrs
[] = {
337 schema_dn
= ldb_get_schema_basedn(ldb
);
339 DEBUG(0,("dsdb_read_prefixes_from_ldb: no schema dn present\n"));
343 ldb_ret
= ldb_search(ldb
, mem_ctx
, &schema_res
, schema_dn
, LDB_SCOPE_BASE
, schema_attrs
, NULL
);
344 if (ldb_ret
== LDB_ERR_NO_SUCH_OBJECT
) {
345 DEBUG(0,("dsdb_read_prefixes_from_ldb: no prefix map present\n"));
346 talloc_free(schema_res
);
348 } else if (ldb_ret
!= LDB_SUCCESS
) {
349 DEBUG(0,("dsdb_read_prefixes_from_ldb: failed to search the schema head\n"));
350 talloc_free(schema_res
);
354 prefix_val
= ldb_msg_find_ldb_val(schema_res
->msgs
[0], "prefixMap");
356 DEBUG(0,("dsdb_read_prefixes_from_ldb: no prefixMap attribute found\n"));
357 talloc_free(schema_res
);
361 iconv_convenience
= lp_iconv_convenience(ldb_get_opaque(ldb
, "loadparm"));
363 werr
= _dsdb_prefixmap_from_ldb_val(prefix_val
,
367 talloc_free(schema_res
);
368 W_ERROR_NOT_OK_RETURN(werr
);
374 this will be replaced with something that looks at the right part of
375 the schema once we know where unique indexing information is hidden
377 static bool dsdb_schema_unique_attribute(const char *attr
)
379 const char *attrs
[] = { "objectGUID", "objectSID" , NULL
};
381 for (i
=0;attrs
[i
];i
++) {
382 if (strcasecmp(attr
, attrs
[i
]) == 0) {
391 setup the ldb_schema_attribute field for a dsdb_attribute
393 static int dsdb_schema_setup_ldb_schema_attribute(struct ldb_context
*ldb
,
394 struct dsdb_attribute
*attr
)
396 const char *syntax
= attr
->syntax
->ldb_syntax
;
397 const struct ldb_schema_syntax
*s
;
398 struct ldb_schema_attribute
*a
;
401 syntax
= attr
->syntax
->ldap_oid
;
404 s
= ldb_samba_syntax_by_lDAPDisplayName(ldb
, attr
->lDAPDisplayName
);
406 s
= ldb_samba_syntax_by_name(ldb
, syntax
);
409 s
= ldb_standard_syntax_by_name(ldb
, syntax
);
413 return LDB_ERR_OPERATIONS_ERROR
;
416 attr
->ldb_schema_attribute
= a
= talloc(attr
, struct ldb_schema_attribute
);
417 if (attr
->ldb_schema_attribute
== NULL
) {
419 return LDB_ERR_OPERATIONS_ERROR
;
422 a
->name
= attr
->lDAPDisplayName
;
426 if (dsdb_schema_unique_attribute(a
->name
)) {
427 a
->flags
|= LDB_ATTR_FLAG_UNIQUE_INDEX
;
429 if (attr
->isSingleValued
) {
430 a
->flags
|= LDB_ATTR_FLAG_SINGLE_VALUE
;
438 #define GET_STRING_LDB(msg, attr, mem_ctx, p, elem, strict) do { \
439 const struct ldb_val *get_string_val = ldb_msg_find_ldb_val(msg, attr); \
440 if (get_string_val == NULL) { \
442 d_printf("%s: %s == NULL\n", __location__, attr); \
443 return WERR_INVALID_PARAM; \
448 (p)->elem = talloc_strndup(mem_ctx, \
449 (const char *)get_string_val->data, \
450 get_string_val->length); \
452 d_printf("%s: talloc_strndup failed for %s\n", __location__, attr); \
458 #define GET_STRING_LIST_LDB(msg, attr, mem_ctx, p, elem, strict) do { \
459 int get_string_list_counter; \
460 struct ldb_message_element *get_string_list_el = ldb_msg_find_element(msg, attr); \
461 if (get_string_list_el == NULL) { \
463 d_printf("%s: %s == NULL\n", __location__, attr); \
464 return WERR_INVALID_PARAM; \
470 (p)->elem = talloc_array(mem_ctx, const char *, get_string_list_el->num_values + 1); \
471 for (get_string_list_counter=0; \
472 get_string_list_counter < get_string_list_el->num_values; \
473 get_string_list_counter++) { \
474 (p)->elem[get_string_list_counter] = talloc_strndup((p)->elem, \
475 (const char *)get_string_list_el->values[get_string_list_counter].data, \
476 get_string_list_el->values[get_string_list_counter].length); \
477 if (!(p)->elem[get_string_list_counter]) { \
478 d_printf("%s: talloc_strndup failed for %s\n", __location__, attr); \
481 (p)->elem[get_string_list_counter+1] = NULL; \
483 talloc_steal(mem_ctx, (p)->elem); \
486 #define GET_BOOL_LDB(msg, attr, p, elem, strict) do { \
488 str = samdb_result_string(msg, attr, NULL);\
491 d_printf("%s: %s == NULL\n", __location__, attr); \
492 return WERR_INVALID_PARAM; \
496 } else if (strcasecmp("TRUE", str) == 0) { \
498 } else if (strcasecmp("FALSE", str) == 0) { \
501 d_printf("%s: %s == %s\n", __location__, attr, str); \
502 return WERR_INVALID_PARAM; \
506 #define GET_UINT32_LDB(msg, attr, p, elem) do { \
507 (p)->elem = samdb_result_uint(msg, attr, 0);\
510 #define GET_UINT32_PTR_LDB(msg, attr, mem_ctx, p, elem) do { \
511 uint64_t _v = samdb_result_uint64(msg, attr, UINT64_MAX);\
512 if (_v == UINT64_MAX) { \
514 } else if (_v > UINT32_MAX) { \
515 d_printf("%s: %s == 0x%llX\n", __location__, \
516 attr, (unsigned long long)_v); \
517 return WERR_INVALID_PARAM; \
519 (p)->elem = talloc(mem_ctx, uint32_t); \
521 d_printf("%s: talloc failed for %s\n", __location__, attr); \
524 *(p)->elem = (uint32_t)_v; \
528 #define GET_GUID_LDB(msg, attr, p, elem) do { \
529 (p)->elem = samdb_result_guid(msg, attr);\
532 #define GET_BLOB_LDB(msg, attr, mem_ctx, p, elem) do { \
533 const struct ldb_val *_val;\
534 _val = ldb_msg_find_ldb_val(msg, attr);\
537 talloc_steal(mem_ctx, (p)->elem.data);\
539 ZERO_STRUCT((p)->elem);\
543 WERROR
dsdb_attribute_from_ldb(struct ldb_context
*ldb
,
544 struct dsdb_schema
*schema
,
545 struct ldb_message
*msg
)
548 struct dsdb_attribute
*attr
= talloc_zero(schema
, struct dsdb_attribute
);
553 GET_STRING_LDB(msg
, "cn", attr
, attr
, cn
, false);
554 GET_STRING_LDB(msg
, "lDAPDisplayName", attr
, attr
, lDAPDisplayName
, true);
555 GET_STRING_LDB(msg
, "attributeID", attr
, attr
, attributeID_oid
, true);
556 if (!schema
->prefixmap
|| schema
->prefixmap
->length
== 0) {
557 /* set an invalid value */
558 attr
->attributeID_id
= 0xFFFFFFFF;
560 status
= dsdb_schema_pfm_make_attid(schema
->prefixmap
,
561 attr
->attributeID_oid
,
562 &attr
->attributeID_id
);
563 if (!W_ERROR_IS_OK(status
)) {
564 DEBUG(0,("%s: '%s': unable to map attributeID %s: %s\n",
565 __location__
, attr
->lDAPDisplayName
, attr
->attributeID_oid
,
566 win_errstr(status
)));
570 /* fetch msDS-IntId to be used in resolving ATTRTYP values */
571 GET_UINT32_LDB(msg
, "msDS-IntId", attr
, msDS_IntId
);
573 GET_GUID_LDB(msg
, "schemaIDGUID", attr
, schemaIDGUID
);
574 GET_UINT32_LDB(msg
, "mAPIID", attr
, mAPIID
);
576 GET_GUID_LDB(msg
, "attributeSecurityGUID", attr
, attributeSecurityGUID
);
578 GET_GUID_LDB(msg
, "objectGUID", attr
, objectGUID
);
580 GET_UINT32_LDB(msg
, "searchFlags", attr
, searchFlags
);
581 GET_UINT32_LDB(msg
, "systemFlags", attr
, systemFlags
);
582 GET_BOOL_LDB(msg
, "isMemberOfPartialAttributeSet", attr
, isMemberOfPartialAttributeSet
, false);
583 GET_UINT32_LDB(msg
, "linkID", attr
, linkID
);
585 GET_STRING_LDB(msg
, "attributeSyntax", attr
, attr
, attributeSyntax_oid
, true);
586 if (!schema
->prefixmap
|| schema
->prefixmap
->length
== 0) {
587 /* set an invalid value */
588 attr
->attributeSyntax_id
= 0xFFFFFFFF;
590 status
= dsdb_schema_pfm_make_attid(schema
->prefixmap
,
591 attr
->attributeSyntax_oid
,
592 &attr
->attributeSyntax_id
);
593 if (!W_ERROR_IS_OK(status
)) {
594 DEBUG(0,("%s: '%s': unable to map attributeSyntax_ %s: %s\n",
595 __location__
, attr
->lDAPDisplayName
, attr
->attributeSyntax_oid
,
596 win_errstr(status
)));
600 GET_UINT32_LDB(msg
, "oMSyntax", attr
, oMSyntax
);
601 GET_BLOB_LDB(msg
, "oMObjectClass", attr
, attr
, oMObjectClass
);
603 GET_BOOL_LDB(msg
, "isSingleValued", attr
, isSingleValued
, true);
604 GET_UINT32_PTR_LDB(msg
, "rangeLower", attr
, attr
, rangeLower
);
605 GET_UINT32_PTR_LDB(msg
, "rangeUpper", attr
, attr
, rangeUpper
);
606 GET_BOOL_LDB(msg
, "extendedCharsAllowed", attr
, extendedCharsAllowed
, false);
608 GET_UINT32_LDB(msg
, "schemaFlagsEx", attr
, schemaFlagsEx
);
609 GET_BLOB_LDB(msg
, "msDs-Schema-Extensions", attr
, attr
, msDs_Schema_Extensions
);
611 GET_BOOL_LDB(msg
, "showInAdvancedViewOnly", attr
, showInAdvancedViewOnly
, false);
612 GET_STRING_LDB(msg
, "adminDisplayName", attr
, attr
, adminDisplayName
, false);
613 GET_STRING_LDB(msg
, "adminDescription", attr
, attr
, adminDescription
, false);
614 GET_STRING_LDB(msg
, "classDisplayName", attr
, attr
, classDisplayName
, false);
615 GET_BOOL_LDB(msg
, "isEphemeral", attr
, isEphemeral
, false);
616 GET_BOOL_LDB(msg
, "isDefunct", attr
, isDefunct
, false);
617 GET_BOOL_LDB(msg
, "systemOnly", attr
, systemOnly
, false);
619 attr
->syntax
= dsdb_syntax_for_attribute(attr
);
621 DEBUG(0,(__location__
": Unknown schema syntax for %s\n",
622 attr
->lDAPDisplayName
));
623 return WERR_DS_ATT_SCHEMA_REQ_SYNTAX
;
626 if (dsdb_schema_setup_ldb_schema_attribute(ldb
, attr
) != LDB_SUCCESS
) {
627 DEBUG(0,(__location__
": Unknown schema syntax for %s\n",
628 attr
->lDAPDisplayName
));
629 return WERR_DS_ATT_SCHEMA_REQ_SYNTAX
;
632 DLIST_ADD(schema
->attributes
, attr
);
636 WERROR
dsdb_class_from_ldb(struct dsdb_schema
*schema
,
637 struct ldb_message
*msg
)
640 struct dsdb_class
*obj
= talloc_zero(schema
, struct dsdb_class
);
644 GET_STRING_LDB(msg
, "cn", obj
, obj
, cn
, false);
645 GET_STRING_LDB(msg
, "lDAPDisplayName", obj
, obj
, lDAPDisplayName
, true);
646 GET_STRING_LDB(msg
, "governsID", obj
, obj
, governsID_oid
, true);
647 if (!schema
->prefixmap
|| schema
->prefixmap
->length
== 0) {
648 /* set an invalid value */
649 obj
->governsID_id
= 0xFFFFFFFF;
651 status
= dsdb_schema_pfm_make_attid(schema
->prefixmap
,
654 if (!W_ERROR_IS_OK(status
)) {
655 DEBUG(0,("%s: '%s': unable to map governsID %s: %s\n",
656 __location__
, obj
->lDAPDisplayName
, obj
->governsID_oid
,
657 win_errstr(status
)));
661 GET_GUID_LDB(msg
, "schemaIDGUID", obj
, schemaIDGUID
);
662 GET_GUID_LDB(msg
, "objectGUID", obj
, objectGUID
);
664 GET_UINT32_LDB(msg
, "objectClassCategory", obj
, objectClassCategory
);
665 GET_STRING_LDB(msg
, "rDNAttID", obj
, obj
, rDNAttID
, false);
666 GET_STRING_LDB(msg
, "defaultObjectCategory", obj
, obj
, defaultObjectCategory
, true);
668 GET_STRING_LDB(msg
, "subClassOf", obj
, obj
, subClassOf
, true);
670 GET_STRING_LIST_LDB(msg
, "systemAuxiliaryClass", obj
, obj
, systemAuxiliaryClass
, false);
671 GET_STRING_LIST_LDB(msg
, "auxiliaryClass", obj
, obj
, auxiliaryClass
, false);
673 GET_STRING_LIST_LDB(msg
, "systemMustContain", obj
, obj
, systemMustContain
, false);
674 GET_STRING_LIST_LDB(msg
, "systemMayContain", obj
, obj
, systemMayContain
, false);
675 GET_STRING_LIST_LDB(msg
, "mustContain", obj
, obj
, mustContain
, false);
676 GET_STRING_LIST_LDB(msg
, "mayContain", obj
, obj
, mayContain
, false);
678 GET_STRING_LIST_LDB(msg
, "systemPossSuperiors", obj
, obj
, systemPossSuperiors
, false);
679 GET_STRING_LIST_LDB(msg
, "possSuperiors", obj
, obj
, possSuperiors
, false);
681 GET_STRING_LDB(msg
, "defaultSecurityDescriptor", obj
, obj
, defaultSecurityDescriptor
, false);
683 GET_UINT32_LDB(msg
, "schemaFlagsEx", obj
, schemaFlagsEx
);
684 GET_BLOB_LDB(msg
, "msDs-Schema-Extensions", obj
, obj
, msDs_Schema_Extensions
);
686 GET_BOOL_LDB(msg
, "showInAdvancedViewOnly", obj
, showInAdvancedViewOnly
, false);
687 GET_STRING_LDB(msg
, "adminDisplayName", obj
, obj
, adminDisplayName
, false);
688 GET_STRING_LDB(msg
, "adminDescription", obj
, obj
, adminDescription
, false);
689 GET_STRING_LDB(msg
, "classDisplayName", obj
, obj
, classDisplayName
, false);
690 GET_BOOL_LDB(msg
, "defaultHidingValue", obj
, defaultHidingValue
, false);
691 GET_BOOL_LDB(msg
, "isDefunct", obj
, isDefunct
, false);
692 GET_BOOL_LDB(msg
, "systemOnly", obj
, systemOnly
, false);
694 DLIST_ADD(schema
->classes
, obj
);
698 #define dsdb_oom(error_string, mem_ctx) *error_string = talloc_asprintf(mem_ctx, "dsdb out of memory at %s:%d\n", __FILE__, __LINE__)
701 Create a DSDB schema from the ldb results provided. This is called
702 directly when the schema is provisioned from an on-disk LDIF file, or
703 from dsdb_schema_from_schema_dn in schema_fsmo
706 int dsdb_schema_from_ldb_results(TALLOC_CTX
*mem_ctx
, struct ldb_context
*ldb
,
707 struct smb_iconv_convenience
*iconv_convenience
,
708 struct ldb_result
*schema_res
,
709 struct ldb_result
*attrs_res
, struct ldb_result
*objectclass_res
,
710 struct dsdb_schema
**schema_out
,
715 const struct ldb_val
*prefix_val
;
716 const struct ldb_val
*info_val
;
717 struct ldb_val info_val_default
;
718 struct dsdb_schema
*schema
;
720 schema
= dsdb_new_schema(mem_ctx
, iconv_convenience
);
722 dsdb_oom(error_string
, mem_ctx
);
723 return LDB_ERR_OPERATIONS_ERROR
;
726 schema
->base_dn
= talloc_steal(schema
, schema_res
->msgs
[0]->dn
);
728 prefix_val
= ldb_msg_find_ldb_val(schema_res
->msgs
[0], "prefixMap");
730 *error_string
= talloc_asprintf(mem_ctx
,
731 "schema_fsmo_init: no prefixMap attribute found");
732 DEBUG(0,(__location__
": %s\n", *error_string
));
733 return LDB_ERR_CONSTRAINT_VIOLATION
;
735 info_val
= ldb_msg_find_ldb_val(schema_res
->msgs
[0], "schemaInfo");
737 struct dsdb_schema_info
*schema_info
;
739 status
= dsdb_schema_info_create(ldb
, false, mem_ctx
, &schema_info
);
740 if (!W_ERROR_IS_OK(status
)) {
741 *error_string
= talloc_asprintf(mem_ctx
,
742 "schema_fsmo_init: dsdb_schema_info_create() failed - %s",
744 DEBUG(0,(__location__
": %s\n", *error_string
));
745 return LDB_ERR_OPERATIONS_ERROR
;
747 status
= dsdb_blob_from_schema_info(schema_info
, mem_ctx
, &info_val_default
);
748 if (!W_ERROR_IS_OK(status
)) {
749 *error_string
= talloc_asprintf(mem_ctx
,
750 "schema_fsmo_init: dsdb_blob_from_schema_info() failed - %s",
752 DEBUG(0,(__location__
": %s\n", *error_string
));
753 return LDB_ERR_OPERATIONS_ERROR
;
755 info_val
= &info_val_default
;
758 status
= dsdb_load_oid_mappings_ldb(schema
, prefix_val
, info_val
);
759 if (!W_ERROR_IS_OK(status
)) {
760 *error_string
= talloc_asprintf(mem_ctx
,
761 "schema_fsmo_init: failed to load oid mappings: %s",
763 DEBUG(0,(__location__
": %s\n", *error_string
));
764 return LDB_ERR_CONSTRAINT_VIOLATION
;
767 for (i
=0; i
< attrs_res
->count
; i
++) {
768 status
= dsdb_attribute_from_ldb(ldb
, schema
, attrs_res
->msgs
[i
]);
769 if (!W_ERROR_IS_OK(status
)) {
770 *error_string
= talloc_asprintf(mem_ctx
,
771 "schema_fsmo_init: failed to load attribute definition: %s:%s",
772 ldb_dn_get_linearized(attrs_res
->msgs
[i
]->dn
),
774 DEBUG(0,(__location__
": %s\n", *error_string
));
775 return LDB_ERR_CONSTRAINT_VIOLATION
;
779 for (i
=0; i
< objectclass_res
->count
; i
++) {
780 status
= dsdb_class_from_ldb(schema
, objectclass_res
->msgs
[i
]);
781 if (!W_ERROR_IS_OK(status
)) {
782 *error_string
= talloc_asprintf(mem_ctx
,
783 "schema_fsmo_init: failed to load class definition: %s:%s",
784 ldb_dn_get_linearized(objectclass_res
->msgs
[i
]->dn
),
786 DEBUG(0,(__location__
": %s\n", *error_string
));
787 return LDB_ERR_CONSTRAINT_VIOLATION
;
791 schema
->fsmo
.master_dn
= ldb_msg_find_attr_as_dn(ldb
, schema
, schema_res
->msgs
[0], "fSMORoleOwner");
792 if (ldb_dn_compare(samdb_ntds_settings_dn(ldb
), schema
->fsmo
.master_dn
) == 0) {
793 schema
->fsmo
.we_are_master
= true;
795 schema
->fsmo
.we_are_master
= false;
798 DEBUG(5, ("schema_fsmo_init: we are master: %s\n",
799 (schema
->fsmo
.we_are_master
?"yes":"no")));
801 *schema_out
= schema
;
806 static const struct {
809 } name_mappings
[] = {
811 { "name", "1.2.840.113556.1.4.1" },
812 { "lDAPDisplayName", "1.2.840.113556.1.2.460" },
813 { "attributeID", "1.2.840.113556.1.2.30" },
814 { "schemaIDGUID", "1.2.840.113556.1.4.148" },
815 { "mAPIID", "1.2.840.113556.1.2.49" },
816 { "attributeSecurityGUID", "1.2.840.113556.1.4.149" },
817 { "searchFlags", "1.2.840.113556.1.2.334" },
818 { "systemFlags", "1.2.840.113556.1.4.375" },
819 { "isMemberOfPartialAttributeSet", "1.2.840.113556.1.4.639" },
820 { "linkID", "1.2.840.113556.1.2.50" },
821 { "attributeSyntax", "1.2.840.113556.1.2.32" },
822 { "oMSyntax", "1.2.840.113556.1.2.231" },
823 { "oMObjectClass", "1.2.840.113556.1.2.218" },
824 { "isSingleValued", "1.2.840.113556.1.2.33" },
825 { "rangeLower", "1.2.840.113556.1.2.34" },
826 { "rangeUpper", "1.2.840.113556.1.2.35" },
827 { "extendedCharsAllowed", "1.2.840.113556.1.2.380" },
828 { "schemaFlagsEx", "1.2.840.113556.1.4.120" },
829 { "msDs-Schema-Extensions", "1.2.840.113556.1.4.1440" },
830 { "showInAdvancedViewOnly", "1.2.840.113556.1.2.169" },
831 { "adminDisplayName", "1.2.840.113556.1.2.194" },
832 { "adminDescription", "1.2.840.113556.1.2.226" },
833 { "classDisplayName", "1.2.840.113556.1.4.610" },
834 { "isEphemeral", "1.2.840.113556.1.4.1212" },
835 { "isDefunct", "1.2.840.113556.1.4.661" },
836 { "systemOnly", "1.2.840.113556.1.4.170" },
837 { "governsID", "1.2.840.113556.1.2.22" },
838 { "objectClassCategory", "1.2.840.113556.1.2.370" },
839 { "rDNAttID", "1.2.840.113556.1.2.26" },
840 { "defaultObjectCategory", "1.2.840.113556.1.4.783" },
841 { "subClassOf", "1.2.840.113556.1.2.21" },
842 { "systemAuxiliaryClass", "1.2.840.113556.1.4.198" },
843 { "systemPossSuperiors", "1.2.840.113556.1.4.195" },
844 { "systemMustContain", "1.2.840.113556.1.4.197" },
845 { "systemMayContain", "1.2.840.113556.1.4.196" },
846 { "auxiliaryClass", "1.2.840.113556.1.2.351" },
847 { "possSuperiors", "1.2.840.113556.1.2.8" },
848 { "mustContain", "1.2.840.113556.1.2.24" },
849 { "mayContain", "1.2.840.113556.1.2.25" },
850 { "defaultSecurityDescriptor", "1.2.840.113556.1.4.224" },
851 { "defaultHidingValue", "1.2.840.113556.1.4.518" },
852 { "msDS-IntId", "1.2.840.113556.1.4.1716" },
855 static struct drsuapi_DsReplicaAttribute
*dsdb_find_object_attr_name(struct dsdb_schema
*schema
,
856 struct drsuapi_DsReplicaObject
*obj
,
863 const char *oid
= NULL
;
865 for(i
=0; i
< ARRAY_SIZE(name_mappings
); i
++) {
866 if (strcmp(name_mappings
[i
].name
, name
) != 0) continue;
868 oid
= name_mappings
[i
].oid
;
876 status
= dsdb_schema_pfm_make_attid(schema
->prefixmap
, oid
, &attid
);
877 if (!W_ERROR_IS_OK(status
)) {
881 for (i
=0; i
< obj
->attribute_ctr
.num_attributes
; i
++) {
882 if (obj
->attribute_ctr
.attributes
[i
].attid
!= attid
) continue;
885 return &obj
->attribute_ctr
.attributes
[i
];
891 #define GET_STRING_DS(s, r, attr, mem_ctx, p, elem, strict) do { \
892 struct drsuapi_DsReplicaAttribute *_a; \
893 _a = dsdb_find_object_attr_name(s, r, attr, NULL); \
894 if (strict && !_a) { \
895 d_printf("%s: %s == NULL\n", __location__, attr); \
896 return WERR_INVALID_PARAM; \
898 if (strict && _a->value_ctr.num_values != 1) { \
899 d_printf("%s: %s num_values == %u\n", __location__, attr, \
900 _a->value_ctr.num_values); \
901 return WERR_INVALID_PARAM; \
903 if (_a && _a->value_ctr.num_values >= 1) { \
905 if (!convert_string_talloc_convenience(mem_ctx, s->iconv_convenience, CH_UTF16, CH_UNIX, \
906 _a->value_ctr.values[0].blob->data, \
907 _a->value_ctr.values[0].blob->length, \
908 (void **)discard_const(&(p)->elem), &_ret, false)) { \
909 DEBUG(0,("%s: invalid data!\n", attr)); \
911 _a->value_ctr.values[0].blob->data, \
912 _a->value_ctr.values[0].blob->length); \
913 return WERR_FOOBAR; \
920 #define GET_UINT32_LIST_DS(s, r, attr, mem_ctx, p, elem) do { \
921 unsigned int list_counter; \
922 struct drsuapi_DsReplicaAttribute *_a; \
923 _a = dsdb_find_object_attr_name(s, r, attr, NULL); \
924 (p)->elem = _a ? talloc_array(mem_ctx, uint32_t, _a->value_ctr.num_values + 1) : NULL; \
925 for (list_counter=0; \
926 _a && list_counter < _a->value_ctr.num_values; \
928 if (_a->value_ctr.values[list_counter].blob->length != 4) { \
929 return WERR_INVALID_PARAM; \
931 (p)->elem[list_counter] = IVAL(_a->value_ctr.values[list_counter].blob->data, 0); \
933 if (_a) (p)->elem[list_counter] = 0; \
936 #define GET_BOOL_DS(s, r, attr, p, elem, strict) do { \
937 struct drsuapi_DsReplicaAttribute *_a; \
938 _a = dsdb_find_object_attr_name(s, r, attr, NULL); \
939 if (strict && !_a) { \
940 d_printf("%s: %s == NULL\n", __location__, attr); \
941 return WERR_INVALID_PARAM; \
943 if (strict && _a->value_ctr.num_values != 1) { \
944 d_printf("%s: %s num_values == %u\n", __location__, attr, \
945 (unsigned int)_a->value_ctr.num_values); \
946 return WERR_INVALID_PARAM; \
948 if (strict && !_a->value_ctr.values[0].blob) { \
949 d_printf("%s: %s data == NULL\n", __location__, attr); \
950 return WERR_INVALID_PARAM; \
952 if (strict && _a->value_ctr.values[0].blob->length != 4) { \
953 d_printf("%s: %s length == %u\n", __location__, attr, \
954 (unsigned int)_a->value_ctr.values[0].blob->length); \
955 return WERR_INVALID_PARAM; \
957 if (_a && _a->value_ctr.num_values >= 1 \
958 && _a->value_ctr.values[0].blob \
959 && _a->value_ctr.values[0].blob->length == 4) { \
960 (p)->elem = (IVAL(_a->value_ctr.values[0].blob->data,0)?true:false);\
966 #define GET_UINT32_DS(s, r, attr, p, elem, def_val) do { \
967 struct drsuapi_DsReplicaAttribute *_a; \
968 _a = dsdb_find_object_attr_name(s, r, attr, NULL); \
969 if (_a && _a->value_ctr.num_values >= 1 \
970 && _a->value_ctr.values[0].blob \
971 && _a->value_ctr.values[0].blob->length == 4) { \
972 (p)->elem = IVAL(_a->value_ctr.values[0].blob->data,0);\
974 (p)->elem = def_val; \
978 #define GET_UINT32_PTR_DS(s, r, attr, p, elem) do { \
979 struct drsuapi_DsReplicaAttribute *_a; \
980 _a = dsdb_find_object_attr_name(s, r, attr, NULL); \
981 if (_a && _a->value_ctr.num_values >= 1 \
982 && _a->value_ctr.values[0].blob \
983 && _a->value_ctr.values[0].blob->length == 4) { \
984 (p)->elem = talloc(mem_ctx, uint32_t); \
986 d_printf("%s: talloc failed for %s\n", __location__, attr); \
989 *(p)->elem = IVAL(_a->value_ctr.values[0].blob->data,0);\
995 #define GET_GUID_DS(s, r, attr, mem_ctx, p, elem) do { \
996 struct drsuapi_DsReplicaAttribute *_a; \
997 _a = dsdb_find_object_attr_name(s, r, attr, NULL); \
998 if (_a && _a->value_ctr.num_values >= 1 \
999 && _a->value_ctr.values[0].blob \
1000 && _a->value_ctr.values[0].blob->length == 16) { \
1001 NTSTATUS _nt_status = GUID_from_ndr_blob(_a->value_ctr.values[0].blob, &(p)->elem); \
1002 if (!NT_STATUS_IS_OK(_nt_status)) { \
1003 return ntstatus_to_werror(_nt_status); \
1006 ZERO_STRUCT((p)->elem);\
1010 #define GET_BLOB_DS(s, r, attr, mem_ctx, p, elem) do { \
1011 struct drsuapi_DsReplicaAttribute *_a; \
1012 _a = dsdb_find_object_attr_name(s, r, attr, NULL); \
1013 if (_a && _a->value_ctr.num_values >= 1 \
1014 && _a->value_ctr.values[0].blob) { \
1015 (p)->elem = *_a->value_ctr.values[0].blob;\
1016 talloc_steal(mem_ctx, (p)->elem.data); \
1018 ZERO_STRUCT((p)->elem);\
1022 WERROR
dsdb_attribute_from_drsuapi(struct ldb_context
*ldb
,
1023 struct dsdb_schema
*schema
,
1024 struct drsuapi_DsReplicaObject
*r
,
1025 TALLOC_CTX
*mem_ctx
,
1026 struct dsdb_attribute
*attr
)
1030 GET_STRING_DS(schema
, r
, "name", mem_ctx
, attr
, cn
, true);
1031 GET_STRING_DS(schema
, r
, "lDAPDisplayName", mem_ctx
, attr
, lDAPDisplayName
, true);
1032 GET_UINT32_DS(schema
, r
, "attributeID", attr
, attributeID_id
, 0xFFFFFFFF);
1033 status
= dsdb_schema_pfm_oid_from_attid(schema
->prefixmap
, attr
->attributeID_id
,
1034 mem_ctx
, &attr
->attributeID_oid
);
1035 if (!W_ERROR_IS_OK(status
)) {
1036 DEBUG(0,("%s: '%s': unable to map attributeID 0x%08X: %s\n",
1037 __location__
, attr
->lDAPDisplayName
, attr
->attributeID_id
,
1038 win_errstr(status
)));
1041 /* fetch msDS-IntId to be used in resolving ATTRTYP values */
1042 GET_UINT32_DS(schema
, r
, "msDS-IntId", attr
, msDS_IntId
, 0);
1044 GET_GUID_DS(schema
, r
, "schemaIDGUID", mem_ctx
, attr
, schemaIDGUID
);
1045 GET_UINT32_DS(schema
, r
, "mAPIID", attr
, mAPIID
, 0);
1047 GET_GUID_DS(schema
, r
, "attributeSecurityGUID", mem_ctx
, attr
, attributeSecurityGUID
);
1049 attr
->objectGUID
= r
->identifier
->guid
;
1051 GET_UINT32_DS(schema
, r
, "searchFlags", attr
, searchFlags
, 0);
1052 GET_UINT32_DS(schema
, r
, "systemFlags", attr
, systemFlags
, 0);
1053 GET_BOOL_DS(schema
, r
, "isMemberOfPartialAttributeSet", attr
, isMemberOfPartialAttributeSet
, false);
1054 GET_UINT32_DS(schema
, r
, "linkID", attr
, linkID
, 0);
1056 GET_UINT32_DS(schema
, r
, "attributeSyntax", attr
, attributeSyntax_id
, 0xFFFFFFFF);
1057 status
= dsdb_schema_pfm_oid_from_attid(schema
->prefixmap
, attr
->attributeSyntax_id
,
1058 mem_ctx
, &attr
->attributeSyntax_oid
);
1059 if (!W_ERROR_IS_OK(status
)) {
1060 DEBUG(0,("%s: '%s': unable to map attributeSyntax 0x%08X: %s\n",
1061 __location__
, attr
->lDAPDisplayName
, attr
->attributeSyntax_id
,
1062 win_errstr(status
)));
1065 GET_UINT32_DS(schema
, r
, "oMSyntax", attr
, oMSyntax
, 0);
1066 GET_BLOB_DS(schema
, r
, "oMObjectClass", mem_ctx
, attr
, oMObjectClass
);
1068 GET_BOOL_DS(schema
, r
, "isSingleValued", attr
, isSingleValued
, true);
1069 GET_UINT32_PTR_DS(schema
, r
, "rangeLower", attr
, rangeLower
);
1070 GET_UINT32_PTR_DS(schema
, r
, "rangeUpper", attr
, rangeUpper
);
1071 GET_BOOL_DS(schema
, r
, "extendedCharsAllowed", attr
, extendedCharsAllowed
, false);
1073 GET_UINT32_DS(schema
, r
, "schemaFlagsEx", attr
, schemaFlagsEx
, 0);
1074 GET_BLOB_DS(schema
, r
, "msDs-Schema-Extensions", mem_ctx
, attr
, msDs_Schema_Extensions
);
1076 GET_BOOL_DS(schema
, r
, "showInAdvancedViewOnly", attr
, showInAdvancedViewOnly
, false);
1077 GET_STRING_DS(schema
, r
, "adminDisplayName", mem_ctx
, attr
, adminDisplayName
, false);
1078 GET_STRING_DS(schema
, r
, "adminDescription", mem_ctx
, attr
, adminDescription
, false);
1079 GET_STRING_DS(schema
, r
, "classDisplayName", mem_ctx
, attr
, classDisplayName
, false);
1080 GET_BOOL_DS(schema
, r
, "isEphemeral", attr
, isEphemeral
, false);
1081 GET_BOOL_DS(schema
, r
, "isDefunct", attr
, isDefunct
, false);
1082 GET_BOOL_DS(schema
, r
, "systemOnly", attr
, systemOnly
, false);
1084 attr
->syntax
= dsdb_syntax_for_attribute(attr
);
1085 if (!attr
->syntax
) {
1086 DEBUG(0,(__location__
": Unknown schema syntax for %s\n",
1087 attr
->lDAPDisplayName
));
1088 return WERR_DS_ATT_SCHEMA_REQ_SYNTAX
;
1091 if (dsdb_schema_setup_ldb_schema_attribute(ldb
, attr
) != LDB_SUCCESS
) {
1092 DEBUG(0,(__location__
": Unknown schema syntax for %s\n",
1093 attr
->lDAPDisplayName
));
1094 return WERR_DS_ATT_SCHEMA_REQ_SYNTAX
;
1100 WERROR
dsdb_class_from_drsuapi(struct ldb_context
*ldb
,
1101 struct dsdb_schema
*schema
,
1102 struct drsuapi_DsReplicaObject
*r
,
1103 TALLOC_CTX
*mem_ctx
,
1104 struct dsdb_class
*obj
)
1107 struct drsuapi_DsReplicaAttribute
*attr
;
1110 GET_STRING_DS(schema
, r
, "name", mem_ctx
, obj
, cn
, true);
1111 GET_STRING_DS(schema
, r
, "lDAPDisplayName", mem_ctx
, obj
, lDAPDisplayName
, true);
1112 GET_UINT32_DS(schema
, r
, "governsID", obj
, governsID_id
, 0xFFFFFFFF);
1113 status
= dsdb_schema_pfm_oid_from_attid(schema
->prefixmap
, obj
->governsID_id
,
1114 mem_ctx
, &obj
->governsID_oid
);
1115 if (!W_ERROR_IS_OK(status
)) {
1116 DEBUG(0,("%s: '%s': unable to map governsID 0x%08X: %s\n",
1117 __location__
, obj
->lDAPDisplayName
, obj
->governsID_id
,
1118 win_errstr(status
)));
1121 GET_GUID_DS(schema
, r
, "schemaIDGUID", mem_ctx
, obj
, schemaIDGUID
);
1123 obj
->objectGUID
= r
->identifier
->guid
;
1125 GET_UINT32_DS(schema
, r
, "objectClassCategory", obj
, objectClassCategory
, 0);
1126 GET_STRING_DS(schema
, r
, "rDNAttID", mem_ctx
, obj
, rDNAttID
, false);
1128 attr
= dsdb_find_object_attr_name(schema
, r
, "defaultObjectCategory", NULL
);
1130 if (!attr
|| attr
->value_ctr
.num_values
!= 1 || !attr
->value_ctr
.values
[0].blob
) {
1131 d_printf("%s: no defaultObjectCategory supplied\n", __location__
);
1132 return WERR_INVALID_PARAM
;
1135 status
= dsdb_syntax_one_DN_drsuapi_to_ldb(mem_ctx
, ldb
, find_syntax_map_by_standard_oid(LDB_SYNTAX_DN
),
1136 schema
->iconv_convenience
, attr
->value_ctr
.values
[0].blob
, &blob
);
1137 if (!W_ERROR_IS_OK(status
)) {
1140 obj
->defaultObjectCategory
= (char *)blob
.data
;
1142 GET_UINT32_DS(schema
, r
, "subClassOf", obj
, subClassOf_id
, 0);
1144 GET_UINT32_LIST_DS(schema
, r
, "systemAuxiliaryClass", mem_ctx
, obj
, systemAuxiliaryClass_ids
);
1145 GET_UINT32_LIST_DS(schema
, r
, "auxiliaryClass", mem_ctx
, obj
, auxiliaryClass_ids
);
1147 GET_UINT32_LIST_DS(schema
, r
, "systemMustContain", mem_ctx
, obj
, systemMustContain_ids
);
1148 GET_UINT32_LIST_DS(schema
, r
, "systemMayContain", mem_ctx
, obj
, systemMayContain_ids
);
1149 GET_UINT32_LIST_DS(schema
, r
, "mustContain", mem_ctx
, obj
, mustContain_ids
);
1150 GET_UINT32_LIST_DS(schema
, r
, "mayContain", mem_ctx
, obj
, mayContain_ids
);
1152 GET_UINT32_LIST_DS(schema
, r
, "systemPossSuperiors", mem_ctx
, obj
, systemPossSuperiors_ids
);
1153 GET_UINT32_LIST_DS(schema
, r
, "possSuperiors", mem_ctx
, obj
, possSuperiors_ids
);
1155 GET_STRING_DS(schema
, r
, "defaultSecurityDescriptor", mem_ctx
, obj
, defaultSecurityDescriptor
, false);
1157 GET_UINT32_DS(schema
, r
, "schemaFlagsEx", obj
, schemaFlagsEx
, 0);
1158 GET_BLOB_DS(schema
, r
, "msDs-Schema-Extensions", mem_ctx
, obj
, msDs_Schema_Extensions
);
1160 GET_BOOL_DS(schema
, r
, "showInAdvancedViewOnly", obj
, showInAdvancedViewOnly
, false);
1161 GET_STRING_DS(schema
, r
, "adminDisplayName", mem_ctx
, obj
, adminDisplayName
, false);
1162 GET_STRING_DS(schema
, r
, "adminDescription", mem_ctx
, obj
, adminDescription
, false);
1163 GET_STRING_DS(schema
, r
, "classDisplayName", mem_ctx
, obj
, classDisplayName
, false);
1164 GET_BOOL_DS(schema
, r
, "defaultHidingValue", obj
, defaultHidingValue
, false);
1165 GET_BOOL_DS(schema
, r
, "isDefunct", obj
, isDefunct
, false);
1166 GET_BOOL_DS(schema
, r
, "systemOnly", obj
, systemOnly
, false);