nss-pam-ldapd commit: r1092 - nss-pam-ldapd/nslcd
[
Date Prev][
Date Next]
[
Thread Prev][
Thread Next]
nss-pam-ldapd commit: r1092 - nss-pam-ldapd/nslcd
- From: "Commits of the nss-pam-ldapd project." <nss-pam-ldapd-commits [at] lists.arthurdejong.org>
- To: nss-pam-ldapd-commits [at] lists.arthurdejong.org
- Reply-to: nss-pam-ldapd-users [at] lists.arthurdejong.org
- Subject: nss-pam-ldapd commit: r1092 - nss-pam-ldapd/nslcd
- Date: Sun, 9 May 2010 12:08:04 +0200 (CEST)
Author: arthur
Date: Sun May 9 12:08:03 2010
New Revision: 1092
URL: http://arthurdejong.org/viewvc/nss-pam-ldapd?view=rev&revision=1092
Log:
handle authentication searches a little differently (only try once if an
authentication error is returned)
Modified:
nss-pam-ldapd/nslcd/myldap.c
Modified: nss-pam-ldapd/nslcd/myldap.c
==============================================================================
--- nss-pam-ldapd/nslcd/myldap.c Sun May 9 11:51:26 2010 (r1091)
+++ nss-pam-ldapd/nslcd/myldap.c Sun May 9 12:08:03 2010 (r1092)
@@ -654,7 +654,8 @@
if (rc!=LDAP_SUCCESS)
{
/* log actual LDAP error code */
- log_log(LOG_WARNING,"failed to bind to LDAP server %s: %s: %s",
+ log_log((session->binddn[0]=='\0')?LOG_WARNING:LOG_DEBUG,
+ "failed to bind to LDAP server %s: %s: %s",
nslcd_cfg->ldc_uris[session->current_uri].uri,
ldap_err2string(rc),strerror(errno));
rc2=ldap_unbind(session->ld);
@@ -844,12 +845,19 @@
/* update time of failure and figure out when we should retry */
pthread_mutex_lock(&uris_mutex);
t=time(NULL);
- /* update timestaps */
- if (current_uri->firstfail==0)
- current_uri->firstfail=t;
- current_uri->lastfail=t;
+ /* update timestaps unless we are doing an authentication search */
+ if (search->session->binddn[0]=='\0')
+ {
+ if (current_uri->firstfail==0)
+ current_uri->firstfail=t;
+ current_uri->lastfail=t;
+ }
+ /* if it is one of these, retrying this URI is not going to help */
+ if ((rc==LDAP_INVALID_CREDENTIALS)||(rc==LDAP_INSUFFICIENT_ACCESS)||
+ (rc==LDAP_AUTH_METHOD_NOT_SUPPORTED))
+ dotry[search->session->current_uri]=0;
/* check whether we should try this URI again */
- if (t <=
(current_uri->firstfail+nslcd_cfg->ldc_reconnect_maxsleeptime))
+ else if (t <=
(current_uri->firstfail+nslcd_cfg->ldc_reconnect_maxsleeptime))
{
t+=nslcd_cfg->ldc_reconnect_sleeptime;
if (t<nexttry)
--
To unsubscribe send an email to
nss-pam-ldapd-commits-unsubscribe@lists.arthurdejong.org or see
http://lists.arthurdejong.org/nss-pam-ldapd-commits
- nss-pam-ldapd commit: r1092 - nss-pam-ldapd/nslcd,
Commits of the nss-pam-ldapd project.