]> git.sur5r.net Git - openldap/blob - servers/slapd/back-monitor/compare.c
Notice and acknowledgements
[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 #ifndef _BACK_MONITOR_H_
50 #define _BACK_MONITOR_H_
51
52 #include <ldap_pvt.h>
53 #include <ldap_pvt_thread.h>
54 #include <avl.h>
55 #include <slap.h>
56
57 LDAP_BEGIN_DECL
58
59 /*
60  * The cache maps DNs to Entries.
61 /*
62  * Copyright 2001, Pierangelo Masarati, All rights reserved. <ando@sys-net.it>
63  * 
64  * This work has beed deveolped for the OpenLDAP Foundation 
65  * in the hope that it may be useful to the Open Source community, 
66  * but WITHOUT ANY WARRANTY.
67  * 
68  * Permission is granted to anyone to use this software for any purpose
69  * on any computer system, and to alter it and redistribute it, subject
70  * to the following restrictions:
71  * 
72  * 1. The author and SysNet s.n.c. are not responsible for the consequences
73  *    of use of this software, no matter how awful, even if they arise from
74  *    flaws in it.
75  * 
76  * 2. The origin of this software must not be misrepresented, either by
77  *    explicit claim or by omission.  Since few users ever read sources,
78  *    credits should appear in the documentation.
79  * 
80  * 3. Altered versions must be plainly marked as such, and must not be
81  *    misrepresented as being the original software.  Since few users
82  *    ever read sources, credits should appear in the documentation.
83  *    SysNet s.n.c. cannot be responsible for the consequences of the
84  *    alterations.
85  * 
86  * 4. This notice may not be removed or altered.
87  */
88
89 #include "portable.h"
90
91 #include <stdio.h>
92
93 #include <slap.h>
94 #include "back-monitor.h"
95
96 int
97 monitor_back_compare( struct slap_op *op, struct slap_rep *rs)
98 {
99         struct monitorinfo      *mi = 
100                 (struct monitorinfo *) op->o_bd->be_private;
101         Entry           *e, *matched = NULL;
102         Attribute       *a;
103
104         /* get entry with reader lock */
105         monitor_cache_dn2entry( op, &op->o_req_ndn, &e, &matched );
106         if ( e == NULL ) {
107                 rs->sr_err = LDAP_NO_SUCH_OBJECT;
108                 if ( matched ) {
109                         rs->sr_matched = matched->e_dn;
110                 }
111                 send_ldap_result( op, rs );
112                 if ( matched ) {
113                         monitor_cache_release( mi, matched );
114                         rs->sr_matched = NULL;
115                 }
116
117                 return( 0 );
118         }
119
120         rs->sr_err = access_allowed( op, e, op->oq_compare.rs_ava->aa_desc,
121                         &op->oq_compare.rs_ava->aa_value, ACL_COMPARE, NULL );
122         if ( !rs->sr_err ) {
123                 rs->sr_err = LDAP_INSUFFICIENT_ACCESS;
124                 goto return_results;
125         }
126
127         rs->sr_err = LDAP_NO_SUCH_ATTRIBUTE;
128
129         for ( a = attrs_find( e->e_attrs, op->oq_compare.rs_ava->aa_desc );
130                         a != NULL;
131                         a = attrs_find( a->a_next, op->oq_compare.rs_ava->aa_desc )) {
132                 rs->sr_err = LDAP_COMPARE_FALSE;
133
134                 if ( value_find_ex( op->oq_compare.rs_ava->aa_desc,
135                         SLAP_MR_ATTRIBUTE_VALUE_NORMALIZED_MATCH |
136                                 SLAP_MR_ASSERTED_VALUE_NORMALIZED_MATCH,
137                         a->a_nvals, &op->oq_compare.rs_ava->aa_value,
138                         op->o_tmpmemctx ) == 0 )
139                 {
140                         rs->sr_err = LDAP_COMPARE_TRUE;
141                         break;
142                 }
143         }
144
145 return_results:;
146         send_ldap_result( op, rs );
147         if ( rs->sr_err == LDAP_COMPARE_FALSE
148                         || rs->sr_err == LDAP_COMPARE_TRUE ) {
149                 rs->sr_err = LDAP_SUCCESS;
150         }
151
152         monitor_cache_release( mi, e );
153
154         return( rs->sr_err );
155 }
156