]> git.sur5r.net Git - openldap/blob - servers/slapd/filterentry.c
Update to last commit
[openldap] / servers / slapd / filterentry.c
1 /* filterentry.c - apply a filter to an entry */
2 /* $OpenLDAP$ */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4  *
5  * Copyright 1998-2004 The OpenLDAP Foundation.
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted only as authorized by the OpenLDAP
10  * Public License.
11  *
12  * A copy of this license is available in the file LICENSE in the
13  * top-level directory of the distribution or, alternatively, at
14  * <http://www.OpenLDAP.org/license.html>.
15  */
16 /* Portions Copyright (c) 1995 Regents of the University of Michigan.
17  * All rights reserved.
18  *
19  * Redistribution and use in source and binary forms are permitted
20  * provided that this notice is preserved and that due credit is given
21  * to the University of Michigan at Ann Arbor. The name of the University
22  * may not be used to endorse or promote products derived from this
23  * software without specific prior written permission. This software
24  * is provided ``as is'' without express or implied warranty.
25  */
26
27 #include "portable.h"
28
29 #include <stdio.h>
30
31 #include <ac/socket.h>
32 #include <ac/string.h>
33
34
35 #include "slap.h"
36
37 static int      test_filter_and( Operation *op, Entry *e, Filter *flist );
38 static int      test_filter_or( Operation *op, Entry *e, Filter *flist );
39 static int      test_substrings_filter( Operation *op, Entry *e, Filter *f);
40 static int      test_ava_filter( Operation *op, Entry *e, AttributeAssertion *ava, int type );
41 static int      test_mra_filter( Operation *op, Entry *e, MatchingRuleAssertion *mra );
42 static int      test_presence_filter( Operation *op, Entry *e, AttributeDescription *desc );
43
44
45 /*
46  * test_filter - test a filter against a single entry.
47  * returns:
48  *              LDAP_COMPARE_TRUE               filter matched
49  *              LDAP_COMPARE_FALSE              filter did not match
50  *              SLAPD_COMPARE_UNDEFINED filter is undefined
51  *      or an ldap result code indicating error
52  */
53
54 int
55 test_filter(
56     Operation   *op,
57     Entry       *e,
58     Filter      *f
59 )
60 {
61         int     rc;
62 #ifdef NEW_LOGGING
63         LDAP_LOG( FILTER, ENTRY, "test_filter: begin\n", 0, 0, 0 );
64 #else
65         Debug( LDAP_DEBUG_FILTER, "=> test_filter\n", 0, 0, 0 );
66 #endif
67
68         switch ( f->f_choice ) {
69         case SLAPD_FILTER_COMPUTED:
70 #ifdef NEW_LOGGING
71                 LDAP_LOG( FILTER, DETAIL1,
72                         "test_filter:   COMPUTED %s (%d)\n",
73                         f->f_result == LDAP_COMPARE_FALSE ? "false" :
74                         f->f_result == LDAP_COMPARE_TRUE         ? "true"  :
75                         f->f_result == SLAPD_COMPARE_UNDEFINED ? "undefined" :
76                         "error", f->f_result, 0 );
77 #else
78                 Debug( LDAP_DEBUG_FILTER, "    COMPUTED %s (%d)\n",
79                         f->f_result == LDAP_COMPARE_FALSE ? "false" :
80                         f->f_result == LDAP_COMPARE_TRUE ? "true" :
81                         f->f_result == SLAPD_COMPARE_UNDEFINED ? "undefined" : "error",
82                         f->f_result, 0 );
83 #endif
84
85                 rc = f->f_result;
86                 break;
87
88         case LDAP_FILTER_EQUALITY:
89 #ifdef NEW_LOGGING
90                 LDAP_LOG( FILTER, DETAIL1, "test_filter:   EQUALITY\n", 0, 0, 0 );
91 #else
92                 Debug( LDAP_DEBUG_FILTER, "    EQUALITY\n", 0, 0, 0 );
93 #endif
94
95                 rc = test_ava_filter( op, e, f->f_ava,
96                     LDAP_FILTER_EQUALITY );
97                 break;
98
99         case LDAP_FILTER_SUBSTRINGS:
100 #ifdef NEW_LOGGING
101                 LDAP_LOG( FILTER, DETAIL1, "test_filter  SUBSTRINGS\n", 0, 0, 0 );
102 #else
103                 Debug( LDAP_DEBUG_FILTER, "    SUBSTRINGS\n", 0, 0, 0 );
104 #endif
105
106                 rc = test_substrings_filter( op, e, f );
107                 break;
108
109         case LDAP_FILTER_GE:
110                 rc = test_ava_filter( op, e, f->f_ava,
111                     LDAP_FILTER_GE );
112                 break;
113
114         case LDAP_FILTER_LE:
115                 rc = test_ava_filter( op, e, f->f_ava,
116                     LDAP_FILTER_LE );
117                 break;
118
119         case LDAP_FILTER_PRESENT:
120 #ifdef NEW_LOGGING
121                 LDAP_LOG( FILTER, DETAIL1, "test_filter:        PRESENT\n", 0, 0, 0 );
122 #else
123                 Debug( LDAP_DEBUG_FILTER, "    PRESENT\n", 0, 0, 0 );
124 #endif
125
126                 rc = test_presence_filter( op, e, f->f_desc );
127                 break;
128
129         case LDAP_FILTER_APPROX:
130 #ifdef NEW_LOGGING
131                 LDAP_LOG( FILTER, DETAIL1, "test_filter: APPROX\n", 0, 0, 0 );
132 #else
133                 Debug( LDAP_DEBUG_FILTER, "    APPROX\n", 0, 0, 0 );
134 #endif
135                 rc = test_ava_filter( op, e, f->f_ava,
136                     LDAP_FILTER_APPROX );
137                 break;
138
139         case LDAP_FILTER_AND:
140 #ifdef NEW_LOGGING
141                 LDAP_LOG( FILTER, DETAIL1, "test_filter:  AND\n", 0, 0, 0 );
142 #else
143                 Debug( LDAP_DEBUG_FILTER, "    AND\n", 0, 0, 0 );
144 #endif
145
146                 rc = test_filter_and( op, e, f->f_and );
147                 break;
148
149         case LDAP_FILTER_OR:
150 #ifdef NEW_LOGGING
151                 LDAP_LOG( FILTER, DETAIL1, "test_filter:        OR\n", 0, 0, 0 );
152 #else
153                 Debug( LDAP_DEBUG_FILTER, "    OR\n", 0, 0, 0 );
154 #endif
155
156                 rc = test_filter_or( op, e, f->f_or );
157                 break;
158
159         case LDAP_FILTER_NOT:
160 #ifdef NEW_LOGGING
161                 LDAP_LOG( FILTER, DETAIL1, "test_filter:        NOT\n", 0, 0, 0 );
162 #else
163                 Debug( LDAP_DEBUG_FILTER, "    NOT\n", 0, 0, 0 );
164 #endif
165
166                 rc = test_filter( op, e, f->f_not );
167
168                 /* Flip true to false and false to true
169                  * but leave Undefined alone.
170                  */
171                 switch( rc ) {
172                 case LDAP_COMPARE_TRUE:
173                         rc = LDAP_COMPARE_FALSE;
174                         break;
175                 case LDAP_COMPARE_FALSE:
176                         rc = LDAP_COMPARE_TRUE;
177                         break;
178                 }
179                 break;
180
181         case LDAP_FILTER_EXT:
182 #ifdef NEW_LOGGING
183                 LDAP_LOG( FILTER, DETAIL1, "test_filter:        EXT\n", 0, 0, 0 );
184 #else
185                 Debug( LDAP_DEBUG_FILTER, "    EXT\n", 0, 0, 0 );
186 #endif
187
188                 rc = test_mra_filter( op, e, f->f_mra );
189                 break;
190
191         default:
192 #ifdef NEW_LOGGING
193                 LDAP_LOG( FILTER, INFO, 
194                         "test_filter:  unknown filter type %lu\n", f->f_choice, 0, 0 );
195 #else
196                 Debug( LDAP_DEBUG_ANY, "    unknown filter type %lu\n",
197                     f->f_choice, 0, 0 );
198 #endif
199
200                 rc = LDAP_PROTOCOL_ERROR;
201         }
202
203 #ifdef NEW_LOGGING
204         LDAP_LOG( FILTER, RESULTS, "test_filter:  return=%d\n", rc, 0, 0 );
205 #else
206         Debug( LDAP_DEBUG_FILTER, "<= test_filter %d\n", rc, 0, 0 );
207 #endif
208
209         return( rc );
210 }
211
212 static int test_mra_filter(
213         Operation *op,
214         Entry *e,
215         MatchingRuleAssertion *mra )
216 {
217         Attribute       *a;
218         void *memctx = op ? op->o_tmpmemctx : NULL;
219
220         if ( mra->ma_desc ) {
221                 /*
222                  * if ma_desc is available, then we're filtering for
223                  * one attribute, and SEARCH permissions can be checked
224                  * directly.
225                  */
226                 if( !access_allowed( op, e,
227                         mra->ma_desc, &mra->ma_value, ACL_SEARCH, NULL ) )
228                 {
229                         return LDAP_INSUFFICIENT_ACCESS;
230                 }
231
232                 for(a = attrs_find( e->e_attrs, mra->ma_desc );
233                         a != NULL;
234                         a = attrs_find( a->a_next, mra->ma_desc ) )
235                 {
236                         struct berval *bv;
237                         /* If ma_rule is not the same as the attribute's
238                          * normal rule, then we can't use the a_nvals.
239                          */
240                         if (mra->ma_rule == a->a_desc->ad_type->sat_equality) {
241                                 bv = a->a_nvals;
242                         } else {
243                                 bv = a->a_vals;
244                         }
245
246                         for ( ; bv->bv_val != NULL; bv++ ) {
247                                 int ret;
248                                 int rc;
249                                 const char *text;
250         
251                                 rc = value_match( &ret, a->a_desc, mra->ma_rule, 0,
252                                         bv, &mra->ma_value, &text );
253         
254                                 if( rc != LDAP_SUCCESS ) {
255                                         return rc;
256                                 }
257         
258                                 if ( ret == 0 ) {
259                                         return LDAP_COMPARE_TRUE;
260                                 }
261                         }
262                 }
263         } else {
264
265                 /*
266                  * No attribute description: test all
267                  */
268                 for ( a = e->e_attrs; a != NULL; a = a->a_next ) {
269                         struct berval   *bv, value;
270                         const char      *text = NULL;
271                         int             rc;
272
273                         /* check if matching is appropriate */
274                         if ( !mr_usable_with_at( mra->ma_rule, a->a_desc->ad_type )) {
275                                 continue;
276                         }
277
278                         /* normalize for equality */
279                         rc = asserted_value_validate_normalize( a->a_desc, mra->ma_rule,
280                                 SLAP_MR_EXT|SLAP_MR_VALUE_OF_ASSERTION_SYNTAX,
281                                 &mra->ma_value, &value, &text, memctx );
282                         if ( rc != LDAP_SUCCESS ) {
283                                 continue;
284                         }
285
286                         /* check search access */
287                         if ( !access_allowed( op, e,
288                                 a->a_desc, &value, ACL_SEARCH, NULL ) ) {
289                                 op->o_tmpfree( value.bv_val, memctx );
290                                 continue;
291                         }
292
293                         /* check match */
294                         if (mra->ma_rule == a->a_desc->ad_type->sat_equality)
295                                 bv = a->a_nvals;
296                         else
297                                 bv = a->a_vals;
298                         for ( ; bv->bv_val != NULL; bv++ )
299                         {
300                                 int ret;
301         
302                                 rc = value_match( &ret, a->a_desc, mra->ma_rule, 0,
303                                         bv, &value, &text );
304         
305                                 if( rc != LDAP_SUCCESS ) {
306                                         break;
307                                 }
308         
309                                 if ( ret == 0 ) {
310                                         rc = LDAP_COMPARE_TRUE;
311                                         break;
312                                 }
313                         }
314                         op->o_tmpfree( value.bv_val, memctx );
315                         if ( rc != LDAP_SUCCESS ) {
316                                 return rc ;
317                         }
318                 }
319         }
320
321         /* check attrs in DN AVAs if required */
322         if ( mra->ma_dnattrs ) {
323                 LDAPDN          dn = NULL;
324                 int             iRDN, iAVA;
325                 int             rc;
326
327                 /* parse and pretty the dn */
328                 rc = dnPrettyDN( NULL, &e->e_name, &dn, memctx );
329                 if ( rc != LDAP_SUCCESS ) {
330                         return LDAP_INVALID_SYNTAX;
331                 }
332
333                 /* for each AVA of each RDN ... */
334                 for ( iRDN = 0; dn[ iRDN ]; iRDN++ ) {
335                         LDAPRDN         rdn = dn[ iRDN ];
336
337                         for ( iAVA = 0; rdn[ iAVA ]; iAVA++ ) {
338                                 LDAPAVA         *ava = rdn[ iAVA ];
339                                 struct berval   *bv = &ava->la_value, value;
340                                 AttributeDescription *ad = (AttributeDescription *)ava->la_private;
341                                 int ret;
342                                 const char *text;
343
344                                 assert( ad );
345
346                                 if ( mra->ma_desc ) {
347                                         /* have a mra type? check for subtype */
348                                         if ( !is_ad_subtype( ad, mra->ma_desc ) ) {
349                                                 continue;
350                                         }
351                                         value = mra->ma_value;
352
353                                 } else {
354                                         const char      *text = NULL;
355
356                                         /* check if matching is appropriate */
357                                         if ( !mr_usable_with_at( mra->ma_rule, ad->ad_type )) {
358                                                 continue;
359                                         }
360
361                                         /* normalize for equality */
362                                         rc = asserted_value_validate_normalize( ad,
363                                                 mra->ma_rule,
364                                                 SLAP_MR_EXT|SLAP_MR_VALUE_OF_ASSERTION_SYNTAX,
365                                                 &mra->ma_value, &value, &text, memctx );
366                                         if ( rc != LDAP_SUCCESS ) {
367                                                 continue;
368                                         }
369
370                                         /* check search access */
371                                         if ( !access_allowed( op, e,
372                                                 ad, &value, ACL_SEARCH, NULL ) ) {
373                                                 op->o_tmpfree( value.bv_val, memctx );
374                                                 continue;
375                                         }
376                                 }
377
378                                 /* check match */
379                                 rc = value_match( &ret, ad, mra->ma_rule, 0,
380                                         bv, &value, &text );
381
382                                 if ( value.bv_val != mra->ma_value.bv_val ) {
383                                         op->o_tmpfree( value.bv_val, memctx );
384                                 }
385
386                                 if ( rc == LDAP_SUCCESS && ret == 0 ) {
387                                         rc = LDAP_COMPARE_TRUE;
388                                 }
389
390                                 if( rc != LDAP_SUCCESS ) {
391                                         ldap_dnfree_x( dn, memctx );
392                                         return rc;
393                                 }
394                         }
395                 }
396                 ldap_dnfree_x( dn, memctx );
397         }
398
399         return LDAP_COMPARE_FALSE;
400 }
401
402 static int
403 test_ava_filter(
404         Operation       *op,
405         Entry           *e,
406         AttributeAssertion *ava,
407         int             type
408 )
409 {
410         Attribute       *a;
411
412         if ( !access_allowed( op, e,
413                 ava->aa_desc, &ava->aa_value, ACL_SEARCH, NULL ) )
414         {
415                 return LDAP_INSUFFICIENT_ACCESS;
416         }
417
418         for(a = attrs_find( e->e_attrs, ava->aa_desc );
419                 a != NULL;
420                 a = attrs_find( a->a_next, ava->aa_desc ) )
421         {
422                 MatchingRule *mr;
423                 struct berval *bv;
424
425                 switch ( type ) {
426                 case LDAP_FILTER_APPROX:
427                         mr = a->a_desc->ad_type->sat_approx;
428                         if( mr != NULL ) break;
429
430                         /* use EQUALITY matching rule if no APPROX rule */
431
432                 case LDAP_FILTER_EQUALITY:
433                         mr = a->a_desc->ad_type->sat_equality;
434                         break;
435
436                 case LDAP_FILTER_GE:
437                 case LDAP_FILTER_LE:
438                         mr = a->a_desc->ad_type->sat_ordering;
439                         break;
440
441                 default:
442                         mr = NULL;
443                 }
444
445                 if( mr == NULL ) {
446                         continue;
447                 }
448
449                 for ( bv = a->a_nvals; bv->bv_val != NULL; bv++ ) {
450                         int ret;
451                         int rc;
452                         const char *text;
453
454                         rc = value_match( &ret, a->a_desc, mr, 0,
455                                 bv, &ava->aa_value, &text );
456
457                         if( rc != LDAP_SUCCESS ) {
458                                 return rc;
459                         }
460
461                         switch ( type ) {
462                         case LDAP_FILTER_EQUALITY:
463                         case LDAP_FILTER_APPROX:
464                                 if ( ret == 0 ) {
465                                         return LDAP_COMPARE_TRUE;
466                                 }
467                                 break;
468
469                         case LDAP_FILTER_GE:
470                                 if ( ret >= 0 ) {
471                                         return LDAP_COMPARE_TRUE;
472                                 }
473                                 break;
474
475                         case LDAP_FILTER_LE:
476                                 if ( ret <= 0 ) {
477                                         return LDAP_COMPARE_TRUE;
478                                 }
479                                 break;
480                         }
481                 }
482         }
483
484         if ( ava->aa_desc == slap_schema.si_ad_hasSubordinates 
485                         && op && op->o_bd && op->o_bd->be_has_subordinates ) {
486                 int             hasSubordinates;
487                 struct berval   hs;
488
489                 /*
490                  * No other match should be allowed ...
491                  */
492                 assert( type == LDAP_FILTER_EQUALITY );
493                 
494                 if (op->o_bd->be_has_subordinates( op, e, &hasSubordinates ) != LDAP_SUCCESS) {
495                         return LDAP_OTHER;
496                 }
497
498                 if ( hasSubordinates == LDAP_COMPARE_TRUE ) {
499                         hs = slap_true_bv;
500
501                 } else if ( hasSubordinates == LDAP_COMPARE_FALSE ) {
502                         hs = slap_false_bv;
503
504                 } else {
505                         return LDAP_OTHER;
506                 }
507
508                 if ( bvmatch( &ava->aa_value, &hs ) ) {
509                         return LDAP_COMPARE_TRUE;
510                 }
511
512                 return LDAP_COMPARE_FALSE;
513         }
514
515         return( LDAP_COMPARE_FALSE );
516 }
517
518
519 static int
520 test_presence_filter(
521         Operation       *op,
522         Entry           *e,
523         AttributeDescription *desc
524 )
525 {
526         Attribute       *a;
527
528         if ( !access_allowed( op, e, desc, NULL, ACL_SEARCH, NULL ) )
529         {
530                 return LDAP_INSUFFICIENT_ACCESS;
531         }
532
533         a = attrs_find( e->e_attrs, desc );
534
535         if ( a == NULL && desc == slap_schema.si_ad_hasSubordinates ) {
536
537                 /*
538                  * XXX: fairly optimistic: if the function is defined,
539                  * then PRESENCE must succeed, because hasSubordinate
540                  * is boolean-valued; I think we may live with this 
541                  * simplification by now
542                  */
543                 if ( op && op->o_bd && op->o_bd->be_has_subordinates ) {
544                         return LDAP_COMPARE_TRUE;
545                 }
546
547                 return LDAP_COMPARE_FALSE;
548         }
549
550         return a != NULL ? LDAP_COMPARE_TRUE : LDAP_COMPARE_FALSE;
551 }
552
553
554 static int
555 test_filter_and(
556         Operation       *op,
557         Entry   *e,
558         Filter  *flist
559 )
560 {
561         Filter  *f;
562         int rtn = LDAP_COMPARE_TRUE; /* True if empty */
563
564 #ifdef NEW_LOGGING
565         LDAP_LOG( FILTER, ENTRY, "test_filter_and: begin\n", 0, 0, 0 );
566 #else
567         Debug( LDAP_DEBUG_FILTER, "=> test_filter_and\n", 0, 0, 0 );
568 #endif
569
570
571         for ( f = flist; f != NULL; f = f->f_next ) {
572                 int rc = test_filter( op, e, f );
573
574                 if ( rc == LDAP_COMPARE_FALSE ) {
575                         /* filter is False */
576                         rtn = rc;
577                         break;
578                 }
579
580                 if ( rc != LDAP_COMPARE_TRUE ) {
581                         /* filter is Undefined unless later elements are False */
582                         rtn = rc;
583                 }
584         }
585
586 #ifdef NEW_LOGGING
587         LDAP_LOG( FILTER, RESULTS, "test_filter_and:  rc=%d\n", rtn, 0, 0 );
588 #else
589         Debug( LDAP_DEBUG_FILTER, "<= test_filter_and %d\n", rtn, 0, 0 );
590 #endif
591
592         return rtn;
593 }
594
595 static int
596 test_filter_or(
597         Operation       *op,
598         Entry   *e,
599         Filter  *flist
600 )
601 {
602         Filter  *f;
603         int rtn = LDAP_COMPARE_FALSE; /* False if empty */
604
605 #ifdef NEW_LOGGING
606         LDAP_LOG( FILTER, ENTRY, "test_filter_or: begin\n", 0, 0, 0 );
607 #else
608         Debug( LDAP_DEBUG_FILTER, "=> test_filter_or\n", 0, 0, 0 );
609 #endif
610
611
612         for ( f = flist; f != NULL; f = f->f_next ) {
613                 int rc = test_filter( op, e, f );
614
615                 if ( rc == LDAP_COMPARE_TRUE ) {
616                         /* filter is True */
617                         rtn = rc;
618                         break;
619                 }
620
621                 if ( rc != LDAP_COMPARE_FALSE ) {
622                         /* filter is Undefined unless later elements are True */
623                         rtn = rc;
624                 }
625         }
626
627 #ifdef NEW_LOGGING
628         LDAP_LOG( FILTER, ENTRY, "test_filter_or: result=%d\n", rtn, 0, 0 );
629 #else
630         Debug( LDAP_DEBUG_FILTER, "<= test_filter_or %d\n", rtn, 0, 0 );
631 #endif
632
633         return rtn;
634 }
635
636
637 static int
638 test_substrings_filter(
639         Operation       *op,
640         Entry   *e,
641         Filter  *f
642 )
643 {
644         Attribute       *a;
645
646 #ifdef NEW_LOGGING
647         LDAP_LOG( FILTER, ENTRY, "test_substrings_filter: begin\n", 0, 0, 0 );
648 #else
649         Debug( LDAP_DEBUG_FILTER, "begin test_substrings_filter\n", 0, 0, 0 );
650 #endif
651
652
653         if ( !access_allowed( op, e,
654                 f->f_sub_desc, NULL, ACL_SEARCH, NULL ) )
655         {
656                 return LDAP_INSUFFICIENT_ACCESS;
657         }
658
659         for(a = attrs_find( e->e_attrs, f->f_sub_desc );
660                 a != NULL;
661                 a = attrs_find( a->a_next, f->f_sub_desc ) )
662         {
663                 MatchingRule *mr = a->a_desc->ad_type->sat_substr;
664                 struct berval *bv;
665
666                 if( mr == NULL ) {
667                         continue;
668                 }
669
670                 for ( bv = a->a_nvals; bv->bv_val != NULL; bv++ )
671                 {
672                         int ret;
673                         int rc;
674                         const char *text;
675
676                         rc = value_match( &ret, a->a_desc, mr, 0,
677                                 bv, f->f_sub, &text );
678
679                         if( rc != LDAP_SUCCESS ) {
680                                 return rc;
681                         }
682
683                         if ( ret == 0 ) {
684                                 return LDAP_COMPARE_TRUE;
685                         }
686                 }
687         }
688
689 #ifdef NEW_LOGGING
690         LDAP_LOG( FILTER, ENTRY, "test_substrings_filter: return FALSE\n", 0, 0, 0 );
691 #else
692         Debug( LDAP_DEBUG_FILTER, "end test_substrings_filter 1\n", 0, 0, 0 );
693 #endif
694
695         return LDAP_COMPARE_FALSE;
696 }