Patrick Welche <prlw1@cam.ac.uk>
[netbsd-mini2440.git] / external / bsd / openldap / dist / servers / slapd / at.c
blobc8f97e7bed7c332d6020982e1eea2d58c93c506d
1 /* at.c - routines for dealing with attribute types */
2 /* $OpenLDAP: pkg/ldap/servers/slapd/at.c,v 1.84.2.6 2008/07/08 19:01:38 quanah Exp $ */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
5 * Copyright 1998-2008 The OpenLDAP Foundation.
6 * All rights reserved.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted only as authorized by the OpenLDAP
10 * Public License.
12 * A copy of this license is available in the file LICENSE in the
13 * top-level directory of the distribution or, alternatively, at
14 * <http://www.OpenLDAP.org/license.html>.
17 #include "portable.h"
19 #include <stdio.h>
21 #include <ac/ctype.h>
22 #include <ac/errno.h>
23 #include <ac/socket.h>
24 #include <ac/string.h>
25 #include <ac/time.h>
27 #include "slap.h"
30 const char *
31 at_syntax(
32 AttributeType *at )
34 for ( ; at != NULL; at = at->sat_sup ) {
35 if ( at->sat_syntax_oid ) {
36 return at->sat_syntax_oid;
40 assert( 0 );
42 return NULL;
45 int
46 is_at_syntax(
47 AttributeType *at,
48 const char *oid )
50 const char *syn_oid = at_syntax( at );
52 if ( syn_oid ) {
53 return strcmp( syn_oid, oid ) == 0;
56 return 0;
59 int is_at_subtype(
60 AttributeType *sub,
61 AttributeType *sup )
63 for( ; sub != NULL; sub = sub->sat_sup ) {
64 if( sub == sup ) return 1;
67 return 0;
70 struct aindexrec {
71 struct berval air_name;
72 AttributeType *air_at;
75 static Avlnode *attr_index = NULL;
76 static Avlnode *attr_cache = NULL;
77 static LDAP_STAILQ_HEAD(ATList, AttributeType) attr_list
78 = LDAP_STAILQ_HEAD_INITIALIZER(attr_list);
80 /* Last hardcoded attribute registered */
81 AttributeType *at_sys_tail;
83 int at_oc_cache;
85 static int
86 attr_index_cmp(
87 const void *v_air1,
88 const void *v_air2 )
90 const struct aindexrec *air1 = v_air1;
91 const struct aindexrec *air2 = v_air2;
92 int i = air1->air_name.bv_len - air2->air_name.bv_len;
93 if (i) return i;
94 return (strcasecmp( air1->air_name.bv_val, air2->air_name.bv_val ));
97 static int
98 attr_index_name_cmp(
99 const void *v_type,
100 const void *v_air )
102 const struct berval *type = v_type;
103 const struct aindexrec *air = v_air;
104 int i = type->bv_len - air->air_name.bv_len;
105 if (i) return i;
106 return (strncasecmp( type->bv_val, air->air_name.bv_val, type->bv_len ));
109 AttributeType *
110 at_find( const char *name )
112 struct berval bv;
114 bv.bv_val = (char *)name;
115 bv.bv_len = strlen( name );
117 return at_bvfind( &bv );
120 AttributeType *
121 at_bvfind( struct berval *name )
123 struct aindexrec *air;
125 if ( attr_cache ) {
126 air = avl_find( attr_cache, name, attr_index_name_cmp );
127 if ( air ) return air->air_at;
130 air = avl_find( attr_index, name, attr_index_name_cmp );
132 if ( air ) {
133 if ( air->air_at->sat_flags & SLAP_AT_DELETED ) {
134 air = NULL;
135 } else if (( slapMode & SLAP_TOOL_MODE ) && at_oc_cache ) {
136 avl_insert( &attr_cache, (caddr_t) air,
137 attr_index_cmp, avl_dup_error );
141 return air != NULL ? air->air_at : NULL;
145 at_append_to_list(
146 AttributeType *sat,
147 AttributeType ***listp )
149 AttributeType **list;
150 AttributeType **list1;
151 int size;
153 list = *listp;
154 if ( !list ) {
155 size = 2;
156 list = ch_calloc(size, sizeof(AttributeType *));
157 if ( !list ) {
158 return -1;
160 } else {
161 size = 0;
162 list1 = *listp;
163 while ( *list1 ) {
164 size++;
165 list1++;
167 size += 2;
168 list1 = ch_realloc(list, size*sizeof(AttributeType *));
169 if ( !list1 ) {
170 return -1;
172 list = list1;
174 list[size-2] = sat;
175 list[size-1] = NULL;
176 *listp = list;
177 return 0;
181 at_delete_from_list(
182 int pos,
183 AttributeType ***listp )
185 AttributeType **list;
186 AttributeType **list1;
187 int i;
188 int j;
190 if ( pos < 0 ) {
191 return -2;
193 list = *listp;
194 for ( i=0; list[i]; i++ )
196 if ( pos >= i ) {
197 return -2;
199 for ( i=pos, j=pos+1; list[j]; i++, j++ ) {
200 list[i] = list[j];
202 list[i] = NULL;
203 /* Tell the runtime this can be shrinked */
204 list1 = ch_realloc(list, (i+1)*sizeof(AttributeType **));
205 if ( !list1 ) {
206 return -1;
208 *listp = list1;
209 return 0;
213 at_find_in_list(
214 AttributeType *sat,
215 AttributeType **list )
217 int i;
219 if ( !list ) {
220 return -1;
222 for ( i=0; list[i]; i++ ) {
223 if ( sat == list[i] ) {
224 return i;
227 return -1;
230 static void
231 at_delete_names( AttributeType *at )
233 char **names = at->sat_names;
235 while (*names) {
236 struct aindexrec tmpair, *air;
238 ber_str2bv( *names, 0, 0, &tmpair.air_name );
239 tmpair.air_at = at;
240 air = (struct aindexrec *)avl_delete( &attr_index,
241 (caddr_t)&tmpair, attr_index_cmp );
242 assert( air != NULL );
243 ldap_memfree( air );
244 names++;
248 /* Mark the attribute as deleted, remove from list, and remove all its
249 * names from the AVL tree. Leave the OID in the tree.
251 void
252 at_delete( AttributeType *at )
254 at->sat_flags |= SLAP_AT_DELETED;
256 LDAP_STAILQ_REMOVE(&attr_list, at, AttributeType, sat_next);
258 at_delete_names( at );
261 static void
262 at_clean( AttributeType *a )
264 if ( a->sat_equality ) {
265 MatchingRule *mr;
267 mr = mr_find( a->sat_equality->smr_oid );
268 assert( mr != NULL );
269 if ( mr != a->sat_equality ) {
270 ch_free( a->sat_equality );
271 a->sat_equality = NULL;
275 assert( a->sat_syntax != NULL );
276 if ( a->sat_syntax != NULL ) {
277 Syntax *syn;
279 syn = syn_find( a->sat_syntax->ssyn_oid );
280 assert( syn != NULL );
281 if ( syn != a->sat_syntax ) {
282 ch_free( a->sat_syntax );
283 a->sat_syntax = NULL;
287 if ( a->sat_oidmacro ) {
288 ldap_memfree( a->sat_oidmacro );
289 a->sat_oidmacro = NULL;
291 if ( a->sat_soidmacro ) {
292 ldap_memfree( a->sat_soidmacro );
293 a->sat_soidmacro = NULL;
295 if ( a->sat_subtypes ) {
296 ldap_memfree( a->sat_subtypes );
297 a->sat_subtypes = NULL;
301 static void
302 at_destroy_one( void *v )
304 struct aindexrec *air = v;
305 AttributeType *a = air->air_at;
307 at_clean( a );
308 ad_destroy(a->sat_ad);
309 ldap_pvt_thread_mutex_destroy(&a->sat_ad_mutex);
310 ldap_attributetype_free((LDAPAttributeType *)a);
311 ldap_memfree(air);
314 void
315 at_destroy( void )
317 AttributeType *a;
319 while( !LDAP_STAILQ_EMPTY(&attr_list) ) {
320 a = LDAP_STAILQ_FIRST(&attr_list);
321 LDAP_STAILQ_REMOVE_HEAD(&attr_list, sat_next);
323 at_delete_names( a );
326 avl_free(attr_index, at_destroy_one);
328 if ( slap_schema.si_at_undefined ) {
329 ad_destroy(slap_schema.si_at_undefined->sat_ad);
332 if ( slap_schema.si_at_proxied ) {
333 ad_destroy(slap_schema.si_at_proxied->sat_ad);
338 at_start( AttributeType **at )
340 assert( at != NULL );
342 *at = LDAP_STAILQ_FIRST(&attr_list);
344 return (*at != NULL);
348 at_next( AttributeType **at )
350 assert( at != NULL );
352 #if 0 /* pedantic check: don't use this */
354 AttributeType *tmp = NULL;
356 LDAP_STAILQ_FOREACH(tmp,&attr_list,sat_next) {
357 if ( tmp == *at ) {
358 break;
362 assert( tmp != NULL );
364 #endif
366 *at = LDAP_STAILQ_NEXT(*at,sat_next);
368 return (*at != NULL);
372 * check whether the two attributeTypes actually __are__ identical,
373 * or rather inconsistent
375 static int
376 at_check_dup(
377 AttributeType *sat,
378 AttributeType *new_sat )
380 if ( new_sat->sat_oid != NULL ) {
381 if ( sat->sat_oid == NULL ) {
382 return SLAP_SCHERR_ATTR_INCONSISTENT;
385 if ( strcmp( sat->sat_oid, new_sat->sat_oid ) != 0 ) {
386 return SLAP_SCHERR_ATTR_INCONSISTENT;
389 } else {
390 if ( sat->sat_oid != NULL ) {
391 return SLAP_SCHERR_ATTR_INCONSISTENT;
395 if ( new_sat->sat_names ) {
396 int i;
398 if ( sat->sat_names == NULL ) {
399 return SLAP_SCHERR_ATTR_INCONSISTENT;
402 for ( i = 0; new_sat->sat_names[ i ]; i++ ) {
403 if ( sat->sat_names[ i ] == NULL ) {
404 return SLAP_SCHERR_ATTR_INCONSISTENT;
407 if ( strcasecmp( sat->sat_names[ i ],
408 new_sat->sat_names[ i ] ) != 0 )
410 return SLAP_SCHERR_ATTR_INCONSISTENT;
413 } else {
414 if ( sat->sat_names != NULL ) {
415 return SLAP_SCHERR_ATTR_INCONSISTENT;
419 return SLAP_SCHERR_ATTR_DUP;
422 static struct aindexrec *air_old;
424 static int
425 at_dup_error( void *left, void *right )
427 air_old = left;
428 return -1;
431 static int
432 at_insert(
433 AttributeType **rat,
434 AttributeType *prev,
435 const char **err )
437 struct aindexrec *air;
438 char **names = NULL;
439 AttributeType *sat = *rat;
441 if ( sat->sat_oid ) {
442 air = (struct aindexrec *)
443 ch_calloc( 1, sizeof(struct aindexrec) );
444 ber_str2bv( sat->sat_oid, 0, 0, &air->air_name );
445 air->air_at = sat;
446 air_old = NULL;
448 if ( avl_insert( &attr_index, (caddr_t) air,
449 attr_index_cmp, at_dup_error ) )
451 AttributeType *old_sat;
452 int rc;
454 *err = sat->sat_oid;
456 assert( air_old != NULL );
457 old_sat = air_old->air_at;
459 /* replacing a deleted definition? */
460 if ( old_sat->sat_flags & SLAP_AT_DELETED ) {
461 AttributeType tmp;
462 AttributeDescription *ad;
464 /* Keep old oid, free new oid;
465 * Keep old ads, free new ads;
466 * Keep old ad_mutex, free new ad_mutex;
467 * Keep new everything else, free old
469 tmp = *old_sat;
470 *old_sat = *sat;
471 old_sat->sat_oid = tmp.sat_oid;
472 tmp.sat_oid = sat->sat_oid;
473 old_sat->sat_ad = tmp.sat_ad;
474 tmp.sat_ad = sat->sat_ad;
475 old_sat->sat_ad_mutex = tmp.sat_ad_mutex;
476 tmp.sat_ad_mutex = sat->sat_ad_mutex;
477 *sat = tmp;
479 /* Check for basic ad pointing at old cname */
480 for ( ad = old_sat->sat_ad; ad; ad=ad->ad_next ) {
481 if ( ad->ad_cname.bv_val == sat->sat_cname.bv_val ) {
482 ad->ad_cname = old_sat->sat_cname;
483 break;
487 at_clean( sat );
488 at_destroy_one( air );
490 air = air_old;
491 sat = old_sat;
492 *rat = sat;
493 } else {
494 ldap_memfree( air );
496 rc = at_check_dup( old_sat, sat );
498 return rc;
501 /* FIX: temporal consistency check */
502 at_bvfind( &air->air_name );
505 names = sat->sat_names;
506 if ( names ) {
507 while ( *names ) {
508 air = (struct aindexrec *)
509 ch_calloc( 1, sizeof(struct aindexrec) );
510 ber_str2bv( *names, 0, 0, &air->air_name );
511 air->air_at = sat;
512 if ( avl_insert( &attr_index, (caddr_t) air,
513 attr_index_cmp, avl_dup_error ) )
515 AttributeType *old_sat;
516 int rc;
518 *err = *names;
520 old_sat = at_bvfind( &air->air_name );
521 assert( old_sat != NULL );
522 rc = at_check_dup( old_sat, sat );
524 ldap_memfree(air);
526 while ( names > sat->sat_names ) {
527 struct aindexrec tmpair;
529 names--;
530 ber_str2bv( *names, 0, 0, &tmpair.air_name );
531 tmpair.air_at = sat;
532 air = (struct aindexrec *)avl_delete( &attr_index,
533 (caddr_t)&tmpair, attr_index_cmp );
534 assert( air != NULL );
535 ldap_memfree( air );
538 if ( sat->sat_oid ) {
539 struct aindexrec tmpair;
541 ber_str2bv( sat->sat_oid, 0, 0, &tmpair.air_name );
542 tmpair.air_at = sat;
543 air = (struct aindexrec *)avl_delete( &attr_index,
544 (caddr_t)&tmpair, attr_index_cmp );
545 assert( air != NULL );
546 ldap_memfree( air );
549 return rc;
551 /* FIX: temporal consistency check */
552 at_bvfind(&air->air_name);
553 names++;
557 if ( sat->sat_oid ) {
558 slap_ad_undef_promote( sat->sat_oid, sat );
561 names = sat->sat_names;
562 if ( names ) {
563 while ( *names ) {
564 slap_ad_undef_promote( *names, sat );
565 names++;
569 if ( sat->sat_flags & SLAP_AT_HARDCODE ) {
570 prev = at_sys_tail;
571 at_sys_tail = sat;
573 if ( prev ) {
574 LDAP_STAILQ_INSERT_AFTER( &attr_list, prev, sat, sat_next );
575 } else {
576 LDAP_STAILQ_INSERT_TAIL( &attr_list, sat, sat_next );
579 return 0;
583 at_add(
584 LDAPAttributeType *at,
585 int user,
586 AttributeType **rsat,
587 AttributeType *prev,
588 const char **err )
590 AttributeType *sat = NULL;
591 MatchingRule *mr = NULL;
592 Syntax *syn = NULL;
593 int i;
594 int code = LDAP_SUCCESS;
595 char *cname = NULL;
596 char *oidm = NULL;
597 char *soidm = NULL;
599 if ( !at->at_oid ) {
600 *err = "";
601 return SLAP_SCHERR_ATTR_INCOMPLETE;
604 if ( !OID_LEADCHAR( at->at_oid[0] )) {
605 char *oid;
607 /* Expand OID macros */
608 oid = oidm_find( at->at_oid );
609 if ( !oid ) {
610 *err = at->at_oid;
611 return SLAP_SCHERR_OIDM;
613 if ( oid != at->at_oid ) {
614 oidm = at->at_oid;
615 at->at_oid = oid;
619 if ( at->at_syntax_oid && !OID_LEADCHAR( at->at_syntax_oid[0] )) {
620 char *oid;
622 /* Expand OID macros */
623 oid = oidm_find( at->at_syntax_oid );
624 if ( !oid ) {
625 *err = at->at_syntax_oid;
626 code = SLAP_SCHERR_OIDM;
627 goto error_return;
629 if ( oid != at->at_syntax_oid ) {
630 soidm = at->at_syntax_oid;
631 at->at_syntax_oid = oid;
635 if ( at->at_names && at->at_names[0] ) {
636 int i;
638 for( i=0; at->at_names[i]; i++ ) {
639 if( !slap_valid_descr( at->at_names[i] ) ) {
640 *err = at->at_names[i];
641 code = SLAP_SCHERR_BAD_DESCR;
642 goto error_return;
646 cname = at->at_names[0];
648 } else {
649 cname = at->at_oid;
653 *err = cname;
655 if ( !at->at_usage && at->at_no_user_mod ) {
656 /* user attribute must be modifable */
657 code = SLAP_SCHERR_ATTR_BAD_USAGE;
658 goto error_return;
661 if ( at->at_collective ) {
662 if( at->at_usage ) {
663 /* collective attributes cannot be operational */
664 code = SLAP_SCHERR_ATTR_BAD_USAGE;
665 goto error_return;
668 if( at->at_single_value ) {
669 /* collective attributes cannot be single-valued */
670 code = SLAP_SCHERR_ATTR_BAD_USAGE;
671 goto error_return;
675 sat = (AttributeType *) ch_calloc( 1, sizeof(AttributeType) );
676 AC_MEMCPY( &sat->sat_atype, at, sizeof(LDAPAttributeType));
678 sat->sat_cname.bv_val = cname;
679 sat->sat_cname.bv_len = strlen( cname );
680 sat->sat_oidmacro = oidm;
681 sat->sat_soidmacro = soidm;
682 ldap_pvt_thread_mutex_init(&sat->sat_ad_mutex);
684 if ( at->at_sup_oid ) {
685 AttributeType *supsat = at_find(at->at_sup_oid);
687 if ( supsat == NULL ) {
688 *err = at->at_sup_oid;
689 code = SLAP_SCHERR_ATTR_NOT_FOUND;
690 goto error_return;
693 sat->sat_sup = supsat;
695 if ( at_append_to_list(sat, &supsat->sat_subtypes) ) {
696 code = SLAP_SCHERR_OUTOFMEM;
697 goto error_return;
700 if ( sat->sat_usage != supsat->sat_usage ) {
701 /* subtypes must have same usage as their SUP */
702 code = SLAP_SCHERR_ATTR_BAD_USAGE;
703 goto error_return;
706 if ( supsat->sat_obsolete && !sat->sat_obsolete ) {
707 /* subtypes must be obsolete if super is */
708 code = SLAP_SCHERR_ATTR_BAD_SUP;
709 goto error_return;
712 if ( sat->sat_flags & SLAP_AT_FINAL ) {
713 /* cannot subtype a "final" attribute type */
714 code = SLAP_SCHERR_ATTR_BAD_SUP;
715 goto error_return;
720 * Inherit definitions from superiors. We only check the
721 * direct superior since that one has already inherited from
722 * its own superiorss
724 if ( sat->sat_sup ) {
725 sat->sat_syntax = sat->sat_sup->sat_syntax;
726 sat->sat_equality = sat->sat_sup->sat_equality;
727 sat->sat_approx = sat->sat_sup->sat_approx;
728 sat->sat_ordering = sat->sat_sup->sat_ordering;
729 sat->sat_substr = sat->sat_sup->sat_substr;
733 * check for X-ORDERED attributes
735 if ( sat->sat_extensions ) {
736 for (i=0; sat->sat_extensions[i]; i++) {
737 if (!strcasecmp( sat->sat_extensions[i]->lsei_name,
738 "X-ORDERED" ) && sat->sat_extensions[i]->lsei_values ) {
739 if ( !strcasecmp( sat->sat_extensions[i]->lsei_values[0],
740 "VALUES" )) {
741 sat->sat_flags |= SLAP_AT_ORDERED_VAL;
742 break;
743 } else if ( !strcasecmp( sat->sat_extensions[i]->lsei_values[0],
744 "SIBLINGS" )) {
745 sat->sat_flags |= SLAP_AT_ORDERED_SIB;
746 break;
752 if ( !user )
753 sat->sat_flags |= SLAP_AT_HARDCODE;
755 if ( at->at_syntax_oid ) {
756 syn = syn_find(sat->sat_syntax_oid);
757 if ( syn == NULL ) {
758 *err = sat->sat_syntax_oid;
759 code = SLAP_SCHERR_SYN_NOT_FOUND;
760 goto error_return;
763 if ( sat->sat_syntax != NULL && sat->sat_syntax != syn ) {
764 /* BEWARE: no loop detection! */
765 if ( syn_is_sup( sat->sat_syntax, syn ) ) {
766 code = SLAP_SCHERR_ATTR_BAD_SUP;
767 goto error_return;
771 sat->sat_syntax = syn;
773 } else if ( sat->sat_syntax == NULL ) {
774 code = SLAP_SCHERR_ATTR_INCOMPLETE;
775 goto error_return;
778 if ( sat->sat_equality_oid ) {
779 mr = mr_find(sat->sat_equality_oid);
781 if( mr == NULL ) {
782 *err = sat->sat_equality_oid;
783 code = SLAP_SCHERR_MR_NOT_FOUND;
784 goto error_return;
787 if(( mr->smr_usage & SLAP_MR_EQUALITY ) != SLAP_MR_EQUALITY ) {
788 *err = sat->sat_equality_oid;
789 code = SLAP_SCHERR_ATTR_BAD_MR;
790 goto error_return;
793 if( sat->sat_syntax != mr->smr_syntax ) {
794 if( mr->smr_compat_syntaxes == NULL ) {
795 *err = sat->sat_equality_oid;
796 code = SLAP_SCHERR_ATTR_BAD_MR;
797 goto error_return;
800 for(i=0; mr->smr_compat_syntaxes[i]; i++) {
801 if( sat->sat_syntax == mr->smr_compat_syntaxes[i] ) {
802 i = -1;
803 break;
807 if( i >= 0 ) {
808 *err = sat->sat_equality_oid;
809 code = SLAP_SCHERR_ATTR_BAD_MR;
810 goto error_return;
814 sat->sat_equality = mr;
815 sat->sat_approx = mr->smr_associated;
818 if ( sat->sat_ordering_oid ) {
819 if( !sat->sat_equality ) {
820 *err = sat->sat_ordering_oid;
821 code = SLAP_SCHERR_ATTR_BAD_MR;
822 goto error_return;
825 mr = mr_find(sat->sat_ordering_oid);
827 if( mr == NULL ) {
828 *err = sat->sat_ordering_oid;
829 code = SLAP_SCHERR_MR_NOT_FOUND;
830 goto error_return;
833 if(( mr->smr_usage & SLAP_MR_ORDERING ) != SLAP_MR_ORDERING ) {
834 *err = sat->sat_ordering_oid;
835 code = SLAP_SCHERR_ATTR_BAD_MR;
836 goto error_return;
839 if( sat->sat_syntax != mr->smr_syntax ) {
840 if( mr->smr_compat_syntaxes == NULL ) {
841 *err = sat->sat_ordering_oid;
842 code = SLAP_SCHERR_ATTR_BAD_MR;
843 goto error_return;
846 for(i=0; mr->smr_compat_syntaxes[i]; i++) {
847 if( sat->sat_syntax == mr->smr_compat_syntaxes[i] ) {
848 i = -1;
849 break;
853 if( i >= 0 ) {
854 *err = sat->sat_ordering_oid;
855 code = SLAP_SCHERR_ATTR_BAD_MR;
856 goto error_return;
860 sat->sat_ordering = mr;
863 if ( sat->sat_substr_oid ) {
864 if( !sat->sat_equality ) {
865 *err = sat->sat_substr_oid;
866 code = SLAP_SCHERR_ATTR_BAD_MR;
867 goto error_return;
870 mr = mr_find(sat->sat_substr_oid);
872 if( mr == NULL ) {
873 *err = sat->sat_substr_oid;
874 code = SLAP_SCHERR_MR_NOT_FOUND;
875 goto error_return;
878 if(( mr->smr_usage & SLAP_MR_SUBSTR ) != SLAP_MR_SUBSTR ) {
879 *err = sat->sat_substr_oid;
880 code = SLAP_SCHERR_ATTR_BAD_MR;
881 goto error_return;
884 /* due to funky LDAP builtin substring rules,
885 * we check against the equality rule assertion
886 * syntax and compat syntaxes instead of those
887 * associated with the substrings rule.
889 if( sat->sat_syntax != sat->sat_equality->smr_syntax ) {
890 if( sat->sat_equality->smr_compat_syntaxes == NULL ) {
891 *err = sat->sat_substr_oid;
892 code = SLAP_SCHERR_ATTR_BAD_MR;
893 goto error_return;
896 for(i=0; sat->sat_equality->smr_compat_syntaxes[i]; i++) {
897 if( sat->sat_syntax ==
898 sat->sat_equality->smr_compat_syntaxes[i] )
900 i = -1;
901 break;
905 if( i >= 0 ) {
906 *err = sat->sat_substr_oid;
907 code = SLAP_SCHERR_ATTR_BAD_MR;
908 goto error_return;
912 sat->sat_substr = mr;
915 code = at_insert( &sat, prev, err );
916 if ( code != 0 ) {
917 error_return:;
918 if ( sat ) {
919 ldap_pvt_thread_mutex_destroy( &sat->sat_ad_mutex );
920 ch_free( sat );
923 if ( oidm ) {
924 SLAP_FREE( at->at_oid );
925 at->at_oid = oidm;
928 } else if ( rsat ) {
929 *rsat = sat;
932 return code;
935 #ifdef LDAP_DEBUG
936 #ifdef SLAPD_UNUSED
937 static int
938 at_index_printnode( void *v_air, void *ignore )
940 struct aindexrec *air = v_air;
941 printf("%s = %s\n",
942 air->air_name.bv_val,
943 ldap_attributetype2str(&air->air_at->sat_atype) );
944 return( 0 );
947 static void
948 at_index_print( void )
950 printf("Printing attribute type index:\n");
951 (void) avl_apply( attr_index, at_index_printnode, 0, -1, AVL_INORDER );
953 #endif
954 #endif
956 void
957 at_unparse( BerVarray *res, AttributeType *start, AttributeType *end, int sys )
959 AttributeType *at;
960 int i, num;
961 struct berval bv, *bva = NULL, idx;
962 char ibuf[32];
964 if ( !start )
965 start = LDAP_STAILQ_FIRST( &attr_list );
967 /* count the result size */
968 i = 0;
969 for ( at=start; at; at=LDAP_STAILQ_NEXT(at, sat_next)) {
970 if ( sys && !(at->sat_flags & SLAP_AT_HARDCODE)) break;
971 i++;
972 if ( at == end ) break;
974 if (!i) return;
976 num = i;
977 bva = ch_malloc( (num+1) * sizeof(struct berval) );
978 BER_BVZERO( bva );
979 idx.bv_val = ibuf;
980 if ( sys ) {
981 idx.bv_len = 0;
982 ibuf[0] = '\0';
984 i = 0;
985 for ( at=start; at; at=LDAP_STAILQ_NEXT(at, sat_next)) {
986 LDAPAttributeType lat, *latp;
987 if ( sys && !(at->sat_flags & SLAP_AT_HARDCODE)) break;
988 if ( at->sat_oidmacro || at->sat_soidmacro ) {
989 lat = at->sat_atype;
990 if ( at->sat_oidmacro )
991 lat.at_oid = at->sat_oidmacro;
992 if ( at->sat_soidmacro )
993 lat.at_syntax_oid = at->sat_soidmacro;
994 latp = &lat;
995 } else {
996 latp = &at->sat_atype;
998 if ( ldap_attributetype2bv( latp, &bv ) == NULL ) {
999 ber_bvarray_free( bva );
1001 if ( !sys ) {
1002 idx.bv_len = sprintf(idx.bv_val, "{%d}", i);
1004 bva[i].bv_len = idx.bv_len + bv.bv_len;
1005 bva[i].bv_val = ch_malloc( bva[i].bv_len + 1 );
1006 strcpy( bva[i].bv_val, ibuf );
1007 strcpy( bva[i].bv_val + idx.bv_len, bv.bv_val );
1008 i++;
1009 bva[i].bv_val = NULL;
1010 ldap_memfree( bv.bv_val );
1011 if ( at == end ) break;
1013 *res = bva;
1017 at_schema_info( Entry *e )
1019 AttributeDescription *ad_attributeTypes = slap_schema.si_ad_attributeTypes;
1020 AttributeType *at;
1021 struct berval val;
1022 struct berval nval;
1024 LDAP_STAILQ_FOREACH(at,&attr_list,sat_next) {
1025 if( at->sat_flags & SLAP_AT_HIDE ) continue;
1027 if ( ldap_attributetype2bv( &at->sat_atype, &val ) == NULL ) {
1028 return -1;
1031 ber_str2bv( at->sat_oid, 0, 0, &nval );
1033 if( attr_merge_one( e, ad_attributeTypes, &val, &nval ) )
1035 return -1;
1037 ldap_memfree( val.bv_val );
1039 return 0;
1043 register_at( const char *def, AttributeDescription **rad, int dupok )
1045 LDAPAttributeType *at;
1046 int code, freeit = 0;
1047 const char *err;
1048 AttributeDescription *ad = NULL;
1050 at = ldap_str2attributetype( def, &code, &err, LDAP_SCHEMA_ALLOW_ALL );
1051 if ( !at ) {
1052 Debug( LDAP_DEBUG_ANY,
1053 "register_at: AttributeType \"%s\": %s, %s\n",
1054 def, ldap_scherr2str(code), err );
1055 return code;
1058 code = at_add( at, 0, NULL, NULL, &err );
1059 if ( code ) {
1060 if ( code == SLAP_SCHERR_ATTR_DUP && dupok ) {
1061 freeit = 1;
1063 } else {
1064 ldap_attributetype_free( at );
1065 Debug( LDAP_DEBUG_ANY,
1066 "register_at: AttributeType \"%s\": %s, %s\n",
1067 def, scherr2str(code), err );
1068 return code;
1071 code = slap_str2ad( at->at_names[0], &ad, &err );
1072 if ( freeit || code ) {
1073 ldap_attributetype_free( at );
1074 } else {
1075 ldap_memfree( at );
1077 if ( code ) {
1078 Debug( LDAP_DEBUG_ANY, "register_at: AttributeType \"%s\": %s\n",
1079 def, err, 0 );
1081 if ( rad ) *rad = ad;
1082 return code;