]> git.sur5r.net Git - openldap/blob - servers/slapd/at.c
3866108548f4cd916b9070ed5005bbb471a447cb
[openldap] / servers / slapd / at.c
1 /* $OpenLDAP$ */
2 /*
3  * Copyright 1998-1999 The OpenLDAP Foundation, All Rights Reserved.
4  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
5  */
6 /* at.c - routines for dealing with attribute types */
7
8 #include "portable.h"
9
10 #include <stdio.h>
11
12 #include <ac/ctype.h>
13 #include <ac/errno.h>
14 #include <ac/socket.h>
15 #include <ac/string.h>
16 #include <ac/time.h>
17
18 #include "ldap_pvt.h"
19 #include "slap.h"
20
21 #ifndef SLAPD_SCHEMA_NOT_COMPAT
22 char *
23 at_canonical_name( const char * a_type )
24 {
25         AttributeType   *atp;
26
27         atp=at_find(a_type);
28
29         if ( atp == NULL ) {
30                 return (char *) a_type;
31
32         } else if ( atp->sat_names
33                 && atp->sat_names[0] && (*(atp->sat_names[0]) != '\0') )
34         {
35                 return atp->sat_names[0];
36
37         } else if (atp->sat_oid && (*atp->sat_oid != '\0')) {
38                 return atp->sat_oid;
39         }
40
41         return (char *) a_type;
42 }
43
44 #define DEFAULT_SYNTAX  SYNTAX_CIS
45
46 /*
47  * attr_syntax - return the syntax of attribute type
48  */
49
50 int
51 attr_syntax( const char *type )
52 {
53         AttributeType   *sat;
54
55         sat = at_find(type);
56         if ( sat ) {
57                 return( sat->sat_syntax_compat );
58         }
59
60         return( DEFAULT_SYNTAX );
61 }
62
63 /*
64  * attr_syntax_config - process an attribute syntax config line
65  */
66
67 void
68 attr_syntax_config(
69     const char  *fname,
70     int         lineno,
71     int         argc,
72     char        **argv
73 )
74 {
75         char                    *save;
76         LDAP_ATTRIBUTE_TYPE     *at;
77         int                     lasti;
78         int                     code;
79         const char              *err;
80
81         if ( argc < 2 ) {
82                 Debug( LDAP_DEBUG_ANY,
83 "%s: line %d: missing name in \"attribute <name>+ <syntax>\" (ignored)\n",
84                     fname, lineno, 0 );
85                 return;
86         }
87
88         at = (LDAP_ATTRIBUTE_TYPE *)
89                 ch_calloc( 1, sizeof(LDAP_ATTRIBUTE_TYPE) );
90
91 #define SYNTAX_DS_OID   "1.3.6.1.4.1.1466.115.121.1.15"
92 #define SYNTAX_DSCE_OID "2.5.13.5"
93 #define SYNTAX_IA5_OID  "1.3.6.1.4.1.1466.115.121.1.26"
94 #define SYNTAX_IA5CE_OID        "1.3.6.1.4.1.1466.109.114.1"
95 #define SYNTAX_DN_OID   SLAPD_OID_DN_SYNTAX
96 #define SYNTAX_TEL_OID  "1.3.6.1.4.1.1466.115.121.1.50"
97 #define SYNTAX_BIN_OID  "1.3.6.1.4.1.1466.115.121.1.40" /* octetString */
98
99         lasti = argc - 1;
100         if ( strcasecmp( argv[lasti], "caseignorestring" ) == 0 ||
101             strcasecmp( argv[lasti], "cis" ) == 0 ) {
102                 at->at_syntax_oid = SYNTAX_DS_OID;
103                 at->at_equality_oid = "2.5.13.2";
104                 at->at_ordering_oid = "2.5.13.3";
105                 at->at_substr_oid = "2.5.13.4";
106
107         } else if ( strcasecmp( argv[lasti], "telephone" ) == 0 ||
108             strcasecmp( argv[lasti], "tel" ) == 0 ) {
109                 at->at_syntax_oid = SYNTAX_TEL_OID;
110                 at->at_equality_oid = "2.5.13.20";
111                 at->at_substr_oid = "2.5.13.21";
112
113         } else if ( strcasecmp( argv[lasti], "dn" ) == 0 ) {
114                 at->at_syntax_oid = SYNTAX_DN_OID;
115                 at->at_equality_oid = "2.5.13.1";
116
117         } else if ( strcasecmp( argv[lasti], "caseexactstring" ) == 0 ||
118             strcasecmp( argv[lasti], "ces" ) == 0 ) {
119                 at->at_syntax_oid = SYNTAX_DS_OID;
120                 at->at_equality_oid = SYNTAX_DSCE_OID;
121                 at->at_ordering_oid = "2.5.13.6";
122                 at->at_substr_oid = "2.5.13.7";
123
124         } else if ( strcasecmp( argv[lasti], "binary" ) == 0 ||
125             strcasecmp( argv[lasti], "bin" ) == 0 ) {
126                 /* bin -> octetString, not binary! */
127                 at->at_syntax_oid = SYNTAX_BIN_OID;
128                 at->at_equality_oid = "2.5.13.17";
129
130         } else {
131                 Debug( LDAP_DEBUG_ANY,
132             "%s: line %d: unknown syntax \"%s\" in attribute line (ignored)\n",
133                     fname, lineno, argv[lasti] );
134                 Debug( LDAP_DEBUG_ANY,
135     "possible syntaxes are \"cis\", \"ces\", \"tel\", \"dn\", or \"bin\"\n",
136                     0, 0, 0 );
137                 free( (AttributeType *) at );
138                 return;
139         }
140
141         save = argv[lasti];
142         argv[lasti] = NULL;
143         at->at_names = charray_dup( argv );
144         argv[lasti] = save;
145
146         code = at_add( at, &err );
147         if ( code ) {
148                 fprintf( stderr, "%s: line %d: %s %s\n",
149                          fname, lineno, scherr2str(code), err);
150                 exit( EXIT_FAILURE );
151         }
152
153         ldap_memfree(at);
154 }
155
156 int
157 at_fake_if_needed(
158     const char  *name
159 )
160 {
161         char *argv[3];
162
163         if ( at_find( name ) ) {
164                 return 0;
165         } else {
166                 argv[0] = (char*) name;
167                 argv[1] = "cis";
168                 argv[2] = NULL;
169                 attr_syntax_config( "implicit", 0, 2, argv );
170                 return 0;
171         }
172 }
173
174 #endif
175
176
177
178 struct aindexrec {
179         char            *air_name;
180         AttributeType   *air_at;
181 };
182
183 static Avlnode  *attr_index = NULL;
184 static AttributeType *attr_list = NULL;
185
186 static int
187 attr_index_cmp(
188     struct aindexrec    *air1,
189     struct aindexrec    *air2
190 )
191 {
192         return (strcasecmp( air1->air_name, air2->air_name ));
193 }
194
195 static int
196 attr_index_name_cmp(
197     char                *type,
198     struct aindexrec    *air
199 )
200 {
201         return (strcasecmp( type, air->air_name ));
202 }
203
204 AttributeType *
205 at_find(
206     const char          *name
207 )
208 {
209         struct aindexrec        *air;
210         char                    *tmpname;
211
212 #ifndef SLAPD_SCHEMA_NOT_COMPAT
213         /*
214          * The name may actually be an AttributeDescription, i.e. it may
215          * contain options.
216          */
217         /* Treat any attribute type with option as an unknown attribute type */
218         char *p = strchr( name, ';' );
219         if ( p ) {
220                 tmpname = ch_malloc( p-name+1 );
221                 strncpy( tmpname, name, p-name );
222                 tmpname[p-name] = '\0';
223         } else
224 #endif
225         {
226                 tmpname = (char *)name;
227         }
228
229         if ( (air = (struct aindexrec *) avl_find( attr_index, tmpname,
230             (AVL_CMP) attr_index_name_cmp )) != NULL ) {
231                 if ( tmpname != name )
232                         ldap_memfree( tmpname );
233                 return( air->air_at );
234         }
235
236         if ( tmpname != name )
237                 ldap_memfree( tmpname );
238         return( NULL );
239 }
240
241 int
242 at_append_to_list(
243     AttributeType       *sat,
244     AttributeType       ***listp
245 )
246 {
247         AttributeType   **list;
248         AttributeType   **list1;
249         int             size;
250
251         list = *listp;
252         if ( !list ) {
253                 size = 2;
254                 list = calloc(size, sizeof(AttributeType *));
255                 if ( !list ) {
256                         return -1;
257                 }
258         } else {
259                 size = 0;
260                 list1 = *listp;
261                 while ( *list1 ) {
262                         size++;
263                         list1++;
264                 }
265                 size += 2;
266                 list1 = realloc(list, size*sizeof(AttributeType *));
267                 if ( !list1 ) {
268                         return -1;
269                 }
270                 list = list1;
271         }
272         list[size-2] = sat;
273         list[size-1] = NULL;
274         *listp = list;
275         return 0;
276 }
277
278 int
279 at_delete_from_list(
280     int                 pos,
281     AttributeType       ***listp
282 )
283 {
284         AttributeType   **list;
285         AttributeType   **list1;
286         int             i;
287         int             j;
288
289         if ( pos < 0 ) {
290                 return -2;
291         }
292         list = *listp;
293         for ( i=0; list[i]; i++ )
294                 ;
295         if ( pos >= i ) {
296                 return -2;
297         }
298         for ( i=pos, j=pos+1; list[j]; i++, j++ ) {
299                 list[i] = list[j];
300         }
301         list[i] = NULL;
302         /* Tell the runtime this can be shrinked */
303         list1 = realloc(list, (i+1)*sizeof(AttributeType **));
304         if ( !list1 ) {
305                 return -1;
306         }
307         *listp = list1;
308         return 0;
309 }
310
311 int
312 at_find_in_list(
313     AttributeType       *sat,
314     AttributeType       **list
315 )
316 {
317         int     i;
318
319         if ( !list ) {
320                 return -1;
321         }
322         for ( i=0; list[i]; i++ ) {
323                 if ( sat == list[i] ) {
324                         return i;
325                 }
326         }
327         return -1;
328 }
329
330 static int
331 at_insert(
332     AttributeType       *sat,
333     const char          **err
334 )
335 {
336         AttributeType           **atp;
337         struct aindexrec        *air;
338         char                    **names;
339
340         atp = &attr_list;
341         while ( *atp != NULL ) {
342                 atp = &(*atp)->sat_next;
343         }
344         *atp = sat;
345
346         if ( sat->sat_oid ) {
347                 air = (struct aindexrec *)
348                         ch_calloc( 1, sizeof(struct aindexrec) );
349                 air->air_name = sat->sat_oid;
350                 air->air_at = sat;
351                 if ( avl_insert( &attr_index, (caddr_t) air,
352                                  (AVL_CMP) attr_index_cmp,
353                                  (AVL_DUP) avl_dup_error ) ) {
354                         *err = sat->sat_oid;
355                         ldap_memfree(air);
356                         return SLAP_SCHERR_DUP_ATTR;
357                 }
358                 /* FIX: temporal consistency check */
359                 at_find(air->air_name);
360         }
361
362         if ( (names = sat->sat_names) ) {
363                 while ( *names ) {
364                         air = (struct aindexrec *)
365                                 ch_calloc( 1, sizeof(struct aindexrec) );
366                         air->air_name = ch_strdup(*names);
367                         air->air_at = sat;
368                         if ( avl_insert( &attr_index, (caddr_t) air,
369                                          (AVL_CMP) attr_index_cmp,
370                                          (AVL_DUP) avl_dup_error ) ) {
371                                 *err = *names;
372                                 ldap_memfree(air->air_name);
373                                 ldap_memfree(air);
374                                 return SLAP_SCHERR_DUP_ATTR;
375                         }
376                         /* FIX: temporal consistency check */
377                         at_find(air->air_name);
378                         names++;
379                 }
380         }
381
382         return 0;
383 }
384
385 int
386 at_add(
387     LDAP_ATTRIBUTE_TYPE *at,
388     const char          **err
389 )
390 {
391         AttributeType   *sat;
392         MatchingRule    *mr;
393         Syntax          *syn;
394         int             code;
395         char                    *cname;
396
397         if ( at->at_names && at->at_names[0] ) {
398                 cname = at->at_names[0];
399         } else if ( at->at_oid ) {
400                 cname = at->at_oid;
401         } else {
402                 cname = "";
403                 return SLAP_SCHERR_ATTR_INCOMPLETE;
404         }
405         sat = (AttributeType *) ch_calloc( 1, sizeof(AttributeType) );
406         memcpy( &sat->sat_atype, at, sizeof(LDAP_ATTRIBUTE_TYPE));
407
408 #ifdef SLAPD_SCHEMA_NOT_COMPAT
409         sat->sat_cname = cname;
410 #endif
411
412         if ( at->at_sup_oid ) {
413                 AttributeType *supsat = at_find(at->at_sup_oid);
414
415                 if ( (supsat == NULL ) ) {
416                         *err = at->at_sup_oid;
417                         return SLAP_SCHERR_ATTR_NOT_FOUND;
418                 }
419
420                 sat->sat_sup = supsat;
421
422                 if ( at_append_to_list(sat, &supsat->sat_subtypes) ) {
423                         *err = cname;
424                         return SLAP_SCHERR_OUTOFMEM;
425                 }
426         }
427
428         /*
429          * Inherit definitions from superiors.  We only check the
430          * direct superior since that one has already inherited from
431          * its own superiorss
432          */
433         if ( sat->sat_sup ) {
434                 sat->sat_syntax = sat->sat_sup->sat_syntax;
435
436                 sat->sat_equality = sat->sat_sup->sat_equality;
437                 sat->sat_ordering = sat->sat_sup->sat_ordering;
438                 sat->sat_substr = sat->sat_sup->sat_substr;
439         }
440
441         if ( at->at_syntax_oid ) {
442                 if ( (syn = syn_find(sat->sat_syntax_oid)) ) {
443                         sat->sat_syntax = syn;
444                 } else {
445                         *err = sat->sat_syntax_oid;
446                         return SLAP_SCHERR_SYN_NOT_FOUND;
447                 }
448
449 #ifndef SLAPD_SCHEMA_NOT_COMPAT
450                 if ( !strcmp(at->at_syntax_oid, SYNTAX_DS_OID) ) {
451                         if ( at->at_equality_oid && (
452                                 !strcmp(at->at_equality_oid, SYNTAX_DSCE_OID) ) )
453                         {
454                                 sat->sat_syntax_compat = SYNTAX_CES;
455                         } else {
456                                 sat->sat_syntax_compat = SYNTAX_CIS;
457                         }
458
459                 } else if ( !strcmp(at->at_syntax_oid, SYNTAX_IA5_OID) ) {
460                         if ( at->at_equality_oid && (
461                                 !strcmp(at->at_equality_oid, SYNTAX_IA5CE_OID) ) )
462                         {
463                                 sat->sat_syntax_compat = SYNTAX_CES;
464                         } else {
465                                 sat->sat_syntax_compat = SYNTAX_CIS;
466                         }
467
468                 } else if ( !strcmp(at->at_syntax_oid, SYNTAX_DN_OID ) ) {
469                         sat->sat_syntax_compat = SYNTAX_CIS | SYNTAX_DN;
470
471                 } else if ( !strcmp(at->at_syntax_oid, SYNTAX_TEL_OID ) ) {
472                         sat->sat_syntax_compat = SYNTAX_CIS | SYNTAX_TEL;
473
474                 } else if ( !strcmp(at->at_syntax_oid, SYNTAX_BIN_OID ) ) {
475                         sat->sat_syntax_compat = SYNTAX_BIN;
476
477                 } else {
478                         sat->sat_syntax_compat = DEFAULT_SYNTAX;
479                 }
480 #endif
481
482         } else if ( sat->sat_syntax == NULL ) {
483                 return SLAP_SCHERR_ATTR_INCOMPLETE;
484         }
485
486         if ( sat->sat_equality_oid ) {
487                 if ( (mr = mr_find(sat->sat_equality_oid)) ) {
488                         sat->sat_equality = mr;
489                 } else {
490                         *err = sat->sat_equality_oid;
491                         return SLAP_SCHERR_MR_NOT_FOUND;
492                 }
493
494         }
495
496         if ( sat->sat_ordering_oid ) {
497                 if ( (mr = mr_find(sat->sat_ordering_oid)) ) {
498                         sat->sat_ordering = mr;
499                 } else {
500                         *err = sat->sat_ordering_oid;
501                         return SLAP_SCHERR_MR_NOT_FOUND;
502                 }
503         }
504
505         if ( sat->sat_substr_oid ) {
506                 if ( (mr = mr_find(sat->sat_substr_oid)) ) {
507                         sat->sat_substr = mr;
508                 } else {
509                         *err = sat->sat_substr_oid;
510                         return SLAP_SCHERR_MR_NOT_FOUND;
511                 }
512         }
513
514         code = at_insert(sat,err);
515         return code;
516 }
517
518 #ifdef LDAP_DEBUG
519 static int
520 at_index_printnode( struct aindexrec *air )
521 {
522
523         printf("%s = %s\n",
524                 air->air_name,
525                 ldap_attributetype2str(&air->air_at->sat_atype) );
526         return( 0 );
527 }
528
529 static void
530 at_index_print( void )
531 {
532         printf("Printing attribute type index:\n");
533         (void) avl_apply( attr_index, (AVL_APPLY) at_index_printnode,
534                 0, -1, AVL_INORDER );
535 }
536 #endif
537
538 #if defined( SLAPD_SCHEMA_DN )
539 int
540 at_schema_info( Entry *e )
541 {
542         struct berval   val;
543         struct berval   *vals[2];
544         AttributeType   *at;
545
546         vals[0] = &val;
547         vals[1] = NULL;
548
549         for ( at = attr_list; at; at = at->sat_next ) {
550                 val.bv_val = ldap_attributetype2str( &at->sat_atype );
551                 if ( val.bv_val ) {
552                         val.bv_len = strlen( val.bv_val );
553                         Debug( LDAP_DEBUG_TRACE, "Merging at [%ld] %s\n",
554                                (long) val.bv_len, val.bv_val, 0 );
555                         attr_merge( e, "attributeTypes", vals );
556                         ldap_memfree( val.bv_val );
557                 } else {
558                         return -1;
559                 }
560         }
561         return 0;
562 }
563 #endif