34768faaec601d574473094beac44d78f0cae345
[quassel.git] / src / core / ldapauthenticator.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-2016 by the Quassel Project                        *
3  *   devel@quassel-irc.org                                                 *
4  *                                                                         *
5  *   This program is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU General Public License as published by  *
7  *   the Free Software Foundation; either version 2 of the License, or     *
8  *   (at your option) version 3.                                           *
9  *                                                                         *
10  *   This program is distributed in the hope that it will be useful,       *
11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13  *   GNU General Public License for more details.                          *
14  *                                                                         *
15  *   You should have received a copy of the GNU General Public License     *
16  *   along with this program; if not, write to the                         *
17  *   Free Software Foundation, Inc.,                                       *
18  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
19  ***************************************************************************/
20
21 /* This file contains an implementation of an LDAP Authenticator, as an example
22  * of what a custom external auth provider could do.
23  *
24  * It's based off of this pull request for quassel by abustany:
25  * https://github.com/quassel/quassel/pull/4/
26  *
27  */
28
29 #include "ldapauthenticator.h"
30
31 #include "logger.h"
32 #include "network.h"
33 #include "quassel.h"
34
35 /* We should use openldap on windows if at all possible, rather than trying to
36  * write some kind of compatiblity routine.
37 #ifdef Q_CC_MSVC
38 #include <windows.h>
39 #include <winldap.h>
40 #else*/
41 #include <ldap.h>
42 //#endif
43
44 LdapAuthenticator::LdapAuthenticator(QObject *parent)
45     : Authenticator(parent),
46     _connection(0)
47 {
48 }
49
50
51 LdapAuthenticator::~LdapAuthenticator()
52 {
53     if (_connection != 0) {
54         ldap_unbind_ext(_connection, 0, 0);
55     }
56 }
57
58
59 bool LdapAuthenticator::isAvailable() const
60 {
61     // FIXME: probably this should test if we can speak to the LDAP server.
62     return true;
63 }
64
65
66 QString LdapAuthenticator::backendId() const
67 {
68     // We identify the backend to use for the monolithic core by this identifier.
69     // so only change this string if you _really_ have to and make sure the core
70     // setup for the mono client still works ;)
71     return QString("LDAP");
72 }
73
74
75 QString LdapAuthenticator::displayName() const
76 {
77     return tr("LDAP");
78 }
79
80
81 QString LdapAuthenticator::description() const
82 {
83     return tr("Authenticate users using an LDAP server.");
84 }
85
86
87 QVariantList LdapAuthenticator::setupData() const
88 {
89     // The parameters needed for LDAP.
90     QVariantList data;
91     data << "Hostname"     << tr("Hostname")      << QString{"ldap://localhost"}
92          << "Port"         << tr("Port")          << DEFAULT_LDAP_PORT
93          << "BindDN"       << tr("Bind DN")       << QString{}
94          << "BindPassword" << tr("Bind Password") << QString{}
95          << "BaseDN"       << tr("Base DN")       << QString{}
96          << "Filter"       << tr("Filter")        << QString{}
97          << "UidAttribute" << tr("UID Attribute") << QString{"uid"}
98          ;
99     return data;
100 }
101
102
103 void LdapAuthenticator::setAuthProperties(const QVariantMap &properties)
104 {
105     _hostName = properties["Hostname"].toString();
106     _port = properties["Port"].toInt();
107     _bindDN = properties["BindDN"].toString();
108     _bindPassword = properties["BindPassword"].toString();
109     _baseDN = properties["BaseDN"].toString();
110     _filter = properties["Filter"].toString();
111     _uidAttribute = properties["UidAttribute"].toString();
112 }
113
114 // TODO: this code is sufficiently general that in the future, perhaps an abstract
115 // class should be created implementing it.
116 // i.e. a provider that does its own thing and then pokes at the current storage
117 // through the default core method.
118 UserId LdapAuthenticator::validateUser(const QString &username, const QString &password)
119 {
120     bool result = ldapAuth(username, password);
121     if (!result) {
122         return UserId();
123     }
124
125     // If auth succeeds, but the user has not logged into quassel previously, make
126     // a new user for them and return that ID.
127     // Users created via LDAP have empty passwords, but authenticator column = LDAP.
128     // On the other hand, if auth succeeds and the user already exists, do a final
129     // cross-check to confirm we're using the right auth provider.
130     UserId quasselId = Core::validateUser(username, QString());
131     if (!quasselId.isValid()) {
132         return Core::addUser(username, QString(), backendId());
133     }
134     else if (!(Core::checkAuthProvider(quasselId, backendId()))) {
135         return 0;
136     }
137     return quasselId;
138 }
139
140
141 bool LdapAuthenticator::setup(const QVariantMap &settings)
142 {
143     setAuthProperties(settings);
144     bool status = ldapConnect();
145     return status;
146 }
147
148
149 Authenticator::State LdapAuthenticator::init(const QVariantMap &settings)
150 {
151     setAuthProperties(settings);
152
153     bool status = ldapConnect();
154     if (!status) {
155         quInfo() << qPrintable(backendId()) << "authenticator cannot connect.";
156         return NotAvailable;
157     }
158
159     quInfo() << qPrintable(backendId()) << "authenticator is ready.";
160     return IsReady;
161 }
162
163 // Method based on abustany LDAP quassel patch.
164 bool LdapAuthenticator::ldapConnect()
165 {
166     if (_connection != 0) {
167         ldapDisconnect();
168     }
169
170     int res, v = LDAP_VERSION3;
171
172     QString serverURI;
173     QByteArray serverURIArray;
174
175     // Convert info to hostname:port.
176     serverURI = _hostName + ":" + QString::number(_port);
177     serverURIArray = serverURI.toLocal8Bit();
178     res = ldap_initialize(&_connection, serverURIArray);
179
180     if (res != LDAP_SUCCESS) {
181         qWarning() << "Could not connect to LDAP server:" << ldap_err2string(res);
182         return false;
183     }
184
185     res = ldap_set_option(_connection, LDAP_OPT_PROTOCOL_VERSION, (void*)&v);
186
187     if (res != LDAP_SUCCESS) {
188         qWarning() << "Could not set LDAP protocol version to v3:" << ldap_err2string(res);
189         ldap_unbind_ext(_connection, 0, 0);
190         _connection = 0;
191         return false;
192     }
193
194     return true;
195 }
196
197
198 void LdapAuthenticator::ldapDisconnect()
199 {
200     if (_connection == 0) {
201         return;
202     }
203
204     ldap_unbind_ext(_connection, 0, 0);
205     _connection = 0;
206 }
207
208
209 bool LdapAuthenticator::ldapAuth(const QString &username, const QString &password)
210 {
211     if (password.isEmpty()) {
212         return false;
213     }
214
215     int res;
216
217     // Attempt to establish a connection.
218     if (_connection == 0) {
219         if (!ldapConnect()) {
220             return false;
221         }
222     }
223
224     struct berval cred;
225
226     // Convert some things to byte arrays as needed.
227     QByteArray bindPassword = _bindPassword.toLocal8Bit();
228     QByteArray bindDN = _bindDN.toLocal8Bit();
229     QByteArray baseDN = _baseDN.toLocal8Bit();
230     QByteArray uidAttribute = _uidAttribute.toLocal8Bit();
231
232     cred.bv_val = (bindPassword.size() > 0 ? bindPassword.data() : NULL);
233     cred.bv_len = bindPassword.size();
234
235     res = ldap_sasl_bind_s(_connection, bindDN.size() > 0 ? bindDN.constData() : 0, LDAP_SASL_SIMPLE, &cred, 0, 0, 0);
236
237     if (res != LDAP_SUCCESS) {
238         qWarning() << "Refusing connection from" << username << "(LDAP bind failed:" << ldap_err2string(res) << ")";
239         ldapDisconnect();
240         return false;
241     }
242
243     LDAPMessage *msg = NULL, *entry = NULL;
244
245     const QByteArray ldapQuery = "(&(" + uidAttribute + '=' + username.toLocal8Bit() + ")" + _filter.toLocal8Bit() + ")";
246
247     res = ldap_search_ext_s(_connection, baseDN.constData(), LDAP_SCOPE_SUBTREE, ldapQuery.constData(), 0, 0, 0, 0, 0, 0, &msg);
248
249     if (res != LDAP_SUCCESS) {
250         qWarning() << "Refusing connection from" << username << "(LDAP search failed:" << ldap_err2string(res) << ")";
251         return false;
252     }
253
254     if (ldap_count_entries(_connection, msg) > 1) {
255         qWarning() << "Refusing connection from" << username << "(LDAP search returned more than one result)";
256         ldap_msgfree(msg);
257         return false;
258     }
259
260     entry = ldap_first_entry(_connection, msg);
261
262     if (entry == 0) {
263         qWarning() << "Refusing connection from" << username << "(LDAP search returned no results)";
264         ldap_msgfree(msg);
265         return false;
266     }
267
268     QByteArray passwordArray = password.toLocal8Bit();
269     cred.bv_val = passwordArray.data();
270     cred.bv_len = password.size();
271
272     char *userDN = ldap_get_dn(_connection, entry);
273
274     res = ldap_sasl_bind_s(_connection, userDN, LDAP_SASL_SIMPLE, &cred, 0, 0, 0);
275
276     if (res != LDAP_SUCCESS) {
277         qWarning() << "Refusing connection from" << username << "(LDAP authentication failed)";
278         ldap_memfree(userDN);
279         ldap_msgfree(msg);
280         return false;
281     }
282
283     // The original implementation had requiredAttributes. I have not included this code
284     // but it would be easy to re-add if someone wants this feature.
285     // Ben Rosser <bjr@acm.jhu.edu> (12/23/15).
286
287     ldap_memfree(userDN);
288     ldap_msgfree(msg);
289     return true;
290 }