Blame view
sources/apps/user_ldap/lib/wizard.php
33.8 KB
|
31b7f2792
|
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 |
<?php
/**
* ownCloud – LDAP Wizard
*
* @author Arthur Schiwon
* @copyright 2013 Arthur Schiwon blizzz@owncloud.com
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
* License as published by the Free Software Foundation; either
* version 3 of the License, or any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU AFFERO GENERAL PUBLIC LICENSE for more details.
*
* You should have received a copy of the GNU Affero General Public
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
*
*/
namespace OCA\user_ldap\lib;
class Wizard extends LDAPUtility {
static protected $l;
protected $cr;
protected $configuration;
protected $result;
protected $resultCache = array();
const LRESULT_PROCESSED_OK = 2;
const LRESULT_PROCESSED_INVALID = 3;
const LRESULT_PROCESSED_SKIP = 4;
const LFILTER_LOGIN = 2;
const LFILTER_USER_LIST = 3;
const LFILTER_GROUP_LIST = 4;
const LFILTER_MODE_ASSISTED = 2;
const LFILTER_MODE_RAW = 1;
const LDAP_NW_TIMEOUT = 4;
/**
|
|
6d9380f96
|
47 48 49 |
* Constructor * @param Configuration $configuration an instance of Configuration * @param ILDAPWrapper $ldap an instance of ILDAPWrapper |
|
31b7f2792
|
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 |
*/
public function __construct(Configuration $configuration, ILDAPWrapper $ldap) {
parent::__construct($ldap);
$this->configuration = $configuration;
if(is_null(Wizard::$l)) {
Wizard::$l = \OC_L10N::get('user_ldap');
}
$this->result = new WizardResult;
}
public function __destruct() {
if($this->result->hasChanges()) {
$this->configuration->saveConfiguration();
}
}
|
|
6d9380f96
|
65 66 67 68 69 70 71 72 73 74 75 76 77 |
/**
* counts entries in the LDAP directory
* @param string $filter the LDAP search filter
* @param string $type a string being either 'users' or 'groups';
* @return int|bool
*/
public function countEntries($filter, $type) {
$reqs = array('ldapHost', 'ldapPort', 'ldapBase');
if($type === 'users') {
$reqs[] = 'ldapUserFilter';
}
if(!$this->checkRequirements($reqs)) {
throw new \Exception('Requirements not met', 400);
|
|
31b7f2792
|
78 |
} |
|
6d9380f96
|
79 80 81 82 83 84 85 86 87 88 89 90 91 |
$ldapAccess = $this->getAccess();
if($type === 'groups') {
$result = $ldapAccess->countGroups($filter);
} else if($type === 'users') {
$result = $ldapAccess->countUsers($filter);
} else {
throw new \Exception('internal error: invald object type', 500);
}
return $result;
}
public function countGroups() {
|
|
31b7f2792
|
92 |
$filter = $this->configuration->ldapGroupFilter; |
|
6d9380f96
|
93 |
|
|
31b7f2792
|
94 |
if(empty($filter)) {
|
|
6d9380f96
|
95 |
$output = self::$l->n('%s group found', '%s groups found', 0, array(0));
|
|
31b7f2792
|
96 97 98 |
$this->result->addChange('ldap_group_count', $output);
return $this->result;
}
|
|
6d9380f96
|
99 100 101 102 103 104 105 106 |
try {
$groupsTotal = $this->countEntries($filter, 'groups');
} catch (\Exception $e) {
//400 can be ignored, 500 is forwarded
if($e->getCode() === 500) {
throw $e;
}
|
|
31b7f2792
|
107 108 |
return false; } |
|
6d9380f96
|
109 110 |
$groupsTotal = ($groupsTotal !== false) ? $groupsTotal : 0;
$output = self::$l->n('%s group found', '%s groups found', $groupsTotal, $groupsTotal);
|
|
31b7f2792
|
111 |
$this->result->addChange('ldap_group_count', $output);
|
|
31b7f2792
|
112 113 |
return $this->result; } |
|
6d9380f96
|
114 115 116 117 |
/** * @return WizardResult * @throws \Exception */ |
|
31b7f2792
|
118 |
public function countUsers() {
|
|
31b7f2792
|
119 |
$filter = $this->configuration->ldapUserFilter; |
|
31b7f2792
|
120 |
|
|
6d9380f96
|
121 122 123 124 |
$usersTotal = $this->countEntries($filter, 'users');
$usersTotal = ($usersTotal !== false) ? $usersTotal : 0;
$output = self::$l->n('%s user found', '%s users found', $usersTotal, $usersTotal);
$this->result->addChange('ldap_user_count', $output);
|
|
31b7f2792
|
125 126 |
return $this->result; } |
|
6d9380f96
|
127 128 129 130 |
/** * @return WizardResult * @throws \Exception */ |
|
31b7f2792
|
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 |
public function determineAttributes() {
if(!$this->checkRequirements(array('ldapHost',
'ldapPort',
'ldapBase',
'ldapUserFilter',
))) {
return false;
}
$attributes = $this->getUserAttributes();
natcasesort($attributes);
$attributes = array_values($attributes);
$this->result->addOptions('ldap_loginfilter_attributes', $attributes);
$selected = $this->configuration->ldapLoginFilterAttributes;
if(is_array($selected) && !empty($selected)) {
$this->result->addChange('ldap_loginfilter_attributes', $selected);
}
return $this->result;
}
/**
|
|
6d9380f96
|
156 157 |
* return the state of the Group Filter Mode * @return WizardResult |
|
31b7f2792
|
158 159 160 161 162 163 164 |
*/
public function getGroupFilterMode() {
$this->getFilterMode('ldapGroupFilterMode');
return $this->result;
}
/**
|
|
6d9380f96
|
165 166 |
* return the state of the Login Filter Mode * @return WizardResult |
|
31b7f2792
|
167 168 169 170 171 172 173 |
*/
public function getLoginFilterMode() {
$this->getFilterMode('ldapLoginFilterMode');
return $this->result;
}
/**
|
|
6d9380f96
|
174 175 |
* return the state of the User Filter Mode * @return WizardResult |
|
31b7f2792
|
176 177 178 179 180 181 182 |
*/
public function getUserFilterMode() {
$this->getFilterMode('ldapUserFilterMode');
return $this->result;
}
/**
|
|
6d9380f96
|
183 184 |
* return the state of the mode of the specified filter * @param string $confKey contains the access key of the Configuration |
|
31b7f2792
|
185 |
*/ |
|
6d9380f96
|
186 187 |
private function getFilterMode($confKey) {
$mode = $this->configuration->$confKey;
|
|
31b7f2792
|
188 189 190 |
if(is_null($mode)) {
$mode = $this->LFILTER_MODE_ASSISTED;
}
|
|
6d9380f96
|
191 |
$this->result->addChange($confKey, $mode); |
|
31b7f2792
|
192 193 194 |
} /** |
|
6d9380f96
|
195 196 197 |
* detects the available LDAP attributes * @return array The instance's WizardResult instance * @throws \Exception |
|
31b7f2792
|
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 |
*/
private function getUserAttributes() {
if(!$this->checkRequirements(array('ldapHost',
'ldapPort',
'ldapBase',
'ldapUserFilter',
))) {
return false;
}
$cr = $this->getConnection();
if(!$cr) {
throw new \Exception('Could not connect to LDAP');
}
$base = $this->configuration->ldapBase[0];
$filter = $this->configuration->ldapUserFilter;
$rr = $this->ldap->search($cr, $base, $filter, array(), 1, 1);
if(!$this->ldap->isResource($rr)) {
return false;
}
$er = $this->ldap->firstEntry($cr, $rr);
$attributes = $this->ldap->getAttributes($cr, $er);
$pureAttributes = array();
for($i = 0; $i < $attributes['count']; $i++) {
$pureAttributes[] = $attributes[$i];
}
return $pureAttributes;
}
/**
|
|
6d9380f96
|
229 230 |
* detects the available LDAP groups * @return WizardResult the instance's WizardResult instance |
|
31b7f2792
|
231 232 233 234 235 236 237 238 |
*/
public function determineGroupsForGroups() {
return $this->determineGroups('ldap_groupfilter_groups',
'ldapGroupFilterGroups',
false);
}
/**
|
|
6d9380f96
|
239 240 |
* detects the available LDAP groups * @return WizardResult the instance's WizardResult instance |
|
31b7f2792
|
241 242 243 244 245 246 247 |
*/
public function determineGroupsForUsers() {
return $this->determineGroups('ldap_userfilter_groups',
'ldapUserFilterGroups');
}
/**
|
|
6d9380f96
|
248 249 250 251 252 253 |
* detects the available LDAP groups * @param string $dbKey * @param string $confKey * @param bool $testMemberOf * @return WizardResult the instance's WizardResult instance * @throws \Exception |
|
31b7f2792
|
254 |
*/ |
|
6d9380f96
|
255 |
private function determineGroups($dbKey, $confKey, $testMemberOf = true) {
|
|
31b7f2792
|
256 257 258 259 260 261 262 263 264 265 |
if(!$this->checkRequirements(array('ldapHost',
'ldapPort',
'ldapBase',
))) {
return false;
}
$cr = $this->getConnection();
if(!$cr) {
throw new \Exception('Could not connect to LDAP');
}
|
|
6d9380f96
|
266 |
$this->fetchGroups($dbKey, $confKey); |
|
31b7f2792
|
267 268 269 270 271 272 273 274 275 276 277 |
if($testMemberOf) {
$this->configuration->hasMemberOfFilterSupport = $this->testMemberOf();
$this->result->markChange();
if(!$this->configuration->hasMemberOfFilterSupport) {
throw new \Exception('memberOf is not supported by the server');
}
}
return $this->result;
}
|
|
6d9380f96
|
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 |
/**
* fetches all groups from LDAP
* @param string $dbKey
* @param string $confKey
*/
public function fetchGroups($dbKey, $confKey) {
$obclasses = array('posixGroup', 'group', 'zimbraDistributionList', 'groupOfNames');
$ldapAccess = $this->getAccess();
$filterParts = array();
foreach($obclasses as $obclass) {
$filterParts[] = 'objectclass='.$obclass;
}
//we filter for everything
//- that looks like a group and
//- has the group display name set
$filter = $ldapAccess->combineFilterWithOr($filterParts);
$filter = $ldapAccess->combineFilterWithAnd(array($filter, 'cn=*'));
$limit = 400;
$offset = 0;
do {
$result = $ldapAccess->searchGroups($filter, array('cn'), $limit, $offset);
foreach($result as $item) {
$groups[] = $item[0];
}
$offset += $limit;
} while (count($groups) > 0 && count($groups) % $limit === 0);
if(count($groups) > 0) {
natsort($groups);
$this->result->addOptions($dbKey, array_values($groups));
} else {
throw new \Exception(self::$l->t('Could not find the desired feature'));
}
$setFeatures = $this->configuration->$confKey;
if(is_array($setFeatures) && !empty($setFeatures)) {
//something is already configured? pre-select it.
$this->result->addChange($dbKey, $setFeatures);
}
}
|
|
31b7f2792
|
320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 |
public function determineGroupMemberAssoc() {
if(!$this->checkRequirements(array('ldapHost',
'ldapPort',
'ldapGroupFilter',
))) {
return false;
}
$attribute = $this->detectGroupMemberAssoc();
if($attribute === false) {
return false;
}
$this->configuration->setConfiguration(array('ldapGroupMemberAssocAttr' => $attribute));
//so it will be saved on destruct
$this->result->markChange();
return $this->result;
}
/**
|
|
6d9380f96
|
339 340 341 |
* Detects the available object classes * @return WizardResult the instance's WizardResult instance * @throws \Exception |
|
31b7f2792
|
342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 |
*/
public function determineGroupObjectClasses() {
if(!$this->checkRequirements(array('ldapHost',
'ldapPort',
'ldapBase',
))) {
return false;
}
$cr = $this->getConnection();
if(!$cr) {
throw new \Exception('Could not connect to LDAP');
}
$obclasses = array('group', 'posixGroup', '*');
$this->determineFeature($obclasses,
'objectclass',
'ldap_groupfilter_objectclass',
'ldapGroupFilterObjectclass',
false);
return $this->result;
}
/**
|
|
6d9380f96
|
366 367 368 |
* detects the available object classes * @return WizardResult * @throws \Exception |
|
31b7f2792
|
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 |
*/
public function determineUserObjectClasses() {
if(!$this->checkRequirements(array('ldapHost',
'ldapPort',
'ldapBase',
))) {
return false;
}
$cr = $this->getConnection();
if(!$cr) {
throw new \Exception('Could not connect to LDAP');
}
$obclasses = array('inetOrgPerson', 'person', 'organizationalPerson',
'user', 'posixAccount', '*');
$filter = $this->configuration->ldapUserFilter;
//if filter is empty, it is probably the first time the wizard is called
//then, apply suggestions.
$this->determineFeature($obclasses,
'objectclass',
'ldap_userfilter_objectclass',
'ldapUserFilterObjectclass',
empty($filter));
return $this->result;
}
|
|
6d9380f96
|
395 396 397 398 |
/** * @return WizardResult * @throws \Exception */ |
|
31b7f2792
|
399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 |
public function getGroupFilter() {
if(!$this->checkRequirements(array('ldapHost',
'ldapPort',
'ldapBase',
))) {
return false;
}
//make sure the use display name is set
$displayName = $this->configuration->ldapGroupDisplayName;
if(empty($displayName)) {
$d = $this->configuration->getDefaults();
$this->applyFind('ldap_group_display_name',
$d['ldap_group_display_name']);
}
$filter = $this->composeLdapFilter(self::LFILTER_GROUP_LIST);
$this->applyFind('ldap_group_filter', $filter);
return $this->result;
}
|
|
6d9380f96
|
418 419 420 421 |
/** * @return WizardResult * @throws \Exception */ |
|
31b7f2792
|
422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 |
public function getUserListFilter() {
if(!$this->checkRequirements(array('ldapHost',
'ldapPort',
'ldapBase',
))) {
return false;
}
//make sure the use display name is set
$displayName = $this->configuration->ldapUserDisplayName;
if(empty($displayName)) {
$d = $this->configuration->getDefaults();
$this->applyFind('ldap_display_name', $d['ldap_display_name']);
}
$filter = $this->composeLdapFilter(self::LFILTER_USER_LIST);
if(!$filter) {
throw new \Exception('Cannot create filter');
}
$this->applyFind('ldap_userlist_filter', $filter);
return $this->result;
}
|
|
6d9380f96
|
443 444 445 446 |
/** * @return bool|WizardResult * @throws \Exception */ |
|
31b7f2792
|
447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 |
public function getUserLoginFilter() {
if(!$this->checkRequirements(array('ldapHost',
'ldapPort',
'ldapBase',
'ldapUserFilter',
))) {
return false;
}
$filter = $this->composeLdapFilter(self::LFILTER_LOGIN);
if(!$filter) {
throw new \Exception('Cannot create filter');
}
$this->applyFind('ldap_login_filter', $filter);
return $this->result;
}
/**
* Tries to determine the port, requires given Host, User DN and Password
|
|
6d9380f96
|
467 468 |
* @return WizardResult|false WizardResult on success, false otherwise * @throws \Exception |
|
31b7f2792
|
469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 |
*/
public function guessPortAndTLS() {
if(!$this->checkRequirements(array('ldapHost',
))) {
return false;
}
$this->checkHost();
$portSettings = $this->getPortSettingsToTry();
if(!is_array($portSettings)) {
throw new \Exception(print_r($portSettings, true));
}
//proceed from the best configuration and return on first success
foreach($portSettings as $setting) {
$p = $setting['port'];
$t = $setting['tls'];
\OCP\Util::writeLog('user_ldap', 'Wiz: trying port '. $p . ', TLS '. $t, \OCP\Util::DEBUG);
//connectAndBind may throw Exception, it needs to be catched by the
//callee of this method
if($this->connectAndBind($p, $t) === true) {
$config = array('ldapPort' => $p,
'ldapTLS' => intval($t)
);
$this->configuration->setConfiguration($config);
\OCP\Util::writeLog('user_ldap', 'Wiz: detected Port '. $p, \OCP\Util::DEBUG);
$this->result->addChange('ldap_port', $p);
return $this->result;
}
}
//custom port, undetected (we do not brute force)
return false;
}
/**
|
|
6d9380f96
|
505 506 |
* tries to determine a base dn from User DN or LDAP Host * @return WizardResult|false WizardResult on success, false otherwise |
|
31b7f2792
|
507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 |
*/
public function guessBaseDN() {
if(!$this->checkRequirements(array('ldapHost',
'ldapPort',
))) {
return false;
}
//check whether a DN is given in the agent name (99.9% of all cases)
$base = null;
$i = stripos($this->configuration->ldapAgentName, 'dc=');
if($i !== false) {
$base = substr($this->configuration->ldapAgentName, $i);
if($this->testBaseDN($base)) {
$this->applyFind('ldap_base', $base);
return $this->result;
}
}
//this did not help :(
//Let's see whether we can parse the Host URL and convert the domain to
//a base DN
$domain = Helper::getDomainFromURL($this->configuration->ldapHost);
if(!$domain) {
return false;
}
$dparts = explode('.', $domain);
$base2 = implode('dc=', $dparts);
if($base !== $base2 && $this->testBaseDN($base2)) {
$this->applyFind('ldap_base', $base2);
return $this->result;
}
return false;
}
/**
|
|
6d9380f96
|
545 |
* sets the found value for the configuration key in the WizardResult |
|
31b7f2792
|
546 |
* as well as in the Configuration instance |
|
6d9380f96
|
547 548 |
* @param string $key the configuration key * @param string $value the (detected) value |
|
31b7f2792
|
549 550 551 552 553 554 555 556 |
*
*/
private function applyFind($key, $value) {
$this->result->addChange($key, $value);
$this->configuration->setConfiguration(array($key => $value));
}
/**
|
|
6d9380f96
|
557 |
* Checks, whether a port was entered in the Host configuration |
|
31b7f2792
|
558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 |
* field. In this case the port will be stripped off, but also stored as
* setting.
*/
private function checkHost() {
$host = $this->configuration->ldapHost;
$hostInfo = parse_url($host);
//removes Port from Host
if(is_array($hostInfo) && isset($hostInfo['port'])) {
$port = $hostInfo['port'];
$host = str_replace(':'.$port, '', $host);
$this->applyFind('ldap_host', $host);
$this->applyFind('ldap_port', $port);
}
}
/**
|
|
6d9380f96
|
575 |
* tries to detect the group member association attribute which is |
|
31b7f2792
|
576 |
* one of 'uniqueMember', 'memberUid', 'member' |
|
6d9380f96
|
577 578 |
* @return string|false, string with the attribute name, false on error * @throws \Exception |
|
31b7f2792
|
579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 |
*/
private function detectGroupMemberAssoc() {
$possibleAttrs = array('uniqueMember', 'memberUid', 'member', 'unfugasdfasdfdfa');
$filter = $this->configuration->ldapGroupFilter;
if(empty($filter)) {
return false;
}
$cr = $this->getConnection();
if(!$cr) {
throw new \Exception('Could not connect to LDAP');
}
$base = $this->configuration->ldapBase[0];
$rr = $this->ldap->search($cr, $base, $filter, $possibleAttrs);
if(!$this->ldap->isResource($rr)) {
return false;
}
$er = $this->ldap->firstEntry($cr, $rr);
while(is_resource($er)) {
|
|
6d9380f96
|
597 |
$this->ldap->getDN($cr, $er); |
|
31b7f2792
|
598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 |
$attrs = $this->ldap->getAttributes($cr, $er);
$result = array();
for($i = 0; $i < count($possibleAttrs); $i++) {
if(isset($attrs[$possibleAttrs[$i]])) {
$result[$possibleAttrs[$i]] = $attrs[$possibleAttrs[$i]]['count'];
}
}
if(!empty($result)) {
natsort($result);
return key($result);
}
$er = $this->ldap->nextEntry($cr, $er);
}
return false;
}
/**
|
|
6d9380f96
|
617 618 |
* Checks whether for a given BaseDN results will be returned * @param string $base the BaseDN to test |
|
31b7f2792
|
619 |
* @return bool true on success, false otherwise |
|
6d9380f96
|
620 |
* @throws \Exception |
|
31b7f2792
|
621 622 623 624 625 626 627 628 629 630 631 |
*/
private function testBaseDN($base) {
$cr = $this->getConnection();
if(!$cr) {
throw new \Exception('Could not connect to LDAP');
}
//base is there, let's validate it. If we search for anything, we should
//get a result set > 0 on a proper base
$rr = $this->ldap->search($cr, $base, 'objectClass=*', array('dn'), 0, 1);
if(!$this->ldap->isResource($rr)) {
|
|
a293d369c
|
632 633 634 635 |
$errorNo = $this->ldap->errno($cr);
$errorMsg = $this->ldap->error($cr);
\OCP\Util::writeLog('user_ldap', 'Wiz: Could not search base '.$base.
' Error '.$errorNo.': '.$errorMsg, \OCP\Util::INFO);
|
|
31b7f2792
|
636 637 638 639 640 641 642 |
return false; } $entries = $this->ldap->countEntries($cr, $rr); return ($entries !== false) && ($entries > 0); } /** |
|
6d9380f96
|
643 |
* Checks whether the server supports memberOf in LDAP Filter. |
|
31b7f2792
|
644 645 |
* Requires that groups are determined, thus internally called from within * determineGroups() |
|
6d9380f96
|
646 647 |
* @return bool true if it does, false otherwise * @throws \Exception |
|
31b7f2792
|
648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 |
*/
private function testMemberOf() {
$cr = $this->getConnection();
if(!$cr) {
throw new \Exception('Could not connect to LDAP');
}
if(!is_array($this->configuration->ldapBase)
|| !isset($this->configuration->ldapBase[0])) {
return false;
}
$base = $this->configuration->ldapBase[0];
$filterPrefix = '(&(objectclass=*)(memberOf=';
$filterSuffix = '))';
foreach($this->resultCache as $dn => $properties) {
if(!isset($properties['cn'])) {
//assuming only groups have their cn cached :)
continue;
}
|
|
6d9380f96
|
667 |
$filter = strtolower($filterPrefix . $dn . $filterSuffix); |
|
31b7f2792
|
668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 |
$rr = $this->ldap->search($cr, $base, $filter, array('dn'));
if(!$this->ldap->isResource($rr)) {
continue;
}
$entries = $this->ldap->countEntries($cr, $rr);
//we do not know which groups are empty, so test any and return
//success on the first match that returns at least one user
if(($entries !== false) && ($entries > 0)) {
return true;
}
}
return false;
}
/**
|
|
6d9380f96
|
684 685 |
* creates an LDAP Filter from given configuration * @param integer $filterType int, for which use case the filter shall be created |
|
31b7f2792
|
686 687 |
* can be any of self::LFILTER_USER_LIST, self::LFILTER_LOGIN or * self::LFILTER_GROUP_LIST |
|
6d9380f96
|
688 689 |
* @return string|false string with the filter on success, false otherwise * @throws \Exception |
|
31b7f2792
|
690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 |
*/
private function composeLdapFilter($filterType) {
$filter = '';
$parts = 0;
switch ($filterType) {
case self::LFILTER_USER_LIST:
$objcs = $this->configuration->ldapUserFilterObjectclass;
//glue objectclasses
if(is_array($objcs) && count($objcs) > 0) {
$filter .= '(|';
foreach($objcs as $objc) {
$filter .= '(objectclass=' . $objc . ')';
}
$filter .= ')';
$parts++;
}
//glue group memberships
if($this->configuration->hasMemberOfFilterSupport) {
$cns = $this->configuration->ldapUserFilterGroups;
if(is_array($cns) && count($cns) > 0) {
$filter .= '(|';
$cr = $this->getConnection();
if(!$cr) {
throw new \Exception('Could not connect to LDAP');
}
$base = $this->configuration->ldapBase[0];
foreach($cns as $cn) {
$rr = $this->ldap->search($cr, $base, 'cn=' . $cn, array('dn'));
if(!$this->ldap->isResource($rr)) {
continue;
}
$er = $this->ldap->firstEntry($cr, $rr);
$dn = $this->ldap->getDN($cr, $er);
$filter .= '(memberof=' . $dn . ')';
}
$filter .= ')';
}
$parts++;
}
//wrap parts in AND condition
if($parts > 1) {
$filter = '(&' . $filter . ')';
}
if(empty($filter)) {
$filter = '(objectclass=*)';
}
break;
case self::LFILTER_GROUP_LIST:
$objcs = $this->configuration->ldapGroupFilterObjectclass;
//glue objectclasses
if(is_array($objcs) && count($objcs) > 0) {
$filter .= '(|';
foreach($objcs as $objc) {
$filter .= '(objectclass=' . $objc . ')';
}
$filter .= ')';
$parts++;
}
//glue group memberships
$cns = $this->configuration->ldapGroupFilterGroups;
if(is_array($cns) && count($cns) > 0) {
$filter .= '(|';
$base = $this->configuration->ldapBase[0];
foreach($cns as $cn) {
$filter .= '(cn=' . $cn . ')';
}
$filter .= ')';
}
$parts++;
//wrap parts in AND condition
if($parts > 1) {
$filter = '(&' . $filter . ')';
}
break;
case self::LFILTER_LOGIN:
$ulf = $this->configuration->ldapUserFilter;
$loginpart = '=%uid';
$filterUsername = '';
$userAttributes = $this->getUserAttributes();
$userAttributes = array_change_key_case(array_flip($userAttributes));
$parts = 0;
$x = $this->configuration->ldapLoginFilterUsername;
if($this->configuration->ldapLoginFilterUsername === '1') {
$attr = '';
if(isset($userAttributes['uid'])) {
$attr = 'uid';
} else if(isset($userAttributes['samaccountname'])) {
$attr = 'samaccountname';
} else if(isset($userAttributes['cn'])) {
//fallback
$attr = 'cn';
}
if(!empty($attr)) {
$filterUsername = '(' . $attr . $loginpart . ')';
$parts++;
}
}
$filterEmail = '';
if($this->configuration->ldapLoginFilterEmail === '1') {
$filterEmail = '(|(mailPrimaryAddress=%uid)(mail=%uid))';
$parts++;
}
$filterAttributes = '';
$attrsToFilter = $this->configuration->ldapLoginFilterAttributes;
if(is_array($attrsToFilter) && count($attrsToFilter) > 0) {
$filterAttributes = '(|';
foreach($attrsToFilter as $attribute) {
|
|
6d9380f96
|
802 |
$filterAttributes .= '(' . $attribute . $loginpart . ')';
|
|
31b7f2792
|
803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 |
}
$filterAttributes .= ')';
$parts++;
}
$filterLogin = '';
if($parts > 1) {
$filterLogin = '(|';
}
$filterLogin .= $filterUsername;
$filterLogin .= $filterEmail;
$filterLogin .= $filterAttributes;
if($parts > 1) {
$filterLogin .= ')';
}
$filter = '(&'.$ulf.$filterLogin.')';
break;
}
\OCP\Util::writeLog('user_ldap', 'Wiz: Final filter '.$filter, \OCP\Util::DEBUG);
return $filter;
}
/**
* Connects and Binds to an LDAP Server
|
|
6d9380f96
|
830 831 832 833 834 |
* @param int $port the port to connect with * @param bool $tls whether startTLS is to be used * @param bool $ncc * @return bool * @throws \Exception |
|
31b7f2792
|
835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 |
*/
private function connectAndBind($port = 389, $tls = false, $ncc = false) {
if($ncc) {
//No certificate check
//FIXME: undo afterwards
putenv('LDAPTLS_REQCERT=never');
}
//connect, does not really trigger any server communication
\OCP\Util::writeLog('user_ldap', 'Wiz: Checking Host Info ', \OCP\Util::DEBUG);
$host = $this->configuration->ldapHost;
$hostInfo = parse_url($host);
if(!$hostInfo) {
throw new \Exception($this->l->t('Invalid Host'));
}
if(isset($hostInfo['scheme'])) {
if(isset($hostInfo['port'])) {
//problem
} else {
$host .= ':' . $port;
}
}
\OCP\Util::writeLog('user_ldap', 'Wiz: Attempting to connect ', \OCP\Util::DEBUG);
$cr = $this->ldap->connect($host, $port);
if(!is_resource($cr)) {
throw new \Exception($this->l->t('Invalid Host'));
}
\OCP\Util::writeLog('user_ldap', 'Wiz: Setting LDAP Options ', \OCP\Util::DEBUG);
//set LDAP options
|
|
a293d369c
|
865 |
$this->ldap->setOption($cr, LDAP_OPT_PROTOCOL_VERSION, 3); |
|
6d9380f96
|
866 |
$this->ldap->setOption($cr, LDAP_OPT_REFERRALS, 0); |
|
a293d369c
|
867 |
$this->ldap->setOption($cr, LDAP_OPT_NETWORK_TIMEOUT, self::LDAP_NW_TIMEOUT); |
|
31b7f2792
|
868 |
if($tls) {
|
|
a293d369c
|
869 870 871 872 |
$isTlsWorking = @$this->ldap->startTls($cr);
if(!$isTlsWorking) {
return false;
}
|
|
31b7f2792
|
873 874 875 876 877 878 879 880 881 882 883 884 885 |
}
\OCP\Util::writeLog('user_ldap', 'Wiz: Attemping to Bind ', \OCP\Util::DEBUG);
//interesting part: do the bind!
$login = $this->ldap->bind($cr,
$this->configuration->ldapAgentName,
$this->configuration->ldapAgentPassword);
if($login === true) {
$this->ldap->unbind($cr);
if($ncc) {
throw new \Exception('Certificate cannot be validated.');
}
|
|
6d9380f96
|
886 |
\OCP\Util::writeLog('user_ldap', 'Wiz: Bind successful to Port '. $port . ' TLS ' . intval($tls), \OCP\Util::DEBUG);
|
|
31b7f2792
|
887 888 |
return true; } |
|
6d9380f96
|
889 |
$errNo = $this->ldap->errno($cr); |
|
31b7f2792
|
890 891 |
$error = ldap_error($cr); $this->ldap->unbind($cr); |
|
6d9380f96
|
892 |
if($errNo === -1 || ($errNo === 2 && $ncc)) {
|
|
31b7f2792
|
893 894 |
//host, port or TLS wrong return false; |
|
6d9380f96
|
895 |
} else if ($errNo === 2) {
|
|
31b7f2792
|
896 897 898 899 900 901 |
return $this->connectAndBind($port, $tls, true); } throw new \Exception($error); } /** |
|
6d9380f96
|
902 |
* checks whether a valid combination of agent and password has been |
|
31b7f2792
|
903 |
* provided (either two values or nothing for anonymous connect) |
|
6d9380f96
|
904 |
* @return bool, true if everything is fine, false otherwise |
|
31b7f2792
|
905 906 907 908 909 910 911 912 |
*/
private function checkAgentRequirements() {
$agent = $this->configuration->ldapAgentName;
$pwd = $this->configuration->ldapAgentPassword;
return ( (!empty($agent) && !empty($pwd))
|| (empty($agent) && empty($pwd)));
}
|
|
6d9380f96
|
913 914 915 916 |
/** * @param array $reqs * @return bool */ |
|
31b7f2792
|
917 918 919 920 921 922 923 924 925 926 927 928 |
private function checkRequirements($reqs) {
$this->checkAgentRequirements();
foreach($reqs as $option) {
$value = $this->configuration->$option;
if(empty($value)) {
return false;
}
}
return true;
}
/**
|
|
6d9380f96
|
929 |
* does a cumulativeSearch on LDAP to get different values of a |
|
31b7f2792
|
930 |
* specified attribute |
|
6d9380f96
|
931 932 933 934 935 |
* @param string[] $filters array, the filters that shall be used in the search * @param string $attr the attribute of which a list of values shall be returned * @param int $dnReadLimit the amount of how many DNs should be analyzed. * The lower, the faster * @param string $maxF string. if not null, this variable will have the filter that |
|
31b7f2792
|
936 |
* yields most result entries |
|
6d9380f96
|
937 |
* @return array|false an array with the values on success, false otherwise |
|
31b7f2792
|
938 |
*/ |
|
6d9380f96
|
939 |
public function cumulativeSearchOnAttribute($filters, $attr, $dnReadLimit = 3, &$maxF = null) {
|
|
31b7f2792
|
940 941 942 943 944 945 946 947 948 |
$dnRead = array();
$foundItems = array();
$maxEntries = 0;
if(!is_array($this->configuration->ldapBase)
|| !isset($this->configuration->ldapBase[0])) {
return false;
}
$base = $this->configuration->ldapBase[0];
$cr = $this->getConnection();
|
|
837968727
|
949 |
if(!$this->ldap->isResource($cr)) {
|
|
31b7f2792
|
950 951 |
return false; } |
|
837968727
|
952 953 954 955 |
$lastFilter = null;
if(isset($filters[count($filters)-1])) {
$lastFilter = $filters[count($filters)-1];
}
|
|
31b7f2792
|
956 |
foreach($filters as $filter) {
|
|
6d9380f96
|
957 |
if($lastFilter === $filter && count($foundItems) > 0) {
|
|
837968727
|
958 |
//skip when the filter is a wildcard and results were found |
|
31b7f2792
|
959 960 961 962 963 964 965 966 967 968 969 970 971 |
continue;
}
$rr = $this->ldap->search($cr, $base, $filter, array($attr));
if(!$this->ldap->isResource($rr)) {
continue;
}
$entries = $this->ldap->countEntries($cr, $rr);
$getEntryFunc = 'firstEntry';
if(($entries !== false) && ($entries > 0)) {
if(!is_null($maxF) && $entries > $maxEntries) {
$maxEntries = $entries;
$maxF = $filter;
}
|
|
837968727
|
972 |
$dnReadCount = 0; |
|
31b7f2792
|
973 974 |
do {
$entry = $this->ldap->$getEntryFunc($cr, $rr);
|
|
837968727
|
975 |
$getEntryFunc = 'nextEntry'; |
|
31b7f2792
|
976 977 978 979 980 981 982 983 984 985 986 987 |
if(!$this->ldap->isResource($entry)) {
continue 2;
}
$attributes = $this->ldap->getAttributes($cr, $entry);
$dn = $this->ldap->getDN($cr, $entry);
if($dn === false || in_array($dn, $dnRead)) {
continue;
}
$newItems = array();
$state = $this->getAttributeValuesFromEntry($attributes,
$attr,
$newItems);
|
|
837968727
|
988 |
$dnReadCount++; |
|
31b7f2792
|
989 990 991 |
$foundItems = array_merge($foundItems, $newItems); $this->resultCache[$dn][$attr] = $newItems; $dnRead[] = $dn; |
|
31b7f2792
|
992 |
$rr = $entry; //will be expected by nextEntry next round |
|
837968727
|
993 994 995 |
} while(($state === self::LRESULT_PROCESSED_SKIP || $this->ldap->isResource($entry)) && ($dnReadLimit === 0 || $dnReadCount < $dnReadLimit)); |
|
31b7f2792
|
996 997 998 999 1000 1001 1002 |
} } return array_unique($foundItems); } /** |
|
6d9380f96
|
1003 1004 1005 1006 1007 |
* determines if and which $attr are available on the LDAP server * @param string[] $objectclasses the objectclasses to use as search filter * @param string $attr the attribute to look for * @param string $dbkey the dbkey of the setting the feature is connected to * @param string $confkey the confkey counterpart for the $dbkey as used in the |
|
31b7f2792
|
1008 |
* Configuration class |
|
6d9380f96
|
1009 |
* @param bool $po whether the objectClass with most result entries |
|
31b7f2792
|
1010 |
* shall be pre-selected via the result |
|
6d9380f96
|
1011 1012 |
* @return array, list of found items. * @throws \Exception |
|
31b7f2792
|
1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 |
*/
private function determineFeature($objectclasses, $attr, $dbkey, $confkey, $po = false) {
$cr = $this->getConnection();
if(!$cr) {
throw new \Exception('Could not connect to LDAP');
}
$p = 'objectclass=';
foreach($objectclasses as $key => $value) {
$objectclasses[$key] = $p.$value;
}
$maxEntryObjC = '';
|
|
837968727
|
1024 1025 1026 |
//how deep to dig? //When looking for objectclasses, testing few entries is sufficient, |
|
6d9380f96
|
1027 |
$dig = 3; |
|
837968727
|
1028 |
|
|
31b7f2792
|
1029 1030 |
$availableFeatures = $this->cumulativeSearchOnAttribute($objectclasses, $attr, |
|
6d9380f96
|
1031 |
$dig, $maxEntryObjC); |
|
31b7f2792
|
1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 |
if(is_array($availableFeatures)
&& count($availableFeatures) > 0) {
natcasesort($availableFeatures);
//natcasesort keeps indices, but we must get rid of them for proper
//sorting in the web UI. Therefore: array_values
$this->result->addOptions($dbkey, array_values($availableFeatures));
} else {
throw new \Exception(self::$l->t('Could not find the desired feature'));
}
$setFeatures = $this->configuration->$confkey;
if(is_array($setFeatures) && !empty($setFeatures)) {
//something is already configured? pre-select it.
$this->result->addChange($dbkey, $setFeatures);
} else if($po && !empty($maxEntryObjC)) {
//pre-select objectclass with most result entries
$maxEntryObjC = str_replace($p, '', $maxEntryObjC);
$this->applyFind($dbkey, $maxEntryObjC);
$this->result->addChange($dbkey, $maxEntryObjC);
}
return $availableFeatures;
}
/**
|
|
6d9380f96
|
1057 1058 1059 1060 |
* appends a list of values fr * @param resource $result the return value from ldap_get_attributes * @param string $attribute the attribute values to look for * @param array &$known new values will be appended here |
|
31b7f2792
|
1061 1062 1063 1064 1065 1066 1067 1068 1069 |
* @return int, state on of the class constants LRESULT_PROCESSED_OK,
* LRESULT_PROCESSED_INVALID or LRESULT_PROCESSED_SKIP
*/
private function getAttributeValuesFromEntry($result, $attribute, &$known) {
if(!is_array($result)
|| !isset($result['count'])
|| !$result['count'] > 0) {
return self::LRESULT_PROCESSED_INVALID;
}
|
|
6d9380f96
|
1070 |
// strtolower on all keys for proper comparison |
|
31b7f2792
|
1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 |
$result = \OCP\Util::mb_array_change_key_case($result);
$attribute = strtolower($attribute);
if(isset($result[$attribute])) {
foreach($result[$attribute] as $key => $val) {
if($key === 'count') {
continue;
}
if(!in_array($val, $known)) {
$known[] = $val;
}
}
return self::LRESULT_PROCESSED_OK;
} else {
return self::LRESULT_PROCESSED_SKIP;
}
}
|
|
6d9380f96
|
1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 |
/**
* creates and returns an Access instance
* @return \OCA\user_ldap\lib\Access
*/
private function getAccess() {
$con = new Connection($this->ldap, '', null);
$con->setConfiguration($this->configuration->getConfiguration());
$con->ldapConfigurationActive = true;
$con->setIgnoreValidation(true);
$userManager = new user\Manager(
\OC::$server->getConfig(),
new FilesystemHelper(),
new LogWrapper(),
\OC::$server->getAvatarManager(),
new \OCP\Image());
$ldapAccess = new Access($con, $this->ldap, $userManager);
return $ldapAccess;
}
/**
* @return bool|mixed
*/
|
|
31b7f2792
|
1111 1112 1113 1114 1115 1116 1117 1118 1119 |
private function getConnection() {
if(!is_null($this->cr)) {
return $this->cr;
}
$cr = $this->ldap->connect(
$this->configuration->ldapHost.':'.$this->configuration->ldapPort,
$this->configuration->ldapPort);
$this->ldap->setOption($cr, LDAP_OPT_PROTOCOL_VERSION, 3);
|
|
a293d369c
|
1120 |
$this->ldap->setOption($cr, LDAP_OPT_REFERRALS, 0); |
|
31b7f2792
|
1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 |
$this->ldap->setOption($cr, LDAP_OPT_NETWORK_TIMEOUT, self::LDAP_NW_TIMEOUT);
if($this->configuration->ldapTLS === 1) {
$this->ldap->startTls($cr);
}
$lo = @$this->ldap->bind($cr,
$this->configuration->ldapAgentName,
$this->configuration->ldapAgentPassword);
if($lo === true) {
$this->$cr = $cr;
return $cr;
}
return false;
}
|
|
6d9380f96
|
1136 1137 1138 |
/** * @return array */ |
|
31b7f2792
|
1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 |
private function getDefaultLdapPortSettings() {
static $settings = array(
array('port' => 7636, 'tls' => false),
array('port' => 636, 'tls' => false),
array('port' => 7389, 'tls' => true),
array('port' => 389, 'tls' => true),
array('port' => 7389, 'tls' => false),
array('port' => 389, 'tls' => false),
);
return $settings;
}
|
|
6d9380f96
|
1150 1151 1152 |
/** * @return array */ |
|
31b7f2792
|
1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 |
private function getPortSettingsToTry() {
//389 ← LDAP / Unencrypted or StartTLS
//636 ← LDAPS / SSL
//7xxx ← UCS. need to be checked first, because both ports may be open
$host = $this->configuration->ldapHost;
$port = intval($this->configuration->ldapPort);
$portSettings = array();
//In case the port is already provided, we will check this first
if($port > 0) {
$hostInfo = parse_url($host);
if(!(is_array($hostInfo)
&& isset($hostInfo['scheme'])
&& stripos($hostInfo['scheme'], 'ldaps') !== false)) {
$portSettings[] = array('port' => $port, 'tls' => true);
}
$portSettings[] =array('port' => $port, 'tls' => false);
}
//default ports
$portSettings = array_merge($portSettings,
$this->getDefaultLdapPortSettings());
return $portSettings;
}
|
|
6d9380f96
|
1178 |
} |