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

603 lines
13 KiB
C
Raw Normal View History

1998-08-09 08:43:13 +08:00
/* search.c - ldbm backend search function */
/* $OpenLDAP$ */
1999-08-07 07:07:46 +08:00
/*
2000-05-13 10:47:56 +08:00
* Copyright 1998-2000 The OpenLDAP Foundation, All Rights Reserved.
1999-08-07 07:07:46 +08:00
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
*/
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(
Backend *be, Entry *e, Filter *filter,
int scope, int deref, int manageDSAit );
1998-08-09 08:43:13 +08:00
int
ldbm_back_search(
Backend *be,
Connection *conn,
Operation *op,
struct berval *base,
struct berval *nbase,
1998-08-09 08:43:13 +08:00
int scope,
int deref,
int slimit,
int tlimit,
Filter *filter,
2002-01-02 19:00:36 +08:00
struct berval *filterstr,
AttributeName *attrs,
int attrsonly )
1998-08-09 08:43:13 +08:00
{
struct ldbminfo *li = (struct ldbminfo *) be->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;
2002-01-02 19:00:36 +08:00
BVarray v2refs = NULL;
Entry *matched = NULL;
2001-12-30 18:47:28 +08:00
struct berval realbase = { 0, NULL };
1998-08-09 08:43:13 +08:00
int nentries = 0;
int manageDSAit = get_manageDSAit( op );
int cscope = LDAP_SCOPE_DEFAULT;
struct slap_limits_set *limit = NULL;
int isroot = 0;
2001-01-18 01:01:19 +08:00
#ifdef NEW_LOGGING
LDAP_LOG(( "backend", LDAP_LEVEL_ENTRY,
"ldbm_back_search: enter\n" ));
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
if ( nbase->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 );
candidates = search_candidates( be, e, filter,
scope, deref, manageDSAit );
goto searchit;
} else if ( deref & LDAP_DEREF_FINDING ) {
/* deref dn and get entry with reader lock */
e = deref_dn_r( be, nbase, &err, &matched, &text );
1998-08-09 08:43:13 +08:00
2001-04-13 07:02:20 +08:00
if( err == LDAP_NO_SUCH_OBJECT ) err = LDAP_REFERRAL;
} else {
/* get entry with reader lock */
2002-01-01 21:31:20 +08:00
e = dn2entry_r( be, nbase, &matched );
err = e != NULL ? LDAP_SUCCESS : LDAP_REFERRAL;
text = NULL;
}
if ( e == NULL ) {
struct berval *matched_dn = NULL;
2002-01-02 19:00:36 +08:00
BVarray refs = NULL;
if ( matched != NULL ) {
2002-01-02 19:00:36 +08:00
BVarray erefs;
matched_dn = ber_bvdup( &matched->e_name );
erefs = is_entry_referral( matched )
? get_entry_referrals( be, conn, op, matched )
: NULL;
cache_return_entry_r( &li->li_cache, matched );
2001-04-13 07:02:20 +08:00
if( erefs ) {
refs = referral_rewrite( erefs, matched_dn,
base, scope );
2002-01-02 19:00:36 +08:00
bvarray_free( erefs );
}
} else {
refs = referral_rewrite( default_referral,
NULL, base, scope );
}
send_ldap_result( conn, op, err,
2001-12-27 20:16:58 +08:00
matched_dn ? matched_dn->bv_val : NULL,
text, refs, NULL );
2002-01-02 19:00:36 +08:00
bvarray_free( refs );
ber_bvfree( matched_dn );
return 1;
}
if (!manageDSAit && is_entry_referral( e ) ) {
/* entry is a referral, don't allow add */
struct berval *matched_dn = ber_bvdup( &e->e_name );
2002-01-02 19:00:36 +08:00
BVarray erefs = get_entry_referrals( be, conn, op, e );
BVarray refs = NULL;
cache_return_entry_r( &li->li_cache, e );
2001-01-18 01:01:19 +08:00
#ifdef NEW_LOGGING
LDAP_LOG(( "backend", LDAP_LEVEL_INFO,
"ldbm_search: entry (%s) is a referral.\n",
e->e_dn ));
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 ) {
refs = referral_rewrite( erefs, matched_dn,
base, scope );
2002-01-02 19:00:36 +08:00
bvarray_free( erefs );
}
if( refs ) {
send_ldap_result( conn, op, LDAP_REFERRAL,
matched_dn->bv_val, NULL, refs, NULL );
2002-01-02 19:00:36 +08:00
bvarray_free( refs );
} else {
send_ldap_result( conn, op, LDAP_OTHER,
matched_dn->bv_val,
"bad referral object", NULL, NULL );
}
ber_bvfree( matched_dn );
return 1;
}
2000-06-17 10:00:30 +08:00
if ( is_entry_alias( e ) ) {
/* don't deref */
deref = LDAP_DEREF_NEVER;
}
1999-10-27 12:40:56 +08:00
if ( scope == LDAP_SCOPE_BASE ) {
cscope = LDAP_SCOPE_BASE;
candidates = base_candidate( be, e );
1998-08-09 08:43:13 +08:00
} else {
cscope = ( scope != LDAP_SCOPE_SUBTREE )
? LDAP_SCOPE_BASE : LDAP_SCOPE_SUBTREE;
candidates = search_candidates( be, e, filter,
scope, 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(( "backend", LDAP_LEVEL_INFO,
"ldbm_search: no candidates\n" ));
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
send_search_result( conn, op,
LDAP_SUCCESS,
NULL, NULL, NULL, NULL, 0 );
1998-08-09 08:43:13 +08:00
rc = 1;
goto done;
}
/* if not root, get appropriate limits */
2001-12-26 03:48:26 +08:00
if ( be_isroot( be, &op->o_ndn ) ) {
isroot = 1;
} else {
2001-12-26 23:28:01 +08:00
( void ) get_limits( be, &op->o_ndn, &limit );
}
/* if candidates exceed to-be-checked entries, abort */
if ( !isroot && limit->lms_s_unchecked != -1 ) {
2001-12-09 10:34:45 +08:00
if ( ID_BLOCK_NIDS( candidates ) > (unsigned) limit->lms_s_unchecked ) {
send_search_result( conn, op, LDAP_UNWILLING_TO_PERFORM,
NULL, NULL, NULL, NULL, 0 );
rc = 0;
goto done;
}
}
2001-11-13 01:12:43 +08:00
/* if root an no specific limit is required, allow unlimited search */
if ( isroot ) {
if ( tlimit == 0 ) {
tlimit = -1;
}
2001-11-13 01:12:43 +08:00
if ( slimit == 0 ) {
slimit = -1;
}
2001-11-13 01:12:43 +08:00
} else {
/* if no limit is required, use soft limit */
if ( tlimit <= 0 ) {
tlimit = limit->lms_t_soft;
/* if requested limit higher than hard limit, abort */
} else if ( tlimit > limit->lms_t_hard ) {
/* no hard limit means use soft instead */
if ( limit->lms_t_hard == 0 ) {
tlimit = limit->lms_t_soft;
/* positive hard limit means abort */
} else if ( limit->lms_t_hard > 0 ) {
send_search_result( conn, op,
LDAP_UNWILLING_TO_PERFORM,
NULL, NULL, NULL, NULL, 0 );
rc = 0;
goto done;
}
2001-11-13 01:12:43 +08:00
/* negative hard limit means no limit */
}
2001-11-13 01:12:43 +08:00
/* if no limit is required, use soft limit */
if ( slimit <= 0 ) {
slimit = limit->lms_s_soft;
2001-11-13 01:12:43 +08:00
/* if requested limit higher than hard limit, abort */
} else if ( slimit > limit->lms_s_hard ) {
/* no hard limit means use soft instead */
if ( limit->lms_s_hard == 0 ) {
slimit = limit->lms_s_soft;
/* positive hard limit means abort */
} else if ( limit->lms_s_hard > 0 ) {
send_search_result( conn, op,
LDAP_UNWILLING_TO_PERFORM,
NULL, NULL, NULL, NULL, 0 );
rc = 0;
goto done;
}
2001-11-13 01:12:43 +08:00
/* negative hard limit means no limit */
}
}
2001-11-13 01:12:43 +08:00
/* compute it anyway; root does not use it */
stoptime = op->o_time + tlimit;
for ( id = idl_firstid( candidates, &cursor ); id != NOID;
id = idl_nextid( candidates, &cursor ) )
{
int scopeok = 0;
1998-08-09 08:43:13 +08:00
/* check for abandon */
ldap_pvt_thread_mutex_lock( &op->o_abandonmutex );
1998-08-09 08:43:13 +08:00
if ( op->o_abandon ) {
ldap_pvt_thread_mutex_unlock( &op->o_abandonmutex );
rc = 0;
goto done;
1998-08-09 08:43:13 +08:00
}
ldap_pvt_thread_mutex_unlock( &op->o_abandonmutex );
1998-08-09 08:43:13 +08:00
/* check time limit */
if ( tlimit != -1 && slap_get_time() > stoptime ) {
send_search_result( conn, op, LDAP_TIMELIMIT_EXCEEDED,
NULL, NULL, v2refs, NULL, nentries );
rc = 0;
goto done;
1998-08-09 08:43:13 +08:00
}
/* get the entry with reader lock */
e = id2entry_r( be, id );
if ( e == NULL ) {
2001-01-18 01:01:19 +08:00
#ifdef NEW_LOGGING
LDAP_LOG(( "backend", LDAP_LEVEL_INFO,
"ldbm_search: candidate %ld not found.\n", id ));
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;
}
if ( deref & LDAP_DEREF_SEARCHING && is_entry_alias( e ) ) {
Entry *matched;
int err;
const char *text;
e = deref_entry_r( be, 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 */
if( scope & LDAP_SCOPE_ONELEVEL ) {
char *pdn = dn_parent( NULL, e->e_ndn );
if ( pdn != NULL ) {
2001-12-30 18:47:28 +08:00
if( strcmp( pdn, realbase.bv_val ) ) {
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(( "backend", LDAP_LEVEL_DETAIL1,
"ldbm_search: alias \"%s\" in subtree\n", e->e_dn ));
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;
}
scopeok = 1;
1998-08-09 08:43:13 +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
*/
if ( !manageDSAit && scope != LDAP_SCOPE_BASE &&
is_entry_referral( e ) )
1998-08-09 08:43:13 +08:00
{
char *dn;
/* check scope */
if ( !scopeok && scope == LDAP_SCOPE_ONELEVEL ) {
if ( (dn = dn_parent( be, e->e_ndn )) != NULL ) {
2001-12-30 18:47:28 +08:00
scopeok = (dn == realbase.bv_val)
? 1
2001-12-30 18:47:28 +08:00
: (strcmp( dn, realbase.bv_val ) ? 0 : 1 );
} else {
2001-12-30 18:47:28 +08:00
scopeok = (realbase.bv_len == 0);
}
1998-08-09 08:43:13 +08:00
} else if ( !scopeok && scope == LDAP_SCOPE_SUBTREE ) {
2001-12-30 18:47:28 +08:00
scopeok = dnIsSuffix( &e->e_nname, &realbase );
} else {
scopeok = 1;
}
if( scopeok ) {
2002-01-02 19:00:36 +08:00
BVarray erefs = get_entry_referrals(
be, conn, op, e );
2002-01-02 19:00:36 +08:00
BVarray refs = referral_rewrite( erefs,
&e->e_name, NULL,
2001-12-08 06:28:46 +08:00
scope == LDAP_SCOPE_SUBTREE
? LDAP_SCOPE_SUBTREE
: LDAP_SCOPE_BASE );
send_search_reference( be, conn, op,
e, refs, NULL, &v2refs );
2002-01-02 19:00:36 +08:00
bvarray_free( refs );
} else {
#ifdef NEW_LOGGING
LDAP_LOG(( "backend", LDAP_LEVEL_DETAIL2,
"ldbm_search: candidate referral %ld scope not okay\n",
id ));
#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 it matches the filter and scope, send it */
if ( test_filter( be, conn, op, e, filter ) == LDAP_COMPARE_TRUE ) {
char *dn;
/* check scope */
if ( !scopeok && scope == LDAP_SCOPE_ONELEVEL ) {
if ( (dn = dn_parent( be, e->e_ndn )) != NULL ) {
2001-12-30 18:47:28 +08:00
scopeok = (dn == realbase.bv_val)
? 1
2001-12-30 18:47:28 +08:00
: (strcmp( dn, realbase.bv_val ) ? 0 : 1 );
} else {
2001-12-30 18:47:28 +08:00
scopeok = (realbase.bv_len == 0);
1998-08-09 08:43:13 +08:00
}
} else if ( !scopeok && scope == LDAP_SCOPE_SUBTREE ) {
2001-12-30 18:47:28 +08:00
scopeok = dnIsSuffix( &e->e_nname, &realbase );
} else {
scopeok = 1;
}
if ( scopeok ) {
/* check size limit */
if ( --slimit == -1 ) {
cache_return_entry_r( &li->li_cache, e );
send_search_result( conn, op,
LDAP_SIZELIMIT_EXCEEDED, NULL, NULL,
v2refs, NULL, nentries );
rc = 0;
goto done;
}
1998-08-09 08:43:13 +08:00
if (e) {
2000-06-17 09:22:55 +08:00
int result = send_search_entry(be, conn, op,
e, attrs, attrsonly, NULL);
2000-06-17 09:22:55 +08:00
switch (result) {
case 0: /* entry sent ok */
nentries++;
break;
case 1: /* entry not sent */
break;
case -1: /* connection closed */
cache_return_entry_r( &li->li_cache, e );
rc = 0;
goto done;
1998-08-09 08:43:13 +08:00
}
}
} else {
2001-01-18 01:01:19 +08:00
#ifdef NEW_LOGGING
LDAP_LOG(( "backend", LDAP_LEVEL_DETAIL2,
"ldbm_search: candidate entry %ld scope not okay\n", id ));
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(( "backend", LDAP_LEVEL_DETAIL2,
"ldbm_search: candidate entry %ld does not match filter\n", id ));
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
}
send_search_result( conn, op,
v2refs == NULL ? LDAP_SUCCESS : LDAP_REFERRAL,
NULL, NULL, v2refs, NULL, nentries );
rc = 0;
done:
1999-08-26 08:51:27 +08:00
if( candidates != NULL )
idl_free( candidates );
1998-08-09 08:43:13 +08:00
2002-01-02 19:00:36 +08:00
if( v2refs ) bvarray_free( v2refs );
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(( "backend", LDAP_LEVEL_ENTRY,
"base_candidate: base (%s)\n", e->e_dn ));
#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(
1998-08-09 08:43:13 +08:00
Backend *be,
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" };
2001-01-18 01:01:19 +08:00
#ifdef NEW_LOGGING
LDAP_LOG(( "backend", LDAP_LEVEL_DETAIL1,
"search_candidates: base (%s) scope %d deref %d\n",
e->e_ndn, scope, deref ));
#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;
fand.f_choice = scope == LDAP_SCOPE_SUBTREE
? SLAPD_FILTER_DN_SUBTREE
: SLAPD_FILTER_DN_ONE;
2001-12-27 07:37:59 +08:00
fand.f_dn = &e->e_nname;
fand.f_next = xf.f_or == filter ? filter : &xf ;
candidates = filter_candidates( be, &f );
2000-05-28 03:21:28 +08:00
1998-08-09 08:43:13 +08:00
return( candidates );
}