summaryrefslogtreecommitdiff
path: root/source3/nsswitch/winbindd_ads.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2002-03-12 20:17:34 +0000
committerAndrew Tridgell <tridge@samba.org>2002-03-12 20:17:34 +0000
commit08a0230855602f47b7403e30ba36d74d3e595118 (patch)
treeb95837bc27212171739e98f1d363f0358ae94118 /source3/nsswitch/winbindd_ads.c
parentfc3d0ca2cd147efb9bd6c883ee06143bc636a58a (diff)
downloadsamba-08a0230855602f47b7403e30ba36d74d3e595118.tar.gz
samba-08a0230855602f47b7403e30ba36d74d3e595118.tar.bz2
samba-08a0230855602f47b7403e30ba36d74d3e595118.zip
fixed 2 reconnection bugs in the ADS backend support
(This used to be commit 1aaa2091d54e7e50cf75927d658e57776792d6ae)
Diffstat (limited to 'source3/nsswitch/winbindd_ads.c')
-rw-r--r--source3/nsswitch/winbindd_ads.c18
1 files changed, 11 insertions, 7 deletions
diff --git a/source3/nsswitch/winbindd_ads.c b/source3/nsswitch/winbindd_ads.c
index 27d8160c3f..2b5234fc96 100644
--- a/source3/nsswitch/winbindd_ads.c
+++ b/source3/nsswitch/winbindd_ads.c
@@ -38,28 +38,30 @@ ADS_STATUS ads_do_search_retry(ADS_STRUCT *ads, const char *bind_path, int scope
{
ADS_STATUS status;
int count = 3;
+ char *bp;
if (!ads->ld &&
time(NULL) - ads->last_attempt < ADS_RECONNECT_TIME) {
return ADS_ERROR(LDAP_SERVER_DOWN);
}
+ bp = strdup(bind_path);
+
while (count--) {
- status = ads_do_search(ads, bind_path, scope, exp, attrs, res);
+ status = ads_do_search(ads, bp, scope, exp, attrs, res);
if (ADS_ERR_OK(status)) {
DEBUG(5,("Search for %s gave %d replies\n",
exp, ads_count_replies(ads, *res)));
+ free(bp);
return status;
}
if (*res) ads_msgfree(ads, *res);
*res = NULL;
- DEBUG(1,("Reopening ads connection after error %s\n",
- ads_errstr(status)));
+ DEBUG(1,("Reopening ads connection to %s after error %s\n",
+ ads->ldap_server, ads_errstr(status)));
if (ads->ld) {
- /* we should unbind here, but that seems to trigger openldap bugs :(
- ldap_unbind(ads->ld);
- */
+ ldap_unbind(ads->ld);
}
ads->ld = NULL;
status = ads_connect(ads);
@@ -67,9 +69,11 @@ ADS_STATUS ads_do_search_retry(ADS_STRUCT *ads, const char *bind_path, int scope
DEBUG(1,("ads_search_retry: failed to reconnect (%s)\n",
ads_errstr(status)));
ads_destroy(&ads);
+ free(bp);
return status;
}
}
+ free(bp);
DEBUG(1,("ads reopen failed after error %s\n", ads_errstr(status)));
return status;
@@ -725,7 +729,7 @@ static NTSTATUS domain_sid(struct winbindd_domain *domain, DOM_SID *sid)
if (!ADS_ERR_OK(rc)) {
/* its a dead connection */
- ads_destroy(ads);
+ ads_destroy(&ads);
domain->private = NULL;
}