/* compare.c - ldbm backend compare routine */ #include #include #include #include #include "slap.h" #include "back-ldbm.h" extern Entry *dn2entry(); extern Attribute *attr_find(); 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 i; if ( (e = dn2entry( be, dn, &matched )) == NULL ) { send_ldap_result( conn, op, LDAP_NO_SUCH_OBJECT, matched, "" ); return( 1 ); } if ( ! access_allowed( be, conn, op, e, ava->ava_type, &ava->ava_value, op->o_dn, ACL_COMPARE ) ) { send_ldap_result( conn, op, LDAP_INSUFFICIENT_ACCESS, "", "" ); cache_return_entry( &li->li_cache, e ); return( 1 ); } if ( (a = attr_find( e->e_attrs, ava->ava_type )) == NULL ) { send_ldap_result( conn, op, LDAP_NO_SUCH_ATTRIBUTE, "", "" ); cache_return_entry( &li->li_cache, e ); return( 1 ); } if ( value_find( a->a_vals, &ava->ava_value, a->a_syntax, 1 ) == 0 ) { send_ldap_result( conn, op, LDAP_COMPARE_TRUE, "", "" ); cache_return_entry( &li->li_cache, e ); return( 0 ); } send_ldap_result( conn, op, LDAP_COMPARE_FALSE, "", "" ); cache_return_entry( &li->li_cache, e ); return( 0 ); }