]> git.sur5r.net Git - openldap/blob - servers/slapd/at.c
Cleanup for C++
[openldap] / servers / slapd / at.c
1 /* at.c - routines for dealing with attribute types */
2 /* $OpenLDAP$ */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4  *
5  * Copyright 1998-2008 The OpenLDAP Foundation.
6  * All rights reserved.
7  *
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.
11  *
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>.
15  */
16
17 #include "portable.h"
18
19 #include <stdio.h>
20
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>
26
27 #include "slap.h"
28
29
30 const char *
31 at_syntax(
32         AttributeType   *at )
33 {
34         for ( ; at != NULL; at = at->sat_sup ) {
35                 if ( at->sat_syntax_oid ) {
36                         return at->sat_syntax_oid;
37                 }
38         }
39
40         assert( 0 );
41
42         return NULL;
43 }
44
45 int
46 is_at_syntax(
47         AttributeType   *at,
48         const char      *oid )
49 {
50         const char *syn_oid = at_syntax( at );
51
52         if ( syn_oid ) {
53                 return strcmp( syn_oid, oid ) == 0;
54         }
55
56         return 0;
57 }
58
59 int is_at_subtype(
60         AttributeType *sub,
61         AttributeType *sup )
62 {
63         for( ; sub != NULL; sub = sub->sat_sup ) {
64                 if( sub == sup ) return 1;
65         }
66
67         return 0;
68 }
69
70 struct aindexrec {
71         struct berval   air_name;
72         AttributeType   *air_at;
73 };
74
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);
79
80 /* Last hardcoded attribute registered */
81 AttributeType *at_sys_tail;
82
83 int at_oc_cache;
84
85 static int
86 attr_index_cmp(
87     const void  *v_air1,
88     const void  *v_air2 )
89 {
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 ));
95 }
96
97 static int
98 attr_index_name_cmp(
99     const void  *v_type,
100     const void  *v_air )
101 {
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 ));
107 }
108
109 AttributeType *
110 at_find( const char *name )
111 {
112         struct berval bv;
113
114         bv.bv_val = (char *)name;
115         bv.bv_len = strlen( name );
116
117         return at_bvfind( &bv );
118 }
119
120 AttributeType *
121 at_bvfind( struct berval *name )
122 {
123         struct aindexrec *air;
124
125         if ( attr_cache ) {
126                 air = avl_find( attr_cache, name, attr_index_name_cmp );
127                 if ( air ) return air->air_at;
128         }
129
130         air = avl_find( attr_index, name, attr_index_name_cmp );
131
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 );
138                 }
139         }
140
141         return air != NULL ? air->air_at : NULL;
142 }
143
144 int
145 at_append_to_list(
146     AttributeType       *sat,
147     AttributeType       ***listp )
148 {
149         AttributeType   **list;
150         AttributeType   **list1;
151         int             size;
152
153         list = *listp;
154         if ( !list ) {
155                 size = 2;
156                 list = ch_calloc(size, sizeof(AttributeType *));
157                 if ( !list ) {
158                         return -1;
159                 }
160         } else {
161                 size = 0;
162                 list1 = *listp;
163                 while ( *list1 ) {
164                         size++;
165                         list1++;
166                 }
167                 size += 2;
168                 list1 = ch_realloc(list, size*sizeof(AttributeType *));
169                 if ( !list1 ) {
170                         return -1;
171                 }
172                 list = list1;
173         }
174         list[size-2] = sat;
175         list[size-1] = NULL;
176         *listp = list;
177         return 0;
178 }
179
180 int
181 at_delete_from_list(
182     int                 pos,
183     AttributeType       ***listp )
184 {
185         AttributeType   **list;
186         AttributeType   **list1;
187         int             i;
188         int             j;
189
190         if ( pos < 0 ) {
191                 return -2;
192         }
193         list = *listp;
194         for ( i=0; list[i]; i++ )
195                 ;
196         if ( pos >= i ) {
197                 return -2;
198         }
199         for ( i=pos, j=pos+1; list[j]; i++, j++ ) {
200                 list[i] = list[j];
201         }
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;
207         }
208         *listp = list1;
209         return 0;
210 }
211
212 int
213 at_find_in_list(
214     AttributeType       *sat,
215     AttributeType       **list )
216 {
217         int     i;
218
219         if ( !list ) {
220                 return -1;
221         }
222         for ( i=0; list[i]; i++ ) {
223                 if ( sat == list[i] ) {
224                         return i;
225                 }
226         }
227         return -1;
228 }
229
230 static void
231 at_delete_names( AttributeType *at )
232 {
233         char                    **names = at->sat_names;
234
235         while (*names) {
236                 struct aindexrec        tmpair, *air;
237
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++;
245         }
246 }
247
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.
250  */
251 void
252 at_delete( AttributeType *at )
253 {
254         at->sat_flags |= SLAP_AT_DELETED;
255
256         LDAP_STAILQ_REMOVE(&attr_list, at, AttributeType, sat_next);
257
258         at_delete_names( at );
259 }
260
261 static void
262 at_clean( AttributeType *a )
263 {
264         if ( a->sat_equality ) {
265                 MatchingRule    *mr;
266
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;
272                 }
273         }
274
275         assert( a->sat_syntax != NULL );
276         if ( a->sat_syntax != NULL ) {
277                 Syntax          *syn;
278
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;
284                 }
285         }
286
287         if ( a->sat_oidmacro ) {
288                 ldap_memfree( a->sat_oidmacro );
289                 a->sat_oidmacro = NULL;
290         }
291         if ( a->sat_subtypes ) {
292                 ldap_memfree( a->sat_subtypes );
293                 a->sat_subtypes = NULL;
294         }
295 }
296
297 static void
298 at_destroy_one( void *v )
299 {
300         struct aindexrec *air = v;
301         AttributeType *a = air->air_at;
302
303         at_clean( a );
304         ad_destroy(a->sat_ad);
305         ldap_pvt_thread_mutex_destroy(&a->sat_ad_mutex);
306         ldap_attributetype_free((LDAPAttributeType *)a);
307         ldap_memfree(air);
308 }
309
310 void
311 at_destroy( void )
312 {
313         AttributeType *a;
314
315         while( !LDAP_STAILQ_EMPTY(&attr_list) ) {
316                 a = LDAP_STAILQ_FIRST(&attr_list);
317                 LDAP_STAILQ_REMOVE_HEAD(&attr_list, sat_next);
318
319                 at_delete_names( a );
320         }
321
322         avl_free(attr_index, at_destroy_one);
323
324         if ( slap_schema.si_at_undefined ) {
325                 ad_destroy(slap_schema.si_at_undefined->sat_ad);
326         }
327
328         if ( slap_schema.si_at_proxied ) {
329                 ad_destroy(slap_schema.si_at_proxied->sat_ad);
330         }
331 }
332
333 int
334 at_start( AttributeType **at )
335 {
336         assert( at != NULL );
337
338         *at = LDAP_STAILQ_FIRST(&attr_list);
339
340         return (*at != NULL);
341 }
342
343 int
344 at_next( AttributeType **at )
345 {
346         assert( at != NULL );
347
348 #if 0   /* pedantic check: don't use this */
349         {
350                 AttributeType *tmp = NULL;
351
352                 LDAP_STAILQ_FOREACH(tmp,&attr_list,sat_next) {
353                         if ( tmp == *at ) {
354                                 break;
355                         }
356                 }
357
358                 assert( tmp != NULL );
359         }
360 #endif
361
362         *at = LDAP_STAILQ_NEXT(*at,sat_next);
363
364         return (*at != NULL);
365 }
366
367 /*
368  * check whether the two attributeTypes actually __are__ identical,
369  * or rather inconsistent
370  */
371 static int
372 at_check_dup(
373         AttributeType           *sat,
374         AttributeType           *new_sat )
375 {
376         if ( new_sat->sat_oid != NULL ) {
377                 if ( sat->sat_oid == NULL ) {
378                         return SLAP_SCHERR_ATTR_INCONSISTENT;
379                 }
380
381                 if ( strcmp( sat->sat_oid, new_sat->sat_oid ) != 0 ) {
382                         return SLAP_SCHERR_ATTR_INCONSISTENT;
383                 }
384
385         } else {
386                 if ( sat->sat_oid != NULL ) {
387                         return SLAP_SCHERR_ATTR_INCONSISTENT;
388                 }
389         }
390
391         if ( new_sat->sat_names ) {
392                 int     i;
393
394                 if ( sat->sat_names == NULL ) {
395                         return SLAP_SCHERR_ATTR_INCONSISTENT;
396                 }
397
398                 for ( i = 0; new_sat->sat_names[ i ]; i++ ) {
399                         if ( sat->sat_names[ i ] == NULL ) {
400                                 return SLAP_SCHERR_ATTR_INCONSISTENT;
401                         }
402                         
403                         if ( strcasecmp( sat->sat_names[ i ],
404                                         new_sat->sat_names[ i ] ) != 0 )
405                         {
406                                 return SLAP_SCHERR_ATTR_INCONSISTENT;
407                         }
408                 }
409         } else {
410                 if ( sat->sat_names != NULL ) {
411                         return SLAP_SCHERR_ATTR_INCONSISTENT;
412                 }
413         }
414
415         return SLAP_SCHERR_ATTR_DUP;
416 }
417
418 static struct aindexrec *air_old;
419
420 static int
421 at_dup_error( void *left, void *right )
422 {
423         air_old = left;
424         return -1;
425 }
426
427 static int
428 at_insert(
429     AttributeType       **rat,
430         AttributeType   *prev,
431     const char          **err )
432 {
433         struct aindexrec        *air;
434         char                    **names = NULL;
435         AttributeType   *sat = *rat;
436
437         if ( sat->sat_oid ) {
438                 air = (struct aindexrec *)
439                         ch_calloc( 1, sizeof(struct aindexrec) );
440                 ber_str2bv( sat->sat_oid, 0, 0, &air->air_name );
441                 air->air_at = sat;
442                 air_old = NULL;
443
444                 if ( avl_insert( &attr_index, (caddr_t) air,
445                                  attr_index_cmp, at_dup_error ) )
446                 {
447                         AttributeType   *old_sat;
448                         int             rc;
449
450                         *err = sat->sat_oid;
451
452                         assert( air_old != NULL );
453                         old_sat = air_old->air_at;
454
455                         /* replacing a deleted definition? */
456                         if ( old_sat->sat_flags & SLAP_AT_DELETED ) {
457                                 AttributeType tmp;
458                                 AttributeDescription *ad;
459                                 
460                                 /* Keep old oid, free new oid;
461                                  * Keep old ads, free new ads;
462                                  * Keep old ad_mutex, free new ad_mutex;
463                                  * Keep new everything else, free old
464                                  */
465                                 tmp = *old_sat;
466                                 *old_sat = *sat;
467                                 old_sat->sat_oid = tmp.sat_oid;
468                                 tmp.sat_oid = sat->sat_oid;
469                                 old_sat->sat_ad = tmp.sat_ad;
470                                 tmp.sat_ad = sat->sat_ad;
471                                 old_sat->sat_ad_mutex = tmp.sat_ad_mutex;
472                                 tmp.sat_ad_mutex = sat->sat_ad_mutex;
473                                 *sat = tmp;
474
475                                 /* Check for basic ad pointing at old cname */
476                                 for ( ad = old_sat->sat_ad; ad; ad=ad->ad_next ) {
477                                         if ( ad->ad_cname.bv_val == sat->sat_cname.bv_val ) {
478                                                 ad->ad_cname = old_sat->sat_cname;
479                                                 break;
480                                         }
481                                 }
482
483                                 at_clean( sat );
484                                 at_destroy_one( air );
485
486                                 air = air_old;
487                                 sat = old_sat;
488                                 *rat = sat;
489                         } else {
490                                 ldap_memfree( air );
491
492                                 rc = at_check_dup( old_sat, sat );
493
494                                 return rc;
495                         }
496                 }
497                 /* FIX: temporal consistency check */
498                 at_bvfind( &air->air_name );
499         }
500
501         names = sat->sat_names;
502         if ( names ) {
503                 while ( *names ) {
504                         air = (struct aindexrec *)
505                                 ch_calloc( 1, sizeof(struct aindexrec) );
506                         ber_str2bv( *names, 0, 0, &air->air_name );
507                         air->air_at = sat;
508                         if ( avl_insert( &attr_index, (caddr_t) air,
509                                          attr_index_cmp, avl_dup_error ) )
510                         {
511                                 AttributeType   *old_sat;
512                                 int             rc;
513
514                                 *err = *names;
515
516                                 old_sat = at_bvfind( &air->air_name );
517                                 assert( old_sat != NULL );
518                                 rc = at_check_dup( old_sat, sat );
519
520                                 ldap_memfree(air);
521
522                                 while ( names > sat->sat_names ) {
523                                         struct aindexrec        tmpair;
524
525                                         names--;
526                                         ber_str2bv( *names, 0, 0, &tmpair.air_name );
527                                         tmpair.air_at = sat;
528                                         air = (struct aindexrec *)avl_delete( &attr_index,
529                                                 (caddr_t)&tmpair, attr_index_cmp );
530                                         assert( air != NULL );
531                                         ldap_memfree( air );
532                                 }
533
534                                 if ( sat->sat_oid ) {
535                                         struct aindexrec        tmpair;
536
537                                         ber_str2bv( sat->sat_oid, 0, 0, &tmpair.air_name );
538                                         tmpair.air_at = sat;
539                                         air = (struct aindexrec *)avl_delete( &attr_index,
540                                                 (caddr_t)&tmpair, attr_index_cmp );
541                                         assert( air != NULL );
542                                         ldap_memfree( air );
543                                 }
544
545                                 return rc;
546                         }
547                         /* FIX: temporal consistency check */
548                         at_bvfind(&air->air_name);
549                         names++;
550                 }
551         }
552
553         if ( sat->sat_oid ) {
554                 slap_ad_undef_promote( sat->sat_oid, sat );
555         }
556
557         names = sat->sat_names;
558         if ( names ) {
559                 while ( *names ) {
560                         slap_ad_undef_promote( *names, sat );
561                         names++;
562                 }
563         }
564
565         if ( sat->sat_flags & SLAP_AT_HARDCODE ) {
566                 prev = at_sys_tail;
567                 at_sys_tail = sat;
568         }
569         if ( prev ) {
570                 LDAP_STAILQ_INSERT_AFTER( &attr_list, prev, sat, sat_next );
571         } else {
572                 LDAP_STAILQ_INSERT_TAIL( &attr_list, sat, sat_next );
573         }
574
575         return 0;
576 }
577
578 int
579 at_add(
580         LDAPAttributeType       *at,
581         int                     user,
582         AttributeType           **rsat,
583         AttributeType   *prev,
584         const char              **err )
585 {
586         AttributeType   *sat = NULL;
587         MatchingRule    *mr = NULL;
588         Syntax          *syn = NULL;
589         int             i;
590         int             code = LDAP_SUCCESS;
591         char            *cname = NULL;
592         char            *oidm = NULL;
593
594         if ( !at->at_oid ) {
595                 *err = "";
596                 return SLAP_SCHERR_ATTR_INCOMPLETE;
597         }
598
599         if ( !OID_LEADCHAR( at->at_oid[0] )) {
600                 char    *oid;
601
602                 /* Expand OID macros */
603                 oid = oidm_find( at->at_oid );
604                 if ( !oid ) {
605                         *err = at->at_oid;
606                         return SLAP_SCHERR_OIDM;
607                 }
608                 if ( oid != at->at_oid ) {
609                         oidm = at->at_oid;
610                         at->at_oid = oid;
611                 }
612         }
613
614         if ( at->at_syntax_oid && !OID_LEADCHAR( at->at_syntax_oid[0] )) {
615                 char    *oid;
616
617                 /* Expand OID macros */
618                 oid = oidm_find( at->at_syntax_oid );
619                 if ( !oid ) {
620                         *err = at->at_syntax_oid;
621                         code = SLAP_SCHERR_OIDM;
622                         goto error_return;
623                 }
624                 if ( oid != at->at_syntax_oid ) {
625                         ldap_memfree( at->at_syntax_oid );
626                         at->at_syntax_oid = oid;
627                 }
628         }
629
630         if ( at->at_names && at->at_names[0] ) {
631                 int i;
632
633                 for( i=0; at->at_names[i]; i++ ) {
634                         if( !slap_valid_descr( at->at_names[i] ) ) {
635                                 *err = at->at_names[i];
636                                 code = SLAP_SCHERR_BAD_DESCR;
637                                 goto error_return;
638                         }
639                 }
640
641                 cname = at->at_names[0];
642
643         } else {
644                 cname = at->at_oid;
645
646         }
647
648         *err = cname;
649
650         if ( !at->at_usage && at->at_no_user_mod ) {
651                 /* user attribute must be modifable */
652                 code = SLAP_SCHERR_ATTR_BAD_USAGE;
653                 goto error_return;
654         }
655
656         if ( at->at_collective ) {
657                 if( at->at_usage ) {
658                         /* collective attributes cannot be operational */
659                         code = SLAP_SCHERR_ATTR_BAD_USAGE;
660                         goto error_return;
661                 }
662
663                 if( at->at_single_value ) {
664                         /* collective attributes cannot be single-valued */
665                         code = SLAP_SCHERR_ATTR_BAD_USAGE;
666                         goto error_return;
667                 }
668         }
669
670         sat = (AttributeType *) ch_calloc( 1, sizeof(AttributeType) );
671         AC_MEMCPY( &sat->sat_atype, at, sizeof(LDAPAttributeType));
672
673         sat->sat_cname.bv_val = cname;
674         sat->sat_cname.bv_len = strlen( cname );
675         sat->sat_oidmacro = oidm;
676         ldap_pvt_thread_mutex_init(&sat->sat_ad_mutex);
677
678         if ( at->at_sup_oid ) {
679                 AttributeType *supsat = at_find(at->at_sup_oid);
680
681                 if ( supsat == NULL ) {
682                         *err = at->at_sup_oid;
683                         code = SLAP_SCHERR_ATTR_NOT_FOUND;
684                         goto error_return;
685                 }
686
687                 sat->sat_sup = supsat;
688
689                 if ( at_append_to_list(sat, &supsat->sat_subtypes) ) {
690                         code = SLAP_SCHERR_OUTOFMEM;
691                         goto error_return;
692                 }
693
694                 if ( sat->sat_usage != supsat->sat_usage ) {
695                         /* subtypes must have same usage as their SUP */
696                         code = SLAP_SCHERR_ATTR_BAD_USAGE;
697                         goto error_return;
698                 }
699
700                 if ( supsat->sat_obsolete && !sat->sat_obsolete ) {
701                         /* subtypes must be obsolete if super is */
702                         code = SLAP_SCHERR_ATTR_BAD_SUP;
703                         goto error_return;
704                 }
705
706                 if ( sat->sat_flags & SLAP_AT_FINAL ) {
707                         /* cannot subtype a "final" attribute type */
708                         code = SLAP_SCHERR_ATTR_BAD_SUP;
709                         goto error_return;
710                 }
711         }
712
713         /*
714          * Inherit definitions from superiors.  We only check the
715          * direct superior since that one has already inherited from
716          * its own superiorss
717          */
718         if ( sat->sat_sup ) {
719                 sat->sat_syntax = sat->sat_sup->sat_syntax;
720                 sat->sat_equality = sat->sat_sup->sat_equality;
721                 sat->sat_approx = sat->sat_sup->sat_approx;
722                 sat->sat_ordering = sat->sat_sup->sat_ordering;
723                 sat->sat_substr = sat->sat_sup->sat_substr;
724         }
725
726         /*
727          * check for X-ORDERED attributes
728          */
729         if ( sat->sat_extensions ) {
730                 for (i=0; sat->sat_extensions[i]; i++) {
731                         if (!strcasecmp( sat->sat_extensions[i]->lsei_name,
732                                 "X-ORDERED" ) && sat->sat_extensions[i]->lsei_values ) {
733                                 if ( !strcasecmp( sat->sat_extensions[i]->lsei_values[0],
734                                         "VALUES" )) {
735                                         sat->sat_flags |= SLAP_AT_ORDERED_VAL;
736                                         break;
737                                 } else if ( !strcasecmp( sat->sat_extensions[i]->lsei_values[0],
738                                         "SIBLINGS" )) {
739                                         sat->sat_flags |= SLAP_AT_ORDERED_SIB;
740                                         break;
741                                 }
742                         }
743                 }
744         }
745
746         if ( !user )
747                 sat->sat_flags |= SLAP_AT_HARDCODE;
748
749         if ( at->at_syntax_oid ) {
750                 syn = syn_find(sat->sat_syntax_oid);
751                 if ( syn == NULL ) {
752                         *err = sat->sat_syntax_oid;
753                         code = SLAP_SCHERR_SYN_NOT_FOUND;
754                         goto error_return;
755                 }
756
757                 if ( sat->sat_syntax != NULL && sat->sat_syntax != syn ) {
758                         /* BEWARE: no loop detection! */
759                         if ( syn_is_sup( sat->sat_syntax, syn ) ) {
760                                 code = SLAP_SCHERR_ATTR_BAD_SUP;
761                                 goto error_return;
762                         }
763                 }
764
765                 sat->sat_syntax = syn;
766
767         } else if ( sat->sat_syntax == NULL ) {
768                 code = SLAP_SCHERR_ATTR_INCOMPLETE;
769                 goto error_return;
770         }
771
772         if ( sat->sat_equality_oid ) {
773                 mr = mr_find(sat->sat_equality_oid);
774
775                 if( mr == NULL ) {
776                         *err = sat->sat_equality_oid;
777                         code = SLAP_SCHERR_MR_NOT_FOUND;
778                         goto error_return;
779                 }
780
781                 if(( mr->smr_usage & SLAP_MR_EQUALITY ) != SLAP_MR_EQUALITY ) {
782                         *err = sat->sat_equality_oid;
783                         code = SLAP_SCHERR_ATTR_BAD_MR;
784                         goto error_return;
785                 }
786
787                 if( sat->sat_syntax != mr->smr_syntax ) {
788                         if( mr->smr_compat_syntaxes == NULL ) {
789                                 *err = sat->sat_equality_oid;
790                                 code = SLAP_SCHERR_ATTR_BAD_MR;
791                                 goto error_return;
792                         }
793
794                         for(i=0; mr->smr_compat_syntaxes[i]; i++) {
795                                 if( sat->sat_syntax == mr->smr_compat_syntaxes[i] ) {
796                                         i = -1;
797                                         break;
798                                 }
799                         }
800
801                         if( i >= 0 ) {
802                                 *err = sat->sat_equality_oid;
803                                 code = SLAP_SCHERR_ATTR_BAD_MR;
804                                 goto error_return;
805                         }
806                 }
807
808                 sat->sat_equality = mr;
809                 sat->sat_approx = mr->smr_associated;
810         }
811
812         if ( sat->sat_ordering_oid ) {
813                 if( !sat->sat_equality ) {
814                         *err = sat->sat_ordering_oid;
815                         code = SLAP_SCHERR_ATTR_BAD_MR;
816                         goto error_return;
817                 }
818
819                 mr = mr_find(sat->sat_ordering_oid);
820
821                 if( mr == NULL ) {
822                         *err = sat->sat_ordering_oid;
823                         code = SLAP_SCHERR_MR_NOT_FOUND;
824                         goto error_return;
825                 }
826
827                 if(( mr->smr_usage & SLAP_MR_ORDERING ) != SLAP_MR_ORDERING ) {
828                         *err = sat->sat_ordering_oid;
829                         code = SLAP_SCHERR_ATTR_BAD_MR;
830                         goto error_return;
831                 }
832
833                 if( sat->sat_syntax != mr->smr_syntax ) {
834                         if( mr->smr_compat_syntaxes == NULL ) {
835                                 *err = sat->sat_ordering_oid;
836                                 code = SLAP_SCHERR_ATTR_BAD_MR;
837                                 goto error_return;
838                         }
839
840                         for(i=0; mr->smr_compat_syntaxes[i]; i++) {
841                                 if( sat->sat_syntax == mr->smr_compat_syntaxes[i] ) {
842                                         i = -1;
843                                         break;
844                                 }
845                         }
846
847                         if( i >= 0 ) {
848                                 *err = sat->sat_ordering_oid;
849                                 code = SLAP_SCHERR_ATTR_BAD_MR;
850                                 goto error_return;
851                         }
852                 }
853
854                 sat->sat_ordering = mr;
855         }
856
857         if ( sat->sat_substr_oid ) {
858                 if( !sat->sat_equality ) {
859                         *err = sat->sat_substr_oid;
860                         code = SLAP_SCHERR_ATTR_BAD_MR;
861                         goto error_return;
862                 }
863
864                 mr = mr_find(sat->sat_substr_oid);
865
866                 if( mr == NULL ) {
867                         *err = sat->sat_substr_oid;
868                         code = SLAP_SCHERR_MR_NOT_FOUND;
869                         goto error_return;
870                 }
871
872                 if(( mr->smr_usage & SLAP_MR_SUBSTR ) != SLAP_MR_SUBSTR ) {
873                         *err = sat->sat_substr_oid;
874                         code = SLAP_SCHERR_ATTR_BAD_MR;
875                         goto error_return;
876                 }
877
878                 /* due to funky LDAP builtin substring rules,
879                  * we check against the equality rule assertion
880                  * syntax and compat syntaxes instead of those
881                  * associated with the substrings rule.
882                  */
883                 if( sat->sat_syntax != sat->sat_equality->smr_syntax ) {
884                         if( sat->sat_equality->smr_compat_syntaxes == NULL ) {
885                                 *err = sat->sat_substr_oid;
886                                 code = SLAP_SCHERR_ATTR_BAD_MR;
887                                 goto error_return;
888                         }
889
890                         for(i=0; sat->sat_equality->smr_compat_syntaxes[i]; i++) {
891                                 if( sat->sat_syntax ==
892                                         sat->sat_equality->smr_compat_syntaxes[i] )
893                                 {
894                                         i = -1;
895                                         break;
896                                 }
897                         }
898
899                         if( i >= 0 ) {
900                                 *err = sat->sat_substr_oid;
901                                 code = SLAP_SCHERR_ATTR_BAD_MR;
902                                 goto error_return;
903                         }
904                 }
905
906                 sat->sat_substr = mr;
907         }
908
909         code = at_insert( &sat, prev, err );
910         if ( code != 0 ) {
911 error_return:;
912                 if ( sat ) {
913                         ldap_pvt_thread_mutex_destroy( &sat->sat_ad_mutex );
914                         ch_free( sat );
915                 }
916
917                 if ( oidm ) {
918                         SLAP_FREE( at->at_oid );
919                         at->at_oid = oidm;
920                 }
921
922         } else if ( rsat ) {
923                 *rsat = sat;
924         }
925
926         return code;
927 }
928
929 #ifdef LDAP_DEBUG
930 #ifdef SLAPD_UNUSED
931 static int
932 at_index_printnode( void *v_air, void *ignore )
933 {
934         struct aindexrec *air = v_air;
935         printf("%s = %s\n",
936                 air->air_name.bv_val,
937                 ldap_attributetype2str(&air->air_at->sat_atype) );
938         return( 0 );
939 }
940
941 static void
942 at_index_print( void )
943 {
944         printf("Printing attribute type index:\n");
945         (void) avl_apply( attr_index, at_index_printnode, 0, -1, AVL_INORDER );
946 }
947 #endif
948 #endif
949
950 void
951 at_unparse( BerVarray *res, AttributeType *start, AttributeType *end, int sys )
952 {
953         AttributeType *at;
954         int i, num;
955         struct berval bv, *bva = NULL, idx;
956         char ibuf[32];
957
958         if ( !start )
959                 start = LDAP_STAILQ_FIRST( &attr_list );
960
961         /* count the result size */
962         i = 0;
963         for ( at=start; at; at=LDAP_STAILQ_NEXT(at, sat_next)) {
964                 if ( sys && !(at->sat_flags & SLAP_AT_HARDCODE)) break;
965                 i++;
966                 if ( at == end ) break;
967         }
968         if (!i) return;
969
970         num = i;
971         bva = ch_malloc( (num+1) * sizeof(struct berval) );
972         BER_BVZERO( bva );
973         idx.bv_val = ibuf;
974         if ( sys ) {
975                 idx.bv_len = 0;
976                 ibuf[0] = '\0';
977         }
978         i = 0;
979         for ( at=start; at; at=LDAP_STAILQ_NEXT(at, sat_next)) {
980                 LDAPAttributeType lat, *latp;
981                 if ( sys && !(at->sat_flags & SLAP_AT_HARDCODE)) break;
982                 if ( at->sat_oidmacro ) {
983                         lat = at->sat_atype;
984                         lat.at_oid = at->sat_oidmacro;
985                         latp = &lat;
986                 } else {
987                         latp = &at->sat_atype;
988                 }
989                 if ( ldap_attributetype2bv( latp, &bv ) == NULL ) {
990                         ber_bvarray_free( bva );
991                 }
992                 if ( !sys ) {
993                         idx.bv_len = sprintf(idx.bv_val, "{%d}", i);
994                 }
995                 bva[i].bv_len = idx.bv_len + bv.bv_len;
996                 bva[i].bv_val = ch_malloc( bva[i].bv_len + 1 );
997                 strcpy( bva[i].bv_val, ibuf );
998                 strcpy( bva[i].bv_val + idx.bv_len, bv.bv_val );
999                 i++;
1000                 bva[i].bv_val = NULL;
1001                 ldap_memfree( bv.bv_val );
1002                 if ( at == end ) break;
1003         }
1004         *res = bva;
1005 }
1006
1007 int
1008 at_schema_info( Entry *e )
1009 {
1010         AttributeDescription *ad_attributeTypes = slap_schema.si_ad_attributeTypes;
1011         AttributeType   *at;
1012         struct berval   val;
1013         struct berval   nval;
1014
1015         LDAP_STAILQ_FOREACH(at,&attr_list,sat_next) {
1016                 if( at->sat_flags & SLAP_AT_HIDE ) continue;
1017
1018                 if ( ldap_attributetype2bv( &at->sat_atype, &val ) == NULL ) {
1019                         return -1;
1020                 }
1021
1022                 ber_str2bv( at->sat_oid, 0, 0, &nval );
1023
1024                 if( attr_merge_one( e, ad_attributeTypes, &val, &nval ) )
1025                 {
1026                         return -1;
1027                 }
1028                 ldap_memfree( val.bv_val );
1029         }
1030         return 0;
1031 }
1032
1033 int
1034 register_at( char *def, AttributeDescription **rad, int dupok )
1035 {
1036         LDAPAttributeType *at;
1037         int code, freeit = 0;
1038         const char *err;
1039         AttributeDescription *ad = NULL;
1040
1041         at = ldap_str2attributetype( def, &code, &err, LDAP_SCHEMA_ALLOW_ALL );
1042         if ( !at ) {
1043                 Debug( LDAP_DEBUG_ANY,
1044                         "register_at: AttributeType \"%s\": %s, %s\n",
1045                                 def, ldap_scherr2str(code), err );
1046                 return code;
1047         }
1048
1049         code = at_add( at, 0, NULL, NULL, &err );
1050         if ( code ) {
1051                 if ( code == SLAP_SCHERR_ATTR_DUP && dupok ) {
1052                         freeit = 1;
1053
1054                 } else {
1055                         ldap_attributetype_free( at );
1056                         Debug( LDAP_DEBUG_ANY,
1057                                 "register_at: AttributeType \"%s\": %s, %s\n",
1058                                 def, scherr2str(code), err );
1059                         return code;
1060                 }
1061         }
1062         code = slap_str2ad( at->at_names[0], &ad, &err );
1063         if ( freeit || code ) {
1064                 ldap_attributetype_free( at );
1065         } else {
1066                 ldap_memfree( at );
1067         }
1068         if ( code ) {
1069                 Debug( LDAP_DEBUG_ANY, "register_at: AttributeType \"%s\": %s\n",
1070                         def, err, 0 );
1071         }
1072         if ( rad ) *rad = ad;
1073         return code;
1074 }