s4:schema - Change also here counters to "unsigned" where needed
[Samba/cd1.git] / source4 / dsdb / schema / schema_prefixmap.c
blob0ed078fa32f4747306b470604ccd77bbc3e4fca0
1 /*
2 Unix SMB/CIFS implementation.
4 DRS::prefixMap implementation
6 Copyright (C) Kamen Mazdrashki <kamen.mazdrashki@postpath.com> 2009
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/>.
22 #include "includes.h"
23 #include "dsdb/samdb/samdb.h"
24 #include "librpc/gen_ndr/ndr_drsuapi.h"
25 #include "librpc/gen_ndr/ndr_drsblobs.h"
26 #include "../lib/util/asn1.h"
29 /**
30 * Determine range type for supplied ATTID
32 enum dsdb_attid_type dsdb_pfm_get_attid_type(uint32_t attid)
34 if (attid <= 0x7FFFFFFF) {
35 return dsdb_attid_type_pfm;
37 else if (attid <= 0xBFFFFFFF) {
38 return dsdb_attid_type_intid;
40 else if (attid <= 0xFFFEFFFF) {
41 return dsdb_attid_type_reserved;
43 else {
44 return dsdb_attid_type_internal;
48 /**
49 * Allocates schema_prefixMap object in supplied memory context
51 static struct dsdb_schema_prefixmap *_dsdb_schema_prefixmap_talloc(TALLOC_CTX *mem_ctx,
52 uint32_t length)
54 struct dsdb_schema_prefixmap *pfm;
56 pfm = talloc_zero(mem_ctx, struct dsdb_schema_prefixmap);
57 if (!pfm) {
58 return NULL;
61 pfm->length = length;
62 pfm->prefixes = talloc_zero_array(pfm, struct dsdb_schema_prefixmap_oid,
63 pfm->length);
64 if (!pfm->prefixes) {
65 talloc_free(pfm);
66 return NULL;
69 return pfm;
72 /**
73 * Initial prefixMap creation according to:
74 * [MS-DRSR] section 5.12.2
76 WERROR dsdb_schema_pfm_new(TALLOC_CTX *mem_ctx, struct dsdb_schema_prefixmap **_pfm)
78 uint32_t i;
79 struct dsdb_schema_prefixmap *pfm;
80 const struct {
81 uint32_t id;
82 const char *oid_prefix;
83 } pfm_init_data[] = {
84 {.id=0x00000000, .oid_prefix="2.5.4"},
85 {.id=0x00000001, .oid_prefix="2.5.6"},
86 {.id=0x00000002, .oid_prefix="1.2.840.113556.1.2"},
87 {.id=0x00000003, .oid_prefix="1.2.840.113556.1.3"},
88 {.id=0x00000004, .oid_prefix="2.16.840.1.101.2.2.1"},
89 {.id=0x00000005, .oid_prefix="2.16.840.1.101.2.2.3"},
90 {.id=0x00000006, .oid_prefix="2.16.840.1.101.2.1.5"},
91 {.id=0x00000007, .oid_prefix="2.16.840.1.101.2.1.4"},
92 {.id=0x00000008, .oid_prefix="2.5.5"},
93 {.id=0x00000009, .oid_prefix="1.2.840.113556.1.4"},
94 {.id=0x0000000A, .oid_prefix="1.2.840.113556.1.5"},
95 {.id=0x00000013, .oid_prefix="0.9.2342.19200300.100"},
96 {.id=0x00000014, .oid_prefix="2.16.840.1.113730.3"},
97 {.id=0x00000015, .oid_prefix="0.9.2342.19200300.100.1"},
98 {.id=0x00000016, .oid_prefix="2.16.840.1.113730.3.1"},
99 {.id=0x00000017, .oid_prefix="1.2.840.113556.1.5.7000"},
100 {.id=0x00000018, .oid_prefix="2.5.21"},
101 {.id=0x00000019, .oid_prefix="2.5.18"},
102 {.id=0x0000001A, .oid_prefix="2.5.20"},
105 /* allocate mem for prefix map */
106 pfm = _dsdb_schema_prefixmap_talloc(mem_ctx, ARRAY_SIZE(pfm_init_data));
107 W_ERROR_HAVE_NO_MEMORY(pfm);
109 /* build prefixes */
110 for (i = 0; i < pfm->length; i++) {
111 if (!ber_write_partial_OID_String(pfm, &pfm->prefixes[i].bin_oid, pfm_init_data[i].oid_prefix)) {
112 talloc_free(pfm);
113 return WERR_INTERNAL_ERROR;
115 pfm->prefixes[i].id = pfm_init_data[i].id;
118 *_pfm = pfm;
120 return WERR_OK;
125 * Adds oid to prefix map.
126 * On success returns ID for newly added index
127 * or ID of existing entry that matches oid
128 * Reference: [MS-DRSR] section 5.12.2
130 * \param pfm prefixMap
131 * \param bin_oid OID prefix to be added to prefixMap
132 * \param pfm_id Location where to store prefixMap entry ID
134 static WERROR _dsdb_schema_pfm_add_entry(struct dsdb_schema_prefixmap *pfm, DATA_BLOB bin_oid, uint32_t *_idx)
136 uint32_t i;
137 struct dsdb_schema_prefixmap_oid * pfm_entry;
138 struct dsdb_schema_prefixmap_oid * prefixes_new;
140 /* dup memory for bin-oid prefix to be added */
141 bin_oid = data_blob_dup_talloc(pfm, &bin_oid);
142 W_ERROR_HAVE_NO_MEMORY(bin_oid.data);
144 /* make room for new entry */
145 prefixes_new = talloc_realloc(pfm, pfm->prefixes, struct dsdb_schema_prefixmap_oid, pfm->length + 1);
146 if (!prefixes_new) {
147 talloc_free(bin_oid.data);
148 return WERR_NOMEM;
150 pfm->prefixes = prefixes_new;
152 /* make new unique ID in prefixMap */
153 pfm_entry = &pfm->prefixes[pfm->length];
154 pfm_entry->id = 0;
155 for (i = 0; i < pfm->length; i++) {
156 if (pfm_entry->id < pfm->prefixes[i].id)
157 pfm_entry->id = pfm->prefixes[i].id;
160 /* add new bin-oid prefix */
161 pfm_entry->id++;
162 pfm_entry->bin_oid = bin_oid;
164 *_idx = pfm->length;
165 pfm->length++;
167 return WERR_OK;
172 * Make partial binary OID for supplied OID.
173 * Reference: [MS-DRSR] section 5.12.2
175 static WERROR _dsdb_pfm_make_binary_oid(const char *full_oid, TALLOC_CTX *mem_ctx,
176 DATA_BLOB *_bin_oid, uint32_t *_last_subid)
178 uint32_t last_subid;
179 const char *oid_subid;
181 /* make last sub-identifier value */
182 oid_subid = strrchr(full_oid, '.');
183 if (!oid_subid) {
184 return WERR_INVALID_PARAMETER;
186 oid_subid++;
187 last_subid = strtoul(oid_subid, NULL, 10);
189 /* encode oid in BER format */
190 if (!ber_write_OID_String(mem_ctx, _bin_oid, full_oid)) {
191 return WERR_INTERNAL_ERROR;
194 /* get the prefix of the OID */
195 if (last_subid < 128) {
196 _bin_oid->length -= 1;
197 } else {
198 _bin_oid->length -= 2;
201 /* return last_value if requested */
202 if (_last_subid) {
203 *_last_subid = last_subid;
206 return WERR_OK;
210 * Lookup partial-binary-oid in prefixMap
212 WERROR dsdb_schema_pfm_find_binary_oid(const struct dsdb_schema_prefixmap *pfm,
213 DATA_BLOB bin_oid,
214 uint32_t *_idx)
216 uint32_t i;
218 for (i = 0; i < pfm->length; i++) {
219 if (pfm->prefixes[i].bin_oid.length != bin_oid.length) {
220 continue;
223 if (memcmp(pfm->prefixes[i].bin_oid.data, bin_oid.data, bin_oid.length) == 0) {
224 if (_idx) {
225 *_idx = i;
227 return WERR_OK;
231 return WERR_DS_NO_MSDS_INTID;
235 * Lookup full-oid in prefixMap
236 * Note: this may be slow.
238 WERROR dsdb_schema_pfm_find_oid(const struct dsdb_schema_prefixmap *pfm,
239 const char *full_oid,
240 uint32_t *_idx)
242 WERROR werr;
243 DATA_BLOB bin_oid;
245 ZERO_STRUCT(bin_oid);
247 /* make partial-binary-oid to look for */
248 werr = _dsdb_pfm_make_binary_oid(full_oid, NULL, &bin_oid, NULL);
249 W_ERROR_NOT_OK_RETURN(werr);
251 /* lookup the partial-oid */
252 werr = dsdb_schema_pfm_find_binary_oid(pfm, bin_oid, _idx);
254 data_blob_free(&bin_oid);
256 return werr;
260 * Make ATTID for given OID
261 * Reference: [MS-DRSR] section 5.12.2
263 WERROR dsdb_schema_pfm_make_attid(struct dsdb_schema_prefixmap *pfm, const char *oid, uint32_t *attid)
265 WERROR werr;
266 uint32_t idx;
267 uint32_t lo_word, hi_word;
268 uint32_t last_subid;
269 DATA_BLOB bin_oid;
271 if (!pfm) {
272 return WERR_INVALID_PARAMETER;
274 if (!oid) {
275 return WERR_INVALID_PARAMETER;
278 werr = _dsdb_pfm_make_binary_oid(oid, pfm, &bin_oid, &last_subid);
279 W_ERROR_NOT_OK_RETURN(werr);
281 /* search the prefix in the prefix table, if none found, add
282 * one entry for new prefix.
284 werr = dsdb_schema_pfm_find_binary_oid(pfm, bin_oid, &idx);
285 if (W_ERROR_IS_OK(werr)) {
286 /* free memory allocated for bin_oid */
287 data_blob_free(&bin_oid);
288 } else {
289 /* entry does not exists, add it */
290 werr = _dsdb_schema_pfm_add_entry(pfm, bin_oid, &idx);
291 W_ERROR_NOT_OK_RETURN(werr);
294 /* compose the attid */
295 lo_word = last_subid % 16384; /* actually get lower 14 bits: lo_word & 0x3FFF */
296 if (last_subid >= 16384) {
297 /* mark it so that it is known to not be the whole lastValue
298 * This will raise 16-th bit*/
299 lo_word += 32768;
301 hi_word = pfm->prefixes[idx].id;
303 /* make ATTID:
304 * HIWORD is prefixMap id
305 * LOWORD is truncated binary-oid */
306 *attid = (hi_word * 65536) + lo_word;
308 return WERR_OK;
313 * Make OID for given ATTID.
314 * Reference: [MS-DRSR] section 5.12.2
316 WERROR dsdb_schema_pfm_oid_from_attid(struct dsdb_schema_prefixmap *pfm, uint32_t attid,
317 TALLOC_CTX *mem_ctx, const char **_oid)
319 uint32_t i;
320 uint32_t hi_word, lo_word;
321 DATA_BLOB bin_oid = {NULL, 0};
322 struct dsdb_schema_prefixmap_oid *pfm_entry;
323 WERROR werr = WERR_OK;
325 /* sanity check for attid requested */
326 if (dsdb_pfm_get_attid_type(attid) != dsdb_attid_type_pfm) {
327 return WERR_INVALID_PARAMETER;
330 /* crack attid value */
331 hi_word = attid >> 16;
332 lo_word = attid & 0xFFFF;
334 /* locate corRespoNding prefixMap entry */
335 pfm_entry = NULL;
336 for (i = 0; i < pfm->length; i++) {
337 if (hi_word == pfm->prefixes[i].id) {
338 pfm_entry = &pfm->prefixes[i];
339 break;
343 if (!pfm_entry) {
344 return WERR_INTERNAL_ERROR;
347 /* copy oid prefix making enough room */
348 bin_oid.length = pfm_entry->bin_oid.length + 2;
349 bin_oid.data = talloc_array(mem_ctx, uint8_t, bin_oid.length);
350 W_ERROR_HAVE_NO_MEMORY(bin_oid.data);
351 memcpy(bin_oid.data, pfm_entry->bin_oid.data, pfm_entry->bin_oid.length);
353 if (lo_word < 128) {
354 bin_oid.length = bin_oid.length - 1;
355 bin_oid.data[bin_oid.length-1] = lo_word;
357 else {
358 if (lo_word >= 32768) {
359 lo_word -= 32768;
361 bin_oid.data[bin_oid.length-2] = (0x80 | ((lo_word>>7) & 0x7f));
362 bin_oid.data[bin_oid.length-1] = lo_word & 0x7f;
365 if (!ber_read_OID_String(mem_ctx, bin_oid, _oid)) {
366 werr = WERR_INTERNAL_ERROR;
369 /* free locally allocated memory */
370 talloc_free(bin_oid.data);
372 return werr;
377 * Verifies drsuapi mappings.
379 static WERROR _dsdb_drsuapi_pfm_verify(const struct drsuapi_DsReplicaOIDMapping_Ctr *ctr,
380 bool have_schema_info)
382 uint32_t i;
383 uint32_t num_mappings;
384 struct drsuapi_DsReplicaOIDMapping *mapping;
386 /* check input params */
387 if (!ctr) {
388 return WERR_INVALID_PARAMETER;
390 if (!ctr->mappings) {
391 return WERR_INVALID_PARAMETER;
393 num_mappings = ctr->num_mappings;
395 if (have_schema_info) {
396 if (ctr->num_mappings < 2) {
397 return WERR_INVALID_PARAMETER;
400 /* check last entry for being special */
401 mapping = &ctr->mappings[ctr->num_mappings - 1];
402 if (!mapping->oid.binary_oid) {
403 return WERR_INVALID_PARAMETER;
405 if (mapping->id_prefix != 0) {
406 return WERR_INVALID_PARAMETER;
408 if (mapping->oid.length != 21) {
409 return WERR_INVALID_PARAMETER;
411 if (*mapping->oid.binary_oid != 0xFF) {
412 return WERR_INVALID_PARAMETER;
415 /* get number of read mappings in the map */
416 num_mappings--;
419 /* now, verify rest of entries for being at least not null */
420 for (i = 0; i < num_mappings; i++) {
421 mapping = &ctr->mappings[i];
422 if (!mapping->oid.length) {
423 return WERR_INVALID_PARAMETER;
425 if (!mapping->oid.binary_oid) {
426 return WERR_INVALID_PARAMETER;
428 /* check it is not the special entry */
429 if (*mapping->oid.binary_oid == 0xFF) {
430 return WERR_INVALID_PARAMETER;
434 return WERR_OK;
438 * Convert drsuapi_ prefix map to prefixMap internal presentation.
440 * \param ctr Pointer to drsuapi_DsReplicaOIDMapping_Ctr which represents drsuapi_ prefixMap
441 * \param have_schema_info if drsuapi_prefixMap have schem_info in it or not
442 * \param mem_ctx TALLOC_CTX to make allocations in
443 * \param _pfm Out pointer to hold newly created prefixMap
444 * \param _schema_info Out param to store schema_info to. If NULL, schema_info is not decoded
446 WERROR dsdb_schema_pfm_from_drsuapi_pfm(const struct drsuapi_DsReplicaOIDMapping_Ctr *ctr,
447 bool have_schema_info,
448 TALLOC_CTX *mem_ctx,
449 struct dsdb_schema_prefixmap **_pfm,
450 const char **_schema_info)
452 WERROR werr;
453 uint32_t i;
454 DATA_BLOB blob;
455 uint32_t num_mappings;
456 struct dsdb_schema_prefixmap *pfm;
458 if (!_pfm) {
459 return WERR_INVALID_PARAMETER;
463 * error out if schema_info is requested
464 * but it is not in the drsuapi_prefixMap
466 if (_schema_info && !have_schema_info) {
467 return WERR_INVALID_PARAMETER;
470 /* verify drsuapi_pefixMap */
471 werr =_dsdb_drsuapi_pfm_verify(ctr, have_schema_info);
472 W_ERROR_NOT_OK_RETURN(werr);
474 /* allocate mem for prefix map */
475 num_mappings = ctr->num_mappings;
476 if (have_schema_info) {
477 num_mappings--;
479 pfm = _dsdb_schema_prefixmap_talloc(mem_ctx, num_mappings);
480 W_ERROR_HAVE_NO_MEMORY(pfm);
482 /* copy entries from drsuapi_prefixMap */
483 for (i = 0; i < pfm->length; i++) {
484 blob = data_blob_talloc(pfm,
485 ctr->mappings[i].oid.binary_oid,
486 ctr->mappings[i].oid.length);
487 if (!blob.data) {
488 talloc_free(pfm);
489 return WERR_NOMEM;
491 pfm->prefixes[i].id = ctr->mappings[i].id_prefix;
492 pfm->prefixes[i].bin_oid = blob;
495 /* fetch schema_info if requested */
496 if (_schema_info) {
497 /* by this time, i should have this value,
498 * but set it here for clarity */
499 i = ctr->num_mappings - 1;
501 *_schema_info = hex_encode_talloc(mem_ctx,
502 ctr->mappings[i].oid.binary_oid,
503 ctr->mappings[i].oid.length);
504 if (!*_schema_info) {
505 talloc_free(pfm);
506 return WERR_NOMEM;
510 /* schema_prefixMap created successfully */
511 *_pfm = pfm;
513 return WERR_OK;
517 * Convert drsuapi_ prefix map to prefixMap internal presentation.
519 * \param pfm Schema prefixMap to be converted
520 * \param schema_info schema_info string - if NULL, we don't need it
521 * \param mem_ctx TALLOC_CTX to make allocations in
522 * \param _ctr Out pointer to drsuapi_DsReplicaOIDMapping_Ctr prefix map structure
524 WERROR dsdb_drsuapi_pfm_from_schema_pfm(const struct dsdb_schema_prefixmap *pfm,
525 const char *schema_info,
526 TALLOC_CTX *mem_ctx,
527 struct drsuapi_DsReplicaOIDMapping_Ctr **_ctr)
529 uint32_t i;
530 DATA_BLOB blob;
531 struct drsuapi_DsReplicaOIDMapping_Ctr *ctr;
533 if (!_ctr) {
534 return WERR_INVALID_PARAMETER;
536 if (!pfm) {
537 return WERR_INVALID_PARAMETER;
539 if (pfm->length == 0) {
540 return WERR_INVALID_PARAMETER;
543 /* allocate memory for the structure */
544 ctr = talloc_zero(mem_ctx, struct drsuapi_DsReplicaOIDMapping_Ctr);
545 W_ERROR_HAVE_NO_MEMORY(ctr);
547 ctr->num_mappings = (schema_info ? pfm->length + 1 : pfm->length);
548 ctr->mappings = talloc_array(ctr, struct drsuapi_DsReplicaOIDMapping, ctr->num_mappings);
549 if (!ctr->mappings) {
550 talloc_free(ctr);
551 return WERR_NOMEM;
554 /* copy entries from schema_prefixMap */
555 for (i = 0; i < pfm->length; i++) {
556 blob = data_blob_dup_talloc(ctr, &pfm->prefixes[i].bin_oid);
557 if (!blob.data) {
558 talloc_free(ctr);
559 return WERR_NOMEM;
561 ctr->mappings[i].id_prefix = pfm->prefixes[i].id;
562 ctr->mappings[i].oid.length = blob.length;
563 ctr->mappings[i].oid.binary_oid = blob.data;
566 /* make schema_info entry if needed */
567 if (schema_info) {
568 /* by this time, i should have this value,
569 * but set it here for clarity */
570 i = ctr->num_mappings - 1;
572 blob = strhex_to_data_blob(ctr, schema_info);
573 if (!blob.data) {
574 talloc_free(ctr);
575 return WERR_NOMEM;
578 ctr->mappings[i].id_prefix = 0;
579 ctr->mappings[i].oid.length = blob.length;
580 ctr->mappings[i].oid.binary_oid = blob.data;
583 /* drsuapi_prefixMap constructed successfully */
584 *_ctr = ctr;
586 return WERR_OK;
590 * Verifies schema prefixMap and drsuapi prefixMap are same.
591 * Note that we just need to verify pfm contains prefixes
592 * from ctr, not that those prefixes has same id_prefix.
594 WERROR dsdb_schema_pfm_contains_drsuapi_pfm(const struct dsdb_schema_prefixmap *pfm,
595 const struct drsuapi_DsReplicaOIDMapping_Ctr *ctr)
597 WERROR werr;
598 uint32_t i;
599 uint32_t idx;
600 DATA_BLOB bin_oid;
602 /* verify drsuapi_pefixMap */
603 werr = _dsdb_drsuapi_pfm_verify(ctr, true);
604 W_ERROR_NOT_OK_RETURN(werr);
606 /* check pfm contains every entry from ctr, except the last one */
607 for (i = 0; i < ctr->num_mappings - 1; i++) {
608 bin_oid.length = ctr->mappings[i].oid.length;
609 bin_oid.data = ctr->mappings[i].oid.binary_oid;
611 werr = dsdb_schema_pfm_find_binary_oid(pfm, bin_oid, &idx);
612 if (!W_ERROR_IS_OK(werr)) {
613 return WERR_DS_DRA_SCHEMA_MISMATCH;
617 return WERR_OK;