openldap/servers/slapd/back-ldbm/search.c

605 lines
14 KiB
C
Raw Normal View History

1998-08-09 08:43:13 +08:00
/* search.c - ldbm backend search function */
/* $OpenLDAP$ */
2003-11-29 05:08:20 +08:00
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
*
2004-01-02 03:15:16 +08:00
* Copyright 1998-2004 The OpenLDAP Foundation.
2003-11-29 05:08:20 +08: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-07 07:07:46 +08:00
*/
1998-08-09 08:43:13 +08:00
1998-10-25 09:41:42 +08:00
#include "portable.h"
1998-08-09 08:43:13 +08:00
#include <stdio.h>
1998-10-25 09:41:42 +08:00
#include <ac/string.h>
#include <ac/socket.h>
1998-08-09 08:43:13 +08:00
#include "slap.h"
#include "back-ldbm.h"
#include "proto-back-ldbm.h"
1998-08-09 08:43:13 +08:00
static ID_BLOCK *base_candidate(
Backend *be, Entry *e );
static ID_BLOCK *search_candidates(
2003-04-11 09:29:28 +08:00
Operation *op, Entry *e, Filter *filter,
int scope, int deref, int manageDSAit );
1998-08-09 08:43:13 +08:00
int
ldbm_back_search(
Operation *op,
SlapReply *rs )
1998-08-09 08:43:13 +08:00
{
struct ldbminfo *li = (struct ldbminfo *) op->o_bd->be_private;
int rc, err;
2000-05-29 06:38:21 +08:00
const char *text = NULL;
1998-08-09 08:43:13 +08:00
time_t stoptime;
ID_BLOCK *candidates;
ID id, cursor;
1998-08-09 08:43:13 +08:00
Entry *e;
Entry *matched = NULL;
2004-04-07 12:11:43 +08:00
struct berval realbase = BER_BVNULL;
int manageDSAit = get_manageDSAit( op );
2001-01-18 01:01:19 +08:00
#ifdef NEW_LOGGING
LDAP_LOG( BACK_LDBM, ENTRY, "ldbm_back_search: enter\n", 0, 0, 0 );
2001-01-18 01:01:19 +08:00
#else
Debug(LDAP_DEBUG_TRACE, "=> ldbm_back_search\n", 0, 0, 0);
2001-01-18 01:01:19 +08:00
#endif
/* grab giant lock for reading */
ldap_pvt_thread_rdwr_rlock(&li->li_giant_rwlock);
if ( op->o_req_ndn.bv_len == 0 ) {
/* DIT root special case */
e = (Entry *) &slap_entry_root;
/* need normalized dn below */
2001-12-30 18:47:28 +08:00
ber_dupbv( &realbase, &e->e_nname );
2004-03-09 02:12:45 +08:00
candidates = search_candidates( op, e, op->ors_filter,
op->ors_scope, op->ors_deref,
2003-12-30 09:25:50 +08:00
manageDSAit || get_domainScope(op) );
goto searchit;
2004-03-09 02:12:45 +08:00
} else if ( op->ors_deref & LDAP_DEREF_FINDING ) {
/* deref dn and get entry with reader lock */
2003-12-30 09:25:50 +08:00
e = deref_dn_r( op->o_bd, &op->o_req_ndn,
&rs->sr_err, &matched, &rs->sr_text );
1998-08-09 08:43:13 +08:00
if( rs->sr_err == LDAP_NO_SUCH_OBJECT ) rs->sr_err = LDAP_REFERRAL;
2001-04-13 07:02:20 +08:00
} else {
/* get entry with reader lock */
e = dn2entry_r( op->o_bd, &op->o_req_ndn, &matched );
rs->sr_err = e != NULL ? LDAP_SUCCESS : LDAP_REFERRAL;
rs->sr_text = NULL;
}
if ( e == NULL ) {
2004-04-07 12:11:43 +08:00
struct berval matched_dn = BER_BVNULL;
if ( matched != NULL ) {
BerVarray erefs;
ber_dupbv( &matched_dn, &matched->e_name );
erefs = is_entry_referral( matched )
? get_entry_referrals( op, matched )
: NULL;
cache_return_entry_r( &li->li_cache, matched );
2001-04-13 07:02:20 +08:00
if( erefs ) {
rs->sr_ref = referral_rewrite( erefs, &matched_dn,
2004-03-09 02:12:45 +08:00
&op->o_req_dn, op->ors_scope );
ber_bvarray_free( erefs );
}
} else {
rs->sr_ref = referral_rewrite( default_referral,
2004-03-09 02:12:45 +08:00
NULL, &op->o_req_dn, op->ors_scope );
}
ldap_pvt_thread_rdwr_runlock(&li->li_giant_rwlock);
rs->sr_matched = matched_dn.bv_val;
send_ldap_result( op, rs );
ber_bvarray_free( rs->sr_ref );
ber_memfree( matched_dn.bv_val );
2003-09-27 15:36:20 +08:00
rs->sr_ref = NULL;
rs->sr_matched = NULL;
return LDAP_REFERRAL;
}
if (!manageDSAit && is_entry_referral( e ) ) {
/* entry is a referral, don't allow add */
struct berval matched_dn;
BerVarray erefs;
ber_dupbv( &matched_dn, &e->e_name );
erefs = get_entry_referrals( op, e );
rs->sr_ref = NULL;
cache_return_entry_r( &li->li_cache, e );
ldap_pvt_thread_rdwr_runlock(&li->li_giant_rwlock);
2001-01-18 01:01:19 +08:00
#ifdef NEW_LOGGING
LDAP_LOG( BACK_LDBM, INFO,
"ldbm_search: entry (%s) is a referral.\n",
e->e_dn, 0, 0 );
2001-01-18 01:01:19 +08:00
#else
2000-09-25 14:49:27 +08:00
Debug( LDAP_DEBUG_TRACE,
"ldbm_search: entry is referral\n",
0, 0, 0 );
2001-01-18 01:01:19 +08:00
#endif
if( erefs ) {
rs->sr_ref = referral_rewrite( erefs, &matched_dn,
2004-03-09 02:12:45 +08:00
&op->o_req_dn, op->ors_scope );
ber_bvarray_free( erefs );
}
rs->sr_matched = matched_dn.bv_val;
if( rs->sr_ref ) {
rs->sr_err = LDAP_REFERRAL;
send_ldap_result( op, rs );
ber_bvarray_free( rs->sr_ref );
} else {
send_ldap_error( op, rs, LDAP_OTHER,
"bad referral object" );
}
ber_memfree( matched_dn.bv_val );
2003-09-27 15:36:20 +08:00
rs->sr_ref = NULL;
rs->sr_matched = NULL;
return LDAP_OTHER;
}
2000-06-17 10:00:30 +08:00
if ( is_entry_alias( e ) ) {
/* don't deref */
2004-03-09 02:12:45 +08:00
op->ors_deref = LDAP_DEREF_NEVER;
2000-06-17 10:00:30 +08:00
}
2004-03-09 02:12:45 +08:00
if ( op->ors_scope == LDAP_SCOPE_BASE ) {
candidates = base_candidate( op->o_bd, e );
1998-08-09 08:43:13 +08:00
} else {
2004-03-09 02:12:45 +08:00
candidates = search_candidates( op, e, op->ors_filter,
op->ors_scope, op->ors_deref, manageDSAit );
1998-08-09 08:43:13 +08:00
}
/* need normalized dn below */
2001-12-30 18:47:28 +08:00
ber_dupbv( &realbase, &e->e_nname );
2000-05-28 03:21:28 +08:00
cache_return_entry_r( &li->li_cache, e );
searchit:
1998-08-09 08:43:13 +08:00
if ( candidates == NULL ) {
/* no candidates */
2001-01-18 01:01:19 +08:00
#ifdef NEW_LOGGING
LDAP_LOG( BACK_LDBM, INFO,
"ldbm_search: no candidates\n" , 0, 0, 0);
2001-01-18 01:01:19 +08:00
#else
2000-09-25 14:49:27 +08:00
Debug( LDAP_DEBUG_TRACE, "ldbm_search: no candidates\n",
0, 0, 0 );
2001-01-18 01:01:19 +08:00
#endif
rs->sr_err = LDAP_SUCCESS;
send_ldap_result( op, rs );
1998-08-09 08:43:13 +08:00
rc = LDAP_SUCCESS;
goto done;
}
/* if candidates exceed to-be-checked entries, abort */
if ( op->ors_limit /* isroot == FALSE */
2004-03-09 02:12:45 +08:00
&& op->ors_limit->lms_s_unchecked != -1
&& ID_BLOCK_NIDS( candidates ) > (unsigned) op->ors_limit->lms_s_unchecked )
{
send_ldap_error( op, rs, LDAP_ADMINLIMIT_EXCEEDED, NULL );
rc = LDAP_SUCCESS;
goto done;
}
2001-11-13 01:12:43 +08:00
/* compute it anyway; root does not use it */
2004-03-09 02:12:45 +08:00
stoptime = op->o_time + op->ors_tlimit;
rs->sr_attrs = op->ors_attrs;
2001-11-13 01:12:43 +08:00
for ( id = idl_firstid( candidates, &cursor ); id != NOID;
id = idl_nextid( candidates, &cursor ) )
{
int scopeok = 0;
int result = 0;
1998-08-09 08:43:13 +08:00
/* check for abandon */
if ( op->o_abandon ) {
rc = LDAP_SUCCESS;
goto done;
1998-08-09 08:43:13 +08:00
}
1998-08-09 08:43:13 +08:00
/* check time limit */
if ( op->ors_tlimit != SLAP_NO_LIMIT
&& slap_get_time() > stoptime )
{
rs->sr_err = LDAP_TIMELIMIT_EXCEEDED;
send_ldap_result( op, rs );
rc = LDAP_SUCCESS;
goto done;
1998-08-09 08:43:13 +08:00
}
/* get the entry with reader lock */
e = id2entry_r( op->o_bd, id );
if ( e == NULL ) {
2001-01-18 01:01:19 +08:00
#ifdef NEW_LOGGING
LDAP_LOG( BACK_LDBM, INFO,
"ldbm_search: candidate %ld not found.\n", id, 0, 0 );
2001-01-18 01:01:19 +08:00
#else
2000-09-25 14:49:27 +08:00
Debug( LDAP_DEBUG_TRACE,
"ldbm_search: candidate %ld not found\n",
id, 0, 0 );
2001-01-18 01:01:19 +08:00
#endif
goto loop_continue;
}
rs->sr_entry = e;
#ifdef LDBM_SUBENTRIES
2003-12-30 09:25:50 +08:00
if ( is_entry_subentry( e ) ) {
2004-03-09 02:12:45 +08:00
if( op->ors_scope != LDAP_SCOPE_BASE ) {
2003-12-30 09:25:50 +08:00
if(!get_subentries_visibility( op )) {
/* only subentries are visible */
goto loop_continue;
}
} else if ( get_subentries( op ) &&
!get_subentries_visibility( op ))
{
/* only subentries are visible */
goto loop_continue;
}
2003-12-30 09:25:50 +08:00
} else if ( get_subentries_visibility( op )) {
/* only subentries are visible */
goto loop_continue;
}
#endif
2004-03-09 02:12:45 +08:00
if ( op->ors_deref & LDAP_DEREF_SEARCHING &&
2003-12-30 09:25:50 +08:00
is_entry_alias( e ) )
{
Entry *matched;
int err;
const char *text;
e = deref_entry_r( op->o_bd, e, &err, &matched, &text );
if( e == NULL ) {
e = matched;
goto loop_continue;
}
if( e->e_id == id ) {
/* circular loop */
goto loop_continue;
}
/* need to skip alias which deref into scope */
2004-03-09 02:12:45 +08:00
if( op->ors_scope == LDAP_SCOPE_ONELEVEL ) {
struct berval pdn;
dnParent( &e->e_nname, &pdn );
if ( ber_bvcmp( &pdn, &realbase ) ) {
goto loop_continue;
}
2001-12-30 18:47:28 +08:00
} else if ( dnIsSuffix( &e->e_nname, &realbase ) ) {
/* alias is within scope */
2001-01-18 01:01:19 +08:00
#ifdef NEW_LOGGING
LDAP_LOG( BACK_LDBM, DETAIL1,
2003-12-30 09:25:50 +08:00
"ldbm_search: alias \"%s\" in subtree\n",
e->e_dn, 0, 0 );
2001-01-18 01:01:19 +08:00
#else
2000-09-25 14:49:27 +08:00
Debug( LDAP_DEBUG_TRACE,
"ldbm_search: alias \"%s\" in subtree\n",
e->e_dn, 0, 0 );
2001-01-18 01:01:19 +08:00
#endif
goto loop_continue;
}
rs->sr_entry = e;
scopeok = 1;
1998-08-09 08:43:13 +08:00
}
/*
2003-12-30 09:25:50 +08:00
* If it's a referral, add it to the list of referrals.
* Only do this for non-base searches, and don't check
* the filter explicitly here since it's only a candidate
* anyway.
1998-08-09 08:43:13 +08:00
*/
2004-03-09 02:12:45 +08:00
if ( !manageDSAit && op->ors_scope != LDAP_SCOPE_BASE &&
is_entry_referral( e ) )
1998-08-09 08:43:13 +08:00
{
struct berval dn;
/* check scope */
2004-03-09 02:12:45 +08:00
if ( !scopeok && op->ors_scope == LDAP_SCOPE_ONELEVEL ) {
if ( !be_issuffix( op->o_bd, &e->e_nname ) ) {
dnParent( &e->e_nname, &dn );
scopeok = dn_match( &dn, &realbase );
} else {
2001-12-30 18:47:28 +08:00
scopeok = (realbase.bv_len == 0);
}
1998-08-09 08:43:13 +08:00
2003-12-30 09:25:50 +08:00
} else if ( !scopeok
2004-03-09 02:12:45 +08:00
&& op->ors_scope == LDAP_SCOPE_SUBTREE )
2003-12-30 09:25:50 +08:00
{
2001-12-30 18:47:28 +08:00
scopeok = dnIsSuffix( &e->e_nname, &realbase );
2004-03-18 09:06:39 +08:00
#ifdef LDAP_SCOPE_SUBORDINATE
2003-12-30 09:25:50 +08:00
} else if ( !scopeok
2004-03-09 02:12:45 +08:00
&& op->ors_scope == LDAP_SCOPE_SUBORDINATE )
2003-12-30 09:25:50 +08:00
{
scopeok = !dn_match( &e->e_nname, &realbase )
&& dnIsSuffix( &e->e_nname, &realbase );
2004-03-18 09:06:39 +08:00
#endif
2003-12-30 09:25:50 +08:00
} else {
scopeok = 1;
}
if( scopeok ) {
BerVarray erefs = get_entry_referrals( op, e );
rs->sr_ref = referral_rewrite( erefs,
&e->e_name, NULL,
2004-03-09 02:12:45 +08:00
op->ors_scope == LDAP_SCOPE_ONELEVEL
2003-12-30 09:25:50 +08:00
? LDAP_SCOPE_BASE
: LDAP_SCOPE_SUBTREE );
send_search_reference( op, rs );
ber_bvarray_free( rs->sr_ref );
rs->sr_ref = NULL;
} else {
#ifdef NEW_LOGGING
LDAP_LOG( BACK_LDBM, DETAIL2,
"ldbm_search: candidate referral %ld scope not okay\n",
id, 0, 0 );
#else
Debug( LDAP_DEBUG_TRACE,
"ldbm_search: candidate referral %ld scope not okay\n",
id, 0, 0 );
#endif
}
1998-08-09 08:43:13 +08:00
goto loop_continue;
}
if ( !manageDSAit && is_entry_glue( e )) {
goto loop_continue;
}
/* if it matches the filter and scope, send it */
2004-03-09 02:12:45 +08:00
result = test_filter( op, e, op->ors_filter );
if ( result == LDAP_COMPARE_TRUE ) {
struct berval dn;
/* check scope */
2004-03-09 02:12:45 +08:00
if ( !scopeok && op->ors_scope == LDAP_SCOPE_ONELEVEL ) {
if ( !be_issuffix( op->o_bd, &e->e_nname ) ) {
dnParent( &e->e_nname, &dn );
scopeok = dn_match( &dn, &realbase );
} else {
2001-12-30 18:47:28 +08:00
scopeok = (realbase.bv_len == 0);
1998-08-09 08:43:13 +08:00
}
2003-12-30 09:25:50 +08:00
} else if ( !scopeok &&
2004-03-09 02:12:45 +08:00
op->ors_scope == LDAP_SCOPE_SUBTREE )
2003-12-30 09:25:50 +08:00
{
2001-12-30 18:47:28 +08:00
scopeok = dnIsSuffix( &e->e_nname, &realbase );
2004-03-18 09:06:39 +08:00
#ifdef LDAP_SCOPE_SUBORDINATE
2003-12-30 09:25:50 +08:00
} else if ( !scopeok &&
2004-03-09 02:12:45 +08:00
op->ors_scope == LDAP_SCOPE_SUBORDINATE )
2003-12-30 09:25:50 +08:00
{
scopeok = !dn_match( &e->e_nname, &realbase )
&& dnIsSuffix( &e->e_nname, &realbase );
2004-03-18 09:06:39 +08:00
#endif
2003-12-30 09:25:50 +08:00
} else {
scopeok = 1;
}
if ( scopeok ) {
/* check size limit */
2004-03-09 02:12:45 +08:00
if ( --op->ors_slimit == -1 ) {
cache_return_entry_r( &li->li_cache, e );
rs->sr_err = LDAP_SIZELIMIT_EXCEEDED;
rs->sr_entry = NULL;
send_ldap_result( op, rs );
rc = LDAP_SUCCESS;
goto done;
}
1998-08-09 08:43:13 +08:00
if (e) {
2004-03-17 19:50:15 +08:00
rs->sr_flags = 0;
result = send_search_entry( op, rs );
2000-06-17 09:22:55 +08:00
switch (result) {
case 0: /* entry sent ok */
break;
case 1: /* entry not sent */
break;
case -1: /* connection closed */
cache_return_entry_r( &li->li_cache, e );
rc = LDAP_SUCCESS;
goto done;
1998-08-09 08:43:13 +08:00
}
}
2003-12-30 09:25:50 +08:00
} else {
2001-01-18 01:01:19 +08:00
#ifdef NEW_LOGGING
LDAP_LOG( BACK_LDBM, DETAIL2,
"ldbm_search: candidate entry %ld scope not okay\n",
id, 0, 0 );
2001-01-18 01:01:19 +08:00
#else
2000-09-25 14:49:27 +08:00
Debug( LDAP_DEBUG_TRACE,
"ldbm_search: candidate entry %ld scope not okay\n",
id, 0, 0 );
2001-01-18 01:01:19 +08:00
#endif
1998-08-09 08:43:13 +08:00
}
} else {
2001-01-18 01:01:19 +08:00
#ifdef NEW_LOGGING
LDAP_LOG( BACK_LDBM, DETAIL2,
"ldbm_search: candidate entry %ld does not match filter\n",
id, 0, 0 );
2001-01-18 01:01:19 +08:00
#else
2000-09-25 14:49:27 +08:00
Debug( LDAP_DEBUG_TRACE,
"ldbm_search: candidate entry %ld does not match filter\n",
id, 0, 0 );
2001-01-18 01:01:19 +08:00
#endif
1998-08-09 08:43:13 +08:00
}
loop_continue:
1998-10-27 01:37:35 +08:00
if( e != NULL ) {
/* free reader lock */
cache_return_entry_r( &li->li_cache, e );
}
1998-08-09 08:43:13 +08:00
ldap_pvt_thread_yield();
1998-08-09 08:43:13 +08:00
}
rs->sr_err = rs->sr_v2ref ? LDAP_REFERRAL : LDAP_SUCCESS;
rs->sr_ref = rs->sr_v2ref;
send_ldap_result( op, rs );
rc = LDAP_SUCCESS;
done:
ldap_pvt_thread_rdwr_runlock(&li->li_giant_rwlock);
1999-08-26 08:51:27 +08:00
if( candidates != NULL )
idl_free( candidates );
1998-08-09 08:43:13 +08:00
if( rs->sr_v2ref ) ber_bvarray_free( rs->sr_v2ref );
2001-12-30 18:47:28 +08:00
if( realbase.bv_val ) free( realbase.bv_val );
return rc;
1998-08-09 08:43:13 +08:00
}
static ID_BLOCK *
base_candidate(
1998-08-09 08:43:13 +08:00
Backend *be,
Entry *e )
1998-08-09 08:43:13 +08:00
{
ID_BLOCK *idl;
2001-01-18 01:01:19 +08:00
#ifdef NEW_LOGGING
LDAP_LOG( BACK_LDBM, ENTRY, "base_candidate: base (%s)\n", e->e_dn, 0, 0 );
2001-01-18 01:01:19 +08:00
#else
Debug(LDAP_DEBUG_TRACE, "base_candidates: base: \"%s\"\n",
e->e_dn, 0, 0);
2001-01-18 01:01:19 +08:00
#endif
1998-08-09 08:43:13 +08:00
idl = idl_alloc( 1 );
idl_insert( &idl, e->e_id, 1 );
return( idl );
}
static ID_BLOCK *
search_candidates(
2003-04-11 09:29:28 +08:00
Operation *op,
Entry *e,
1998-08-09 08:43:13 +08:00
Filter *filter,
int scope,
int deref,
int manageDSAit )
1998-08-09 08:43:13 +08:00
{
ID_BLOCK *candidates;
Filter f, fand, rf, af, xf;
AttributeAssertion aa_ref, aa_alias;
struct berval bv_ref = { sizeof("referral")-1, "referral" };
struct berval bv_alias = { sizeof("alias")-1, "alias" };
#ifdef LDBM_SUBENTRIES
Filter sf;
AttributeAssertion aa_subentry;
#endif
2001-01-18 01:01:19 +08:00
#ifdef NEW_LOGGING
LDAP_LOG( BACK_LDBM, DETAIL1,
2003-12-30 09:25:50 +08:00
"search_candidates: base (%s) scope %d deref %d\n",
e->e_ndn, scope, deref );
2001-01-18 01:01:19 +08:00
#else
2000-09-25 14:49:27 +08:00
Debug(LDAP_DEBUG_TRACE,
"search_candidates: base=\"%s\" s=%d d=%d\n",
e->e_ndn, scope, deref );
2001-01-18 01:01:19 +08:00
#endif
xf.f_or = filter;
xf.f_choice = LDAP_FILTER_OR;
xf.f_next = NULL;
if( !manageDSAit ) {
/* match referrals */
rf.f_choice = LDAP_FILTER_EQUALITY;
rf.f_ava = &aa_ref;
rf.f_av_desc = slap_schema.si_ad_objectClass;
rf.f_av_value = bv_ref;
rf.f_next = xf.f_or;
xf.f_or = &rf;
}
if( deref & LDAP_DEREF_SEARCHING ) {
/* match aliases */
af.f_choice = LDAP_FILTER_EQUALITY;
af.f_ava = &aa_alias;
af.f_av_desc = slap_schema.si_ad_objectClass;
af.f_av_value = bv_alias;
af.f_next = xf.f_or;
xf.f_or = &af;
}
f.f_next = NULL;
f.f_choice = LDAP_FILTER_AND;
f.f_and = &fand;
2003-12-30 09:25:50 +08:00
fand.f_choice = scope == LDAP_SCOPE_ONELEVEL
? SLAPD_FILTER_DN_ONE
: SLAPD_FILTER_DN_SUBTREE;
2001-12-27 07:37:59 +08:00
fand.f_dn = &e->e_nname;
fand.f_next = xf.f_or == filter ? filter : &xf ;
#ifdef LDBM_SUBENTRIES
if ( get_subentries_visibility( op )) {
struct berval bv_subentry = { sizeof("SUBENTRY")-1, "SUBENTRY" };
sf.f_choice = LDAP_FILTER_EQUALITY;
sf.f_ava = &aa_subentry;
sf.f_av_desc = slap_schema.si_ad_objectClass;
sf.f_av_value = bv_subentry;
sf.f_next = fand.f_next;
fand.f_next = &sf;
}
#endif
2003-04-11 09:29:28 +08:00
candidates = filter_candidates( op, &f );
1998-08-09 08:43:13 +08:00
return( candidates );
}