openldap/servers/slapd/back-bdb/compare.c

126 lines
2.4 KiB
C
Raw Normal View History

2000-09-24 14:04:58 +08:00
/* compare.c - bdb backend compare routine */
/* $OpenLDAP$ */
/*
2002-01-05 05:17:25 +08:00
* Copyright 1998-2002 The OpenLDAP Foundation, All Rights Reserved.
2000-09-24 14:04:58 +08:00
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
*/
#include "portable.h"
#include <stdio.h>
#include <ac/string.h>
#include "back-bdb.h"
2000-09-25 06:48:13 +08:00
#include "external.h"
2000-09-24 14:04:58 +08:00
int
bdb_compare(
BackendDB *be,
Connection *conn,
Operation *op,
struct berval *dn,
struct berval *ndn,
2000-09-24 14:04:58 +08:00
AttributeAssertion *ava
)
{
struct bdb_info *bdb = (struct bdb_info *) be->be_private;
Entry *matched;
Entry *e;
Attribute *a;
int rc;
const char *text = NULL;
int manageDSAit = get_manageDSAit( op );
/* get entry */
rc = bdb_dn2entry_r( be, NULL, ndn, &e, &matched, 0 );
2000-09-24 14:04:58 +08:00
switch( rc ) {
case DB_NOTFOUND:
2001-11-13 04:28:23 +08:00
case 0:
2000-09-24 14:04:58 +08:00
break;
default:
rc = LDAP_OTHER;
text = "internal error";
goto return_results;
}
if ( e == NULL ) {
char *matched_dn = NULL;
BerVarray refs;
2000-09-24 14:04:58 +08:00
if ( matched != NULL ) {
matched_dn = ch_strdup( matched->e_dn );
refs = is_entry_referral( matched )
? get_entry_referrals( be, conn, op, matched )
2000-09-24 14:04:58 +08:00
: NULL;
bdb_cache_return_entry_r( &bdb->bi_cache, matched );
2000-09-28 10:27:49 +08:00
matched = NULL;
2000-09-24 14:04:58 +08:00
} else {
refs = referral_rewrite( default_referral,
NULL, dn, LDAP_SCOPE_DEFAULT );
2000-09-24 14:04:58 +08:00
}
send_ldap_result( conn, op, rc = LDAP_REFERRAL,
matched_dn, NULL, refs, NULL );
ber_bvarray_free( refs );
free( matched_dn );
2000-09-24 14:04:58 +08:00
goto done;
}
if (!manageDSAit && is_entry_referral( e ) ) {
/* entry is a referral, don't allow add */
BerVarray refs = get_entry_referrals( be,
conn, op, e );
2000-09-24 14:04:58 +08:00
Debug( LDAP_DEBUG_TRACE, "entry is referral\n", 0,
0, 0 );
2000-09-24 14:04:58 +08:00
send_ldap_result( conn, op, rc = LDAP_REFERRAL,
e->e_dn, NULL, refs, NULL );
2000-09-24 14:04:58 +08:00
ber_bvarray_free( refs );
2000-09-24 14:04:58 +08:00
goto done;
}
if ( ! access_allowed( be, conn, op, e,
ava->aa_desc, &ava->aa_value, ACL_COMPARE, NULL ) )
2000-09-24 14:04:58 +08:00
{
rc = LDAP_INSUFFICIENT_ACCESS;
goto return_results;
}
rc = LDAP_NO_SUCH_ATTRIBUTE;
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;
if ( value_find( ava->aa_desc, a->a_vals, &ava->aa_value ) == 0 ) {
2000-09-24 14:04:58 +08:00
rc = LDAP_COMPARE_TRUE;
break;
}
}
return_results:
2002-01-26 23:06:53 +08:00
send_ldap_result( conn, op, rc,
2000-09-24 14:04:58 +08:00
NULL, text, NULL, NULL );
2002-01-26 23:06:53 +08:00
if( rc == LDAP_COMPARE_FALSE || rc == LDAP_COMPARE_TRUE ) {
rc = LDAP_SUCCESS;
}
2000-09-24 14:04:58 +08:00
done:
/* free entry */
2000-09-28 10:27:49 +08:00
if( e != NULL ) {
bdb_cache_return_entry_r( &bdb->bi_cache, e );
2000-09-28 10:27:49 +08:00
}
2000-09-24 14:04:58 +08:00
return rc;
}