-
Notifications
You must be signed in to change notification settings - Fork 1
/
Ldap.php
474 lines (413 loc) · 13.6 KB
/
Ldap.php
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
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
<?php
namespace common\components\passwordStore;
use Adldap\Adldap;
use Adldap\Auth\BindException;
use Adldap\Schemas\OpenLDAP;
use yii\base\Component;
class Ldap extends Component implements PasswordStoreInterface
{
/** @var string */
public $baseDn;
/** @var string|string[] */
public $host;
/** @var integer default=636 */
public $port = 636;
/** @var string */
public $adminUsername;
/** @var string */
public $adminPassword;
/** @var boolean default=false */
public $useSsl = false;
/** @var boolean default=true*/
public $useTls = true;
/** @var string */
public $employeeIdAttribute;
/** @var string */
public $passwordLastChangeDateAttribute;
/** @var string */
public $passwordExpireDateAttribute;
/** @var string */
public $userPasswordAttribute;
/** @var string */
public $userAccountDisabledAttribute;
/** @var string */
public $userAccountDisabledValue;
/**
* If set, only update password if given attribute is present and value matches
* @var array attributeName => value
*/
public $updatePasswordIfAttributeAndValue;
/**
* Single dimension array of attribute names to be removed after password is changed.
* This is helpful when certain flags may be set like lock status.
* Example: ['pwdPolicySubentry']
* @var array
*/
public $removeAttributesOnSetPassword = [];
/**
* Associative array of attribute names and values to be set when password is changed.
* This is helpful with certain flags need to be set after password is changed.
* Example: ['pwdChangeEvent' => 'Yes']
* @var array
*/
public $updateAttributesOnSetPassword = [];
/** @var \Adldap\Connections\Provider */
public $ldapProvider;
/** @var \Adldap\Adldap LDAP client*/
public $ldapClient;
public $displayName = 'LDAP';
/**
* Connect and bind to ldap server
* @throws \Exception
*/
public function connect()
{
// Connection has already been established
if ($this->ldapClient !== null) {
return;
}
if ($this->useSsl && $this->useTls) {
// Prefer TLS over SSL
$this->useSsl = false;
}
// ensure the `host` property is an array
$this->host = is_array($this->host) ? $this->host : [$this->host];
// iterate over the list of hosts to find the first one that is good
foreach ($this->host as $host) {
$client = $this->connectHost($host);
if ($client !== null) {
$this->ldapClient = $client;
return;
}
}
// Wasn't able to connect to any of the provided LDAP hosts
if ($this->ldapClient === null) {
throw new \Exception(
"failed to connect to " . $this->displayName . " host",
1611157472
);
}
}
/**
* @param string $host
* @return Adldap|null
*/
private function connectHost(string $host)
{
$client = new Adldap();
$client->addProvider([
'base_dn' => $this->baseDn,
'hosts' => [$host],
'port' => $this->port,
'username' => $this->adminUsername,
'password' => $this->adminPassword,
'use_ssl' => $this->useSsl,
'use_tls' => $this->useTls,
'schema' => OpenLDAP::class,
'timeout' => 3, // set connection timeout to 3 seconds, default is 5 seconds
]);
try {
$this->ldapProvider = $client->connect();
} catch (BindException $e) {
$err = $e->getDetailedError();
\Yii::warning([
'action' => 'ldap connect host',
'status' => 'warning',
'host' => $host,
'ldap_code' => $err->getErrorCode(),
'diagnostic' => $err->getDiagnosticMessage(),
'message' => $err->getErrorMessage(),
]);
return null;
}
return $client;
}
/**
* @param string $employeeId
* @return \common\components\passwordStore\UserPasswordMeta
*/
public function getMeta($employeeId)
{
$user = $this->findUser($employeeId);
/*
* Make sure user is not disabled
*/
$this->assertUserNotDisabled($user);
/*
* Get Password expires value
*/
$pwdExpires = $user->getAttribute($this->passwordExpireDateAttribute);
if (is_array($pwdExpires)) {
$pwdExpires = $pwdExpires[0];
}
/*
* Get password last changed value
*/
$pwdChanged = $user->getAttribute($this->passwordLastChangeDateAttribute);
if (is_array($pwdChanged)) {
$pwdChanged = $pwdChanged[0];
}
return UserPasswordMeta::create(
$pwdExpires,
$pwdChanged
);
}
/**
* @param string $employeeId
* @param string $password
* @return \common\components\passwordStore\UserPasswordMeta
* @throws \Exception
*/
public function set($employeeId, $password)
{
$user = $this->findUser($employeeId);
$logIdentifier = $user->hasAttribute('mail') ? $user->getAttribute('mail')[0] : $employeeId;
/*
* If $this->updatePasswordIfAttributeAndValue is defined and is an array,
* check that user has given attribute and value matches. If not, return now
* and consider change successful
*/
if (! $this->matchesRequiredAttributes($user)) {
try {
\Yii::warning(
[
'action' => 'set password in ldap store',
'message' => sprintf(
'Skipping password update in LDAP for user %s because they do not match ' .
'required attributes: %s',
$logIdentifier,
json_encode($this->updatePasswordIfAttributeAndValue)
),
]
);
} catch (\Throwable $e) {
// ignoring
}
return $this->getMeta($employeeId);
}
$this->assertUserNotDisabled($user);
if ($this->userPasswordAttribute === 'unicodePwd') {
$password = $this->encodeForUnicodePwdField($password);
}
$this->updatePassword($user, $password);
/*
* Reload user after password change
*/
$user = $this->findUser($employeeId);
$this->removeAttributesAfterNewPassword($user);
$this->updateAttributesAfterNewPassword($user);
/*
* Save changes
*/
try {
if (! $user->save()) {
throw new \Exception('Unable to change password.', 1464018238);
}
} catch (\Exception $e) {
/*
* throw generic failure exception
*/
throw new \Exception('Unable to change password, server error.', 1464018242, $e);
}
try {
\Yii::warning([
'action' => 'set password in ldap store',
'status' => 'success',
'user' => $logIdentifier,
]);
} catch (\Throwable $e) {
// ignore
}
return $this->getMeta($employeeId);
}
/**
* Encode the given password as necessary for use in the `unicodePwd` field.
*
* For details, see
* https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-adts/6e803168-f140-4d23-b2d3-c3a8ab5917d2
*
* @param string $password
* @return string
* @throws \Exception
*/
protected function encodeForUnicodePwdField($password)
{
$encodedPassword = iconv('UTF-8', 'UTF-16LE', '"' . $password . '"');
if ($encodedPassword === false) {
throw new \Exception(
'Did not set password: Cannot encode it properly.',
1554296385
);
}
return $encodedPassword;
}
/**
* @param \Adldap\Models\Entry $user
* @param string $password
* @throws \common\components\passwordStore\PasswordReuseException
*/
protected function updatePassword($user, $password)
{
try {
$user->updateAttribute($this->userPasswordAttribute, $password);
} catch (\Exception $e) {
/*
* Check if failure is due to constraint violation
*/
$error = strtolower($e->getMessage());
if (substr_count($error, 'constraint violation') > 0) {
throw new PasswordReuseException(
'Unable to change password. If this password has been used before please use something different.',
1464018255,
$e
);
}
}
}
/**
* @param \Adldap\Models\Entry $user
*/
protected function removeAttributesAfterNewPassword($user)
{
foreach ($this->removeAttributesOnSetPassword as $removeAttr) {
if ($user->hasAttribute($removeAttr) || $user->hasAttribute(strtolower($removeAttr))) {
$user->deleteAttribute($removeAttr);
}
}
}
/**
* @param \Adldap\Models\Entry $user
*/
protected function updateAttributesAfterNewPassword($user)
{
foreach ($this->updateAttributesOnSetPassword as $key => $value) {
if ($user->hasAttribute($key) || $user->hasAttribute(strtolower($key))) {
$user->updateAttribute($key, $value);
} else {
$user->createAttribute($key, $value);
}
}
}
/**
* @param \Adldap\Models\Entry $user
* @return bool
*/
public function matchesRequiredAttributes($user)
{
// If not defined, just return true to continue processing as normal
if (! is_array($this->updatePasswordIfAttributeAndValue)) {
return true;
}
// Ensure each attribute is present and value matches, else return false
foreach ($this->updatePasswordIfAttributeAndValue as $key => $value) {
if ($user->hasAttribute($key)) {
$userValue = $user->getAttribute($key);
if (is_array($userValue)) {
$userValue = $userValue[0] ?? null;
}
if (strtolower($value) !== strtolower($userValue)) {
return false;
}
} else {
return false;
}
}
return true;
}
/**
* @param \Adldap\Models\Entry $user
* @throws \common\components\passwordStore\AccountLockedException
*/
public function assertUserNotDisabled($user)
{
if ($user->hasAttribute($this->userAccountDisabledAttribute)) {
$value = $user->getAttribute($this->userAccountDisabledAttribute);
if (is_array($value)) {
$value = $value[0];
}
if (strtolower($value) === strtolower($this->userAccountDisabledValue)) {
throw new AccountLockedException('User account is disabled', 1472740480);
}
}
}
/**
* conditionally build ldap search criteria
* @return array
*/
public function getSearchCriteria()
{
$criteria = [
$this->passwordExpireDateAttribute,
$this->passwordLastChangeDateAttribute,
'mail',
];
if (! empty($this->userAccountDisabledAttribute)) {
$criteria[] = $this->userAccountDisabledAttribute;
}
if (is_array($this->updateAttributesOnSetPassword)) {
$criteria = array_merge(
$criteria,
array_keys($this->updateAttributesOnSetPassword)
);
}
if (is_array($this->removeAttributesOnSetPassword)) {
$criteria = array_merge($criteria, $this->removeAttributesOnSetPassword);
}
if (is_array($this->updatePasswordIfAttributeAndValue)) {
foreach ($this->updatePasswordIfAttributeAndValue as $key => $value) {
$criteria[] = $key;
}
}
return $criteria;
}
/**
* @param string $employeeId
* @return \Adldap\Models\Entry
* @throws \common\components\passwordStore\UserNotFoundException
*/
public function findUser($employeeId)
{
$this->connect();
$criteria = $this->getSearchCriteria();
try {
/** @var \Adldap\Models\Entry $user */
$user = $this->ldapProvider->search()
->select($criteria)
->findByOrFail($this->employeeIdAttribute, $employeeId);
} catch (\Exception $e) {
throw new UserNotFoundException(
sprintf('User %s not found in %s', $employeeId, $this->employeeIdAttribute),
1463493653,
$e
);
}
return $user;
}
public function isLocked(string $employeeId): bool
{
$user = $this->findUser($employeeId);
try {
$this->assertUserNotDisabled($user);
} catch (AccountLockedException $e) {
return true;
}
return false;
}
/**
* Assess a potential new password for a user
* @param string $employeeId
* @param string $password
* @return bool
*/
public function assess($employeeId, $password)
{
return true;
}
/**
* {@inheritdoc}
*/
public function getDisplayName(): string
{
return $this->displayName;
}
}