2003-11-27 14:35:14 +08:00
|
|
|
/* $OpenLDAP$ */
|
|
|
|
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
|
|
|
|
*
|
2004-01-02 03:15:16 +08:00
|
|
|
* Copyright 1999-2004 The OpenLDAP Foundation.
|
2003-12-09 01:41:40 +08:00
|
|
|
* Portions Copyright 2001-2003 Pierangelo Masarati.
|
|
|
|
* Portions Copyright 1999-2003 Howard Chu.
|
2003-11-27 14:35:14 +08:00
|
|
|
* All rights reserved.
|
2001-05-12 08:51:28 +08:00
|
|
|
*
|
2003-11-27 14:35:14 +08:00
|
|
|
* 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>.
|
|
|
|
*/
|
|
|
|
/* ACKNOWLEDGEMENTS:
|
|
|
|
* This work was initially developed by the Howard Chu for inclusion
|
|
|
|
* in OpenLDAP Software and subsequently enhanced by Pierangelo
|
|
|
|
* Masarati.
|
|
|
|
*/
|
2001-05-12 08:51:28 +08:00
|
|
|
|
|
|
|
#include "portable.h"
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include <ac/socket.h>
|
|
|
|
#include <ac/string.h>
|
|
|
|
|
|
|
|
|
|
|
|
#define AVL_INTERNAL
|
|
|
|
#include "slap.h"
|
|
|
|
#include "../back-ldap/back-ldap.h"
|
|
|
|
#include "back-meta.h"
|
|
|
|
|
2003-02-06 06:04:20 +08:00
|
|
|
static LDAP_REBIND_PROC meta_back_rebind;
|
|
|
|
|
2002-08-29 22:39:31 +08:00
|
|
|
static int
|
|
|
|
meta_back_do_single_bind(
|
|
|
|
struct metaconn *lc,
|
|
|
|
Operation *op,
|
2003-04-06 00:53:57 +08:00
|
|
|
SlapReply *rs,
|
2002-08-29 22:39:31 +08:00
|
|
|
int candidate
|
|
|
|
);
|
|
|
|
|
2001-05-12 08:51:28 +08:00
|
|
|
int
|
2003-04-04 05:35:54 +08:00
|
|
|
meta_back_bind( Operation *op, SlapReply *rs )
|
2001-05-12 08:51:28 +08:00
|
|
|
{
|
2003-04-04 05:35:54 +08:00
|
|
|
struct metainfo *li = ( struct metainfo * )op->o_bd->be_private;
|
2001-05-12 08:51:28 +08:00
|
|
|
struct metaconn *lc;
|
|
|
|
|
2001-05-20 01:02:39 +08:00
|
|
|
int rc = -1, i, gotit = 0, ndnlen, isroot = 0;
|
|
|
|
int op_type = META_OP_ALLOW_MULTIPLE;
|
2003-04-06 00:53:57 +08:00
|
|
|
|
|
|
|
rs->sr_err = LDAP_SUCCESS;
|
2001-05-20 01:02:39 +08:00
|
|
|
|
2001-05-12 08:51:28 +08:00
|
|
|
#ifdef NEW_LOGGING
|
2003-04-04 05:35:54 +08:00
|
|
|
LDAP_LOG( BACK_META, ENTRY, "meta_back_bind: dn: %s.\n",
|
|
|
|
op->o_req_dn.bv_val, 0, 0 );
|
2001-05-12 08:51:28 +08:00
|
|
|
#else /* !NEW_LOGGING */
|
2003-04-04 05:35:54 +08:00
|
|
|
Debug( LDAP_DEBUG_ARGS, "meta_back_bind: dn: %s.\n%s%s",
|
|
|
|
op->o_req_dn.bv_val, "", "" );
|
2001-05-12 08:51:28 +08:00
|
|
|
#endif /* !NEW_LOGGING */
|
|
|
|
|
2003-04-04 05:35:54 +08:00
|
|
|
if ( op->oq_bind.rb_method == LDAP_AUTH_SIMPLE && be_isroot_pw( op ) ) {
|
2001-05-20 01:02:39 +08:00
|
|
|
isroot = 1;
|
2003-04-04 05:35:54 +08:00
|
|
|
ber_dupbv( &op->oq_bind.rb_edn, be_root_dn( op->o_bd ) );
|
2001-05-20 01:02:39 +08:00
|
|
|
op_type = META_OP_REQUIRE_ALL;
|
|
|
|
}
|
2003-04-04 08:43:40 +08:00
|
|
|
lc = meta_back_getconn( op, rs, op_type,
|
2003-04-04 05:35:54 +08:00
|
|
|
&op->o_req_ndn, NULL );
|
2001-05-12 08:51:28 +08:00
|
|
|
if ( !lc ) {
|
|
|
|
#ifdef NEW_LOGGING
|
2002-07-12 04:33:24 +08:00
|
|
|
LDAP_LOG( BACK_META, NOTICE,
|
2003-06-04 20:34:42 +08:00
|
|
|
"meta_back_bind: no target for dn %s.\n",
|
|
|
|
op->o_req_dn.bv_val, 0, 0 );
|
2001-05-12 08:51:28 +08:00
|
|
|
#else /* !NEW_LOGGING */
|
|
|
|
Debug( LDAP_DEBUG_ANY,
|
|
|
|
"meta_back_bind: no target for dn %s.\n%s%s",
|
2003-04-04 05:35:54 +08:00
|
|
|
op->o_req_dn.bv_val, "", "");
|
2001-05-12 08:51:28 +08:00
|
|
|
#endif /* !NEW_LOGGING */
|
2003-04-04 05:35:54 +08:00
|
|
|
|
|
|
|
send_ldap_result( op, rs );
|
2001-05-12 08:51:28 +08:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Each target is scanned ...
|
|
|
|
*/
|
2001-05-20 01:02:39 +08:00
|
|
|
lc->bound_target = META_BOUND_NONE;
|
2003-04-04 05:35:54 +08:00
|
|
|
ndnlen = op->o_req_ndn.bv_len;
|
2001-05-12 08:51:28 +08:00
|
|
|
for ( i = 0; i < li->ntargets; i++ ) {
|
2003-04-04 08:43:40 +08:00
|
|
|
int lerr;
|
|
|
|
struct berval orig_dn = op->o_req_dn;
|
|
|
|
struct berval orig_ndn = op->o_req_ndn;
|
|
|
|
struct berval orig_cred = op->oq_bind.rb_cred;
|
|
|
|
int orig_method = op->oq_bind.rb_method;
|
|
|
|
|
2001-05-12 08:51:28 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Skip non-candidates
|
|
|
|
*/
|
2002-08-10 01:15:10 +08:00
|
|
|
if ( lc->conns[ i ].candidate != META_CANDIDATE ) {
|
2001-05-12 08:51:28 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( gotit == 0 ) {
|
|
|
|
gotit = 1;
|
|
|
|
} else {
|
|
|
|
/*
|
|
|
|
* A bind operation is expected to have
|
|
|
|
* ONE CANDIDATE ONLY!
|
|
|
|
*/
|
|
|
|
#ifdef NEW_LOGGING
|
2002-07-12 04:33:24 +08:00
|
|
|
LDAP_LOG( BACK_META, WARNING,
|
2001-05-14 07:44:22 +08:00
|
|
|
"==>meta_back_bind: more than one"
|
|
|
|
" candidate is attempting to bind"
|
2002-07-12 04:33:24 +08:00
|
|
|
" ...\n" , 0, 0, 0 );
|
2001-05-12 08:51:28 +08:00
|
|
|
#else /* !NEW_LOGGING */
|
|
|
|
Debug( LDAP_DEBUG_ANY,
|
2001-05-14 07:44:22 +08:00
|
|
|
"==>meta_back_bind: more than one"
|
|
|
|
" candidate is attempting to bind"
|
|
|
|
" ...\n%s%s%s",
|
|
|
|
"", "", "" );
|
2001-05-12 08:51:28 +08:00
|
|
|
#endif /* !NEW_LOGGING */
|
|
|
|
}
|
|
|
|
|
2001-12-29 12:48:00 +08:00
|
|
|
if ( isroot && li->targets[ i ]->pseudorootdn.bv_val != NULL ) {
|
2003-04-04 08:43:40 +08:00
|
|
|
op->o_req_dn = li->targets[ i ]->pseudorootdn;
|
|
|
|
op->o_req_ndn = li->targets[ i ]->pseudorootdn;
|
|
|
|
op->oq_bind.rb_cred = li->targets[ i ]->pseudorootpw;
|
|
|
|
op->oq_bind.rb_method = LDAP_AUTH_SIMPLE;
|
2001-05-20 01:02:39 +08:00
|
|
|
}
|
|
|
|
|
2003-04-06 00:53:57 +08:00
|
|
|
lerr = meta_back_do_single_bind( lc, op, rs, i );
|
2001-05-12 08:51:28 +08:00
|
|
|
if ( lerr != LDAP_SUCCESS ) {
|
2003-04-06 00:53:57 +08:00
|
|
|
rs->sr_err = lerr;
|
2002-08-10 01:15:10 +08:00
|
|
|
( void )meta_clear_one_candidate( &lc->conns[ i ], 1 );
|
2001-05-12 08:51:28 +08:00
|
|
|
} else {
|
|
|
|
rc = LDAP_SUCCESS;
|
|
|
|
}
|
2003-04-04 08:43:40 +08:00
|
|
|
|
|
|
|
op->o_req_dn = orig_dn;
|
|
|
|
op->o_req_ndn = orig_ndn;
|
|
|
|
op->oq_bind.rb_cred = orig_cred;
|
|
|
|
op->oq_bind.rb_method = orig_method;
|
2001-05-12 08:51:28 +08:00
|
|
|
}
|
|
|
|
|
2001-05-20 01:02:39 +08:00
|
|
|
if ( isroot ) {
|
|
|
|
lc->bound_target = META_BOUND_ALL;
|
|
|
|
}
|
|
|
|
|
2001-05-17 07:06:15 +08:00
|
|
|
/*
|
|
|
|
* rc is LDAP_SUCCESS if at least one bind succeeded,
|
|
|
|
* err is the last error that occurred during a bind;
|
|
|
|
* if at least (and at most?) one bind succeedes, fine.
|
|
|
|
*/
|
2003-04-06 00:53:57 +08:00
|
|
|
if ( rc != LDAP_SUCCESS /* && rs->sr_err != LDAP_SUCCESS */ ) {
|
2001-05-12 08:51:28 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* deal with bind failure ...
|
|
|
|
*/
|
2002-01-07 18:15:05 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* no target was found within the naming context,
|
|
|
|
* so bind must fail with invalid credentials
|
|
|
|
*/
|
2003-04-06 00:53:57 +08:00
|
|
|
if ( rs->sr_err == LDAP_SUCCESS && gotit == 0 ) {
|
|
|
|
rs->sr_err = LDAP_INVALID_CREDENTIALS;
|
2002-01-07 18:15:05 +08:00
|
|
|
}
|
|
|
|
|
2004-04-06 01:32:59 +08:00
|
|
|
rs->sr_err = slap_map_api2result( rs );
|
2003-04-04 05:35:54 +08:00
|
|
|
send_ldap_result( op, rs );
|
2001-05-20 01:02:39 +08:00
|
|
|
return -1;
|
2001-05-12 08:51:28 +08:00
|
|
|
}
|
|
|
|
|
2001-05-17 07:06:15 +08:00
|
|
|
return 0;
|
2001-05-12 08:51:28 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* meta_back_do_single_bind
|
|
|
|
*
|
|
|
|
* attempts to perform a bind with creds
|
|
|
|
*/
|
2002-08-29 22:39:31 +08:00
|
|
|
static int
|
2001-05-12 08:51:28 +08:00
|
|
|
meta_back_do_single_bind(
|
|
|
|
struct metaconn *lc,
|
2002-08-29 22:39:31 +08:00
|
|
|
Operation *op,
|
2003-04-06 00:53:57 +08:00
|
|
|
SlapReply *rs,
|
2001-05-12 08:51:28 +08:00
|
|
|
int candidate
|
|
|
|
)
|
|
|
|
{
|
2003-04-04 08:43:40 +08:00
|
|
|
struct metainfo *li = ( struct metainfo * )op->o_bd->be_private;
|
2004-04-07 12:11:43 +08:00
|
|
|
struct berval mdn = BER_BVNULL;
|
2003-03-11 20:24:14 +08:00
|
|
|
ber_int_t msgid;
|
2003-04-08 01:04:14 +08:00
|
|
|
dncookie dc;
|
2003-04-18 18:02:00 +08:00
|
|
|
struct metasingleconn *lsc = &lc->conns[ candidate ];
|
2004-02-28 23:20:56 +08:00
|
|
|
LDAPMessage *res;
|
2001-05-12 08:51:28 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Rewrite the bind dn if needed
|
|
|
|
*/
|
2003-04-08 01:04:14 +08:00
|
|
|
dc.rwmap = &li->targets[ candidate ]->rwmap;
|
|
|
|
dc.conn = op->o_conn;
|
|
|
|
dc.rs = rs;
|
2004-03-11 05:11:14 +08:00
|
|
|
dc.ctx = "bindDN";
|
2001-05-12 08:51:28 +08:00
|
|
|
|
2003-04-08 01:04:14 +08:00
|
|
|
if ( ldap_back_dn_massage( &dc, &op->o_req_dn, &mdn ) ) {
|
|
|
|
send_ldap_result( op, rs );
|
|
|
|
return -1;
|
2001-05-12 08:51:28 +08:00
|
|
|
}
|
|
|
|
|
2002-08-29 22:39:31 +08:00
|
|
|
if ( op->o_ctrls ) {
|
2003-04-18 18:02:00 +08:00
|
|
|
rs->sr_err = ldap_set_option( lsc->ld,
|
2002-08-29 22:39:31 +08:00
|
|
|
LDAP_OPT_SERVER_CONTROLS, op->o_ctrls );
|
2003-04-06 00:53:57 +08:00
|
|
|
if ( rs->sr_err != LDAP_SUCCESS ) {
|
2004-04-06 01:32:59 +08:00
|
|
|
rs->sr_err = slap_map_api2result( rs );
|
2002-08-29 23:07:18 +08:00
|
|
|
goto return_results;
|
|
|
|
}
|
2002-08-29 22:39:31 +08:00
|
|
|
}
|
2004-02-28 23:20:56 +08:00
|
|
|
|
|
|
|
/* FIXME: this fixes the bind problem right now; we need
|
|
|
|
* to use the asynchronous version to get the "matched"
|
|
|
|
* and more in case of failure ... */
|
|
|
|
rs->sr_err = ldap_sasl_bind_s(lsc->ld, mdn.bv_val,
|
2003-04-04 08:43:40 +08:00
|
|
|
LDAP_SASL_SIMPLE, &op->oq_bind.rb_cred,
|
2004-02-28 23:20:56 +08:00
|
|
|
op->o_ctrls, NULL, NULL);
|
2003-04-06 00:53:57 +08:00
|
|
|
if ( rs->sr_err != LDAP_SUCCESS ) {
|
2004-04-06 01:32:59 +08:00
|
|
|
rs->sr_err = slap_map_api2result( rs );
|
2004-02-28 23:20:56 +08:00
|
|
|
goto return_results;
|
|
|
|
}
|
2003-04-04 08:43:40 +08:00
|
|
|
|
2004-02-28 23:20:56 +08:00
|
|
|
/*
|
|
|
|
* FIXME: handle response!!!
|
|
|
|
*/
|
|
|
|
if ( lsc->bound_dn.bv_val != NULL ) {
|
|
|
|
ber_memfree( lsc->bound_dn.bv_val );
|
|
|
|
}
|
|
|
|
ber_dupbv( &lsc->bound_dn, &op->o_req_dn );
|
|
|
|
lsc->bound = META_BOUND;
|
|
|
|
lc->bound_target = candidate;
|
|
|
|
|
|
|
|
if ( li->savecred ) {
|
|
|
|
if ( lsc->cred.bv_val ) {
|
|
|
|
memset( lsc->cred.bv_val, 0, lsc->cred.bv_len );
|
|
|
|
ber_memfree( lsc->cred.bv_val );
|
2003-02-06 06:04:20 +08:00
|
|
|
}
|
2004-02-28 23:20:56 +08:00
|
|
|
ber_dupbv( &lsc->cred, &op->oq_bind.rb_cred );
|
|
|
|
ldap_set_rebind_proc( lsc->ld, meta_back_rebind, lsc );
|
|
|
|
}
|
2003-02-06 06:04:20 +08:00
|
|
|
|
2004-02-28 23:20:56 +08:00
|
|
|
if ( li->cache.ttl != META_DNCACHE_DISABLED
|
|
|
|
&& op->o_req_ndn.bv_len != 0 ) {
|
|
|
|
( void )meta_dncache_update_entry( &li->cache,
|
|
|
|
&op->o_req_ndn, candidate );
|
2001-05-12 08:51:28 +08:00
|
|
|
}
|
2002-08-29 23:07:18 +08:00
|
|
|
|
|
|
|
return_results:;
|
2001-05-12 08:51:28 +08:00
|
|
|
|
2003-04-04 08:43:40 +08:00
|
|
|
if ( mdn.bv_val != op->o_req_dn.bv_val ) {
|
2002-01-04 00:29:38 +08:00
|
|
|
free( mdn.bv_val );
|
2001-05-12 08:51:28 +08:00
|
|
|
}
|
|
|
|
|
2003-04-06 00:53:57 +08:00
|
|
|
return rs->sr_err;
|
2001-05-12 08:51:28 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* meta_back_dobind
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
meta_back_dobind( struct metaconn *lc, Operation *op )
|
|
|
|
{
|
2002-08-10 01:15:10 +08:00
|
|
|
struct metasingleconn *lsc;
|
2001-05-12 08:51:28 +08:00
|
|
|
int bound = 0, i;
|
|
|
|
|
2001-05-20 01:02:39 +08:00
|
|
|
/*
|
|
|
|
* all the targets are bound as pseudoroot
|
|
|
|
*/
|
|
|
|
if ( lc->bound_target == META_BOUND_ALL ) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2002-08-10 01:15:10 +08:00
|
|
|
for ( i = 0, lsc = lc->conns; !META_LAST(lsc); ++i, ++lsc ) {
|
2004-03-07 00:47:58 +08:00
|
|
|
int rc;
|
|
|
|
struct berval cred = BER_BVC("");
|
2001-05-12 08:51:28 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Not a candidate or something wrong with this target ...
|
|
|
|
*/
|
2002-08-10 01:15:10 +08:00
|
|
|
if ( lsc->ld == NULL ) {
|
2001-05-12 08:51:28 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2002-08-29 23:07:18 +08:00
|
|
|
/*
|
|
|
|
* If required, set controls
|
|
|
|
*/
|
|
|
|
if ( op->o_ctrls ) {
|
|
|
|
if ( ldap_set_option( lsc->ld, LDAP_OPT_SERVER_CONTROLS,
|
|
|
|
op->o_ctrls ) != LDAP_SUCCESS ) {
|
|
|
|
( void )meta_clear_one_candidate( lsc, 1 );
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-05-12 08:51:28 +08:00
|
|
|
/*
|
|
|
|
* If the target is already bound it is skipped
|
|
|
|
*/
|
2002-08-10 01:15:10 +08:00
|
|
|
if ( lsc->bound == META_BOUND && lc->bound_target == i ) {
|
2001-05-12 08:51:28 +08:00
|
|
|
++bound;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Otherwise an anonymous bind is performed
|
|
|
|
* (note: if the target was already bound, the anonymous
|
|
|
|
* bind clears the previous bind).
|
|
|
|
*/
|
2002-08-10 01:15:10 +08:00
|
|
|
if ( lsc->bound_dn.bv_val ) {
|
2003-04-18 18:02:00 +08:00
|
|
|
ber_memfree( lsc->bound_dn.bv_val );
|
2002-08-10 01:15:10 +08:00
|
|
|
lsc->bound_dn.bv_val = NULL;
|
|
|
|
lsc->bound_dn.bv_len = 0;
|
2002-01-07 18:15:05 +08:00
|
|
|
}
|
2002-08-29 22:39:31 +08:00
|
|
|
|
2003-04-18 18:02:00 +08:00
|
|
|
if ( /* FIXME: need li ... li->savecred && */
|
|
|
|
lsc->cred.bv_val ) {
|
|
|
|
memset( lsc->cred.bv_val, 0, lsc->cred.bv_len );
|
|
|
|
ber_memfree( lsc->cred.bv_val );
|
|
|
|
lsc->cred.bv_val = NULL;
|
|
|
|
lsc->cred.bv_len = 0;
|
|
|
|
}
|
2002-08-29 23:07:18 +08:00
|
|
|
|
2004-03-07 00:47:58 +08:00
|
|
|
rc = ldap_sasl_bind_s(lsc->ld, "", LDAP_SASL_SIMPLE, &cred,
|
|
|
|
op->o_ctrls, NULL, NULL);
|
2001-05-12 08:51:28 +08:00
|
|
|
if ( rc != LDAP_SUCCESS ) {
|
|
|
|
|
2001-05-14 07:44:22 +08:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-12 04:33:24 +08:00
|
|
|
LDAP_LOG( BACK_META, WARNING,
|
2001-05-14 07:44:22 +08:00
|
|
|
"meta_back_dobind: (anonymous)"
|
2003-03-10 15:36:42 +08:00
|
|
|
" bind failed"
|
|
|
|
" with error %d (%s)\n",
|
|
|
|
rc, ldap_err2string( rc ), 0 );
|
2001-05-14 07:44:22 +08:00
|
|
|
#else /* !NEW_LOGGING */
|
2001-05-12 08:51:28 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY,
|
2001-05-17 07:06:15 +08:00
|
|
|
"==>meta_back_dobind: (anonymous)"
|
2003-03-10 15:36:42 +08:00
|
|
|
" bind failed"
|
|
|
|
" with error %d (%s)\n",
|
|
|
|
rc, ldap_err2string( rc ), 0 );
|
2001-05-14 07:44:22 +08:00
|
|
|
#endif /* !NEW_LOGGING */
|
2001-05-12 08:51:28 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* null cred bind should always succeed
|
|
|
|
* as anonymous, so a failure means
|
|
|
|
* the target is no longer candidate possibly
|
|
|
|
* due to technical reasons (remote host down?)
|
|
|
|
* so better clear the handle
|
|
|
|
*/
|
2002-08-10 01:15:10 +08:00
|
|
|
( void )meta_clear_one_candidate( lsc, 1 );
|
2001-05-12 08:51:28 +08:00
|
|
|
continue;
|
|
|
|
} /* else */
|
|
|
|
|
2002-08-10 01:15:10 +08:00
|
|
|
lsc->bound = META_ANONYMOUS;
|
2001-05-12 08:51:28 +08:00
|
|
|
++bound;
|
|
|
|
}
|
|
|
|
|
|
|
|
return( bound > 0 );
|
|
|
|
}
|
|
|
|
|
2001-12-27 20:17:54 +08:00
|
|
|
/*
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
meta_back_is_valid( struct metaconn *lc, int candidate )
|
|
|
|
{
|
2002-08-10 01:15:10 +08:00
|
|
|
struct metasingleconn *lsc;
|
2001-12-27 20:17:54 +08:00
|
|
|
int i;
|
|
|
|
|
|
|
|
assert( lc );
|
|
|
|
|
|
|
|
if ( candidate < 0 ) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2002-08-10 01:15:10 +08:00
|
|
|
for ( i = 0, lsc = lc->conns; !META_LAST(lsc) && i < candidate;
|
2001-12-27 20:17:54 +08:00
|
|
|
++i, ++lsc );
|
|
|
|
|
2002-08-10 01:15:10 +08:00
|
|
|
if ( !META_LAST(lsc) ) {
|
|
|
|
return( lsc->ld != NULL );
|
2001-12-27 20:17:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2003-02-06 06:04:20 +08:00
|
|
|
/*
|
|
|
|
* meta_back_rebind
|
|
|
|
*
|
|
|
|
* This is a callback used for chasing referrals using the same
|
|
|
|
* credentials as the original user on this session.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
meta_back_rebind( LDAP *ld, LDAP_CONST char *url, ber_tag_t request,
|
|
|
|
ber_int_t msgid, void *params )
|
|
|
|
{
|
|
|
|
struct metasingleconn *lc = params;
|
|
|
|
|
2003-03-11 20:24:14 +08:00
|
|
|
return ldap_bind_s( ld, lc->bound_dn.bv_val, lc->cred.bv_val,
|
|
|
|
LDAP_AUTH_SIMPLE );
|
2003-02-06 06:04:20 +08:00
|
|
|
}
|
|
|
|
|
2001-05-12 08:51:28 +08:00
|
|
|
/*
|
|
|
|
* FIXME: error return must be handled in a cleaner way ...
|
|
|
|
*/
|
|
|
|
int
|
2003-04-04 05:35:54 +08:00
|
|
|
meta_back_op_result( struct metaconn *lc, Operation *op, SlapReply *rs )
|
2001-05-12 08:51:28 +08:00
|
|
|
{
|
2001-10-02 00:16:51 +08:00
|
|
|
int i, rerr = LDAP_SUCCESS;
|
2002-08-10 01:15:10 +08:00
|
|
|
struct metasingleconn *lsc;
|
2001-10-02 06:11:37 +08:00
|
|
|
char *rmsg = NULL;
|
|
|
|
char *rmatch = NULL;
|
2004-03-06 23:01:16 +08:00
|
|
|
int free_rmsg = 0, free_rmatch = 0;
|
2001-05-12 08:51:28 +08:00
|
|
|
|
2002-08-10 01:15:10 +08:00
|
|
|
for ( i = 0, lsc = lc->conns; !META_LAST(lsc); ++i, ++lsc ) {
|
2001-10-02 00:16:51 +08:00
|
|
|
char *msg = NULL;
|
|
|
|
char *match = NULL;
|
|
|
|
|
2003-04-06 00:53:57 +08:00
|
|
|
rs->sr_err = LDAP_SUCCESS;
|
|
|
|
|
|
|
|
ldap_get_option( lsc->ld, LDAP_OPT_ERROR_NUMBER, &rs->sr_err );
|
|
|
|
if ( rs->sr_err != LDAP_SUCCESS ) {
|
2001-05-12 08:51:28 +08:00
|
|
|
/*
|
|
|
|
* better check the type of error. In some cases
|
|
|
|
* (search ?) it might be better to return a
|
|
|
|
* success if at least one of the targets gave
|
|
|
|
* positive result ...
|
|
|
|
*/
|
2002-08-10 01:15:10 +08:00
|
|
|
ldap_get_option( lsc->ld,
|
2001-05-12 08:51:28 +08:00
|
|
|
LDAP_OPT_ERROR_STRING, &msg );
|
2002-08-10 01:15:10 +08:00
|
|
|
ldap_get_option( lsc->ld,
|
2001-05-12 08:51:28 +08:00
|
|
|
LDAP_OPT_MATCHED_DN, &match );
|
2004-04-06 01:32:59 +08:00
|
|
|
rs->sr_err = slap_map_api2result( rs );
|
2001-05-12 08:51:28 +08:00
|
|
|
|
2001-05-14 07:44:22 +08:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-12 04:33:24 +08:00
|
|
|
LDAP_LOG( BACK_META, RESULTS,
|
2001-10-02 06:11:37 +08:00
|
|
|
"meta_back_op_result: target"
|
|
|
|
" <%d> sending msg \"%s\""
|
|
|
|
" (matched \"%s\")\n",
|
|
|
|
i, ( msg ? msg : "" ),
|
2002-07-12 04:33:24 +08:00
|
|
|
( match ? match : "" ) );
|
2001-05-14 07:44:22 +08:00
|
|
|
#else /* !NEW_LOGGING */
|
2001-10-02 06:11:37 +08:00
|
|
|
Debug(LDAP_DEBUG_ANY,
|
|
|
|
"==> meta_back_op_result: target"
|
|
|
|
" <%d> sending msg \"%s\""
|
|
|
|
" (matched \"%s\")\n",
|
|
|
|
i, ( msg ? msg : "" ),
|
|
|
|
( match ? match : "" ) );
|
2001-05-14 07:44:22 +08:00
|
|
|
#endif /* !NEW_LOGGING */
|
2001-05-12 08:51:28 +08:00
|
|
|
|
2001-10-02 06:11:37 +08:00
|
|
|
/*
|
|
|
|
* FIXME: need to rewrite "match" (need rwinfo)
|
|
|
|
*/
|
2003-04-06 00:53:57 +08:00
|
|
|
switch ( rs->sr_err ) {
|
2001-10-02 06:11:37 +08:00
|
|
|
default:
|
2003-04-06 00:53:57 +08:00
|
|
|
rerr = rs->sr_err;
|
2004-03-06 23:01:16 +08:00
|
|
|
if ( rmsg ) {
|
|
|
|
ber_memfree( rmsg );
|
|
|
|
}
|
2001-10-02 06:11:37 +08:00
|
|
|
rmsg = msg;
|
2004-03-06 23:01:16 +08:00
|
|
|
free_rmsg = 1;
|
2001-10-02 06:11:37 +08:00
|
|
|
msg = NULL;
|
2004-03-06 23:01:16 +08:00
|
|
|
if ( rmatch ) {
|
|
|
|
ber_memfree( rmatch );
|
|
|
|
}
|
2001-10-02 06:11:37 +08:00
|
|
|
rmatch = match;
|
2004-03-06 23:01:16 +08:00
|
|
|
free_rmatch = 1;
|
2001-10-02 06:11:37 +08:00
|
|
|
match = NULL;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* better test the pointers before freeing? */
|
|
|
|
if ( match ) {
|
|
|
|
free( match );
|
|
|
|
}
|
|
|
|
if ( msg ) {
|
|
|
|
free( msg );
|
|
|
|
}
|
2001-05-12 08:51:28 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-04-04 05:35:54 +08:00
|
|
|
rs->sr_err = rerr;
|
|
|
|
rs->sr_text = rmsg;
|
|
|
|
rs->sr_matched = rmatch;
|
|
|
|
send_ldap_result( op, rs );
|
2004-03-06 23:01:16 +08:00
|
|
|
if ( free_rmsg ) {
|
|
|
|
ber_memfree( rmsg );
|
|
|
|
}
|
|
|
|
if ( free_rmatch ) {
|
|
|
|
ber_memfree( rmatch );
|
|
|
|
}
|
2003-04-04 05:35:54 +08:00
|
|
|
rs->sr_text = NULL;
|
|
|
|
rs->sr_matched = NULL;
|
2001-10-02 06:11:37 +08:00
|
|
|
|
|
|
|
return ( ( rerr == LDAP_SUCCESS ) ? 0 : -1 );
|
2001-05-12 08:51:28 +08:00
|
|
|
}
|
|
|
|
|