From ce3c25aea700b4e206d952e0145d3641717421d9 Mon Sep 17 00:00:00 2001 From: Pierangelo Masarati Date: Sat, 13 Oct 2007 10:26:33 +0000 Subject: [PATCH] import fix to ITS#5185 --- CHANGES | 1 + servers/slapd/back-meta/conn.c | 10 +++++++++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGES b/CHANGES index 91c82c93b8..62716d5265 100644 --- a/CHANGES +++ b/CHANGES @@ -18,6 +18,7 @@ OpenLDAP 2.4.6 Engineering Fixed slapd-ldif directory separators in DN (ITS#5172) Fixed slapd-meta leak when binding as rootdn (ITS#5155) Fixed slapd-meta conn caching on bind failure (ITS#5154) + Fixed slapd-meta bind timeout assertion (ITS#5185) Fixed slapd-monitor database registration (ITS#4965) Fixed slapo-chain double-free (ITS#5137) Fixed slapo-dynlist entry release (ITS#5135) diff --git a/servers/slapd/back-meta/conn.c b/servers/slapd/back-meta/conn.c index ed7ff743cc..37b041c0fb 100644 --- a/servers/slapd/back-meta/conn.c +++ b/servers/slapd/back-meta/conn.c @@ -1181,7 +1181,8 @@ retry_lock:; case LDAP_REQ_BIND: /* if bound as rootdn, the backend must bind to all targets - * with the administrative identity */ + * with the administrative identity + * (unless pseoudoroot-bind-defer is TRUE) */ if ( op->orb_method == LDAP_AUTH_SIMPLE && be_isroot_pw( op ) ) { op_type = META_OP_REQUIRE_ALL; } @@ -1239,6 +1240,9 @@ retry_lock:; rs, mc, i, LDAP_BACK_CONN_ISPRIV( &mc_curr ), LDAP_BACK_DONTSEND, !new_conn ); if ( candidates[ i ].sr_err == LDAP_SUCCESS ) { + if ( new_conn && ( sendok & LDAP_BACK_BINDING ) ) { + LDAP_BACK_CONN_BINDING_SET( &mc->mc_conns[ i ] ); + } META_CANDIDATE_SET( &candidates[ i ] ); ncandidates++; @@ -1428,6 +1432,10 @@ retry_lock2:; return NULL; } + if ( new_conn && ( sendok & LDAP_BACK_BINDING ) ) { + LDAP_BACK_CONN_BINDING_SET( &mc->mc_conns[ i ] ); + } + candidates[ i ].sr_err = LDAP_SUCCESS; META_CANDIDATE_SET( &candidates[ i ] ); ncandidates++; -- 2.39.5