]> git.sur5r.net Git - openldap/blob - servers/slapd/mr.c
#unifdef -DSLAP_NVALUES_ON_DISK
[openldap] / servers / slapd / mr.c
1 /* mr.c - routines to manage matching rule definitions */
2 /* $OpenLDAP$ */
3 /*
4  * Copyright 1998-2003 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 struct mindexrec {
20         struct berval   mir_name;
21         MatchingRule    *mir_mr;
22 };
23
24 static Avlnode  *mr_index = NULL;
25 static LDAP_SLIST_HEAD(MRList, slap_matching_rule) mr_list
26         = LDAP_SLIST_HEAD_INITIALIZER(&mr_list);
27 static LDAP_SLIST_HEAD(MRUList, slap_matching_rule_use) mru_list
28         = LDAP_SLIST_HEAD_INITIALIZER(&mru_list);
29
30 static int
31 mr_index_cmp(
32     const void  *v_mir1,
33     const void  *v_mir2
34 )
35 {
36         const struct mindexrec  *mir1 = v_mir1;
37         const struct mindexrec  *mir2 = v_mir2;
38         int i = mir1->mir_name.bv_len - mir2->mir_name.bv_len;
39         if (i) return i;
40         return (strcmp( mir1->mir_name.bv_val, mir2->mir_name.bv_val ));
41 }
42
43 static int
44 mr_index_name_cmp(
45     const void  *v_name,
46     const void  *v_mir
47 )
48 {
49         const struct berval    *name = v_name;
50         const struct mindexrec *mir  = v_mir;
51         int i = name->bv_len - mir->mir_name.bv_len;
52         if (i) return i;
53         return (strncmp( name->bv_val, mir->mir_name.bv_val, name->bv_len ));
54 }
55
56 MatchingRule *
57 mr_find( const char *mrname )
58 {
59         struct berval bv;
60
61         bv.bv_val = (char *)mrname;
62         bv.bv_len = strlen( mrname );
63         return mr_bvfind( &bv );
64 }
65
66 MatchingRule *
67 mr_bvfind( struct berval *mrname )
68 {
69         struct mindexrec        *mir = NULL;
70
71         if ( (mir = avl_find( mr_index, mrname, mr_index_name_cmp )) != NULL ) {
72                 return( mir->mir_mr );
73         }
74         return( NULL );
75 }
76
77 void
78 mr_destroy( void )
79 {
80         MatchingRule *m;
81
82         avl_free(mr_index, ldap_memfree);
83         while( !LDAP_SLIST_EMPTY(&mr_list) ) {
84                 m = LDAP_SLIST_FIRST(&mr_list);
85                 LDAP_SLIST_REMOVE_HEAD(&mr_list, smr_next);
86                 ch_free( m->smr_str.bv_val );
87                 ch_free( m->smr_compat_syntaxes );
88                 ldap_matchingrule_free((LDAPMatchingRule *)m);
89         }
90 }
91
92 static int
93 mr_insert(
94     MatchingRule        *smr,
95     const char          **err
96 )
97 {
98         struct mindexrec        *mir;
99         char                    **names;
100
101         LDAP_SLIST_NEXT( smr, smr_next ) = NULL;
102         LDAP_SLIST_INSERT_HEAD(&mr_list, smr, smr_next);
103
104         if ( smr->smr_oid ) {
105                 mir = (struct mindexrec *)
106                         ch_calloc( 1, sizeof(struct mindexrec) );
107                 mir->mir_name.bv_val = smr->smr_oid;
108                 mir->mir_name.bv_len = strlen( smr->smr_oid );
109                 mir->mir_mr = smr;
110                 if ( avl_insert( &mr_index, (caddr_t) mir,
111                                  mr_index_cmp, avl_dup_error ) ) {
112                         *err = smr->smr_oid;
113                         ldap_memfree(mir);
114                         return SLAP_SCHERR_MR_DUP;
115                 }
116                 /* FIX: temporal consistency check */
117                 mr_bvfind(&mir->mir_name);
118         }
119         if ( (names = smr->smr_names) ) {
120                 while ( *names ) {
121                         mir = (struct mindexrec *)
122                                 ch_calloc( 1, sizeof(struct mindexrec) );
123                         mir->mir_name.bv_val = *names;
124                         mir->mir_name.bv_len = strlen( *names );
125                         mir->mir_mr = smr;
126                         if ( avl_insert( &mr_index, (caddr_t) mir,
127                                          mr_index_cmp, avl_dup_error ) ) {
128                                 *err = *names;
129                                 ldap_memfree(mir);
130                                 return SLAP_SCHERR_MR_DUP;
131                         }
132                         /* FIX: temporal consistency check */
133                         mr_bvfind(&mir->mir_name);
134                         names++;
135                 }
136         }
137         return 0;
138 }
139
140 int
141 mr_add(
142     LDAPMatchingRule            *mr,
143     slap_mrule_defs_rec *def,
144         MatchingRule    *amr,
145     const char          **err
146 )
147 {
148         MatchingRule    *smr;
149         Syntax          *syn;
150         Syntax          **compat_syn = NULL;
151         int             code;
152
153         if( def->mrd_compat_syntaxes ) {
154                 int i;
155                 for( i=0; def->mrd_compat_syntaxes[i]; i++ ) {
156                         /* just count em */
157                 }
158
159                 compat_syn = ch_malloc( sizeof(Syntax *) * (i+1) );
160
161                 for( i=0; def->mrd_compat_syntaxes[i]; i++ ) {
162                         compat_syn[i] = syn_find( def->mrd_compat_syntaxes[i] );
163                         if( compat_syn[i] == NULL ) {
164                                 return SLAP_SCHERR_SYN_NOT_FOUND;
165                         }
166                 }
167
168                 compat_syn[i] = NULL;
169         }
170
171         smr = (MatchingRule *) ch_calloc( 1, sizeof(MatchingRule) );
172         AC_MEMCPY( &smr->smr_mrule, mr, sizeof(LDAPMatchingRule));
173
174         /*
175          * note: smr_bvoid uses the same memory of smr_mrule.mr_oid;
176          * smr_oidlen is #defined as smr_bvoid.bv_len
177          */
178         smr->smr_bvoid.bv_val = smr->smr_mrule.mr_oid;
179         smr->smr_oidlen = strlen( mr->mr_oid );
180         smr->smr_usage = def->mrd_usage;
181         smr->smr_compat_syntaxes = compat_syn;
182         smr->smr_normalize = def->mrd_normalize;
183         smr->smr_match = def->mrd_match;
184 #ifndef SLAP_NVALUES
185         smr->smr_convert = def->mrd_convert;
186 #endif
187         smr->smr_indexer = def->mrd_indexer;
188         smr->smr_filter = def->mrd_filter;
189         smr->smr_associated = amr;
190
191         if ( smr->smr_syntax_oid ) {
192                 if ( (syn = syn_find(smr->smr_syntax_oid)) ) {
193                         smr->smr_syntax = syn;
194                 } else {
195                         *err = smr->smr_syntax_oid;
196                         return SLAP_SCHERR_SYN_NOT_FOUND;
197                 }
198         } else {
199                 *err = "";
200                 return SLAP_SCHERR_MR_INCOMPLETE;
201         }
202         code = mr_insert(smr,err);
203         return code;
204 }
205
206 int
207 register_matching_rule(
208         slap_mrule_defs_rec *def )
209 {
210         LDAPMatchingRule *mr;
211         MatchingRule *amr = NULL;
212         int             code;
213         const char      *err;
214
215         if( def->mrd_usage == SLAP_MR_NONE &&
216                 def->mrd_compat_syntaxes == NULL )
217         {
218 #ifdef NEW_LOGGING
219                 LDAP_LOG( OPERATION, ERR, 
220                         "register_matching_rule: %s not usable\n", def->mrd_desc, 0, 0 );
221 #else
222                 Debug( LDAP_DEBUG_ANY, "register_matching_rule: not usable %s\n",
223                     def->mrd_desc, 0, 0 );
224 #endif
225
226                 return -1;
227         }
228
229         if( def->mrd_associated != NULL ) {
230                 amr = mr_find( def->mrd_associated );
231
232 #if 0
233                 /* ignore for now */
234
235                 if( amr == NULL ) {
236 #ifdef NEW_LOGGING
237                         LDAP_LOG( OPERATION, ERR,
238                            "register_matching_rule: could not locate associated "
239                            "matching rule %s for %s\n",
240                                 def->mrd_associated, def->mrd_desc, 0 );
241 #else
242                         Debug( LDAP_DEBUG_ANY, "register_matching_rule: could not locate "
243                                 "associated matching rule %s for %s\n",
244                                 def->mrd_associated, def->mrd_desc, 0 );
245 #endif
246
247                         return -1;
248                 }
249 #endif
250         }
251
252         mr = ldap_str2matchingrule( def->mrd_desc, &code, &err,
253                 LDAP_SCHEMA_ALLOW_ALL );
254         if ( !mr ) {
255 #ifdef NEW_LOGGING
256                 LDAP_LOG( OPERATION, ERR, 
257                         "register_matching_rule: %s before %s in %s.\n",
258                         ldap_scherr2str(code), err, def->mrd_desc );
259 #else
260                 Debug( LDAP_DEBUG_ANY,
261                         "Error in register_matching_rule: %s before %s in %s\n",
262                     ldap_scherr2str(code), err, def->mrd_desc );
263 #endif
264
265                 return( -1 );
266         }
267
268         code = mr_add( mr, def, amr, &err );
269
270         ldap_memfree( mr );
271
272         if ( code ) {
273 #ifdef NEW_LOGGING
274                 LDAP_LOG( OPERATION, ERR, 
275                         "register_matching_rule: %s for %s in %s.\n",
276                         scherr2str(code), err, def->mrd_desc );
277 #else
278                 Debug( LDAP_DEBUG_ANY,
279                         "Error in register_matching_rule: %s for %s in %s\n",
280                     scherr2str(code), err, def->mrd_desc );
281 #endif
282
283                 return( -1 );
284         }
285
286         return( 0 );
287 }
288
289 void
290 mru_destroy( void )
291 {
292         MatchingRuleUse *m;
293
294         while( !LDAP_SLIST_EMPTY(&mru_list) ) {
295                 m = LDAP_SLIST_FIRST(&mru_list);
296                 LDAP_SLIST_REMOVE_HEAD(&mru_list, smru_next);
297
298                 if ( m->smru_str.bv_val ) {
299                         ch_free( m->smru_str.bv_val );
300                 }
301                 /* memory borrowed from m->smru_mr */
302                 m->smru_oid = NULL;
303                 m->smru_names = NULL;
304                 m->smru_desc = NULL;
305
306                 /* free what's left (basically 
307                  * smru_mruleuse.mru_applies_oids) */
308                 ldap_matchingruleuse_free((LDAPMatchingRuleUse *)m);
309         }
310 }
311
312 int
313 matching_rule_use_init( void )
314 {
315         MatchingRule    *mr;
316         MatchingRuleUse **mru_ptr = &LDAP_SLIST_FIRST(&mru_list);
317
318 #ifdef NEW_LOGGING
319         LDAP_LOG( OPERATION, INFO, "matching_rule_use_init\n", 0, 0, 0 );
320 #else
321         Debug( LDAP_DEBUG_TRACE, "matching_rule_use_init\n", 0, 0, 0 );
322 #endif
323
324         LDAP_SLIST_FOREACH( mr, &mr_list, smr_next ) {
325                 AttributeType   *at;
326                 MatchingRuleUse mru_storage, *mru = &mru_storage;
327
328                 char            **applies_oids = NULL;
329
330                 mr->smr_mru = NULL;
331
332                 /* hide rules marked as HIDE */
333                 if ( mr->smr_usage & SLAP_MR_HIDE ) {
334                         continue;
335                 }
336
337                 /* hide rules not marked as designed for extensibility */
338                 /* MR_EXT means can be used any attribute type whose
339                  * syntax is same as the assertion syntax.
340                  * Another mechanism is needed where rule can be used
341                  * with attribute of other syntaxes.
342                  * Framework doesn't support this (yet).
343                  */
344
345                 if (!( ( mr->smr_usage & SLAP_MR_EXT )
346                         || mr->smr_compat_syntaxes ) )
347                 {
348                         continue;
349                 }
350
351                 memset( mru, 0, sizeof( MatchingRuleUse ) );
352
353                 /*
354                  * Note: we're using the same values of the corresponding 
355                  * MatchingRule structure; maybe we'd copy them ...
356                  */
357                 mru->smru_mr = mr;
358                 mru->smru_obsolete = mr->smr_obsolete;
359                 mru->smru_applies_oids = NULL;
360                 LDAP_SLIST_NEXT(mru, smru_next) = NULL;
361                 mru->smru_oid = mr->smr_oid;
362                 mru->smru_names = mr->smr_names;
363                 mru->smru_desc = mr->smr_desc;
364
365 #ifdef NEW_LOGGING
366                 LDAP_LOG( OPERATION, INFO, "    %s (%s): ", 
367                                 mru->smru_oid, 
368                                 mru->smru_names ? mru->smru_names[ 0 ] : "", 0 );
369 #else
370                 Debug( LDAP_DEBUG_TRACE, "    %s (%s): ", 
371                                 mru->smru_oid, 
372                                 mru->smru_names ? mru->smru_names[ 0 ] : "", 0 );
373 #endif
374
375                 at = NULL;
376                 for ( at_start( &at ); at; at_next( &at ) ) {
377                         if( at->sat_flags & SLAP_AT_HIDE ) continue;
378
379                         if( mr_usable_with_at( mr, at )) {
380                                 ldap_charray_add( &applies_oids, at->sat_cname.bv_val );
381                         }
382                 }
383
384                 /*
385                  * Note: the matchingRules that are not used
386                  * by any attributeType are not listed as
387                  * matchingRuleUse
388                  */
389                 if ( applies_oids != NULL ) {
390                         mru->smru_applies_oids = applies_oids;
391 #ifdef NEW_LOGGING
392                         {
393                                 char *str = ldap_matchingruleuse2str( &mru->smru_mruleuse );
394                                 LDAP_LOG( OPERATION, INFO, "matchingRuleUse: %s\n", str, 0, 0 );
395                                 ldap_memfree( str );
396                         }
397 #else
398                         {
399                                 char *str = ldap_matchingruleuse2str( &mru->smru_mruleuse );
400                                 Debug( LDAP_DEBUG_TRACE, "matchingRuleUse: %s\n", str, 0, 0 );
401                                 ldap_memfree( str );
402                         }
403 #endif
404
405                         mru = (MatchingRuleUse *)ber_memalloc( sizeof( MatchingRuleUse ) );
406                         /* call-forward from MatchingRule to MatchingRuleUse */
407                         mr->smr_mru = mru;
408                         /* copy static data to newly allocated struct */
409                         *mru = mru_storage;
410                         /* append the struct pointer to the end of the list */
411                         *mru_ptr = mru;
412                         /* update the list head pointer */
413                         mru_ptr = &LDAP_SLIST_NEXT(mru,smru_next);
414                 }
415         }
416
417         return( 0 );
418 }
419
420 int mr_usable_with_at(
421         MatchingRule *mr,
422         AttributeType *at )
423 {
424         if( mr->smr_usage & SLAP_MR_EXT && ( 
425                 mr->smr_syntax == at->sat_syntax ||
426                 mr == at->sat_equality || mr == at->sat_approx ) )
427         {
428                 return 1;
429         }
430
431         if ( mr->smr_compat_syntaxes ) {
432                 int i;
433                 for( i=0; mr->smr_compat_syntaxes[i]; i++ ) {
434                         if( at->sat_syntax == mr->smr_compat_syntaxes[i] ) {
435                                 return 1;
436                         }
437                 }
438         }
439         return 0;
440 }
441
442 int mr_schema_info( Entry *e )
443 {
444         AttributeDescription *ad_matchingRules = slap_schema.si_ad_matchingRules;
445         MatchingRule *mr;
446 #ifdef SLAP_NVALUES
447         struct berval nval;
448 #endif
449
450         LDAP_SLIST_FOREACH(mr, &mr_list, smr_next ) {
451                 if ( mr->smr_usage & SLAP_MR_HIDE ) {
452                         /* skip hidden rules */
453                         continue;
454                 }
455
456                 if ( ! mr->smr_match ) {
457                         /* skip rules without matching functions */
458                         continue;
459                 }
460
461                 if ( mr->smr_str.bv_val == NULL ) {
462                         if ( ldap_matchingrule2bv( &mr->smr_mrule, &mr->smr_str ) == NULL ) {
463                                 return -1;
464                         }
465                 }
466 #if 0
467                 Debug( LDAP_DEBUG_TRACE, "Merging mr [%lu] %s\n",
468                         mr->smr_str.bv_len, mr->smr_str.bv_val, 0 );
469 #endif
470 #ifdef SLAP_NVALUES
471                 nval.bv_val = mr->smr_oid;
472                 nval.bv_len = strlen(mr->smr_oid);
473                 if( attr_merge_one( e, ad_matchingRules, &mr->smr_str, &nval ) )
474 #else
475                 if( attr_merge_one( e, ad_matchingRules, &mr->smr_str ) )
476 #endif
477                 {
478                         return -1;
479                 }
480         }
481         return 0;
482 }
483
484 int mru_schema_info( Entry *e )
485 {
486         AttributeDescription *ad_matchingRuleUse 
487                 = slap_schema.si_ad_matchingRuleUse;
488         MatchingRuleUse *mru;
489 #ifdef SLAP_NVALUES
490         struct berval nval;
491 #endif
492
493         LDAP_SLIST_FOREACH( mru, &mru_list, smru_next ) {
494
495                 assert( !( mru->smru_usage & SLAP_MR_HIDE ) );
496
497                 if ( mru->smru_str.bv_val == NULL ) {
498                         if ( ldap_matchingruleuse2bv( &mru->smru_mruleuse, &mru->smru_str )
499                                         == NULL ) {
500                                 return -1;
501                         }
502                 }
503
504 #if 0
505                 Debug( LDAP_DEBUG_TRACE, "Merging mru [%lu] %s\n",
506                         mru->smru_str.bv_len, mru->smru_str.bv_val, 0 );
507 #endif
508 #ifdef SLAP_NVALUES
509                 nval.bv_val = mru->smru_oid;
510                 nval.bv_len = strlen(mru->smru_oid);
511                 if( attr_merge_one( e, ad_matchingRuleUse, &mru->smru_str, &nval ) )
512 #else
513                 if( attr_merge_one( e, ad_matchingRuleUse, &mru->smru_str ) )
514 #endif
515                 {
516                         return -1;
517                 }
518         }
519         return 0;
520 }