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