1999-09-09 03:06:24 +08:00
|
|
|
/* $OpenLDAP$ */
|
1998-08-09 08:43:13 +08:00
|
|
|
/*
|
2000-05-13 10:47:56 +08:00
|
|
|
* Copyright 1998-2000 The OpenLDAP Foundation, All Rights Reserved.
|
2000-02-07 05:09:44 +08:00
|
|
|
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
|
|
|
|
*/
|
|
|
|
/* Portions
|
1998-08-09 08:43:13 +08:00
|
|
|
* Copyright (c) 1995 Regents of the University of Michigan.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms are permitted
|
|
|
|
* provided that this notice is preserved and that due credit is given
|
|
|
|
* to the University of Michigan at Ann Arbor. The name of the University
|
|
|
|
* may not be used to endorse or promote products derived from this
|
|
|
|
* software without specific prior written permission. This software
|
|
|
|
* is provided ``as is'' without express or implied warranty.
|
|
|
|
*/
|
|
|
|
|
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>
|
|
|
|
|
1999-10-28 15:13:33 +08:00
|
|
|
#include "ldap_pvt.h"
|
Protoized, moved extern definitions to .h files, fixed related bugs.
Most function and variable definitions are now preceded by its extern
definition, for error checking. Retyped a number of functions, usually
to return void. Fixed a number of printf format errors.
API changes (in ldap/include):
Added avl_dup_ok, avl_prefixapply, removed ber_fatten (probably typo
for ber_flatten), retyped ldap_sort_strcasecmp, grew lutil.h.
A number of `extern' declarations are left (some added by protoize), to
be cleaned away later. Mostly strdup(), strcasecmp(), mktemp(), optind,
optarg, errno.
1998-11-16 06:40:11 +08:00
|
|
|
#include "slap.h"
|
1998-08-09 08:43:13 +08:00
|
|
|
|
1999-07-02 05:20:45 +08:00
|
|
|
int
|
Protoized, moved extern definitions to .h files, fixed related bugs.
Most function and variable definitions are now preceded by its extern
definition, for error checking. Retyped a number of functions, usually
to return void. Fixed a number of printf format errors.
API changes (in ldap/include):
Added avl_dup_ok, avl_prefixapply, removed ber_fatten (probably typo
for ber_flatten), retyped ldap_sort_strcasecmp, grew lutil.h.
A number of `extern' declarations are left (some added by protoize), to
be cleaned away later. Mostly strdup(), strcasecmp(), mktemp(), optind,
optarg, errno.
1998-11-16 06:40:11 +08:00
|
|
|
do_search(
|
2001-01-18 00:35:53 +08:00
|
|
|
Connection *conn, /* where to send results */
|
Protoized, moved extern definitions to .h files, fixed related bugs.
Most function and variable definitions are now preceded by its extern
definition, for error checking. Retyped a number of functions, usually
to return void. Fixed a number of printf format errors.
API changes (in ldap/include):
Added avl_dup_ok, avl_prefixapply, removed ber_fatten (probably typo
for ber_flatten), retyped ldap_sort_strcasecmp, grew lutil.h.
A number of `extern' declarations are left (some added by protoize), to
be cleaned away later. Mostly strdup(), strcasecmp(), mktemp(), optind,
optarg, errno.
1998-11-16 06:40:11 +08:00
|
|
|
Operation *op /* info about the op to which we're responding */
|
2000-06-16 09:19:30 +08:00
|
|
|
) {
|
2000-03-01 07:48:01 +08:00
|
|
|
int i;
|
1999-06-19 07:53:05 +08:00
|
|
|
ber_int_t scope, deref, attrsonly;
|
|
|
|
ber_int_t sizelimit, timelimit;
|
1999-09-19 07:40:03 +08:00
|
|
|
char *base = NULL, *nbase = NULL, *fstr = NULL;
|
1999-01-09 05:48:09 +08:00
|
|
|
Filter *filter = NULL;
|
|
|
|
char **attrs = NULL;
|
1998-08-09 08:43:13 +08:00
|
|
|
Backend *be;
|
1999-07-02 05:20:45 +08:00
|
|
|
int rc;
|
2000-05-22 11:46:57 +08:00
|
|
|
const char *text;
|
2000-10-21 11:29:02 +08:00
|
|
|
int manageDSAit;
|
1998-08-09 08:43:13 +08:00
|
|
|
|
2001-01-16 03:17:29 +08:00
|
|
|
#ifdef NEW_LOGGING
|
2001-01-18 00:35:53 +08:00
|
|
|
LDAP_LOG(( "operation", LDAP_LEVEL_ENTRY,
|
|
|
|
"do_search: conn %d\n", conn->c_connid ));
|
2001-01-16 03:17:29 +08:00
|
|
|
#else
|
1998-08-09 08:43:13 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE, "do_search\n", 0, 0, 0 );
|
2001-01-16 03:17:29 +08:00
|
|
|
#endif
|
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
/*
|
|
|
|
* Parse the search request. It looks like this:
|
|
|
|
*
|
|
|
|
* SearchRequest := [APPLICATION 3] SEQUENCE {
|
|
|
|
* baseObject DistinguishedName,
|
|
|
|
* scope ENUMERATED {
|
|
|
|
* baseObject (0),
|
|
|
|
* singleLevel (1),
|
|
|
|
* wholeSubtree (2)
|
|
|
|
* },
|
|
|
|
* derefAliases ENUMERATED {
|
|
|
|
* neverDerefaliases (0),
|
|
|
|
* derefInSearching (1),
|
|
|
|
* derefFindingBaseObj (2),
|
|
|
|
* alwaysDerefAliases (3)
|
|
|
|
* },
|
|
|
|
* sizelimit INTEGER (0 .. 65535),
|
|
|
|
* timelimit INTEGER (0 .. 65535),
|
|
|
|
* attrsOnly BOOLEAN,
|
|
|
|
* filter Filter,
|
|
|
|
* attributes SEQUENCE OF AttributeType
|
|
|
|
* }
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* baseObject, scope, derefAliases, sizelimit, timelimit, attrsOnly */
|
2000-03-01 07:48:01 +08:00
|
|
|
if ( ber_scanf( op->o_ber, "{aiiiib" /*}*/,
|
1999-07-02 05:20:45 +08:00
|
|
|
&base, &scope, &deref, &sizelimit,
|
1998-08-09 08:43:13 +08:00
|
|
|
&timelimit, &attrsonly ) == LBER_ERROR ) {
|
1999-07-08 02:51:39 +08:00
|
|
|
send_ldap_disconnect( conn, op,
|
|
|
|
LDAP_PROTOCOL_ERROR, "decoding error" );
|
2000-03-01 07:48:01 +08:00
|
|
|
rc = SLAPD_DISCONNECT;
|
1999-01-09 05:48:09 +08:00
|
|
|
goto return_results;
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
1999-07-02 05:20:45 +08:00
|
|
|
|
1999-07-16 10:45:46 +08:00
|
|
|
switch( scope ) {
|
|
|
|
case LDAP_SCOPE_BASE:
|
|
|
|
case LDAP_SCOPE_ONELEVEL:
|
|
|
|
case LDAP_SCOPE_SUBTREE:
|
|
|
|
break;
|
|
|
|
default:
|
2000-03-01 07:48:01 +08:00
|
|
|
send_ldap_result( conn, op, rc = LDAP_PROTOCOL_ERROR,
|
1999-07-16 10:45:46 +08:00
|
|
|
NULL, "invalid scope", NULL, NULL );
|
|
|
|
goto return_results;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch( deref ) {
|
|
|
|
case LDAP_DEREF_NEVER:
|
|
|
|
case LDAP_DEREF_FINDING:
|
|
|
|
case LDAP_DEREF_SEARCHING:
|
|
|
|
case LDAP_DEREF_ALWAYS:
|
|
|
|
break;
|
|
|
|
default:
|
2000-03-01 07:48:01 +08:00
|
|
|
send_ldap_result( conn, op, rc = LDAP_PROTOCOL_ERROR,
|
1999-07-16 10:45:46 +08:00
|
|
|
NULL, "invalid deref", NULL, NULL );
|
1999-01-09 05:48:09 +08:00
|
|
|
goto return_results;
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
1999-01-19 13:10:50 +08:00
|
|
|
|
1999-09-19 09:29:45 +08:00
|
|
|
nbase = ch_strdup( base );
|
|
|
|
|
1999-09-24 09:46:37 +08:00
|
|
|
if( dn_normalize( nbase ) == NULL ) {
|
2000-03-01 07:48:01 +08:00
|
|
|
send_ldap_result( conn, op, rc = LDAP_INVALID_DN_SYNTAX,
|
1999-07-23 01:14:42 +08:00
|
|
|
NULL, "invalid DN", NULL, NULL );
|
|
|
|
goto return_results;
|
|
|
|
}
|
1998-08-09 08:43:13 +08:00
|
|
|
|
2001-01-16 03:17:29 +08:00
|
|
|
#ifdef NEW_LOGGING
|
2001-01-18 00:35:53 +08:00
|
|
|
LDAP_LOG(( "operation", LDAP_LEVEL_ARGS,
|
|
|
|
"do_search \"%s\" %d %d %d %d %d\n", base, scope,
|
|
|
|
deref, sizelimit, timelimit, attrsonly ));
|
2001-01-16 03:17:29 +08:00
|
|
|
#else
|
1998-08-09 08:43:13 +08:00
|
|
|
Debug( LDAP_DEBUG_ARGS, "SRCH \"%s\" %d %d", base, scope, deref );
|
|
|
|
Debug( LDAP_DEBUG_ARGS, " %d %d %d\n", sizelimit, timelimit,
|
|
|
|
attrsonly);
|
2001-01-16 03:17:29 +08:00
|
|
|
#endif
|
1998-08-09 08:43:13 +08:00
|
|
|
|
|
|
|
/* filter - returns a "normalized" version */
|
2000-05-24 08:13:27 +08:00
|
|
|
rc = get_filter( conn, op->o_ber, &filter, &fstr, &text );
|
|
|
|
if( rc != LDAP_SUCCESS ) {
|
2000-03-01 07:48:01 +08:00
|
|
|
if( rc == SLAPD_DISCONNECT ) {
|
1999-07-08 02:51:39 +08:00
|
|
|
send_ldap_disconnect( conn, op,
|
2000-03-02 06:59:34 +08:00
|
|
|
LDAP_PROTOCOL_ERROR, text );
|
1999-07-08 02:51:39 +08:00
|
|
|
} else {
|
2000-03-01 07:48:01 +08:00
|
|
|
send_ldap_result( conn, op, rc,
|
2000-03-02 06:59:34 +08:00
|
|
|
NULL, text, NULL, NULL );
|
1999-07-08 02:51:39 +08:00
|
|
|
}
|
1999-01-09 05:48:09 +08:00
|
|
|
goto return_results;
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
1999-07-08 02:51:39 +08:00
|
|
|
|
2001-01-16 03:17:29 +08:00
|
|
|
#ifdef NEW_LOGGING
|
2001-01-18 00:35:53 +08:00
|
|
|
LDAP_LOG(( "operation", LDAP_LEVEL_ARGS,
|
|
|
|
"do_search: conn %d filter: %s\n", conn->c_connid, fstr ));
|
2001-01-16 03:17:29 +08:00
|
|
|
#else
|
1998-08-09 08:43:13 +08:00
|
|
|
Debug( LDAP_DEBUG_ARGS, " filter: %s\n", fstr, 0, 0 );
|
2001-01-16 03:17:29 +08:00
|
|
|
#endif
|
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
|
|
|
|
/* attributes */
|
1999-06-19 07:53:05 +08:00
|
|
|
if ( ber_scanf( op->o_ber, /*{*/ "{v}}", &attrs ) == LBER_ERROR ) {
|
1999-07-08 02:51:39 +08:00
|
|
|
send_ldap_disconnect( conn, op,
|
2000-03-01 07:48:01 +08:00
|
|
|
LDAP_PROTOCOL_ERROR, "decoding attrs error" );
|
|
|
|
rc = SLAPD_DISCONNECT;
|
1999-01-09 05:48:09 +08:00
|
|
|
goto return_results;
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
1999-01-09 05:48:09 +08:00
|
|
|
|
1999-07-02 05:20:45 +08:00
|
|
|
if( (rc = get_ctrls( conn, op, 1 )) != LDAP_SUCCESS ) {
|
2001-01-16 03:17:29 +08:00
|
|
|
#ifdef NEW_LOGGING
|
2001-01-18 00:35:53 +08:00
|
|
|
LDAP_LOG(( "operation", LDAP_LEVEL_INFO,
|
|
|
|
"do_search: conn %d get_ctrls failed (%d)\n",
|
|
|
|
conn->c_connid, rc ));
|
2001-01-16 03:17:29 +08:00
|
|
|
#else
|
1999-07-01 06:43:27 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY, "do_search: get_ctrls failed\n", 0, 0, 0 );
|
2001-01-16 03:17:29 +08:00
|
|
|
#endif
|
|
|
|
|
1999-07-01 06:43:27 +08:00
|
|
|
goto return_results;
|
|
|
|
}
|
|
|
|
|
1999-07-02 05:20:45 +08:00
|
|
|
rc = 0;
|
|
|
|
|
2001-01-16 03:17:29 +08:00
|
|
|
#ifdef NEW_LOGGING
|
2001-01-18 00:35:53 +08:00
|
|
|
LDAP_LOG(( "operation", LDAP_LEVEL_ARGS,
|
|
|
|
"do_search: conn %d attrs:", conn->c_connid ));
|
2001-01-16 03:17:29 +08:00
|
|
|
#else
|
1998-08-09 08:43:13 +08:00
|
|
|
Debug( LDAP_DEBUG_ARGS, " attrs:", 0, 0, 0 );
|
2001-01-16 03:17:29 +08:00
|
|
|
#endif
|
|
|
|
|
1999-07-01 06:43:27 +08:00
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
if ( attrs != NULL ) {
|
|
|
|
for ( i = 0; attrs[i] != NULL; i++ ) {
|
2001-01-16 03:17:29 +08:00
|
|
|
#ifdef NEW_LOGGING
|
2001-01-18 00:35:53 +08:00
|
|
|
LDAP_LOG(( "operation", LDAP_LEVEL_ARGS,
|
|
|
|
"do_search: %s", attrs[i] ));
|
2001-01-16 03:17:29 +08:00
|
|
|
#else
|
1998-08-09 08:43:13 +08:00
|
|
|
Debug( LDAP_DEBUG_ARGS, " %s", attrs[i], 0, 0 );
|
2001-01-16 03:17:29 +08:00
|
|
|
#endif
|
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
|
|
|
}
|
1999-07-01 06:43:27 +08:00
|
|
|
|
2001-01-16 03:17:29 +08:00
|
|
|
#ifdef NEW_LOGGING
|
2001-01-18 00:35:53 +08:00
|
|
|
LDAP_LOG(( "operation", LDAP_LEVEL_ARGS, "\n" ));
|
2001-01-16 03:17:29 +08:00
|
|
|
#else
|
1998-08-09 08:43:13 +08:00
|
|
|
Debug( LDAP_DEBUG_ARGS, "\n", 0, 0, 0 );
|
2001-01-16 03:17:29 +08:00
|
|
|
#endif
|
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
|
|
|
|
Statslog( LDAP_DEBUG_STATS,
|
1999-08-07 13:36:48 +08:00
|
|
|
"conn=%ld op=%d SRCH base=\"%s\" scope=%d filter=\"%s\"\n",
|
1999-07-17 06:24:32 +08:00
|
|
|
op->o_connid, op->o_opid, base, scope, fstr );
|
1998-08-09 08:43:13 +08:00
|
|
|
|
2001-02-03 10:21:37 +08:00
|
|
|
manageDSAit = get_manageDSAit( op );
|
|
|
|
|
|
|
|
if( scope != LDAP_SCOPE_BASE && nbase[0] == '\0' &&
|
|
|
|
default_search_nbase != NULL )
|
|
|
|
{
|
|
|
|
ch_free( base );
|
|
|
|
ch_free( nbase );
|
|
|
|
base = ch_strdup( default_search_base );
|
|
|
|
nbase = ch_strdup( default_search_nbase );
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Select backend */
|
|
|
|
be = select_backend( nbase, manageDSAit );
|
|
|
|
|
|
|
|
/* check restrictions */
|
|
|
|
rc = backend_check_restrictions( be, conn, op, NULL, &text ) ;
|
|
|
|
if( rc != LDAP_SUCCESS ) {
|
|
|
|
send_ldap_result( conn, op, rc,
|
|
|
|
NULL, text, NULL, NULL );
|
|
|
|
goto return_results;
|
|
|
|
}
|
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
if ( scope == LDAP_SCOPE_BASE ) {
|
2000-05-17 00:22:52 +08:00
|
|
|
Entry *entry = NULL;
|
|
|
|
|
|
|
|
if ( strcasecmp( nbase, LDAP_ROOT_DSE ) == 0 ) {
|
2000-07-14 06:54:38 +08:00
|
|
|
rc = root_dse_info( conn, &entry, &text );
|
2000-05-17 00:22:52 +08:00
|
|
|
}
|
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
#if defined( SLAPD_MONITOR_DN )
|
2000-05-17 00:22:52 +08:00
|
|
|
else if ( strcasecmp( nbase, SLAPD_MONITOR_DN ) == 0 ) {
|
|
|
|
rc = monitor_info( &entry, &text );
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
|
|
|
#endif
|
1999-07-16 10:45:46 +08:00
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
#if defined( SLAPD_CONFIG_DN )
|
2000-05-17 00:22:52 +08:00
|
|
|
else if ( strcasecmp( nbase, SLAPD_CONFIG_DN ) == 0 ) {
|
|
|
|
rc = config_info( &entry, &text );
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
|
|
|
#endif
|
1999-07-16 10:45:46 +08:00
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
#if defined( SLAPD_SCHEMA_DN )
|
2000-05-17 00:22:52 +08:00
|
|
|
else if ( strcasecmp( nbase, SLAPD_SCHEMA_DN ) == 0 ) {
|
|
|
|
rc= schema_info( &entry, &text );
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2000-05-17 00:22:52 +08:00
|
|
|
if( rc != LDAP_SUCCESS ) {
|
|
|
|
send_ldap_result( conn, op, rc,
|
|
|
|
NULL, text, NULL, NULL );
|
|
|
|
goto return_results;
|
|
|
|
|
|
|
|
} else if ( entry != NULL ) {
|
2000-05-17 01:00:42 +08:00
|
|
|
rc = test_filter( NULL, conn, op,
|
|
|
|
entry, filter );
|
|
|
|
|
|
|
|
if( rc == LDAP_COMPARE_TRUE ) {
|
|
|
|
send_search_entry( &backends[0], conn, op,
|
|
|
|
entry, attrs, attrsonly, NULL );
|
|
|
|
}
|
|
|
|
entry_free( entry );
|
|
|
|
|
2000-05-17 00:22:52 +08:00
|
|
|
send_ldap_result( conn, op, LDAP_SUCCESS,
|
|
|
|
NULL, NULL, NULL, NULL );
|
2000-05-17 01:00:42 +08:00
|
|
|
|
1999-07-16 10:45:46 +08:00
|
|
|
goto return_results;
|
|
|
|
}
|
1999-04-20 04:02:24 +08:00
|
|
|
}
|
|
|
|
|
2001-02-03 10:21:37 +08:00
|
|
|
if ( be == NULL ) {
|
|
|
|
/* no backend, return a referral (or noSuchObject) */
|
1999-07-16 10:45:46 +08:00
|
|
|
send_ldap_result( conn, op, rc = LDAP_REFERRAL,
|
|
|
|
NULL, NULL, default_referral, NULL );
|
1998-08-09 08:43:13 +08:00
|
|
|
|
1999-01-09 05:48:09 +08:00
|
|
|
goto return_results;
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
|
|
|
|
2000-06-16 09:19:30 +08:00
|
|
|
/* check for referrals */
|
2000-06-16 12:07:57 +08:00
|
|
|
rc = backend_check_referrals( be, conn, op, base, nbase );
|
2000-06-16 09:19:30 +08:00
|
|
|
if ( rc != LDAP_SUCCESS ) {
|
|
|
|
goto return_results;
|
|
|
|
}
|
|
|
|
|
1999-07-28 02:43:30 +08:00
|
|
|
/* deref the base if needed */
|
1999-09-19 07:40:03 +08:00
|
|
|
nbase = suffix_alias( be, nbase );
|
1999-07-28 02:43:30 +08:00
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
/* actually do the search and send the result(s) */
|
1999-03-04 02:49:59 +08:00
|
|
|
if ( be->be_search ) {
|
1999-09-19 07:40:03 +08:00
|
|
|
(*be->be_search)( be, conn, op, base, nbase, scope, deref, sizelimit,
|
1998-08-09 08:43:13 +08:00
|
|
|
timelimit, filter, fstr, attrs, attrsonly );
|
|
|
|
} else {
|
1999-07-16 10:45:46 +08:00
|
|
|
send_ldap_result( conn, op, rc = LDAP_UNWILLING_TO_PERFORM,
|
2000-05-22 06:46:51 +08:00
|
|
|
NULL, "operation not supported within namingContext", NULL, NULL );
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
|
|
|
|
1999-01-09 05:48:09 +08:00
|
|
|
return_results:;
|
|
|
|
if( base != NULL) free( base );
|
1999-09-19 07:40:03 +08:00
|
|
|
if( nbase != NULL) free( nbase );
|
1999-01-09 05:48:09 +08:00
|
|
|
if( fstr != NULL) free( fstr );
|
|
|
|
if( filter != NULL) filter_free( filter );
|
1998-08-09 08:43:13 +08:00
|
|
|
if ( attrs != NULL ) {
|
|
|
|
charray_free( attrs );
|
|
|
|
}
|
1999-07-02 05:20:45 +08:00
|
|
|
|
|
|
|
return rc;
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|