mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-09 02:52:04 +08:00
e2a15115b0
Update slap_op to maintain dn and ndn (derived from conn->c_dn). Update ldbm_back_bind to return actual bound dn (including rootdn) for use in slapd_conn. Other backends use client dn. Modify other codes to use ndn (normalized uppercase dn) most everywhere. Aliasing, Suffixing and modrdn could use more work. Applied suffixing to compare and modrdn.
63 lines
1.3 KiB
C
63 lines
1.3 KiB
C
/* compare.c - ldbm backend compare routine */
|
|
|
|
#include "portable.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <ac/socket.h>
|
|
#include <ac/string.h>
|
|
|
|
#include "slap.h"
|
|
#include "back-ldbm.h"
|
|
#include "proto-back-ldbm.h"
|
|
|
|
int
|
|
ldbm_back_compare(
|
|
Backend *be,
|
|
Connection *conn,
|
|
Operation *op,
|
|
char *dn,
|
|
Ava *ava
|
|
)
|
|
{
|
|
struct ldbminfo *li = (struct ldbminfo *) be->be_private;
|
|
char *matched;
|
|
Entry *e;
|
|
Attribute *a;
|
|
int rc;
|
|
|
|
/* get entry with reader lock */
|
|
if ( (e = dn2entry_r( be, dn, &matched )) == NULL ) {
|
|
send_ldap_result( conn, op, LDAP_NO_SUCH_OBJECT, matched, "" );
|
|
|
|
if(matched == NULL) free(matched);
|
|
return( 1 );
|
|
}
|
|
|
|
/* check for deleted */
|
|
if ( ! access_allowed( be, conn, op, e,
|
|
ava->ava_type, &ava->ava_value, ACL_COMPARE ) )
|
|
{
|
|
send_ldap_result( conn, op, LDAP_INSUFFICIENT_ACCESS, "", "" );
|
|
rc = 1;
|
|
goto return_results;
|
|
}
|
|
|
|
if ( (a = attr_find( e->e_attrs, ava->ava_type )) == NULL ) {
|
|
send_ldap_result( conn, op, LDAP_NO_SUCH_ATTRIBUTE, "", "" );
|
|
rc = 1;
|
|
goto return_results;
|
|
}
|
|
|
|
if ( value_find( a->a_vals, &ava->ava_value, a->a_syntax, 1 ) == 0 )
|
|
send_ldap_result( conn, op, LDAP_COMPARE_TRUE, "", "" );
|
|
else
|
|
send_ldap_result( conn, op, LDAP_COMPARE_FALSE, "", "" );
|
|
|
|
rc = 0;
|
|
|
|
return_results:;
|
|
cache_return_entry_r( &li->li_cache, e );
|
|
return( rc );
|
|
}
|