]> git.sur5r.net Git - openldap/blob - servers/slapd/schema_init.c
Add NumericString syntax and matching rules.
[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
668 static int
669 NumericStringNormalize(
670         Syntax *syntax,
671         struct berval *val,
672         struct berval **normalized )
673 {
674         /* similiar to IA5StringNormalize except removes all spaces */
675         struct berval *newval;
676         char *p, *q;
677
678         newval = ch_malloc( sizeof( struct berval ) );
679
680         p = val->bv_val;
681
682         /* Ignore initial whitespace */
683         while ( isspace( *p++ ) ) {
684                 /* EMPTY */  ;
685         }
686
687         if( *p != '\0' ) {
688                 ch_free( newval );
689                 return LDAP_INVALID_SYNTAX;
690         }
691
692         newval->bv_val = ch_strdup( p );
693         p = q = newval->bv_val;
694
695         while ( *p ) {
696                 if ( isspace( *p ) ) {
697                         /* Ignore whitespace */
698                         p++;
699                 } else {
700                         *q++ = *p++;
701                 }
702         }
703
704         assert( *newval->bv_val );
705         assert( newval->bv_val < p );
706         assert( p <= q );
707
708         /* cannot start with a space */
709         assert( !isspace(*newval->bv_val) );
710
711         /* cannot end with a space */
712         assert( !isspace( q[-1] ) );
713
714         /* null terminate */
715         *q = '\0';
716
717         newval->bv_len = q - newval->bv_val;
718         *normalized = newval;
719
720         return LDAP_SUCCESS;
721 }
722
723 #endif
724
725 struct syntax_defs_rec {
726         char *sd_desc;
727         int sd_flags;
728         slap_syntax_validate_func *sd_validate;
729         slap_syntax_transform_func *sd_normalize;
730         slap_syntax_transform_func *sd_pretty;
731 #ifdef SLAPD_BINARY_CONVERSION
732         slap_syntax_transform_func *sd_ber2str;
733         slap_syntax_transform_func *sd_str2ber;
734 #endif
735 };
736
737 #define X_HIDE "X-HIDE 'TRUE' "
738 #define X_BINARY "X-BINARY-TRANSFER-REQUIRED 'TRUE' "
739 #define X_NOT_H_R "X-NOT-HUMAN-READABLE 'TRUE' "
740
741 struct syntax_defs_rec syntax_defs[] = {
742         {"( 1.3.6.1.4.1.1466.115.121.1.1 DESC 'ACI Item' " X_BINARY X_NOT_H_R ")",
743                 SLAP_SYNTAX_BINARY|SLAP_SYNTAX_BER, NULL, NULL, NULL},
744         {"( 1.3.6.1.4.1.1466.115.121.1.2 DESC 'Access Point' " X_NOT_H_R ")",
745                 0, NULL, NULL, NULL},
746         {"( 1.3.6.1.4.1.1466.115.121.1.3 DESC 'Attribute Type Description' )",
747                 0, NULL, NULL, NULL},
748         {"( 1.3.6.1.4.1.1466.115.121.1.4 DESC 'Audio' " X_NOT_H_R ")",
749                 SLAP_SYNTAX_BLOB, blobValidate, NULL, NULL},
750         {"( 1.3.6.1.4.1.1466.115.121.1.5 DESC 'Binary' " X_BINARY X_NOT_H_R ")",
751                 SLAP_SYNTAX_BER, berValidate, NULL, NULL},
752         {"( 1.3.6.1.4.1.1466.115.121.1.6 DESC 'Bit String' )",
753                 0, NULL, NULL, NULL},
754         {"( 1.3.6.1.4.1.1466.115.121.1.7 DESC 'Boolean' )",
755                 0, NULL, NULL, NULL},
756         {"( 1.3.6.1.4.1.1466.115.121.1.8 DESC 'Certificate' "
757                 X_BINARY X_NOT_H_R ")",
758                 SLAP_SYNTAX_BINARY|SLAP_SYNTAX_BER, berValidate, NULL, NULL},
759         {"( 1.3.6.1.4.1.1466.115.121.1.9 DESC 'Certificate List' "
760                 X_BINARY X_NOT_H_R ")",
761                 SLAP_SYNTAX_BINARY|SLAP_SYNTAX_BER, berValidate, NULL, NULL},
762         {"( 1.3.6.1.4.1.1466.115.121.1.10 DESC 'Certificate Pair' "
763                 X_BINARY X_NOT_H_R ")",
764                 SLAP_SYNTAX_BINARY|SLAP_SYNTAX_BER, berValidate, NULL, NULL},
765         {"( 1.3.6.1.4.1.1466.115.121.1.11 DESC 'Country String' )",
766                 0, NULL, NULL, NULL},
767         {"( 1.3.6.1.4.1.1466.115.121.1.12 DESC 'Distinguished Name' )",
768                 0, dnValidate, dnNormalize, NULL},
769         {"( 1.3.6.1.4.1.1466.115.121.1.13 DESC 'Data Quality' )",
770                 0, NULL, NULL, NULL},
771         {"( 1.3.6.1.4.1.1466.115.121.1.14 DESC 'Delivery Method' )",
772                 0, NULL, NULL, NULL},
773         {"( 1.3.6.1.4.1.1466.115.121.1.15 DESC 'Directory String' )",
774                 0, UTF8StringValidate, UTF8StringNormalize, NULL},
775         {"( 1.3.6.1.4.1.1466.115.121.1.16 DESC 'DIT Content Rule Description' )",
776                 0, NULL, NULL, NULL},
777         {"( 1.3.6.1.4.1.1466.115.121.1.17 DESC 'DIT Structure Rule Description' )",
778                 0, NULL, NULL, NULL},
779         {"( 1.3.6.1.4.1.1466.115.121.1.19 DESC 'DSA Quality' )",
780                 0, NULL, NULL, NULL},
781         {"( 1.3.6.1.4.1.1466.115.121.1.20 DESC 'DSE Type' )",
782                 0, NULL, NULL, NULL},
783         {"( 1.3.6.1.4.1.1466.115.121.1.21 DESC 'Enhanced Guide' )",
784                 0, NULL, NULL, NULL},
785         {"( 1.3.6.1.4.1.1466.115.121.1.22 DESC 'Facsimile Telephone Number' )",
786                 0, blobValidate, NULL, NULL},
787         {"( 1.3.6.1.4.1.1466.115.121.1.23 DESC 'Fax' " X_NOT_H_R ")",
788                 SLAP_SYNTAX_BLOB, NULL, NULL, NULL},
789         {"( 1.3.6.1.4.1.1466.115.121.1.24 DESC 'Generalized Time' )",
790                 0, NULL, NULL, NULL},
791         {"( 1.3.6.1.4.1.1466.115.121.1.25 DESC 'Guide' )",
792                 0, NULL, NULL, NULL},
793         {"( 1.3.6.1.4.1.1466.115.121.1.26 DESC 'IA5 String' )",
794                 0, IA5StringValidate, IA5StringNormalize, NULL},
795         {"( 1.3.6.1.4.1.1466.115.121.1.27 DESC 'Integer' )",
796                 0, integerValidate, NULL, NULL},
797         {"( 1.3.6.1.4.1.1466.115.121.1.28 DESC 'JPEG' " X_NOT_H_R ")",
798                 SLAP_SYNTAX_BLOB, NULL, NULL, NULL},
799         {"( 1.3.6.1.4.1.1466.115.121.1.29 DESC 'Master And Shadow Access Points' )",
800                 0, NULL, NULL, NULL},
801         {"( 1.3.6.1.4.1.1466.115.121.1.30 DESC 'Matching Rule Description' )",
802                 0, NULL, NULL, NULL},
803         {"( 1.3.6.1.4.1.1466.115.121.1.31 DESC 'Matching Rule Use Description' )",
804                 0, NULL, NULL, NULL},
805         {"( 1.3.6.1.4.1.1466.115.121.1.32 DESC 'Mail Preference' )",
806                 0, NULL, NULL, NULL},
807         {"( 1.3.6.1.4.1.1466.115.121.1.33 DESC 'MHS OR Address' )",
808                 0, NULL, NULL, NULL},
809         {"( 1.3.6.1.4.1.1466.115.121.1.34 DESC 'Name And Optional UID' )",
810                 0, NULL, NULL, NULL},
811         {"( 1.3.6.1.4.1.1466.115.121.1.35 DESC 'Name Form Description' )",
812                 0, NULL, NULL, NULL},
813         {"( 1.3.6.1.4.1.1466.115.121.1.36 DESC 'Numeric String' )",
814                 0, IA5StringValidate, NumericStringNormalize, NULL},
815         {"( 1.3.6.1.4.1.1466.115.121.1.37 DESC 'Object Class Description' )",
816                 0, NULL, NULL, NULL},
817         {"( 1.3.6.1.4.1.1466.115.121.1.38 DESC 'OID' )",
818                 0, oidValidate, NULL, NULL},
819         {"( 1.3.6.1.4.1.1466.115.121.1.39 DESC 'Other Mailbox' )",
820                 0, NULL, NULL, NULL},
821         {"( 1.3.6.1.4.1.1466.115.121.1.40 DESC 'Octet String' )",
822                 0, blobValidate, NULL, NULL},
823         {"( 1.3.6.1.4.1.1466.115.121.1.41 DESC 'Postal Address' )",
824                 0, blobValidate, NULL, NULL},
825         {"( 1.3.6.1.4.1.1466.115.121.1.42 DESC 'Protocol Information' )",
826                 0, NULL, NULL, NULL},
827         {"( 1.3.6.1.4.1.1466.115.121.1.43 DESC 'Presentation Address' )",
828                 0, NULL, NULL, NULL},
829         {"( 1.3.6.1.4.1.1466.115.121.1.44 DESC 'Printable String' )",
830                 0, printableStringValidate, NULL, NULL},
831         {"( 1.3.6.1.4.1.1466.115.121.1.49 DESC 'Supported Algorithm' "
832                 X_BINARY X_NOT_H_R ")",
833                 SLAP_SYNTAX_BINARY|SLAP_SYNTAX_BER, berValidate, NULL, NULL},
834         {"( 1.3.6.1.4.1.1466.115.121.1.50 DESC 'Telephone Number' )",
835                 0, blobValidate, NULL, NULL},
836         {"( 1.3.6.1.4.1.1466.115.121.1.51 DESC 'Teletex Terminal Identifier' )",
837                 0, NULL, NULL, NULL},
838         {"( 1.3.6.1.4.1.1466.115.121.1.52 DESC 'Telex Number' )",
839                 0, NULL, NULL, NULL},
840         {"( 1.3.6.1.4.1.1466.115.121.1.53 DESC 'UTC Time' )",
841                 0, NULL, NULL, NULL},
842         {"( 1.3.6.1.4.1.1466.115.121.1.54 DESC 'LDAP Syntax Description' )",
843                 0, NULL, NULL, NULL},
844         {"( 1.3.6.1.4.1.1466.115.121.1.55 DESC 'Modify Rights' )",
845                 0, NULL, NULL, NULL},
846         {"( 1.3.6.1.4.1.1466.115.121.1.56 DESC 'LDAP Schema Definition' )",
847                 0, NULL, NULL, NULL},
848         {"( 1.3.6.1.4.1.1466.115.121.1.57 DESC 'LDAP Schema Description' )",
849                 0, NULL, NULL, NULL},
850         {"( 1.3.6.1.4.1.1466.115.121.1.58 DESC 'Substring Assertion' )",
851                 0, NULL, NULL, NULL},
852
853         /* OpenLDAP Experimental Syntaxes */
854         {"( 1.3.6.1.4.1.4203.666.2.1 DESC 'OpenLDAP Experimental ACI' )",
855                 0, NULL, NULL, NULL},
856         {"( 1.3.6.1.4.1.4203.666.2.2 DESC 'OpenLDAP void' " X_HIDE ")" ,
857                 SLAP_SYNTAX_HIDE, NULL, NULL, NULL},
858         {"( 1.3.6.1.4.1.4203.666.2.3 DESC 'OpenLDAP DN' " X_HIDE ")" ,
859                 SLAP_SYNTAX_HIDE, NULL, NULL, NULL},
860
861         {NULL, 0, NULL, NULL, NULL}
862 };
863
864 struct mrule_defs_rec {
865         char *                                          mrd_desc;
866         unsigned                                        mrd_usage;
867         slap_mr_convert_func *          mrd_convert;
868         slap_mr_normalize_func *        mrd_normalize;
869         slap_mr_match_func *            mrd_match;
870         slap_mr_indexer_func *          mrd_indexer;
871         slap_mr_filter_func *           mrd_filter;
872 };
873
874 /*
875  * Other matching rules in X.520 that we do not use:
876  *
877  * 2.5.13.9             numericStringOrderingMatch
878  * 2.5.13.13    booleanMatch
879  * 2.5.13.15    integerOrderingMatch
880  * 2.5.13.18    octetStringOrderingMatch
881  * 2.5.13.19    octetStringSubstringsMatch
882  * 2.5.13.25    uTCTimeMatch
883  * 2.5.13.26    uTCTimeOrderingMatch
884  * 2.5.13.31    directoryStringFirstComponentMatch
885  * 2.5.13.32    wordMatch
886  * 2.5.13.33    keywordMatch
887  * 2.5.13.34    certificateExactMatch
888  * 2.5.13.35    certificateMatch
889  * 2.5.13.36    certificatePairExactMatch
890  * 2.5.13.37    certificatePairMatch
891  * 2.5.13.38    certificateListExactMatch
892  * 2.5.13.39    certificateListMatch
893  * 2.5.13.40    algorithmIdentifierMatch
894  * 2.5.13.41    storedPrefixMatch
895  * 2.5.13.42    attributeCertificateMatch
896  * 2.5.13.43    readerAndKeyIDMatch
897  * 2.5.13.44    attributeIntegrityMatch
898  */
899
900 #ifndef SLAPD_SCHEMA_NOT_COMPAT
901 #define caseIgnoreIA5SubstringsMatch NULL
902 #define caseExactIA5SubstringsMatch NULL
903 #endif
904
905 /* recycled matching functions */
906 #define caseIgnoreMatch caseIgnoreIA5Match
907 #define caseIgnoreOrderingMatch caseIgnoreMatch
908 #define caseIgnoreSubstringsMatch caseIgnoreIA5SubstringsMatch
909 #define caseExactMatch caseExactIA5Match
910 #define caseExactOrderingMatch caseExactMatch
911 #define caseExactSubstringsMatch caseExactIA5SubstringsMatch
912
913 /* unimplemented matching functions */
914 #define objectIdentifierMatch NULL
915 #define caseIgnoreListMatch NULL
916 #define caseIgnoreListSubstringsMatch NULL
917 #define integerMatch NULL
918 #define bitStringMatch NULL
919 #define octetStringMatch NULL
920 #define telephoneNumberMatch NULL
921 #define telephoneNumberSubstringsMatch NULL
922 #define presentationAddressMatch NULL
923 #define uniqueMemberMatch NULL
924 #define protocolInformationMatch NULL
925 #define generalizedTimeMatch NULL
926 #define generalizedTimeOrderingMatch NULL
927 #define integerFirstComponentMatch NULL
928 #define objectIdentifierFirstComponentMatch NULL
929
930 struct mrule_defs_rec mrule_defs[] = {
931         {"( 2.5.13.0 NAME 'objectIdentifierMatch' "
932                 "SYNTAX 1.3.6.1.4.1.1466.115.121.1.38 )",
933                 SLAP_MR_EQUALITY | SLAP_MR_EXT,
934                 NULL, NULL, objectIdentifierMatch, NULL, NULL},
935
936         {"( 2.5.13.1 NAME 'distinguishedNameMatch' "
937                 "SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 )",
938                 SLAP_MR_EQUALITY | SLAP_MR_EXT,
939                 NULL, NULL, dnMatch, NULL, NULL},
940
941         {"( 2.5.13.2 NAME 'caseIgnoreMatch' "
942                 "SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 )",
943                 SLAP_MR_EQUALITY | SLAP_MR_EXT,
944                 NULL, NULL, caseIgnoreMatch, NULL, NULL},
945
946         {"( 2.5.13.3 NAME 'caseIgnoreOrderingMatch' "
947                 "SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 )",
948                 SLAP_MR_ORDERING,
949                 NULL, NULL, caseIgnoreOrderingMatch, NULL, NULL},
950
951         {"( 2.5.13.4 NAME 'caseIgnoreSubstringsMatch' "
952                 "SYNTAX 1.3.6.1.4.1.1466.115.121.1.58 )",
953                 SLAP_MR_SUBSTR | SLAP_MR_EXT,
954                 NULL, NULL, caseIgnoreSubstringsMatch, NULL, NULL},
955
956         /* Next three are not in the RFC's, but are needed for compatibility */
957         {"( 2.5.13.5 NAME 'caseExactMatch' "
958                 "SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 )",
959                 SLAP_MR_EQUALITY | SLAP_MR_EXT,
960                 NULL, NULL, caseExactMatch, NULL, NULL},
961
962         {"( 2.5.13.6 NAME 'caseExactOrderingMatch' "
963                 "SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 )",
964                 SLAP_MR_ORDERING,
965                 NULL, NULL, caseExactOrderingMatch, NULL, NULL},
966
967         {"( 2.5.13.7 NAME 'caseExactSubstringsMatch' "
968                 "SYNTAX 1.3.6.1.4.1.1466.115.121.1.58 )",
969                 SLAP_MR_SUBSTR | SLAP_MR_EXT,
970                 NULL, NULL, caseExactSubstringsMatch, NULL, NULL},
971
972         {"( 2.5.13.8 NAME 'numericStringMatch' "
973                 "SYNTAX 1.3.6.1.4.1.1466.115.121.1.36 )",
974                 SLAP_MR_EQUALITY | SLAP_MR_EXT,
975                 NULL, NULL, caseIgnoreIA5Match, NULL, NULL},
976
977         {"( 2.5.13.10 NAME 'numericStringSubstringsMatch' "
978                 "SYNTAX 1.3.6.1.4.1.1466.115.121.1.58 )",
979                 SLAP_MR_SUBSTR | SLAP_MR_EXT,
980                 NULL, NULL, caseIgnoreIA5SubstringsMatch, NULL, NULL},
981
982         {"( 2.5.13.11 NAME 'caseIgnoreListMatch' "
983                 "SYNTAX 1.3.6.1.4.1.1466.115.121.1.41 )",
984                 SLAP_MR_EQUALITY | SLAP_MR_EXT,
985                 NULL, NULL, caseIgnoreListMatch, NULL, NULL},
986
987         {"( 2.5.13.12 NAME 'caseIgnoreListSubstringsMatch' "
988                 "SYNTAX 1.3.6.1.4.1.1466.115.121.1.58 )",
989                 SLAP_MR_SUBSTR | SLAP_MR_EXT,
990                 NULL, NULL, caseIgnoreListSubstringsMatch, NULL, NULL},
991
992         {"( 2.5.13.14 NAME 'integerMatch' "
993                 "SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 )",
994                 SLAP_MR_NONE | SLAP_MR_EXT,
995                 NULL, NULL, integerMatch, NULL, NULL},
996
997         {"( 2.5.13.16 NAME 'bitStringMatch' "
998                 "SYNTAX 1.3.6.1.4.1.1466.115.121.1.6 )",
999                 SLAP_MR_NONE | SLAP_MR_EXT,
1000                 NULL, NULL, bitStringMatch, NULL, NULL},
1001
1002         {"( 2.5.13.17 NAME 'octetStringMatch' "
1003                 "SYNTAX 1.3.6.1.4.1.1466.115.121.1.40 )",
1004                 SLAP_MR_EQUALITY | SLAP_MR_EXT,
1005                 NULL, NULL, octetStringMatch, NULL, NULL},
1006
1007         {"( 2.5.13.20 NAME 'telephoneNumberMatch' "
1008                 "SYNTAX 1.3.6.1.4.1.1466.115.121.1.50 )",
1009                 SLAP_MR_EQUALITY | SLAP_MR_EXT,
1010                 NULL, NULL, telephoneNumberMatch, NULL, NULL},
1011
1012         {"( 2.5.13.21 NAME 'telephoneNumberSubstringsMatch' "
1013                 "SYNTAX 1.3.6.1.4.1.1466.115.121.1.58 )",
1014                 SLAP_MR_SUBSTR | SLAP_MR_EXT,
1015                 NULL, NULL, telephoneNumberSubstringsMatch, NULL, NULL},
1016
1017         {"( 2.5.13.22 NAME 'presentationAddressMatch' "
1018                 "SYNTAX 1.3.6.1.4.1.1466.115.121.1.43 )",
1019                 SLAP_MR_NONE | SLAP_MR_EXT,
1020                 NULL, NULL, presentationAddressMatch, NULL, NULL},
1021
1022         {"( 2.5.13.23 NAME 'uniqueMemberMatch' "
1023                 "SYNTAX 1.3.6.1.4.1.1466.115.121.1.34 )",
1024                 SLAP_MR_NONE | SLAP_MR_EXT,
1025                 NULL, NULL, uniqueMemberMatch, NULL, NULL},
1026
1027         {"( 2.5.13.24 NAME 'protocolInformationMatch' "
1028                 "SYNTAX 1.3.6.1.4.1.1466.115.121.1.42 )",
1029                 SLAP_MR_NONE | SLAP_MR_EXT,
1030                 NULL, NULL, protocolInformationMatch, NULL, NULL},
1031
1032         {"( 2.5.13.27 NAME 'generalizedTimeMatch' "
1033                 "SYNTAX 1.3.6.1.4.1.1466.115.121.1.24 )",
1034                 SLAP_MR_EQUALITY | SLAP_MR_EXT,
1035                 NULL, NULL, generalizedTimeMatch, NULL, NULL},
1036
1037         {"( 2.5.13.28 NAME 'generalizedTimeOrderingMatch' "
1038                 "SYNTAX 1.3.6.1.4.1.1466.115.121.1.24 )",
1039                 SLAP_MR_ORDERING,
1040                 NULL, NULL, generalizedTimeOrderingMatch, NULL, NULL},
1041
1042         {"( 2.5.13.29 NAME 'integerFirstComponentMatch' "
1043                 "SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 )",
1044                 SLAP_MR_EQUALITY | SLAP_MR_EXT,
1045                 NULL, NULL, integerFirstComponentMatch, NULL, NULL},
1046
1047         {"( 2.5.13.30 NAME 'objectIdentifierFirstComponentMatch' "
1048                 "SYNTAX 1.3.6.1.4.1.1466.115.121.1.38 )",
1049                 SLAP_MR_EQUALITY | SLAP_MR_EXT,
1050                 NULL, NULL, objectIdentifierFirstComponentMatch, NULL, NULL},
1051
1052         {"( 1.3.6.1.4.1.1466.109.114.1 NAME 'caseExactIA5Match' "
1053                 "SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 )",
1054                 SLAP_MR_EQUALITY | SLAP_MR_EXT,
1055                 NULL, NULL, caseExactIA5Match, NULL, NULL},
1056
1057         {"( 1.3.6.1.4.1.1466.109.114.2 NAME 'caseIgnoreIA5Match' "
1058                 "SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 )",
1059                 SLAP_MR_EQUALITY | SLAP_MR_EXT,
1060                 NULL, NULL, caseIgnoreIA5Match, NULL, NULL},
1061
1062         {"( 1.3.6.1.4.1.1466.109.114.3 NAME 'caseIgnoreIA5SubstringsMatch' "
1063                 "SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 )",
1064                 SLAP_MR_SUBSTR,
1065                 NULL, NULL, caseIgnoreIA5SubstringsMatch, NULL, NULL},
1066
1067         {NULL, SLAP_MR_NONE, NULL, NULL, NULL}
1068 };
1069
1070 int
1071 schema_init( void )
1072 {
1073         int             res;
1074         int             i;
1075
1076         /* we should only be called once (from main) */
1077         assert( schema_init_done == 0 );
1078
1079         for ( i=0; syntax_defs[i].sd_desc != NULL; i++ ) {
1080                 res = register_syntax( syntax_defs[i].sd_desc,
1081                     syntax_defs[i].sd_flags,
1082                     syntax_defs[i].sd_validate,
1083                     syntax_defs[i].sd_normalize,
1084                         syntax_defs[i].sd_pretty
1085 #ifdef SLAPD_BINARY_CONVERSION
1086                         ,
1087                     syntax_defs[i].sd_ber2str,
1088                         syntax_defs[i].sd_str2ber
1089 #endif
1090                 );
1091
1092                 if ( res ) {
1093                         fprintf( stderr, "schema_init: Error registering syntax %s\n",
1094                                  syntax_defs[i].sd_desc );
1095                         return LDAP_OTHER;
1096                 }
1097         }
1098
1099         for ( i=0; mrule_defs[i].mrd_desc != NULL; i++ ) {
1100                 if( mrule_defs[i].mrd_usage == SLAP_MR_NONE ) {
1101                         fprintf( stderr,
1102                                 "schema_init: Ingoring unusable matching rule %s\n",
1103                                  mrule_defs[i].mrd_desc );
1104                         continue;
1105                 }
1106
1107                 res = register_matching_rule(
1108                         mrule_defs[i].mrd_desc,
1109                         mrule_defs[i].mrd_usage,
1110                         mrule_defs[i].mrd_convert,
1111                         mrule_defs[i].mrd_normalize,
1112                     mrule_defs[i].mrd_match,
1113                         mrule_defs[i].mrd_indexer,
1114                         mrule_defs[i].mrd_filter );
1115
1116                 if ( res ) {
1117                         fprintf( stderr,
1118                                 "schema_init: Error registering matching rule %s\n",
1119                                  mrule_defs[i].mrd_desc );
1120                         return LDAP_OTHER;
1121                 }
1122         }
1123         schema_init_done = 1;
1124         return LDAP_SUCCESS;
1125 }