]> git.sur5r.net Git - openldap/blob - servers/slapd/back-monitor/compare.c
fix attr nvals & more improvements
[openldap] / servers / slapd / back-monitor / compare.c
1 /* compare.c - monitor backend compare routine */
2 /*
3  * Copyright 1998-2003 The OpenLDAP Foundation, All Rights Reserved.
4  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
5  */
6 /*
7  * Copyright 2001, Pierangelo Masarati, All rights reserved. <ando@sys-net.it>
8  * 
9  * This work has beed deveolped for the OpenLDAP Foundation 
10  * in the hope that it may be useful to the Open Source community, 
11  * but WITHOUT ANY WARRANTY.
12  * 
13  * Permission is granted to anyone to use this software for any purpose
14  * on any computer system, and to alter it and redistribute it, subject
15  * to the following restrictions:
16  * 
17  * 1. The author and SysNet s.n.c. are not responsible for the consequences
18  *    of use of this software, no matter how awful, even if they arise from
19  *    flaws in it.
20  * 
21  * 2. The origin of this software must not be misrepresented, either by
22  *    explicit claim or by omission.  Since few users ever read sources,
23  *    credits should appear in the documentation.
24  * 
25  * 3. Altered versions must be plainly marked as such, and must not be
26  *    misrepresented as being the original software.  Since few users
27  *    ever read sources, credits should appear in the documentation.
28  *    SysNet s.n.c. cannot be responsible for the consequences of the
29  *    alterations.
30  * 
31  * 4. This notice may not be removed or altered.
32  */
33
34 #include "portable.h"
35
36 #include <stdio.h>
37
38 #include <slap.h>
39 #include "back-monitor.h"
40
41 int
42 monitor_back_compare( struct slap_op *op, struct slap_rep *rs)
43 {
44         struct monitorinfo      *mi = 
45                 (struct monitorinfo *) op->o_bd->be_private;
46         Entry           *e, *matched = NULL;
47         Attribute       *a;
48
49         /* get entry with reader lock */
50         monitor_cache_dn2entry( mi, &op->o_req_ndn, &e, &matched );
51         if ( e == NULL ) {
52                 rs->sr_err = LDAP_NO_SUCH_OBJECT;
53                 if ( matched ) {
54                         rs->sr_matched = matched->e_dn;
55                 }
56                 send_ldap_result( op, rs );
57                 if ( matched ) {
58                         monitor_cache_release( mi, matched );
59                         rs->sr_matched = NULL;
60                 }
61
62                 return( 0 );
63         }
64
65         rs->sr_err = access_allowed( op, e, op->oq_compare.rs_ava->aa_desc,
66                         &op->oq_compare.rs_ava->aa_value, ACL_COMPARE, NULL );
67         if ( !rs->sr_err ) {
68                 rs->sr_err = LDAP_INSUFFICIENT_ACCESS;
69                 goto return_results;
70         }
71
72         rs->sr_err = LDAP_NO_SUCH_ATTRIBUTE;
73
74         for ( a = attrs_find( e->e_attrs, op->oq_compare.rs_ava->aa_desc );
75                         a != NULL;
76                         a = attrs_find( a->a_next, op->oq_compare.rs_ava->aa_desc )) {
77                 rs->sr_err = LDAP_COMPARE_FALSE;
78
79                 if ( value_find_ex( op->oq_compare.rs_ava->aa_desc,
80                         SLAP_MR_ATTRIBUTE_VALUE_NORMALIZED_MATCH |
81                                 SLAP_MR_ASSERTED_VALUE_NORMALIZED_MATCH,
82                         a->a_nvals, &op->oq_compare.rs_ava->aa_value ) == 0 )
83                 {
84                         rs->sr_err = LDAP_COMPARE_TRUE;
85                         break;
86                 }
87         }
88
89 return_results:;
90         send_ldap_result( op, rs );
91         if ( rs->sr_err == LDAP_COMPARE_FALSE
92                         || rs->sr_err == LDAP_COMPARE_TRUE ) {
93                 rs->sr_err = LDAP_SUCCESS;
94         }
95
96         monitor_cache_release( mi, e );
97
98         return( rs->sr_err );
99 }
100