2 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4 * Copyright 1998-2004 The OpenLDAP Foundation.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted only as authorized by the OpenLDAP
11 * A copy of this license is available in the file LICENSE in the
12 * top-level directory of the distribution or, alternatively, at
13 * <http://www.OpenLDAP.org/license.html>.
15 /* Portions Copyright (c) 1995 Regents of the University of Michigan.
16 * All rights reserved.
18 * Redistribution and use in source and binary forms are permitted
19 * provided that this notice is preserved and that due credit is given
20 * to the University of Michigan at Ann Arbor. The name of the University
21 * may not be used to endorse or promote products derived from this
22 * software without specific prior written permission. This software
23 * is provided ``as is'' without express or implied warranty.
29 #include <ac/socket.h>
30 #include <ac/string.h>
35 #include "slapi/slapi.h"
38 static int compare_entry(
41 AttributeAssertion *ava );
50 struct berval dn = { 0, NULL };
51 struct berval desc = { 0, NULL };
52 struct berval value = { 0, NULL };
53 AttributeAssertion ava = { NULL, { 0, NULL } };
59 LDAP_LOG( OPERATION, ENTRY, "do_compare: conn %d\n", op->o_connid, 0, 0 );
61 Debug( LDAP_DEBUG_TRACE, "do_compare\n", 0, 0, 0 );
64 * Parse the compare request. It looks like this:
66 * CompareRequest := [APPLICATION 14] SEQUENCE {
67 * entry DistinguishedName,
70 * value AttributeValue
75 if ( ber_scanf( op->o_ber, "{m" /*}*/, &dn ) == LBER_ERROR ) {
77 LDAP_LOG( OPERATION, ERR,
78 "do_compare: conn %d ber_scanf failed\n", op->o_connid, 0, 0 );
80 Debug( LDAP_DEBUG_ANY, "ber_scanf failed\n", 0, 0, 0 );
82 send_ldap_discon( op, rs, LDAP_PROTOCOL_ERROR, "decoding error" );
83 return SLAPD_DISCONNECT;
86 if ( ber_scanf( op->o_ber, "{mm}", &desc, &value ) == LBER_ERROR ) {
88 LDAP_LOG( OPERATION, ERR,
89 "do_compare: conn %d get ava failed\n", op->o_connid, 0, 0 );
91 Debug( LDAP_DEBUG_ANY, "do_compare: get ava failed\n", 0, 0, 0 );
93 send_ldap_discon( op, rs, LDAP_PROTOCOL_ERROR, "decoding error" );
94 return SLAPD_DISCONNECT;
97 if ( ber_scanf( op->o_ber, /*{*/ "}" ) == LBER_ERROR ) {
99 LDAP_LOG( OPERATION, ERR,
100 "do_compare: conn %d ber_scanf failed\n", op->o_connid, 0, 0 );
102 Debug( LDAP_DEBUG_ANY, "ber_scanf failed\n", 0, 0, 0 );
104 send_ldap_discon( op, rs, LDAP_PROTOCOL_ERROR, "decoding error" );
105 return SLAPD_DISCONNECT;
108 if( get_ctrls( op, rs, 1 ) != LDAP_SUCCESS ) {
110 LDAP_LOG( OPERATION, INFO,
111 "do_compare: conn %d get_ctrls failed\n", op->o_connid, 0, 0 );
113 Debug( LDAP_DEBUG_ANY, "do_compare: get_ctrls failed\n", 0, 0, 0 );
118 rs->sr_err = dnPrettyNormal( NULL, &dn, &op->o_req_dn, &op->o_req_ndn, op->o_tmpmemctx );
119 if( rs->sr_err != LDAP_SUCCESS ) {
121 LDAP_LOG( OPERATION, INFO,
122 "do_compare: conn %d invalid dn (%s)\n",
123 op->o_connid, dn.bv_val, 0 );
125 Debug( LDAP_DEBUG_ANY,
126 "do_compare: invalid dn (%s)\n", dn.bv_val, 0, 0 );
128 send_ldap_error( op, rs, LDAP_INVALID_DN_SYNTAX, "invalid DN" );
132 rs->sr_err = slap_bv2ad( &desc, &ava.aa_desc, &rs->sr_text );
133 if( rs->sr_err != LDAP_SUCCESS ) {
134 send_ldap_result( op, rs );
138 rs->sr_err = asserted_value_validate_normalize( ava.aa_desc,
139 ava.aa_desc->ad_type->sat_equality,
140 SLAP_MR_EQUALITY|SLAP_MR_VALUE_OF_ASSERTION_SYNTAX,
141 &value, &ava.aa_value, &rs->sr_text, op->o_tmpmemctx );
142 if( rs->sr_err != LDAP_SUCCESS ) {
143 send_ldap_result( op, rs );
147 if( strcasecmp( op->o_req_ndn.bv_val, LDAP_ROOT_DSE ) == 0 ) {
149 LDAP_LOG( OPERATION, ARGS,
150 "do_compare: dn (%s) attr(%s) value (%s)\n",
151 op->o_req_dn.bv_val, ava.aa_desc->ad_cname.bv_val, ava.aa_value.bv_val );
153 Debug( LDAP_DEBUG_ARGS, "do_compare: dn (%s) attr (%s) value (%s)\n",
154 op->o_req_dn.bv_val, ava.aa_desc->ad_cname.bv_val, ava.aa_value.bv_val );
157 Statslog( LDAP_DEBUG_STATS,
158 "conn=%lu op=%lu CMP dn=\"%s\" attr=\"%s\"\n",
159 op->o_connid, op->o_opid, op->o_req_dn.bv_val,
160 ava.aa_desc->ad_cname.bv_val, 0 );
162 if( backend_check_restrictions( op, rs, NULL ) != LDAP_SUCCESS ) {
163 send_ldap_result( op, rs );
167 rs->sr_err = root_dse_info( op->o_conn, &entry, &rs->sr_text );
168 if( rs->sr_err != LDAP_SUCCESS ) {
169 send_ldap_result( op, rs );
173 } else if ( bvmatch( &op->o_req_ndn, &global_schemandn ) ) {
175 LDAP_LOG( OPERATION, ARGS,
176 "do_compare: dn (%s) attr(%s) value (%s)\n",
177 op->o_req_dn.bv_val, ava.aa_desc->ad_cname.bv_val,
178 ava.aa_value.bv_val );
180 Debug( LDAP_DEBUG_ARGS, "do_compare: dn (%s) attr (%s) value (%s)\n",
181 op->o_req_dn.bv_val, ava.aa_desc->ad_cname.bv_val, ava.aa_value.bv_val );
184 Statslog( LDAP_DEBUG_STATS,
185 "conn=%lu op=%lu CMP dn=\"%s\" attr=\"%s\"\n",
186 op->o_connid, op->o_opid, op->o_req_dn.bv_val,
187 ava.aa_desc->ad_cname.bv_val, 0 );
189 if( backend_check_restrictions( op, rs, NULL ) != LDAP_SUCCESS ) {
190 send_ldap_result( op, rs );
195 rs->sr_err = schema_info( &entry, &rs->sr_text );
196 if( rs->sr_err != LDAP_SUCCESS ) {
197 send_ldap_result( op, rs );
204 rs->sr_err = compare_entry( op, entry, &ava );
207 send_ldap_result( op, rs );
209 if( rs->sr_err == LDAP_COMPARE_TRUE || rs->sr_err == LDAP_COMPARE_FALSE ) {
216 manageDSAit = get_manageDSAit( op );
219 * We could be serving multiple database backends. Select the
220 * appropriate one, or send a referral to our "referral server"
221 * if we don't hold it.
223 if ( (op->o_bd = select_backend( &op->o_req_ndn, manageDSAit, 0 )) == NULL ) {
224 rs->sr_ref = referral_rewrite( default_referral,
225 NULL, &op->o_req_dn, LDAP_SCOPE_DEFAULT );
227 rs->sr_err = LDAP_REFERRAL;
228 if (!rs->sr_ref) rs->sr_ref = default_referral;
229 send_ldap_result( op, rs );
231 if (rs->sr_ref != default_referral) ber_bvarray_free( rs->sr_ref );
236 /* check restrictions */
237 if( backend_check_restrictions( op, rs, NULL ) != LDAP_SUCCESS ) {
238 send_ldap_result( op, rs );
242 /* check for referrals */
243 if( backend_check_referrals( op, rs ) != LDAP_SUCCESS ) {
248 LDAP_LOG( OPERATION, ARGS,
249 "do_compare: dn (%s) attr(%s) value (%s)\n",
250 op->o_req_dn.bv_val, ava.aa_desc->ad_cname.bv_val, ava.aa_value.bv_val );
252 Debug( LDAP_DEBUG_ARGS, "do_compare: dn (%s) attr (%s) value (%s)\n",
253 op->o_req_dn.bv_val, ava.aa_desc->ad_cname.bv_val, ava.aa_value.bv_val );
256 Statslog( LDAP_DEBUG_STATS, "conn=%lu op=%lu CMP dn=\"%s\" attr=\"%s\"\n",
257 op->o_connid, op->o_opid, op->o_req_dn.bv_val,
258 ava.aa_desc->ad_cname.bv_val, 0 );
260 #if defined( LDAP_SLAPI )
263 slapi_int_pblock_set_operation( pb, op );
264 slapi_pblock_set( pb, SLAPI_COMPARE_TARGET, (void *)dn.bv_val );
265 slapi_pblock_set( pb, SLAPI_MANAGEDSAIT, (void *)manageDSAit );
266 slapi_pblock_set( pb, SLAPI_COMPARE_TYPE, (void *)desc.bv_val );
267 slapi_pblock_set( pb, SLAPI_COMPARE_VALUE, (void *)&value );
269 rs->sr_err = slapi_int_call_plugins( op->o_bd, SLAPI_PLUGIN_PRE_COMPARE_FN, pb );
270 if ( rs->sr_err < 0 ) {
272 * A preoperation plugin failure will abort the
276 LDAP_LOG( OPERATION, INFO, "do_compare: compare preoperation plugin "
277 "failed\n", 0, 0, 0);
279 Debug(LDAP_DEBUG_TRACE, "do_compare: compare preoperation plugin "
280 "failed.\n", 0, 0, 0);
282 if ( ( slapi_pblock_get( op->o_pb, SLAPI_RESULT_CODE, (void *)&rs->sr_err ) != 0 ) ||
283 rs->sr_err == LDAP_SUCCESS ) {
284 rs->sr_err = LDAP_OTHER;
289 #endif /* defined( LDAP_SLAPI ) */
291 if ( op->o_bd->be_compare ) {
293 op->o_bd->be_compare( op, rs );
295 send_ldap_error( op, rs, LDAP_UNWILLING_TO_PERFORM,
296 "operation not supported within namingContext" );
299 #if defined( LDAP_SLAPI )
300 if ( pb != NULL && slapi_int_call_plugins( op->o_bd, SLAPI_PLUGIN_POST_COMPARE_FN, pb ) < 0 ) {
302 LDAP_LOG( OPERATION, INFO, "do_compare: compare postoperation plugins "
303 "failed\n", 0, 0, 0 );
305 Debug(LDAP_DEBUG_TRACE, "do_compare: compare postoperation plugins "
306 "failed.\n", 0, 0, 0);
309 #endif /* defined( LDAP_SLAPI ) */
312 op->o_tmpfree( op->o_req_dn.bv_val, op->o_tmpmemctx );
313 op->o_tmpfree( op->o_req_ndn.bv_val, op->o_tmpmemctx );
314 if ( ava.aa_value.bv_val ) op->o_tmpfree( ava.aa_value.bv_val, op->o_tmpmemctx );
319 static int compare_entry(
322 AttributeAssertion *ava )
324 int rc = LDAP_NO_SUCH_ATTRIBUTE;
327 if ( ! access_allowed( op, e,
328 ava->aa_desc, &ava->aa_value, ACL_COMPARE, NULL ) )
330 return LDAP_INSUFFICIENT_ACCESS;
333 for(a = attrs_find( e->e_attrs, ava->aa_desc );
335 a = attrs_find( a->a_next, ava->aa_desc ))
337 rc = LDAP_COMPARE_FALSE;
339 if ( value_find_ex( ava->aa_desc,
340 SLAP_MR_ATTRIBUTE_VALUE_NORMALIZED_MATCH |
341 SLAP_MR_ASSERTED_VALUE_NORMALIZED_MATCH,
343 &ava->aa_value, op->o_tmpmemctx ) == 0 )
345 rc = LDAP_COMPARE_TRUE;