]> git.sur5r.net Git - openldap/blob - servers/slapd/schema_init.c
SLAPD_SCHEMA_NOT_COMPAT: ACL cleanup (not yet working)
[openldap] / servers / slapd / schema_init.c
1 /* schema_init.c - init builtin schema */
2 /* $OpenLDAP$ */
3 /*
4  * Copyright 1998-2000 The OpenLDAP Foundation, All Rights Reserved.
5  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
6  */
7
8 #include "portable.h"
9
10 #include <stdio.h>
11
12 #include <ac/ctype.h>
13 #include <ac/string.h>
14 #include <ac/socket.h>
15
16 #include "slap.h"
17 #include "ldap_pvt.h"
18
19 static int
20 dnValidate(
21         Syntax *syntax,
22         struct berval *in )
23 {
24         int rc;
25         char *dn;
26
27         if( in->bv_len == 0 ) return LDAP_SUCCESS;
28
29         dn = ch_strdup( in->bv_val );
30
31         rc = dn_validate( dn ) == NULL
32                 ? LDAP_INVALID_SYNTAX : LDAP_SUCCESS;
33
34         ch_free( dn );
35         return rc;
36 }
37
38 static int
39 dnNormalize(
40         Syntax *syntax,
41         struct berval *val,
42         struct berval **normalized )
43 {
44         struct berval *out = ber_bvdup( val );
45
46         if( out->bv_len != 0 ) {
47                 char *dn;
48 #ifdef USE_DN_NORMALIZE
49                 dn = dn_normalize( out->bv_val );
50 #else
51                 dn = dn_validate( out->bv_val );
52 #endif
53
54                 if( dn == NULL ) {
55                         ber_bvfree( out );
56                         return LDAP_INVALID_SYNTAX;
57                 }
58
59                 out->bv_val = dn;
60                 out->bv_len = strlen( dn );
61         }
62
63         *normalized = out;
64         return LDAP_SUCCESS;
65 }
66
67 static int
68 dnMatch(
69         int *matchp,
70         unsigned use,
71         Syntax *syntax,
72         MatchingRule *mr,
73         struct berval *value,
74         void *assertedValue )
75 {
76         int match;
77         struct berval *asserted = (struct berval *) assertedValue;
78         
79         match = value->bv_len - asserted->bv_len;
80
81         if( match == 0 ) {
82 #ifdef USE_DN_NORMALIZE
83                 match = strcmp( value->bv_val, asserted->bv_val );
84 #else
85                 match = strcasecmp( value->bv_val, asserted->bv_val );
86 #endif
87         }
88
89         Debug( LDAP_DEBUG_ARGS, "dnMatch %d\n\t\"%s\"\n\t\"%s\"\n",
90             match, value->bv_val, asserted->bv_val );
91
92         *matchp = match;
93         return LDAP_SUCCESS;
94 }
95         
96 static int
97 inValidate(
98         Syntax *syntax,
99         struct berval *in )
100 {
101         /* any value allowed */
102         return LDAP_OTHER;
103 }
104
105 static int
106 blobValidate(
107         Syntax *syntax,
108         struct berval *in )
109 {
110         /* any value allowed */
111         return LDAP_SUCCESS;
112 }
113
114 #define berValidate blobValidate
115
116 static int
117 UTF8StringValidate(
118         Syntax *syntax,
119         struct berval *in )
120 {
121         ber_len_t count;
122         int len;
123         unsigned char *u = in->bv_val;
124
125         for( count = in->bv_len; count > 0; count-=len, u+=len ) {
126                 /* get the length indicated by the first byte */
127                 len = LDAP_UTF8_CHARLEN( u );
128
129                 /* should not be zero */
130                 if( len == 0 ) return LDAP_INVALID_SYNTAX;
131
132                 /* make sure len corresponds with the offset
133                         to the next character */
134                 if( LDAP_UTF8_OFFSET( u ) != len ) return LDAP_INVALID_SYNTAX;
135         }
136
137         if( count != 0 ) return LDAP_INVALID_SYNTAX;
138
139         return LDAP_SUCCESS;
140 }
141
142 static int
143 UTF8StringNormalize(
144         Syntax *syntax,
145         struct berval *val,
146         struct berval **normalized )
147 {
148         struct berval *newval;
149         char *p, *q, *s;
150
151         newval = ch_malloc( sizeof( struct berval ) );
152
153         p = val->bv_val;
154
155         /* Ignore initial whitespace */
156         while ( ldap_utf8_isspace( p ) ) {
157                 LDAP_UTF8_INCR( p );
158         }
159
160         if( *p == '\0' ) {
161                 ch_free( newval );
162                 return LDAP_INVALID_SYNTAX;
163         }
164
165         newval->bv_val = ch_strdup( p );
166         p = q = newval->bv_val;
167         s = NULL;
168
169         while ( *p ) {
170                 int len;
171
172                 if ( ldap_utf8_isspace( p ) ) {
173                         len = LDAP_UTF8_COPY(q,p);
174                         s=q;
175                         p+=len;
176                         q+=len;
177
178                         /* Ignore the extra whitespace */
179                         while ( ldap_utf8_isspace( p ) ) {
180                                 LDAP_UTF8_INCR( p );
181                         }
182                 } else {
183                         len = LDAP_UTF8_COPY(q,p);
184                         s=NULL;
185                         p+=len;
186                         q+=len;
187                 }
188         }
189
190         assert( *newval->bv_val );
191         assert( newval->bv_val < p );
192         assert( p <= q );
193
194         /* cannot start with a space */
195         assert( !ldap_utf8_isspace(newval->bv_val) );
196
197         /*
198          * If the string ended in space, backup the pointer one
199          * position.  One is enough because the above loop collapsed
200          * all whitespace to a single space.
201          */
202
203         if ( s != NULL ) {
204                 q = s;
205         }
206
207         /* cannot end with a space */
208         assert( !ldap_utf8_isspace( LDAP_UTF8_PREV(q) ) );
209
210         /* null terminate */
211         *q = '\0';
212
213         newval->bv_len = q - newval->bv_val;
214         *normalized = newval;
215
216         return LDAP_SUCCESS;
217 }
218
219 static int
220 oidValidate(
221         Syntax *syntax,
222         struct berval *val )
223 {
224         ber_len_t i;
225
226         if( val->bv_len == 0 ) return 0;
227
228         if( isdigit(val->bv_val[0]) ) {
229                 int dot = 0;
230                 for(i=1; i < val->bv_len; i++) {
231                         if( val->bv_val[i] == '.' ) {
232                                 if( dot++ ) return 1;
233                         } else if ( isdigit(val->bv_val[i]) ) {
234                                 dot = 0;
235                         } else {
236                                 return LDAP_INVALID_SYNTAX;
237                         }
238                 }
239
240                 return !dot ? LDAP_SUCCESS : LDAP_INVALID_SYNTAX;
241
242         } else if( isalpha(val->bv_val[0]) ) {
243                 for(i=1; i < val->bv_len; i++) {
244                         if( !isalpha(val->bv_val[i] ) ) {
245                                 return LDAP_INVALID_SYNTAX;
246                         }
247                 }
248
249                 return LDAP_SUCCESS;
250         }
251         
252         return LDAP_INVALID_SYNTAX;
253 }
254
255 static int
256 integerValidate(
257         Syntax *syntax,
258         struct berval *val )
259 {
260         ber_len_t i;
261
262         for(i=0; i < val->bv_len; i++) {
263                 if( !isdigit(val->bv_val[i]) ) return LDAP_INVALID_SYNTAX;
264         }
265
266         return LDAP_SUCCESS;
267 }
268
269 static int
270 printableStringValidate(
271         Syntax *syntax,
272         struct berval *val )
273 {
274         ber_len_t i;
275
276         for(i=0; i < val->bv_len; i++) {
277                 if( !isprint(val->bv_val[i]) ) return LDAP_INVALID_SYNTAX;
278         }
279
280         return LDAP_SUCCESS;
281 }
282
283 static int
284 IA5StringValidate(
285         Syntax *syntax,
286         struct berval *val )
287 {
288         ber_len_t i;
289
290         for(i=0; i < val->bv_len; i++) {
291                 if( !isascii(val->bv_val[i]) ) return LDAP_INVALID_SYNTAX;
292         }
293
294         return LDAP_SUCCESS;
295 }
296
297 static int
298 IA5StringConvert(
299         Syntax *syntax,
300         struct berval *in,
301         struct berval **out )
302 {
303         ldap_unicode_t *u;
304         ber_len_t i, len = in->bv_len;
305         struct berval *bv = ch_malloc( sizeof(struct berval) );
306
307         bv->bv_len = len * sizeof( ldap_unicode_t );
308         bv->bv_val = (char *) u = ch_malloc( bv->bv_len + sizeof( ldap_unicode_t ) );;
309
310         for(i=0; i < len; i++ ) {
311                 /*
312                  * IA5StringValidate should have been called to ensure
313                  * input is limited to IA5.
314                  */
315                 u[i] = in->bv_val[i];
316         }
317         u[i] = 0;
318
319         *out = bv;
320         return LDAP_SUCCESS;
321 }
322
323 static int
324 IA5StringNormalize(
325         Syntax *syntax,
326         struct berval *val,
327         struct berval **normalized )
328 {
329         struct berval *newval;
330         char *p, *q;
331
332         newval = ch_malloc( sizeof( struct berval ) );
333
334         p = val->bv_val;
335
336         /* Ignore initial whitespace */
337         while ( isspace( *p++ ) ) {
338                 /* EMPTY */  ;
339         }
340
341         if( *p != '\0' ) {
342                 ch_free( newval );
343                 return LDAP_INVALID_SYNTAX;
344         }
345
346         newval->bv_val = ch_strdup( p );
347         p = q = newval->bv_val;
348
349         while ( *p ) {
350                 if ( isspace( *p ) ) {
351                         *q++ = *p++;
352
353                         /* Ignore the extra whitespace */
354                         while ( isspace( *p++ ) ) {
355                                 /* EMPTY */  ;
356                         }
357                 } else {
358                         *q++ = *p++;
359                 }
360         }
361
362         assert( *newval->bv_val );
363         assert( newval->bv_val < p );
364         assert( p <= q );
365
366         /* cannot start with a space */
367         assert( !isspace(*newval->bv_val) );
368
369         /*
370          * If the string ended in space, backup the pointer one
371          * position.  One is enough because the above loop collapsed
372          * all whitespace to a single space.
373          */
374
375         if ( isspace( q[-1] ) ) {
376                 --q;
377         }
378
379         /* cannot end with a space */
380         assert( !isspace( q[-1] ) );
381
382         /* null terminate */
383         *q = '\0';
384
385         newval->bv_len = q - newval->bv_val;
386         *normalized = newval;
387
388         return LDAP_SUCCESS;
389 }
390
391 static int
392 caseExactIA5Match(
393         int *match,
394         unsigned use,
395         Syntax *syntax,
396         MatchingRule *mr,
397         struct berval *value,
398         void *assertedValue )
399 {
400         *match = strcmp( value->bv_val,
401                 ((struct berval *) assertedValue)->bv_val );
402         return LDAP_SUCCESS;
403 }
404
405 #ifdef SLAPD_SCHEMA_NOT_COMPAT
406 static int
407 caseExactIA5SubstringsMatch(
408         int *matchp,
409         unsigned use,
410         Syntax *syntax,
411         MatchingRule *mr,
412         struct berval *value,
413         void *assertedValue )
414 {
415         int match = 0;
416         SubstringsAssertion *sub = assertedValue;
417         struct berval left = *value;
418         int i;
419         ber_len_t inlen=0;
420
421         if( sub->sa_initial ) {
422                 inlen += sub->sa_initial->bv_len;
423         }
424         if( sub->sa_any ) {
425                 for(i=0; sub->sa_any[i]; i++) {
426                         inlen += sub->sa_final->bv_len;
427                 }
428         }
429         if( sub->sa_final ) {
430                 inlen += sub->sa_final->bv_len;
431         }
432
433         if( inlen > value->bv_len ) {
434                 match = 1;
435                 goto done;
436         }
437
438         if( sub->sa_initial ) {
439                 match = strncmp( sub->sa_initial->bv_val, left.bv_val,
440                         sub->sa_initial->bv_len );
441
442                 if( match != 0 ) {
443                         goto done;
444                 }
445
446                 left.bv_val += sub->sa_initial->bv_len;
447                 left.bv_len -= sub->sa_initial->bv_len;
448                 inlen -= sub->sa_initial->bv_len;
449         }
450
451         if( sub->sa_final ) {
452                 match = strncmp( sub->sa_final->bv_val,
453                         &left.bv_val[left.bv_len - sub->sa_final->bv_len],
454                         sub->sa_final->bv_len );
455
456                 if( match != 0 ) {
457                         goto done;
458                 }
459
460                 left.bv_len -= sub->sa_final->bv_len;
461                 inlen -= sub->sa_initial->bv_len;
462         }
463
464         if( sub->sa_any ) {
465                 for(i=0; sub->sa_any[i]; i++) {
466                         ber_len_t idx;
467                         char *p;
468
469 retry:
470                         if( inlen < left.bv_len ) {
471                                 /* not enough length */
472                                 match = 1;
473                                 goto done;
474                         }
475
476                         if( sub->sa_any[i]->bv_len == 0 ) {
477                                 continue;
478                         }
479
480                         p = strchr( left.bv_val, *sub->sa_any[i]->bv_val );
481
482                         if( p == NULL ) {
483                                 match = 1;
484                                 goto done;
485                         }
486
487                         idx = p - left.bv_val;
488                         assert( idx < left.bv_len );
489
490                         if( idx >= left.bv_len ) {
491                                 /* this shouldn't happen */
492                                 return LDAP_OTHER;
493                         }
494
495                         left.bv_val = p;
496                         left.bv_len -= idx;
497
498                         if( sub->sa_any[i]->bv_len > left.bv_len ) {
499                                 /* not enough left */
500                                 match = 1;
501                                 goto done;
502                         }
503
504                         match = strncmp( left.bv_val,
505                                 sub->sa_any[i]->bv_val,
506                                 sub->sa_any[i]->bv_len );
507
508
509                         if( match != 0 ) {
510                                 goto retry;
511                         }
512
513                         left.bv_val += sub->sa_any[i]->bv_len;
514                         left.bv_len -= sub->sa_any[i]->bv_len;
515                 }
516         }
517
518 done:
519         *matchp = match;
520         return LDAP_SUCCESS;
521 }
522 #endif
523
524 static int
525 caseIgnoreIA5Match(
526         int *match,
527         unsigned use,
528         Syntax *syntax,
529         MatchingRule *mr,
530         struct berval *value,
531         void *assertedValue )
532 {
533         *match = strcasecmp( value->bv_val,
534                 ((struct berval *) assertedValue)->bv_val );
535         return LDAP_SUCCESS;
536 }
537
538 #ifdef SLAPD_SCHEMA_NOT_COMPAT
539 static char *strcasechr( const char *str, int c )
540 {
541         char *lower = strchr( str, TOLOWER(c) );
542         char *upper = strchr( str, TOUPPER(c) );
543
544         if( lower && upper ) {
545                 return lower < upper ? lower : upper;
546         } else if ( lower ) {
547                 return lower;
548         } else {
549                 return upper;
550         }
551 }
552
553 static int
554 caseIgnoreIA5SubstringsMatch(
555         int *matchp,
556         unsigned use,
557         Syntax *syntax,
558         MatchingRule *mr,
559         struct berval *value,
560         void *assertedValue )
561 {
562         int match = 0;
563         SubstringsAssertion *sub = assertedValue;
564         struct berval left = *value;
565         int i;
566         ber_len_t inlen=0;
567
568         if( sub->sa_initial ) {
569                 inlen += sub->sa_initial->bv_len;
570         }
571         if( sub->sa_any ) {
572                 for(i=0; sub->sa_any[i]; i++) {
573                         inlen += sub->sa_final->bv_len;
574                 }
575         }
576         if( sub->sa_final ) {
577                 inlen += sub->sa_final->bv_len;
578         }
579
580         if( inlen > value->bv_len ) {
581                 match = 1;
582                 goto done;
583         }
584
585         if( sub->sa_initial ) {
586                 match = strncasecmp( sub->sa_initial->bv_val, left.bv_val,
587                         sub->sa_initial->bv_len );
588
589                 if( match != 0 ) {
590                         goto done;
591                 }
592
593                 left.bv_val += sub->sa_initial->bv_len;
594                 left.bv_len -= sub->sa_initial->bv_len;
595         }
596
597         if( sub->sa_final ) {
598                 match = strncasecmp( sub->sa_final->bv_val,
599                         &left.bv_val[left.bv_len - sub->sa_final->bv_len],
600                         sub->sa_final->bv_len );
601
602                 if( match != 0 ) {
603                         goto done;
604                 }
605
606                 left.bv_len -= sub->sa_final->bv_len;
607         }
608
609         if( sub->sa_any ) {
610                 for(i=0; sub->sa_any[i]; i++) {
611                         ber_len_t idx;
612                         char *p;
613
614 retry:
615                         if( inlen < left.bv_len ) {
616                                 /* not enough length */
617                                 match = 1;
618                                 goto done;
619                         }
620
621                         if( sub->sa_any[i]->bv_len == 0 ) {
622                                 continue;
623                         }
624
625                         p = strcasechr( left.bv_val, *sub->sa_any[i]->bv_val );
626
627                         if( p == NULL ) {
628                                 match = 1;
629                                 goto done;
630                         }
631
632                         idx = p - left.bv_val;
633                         assert( idx < left.bv_len );
634
635                         if( idx >= left.bv_len ) {
636                                 /* this shouldn't happen */
637                                 return LDAP_OTHER;
638                         }
639
640                         left.bv_val = p;
641                         left.bv_len -= idx;
642
643                         if( sub->sa_any[i]->bv_len > left.bv_len ) {
644                                 /* not enough left */
645                                 match = 1;
646                                 goto done;
647                         }
648
649                         match = strncasecmp( left.bv_val,
650                                 sub->sa_any[i]->bv_val,
651                                 sub->sa_any[i]->bv_len );
652
653
654                         if( match != 0 ) {
655                                 goto retry;
656                         }
657
658                         left.bv_val += sub->sa_any[i]->bv_len;
659                         left.bv_len -= sub->sa_any[i]->bv_len;
660                 }
661         }
662
663 done:
664         *matchp = match;
665         return LDAP_SUCCESS;
666 }
667 #endif
668
669 struct syntax_defs_rec {
670         char *sd_desc;
671         int sd_flags;
672         slap_syntax_validate_func *sd_validate;
673         slap_syntax_transform_func *sd_normalize;
674         slap_syntax_transform_func *sd_pretty;
675 #ifdef SLAPD_BINARY_CONVERSION
676         slap_syntax_transform_func *sd_ber2str;
677         slap_syntax_transform_func *sd_str2ber;
678 #endif
679 };
680
681 #define X_HIDE "X-HIDE 'TRUE' "
682 #define X_BINARY "X-BINARY-TRANSFER-REQUIRED 'TRUE' "
683 #define X_NOT_H_R "X-NOT-HUMAN-READABLE 'TRUE' "
684
685 struct syntax_defs_rec syntax_defs[] = {
686         {"( 1.3.6.1.4.1.1466.115.121.1.1 DESC 'ACI Item' " X_BINARY X_NOT_H_R ")",
687                 SLAP_SYNTAX_BINARY|SLAP_SYNTAX_BER, NULL, NULL, NULL},
688         {"( 1.3.6.1.4.1.1466.115.121.1.2 DESC 'Access Point' " X_NOT_H_R ")",
689                 0, NULL, NULL, NULL},
690         {"( 1.3.6.1.4.1.1466.115.121.1.3 DESC 'Attribute Type Description' )",
691                 0, NULL, NULL, NULL},
692         {"( 1.3.6.1.4.1.1466.115.121.1.4 DESC 'Audio' " X_NOT_H_R ")",
693                 SLAP_SYNTAX_BLOB, blobValidate, NULL, NULL},
694         {"( 1.3.6.1.4.1.1466.115.121.1.5 DESC 'Binary' " X_BINARY X_NOT_H_R ")",
695                 SLAP_SYNTAX_BER, berValidate, NULL, NULL},
696         {"( 1.3.6.1.4.1.1466.115.121.1.6 DESC 'Bit String' )",
697                 0, NULL, NULL, NULL},
698         {"( 1.3.6.1.4.1.1466.115.121.1.7 DESC 'Boolean' )",
699                 0, NULL, NULL, NULL},
700         {"( 1.3.6.1.4.1.1466.115.121.1.8 DESC 'Certificate' "
701                 X_BINARY X_NOT_H_R ")",
702                 SLAP_SYNTAX_BINARY|SLAP_SYNTAX_BER, berValidate, NULL, NULL},
703         {"( 1.3.6.1.4.1.1466.115.121.1.9 DESC 'Certificate List' "
704                 X_BINARY X_NOT_H_R ")",
705                 SLAP_SYNTAX_BINARY|SLAP_SYNTAX_BER, berValidate, NULL, NULL},
706         {"( 1.3.6.1.4.1.1466.115.121.1.10 DESC 'Certificate Pair' "
707                 X_BINARY X_NOT_H_R ")",
708                 SLAP_SYNTAX_BINARY|SLAP_SYNTAX_BER, berValidate, NULL, NULL},
709         {"( 1.3.6.1.4.1.1466.115.121.1.11 DESC 'Country String' )",
710                 0, NULL, NULL, NULL},
711         {"( 1.3.6.1.4.1.1466.115.121.1.12 DESC 'Distinguished Name' )",
712                 0, dnValidate, dnNormalize, NULL},
713         {"( 1.3.6.1.4.1.1466.115.121.1.13 DESC 'Data Quality' )",
714                 0, NULL, NULL, NULL},
715         {"( 1.3.6.1.4.1.1466.115.121.1.14 DESC 'Delivery Method' )",
716                 0, NULL, NULL, NULL},
717         {"( 1.3.6.1.4.1.1466.115.121.1.15 DESC 'Directory String' )",
718                 0, UTF8StringValidate, UTF8StringNormalize, NULL},
719         {"( 1.3.6.1.4.1.1466.115.121.1.16 DESC 'DIT Content Rule Description' )",
720                 0, NULL, NULL, NULL},
721         {"( 1.3.6.1.4.1.1466.115.121.1.17 DESC 'DIT Structure Rule Description' )",
722                 0, NULL, NULL, NULL},
723         {"( 1.3.6.1.4.1.1466.115.121.1.19 DESC 'DSA Quality' )",
724                 0, NULL, NULL, NULL},
725         {"( 1.3.6.1.4.1.1466.115.121.1.20 DESC 'DSE Type' )",
726                 0, NULL, NULL, NULL},
727         {"( 1.3.6.1.4.1.1466.115.121.1.21 DESC 'Enhanced Guide' )",
728                 0, NULL, NULL, NULL},
729         {"( 1.3.6.1.4.1.1466.115.121.1.22 DESC 'Facsimile Telephone Number' )",
730                 0, blobValidate, NULL, NULL},
731         {"( 1.3.6.1.4.1.1466.115.121.1.23 DESC 'Fax' " X_NOT_H_R ")",
732                 SLAP_SYNTAX_BLOB, NULL, NULL, NULL},
733         {"( 1.3.6.1.4.1.1466.115.121.1.24 DESC 'Generalized Time' )",
734                 0, NULL, NULL, NULL},
735         {"( 1.3.6.1.4.1.1466.115.121.1.25 DESC 'Guide' )",
736                 0, NULL, NULL, NULL},
737         {"( 1.3.6.1.4.1.1466.115.121.1.26 DESC 'IA5 String' )",
738                 0, IA5StringValidate, IA5StringNormalize, NULL},
739         {"( 1.3.6.1.4.1.1466.115.121.1.27 DESC 'Integer' )",
740                 0, integerValidate, NULL, NULL},
741         {"( 1.3.6.1.4.1.1466.115.121.1.28 DESC 'JPEG' " X_NOT_H_R ")",
742                 SLAP_SYNTAX_BLOB, NULL, NULL, NULL},
743         {"( 1.3.6.1.4.1.1466.115.121.1.29 DESC 'Master And Shadow Access Points' )",
744                 0, NULL, NULL, NULL},
745         {"( 1.3.6.1.4.1.1466.115.121.1.30 DESC 'Matching Rule Description' )",
746                 0, NULL, NULL, NULL},
747         {"( 1.3.6.1.4.1.1466.115.121.1.31 DESC 'Matching Rule Use Description' )",
748                 0, NULL, NULL, NULL},
749         {"( 1.3.6.1.4.1.1466.115.121.1.32 DESC 'Mail Preference' )",
750                 0, NULL, NULL, NULL},
751         {"( 1.3.6.1.4.1.1466.115.121.1.33 DESC 'MHS OR Address' )",
752                 0, NULL, NULL, NULL},
753         {"( 1.3.6.1.4.1.1466.115.121.1.34 DESC 'Name And Optional UID' )",
754                 0, NULL, NULL, NULL},
755         {"( 1.3.6.1.4.1.1466.115.121.1.35 DESC 'Name Form Description' )",
756                 0, NULL, NULL, NULL},
757         {"( 1.3.6.1.4.1.1466.115.121.1.36 DESC 'Numeric String' )",
758                 0, NULL, NULL, NULL},
759         {"( 1.3.6.1.4.1.1466.115.121.1.37 DESC 'Object Class Description' )",
760                 0, NULL, NULL, NULL},
761         {"( 1.3.6.1.4.1.1466.115.121.1.38 DESC 'OID' )",
762                 0, oidValidate, NULL, NULL},
763         {"( 1.3.6.1.4.1.1466.115.121.1.39 DESC 'Other Mailbox' )",
764                 0, NULL, NULL, NULL},
765         {"( 1.3.6.1.4.1.1466.115.121.1.40 DESC 'Octet String' )",
766                 0, blobValidate, NULL, NULL},
767         {"( 1.3.6.1.4.1.1466.115.121.1.41 DESC 'Postal Address' )",
768                 0, blobValidate, NULL, NULL},
769         {"( 1.3.6.1.4.1.1466.115.121.1.42 DESC 'Protocol Information' )",
770                 0, NULL, NULL, NULL},
771         {"( 1.3.6.1.4.1.1466.115.121.1.43 DESC 'Presentation Address' )",
772                 0, NULL, NULL, NULL},
773         {"( 1.3.6.1.4.1.1466.115.121.1.44 DESC 'Printable String' )",
774                 0, printableStringValidate, NULL, NULL},
775         {"( 1.3.6.1.4.1.1466.115.121.1.49 DESC 'Supported Algorithm' "
776                 X_BINARY X_NOT_H_R ")",
777                 SLAP_SYNTAX_BINARY|SLAP_SYNTAX_BER, berValidate, NULL, NULL},
778         {"( 1.3.6.1.4.1.1466.115.121.1.50 DESC 'Telephone Number' )",
779                 0, blobValidate, NULL, NULL},
780         {"( 1.3.6.1.4.1.1466.115.121.1.51 DESC 'Teletex Terminal Identifier' )",
781                 0, NULL, NULL, NULL},
782         {"( 1.3.6.1.4.1.1466.115.121.1.52 DESC 'Telex Number' )",
783                 0, NULL, NULL, NULL},
784         {"( 1.3.6.1.4.1.1466.115.121.1.53 DESC 'UTC Time' )",
785                 0, NULL, NULL, NULL},
786         {"( 1.3.6.1.4.1.1466.115.121.1.54 DESC 'LDAP Syntax Description' )",
787                 0, NULL, NULL, NULL},
788         {"( 1.3.6.1.4.1.1466.115.121.1.55 DESC 'Modify Rights' )",
789                 0, NULL, NULL, NULL},
790         {"( 1.3.6.1.4.1.1466.115.121.1.56 DESC 'LDAP Schema Definition' )",
791                 0, NULL, NULL, NULL},
792         {"( 1.3.6.1.4.1.1466.115.121.1.57 DESC 'LDAP Schema Description' )",
793                 0, NULL, NULL, NULL},
794         {"( 1.3.6.1.4.1.1466.115.121.1.58 DESC 'Substring Assertion' )",
795                 0, NULL, NULL, NULL},
796
797         /* OpenLDAP Experimental Syntaxes */
798         {"( 1.3.6.1.4.1.4203.666.2.1 DESC 'OpenLDAP Experimental ACI' )",
799                 0, NULL, NULL, NULL},
800         {"( 1.3.6.1.4.1.4203.666.2.2 DESC 'OpenLDAP void' " X_HIDE ")" ,
801                 SLAP_SYNTAX_HIDE, NULL, NULL, NULL},
802         {"( 1.3.6.1.4.1.4203.666.2.3 DESC 'OpenLDAP DN' " X_HIDE ")" ,
803                 SLAP_SYNTAX_HIDE, NULL, NULL, NULL},
804
805         {NULL, 0, NULL, NULL, NULL}
806 };
807
808 struct mrule_defs_rec {
809         char *                                          mrd_desc;
810         unsigned                                        mrd_usage;
811         slap_mr_convert_func *          mrd_convert;
812         slap_mr_normalize_func *        mrd_normalize;
813         slap_mr_match_func *            mrd_match;
814         slap_mr_indexer_func *          mrd_indexer;
815         slap_mr_filter_func *           mrd_filter;
816 };
817
818 /*
819  * Other matching rules in X.520 that we do not use:
820  *
821  * 2.5.13.9             numericStringOrderingMatch
822  * 2.5.13.13    booleanMatch
823  * 2.5.13.15    integerOrderingMatch
824  * 2.5.13.18    octetStringOrderingMatch
825  * 2.5.13.19    octetStringSubstringsMatch
826  * 2.5.13.25    uTCTimeMatch
827  * 2.5.13.26    uTCTimeOrderingMatch
828  * 2.5.13.31    directoryStringFirstComponentMatch
829  * 2.5.13.32    wordMatch
830  * 2.5.13.33    keywordMatch
831  * 2.5.13.34    certificateExactMatch
832  * 2.5.13.35    certificateMatch
833  * 2.5.13.36    certificatePairExactMatch
834  * 2.5.13.37    certificatePairMatch
835  * 2.5.13.38    certificateListExactMatch
836  * 2.5.13.39    certificateListMatch
837  * 2.5.13.40    algorithmIdentifierMatch
838  * 2.5.13.41    storedPrefixMatch
839  * 2.5.13.42    attributeCertificateMatch
840  * 2.5.13.43    readerAndKeyIDMatch
841  * 2.5.13.44    attributeIntegrityMatch
842  */
843
844 #ifndef SLAPD_SCHEMA_NOT_COMPAT
845 #define caseIgnoreIA5SubstringsMatch NULL
846 #define caseExactIA5SubstringsMatch NULL
847 #endif
848
849 /* recycled matching functions */
850 #define caseIgnoreMatch caseIgnoreIA5Match
851 #define caseIgnoreOrderingMatch caseIgnoreMatch
852 #define caseIgnoreSubstringsMatch caseIgnoreIA5SubstringsMatch
853 #define caseExactMatch caseExactIA5Match
854 #define caseExactOrderingMatch caseExactMatch
855 #define caseExactSubstringsMatch caseExactIA5SubstringsMatch
856
857 /* unimplemented matching functions */
858 #define objectIdentifierMatch NULL
859 #define numericStringMatch NULL
860 #define numericStringSubstringsMatch NULL
861 #define caseIgnoreListMatch NULL
862 #define caseIgnoreListSubstringsMatch NULL
863 #define integerMatch NULL
864 #define bitStringMatch NULL
865 #define octetStringMatch NULL
866 #define telephoneNumberMatch NULL
867 #define telephoneNumberSubstringsMatch NULL
868 #define presentationAddressMatch NULL
869 #define uniqueMemberMatch NULL
870 #define protocolInformationMatch NULL
871 #define generalizedTimeMatch NULL
872 #define generalizedTimeOrderingMatch NULL
873 #define integerFirstComponentMatch NULL
874 #define objectIdentifierFirstComponentMatch NULL
875
876 struct mrule_defs_rec mrule_defs[] = {
877         {"( 2.5.13.0 NAME 'objectIdentifierMatch' "
878                 "SYNTAX 1.3.6.1.4.1.1466.115.121.1.38 )",
879                 SLAP_MR_EQUALITY | SLAP_MR_EXT,
880                 NULL, NULL, objectIdentifierMatch, NULL, NULL},
881
882         {"( 2.5.13.1 NAME 'distinguishedNameMatch' "
883                 "SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 )",
884                 SLAP_MR_EQUALITY | SLAP_MR_EXT,
885                 NULL, NULL, dnMatch, NULL, NULL},
886
887         {"( 2.5.13.2 NAME 'caseIgnoreMatch' "
888                 "SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 )",
889                 SLAP_MR_EQUALITY | SLAP_MR_EXT,
890                 NULL, NULL, caseIgnoreMatch, NULL, NULL},
891
892         {"( 2.5.13.3 NAME 'caseIgnoreOrderingMatch' "
893                 "SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 )",
894                 SLAP_MR_ORDERING,
895                 NULL, NULL, caseIgnoreOrderingMatch, NULL, NULL},
896
897         {"( 2.5.13.4 NAME 'caseIgnoreSubstringsMatch' "
898                 "SYNTAX 1.3.6.1.4.1.1466.115.121.1.58 )",
899                 SLAP_MR_SUBSTR | SLAP_MR_EXT,
900                 NULL, NULL, caseIgnoreSubstringsMatch, NULL, NULL},
901
902         /* Next three are not in the RFC's, but are needed for compatibility */
903         {"( 2.5.13.5 NAME 'caseExactMatch' "
904                 "SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 )",
905                 SLAP_MR_EQUALITY | SLAP_MR_EXT,
906                 NULL, NULL, caseExactMatch, NULL, NULL},
907
908         {"( 2.5.13.6 NAME 'caseExactOrderingMatch' "
909                 "SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 )",
910                 SLAP_MR_ORDERING,
911                 NULL, NULL, caseExactOrderingMatch, NULL, NULL},
912
913         {"( 2.5.13.7 NAME 'caseExactSubstringsMatch' "
914                 "SYNTAX 1.3.6.1.4.1.1466.115.121.1.58 )",
915                 SLAP_MR_SUBSTR | SLAP_MR_EXT,
916                 NULL, NULL, caseExactSubstringsMatch, NULL, NULL},
917
918         {"( 2.5.13.8 NAME 'numericStringMatch' "
919                 "SYNTAX 1.3.6.1.4.1.1466.115.121.1.36 )",
920                 SLAP_MR_EQUALITY | SLAP_MR_EXT,
921                 NULL, NULL, numericStringMatch, NULL, NULL},
922
923         {"( 2.5.13.10 NAME 'numericStringSubstringsMatch' "
924                 "SYNTAX 1.3.6.1.4.1.1466.115.121.1.58 )",
925                 SLAP_MR_SUBSTR | SLAP_MR_EXT,
926                 NULL, NULL, numericStringSubstringsMatch, NULL, NULL},
927
928         {"( 2.5.13.11 NAME 'caseIgnoreListMatch' "
929                 "SYNTAX 1.3.6.1.4.1.1466.115.121.1.41 )",
930                 SLAP_MR_EQUALITY | SLAP_MR_EXT,
931                 NULL, NULL, caseIgnoreListMatch, NULL, NULL},
932
933         {"( 2.5.13.12 NAME 'caseIgnoreListSubstringsMatch' "
934                 "SYNTAX 1.3.6.1.4.1.1466.115.121.1.58 )",
935                 SLAP_MR_SUBSTR | SLAP_MR_EXT,
936                 NULL, NULL, caseIgnoreListSubstringsMatch, NULL, NULL},
937
938         {"( 2.5.13.14 NAME 'integerMatch' "
939                 "SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 )",
940                 SLAP_MR_NONE | SLAP_MR_EXT,
941                 NULL, NULL, integerMatch, NULL, NULL},
942
943         {"( 2.5.13.16 NAME 'bitStringMatch' "
944                 "SYNTAX 1.3.6.1.4.1.1466.115.121.1.6 )",
945                 SLAP_MR_NONE | SLAP_MR_EXT,
946                 NULL, NULL, bitStringMatch, NULL, NULL},
947
948         {"( 2.5.13.17 NAME 'octetStringMatch' "
949                 "SYNTAX 1.3.6.1.4.1.1466.115.121.1.40 )",
950                 SLAP_MR_EQUALITY | SLAP_MR_EXT,
951                 NULL, NULL, octetStringMatch, NULL, NULL},
952
953         {"( 2.5.13.20 NAME 'telephoneNumberMatch' "
954                 "SYNTAX 1.3.6.1.4.1.1466.115.121.1.50 )",
955                 SLAP_MR_EQUALITY | SLAP_MR_EXT,
956                 NULL, NULL, telephoneNumberMatch, NULL, NULL},
957
958         {"( 2.5.13.21 NAME 'telephoneNumberSubstringsMatch' "
959                 "SYNTAX 1.3.6.1.4.1.1466.115.121.1.58 )",
960                 SLAP_MR_SUBSTR | SLAP_MR_EXT,
961                 NULL, NULL, telephoneNumberSubstringsMatch, NULL, NULL},
962
963         {"( 2.5.13.22 NAME 'presentationAddressMatch' "
964                 "SYNTAX 1.3.6.1.4.1.1466.115.121.1.43 )",
965                 SLAP_MR_NONE | SLAP_MR_EXT,
966                 NULL, NULL, presentationAddressMatch, NULL, NULL},
967
968         {"( 2.5.13.23 NAME 'uniqueMemberMatch' "
969                 "SYNTAX 1.3.6.1.4.1.1466.115.121.1.34 )",
970                 SLAP_MR_NONE | SLAP_MR_EXT,
971                 NULL, NULL, uniqueMemberMatch, NULL, NULL},
972
973         {"( 2.5.13.24 NAME 'protocolInformationMatch' "
974                 "SYNTAX 1.3.6.1.4.1.1466.115.121.1.42 )",
975                 SLAP_MR_NONE | SLAP_MR_EXT,
976                 NULL, NULL, protocolInformationMatch, NULL, NULL},
977
978         {"( 2.5.13.27 NAME 'generalizedTimeMatch' "
979                 "SYNTAX 1.3.6.1.4.1.1466.115.121.1.24 )",
980                 SLAP_MR_EQUALITY | SLAP_MR_EXT,
981                 NULL, NULL, generalizedTimeMatch, NULL, NULL},
982
983         {"( 2.5.13.28 NAME 'generalizedTimeOrderingMatch' "
984                 "SYNTAX 1.3.6.1.4.1.1466.115.121.1.24 )",
985                 SLAP_MR_ORDERING,
986                 NULL, NULL, generalizedTimeOrderingMatch, NULL, NULL},
987
988         {"( 2.5.13.29 NAME 'integerFirstComponentMatch' "
989                 "SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 )",
990                 SLAP_MR_EQUALITY | SLAP_MR_EXT,
991                 NULL, NULL, integerFirstComponentMatch, NULL, NULL},
992
993         {"( 2.5.13.30 NAME 'objectIdentifierFirstComponentMatch' "
994                 "SYNTAX 1.3.6.1.4.1.1466.115.121.1.38 )",
995                 SLAP_MR_EQUALITY | SLAP_MR_EXT,
996                 NULL, NULL, objectIdentifierFirstComponentMatch, NULL, NULL},
997
998         {"( 1.3.6.1.4.1.1466.109.114.1 NAME 'caseExactIA5Match' "
999                 "SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 )",
1000                 SLAP_MR_EQUALITY | SLAP_MR_EXT,
1001                 NULL, NULL, caseExactIA5Match, NULL, NULL},
1002
1003         {"( 1.3.6.1.4.1.1466.109.114.2 NAME 'caseIgnoreIA5Match' "
1004                 "SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 )",
1005                 SLAP_MR_EQUALITY | SLAP_MR_EXT,
1006                 NULL, NULL, caseIgnoreIA5Match, NULL, NULL},
1007
1008         {"( 1.3.6.1.4.1.1466.109.114.3 NAME 'caseIgnoreIA5SubstringsMatch' "
1009                 "SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 )",
1010                 SLAP_MR_SUBSTR,
1011                 NULL, NULL, caseIgnoreIA5SubstringsMatch, NULL, NULL},
1012
1013         {NULL, SLAP_MR_NONE, NULL, NULL, NULL}
1014 };
1015
1016 int
1017 schema_init( void )
1018 {
1019         int             res;
1020         int             i;
1021
1022         /* we should only be called once (from main) */
1023         assert( schema_init_done == 0 );
1024
1025         for ( i=0; syntax_defs[i].sd_desc != NULL; i++ ) {
1026                 res = register_syntax( syntax_defs[i].sd_desc,
1027                     syntax_defs[i].sd_flags,
1028                     syntax_defs[i].sd_validate,
1029                     syntax_defs[i].sd_normalize,
1030                         syntax_defs[i].sd_pretty
1031 #ifdef SLAPD_BINARY_CONVERSION
1032                         ,
1033                     syntax_defs[i].sd_ber2str,
1034                         syntax_defs[i].sd_str2ber
1035 #endif
1036                 );
1037
1038                 if ( res ) {
1039                         fprintf( stderr, "schema_init: Error registering syntax %s\n",
1040                                  syntax_defs[i].sd_desc );
1041                         return LDAP_OTHER;
1042                 }
1043         }
1044
1045         for ( i=0; mrule_defs[i].mrd_desc != NULL; i++ ) {
1046                 if( mrule_defs[i].mrd_usage == SLAP_MR_NONE ) {
1047                         fprintf( stderr,
1048                                 "schema_init: Ingoring unusable matching rule %s\n",
1049                                  mrule_defs[i].mrd_desc );
1050                         continue;
1051                 }
1052
1053                 res = register_matching_rule(
1054                         mrule_defs[i].mrd_desc,
1055                         mrule_defs[i].mrd_usage,
1056                         mrule_defs[i].mrd_convert,
1057                         mrule_defs[i].mrd_normalize,
1058                     mrule_defs[i].mrd_match,
1059                         mrule_defs[i].mrd_indexer,
1060                         mrule_defs[i].mrd_filter );
1061
1062                 if ( res ) {
1063                         fprintf( stderr,
1064                                 "schema_init: Error registering matching rule %s\n",
1065                                  mrule_defs[i].mrd_desc );
1066                         return LDAP_OTHER;
1067                 }
1068         }
1069         schema_init_done = 1;
1070         return LDAP_SUCCESS;
1071 }