forked from anuko/timetracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAuth_ldap.class.php
More file actions
287 lines (234 loc) · 9.42 KB
/
Copy pathAuth_ldap.class.php
File metadata and controls
287 lines (234 loc) · 9.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
<?php
// +----------------------------------------------------------------------+
// | Anuko Time Tracker
// +----------------------------------------------------------------------+
// | Copyright (c) Anuko International Ltd. (https://www.anuko.com)
// +----------------------------------------------------------------------+
// | LIBERAL FREEWARE LICENSE: This source code document may be used
// | by anyone for any purpose, and freely redistributed alone or in
// | combination with other software, provided that the license is obeyed.
// |
// | There are only two ways to violate the license:
// |
// | 1. To redistribute this code in source form, with the copyright
// | notice or license removed or altered. (Distributing in compiled
// | forms without embedded copyright notices is permitted).
// |
// | 2. To redistribute modified versions of this code in *any* form
// | that bears insufficient indications that the modifications are
// | not the work of the original author(s).
// |
// | This license applies to this document only, not any other software
// | that it may be combined with.
// |
// +----------------------------------------------------------------------+
// | Contributors:
// | https://www.anuko.com/content/time_tracker/open_source/credits.htm
// +----------------------------------------------------------------------+
// NOTES:
//
// Auth_ldap.class.php was originally written for LDAP authentication with Windows Active Directory.
// It June 2011, it was extended to include support for OpenLDAP. The difference in the code is in the format
// of user identification that we pass to ldap_bind().
//
// Windows AD accepts username@domain.com while OpenLDAP needs something like "uid=username,ou=people,dc=domain,dc=com".
// Therefore, some branching in the code.
//
// In April 2012, a previously mandatory search for group membership was put in a conditional block (if ($member_of) -
// when mandatory membership in groups is actually defined in config.php).
// This made the module work with Sun Directory Server when NO GROUP MEMBERSHIP is specified.
// Note 1: search is likely to fail with Sun DS if 'member_of' => array()); is used in config.php.
// Note 2: search is likely to not work properly with OpenLDAP as well because of Windows specific filtering code in there
// (we are looking for matches for Windows-specific samaccountname property). Search needs to be redone during the next
// refactoring effort.
/**
* Auth_ldap class to authenticate users against an LDAP server (Windows AD, OpenLDAP, and others).
* @package TimeTracker
*/
class Auth_ldap extends Auth {
var $params;
function __construct($params)
{
$this->params = $params;
if (isset($GLOBALS['smarty'])) {
$GLOBALS['smarty']->assign('Auth_ldap_params', $this->params);
}
}
function ldap_escape($str){
$illegal = array("(", ")", "#");
$legal = array();
foreach ($illegal as $id => $char) {
$legal[$id] = "\\".$char;
}
$str = str_replace($illegal, $legal, $str); //replace them
return $str;
}
/**
* Authenticate user against LDAP server.
*
* @param string $login
* @param string $password
* @return mixed
*/
function authenticate($login, $password)
{
// Special handling for admin@localhost - authenticate against db, not ldap.
// It is a fallback mechanism when admin account in LDAP directory does not exist or is misconfigured.
if ($login == 'admin@localhost') {
import('auth.Auth_db');
return Auth_db::authenticate($login, $password);
}
if (!function_exists('ldap_bind')) {
die ('php_ldap extension not loaded!');
}
if (empty($this->params['server']) || empty($this->params['base_dn'])) {
die('You must set server and base_dn in AUTH_MODULE_PARAMS in config.php');
}
$member_of = @$this->params['member_of'];
$lc = ldap_connect($this->params['server']);
if (defined('AUTH_DEBUG') && isTrue(AUTH_DEBUG)) {
echo '<br />';
echo '$lc='; var_dump($lc); echo '<br />';
echo 'ldap_error()='; echo ldap_error($lc); echo '<br />';
}
if (!$lc) return false;
ldap_set_option($lc, LDAP_OPT_PROTOCOL_VERSION, 3);
ldap_set_option($lc, LDAP_OPT_REFERRALS, 0);
if (defined('AUTH_DEBUG') && isTrue(AUTH_DEBUG)) {
ldap_set_option($lc, LDAP_OPT_DEBUG_LEVEL, 7);
}
// We need to handle Windows AD and OpenLDAP differently.
if ($this->params['type'] == 'ad') {
// Check if user specified full login.
if (strpos($login, '@') === false) {
// Append default domain.
$login .= '@' . $this->params['default_domain'];
}
if (defined('AUTH_DEBUG') && isTrue(AUTH_DEBUG)) {
echo '$login='; var_dump($login); echo '<br />';
}
$lb = @ldap_bind($lc, $login, $password);
if (defined('AUTH_DEBUG') && isTrue(AUTH_DEBUG)) {
echo '$lb='; var_dump($lb); echo '<br />';
echo 'ldap_error()='; echo ldap_error($lc); echo '<br />';
}
if (!$lb) {
ldap_unbind($lc);
return false;
}
if ($member_of) {
// Get groups the user is a member of from AD LDAP server.
$filter = 'userPrincipalName='.Auth_ldap::ldap_escape($login);
$fields = array('memberof');
$sr = @ldap_search($lc, $this->params['base_dn'], $filter, $fields);
if (defined('AUTH_DEBUG') && isTrue(AUTH_DEBUG)) {
echo '$sr='; var_dump($sr); echo '<br />';
echo 'ldap_error()='; echo ldap_error($lc); echo '<br />';
}
if (!$sr) {
ldap_unbind($lc);
return false;
}
$entries = @ldap_get_entries($lc, $sr);
if (defined('AUTH_DEBUG') && isTrue(AUTH_DEBUG)) {
echo '$entries='; var_dump($entries); echo '<br />';
echo 'ldap_error()='; echo ldap_error($lc); echo '<br />';
}
if ($entries === false) {
ldap_unbind($lc);
return false;
}
$groups = array();
// Extract group names. Assume the groups are in format: CN=<group_name>,...
for ($i = 0; $i < @$entries[0]['memberof']['count']; $i++) {
$grp = $entries[0]['memberof'][$i];
$grp_fields = explode(',', $grp);
$groups[] = substr($grp_fields[0], 3);
}
if (defined('AUTH_DEBUG') && isTrue(AUTH_DEBUG)) {
echo '$member_of'; var_dump($member_of); echo '<br />';
};
// Check for group membership.
foreach ($member_of as $check_grp) {
if (!in_array($check_grp, $groups)) {
ldap_unbind($lc);
return false;
}
}
}
ldap_unbind($lc);
return array('login' => $login, 'data' => $entries, 'member_of' => $groups);
}
if ($this->params['type'] == 'openldap') {
// Assuming OpenLDAP server.
$login_oldap = 'uid='.$login.','.$this->params['base_dn'];
if (defined('AUTH_DEBUG') && isTrue(AUTH_DEBUG)) {
echo '$login_oldap='; var_dump($login_oldap); echo '<br />';
}
// check if the user specified full login
if (strpos($login, '@') === false) {
// append default domain
$login .= '@' . $this->params['default_domain'];
}
$lb = @ldap_bind($lc, $login_oldap, $password);
if (defined('AUTH_DEBUG') && isTrue(AUTH_DEBUG)) {
echo '$lb='; var_dump($lb); echo '<br />';
echo 'ldap_error()='; echo ldap_error($lc); echo '<br />';
}
if (!$lb) {
ldap_unbind($lc);
return false;
}
if ($member_of) {
// TODO: Fix this for OpenLDAP, as samaccountname has nothing to do with it.
// get groups
$filter = 'samaccountname='.Auth_ldap::ldap_escape($login_oldap);
$fields = array('samaccountname', 'mail', 'memberof', 'department', 'displayname', 'telephonenumber', 'primarygroupid');
$sr = @ldap_search($lc, $this->params['base_dn'], $filter, $fields);
if (defined('AUTH_DEBUG') && isTrue(AUTH_DEBUG)) {
echo '$sr='; var_dump($sr); echo '<br />';
echo 'ldap_error()='; echo ldap_error($lc); echo '<br />';
}
// if search failed it's likely that account is disabled
if (!$sr) {
ldap_unbind($lc);
return false;
}
$entries = @ldap_get_entries($lc, $sr);
if (defined('AUTH_DEBUG') && isTrue(AUTH_DEBUG)) {
echo '$entries='; var_dump($entries); echo '<br />';
echo 'ldap_error()='; echo ldap_error($lc); echo '<br />';
}
if ($entries === false) {
ldap_unbind($lc);
return false;
}
$groups = array();
// extract group names from
// assuming the groups are in format: CN=<group_name>,...
for ($i = 0; $i < @$entries[0]['memberof']['count']; $i++) {
$grp = $entries[0]['memberof'][$i];
$grp_fields = explode(',', $grp);
$groups[] = substr($grp_fields[0], 3);
}
if (defined('AUTH_DEBUG') && isTrue(AUTH_DEBUG)) {
echo '$member_of'; var_dump($member_of); echo '<br />';
}
// check for group membership
foreach ($member_of as $check_grp) {
if (!in_array($check_grp, $groups)) {
ldap_unbind($lc);
return false;
}
}
}
ldap_unbind($lc);
return array('login' => $login, 'data' => $entries, 'member_of' => $groups);
}
// Server type is neither 'ad' or 'openldap'.
return false;
}
function isPasswordExternal() {
return true;
}
}