summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2008-03-15 13:31:52 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2008-03-15 13:31:52 +0000
commit6004b582ce3997daa11ab5b9d0a8f2346cebc3e8 (patch)
treedb529f10b74293914f1942e5577aaf4c86ae1bb0
parent52411f0b937936b5f91ad43b4ceffec43c19a1ec (diff)
Allow for binding to non-anonymous DN for searches.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@9093 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r--src/modules/extra/m_ldapauth.cpp36
1 files changed, 24 insertions, 12 deletions
diff --git a/src/modules/extra/m_ldapauth.cpp b/src/modules/extra/m_ldapauth.cpp
index e32f8cfd0..7de157601 100644
--- a/src/modules/extra/m_ldapauth.cpp
+++ b/src/modules/extra/m_ldapauth.cpp
@@ -38,6 +38,8 @@ class ModuleLDAPAuth : public Module
std::string ldapserver;
std::string allowpattern;
std::string killreason;
+ std::string username;
+ std::string password;
int searchscope;
bool verbose;
LDAP *conn;
@@ -62,13 +64,15 @@ public:
{
ConfigReader Conf(ServerInstance);
- base = Conf.ReadValue("ldapauth", "baserdn", 0);
- attribute = Conf.ReadValue("ldapauth", "attribute", 0);
- ldapserver = Conf.ReadValue("ldapauth", "server", 0);
- allowpattern = Conf.ReadValue("ldapauth", "allowpattern", 0);
- killreason = Conf.ReadValue("ldapauth", "killreason", 0);
+ base = Conf.ReadValue("ldapauth", "baserdn", 0);
+ attribute = Conf.ReadValue("ldapauth", "attribute", 0);
+ ldapserver = Conf.ReadValue("ldapauth", "server", 0);
+ allowpattern = Conf.ReadValue("ldapauth", "allowpattern", 0);
+ killreason = Conf.ReadValue("ldapauth", "killreason", 0);
std::string scope = Conf.ReadValue("ldapauth", "searchscope", 0);
- verbose = Conf.ReadFlag("ldapauth", "verbose", 0); /* Set to true if failed connects should be reported to operators */
+ username = Conf.ReadValue("ldapauth", "binddn", 0);
+ password = Conf.ReadValue("ldapauth", "bindauth", 0);
+ verbose = Conf.ReadFlag("ldapauth", "verbose", 0); /* Set to true if failed connects should be reported to operators */
if (scope == "base")
searchscope = LDAP_SCOPE_BASE;
@@ -128,16 +132,23 @@ public:
return false;
int res;
- // bind anonymously
- struct berval cred; cred.bv_val = ""; cred.bv_len = 0;
- if ((res = ldap_sasl_bind_s(conn, "", LDAP_SASL_SIMPLE, &cred, NULL, NULL, NULL)) != LDAP_SUCCESS)
- {
+ char* authpass = strdup(password.c_str());
+ // bind anonymously if no bind DN and authentication are given in the config
+ struct berval cred;
+ cred.bv_val = authpass;
+ cred.bv_len = password.length();
+
+ if ((res = ldap_sasl_bind_s(conn, username.c_str(), LDAP_SASL_SIMPLE, &cred, NULL, NULL, NULL)) != LDAP_SUCCESS)
+ {
+ free(authpass);
if (verbose)
- ServerInstance->SNO->WriteToSnoMask('A', "Forbidden connection from %s!%s@%s (LDAP bind anonymously failed: %s)", user->nick, user->ident, user->host, ldap_err2string(res));
+ ServerInstance->SNO->WriteToSnoMask('A', "Forbidden connection from %s!%s@%s (LDAP bind failed: %s)", user->nick, user->ident, user->host, ldap_err2string(res));
ldap_unbind_ext(conn, NULL, NULL);
conn = NULL;
return false;
}
+ free(authpass);
+
LDAPMessage *msg, *entry;
std::string what = (attribute + "=" + user->nick);
if ((res = ldap_search_ext_s(conn, base.c_str(), searchscope, what.c_str(), NULL, 0, NULL, NULL, NULL, 0, &msg)) != LDAP_SUCCESS)
@@ -160,7 +171,8 @@ public:
ldap_msgfree(msg);
return false;
}
- cred.bv_val = user->password; cred.bv_len = strlen(user->password);
+ cred.bv_val = user->password;
+ cred.bv_len = strlen(user->password);
if ((res = ldap_sasl_bind_s(conn, ldap_get_dn(conn, entry), LDAP_SASL_SIMPLE, &cred, NULL, NULL, NULL)) == LDAP_SUCCESS)
{
ldap_msgfree(msg);