1999-09-08 15:06:24 -04:00
|
|
|
/* $OpenLDAP$ */
|
2003-11-26 20:17:14 -05:00
|
|
|
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
|
|
|
|
|
*
|
2004-01-01 14:15:16 -05:00
|
|
|
* Copyright 1998-2004 The OpenLDAP Foundation.
|
2003-11-26 20:17:14 -05:00
|
|
|
* All rights reserved.
|
|
|
|
|
*
|
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
|
* modification, are permitted only as authorized by the OpenLDAP
|
|
|
|
|
* Public License.
|
|
|
|
|
*
|
|
|
|
|
* A copy of this license is available in the file LICENSE in the
|
|
|
|
|
* top-level directory of the distribution or, alternatively, at
|
|
|
|
|
* <http://www.OpenLDAP.org/license.html>.
|
1999-08-06 19:07:46 -04:00
|
|
|
*/
|
2003-11-26 20:17:14 -05:00
|
|
|
/* Portions Copyright (c) 1995 Regents of the University of Michigan.
|
1998-08-08 20:43:13 -04:00
|
|
|
* All rights reserved.
|
|
|
|
|
*
|
|
|
|
|
* Redistribution and use in source and binary forms are permitted
|
|
|
|
|
* provided that this notice is preserved and that due credit is given
|
|
|
|
|
* to the University of Michigan at Ann Arbor. The name of the University
|
|
|
|
|
* may not be used to endorse or promote products derived from this
|
|
|
|
|
* software without specific prior written permission. This software
|
|
|
|
|
* is provided ``as is'' without express or implied warranty.
|
|
|
|
|
*/
|
|
|
|
|
|
1998-10-24 21:41:42 -04:00
|
|
|
#include "portable.h"
|
|
|
|
|
|
1998-08-08 20:43:13 -04:00
|
|
|
#include <stdio.h>
|
1998-10-24 21:41:42 -04:00
|
|
|
#include <ac/socket.h>
|
2003-05-15 07:43:33 -04:00
|
|
|
#include <ac/string.h>
|
1998-10-24 21:41:42 -04:00
|
|
|
|
1999-10-28 03:13:33 -04:00
|
|
|
#include "ldap_pvt.h"
|
1998-08-08 20:43:13 -04:00
|
|
|
#include "slap.h"
|
2003-02-09 21:09:00 -05:00
|
|
|
#ifdef LDAP_SLAPI
|
2003-12-27 23:17:48 -05:00
|
|
|
#include "slapi/slapi.h"
|
2003-02-09 21:09:00 -05:00
|
|
|
#endif
|
1998-08-08 20:43:13 -04:00
|
|
|
|
2001-10-25 02:18:11 -04:00
|
|
|
static int compare_entry(
|
|
|
|
|
Operation *op,
|
|
|
|
|
Entry *e,
|
|
|
|
|
AttributeAssertion *ava );
|
|
|
|
|
|
1999-07-01 17:20:45 -04:00
|
|
|
int
|
1998-08-08 20:43:13 -04:00
|
|
|
do_compare(
|
2003-03-30 04:03:54 -05:00
|
|
|
Operation *op,
|
2004-06-22 23:09:13 -04:00
|
|
|
SlapReply *rs )
|
1998-08-08 20:43:13 -04:00
|
|
|
{
|
2001-10-25 02:18:11 -04:00
|
|
|
Entry *entry = NULL;
|
2004-04-07 00:11:43 -04:00
|
|
|
struct berval dn = BER_BVNULL;
|
|
|
|
|
struct berval desc = BER_BVNULL;
|
|
|
|
|
struct berval value = BER_BVNULL;
|
|
|
|
|
AttributeAssertion ava = { NULL, BER_BVNULL };
|
2000-10-20 23:29:02 -04:00
|
|
|
int manageDSAit;
|
2000-02-06 16:09:44 -05:00
|
|
|
|
2000-06-15 13:12:53 -04:00
|
|
|
ava.aa_desc = NULL;
|
1998-08-08 20:43:13 -04:00
|
|
|
|
2001-01-11 12:11:23 -05:00
|
|
|
#ifdef NEW_LOGGING
|
2003-03-30 04:03:54 -05:00
|
|
|
LDAP_LOG( OPERATION, ENTRY, "do_compare: conn %d\n", op->o_connid, 0, 0 );
|
2001-01-11 12:11:23 -05:00
|
|
|
#else
|
1998-08-08 20:43:13 -04:00
|
|
|
Debug( LDAP_DEBUG_TRACE, "do_compare\n", 0, 0, 0 );
|
2001-01-11 12:11:23 -05:00
|
|
|
#endif
|
1998-08-08 20:43:13 -04:00
|
|
|
/*
|
|
|
|
|
* Parse the compare request. It looks like this:
|
|
|
|
|
*
|
|
|
|
|
* CompareRequest := [APPLICATION 14] SEQUENCE {
|
|
|
|
|
* entry DistinguishedName,
|
|
|
|
|
* ava SEQUENCE {
|
|
|
|
|
* type AttributeType,
|
|
|
|
|
* value AttributeValue
|
|
|
|
|
* }
|
|
|
|
|
* }
|
|
|
|
|
*/
|
|
|
|
|
|
2002-01-06 01:11:01 -05:00
|
|
|
if ( ber_scanf( op->o_ber, "{m" /*}*/, &dn ) == LBER_ERROR ) {
|
2001-01-11 12:11:23 -05:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-11 16:33:24 -04:00
|
|
|
LDAP_LOG( OPERATION, ERR,
|
2003-03-30 04:03:54 -05:00
|
|
|
"do_compare: conn %d ber_scanf failed\n", op->o_connid, 0, 0 );
|
2001-01-11 12:11:23 -05:00
|
|
|
#else
|
1998-08-08 20:43:13 -04:00
|
|
|
Debug( LDAP_DEBUG_ANY, "ber_scanf failed\n", 0, 0, 0 );
|
2001-01-11 12:11:23 -05:00
|
|
|
#endif
|
2003-03-30 04:03:54 -05:00
|
|
|
send_ldap_discon( op, rs, LDAP_PROTOCOL_ERROR, "decoding error" );
|
2000-02-29 18:48:01 -05:00
|
|
|
return SLAPD_DISCONNECT;
|
1998-08-08 20:43:13 -04:00
|
|
|
}
|
1999-06-30 18:43:27 -04:00
|
|
|
|
2002-01-06 01:11:01 -05:00
|
|
|
if ( ber_scanf( op->o_ber, "{mm}", &desc, &value ) == LBER_ERROR ) {
|
2001-01-11 12:11:23 -05:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-11 16:33:24 -04:00
|
|
|
LDAP_LOG( OPERATION, ERR,
|
2003-03-30 04:03:54 -05:00
|
|
|
"do_compare: conn %d get ava failed\n", op->o_connid, 0, 0 );
|
2001-01-11 12:11:23 -05:00
|
|
|
#else
|
2000-01-24 19:05:36 -05:00
|
|
|
Debug( LDAP_DEBUG_ANY, "do_compare: get ava failed\n", 0, 0, 0 );
|
2001-01-11 12:11:23 -05:00
|
|
|
#endif
|
2003-03-30 04:03:54 -05:00
|
|
|
send_ldap_discon( op, rs, LDAP_PROTOCOL_ERROR, "decoding error" );
|
|
|
|
|
return SLAPD_DISCONNECT;
|
2000-01-24 19:05:36 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ( ber_scanf( op->o_ber, /*{*/ "}" ) == LBER_ERROR ) {
|
2001-01-11 12:11:23 -05:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-11 16:33:24 -04:00
|
|
|
LDAP_LOG( OPERATION, ERR,
|
2003-03-30 04:03:54 -05:00
|
|
|
"do_compare: conn %d ber_scanf failed\n", op->o_connid, 0, 0 );
|
2001-01-11 12:11:23 -05:00
|
|
|
#else
|
2000-01-24 19:05:36 -05:00
|
|
|
Debug( LDAP_DEBUG_ANY, "ber_scanf failed\n", 0, 0, 0 );
|
2001-01-11 12:11:23 -05:00
|
|
|
#endif
|
2003-03-30 04:03:54 -05:00
|
|
|
send_ldap_discon( op, rs, LDAP_PROTOCOL_ERROR, "decoding error" );
|
|
|
|
|
return SLAPD_DISCONNECT;
|
2000-01-24 19:05:36 -05:00
|
|
|
}
|
|
|
|
|
|
2003-03-30 04:03:54 -05:00
|
|
|
if( get_ctrls( op, rs, 1 ) != LDAP_SUCCESS ) {
|
2001-01-11 12:11:23 -05:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-11 16:33:24 -04:00
|
|
|
LDAP_LOG( OPERATION, INFO,
|
2003-03-30 04:03:54 -05:00
|
|
|
"do_compare: conn %d get_ctrls failed\n", op->o_connid, 0, 0 );
|
2001-01-11 12:11:23 -05:00
|
|
|
#else
|
1999-06-30 18:43:27 -04:00
|
|
|
Debug( LDAP_DEBUG_ANY, "do_compare: get_ctrls failed\n", 0, 0, 0 );
|
2001-01-11 12:11:23 -05:00
|
|
|
#endif
|
1999-09-18 21:29:45 -04:00
|
|
|
goto cleanup;
|
1999-06-30 18:43:27 -04:00
|
|
|
}
|
|
|
|
|
|
2004-06-22 23:09:13 -04:00
|
|
|
rs->sr_err = dnPrettyNormal( NULL, &dn, &op->o_req_dn, &op->o_req_ndn,
|
|
|
|
|
op->o_tmpmemctx );
|
2003-03-30 04:03:54 -05:00
|
|
|
if( rs->sr_err != LDAP_SUCCESS ) {
|
2001-01-11 12:11:23 -05:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-11 16:33:24 -04:00
|
|
|
LDAP_LOG( OPERATION, INFO,
|
2001-12-22 16:52:58 -05:00
|
|
|
"do_compare: conn %d invalid dn (%s)\n",
|
2003-03-30 04:03:54 -05:00
|
|
|
op->o_connid, dn.bv_val, 0 );
|
2001-01-11 12:11:23 -05:00
|
|
|
#else
|
2001-12-22 16:52:58 -05:00
|
|
|
Debug( LDAP_DEBUG_ANY,
|
|
|
|
|
"do_compare: invalid dn (%s)\n", dn.bv_val, 0, 0 );
|
2001-01-11 12:11:23 -05:00
|
|
|
#endif
|
2003-03-30 04:03:54 -05:00
|
|
|
send_ldap_error( op, rs, LDAP_INVALID_DN_SYNTAX, "invalid DN" );
|
2000-09-08 12:59:15 -04:00
|
|
|
goto cleanup;
|
|
|
|
|
}
|
|
|
|
|
|
2003-03-30 04:03:54 -05:00
|
|
|
rs->sr_err = slap_bv2ad( &desc, &ava.aa_desc, &rs->sr_text );
|
|
|
|
|
if( rs->sr_err != LDAP_SUCCESS ) {
|
|
|
|
|
send_ldap_result( op, rs );
|
2001-11-10 18:34:03 -05:00
|
|
|
goto cleanup;
|
2001-10-25 02:18:11 -04:00
|
|
|
}
|
|
|
|
|
|
2003-03-30 04:03:54 -05:00
|
|
|
rs->sr_err = asserted_value_validate_normalize( ava.aa_desc,
|
2003-02-26 20:54:43 -05:00
|
|
|
ava.aa_desc->ad_type->sat_equality,
|
|
|
|
|
SLAP_MR_EQUALITY|SLAP_MR_VALUE_OF_ASSERTION_SYNTAX,
|
2003-04-10 21:29:28 -04:00
|
|
|
&value, &ava.aa_value, &rs->sr_text, op->o_tmpmemctx );
|
2003-03-30 04:03:54 -05:00
|
|
|
if( rs->sr_err != LDAP_SUCCESS ) {
|
|
|
|
|
send_ldap_result( op, rs );
|
2001-11-10 18:34:03 -05:00
|
|
|
goto cleanup;
|
2001-10-25 02:18:11 -04:00
|
|
|
}
|
|
|
|
|
|
2003-03-30 04:03:54 -05:00
|
|
|
if( strcasecmp( op->o_req_ndn.bv_val, LDAP_ROOT_DSE ) == 0 ) {
|
2001-01-11 12:11:23 -05:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-11 16:33:24 -04:00
|
|
|
LDAP_LOG( OPERATION, ARGS,
|
|
|
|
|
"do_compare: dn (%s) attr(%s) value (%s)\n",
|
2004-06-22 23:09:13 -04:00
|
|
|
op->o_req_dn.bv_val,
|
|
|
|
|
ava.aa_desc->ad_cname.bv_val, ava.aa_value.bv_val );
|
2001-01-11 12:11:23 -05:00
|
|
|
#else
|
2004-06-22 23:09:13 -04:00
|
|
|
Debug( LDAP_DEBUG_ARGS,
|
|
|
|
|
"do_compare: dn (%s) attr (%s) value (%s)\n",
|
|
|
|
|
op->o_req_dn.bv_val,
|
|
|
|
|
ava.aa_desc->ad_cname.bv_val, ava.aa_value.bv_val );
|
2001-01-11 12:11:23 -05:00
|
|
|
#endif
|
2001-10-25 02:18:11 -04:00
|
|
|
|
|
|
|
|
Statslog( LDAP_DEBUG_STATS,
|
2002-04-08 05:43:22 -04:00
|
|
|
"conn=%lu op=%lu CMP dn=\"%s\" attr=\"%s\"\n",
|
2003-03-30 04:03:54 -05:00
|
|
|
op->o_connid, op->o_opid, op->o_req_dn.bv_val,
|
2001-12-22 16:52:58 -05:00
|
|
|
ava.aa_desc->ad_cname.bv_val, 0 );
|
2001-10-25 02:18:11 -04:00
|
|
|
|
2003-03-30 04:03:54 -05:00
|
|
|
if( backend_check_restrictions( op, rs, NULL ) != LDAP_SUCCESS ) {
|
|
|
|
|
send_ldap_result( op, rs );
|
2001-10-25 02:18:11 -04:00
|
|
|
goto cleanup;
|
|
|
|
|
}
|
|
|
|
|
|
2003-03-30 04:03:54 -05:00
|
|
|
rs->sr_err = root_dse_info( op->o_conn, &entry, &rs->sr_text );
|
|
|
|
|
if( rs->sr_err != LDAP_SUCCESS ) {
|
|
|
|
|
send_ldap_result( op, rs );
|
2001-10-25 02:18:11 -04:00
|
|
|
goto cleanup;
|
|
|
|
|
}
|
|
|
|
|
|
2003-03-30 04:03:54 -05:00
|
|
|
} else if ( bvmatch( &op->o_req_ndn, &global_schemandn ) ) {
|
2001-10-25 02:18:11 -04:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-11 16:33:24 -04:00
|
|
|
LDAP_LOG( OPERATION, ARGS,
|
|
|
|
|
"do_compare: dn (%s) attr(%s) value (%s)\n",
|
2004-06-22 23:09:13 -04:00
|
|
|
op->o_req_dn.bv_val,
|
|
|
|
|
ava.aa_desc->ad_cname.bv_val, ava.aa_value.bv_val );
|
2001-10-25 02:18:11 -04:00
|
|
|
#else
|
|
|
|
|
Debug( LDAP_DEBUG_ARGS, "do_compare: dn (%s) attr (%s) value (%s)\n",
|
2004-06-22 23:09:13 -04:00
|
|
|
op->o_req_dn.bv_val,
|
|
|
|
|
ava.aa_desc->ad_cname.bv_val, ava.aa_value.bv_val );
|
2001-10-25 02:18:11 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
Statslog( LDAP_DEBUG_STATS,
|
2002-04-08 05:43:22 -04:00
|
|
|
"conn=%lu op=%lu CMP dn=\"%s\" attr=\"%s\"\n",
|
2003-03-30 04:03:54 -05:00
|
|
|
op->o_connid, op->o_opid, op->o_req_dn.bv_val,
|
2001-12-22 16:52:58 -05:00
|
|
|
ava.aa_desc->ad_cname.bv_val, 0 );
|
2001-10-25 02:18:11 -04:00
|
|
|
|
2003-03-30 04:03:54 -05:00
|
|
|
if( backend_check_restrictions( op, rs, NULL ) != LDAP_SUCCESS ) {
|
|
|
|
|
send_ldap_result( op, rs );
|
|
|
|
|
rs->sr_err = 0;
|
2001-10-25 02:18:11 -04:00
|
|
|
goto cleanup;
|
|
|
|
|
}
|
|
|
|
|
|
2003-03-30 04:03:54 -05:00
|
|
|
rs->sr_err = schema_info( &entry, &rs->sr_text );
|
|
|
|
|
if( rs->sr_err != LDAP_SUCCESS ) {
|
|
|
|
|
send_ldap_result( op, rs );
|
|
|
|
|
rs->sr_err = 0;
|
2001-10-25 02:18:11 -04:00
|
|
|
goto cleanup;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if( entry ) {
|
2003-03-30 04:03:54 -05:00
|
|
|
rs->sr_err = compare_entry( op, entry, &ava );
|
2003-03-31 02:49:34 -05:00
|
|
|
entry_free( entry );
|
2001-10-25 02:18:11 -04:00
|
|
|
|
2003-03-30 04:03:54 -05:00
|
|
|
send_ldap_result( op, rs );
|
2001-10-25 02:18:11 -04:00
|
|
|
|
2004-06-22 23:09:13 -04:00
|
|
|
if( rs->sr_err == LDAP_COMPARE_TRUE ||
|
|
|
|
|
rs->sr_err == LDAP_COMPARE_FALSE )
|
|
|
|
|
{
|
|
|
|
|
rs->sr_err = LDAP_SUCCESS;
|
2001-10-25 02:18:11 -04:00
|
|
|
}
|
|
|
|
|
|
2000-03-01 17:59:34 -05:00
|
|
|
goto cleanup;
|
|
|
|
|
}
|
|
|
|
|
|
2000-10-20 23:29:02 -04:00
|
|
|
manageDSAit = get_manageDSAit( op );
|
|
|
|
|
|
2000-06-15 21:19:30 -04:00
|
|
|
/*
|
|
|
|
|
* We could be serving multiple database backends. Select the
|
|
|
|
|
* appropriate one, or send a referral to our "referral server"
|
|
|
|
|
* if we don't hold it.
|
|
|
|
|
*/
|
2004-06-22 23:09:13 -04:00
|
|
|
op->o_bd = select_backend( &op->o_req_ndn, manageDSAit, 0 );
|
|
|
|
|
if ( op->o_bd == NULL ) {
|
2003-03-30 04:03:54 -05:00
|
|
|
rs->sr_ref = referral_rewrite( default_referral,
|
|
|
|
|
NULL, &op->o_req_dn, LDAP_SCOPE_DEFAULT );
|
2001-10-25 22:05:14 -04:00
|
|
|
|
2003-03-30 04:03:54 -05:00
|
|
|
rs->sr_err = LDAP_REFERRAL;
|
|
|
|
|
if (!rs->sr_ref) rs->sr_ref = default_referral;
|
|
|
|
|
send_ldap_result( op, rs );
|
2001-10-25 22:05:14 -04:00
|
|
|
|
2003-03-30 04:03:54 -05:00
|
|
|
if (rs->sr_ref != default_referral) ber_bvarray_free( rs->sr_ref );
|
|
|
|
|
rs->sr_err = 0;
|
2000-06-15 21:19:30 -04:00
|
|
|
goto cleanup;
|
|
|
|
|
}
|
|
|
|
|
|
2000-08-28 14:38:48 -04:00
|
|
|
/* check restrictions */
|
2003-03-30 04:03:54 -05:00
|
|
|
if( backend_check_restrictions( op, rs, NULL ) != LDAP_SUCCESS ) {
|
|
|
|
|
send_ldap_result( op, rs );
|
2000-06-15 21:19:30 -04:00
|
|
|
goto cleanup;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* check for referrals */
|
2003-03-30 04:03:54 -05:00
|
|
|
if( backend_check_referrals( op, rs ) != LDAP_SUCCESS ) {
|
2000-06-15 21:19:30 -04:00
|
|
|
goto cleanup;
|
|
|
|
|
}
|
|
|
|
|
|
2001-01-11 12:11:23 -05:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-11 16:33:24 -04:00
|
|
|
LDAP_LOG( OPERATION, ARGS,
|
|
|
|
|
"do_compare: dn (%s) attr(%s) value (%s)\n",
|
2004-06-22 23:09:13 -04:00
|
|
|
op->o_req_dn.bv_val,
|
|
|
|
|
ava.aa_desc->ad_cname.bv_val, ava.aa_value.bv_val );
|
2001-01-11 12:11:23 -05:00
|
|
|
#else
|
2000-02-06 16:09:44 -05:00
|
|
|
Debug( LDAP_DEBUG_ARGS, "do_compare: dn (%s) attr (%s) value (%s)\n",
|
2004-06-22 23:09:13 -04:00
|
|
|
op->o_req_dn.bv_val,
|
|
|
|
|
ava.aa_desc->ad_cname.bv_val, ava.aa_value.bv_val );
|
2001-01-11 12:11:23 -05:00
|
|
|
#endif
|
2000-02-06 16:09:44 -05:00
|
|
|
|
2002-04-08 05:43:22 -04:00
|
|
|
Statslog( LDAP_DEBUG_STATS, "conn=%lu op=%lu CMP dn=\"%s\" attr=\"%s\"\n",
|
2003-03-30 04:03:54 -05:00
|
|
|
op->o_connid, op->o_opid, op->o_req_dn.bv_val,
|
2001-12-22 19:43:57 -05:00
|
|
|
ava.aa_desc->ad_cname.bv_val, 0 );
|
2000-02-06 16:09:44 -05:00
|
|
|
|
2002-12-07 12:19:29 -05:00
|
|
|
#if defined( LDAP_SLAPI )
|
2003-10-24 01:58:42 -04:00
|
|
|
#define pb op->o_pb
|
|
|
|
|
if ( pb ) {
|
2003-12-16 10:49:31 -05:00
|
|
|
slapi_int_pblock_set_operation( pb, op );
|
2003-10-24 01:58:42 -04:00
|
|
|
slapi_pblock_set( pb, SLAPI_COMPARE_TARGET, (void *)dn.bv_val );
|
|
|
|
|
slapi_pblock_set( pb, SLAPI_MANAGEDSAIT, (void *)manageDSAit );
|
|
|
|
|
slapi_pblock_set( pb, SLAPI_COMPARE_TYPE, (void *)desc.bv_val );
|
|
|
|
|
slapi_pblock_set( pb, SLAPI_COMPARE_VALUE, (void *)&value );
|
|
|
|
|
|
2004-06-22 23:09:13 -04:00
|
|
|
rs->sr_err = slapi_int_call_plugins( op->o_bd,
|
|
|
|
|
SLAPI_PLUGIN_PRE_COMPARE_FN, pb );
|
2003-10-24 01:58:42 -04:00
|
|
|
if ( rs->sr_err < 0 ) {
|
|
|
|
|
/*
|
|
|
|
|
* A preoperation plugin failure will abort the
|
|
|
|
|
* entire operation.
|
|
|
|
|
*/
|
2002-12-07 12:19:29 -05:00
|
|
|
#ifdef NEW_LOGGING
|
2004-06-22 23:09:13 -04:00
|
|
|
LDAP_LOG( OPERATION, INFO,
|
|
|
|
|
"do_compare: compare preoperation plugin failed\n",
|
|
|
|
|
0, 0, 0);
|
2002-12-07 12:19:29 -05:00
|
|
|
#else
|
2004-06-22 23:09:13 -04:00
|
|
|
Debug(LDAP_DEBUG_TRACE,
|
|
|
|
|
"do_compare: compare preoperation plugin failed\n",
|
|
|
|
|
0, 0, 0);
|
2002-12-07 12:19:29 -05:00
|
|
|
#endif
|
2004-06-22 23:09:13 -04:00
|
|
|
if ( ( slapi_pblock_get( op->o_pb, SLAPI_RESULT_CODE,
|
|
|
|
|
(void *)&rs->sr_err ) != 0 ) || rs->sr_err == LDAP_SUCCESS )
|
|
|
|
|
{
|
2003-10-24 01:58:42 -04:00
|
|
|
rs->sr_err = LDAP_OTHER;
|
|
|
|
|
}
|
|
|
|
|
goto cleanup;
|
2003-04-30 09:37:14 -04:00
|
|
|
}
|
2002-12-07 12:19:29 -05:00
|
|
|
}
|
|
|
|
|
#endif /* defined( LDAP_SLAPI ) */
|
|
|
|
|
|
2003-03-30 04:03:54 -05:00
|
|
|
if ( op->o_bd->be_compare ) {
|
2003-03-31 02:49:34 -05:00
|
|
|
op->orc_ava = &ava;
|
2003-03-30 04:03:54 -05:00
|
|
|
op->o_bd->be_compare( op, rs );
|
1998-08-08 20:43:13 -04:00
|
|
|
} else {
|
2003-03-30 04:03:54 -05:00
|
|
|
send_ldap_error( op, rs, LDAP_UNWILLING_TO_PERFORM,
|
|
|
|
|
"operation not supported within namingContext" );
|
1998-08-08 20:43:13 -04:00
|
|
|
}
|
2000-01-31 12:59:10 -05:00
|
|
|
|
2002-12-07 12:19:29 -05:00
|
|
|
#if defined( LDAP_SLAPI )
|
2004-06-22 23:09:13 -04:00
|
|
|
if ( pb != NULL && slapi_int_call_plugins( op->o_bd,
|
|
|
|
|
SLAPI_PLUGIN_POST_COMPARE_FN, pb ) < 0 )
|
|
|
|
|
{
|
2002-12-07 12:19:29 -05:00
|
|
|
#ifdef NEW_LOGGING
|
2004-06-22 23:09:13 -04:00
|
|
|
LDAP_LOG( OPERATION, INFO,
|
|
|
|
|
"do_compare: compare postoperation plugins failed\n", 0, 0, 0 );
|
2002-12-07 12:19:29 -05:00
|
|
|
#else
|
2004-06-22 23:09:13 -04:00
|
|
|
Debug(LDAP_DEBUG_TRACE,
|
|
|
|
|
"do_compare: compare postoperation plugins failed\n", 0, 0, 0 );
|
2002-12-07 12:19:29 -05:00
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
#endif /* defined( LDAP_SLAPI ) */
|
|
|
|
|
|
1999-09-18 21:29:45 -04:00
|
|
|
cleanup:
|
2003-04-12 06:47:11 -04:00
|
|
|
op->o_tmpfree( op->o_req_dn.bv_val, op->o_tmpmemctx );
|
|
|
|
|
op->o_tmpfree( op->o_req_ndn.bv_val, op->o_tmpmemctx );
|
2004-06-22 23:09:13 -04:00
|
|
|
if ( ava.aa_value.bv_val ) {
|
|
|
|
|
op->o_tmpfree( ava.aa_value.bv_val, op->o_tmpmemctx );
|
|
|
|
|
}
|
2003-03-30 04:03:54 -05:00
|
|
|
return rs->sr_err;
|
1998-08-08 20:43:13 -04:00
|
|
|
}
|
2001-10-25 02:18:11 -04:00
|
|
|
|
|
|
|
|
static int compare_entry(
|
|
|
|
|
Operation *op,
|
|
|
|
|
Entry *e,
|
|
|
|
|
AttributeAssertion *ava )
|
|
|
|
|
{
|
|
|
|
|
int rc = LDAP_NO_SUCH_ATTRIBUTE;
|
|
|
|
|
Attribute *a;
|
|
|
|
|
|
2003-03-30 04:03:54 -05:00
|
|
|
if ( ! access_allowed( op, e,
|
2002-02-09 00:14:17 -05:00
|
|
|
ava->aa_desc, &ava->aa_value, ACL_COMPARE, NULL ) )
|
2001-10-25 02:18:11 -04:00
|
|
|
{
|
|
|
|
|
return LDAP_INSUFFICIENT_ACCESS;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for(a = attrs_find( e->e_attrs, ava->aa_desc );
|
|
|
|
|
a != NULL;
|
|
|
|
|
a = attrs_find( a->a_next, ava->aa_desc ))
|
|
|
|
|
{
|
|
|
|
|
rc = LDAP_COMPARE_FALSE;
|
|
|
|
|
|
2003-02-26 20:54:43 -05:00
|
|
|
if ( value_find_ex( ava->aa_desc,
|
2003-03-16 13:10:16 -05:00
|
|
|
SLAP_MR_ATTRIBUTE_VALUE_NORMALIZED_MATCH |
|
|
|
|
|
SLAP_MR_ASSERTED_VALUE_NORMALIZED_MATCH,
|
2003-03-23 20:56:56 -05:00
|
|
|
a->a_nvals,
|
2003-04-10 21:29:28 -04:00
|
|
|
&ava->aa_value, op->o_tmpmemctx ) == 0 )
|
2003-02-26 20:54:43 -05:00
|
|
|
{
|
2001-10-25 02:18:11 -04:00
|
|
|
rc = LDAP_COMPARE_TRUE;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
|
}
|