1998-08-09 08:43:13 +08:00
|
|
|
/* search.c - ldbm backend search function */
|
1999-09-09 03:06:24 +08:00
|
|
|
/* $OpenLDAP$ */
|
1999-08-07 07:07:46 +08:00
|
|
|
/*
|
2003-01-04 04:20:47 +08:00
|
|
|
* Copyright 1998-2003 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"
|
1998-09-21 04:22:46 +08:00
|
|
|
#include "proto-back-ldbm.h"
|
1998-08-09 08:43:13 +08:00
|
|
|
|
1999-07-16 10:45:46 +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(
|
|
|
|
Operation *op,
|
2003-03-30 17:03:54 +08:00
|
|
|
SlapReply *rs )
|
1998-08-09 08:43:13 +08:00
|
|
|
{
|
2003-03-30 17:03:54 +08:00
|
|
|
struct ldbminfo *li = (struct ldbminfo *) op->o_bd->be_private;
|
1999-07-16 10:45:46 +08:00
|
|
|
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;
|
1999-01-31 15:55:53 +08:00
|
|
|
ID_BLOCK *candidates;
|
1999-08-08 05:14:24 +08:00
|
|
|
ID id, cursor;
|
1998-08-09 08:43:13 +08:00
|
|
|
Entry *e;
|
1999-07-16 10:45:46 +08:00
|
|
|
Entry *matched = NULL;
|
2001-12-30 18:47:28 +08:00
|
|
|
struct berval realbase = { 0, NULL };
|
1999-07-16 10:45:46 +08:00
|
|
|
int manageDSAit = get_manageDSAit( op );
|
2001-10-26 10:05:14 +08:00
|
|
|
int cscope = LDAP_SCOPE_DEFAULT;
|
1999-07-16 10:45:46 +08:00
|
|
|
|
2003-03-07 03:44:41 +08:00
|
|
|
#ifdef LDAP_CACHING
|
|
|
|
Entry cache_base_entry;
|
|
|
|
#endif /* LDAP_CACHING */
|
|
|
|
|
2001-08-01 18:09:04 +08:00
|
|
|
struct slap_limits_set *limit = NULL;
|
2001-07-28 19:25:00 +08:00
|
|
|
int isroot = 0;
|
|
|
|
|
2001-01-18 01:01:19 +08:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-12 04:33:24 +08:00
|
|
|
LDAP_LOG( BACK_LDBM, ENTRY, "ldbm_back_search: enter\n", 0, 0, 0 );
|
2001-01-18 01:01:19 +08:00
|
|
|
#else
|
1999-07-16 10:45:46 +08:00
|
|
|
Debug(LDAP_DEBUG_TRACE, "=> ldbm_back_search\n", 0, 0, 0);
|
2001-01-18 01:01:19 +08:00
|
|
|
#endif
|
|
|
|
|
2002-01-30 01:58:36 +08:00
|
|
|
/* grab giant lock for reading */
|
|
|
|
ldap_pvt_thread_rdwr_rlock(&li->li_giant_rwlock);
|
1999-07-16 10:45:46 +08:00
|
|
|
|
2003-03-07 03:44:41 +08:00
|
|
|
#ifndef LDAP_CACHING
|
2003-03-30 17:03:54 +08:00
|
|
|
if ( op->o_req_ndn.bv_len == 0 ) {
|
2000-10-19 03:29:40 +08:00
|
|
|
/* DIT root special case */
|
2001-11-17 01:05:32 +08:00
|
|
|
e = (Entry *) &slap_entry_root;
|
2000-10-19 03:29:40 +08:00
|
|
|
|
|
|
|
/* need normalized dn below */
|
2001-12-30 18:47:28 +08:00
|
|
|
ber_dupbv( &realbase, &e->e_nname );
|
2000-10-19 03:29:40 +08:00
|
|
|
|
2003-03-07 03:44:41 +08:00
|
|
|
#else /* LDAP_CACHING */
|
2003-03-30 17:03:54 +08:00
|
|
|
if ( op->o_caching_on || op->o_req_ndn.bv_len == 0 ) {
|
|
|
|
if (op->o_req_ndn.bv_len == 0) {
|
2003-03-07 03:44:41 +08:00
|
|
|
e = (Entry *) &slap_entry_root;
|
|
|
|
/* need normalized dn below */
|
|
|
|
ber_dupbv( &realbase, &e->e_nname );
|
|
|
|
} else {
|
2003-03-31 22:01:34 +08:00
|
|
|
if ((op->oq_search.rs_scope == LDAP_SCOPE_BASE)
|
|
|
|
&& (e = dn2entry_r( op->o_bd, &op->o_req_ndn, &matched )))
|
2003-03-07 03:44:41 +08:00
|
|
|
{
|
2003-03-31 22:01:34 +08:00
|
|
|
candidates = base_candidate(op->o_bd, e);
|
2003-03-07 03:44:41 +08:00
|
|
|
cache_return_entry_r( &li->li_cache, e );
|
|
|
|
goto searchit;
|
|
|
|
}
|
2003-03-31 22:01:34 +08:00
|
|
|
cache_base_entry.e_nname = op->o_req_ndn;
|
2003-03-07 03:44:41 +08:00
|
|
|
e = &cache_base_entry;
|
|
|
|
}
|
|
|
|
#endif /* LDAP_CACHING */
|
|
|
|
|
2003-03-30 17:03:54 +08:00
|
|
|
candidates = search_candidates( op->o_bd, e, op->oq_search.rs_filter,
|
|
|
|
op->oq_search.rs_scope, op->oq_search.rs_deref,
|
2003-03-07 03:44:41 +08:00
|
|
|
manageDSAit || get_domainScope(op) );
|
2000-10-19 03:29:40 +08:00
|
|
|
|
|
|
|
goto searchit;
|
|
|
|
|
2003-03-30 17:03:54 +08:00
|
|
|
} else if ( op->oq_search.rs_deref & LDAP_DEREF_FINDING ) {
|
2000-10-19 03:29:40 +08:00
|
|
|
/* deref dn and get entry with reader lock */
|
2003-03-30 17:03:54 +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
|
|
|
|
2003-03-30 17:03:54 +08:00
|
|
|
if( rs->sr_err == LDAP_NO_SUCH_OBJECT ) rs->sr_err = LDAP_REFERRAL;
|
2001-04-13 07:02:20 +08:00
|
|
|
|
1999-07-16 10:45:46 +08:00
|
|
|
} else {
|
2000-10-19 03:29:40 +08:00
|
|
|
/* get entry with reader lock */
|
2003-03-30 17:03:54 +08:00
|
|
|
e = dn2entry_r( op->o_bd, &op->o_req_ndn, &matched );
|
|
|
|
rs->sr_err = e != NULL ? LDAP_SUCCESS : LDAP_REFERRAL;
|
|
|
|
rs->sr_text = NULL;
|
1999-07-16 10:45:46 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if ( e == NULL ) {
|
2002-01-06 01:49:59 +08:00
|
|
|
struct berval matched_dn = { 0, NULL };
|
1999-07-16 10:45:46 +08:00
|
|
|
|
|
|
|
if ( matched != NULL ) {
|
2002-01-14 09:43:17 +08:00
|
|
|
BerVarray erefs;
|
2002-01-06 01:49:59 +08:00
|
|
|
ber_dupbv( &matched_dn, &matched->e_name );
|
1999-07-16 10:45:46 +08:00
|
|
|
|
2001-10-26 10:05:14 +08:00
|
|
|
erefs = is_entry_referral( matched )
|
2003-03-30 17:03:54 +08:00
|
|
|
? get_entry_referrals( op, matched )
|
1999-07-16 10:45:46 +08:00
|
|
|
: NULL;
|
|
|
|
|
|
|
|
cache_return_entry_r( &li->li_cache, matched );
|
2001-04-13 07:02:20 +08:00
|
|
|
|
2001-10-26 10:05:14 +08:00
|
|
|
if( erefs ) {
|
2003-03-30 17:03:54 +08:00
|
|
|
rs->sr_ref = referral_rewrite( erefs, &matched_dn,
|
|
|
|
&op->o_req_dn, op->oq_search.rs_scope );
|
2001-10-26 10:05:14 +08:00
|
|
|
|
2002-01-14 09:43:17 +08:00
|
|
|
ber_bvarray_free( erefs );
|
2001-10-26 10:05:14 +08:00
|
|
|
}
|
|
|
|
|
1999-07-16 10:45:46 +08:00
|
|
|
} else {
|
2003-03-30 17:03:54 +08:00
|
|
|
rs->sr_ref = referral_rewrite( default_referral,
|
|
|
|
NULL, &op->o_req_dn, op->oq_search.rs_scope );
|
1999-07-16 10:45:46 +08:00
|
|
|
}
|
|
|
|
|
2002-01-30 01:58:36 +08:00
|
|
|
ldap_pvt_thread_rdwr_runlock(&li->li_giant_rwlock);
|
|
|
|
|
2003-03-30 17:03:54 +08:00
|
|
|
rs->sr_matched = matched_dn.bv_val;
|
|
|
|
send_ldap_result( op, rs );
|
1999-07-16 10:45:46 +08:00
|
|
|
|
2003-03-30 17:03:54 +08:00
|
|
|
ber_bvarray_free( rs->sr_ref );
|
2002-01-06 01:49:59 +08:00
|
|
|
ber_memfree( matched_dn.bv_val );
|
1999-07-16 10:45:46 +08:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!manageDSAit && is_entry_referral( e ) ) {
|
|
|
|
/* entry is a referral, don't allow add */
|
2002-01-06 01:49:59 +08:00
|
|
|
struct berval matched_dn;
|
2002-01-14 09:43:17 +08:00
|
|
|
BerVarray erefs;
|
2002-01-06 01:49:59 +08:00
|
|
|
|
|
|
|
ber_dupbv( &matched_dn, &e->e_name );
|
2003-03-30 17:03:54 +08:00
|
|
|
erefs = get_entry_referrals( op, e );
|
|
|
|
rs->sr_ref = NULL;
|
1999-07-16 10:45:46 +08:00
|
|
|
|
|
|
|
cache_return_entry_r( &li->li_cache, e );
|
2002-01-30 01:58:36 +08:00
|
|
|
ldap_pvt_thread_rdwr_runlock(&li->li_giant_rwlock);
|
1999-07-16 10:45:46 +08:00
|
|
|
|
2001-01-18 01:01:19 +08:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-12 04:33:24 +08:00
|
|
|
LDAP_LOG( BACK_LDBM, INFO,
|
2001-10-26 10:05:14 +08:00
|
|
|
"ldbm_search: entry (%s) is a referral.\n",
|
2002-07-12 04:33:24 +08:00
|
|
|
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
|
|
|
|
|
2001-10-26 10:05:14 +08:00
|
|
|
if( erefs ) {
|
2003-03-30 17:03:54 +08:00
|
|
|
rs->sr_ref = referral_rewrite( erefs, &matched_dn,
|
|
|
|
&op->o_req_dn, op->oq_search.rs_scope );
|
1999-07-16 10:45:46 +08:00
|
|
|
|
2002-01-14 09:43:17 +08:00
|
|
|
ber_bvarray_free( erefs );
|
2001-10-26 10:05:14 +08:00
|
|
|
}
|
1999-07-16 10:45:46 +08:00
|
|
|
|
2003-03-30 17:03:54 +08:00
|
|
|
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 );
|
2001-10-26 10:05:14 +08:00
|
|
|
|
|
|
|
} else {
|
2003-03-30 17:03:54 +08:00
|
|
|
send_ldap_error( op, rs, LDAP_OTHER,
|
|
|
|
"bad referral object" );
|
2001-10-26 10:05:14 +08:00
|
|
|
}
|
1999-07-16 10:45:46 +08:00
|
|
|
|
2002-01-06 01:49:59 +08:00
|
|
|
ber_memfree( matched_dn.bv_val );
|
1999-07-16 10:45:46 +08:00
|
|
|
return 1;
|
|
|
|
}
|
1998-09-21 04:22:46 +08:00
|
|
|
|
2000-06-17 10:00:30 +08:00
|
|
|
if ( is_entry_alias( e ) ) {
|
|
|
|
/* don't deref */
|
2003-03-30 17:03:54 +08:00
|
|
|
op->oq_search.rs_deref = LDAP_DEREF_NEVER;
|
2000-06-17 10:00:30 +08:00
|
|
|
}
|
|
|
|
|
2003-03-30 17:03:54 +08:00
|
|
|
if ( op->oq_search.rs_scope == LDAP_SCOPE_BASE ) {
|
2001-10-26 10:05:14 +08:00
|
|
|
cscope = LDAP_SCOPE_BASE;
|
2003-03-30 17:03:54 +08:00
|
|
|
candidates = base_candidate( op->o_bd, e );
|
1998-08-09 08:43:13 +08:00
|
|
|
|
1999-07-16 10:45:46 +08:00
|
|
|
} else {
|
2003-03-30 17:03:54 +08:00
|
|
|
cscope = ( op->oq_search.rs_scope != LDAP_SCOPE_SUBTREE )
|
2001-10-26 10:05:14 +08:00
|
|
|
? LDAP_SCOPE_BASE : LDAP_SCOPE_SUBTREE;
|
2003-03-30 17:03:54 +08:00
|
|
|
candidates = search_candidates( op->o_bd, e, op->oq_search.rs_filter,
|
|
|
|
op->oq_search.rs_scope, op->oq_search.rs_deref, manageDSAit );
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
|
|
|
|
1999-07-16 10:45:46 +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
|
|
|
|
1999-07-16 10:45:46 +08:00
|
|
|
cache_return_entry_r( &li->li_cache, e );
|
|
|
|
|
2000-10-19 03:29:40 +08:00
|
|
|
searchit:
|
1998-08-09 08:43:13 +08:00
|
|
|
if ( candidates == NULL ) {
|
1999-07-16 10:45:46 +08:00
|
|
|
/* no candidates */
|
2001-01-18 01:01:19 +08:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-12 04:33:24 +08:00
|
|
|
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
|
2003-03-07 03:44:41 +08:00
|
|
|
#ifdef LDAP_CACHING
|
|
|
|
if ( op->o_caching_on ) {
|
|
|
|
ldap_pvt_thread_rdwr_runlock(&li->li_giant_rwlock);
|
|
|
|
}
|
|
|
|
#endif /* LDAP_CACHING */
|
2001-01-18 01:01:19 +08:00
|
|
|
|
2003-03-30 17:03:54 +08:00
|
|
|
rs->sr_err = LDAP_SUCCESS;
|
2003-04-01 12:12:18 +08:00
|
|
|
send_ldap_result( op, rs );
|
1998-08-09 08:43:13 +08:00
|
|
|
|
2003-03-07 03:44:41 +08:00
|
|
|
#ifdef LDAP_CACHING
|
|
|
|
if ( op->o_caching_on ) {
|
|
|
|
ldap_pvt_thread_rdwr_rlock(&li->li_giant_rwlock);
|
|
|
|
}
|
|
|
|
#endif /* LDAP_CACHING */
|
|
|
|
|
1999-07-16 10:45:46 +08:00
|
|
|
rc = 1;
|
|
|
|
goto done;
|
1998-12-22 01:45:47 +08:00
|
|
|
}
|
|
|
|
|
2001-08-01 18:09:04 +08:00
|
|
|
/* if not root, get appropriate limits */
|
2003-03-07 03:44:41 +08:00
|
|
|
#ifndef LDAP_CACHING
|
2003-03-30 17:03:54 +08:00
|
|
|
if ( be_isroot( op->o_bd, &op->o_ndn ) )
|
2003-03-07 03:44:41 +08:00
|
|
|
#else /* LDAP_CACHING */
|
2003-03-30 17:03:54 +08:00
|
|
|
if ( op->o_caching_on || be_isroot( op->o_bd, &op->o_ndn ) )
|
2003-03-07 03:44:41 +08:00
|
|
|
#endif /* LDAP_CACHING */
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* FIXME: I'd consider this dangerous if someone
|
|
|
|
* uses isroot for anything but handling limits
|
|
|
|
*/
|
2001-07-28 19:25:00 +08:00
|
|
|
isroot = 1;
|
|
|
|
} else {
|
2003-03-30 17:03:54 +08:00
|
|
|
( void ) get_limits( op->o_bd, &op->o_ndn, &limit );
|
2001-08-01 18:09:04 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* 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 ) {
|
2003-03-30 17:03:54 +08:00
|
|
|
send_ldap_error( op, rs, LDAP_ADMINLIMIT_EXCEEDED,
|
|
|
|
NULL );
|
2001-08-01 18:09:04 +08:00
|
|
|
rc = 0;
|
|
|
|
goto done;
|
2001-07-28 19:25:00 +08:00
|
|
|
}
|
|
|
|
}
|
2001-08-01 18:09:04 +08:00
|
|
|
|
2001-11-13 01:12:43 +08:00
|
|
|
/* if root an no specific limit is required, allow unlimited search */
|
|
|
|
if ( isroot ) {
|
2003-03-30 17:03:54 +08:00
|
|
|
if ( op->oq_search.rs_tlimit == 0 ) {
|
|
|
|
op->oq_search.rs_tlimit = -1;
|
2001-08-01 18:09:04 +08:00
|
|
|
}
|
2001-07-28 19:25:00 +08:00
|
|
|
|
2003-03-30 17:03:54 +08:00
|
|
|
if ( op->oq_search.rs_slimit == 0 ) {
|
|
|
|
op->oq_search.rs_slimit = -1;
|
2001-11-13 01:12:43 +08:00
|
|
|
}
|
2000-10-19 03:29:40 +08:00
|
|
|
|
2001-11-13 01:12:43 +08:00
|
|
|
} else {
|
|
|
|
/* if no limit is required, use soft limit */
|
2003-03-30 17:03:54 +08:00
|
|
|
if ( op->oq_search.rs_tlimit <= 0 ) {
|
|
|
|
op->oq_search.rs_tlimit = limit->lms_t_soft;
|
2001-11-13 01:12:43 +08:00
|
|
|
|
|
|
|
/* if requested limit higher than hard limit, abort */
|
2003-03-30 17:03:54 +08:00
|
|
|
} else if ( op->oq_search.rs_tlimit > limit->lms_t_hard ) {
|
2001-11-13 01:12:43 +08:00
|
|
|
/* no hard limit means use soft instead */
|
2002-11-21 20:58:59 +08:00
|
|
|
if ( limit->lms_t_hard == 0
|
|
|
|
&& limit->lms_t_soft > -1
|
2003-03-30 17:03:54 +08:00
|
|
|
&& op->oq_search.rs_tlimit > limit->lms_t_soft ) {
|
|
|
|
op->oq_search.rs_tlimit = limit->lms_t_soft;
|
2001-11-13 01:12:43 +08:00
|
|
|
|
|
|
|
/* positive hard limit means abort */
|
|
|
|
} else if ( limit->lms_t_hard > 0 ) {
|
2003-03-30 17:03:54 +08:00
|
|
|
send_ldap_error( op, rs,
|
2002-11-21 20:58:59 +08:00
|
|
|
LDAP_ADMINLIMIT_EXCEEDED,
|
2003-03-30 17:03:54 +08:00
|
|
|
NULL );
|
2001-11-13 01:12:43 +08:00
|
|
|
rc = 0;
|
|
|
|
goto done;
|
|
|
|
}
|
2001-08-01 18:09:04 +08:00
|
|
|
|
2001-11-13 01:12:43 +08:00
|
|
|
/* negative hard limit means no limit */
|
2001-08-01 18:09:04 +08:00
|
|
|
}
|
2001-11-13 01:12:43 +08:00
|
|
|
|
|
|
|
/* if no limit is required, use soft limit */
|
2003-03-30 17:03:54 +08:00
|
|
|
if ( op->oq_search.rs_slimit <= 0 ) {
|
|
|
|
op->oq_search.rs_slimit = limit->lms_s_soft;
|
2001-08-01 18:09:04 +08:00
|
|
|
|
2001-11-13 01:12:43 +08:00
|
|
|
/* if requested limit higher than hard limit, abort */
|
2003-03-30 17:03:54 +08:00
|
|
|
} else if ( op->oq_search.rs_slimit > limit->lms_s_hard ) {
|
2001-11-13 01:12:43 +08:00
|
|
|
/* no hard limit means use soft instead */
|
2002-11-21 20:58:59 +08:00
|
|
|
if ( limit->lms_s_hard == 0
|
|
|
|
&& limit->lms_s_soft > -1
|
2003-03-30 17:03:54 +08:00
|
|
|
&& op->oq_search.rs_slimit > limit->lms_s_soft ) {
|
|
|
|
op->oq_search.rs_slimit = limit->lms_s_soft;
|
2001-11-13 01:12:43 +08:00
|
|
|
|
|
|
|
/* positive hard limit means abort */
|
|
|
|
} else if ( limit->lms_s_hard > 0 ) {
|
2003-03-30 17:03:54 +08:00
|
|
|
send_ldap_error( op, rs,
|
2002-11-21 20:58:59 +08:00
|
|
|
LDAP_ADMINLIMIT_EXCEEDED,
|
2003-03-30 17:03:54 +08:00
|
|
|
NULL );
|
2001-11-13 01:12:43 +08:00
|
|
|
rc = 0;
|
|
|
|
goto done;
|
|
|
|
}
|
2001-08-01 18:09:04 +08:00
|
|
|
|
2001-11-13 01:12:43 +08:00
|
|
|
/* negative hard limit means no limit */
|
|
|
|
}
|
2000-10-19 03:29:40 +08:00
|
|
|
}
|
|
|
|
|
2001-11-13 01:12:43 +08:00
|
|
|
/* compute it anyway; root does not use it */
|
2003-03-30 17:03:54 +08:00
|
|
|
stoptime = op->o_time + op->oq_search.rs_tlimit;
|
|
|
|
rs->sr_attrs = op->oq_search.rs_attrs;
|
2001-11-13 01:12:43 +08:00
|
|
|
|
1999-08-08 05:14:24 +08:00
|
|
|
for ( id = idl_firstid( candidates, &cursor ); id != NOID;
|
|
|
|
id = idl_nextid( candidates, &cursor ) )
|
1999-07-16 10:45:46 +08:00
|
|
|
{
|
2001-10-26 10:05:14 +08:00
|
|
|
int scopeok = 0;
|
2002-08-29 18:55:48 +08:00
|
|
|
int result = 0;
|
1999-03-22 15:14:54 +08:00
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
/* check for abandon */
|
|
|
|
if ( op->o_abandon ) {
|
1999-07-16 10:45:46 +08:00
|
|
|
rc = 0;
|
|
|
|
goto done;
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
1999-07-16 10:45:46 +08:00
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
/* check time limit */
|
2003-03-30 17:03:54 +08:00
|
|
|
if ( op->oq_search.rs_tlimit != -1 && slap_get_time() > stoptime ) {
|
|
|
|
rs->sr_err = LDAP_TIMELIMIT_EXCEEDED;
|
2003-04-01 12:12:18 +08:00
|
|
|
send_ldap_result( op, rs );
|
1999-07-16 10:45:46 +08:00
|
|
|
rc = 0;
|
|
|
|
goto done;
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
|
|
|
|
1998-09-21 04:22:46 +08:00
|
|
|
/* get the entry with reader lock */
|
2003-03-30 17:03:54 +08:00
|
|
|
e = id2entry_r( op->o_bd, id );
|
1999-07-16 10:45:46 +08:00
|
|
|
|
|
|
|
if ( e == NULL ) {
|
2001-01-18 01:01:19 +08:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-12 04:33:24 +08:00
|
|
|
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",
|
1999-07-16 10:45:46 +08:00
|
|
|
id, 0, 0 );
|
2001-01-18 01:01:19 +08:00
|
|
|
#endif
|
|
|
|
|
1999-07-16 10:45:46 +08:00
|
|
|
goto loop_continue;
|
|
|
|
}
|
|
|
|
|
2003-03-30 17:03:54 +08:00
|
|
|
rs->sr_entry = e;
|
2003-03-07 03:44:41 +08:00
|
|
|
#ifdef LDAP_CACHING
|
|
|
|
if ( !op->o_caching_on ) {
|
|
|
|
#endif /* LDAP_CACHING */
|
|
|
|
|
2003-03-30 17:03:54 +08:00
|
|
|
if ( op->oq_search.rs_deref & LDAP_DEREF_SEARCHING && is_entry_alias( e ) ) {
|
1999-07-16 10:45:46 +08:00
|
|
|
Entry *matched;
|
|
|
|
int err;
|
2000-05-22 11:46:57 +08:00
|
|
|
const char *text;
|
1999-07-16 10:45:46 +08:00
|
|
|
|
2003-03-30 17:03:54 +08:00
|
|
|
e = deref_entry_r( op->o_bd, e, &err, &matched, &text );
|
1999-07-16 10:45:46 +08:00
|
|
|
|
|
|
|
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 */
|
2003-03-30 17:03:54 +08:00
|
|
|
if( op->oq_search.rs_scope & LDAP_SCOPE_ONELEVEL ) {
|
2002-01-26 14:52:59 +08:00
|
|
|
struct berval pdn;
|
|
|
|
dnParent( &e->e_nname, &pdn );
|
|
|
|
if ( ber_bvcmp( &pdn, &realbase ) ) {
|
|
|
|
goto loop_continue;
|
1999-07-16 10:45:46 +08:00
|
|
|
}
|
|
|
|
|
2001-12-30 18:47:28 +08:00
|
|
|
} else if ( dnIsSuffix( &e->e_nname, &realbase ) ) {
|
1999-07-16 10:45:46 +08:00
|
|
|
/* alias is within scope */
|
2001-01-18 01:01:19 +08:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-12 04:33:24 +08:00
|
|
|
LDAP_LOG( BACK_LDBM, DETAIL1,
|
|
|
|
"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,
|
2001-10-26 10:05:14 +08:00
|
|
|
"ldbm_search: alias \"%s\" in subtree\n",
|
1999-07-16 10:45:46 +08:00
|
|
|
e->e_dn, 0, 0 );
|
2001-01-18 01:01:19 +08:00
|
|
|
#endif
|
|
|
|
|
1999-07-16 10:45:46 +08:00
|
|
|
goto loop_continue;
|
|
|
|
}
|
|
|
|
|
2003-03-30 17:03:54 +08:00
|
|
|
rs->sr_entry = e;
|
|
|
|
|
1999-07-16 10:45:46 +08:00
|
|
|
scopeok = 1;
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* if it's a referral, add it to the list of referrals. only do
|
1999-07-16 10:45:46 +08:00
|
|
|
* 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
|
|
|
*/
|
2003-03-30 17:03:54 +08:00
|
|
|
if ( !manageDSAit && op->oq_search.rs_scope != LDAP_SCOPE_BASE &&
|
1999-07-16 10:45:46 +08:00
|
|
|
is_entry_referral( e ) )
|
1998-08-09 08:43:13 +08:00
|
|
|
{
|
2002-01-26 14:52:59 +08:00
|
|
|
struct berval dn;
|
2001-09-08 10:37:02 +08:00
|
|
|
|
|
|
|
/* check scope */
|
2003-03-30 17:03:54 +08:00
|
|
|
if ( !scopeok && op->oq_search.rs_scope == LDAP_SCOPE_ONELEVEL ) {
|
|
|
|
if ( !be_issuffix( op->o_bd, &e->e_nname ) ) {
|
2002-01-26 14:52:59 +08:00
|
|
|
dnParent( &e->e_nname, &dn );
|
|
|
|
scopeok = dn_match( &dn, &realbase );
|
2001-09-08 10:37:02 +08:00
|
|
|
} else {
|
2001-12-30 18:47:28 +08:00
|
|
|
scopeok = (realbase.bv_len == 0);
|
2001-09-08 10:37:02 +08:00
|
|
|
}
|
1998-08-09 08:43:13 +08:00
|
|
|
|
2003-03-30 17:03:54 +08:00
|
|
|
} else if ( !scopeok && op->oq_search.rs_scope == LDAP_SCOPE_SUBTREE ) {
|
2001-12-30 18:47:28 +08:00
|
|
|
scopeok = dnIsSuffix( &e->e_nname, &realbase );
|
2001-09-08 10:37:02 +08:00
|
|
|
|
|
|
|
} else {
|
|
|
|
scopeok = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( scopeok ) {
|
2003-03-30 17:03:54 +08:00
|
|
|
BerVarray erefs = get_entry_referrals( op, e );
|
|
|
|
rs->sr_ref = referral_rewrite( erefs,
|
2001-12-27 04:59:24 +08:00
|
|
|
&e->e_name, NULL,
|
2003-03-30 17:03:54 +08:00
|
|
|
op->oq_search.rs_scope == LDAP_SCOPE_SUBTREE
|
2001-12-08 06:28:46 +08:00
|
|
|
? LDAP_SCOPE_SUBTREE
|
|
|
|
: LDAP_SCOPE_BASE );
|
2001-09-08 10:37:02 +08:00
|
|
|
|
2003-03-30 17:03:54 +08:00
|
|
|
send_search_reference( op, rs );
|
2001-09-08 10:37:02 +08:00
|
|
|
|
2003-03-30 17:03:54 +08:00
|
|
|
ber_bvarray_free( rs->sr_ref );
|
|
|
|
rs->sr_ref = NULL;
|
2001-09-08 10:37:02 +08:00
|
|
|
|
|
|
|
} else {
|
|
|
|
#ifdef NEW_LOGGING
|
2002-07-12 04:33:24 +08:00
|
|
|
LDAP_LOG( BACK_LDBM, DETAIL2,
|
2001-09-08 10:37:02 +08:00
|
|
|
"ldbm_search: candidate referral %ld scope not okay\n",
|
2002-07-12 04:33:24 +08:00
|
|
|
id, 0, 0 );
|
2001-09-08 10:37:02 +08:00
|
|
|
#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
|
|
|
|
1999-07-16 10:45:46 +08:00
|
|
|
goto loop_continue;
|
|
|
|
}
|
|
|
|
|
2003-03-07 03:44:41 +08:00
|
|
|
#ifdef LDAP_CACHING
|
|
|
|
}
|
|
|
|
#endif /* LDAP_CACHING */
|
|
|
|
|
1999-07-16 10:45:46 +08:00
|
|
|
/* if it matches the filter and scope, send it */
|
2003-03-30 17:03:54 +08:00
|
|
|
result = test_filter( op, e, op->oq_search.rs_filter );
|
2002-08-29 18:55:48 +08:00
|
|
|
|
|
|
|
if ( result == LDAP_COMPARE_TRUE ) {
|
2002-01-26 14:52:59 +08:00
|
|
|
struct berval dn;
|
1999-07-16 10:45:46 +08:00
|
|
|
|
|
|
|
/* check scope */
|
2003-03-30 17:03:54 +08:00
|
|
|
if ( !scopeok && op->oq_search.rs_scope == LDAP_SCOPE_ONELEVEL ) {
|
|
|
|
if ( !be_issuffix( op->o_bd, &e->e_nname ) ) {
|
2002-01-26 14:52:59 +08:00
|
|
|
dnParent( &e->e_nname, &dn );
|
|
|
|
scopeok = dn_match( &dn, &realbase );
|
1999-07-16 10:45:46 +08:00
|
|
|
} else {
|
2001-12-30 18:47:28 +08:00
|
|
|
scopeok = (realbase.bv_len == 0);
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
|
|
|
|
2003-03-30 17:03:54 +08:00
|
|
|
} else if ( !scopeok && op->oq_search.rs_scope == LDAP_SCOPE_SUBTREE ) {
|
2001-12-30 18:47:28 +08:00
|
|
|
scopeok = dnIsSuffix( &e->e_nname, &realbase );
|
1999-07-16 10:45:46 +08:00
|
|
|
|
|
|
|
} else {
|
|
|
|
scopeok = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( scopeok ) {
|
|
|
|
/* check size limit */
|
2003-03-30 17:03:54 +08:00
|
|
|
if ( --op->oq_search.rs_slimit == -1 ) {
|
1999-07-16 10:45:46 +08:00
|
|
|
cache_return_entry_r( &li->li_cache, e );
|
2003-03-30 17:03:54 +08:00
|
|
|
rs->sr_err = LDAP_SIZELIMIT_EXCEEDED;
|
2003-04-01 12:12:18 +08:00
|
|
|
send_ldap_result( op, rs );
|
1999-07-16 10:45:46 +08:00
|
|
|
rc = 0;
|
|
|
|
goto done;
|
|
|
|
}
|
1998-08-09 08:43:13 +08:00
|
|
|
|
1999-07-16 10:45:46 +08:00
|
|
|
if (e) {
|
2003-03-07 03:44:41 +08:00
|
|
|
|
|
|
|
#ifdef LDAP_CACHING
|
|
|
|
if ( op->o_caching_on ) {
|
|
|
|
ldap_pvt_thread_rdwr_runlock(&li->li_giant_rwlock);
|
|
|
|
cache_return_entry_r( &li->li_cache, e );
|
|
|
|
}
|
|
|
|
#endif /* LDAP_CACHING */
|
|
|
|
|
2003-03-30 17:03:54 +08:00
|
|
|
result = send_search_entry( op, rs );
|
2000-02-15 04:57:34 +08:00
|
|
|
|
2003-03-07 03:44:41 +08:00
|
|
|
#ifdef LDAP_CACHING
|
|
|
|
if ( op->o_caching_on ) {
|
|
|
|
ldap_pvt_thread_rdwr_rlock( &li->li_giant_rwlock );
|
|
|
|
}
|
|
|
|
#endif /* LDAP_CACHING */
|
|
|
|
|
|
|
|
|
2000-06-17 09:22:55 +08:00
|
|
|
switch (result) {
|
1999-07-16 10:45:46 +08:00
|
|
|
case 0: /* entry sent ok */
|
1998-10-24 10:42:38 +08:00
|
|
|
break;
|
1999-07-16 10:45:46 +08:00
|
|
|
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
|
|
|
}
|
|
|
|
}
|
1999-07-16 10:45:46 +08:00
|
|
|
} else {
|
2001-01-18 01:01:19 +08:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-12 04:33:24 +08:00
|
|
|
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,
|
2001-10-26 10:05:14 +08:00
|
|
|
"ldbm_search: candidate entry %ld scope not okay\n",
|
1999-07-16 10:45:46 +08:00
|
|
|
id, 0, 0 );
|
2001-01-18 01:01:19 +08:00
|
|
|
#endif
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
2001-10-26 10:05:14 +08:00
|
|
|
|
1999-07-16 10:45:46 +08:00
|
|
|
} else {
|
2001-01-18 01:01:19 +08:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-12 04:33:24 +08:00
|
|
|
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,
|
2001-10-26 10:05:14 +08:00
|
|
|
"ldbm_search: candidate entry %ld does not match filter\n",
|
1999-07-16 10:45:46 +08:00
|
|
|
id, 0, 0 );
|
2001-01-18 01:01:19 +08:00
|
|
|
#endif
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
|
|
|
|
1999-07-16 10:45:46 +08:00
|
|
|
loop_continue:
|
1998-10-27 01:37:35 +08:00
|
|
|
if( e != NULL ) {
|
1998-09-21 04:22:46 +08:00
|
|
|
/* free reader lock */
|
2003-03-07 03:44:41 +08:00
|
|
|
#ifndef LDAP_CACHING
|
1998-09-21 04:22:46 +08:00
|
|
|
cache_return_entry_r( &li->li_cache, e );
|
2003-03-07 03:44:41 +08:00
|
|
|
#else /* LDAP_CACHING */
|
|
|
|
if ( !op->o_caching_on ) {
|
|
|
|
cache_return_entry_r( &li->li_cache, e );
|
|
|
|
}
|
|
|
|
#endif /* LDAP_CACHING */
|
1998-09-21 04:22:46 +08:00
|
|
|
}
|
1998-08-09 08:43:13 +08:00
|
|
|
|
1999-01-28 12:34:55 +08:00
|
|
|
ldap_pvt_thread_yield();
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
2001-10-26 10:05:14 +08:00
|
|
|
|
2003-03-30 17:03:54 +08:00
|
|
|
rs->sr_err = rs->sr_v2ref ? LDAP_REFERRAL : LDAP_SUCCESS;
|
|
|
|
rs->sr_ref = rs->sr_v2ref;
|
2003-04-01 12:12:18 +08:00
|
|
|
send_ldap_result( op, rs );
|
1999-07-16 10:45:46 +08:00
|
|
|
|
|
|
|
rc = 0;
|
|
|
|
|
|
|
|
done:
|
2002-01-30 01:58:36 +08:00
|
|
|
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
|
|
|
|
2003-03-30 17:03:54 +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 );
|
1998-12-22 01:45:47 +08:00
|
|
|
|
1999-07-16 10:45:46 +08:00
|
|
|
return rc;
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
|
|
|
|
1999-01-31 15:55:53 +08:00
|
|
|
static ID_BLOCK *
|
1999-07-16 10:45:46 +08:00
|
|
|
base_candidate(
|
1998-08-09 08:43:13 +08:00
|
|
|
Backend *be,
|
2000-06-17 13:01:50 +08:00
|
|
|
Entry *e )
|
1998-08-09 08:43:13 +08:00
|
|
|
{
|
1999-01-31 15:55:53 +08:00
|
|
|
ID_BLOCK *idl;
|
1998-09-21 04:22:46 +08:00
|
|
|
|
2001-01-18 01:01:19 +08:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-12 04:33:24 +08:00
|
|
|
LDAP_LOG( BACK_LDBM, ENTRY, "base_candidate: base (%s)\n", e->e_dn, 0, 0 );
|
2001-01-18 01:01:19 +08:00
|
|
|
#else
|
1999-07-16 10:45:46 +08:00
|
|
|
Debug(LDAP_DEBUG_TRACE, "base_candidates: base: \"%s\"\n",
|
|
|
|
e->e_dn, 0, 0);
|
2001-01-18 01:01:19 +08:00
|
|
|
#endif
|
|
|
|
|
1998-09-21 04:22:46 +08:00
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
idl = idl_alloc( 1 );
|
|
|
|
idl_insert( &idl, e->e_id, 1 );
|
|
|
|
|
|
|
|
return( idl );
|
|
|
|
}
|
|
|
|
|
1999-01-31 15:55:53 +08:00
|
|
|
static ID_BLOCK *
|
1999-07-16 10:45:46 +08:00
|
|
|
search_candidates(
|
1998-08-09 08:43:13 +08:00
|
|
|
Backend *be,
|
1999-07-16 10:45:46 +08:00
|
|
|
Entry *e,
|
1998-08-09 08:43:13 +08:00
|
|
|
Filter *filter,
|
1999-07-16 10:45:46 +08:00
|
|
|
int scope,
|
|
|
|
int deref,
|
2000-06-17 13:01:50 +08:00
|
|
|
int manageDSAit )
|
1998-08-09 08:43:13 +08:00
|
|
|
{
|
1999-01-31 15:55:53 +08:00
|
|
|
ID_BLOCK *candidates;
|
2000-06-17 13:01:50 +08:00
|
|
|
Filter f, fand, rf, af, xf;
|
|
|
|
AttributeAssertion aa_ref, aa_alias;
|
2002-11-01 00:48:04 +08:00
|
|
|
struct berval bv_ref = { sizeof("referral")-1, "referral" };
|
|
|
|
struct berval bv_alias = { sizeof("alias")-1, "alias" };
|
2000-06-17 13:01:50 +08:00
|
|
|
|
2001-01-18 01:01:19 +08:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-12 04:33:24 +08:00
|
|
|
LDAP_LOG( BACK_LDBM, DETAIL1,
|
2001-01-18 01:01:19 +08:00
|
|
|
"search_candidates: base (%s) scope %d deref %d\n",
|
2002-07-12 04:33:24 +08:00
|
|
|
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",
|
2000-06-17 13:01:50 +08:00
|
|
|
e->e_ndn, scope, deref );
|
2001-01-18 01:01:19 +08:00
|
|
|
#endif
|
|
|
|
|
2000-06-17 13:01:50 +08:00
|
|
|
|
|
|
|
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;
|
2001-12-29 23:01:10 +08:00
|
|
|
rf.f_av_value = bv_ref;
|
2000-06-17 13:01:50 +08:00
|
|
|
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;
|
2001-12-29 23:01:10 +08:00
|
|
|
af.f_av_value = bv_alias;
|
2000-06-17 13:01:50 +08:00
|
|
|
af.f_next = xf.f_or;
|
|
|
|
xf.f_or = ⁡
|
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
2000-06-17 13:01:50 +08:00
|
|
|
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 );
|
|
|
|
}
|