24 define(
'IL_LDAP_BIND_DEFAULT', 0);
25 define(
'IL_LDAP_BIND_ADMIN', 1);
26 define(
'IL_LDAP_BIND_TEST', 2);
27 define(
'IL_LDAP_BIND_AUTH', 10);
90 $this->ldap_server_url = $a_url;
92 $this->ldap_server_url = $this->
settings->getUrl();
96 $this->log =
$GLOBALS[
'DIC']->logger()->auth();
149 if (strlen($this->
settings->getGroupName())) {
150 $this->log->debug(
'Searching for group members.');
152 $groups = $this->
settings->getGroupNames();
153 if (count($groups) <= 1) {
156 foreach ($groups as $group) {
161 if (!strlen($this->
settings->getGroupName()) or $this->
settings->isMembershipOptional()) {
162 $this->log->info(
'Start reading all users...');
164 #throw new ilLDAPQueryException('LDAP: Called import of users without specifying group restrictions. NOT IMPLEMENTED YET!'); 166 return $this->users ? $this->users : array();
180 public function query($a_search_base, $a_filter, $a_scope, $a_attributes)
182 $res = $this->
queryByScope($a_scope, $a_search_base, $a_filter, $a_attributes);
183 if (
$res ===
false) {
186 'DN: %s, Filter: %s, Scope: %s',
201 public function modAdd($a_dn, $a_attribute)
203 if (@ldap_mod_add($this->lh, $a_dn, $a_attribute)) {
217 if (@ldap_mod_del($this->lh, $a_dn, $a_attribute)) {
234 if (($dn = $this->
settings->getSearchBase()) && substr($dn, -1) !=
',') {
237 $dn .= $this->
settings->getBaseDN();
244 $this->log->warning(
'Using LDAP with paging failed. Trying to use fallback.');
251 if (!$tmp_result->numRows()) {
252 $this->log->notice(
'No users found. Aborting.');
254 $this->log->info(
'Found ' . $tmp_result->numRows() .
' users.');
255 $attribute = strtolower($this->
settings->getUserAttribute());
256 foreach ($tmp_result->getRows() as
$data) {
257 if (isset(
$data[$attribute])) {
260 $this->log->warning(
'Unknown error. No user attribute found.');
277 $filter =
'(&' . $this->
settings->getFilter();
278 $filter .= (
'(' . $this->
settings->getUserAttribute() .
'=*))');
279 $this->log->info(
'Searching with ldap search and filter ' . $filter .
' in ' . $dn);
283 $estimated_results = 0;
286 $res = ldap_control_paged_result($this->lh, self::PAGINATION_SIZE,
true, $cookie);
287 if (
$res ===
false) {
292 $this->log->warning(
'Result pagination failed with message: ' . $e->getMessage());
300 array($this->
settings->getUserAttribute())
302 $tmp_result->setResult($res);
305 ldap_control_paged_result_response($this->lh, $res, $cookie, $estimated_results);
306 $this->log->debug(
'Estimated number of results: ' . $estimated_results);
308 $this->log->warning(
'Result pagination failed with message: ' . $e->getMessage());
311 }
while ($cookie !== null && $cookie !=
'');
314 ldap_control_paged_result($this->lh, 10000,
false, $cookie);
326 $filter = $this->
settings->getFilter();
327 $page_filter = array(
'a',
'b',
'c',
'd',
'e',
'f',
'g',
'h',
'i',
'j',
'k',
'l',
'm',
'n',
'o',
'p',
'q',
'r',
's',
't',
'u',
'v',
'w',
'x',
'y',
'z',
'-');
328 $chars = array(
'a',
'b',
'c',
'd',
'e',
'f',
'g',
'h',
'i',
'j',
'k',
'l',
'm',
'n',
'o',
'p',
'q',
'r',
's',
't',
'u',
'v',
'w',
'x',
'y',
'z');
331 foreach ($page_filter as $letter) {
333 $new_filter .= $filter;
337 $new_filter .= (
'(!(|');
338 foreach ($chars as $char) {
339 $new_filter .= (
'(' . $this->
settings->getUserAttribute() .
'=' . $char .
'*)');
341 $new_filter .=
')))';
345 $new_filter .= (
'(' . $this->
settings->getUserAttribute() .
'=' . $letter .
'*))');
349 $this->log->info(
'Searching with ldap search and filter ' . $new_filter .
' in ' . $dn);
354 array($this->
settings->getUserAttribute())
356 $tmp_result->setResult(
$res);
371 $group_names = $this->
getServer()->getGroupNames();
373 if (!count($group_names)) {
374 $this->
getLogger()->debug(
'No LDAP group restrictions found');
378 $group_dn = $this->
getServer()->getGroupDN();
381 (substr($group_dn, -1) !=
',')
385 $group_dn .= $this->
getServer()->getBaseDN();
387 foreach ($group_names as $group) {
388 $user = $a_ldap_user_name;
389 if ($this->
getServer()->enabledGroupMemberIsDN()) {
390 if ($this->
getServer()->enabledEscapeDN()) {
391 $user = ldap_escape($ldap_user_data[
'dn'],
"", LDAP_ESCAPE_FILTER);
393 $user = $ldap_user_data[
'dn'];
398 '(&(%s=%s)(%s=%s)%s)',
405 $this->
getLogger()->debug(
'Current group search base: ' . $group_dn);
406 $this->
getLogger()->debug(
'Current group filter: ' . $filter);
419 $group_result = $tmp_result->getRows();
421 $this->
getLogger()->debug(
'Group query returned: ');
424 if (count($group_result)) {
430 if ($this->
getServer()->isMembershipOptional()) {
431 $this->
getLogger()->debug(
'Group restrictions failed, checking user filter.');
432 if ($this->
readUserData($a_ldap_user_name,
true,
true)) {
433 $this->
getLogger()->debug(
'User filter matches.');
437 $this->
getLogger()->debug(
'Group restrictions failed.');
450 $group_name = strlen($a_name) ? $a_name : $this->
settings->getGroupName();
455 $this->
settings->getGroupAttribute(),
462 if (($gdn = $this->
settings->getGroupDN()) && substr($gdn, -1) !=
',') {
465 $gdn .= $this->
settings->getBaseDN();
467 $this->log->debug(
'Using filter ' . $filter);
468 $this->log->debug(
'Using DN ' . $gdn);
473 array($this->
settings->getGroupMember())
478 $group_data = $tmp_result->getRows();
481 if (!$tmp_result->numRows()) {
482 $this->log->info(
'No group found.');
486 $attribute_name = strtolower($this->
settings->getGroupMember());
489 foreach ($group_data as
$data) {
490 if (is_array($data[$attribute_name])) {
491 $this->log->debug(
'Found ' . count($data[$attribute_name]) .
' group members for group ' . $data[
'dn']);
492 foreach ($data[$attribute_name] as
$name) {
496 $this->
readUserData($data[$attribute_name],
true,
true);
509 private function readUserData($a_name, $a_check_dn =
false, $a_try_group_user_filter =
false)
511 $filter = $this->
settings->getFilter();
512 if ($a_try_group_user_filter) {
513 if ($this->
settings->isMembershipOptional()) {
514 $filter = $this->
settings->getGroupUserFilter();
519 if ($this->
settings->enabledGroupMemberIsDN() and $a_check_dn) {
521 #$res = $this->queryByScope(IL_LDAP_SCOPE_BASE,$dn,$filter,$this->user_fields); 523 $fields = array_merge($this->user_fields, array(
'useraccountcontrol'));
528 $this->
settings->getUserAttribute(),
534 if (($dn = $this->
settings->getSearchBase()) && substr($dn, -1) !=
',') {
537 $dn .= $this->
settings->getBaseDN();
538 $fields = array_merge($this->user_fields, array(
'useraccountcontrol'));
545 if (!$tmp_result->numRows()) {
546 $this->log->info(
'LDAP: No user data found for: ' . $a_name);
551 if ($user_data = $tmp_result->get()) {
552 if (isset($user_data[
'useraccountcontrol'])) {
553 if (($user_data[
'useraccountcontrol'] & 0x02)) {
554 $this->log->notice(
'LDAP: ' . $a_name .
' account disabled.');
559 $account = $user_data[strtolower($this->
settings->getUserAttribute())];
560 if (is_array($account)) {
561 $user_ext = strtolower(array_shift($account));
563 $user_ext = strtolower($account);
567 $auth_mode = $this->
settings->getAuthenticationMappingKey();
569 $this->users[$user_ext] = $user_data;
580 return $this->
settings->getAuthenticationMappingKey();
592 private function queryByScope($a_scope, $a_base_dn, $a_filter, $a_attributes)
594 $a_filter = $a_filter ? $a_filter :
"(objectclass=*)";
598 $res = @ldap_search($this->lh, $a_base_dn, $a_filter, $a_attributes);
602 $res = @ldap_list($this->lh, $a_base_dn, $a_filter, $a_attributes);
607 $res = @ldap_read($this->lh, $a_base_dn, $a_filter, $a_attributes);
611 $this->log->warning(
"LDAP: LDAPQuery: Unknown search scope");
614 $error = ldap_error($this->lh);
615 if (strcmp(
'Success', $error) !== 0) {
617 $this->
getLogger()->warning(
'Base DN:' . $a_base_dn);
618 $this->
getLogger()->warning(
'Filter: ' . $a_filter);
633 $this->lh = @ldap_connect($this->ldap_server_url);
640 if (!ldap_set_option($this->lh, LDAP_OPT_PROTOCOL_VERSION, $this->
settings->getVersion())) {
644 if ($this->
settings->isActiveReferrer()) {
645 if (!ldap_set_option($this->lh, LDAP_OPT_REFERRALS,
true)) {
648 #@ldap_set_rebind_proc($this->lh,'referralRebind'); 650 ldap_set_option($this->lh, LDAP_OPT_REFERRALS,
false);
651 $this->log->debug(
'Switching referrals to false.');
654 if ($this->
settings->isActiveTLS()) {
655 if (!ldap_start_tls($this->lh)) {
671 switch ($a_binding_type) {
680 strlen($this->
settings->getBindUser())
682 $user = $this->
settings->getBindUser();
685 define(
'IL_LDAP_REBIND_USER', $user);
686 define(
'IL_LDAP_REBIND_PASS',
$pass);
687 $this->log->debug(
'Bind as ' . $user);
690 $this->log->debug(
'Bind anonymous');
695 $user = $this->
settings->getRoleBindDN();
698 if (!strlen($user) or !strlen(
$pass)) {
699 $user = $this->
settings->getBindUser();
703 define(
'IL_LDAP_REBIND_USER', $user);
704 define(
'IL_LDAP_REBIND_PASS',
$pass);
708 $this->log->debug(
'Trying to bind as: ' . $a_user_dn);
718 if (!@ldap_bind($this->lh, $user,
$pass)) {
719 throw new ilLDAPQueryException(
'LDAP: Cannot bind as ' . $user .
' with message: ' . ldap_err2str(ldap_errno($this->lh)) .
' Trying fallback...', ldap_errno($this->lh));
721 $this->log->debug(
'Bind successful.');
734 include_once(
'Services/LDAP/classes/class.ilLDAPRoleAssignmentRules.php');
736 $this->user_fields = array_merge(
737 array($this->
settings->getUserAttribute()),
739 $this->mapping->getFields(),
755 @ldap_unbind($this->lh);
770 @ldap_unbind($this->lh);
780 if ($this->
getServer()->getVersion() != 3) {
781 $this->log->info(
'Pagination control unavailable for ldap v' . $this->
getServer()->getVersion());
785 $result = ldap_read($this->lh,
'',
'(objectClass=*)', [self::IL_LDAP_SUPPORTED_CONTROL]);
787 $this->log->warning(
'Failed to query for pagination control');
790 $entries = (array) (ldap_get_entries($this->lh,
$result)[0] ?? []);
792 array_key_exists(strtolower(self::IL_LDAP_SUPPORTED_CONTROL), $entries) &&
793 is_array($entries[strtolower(self::IL_LDAP_SUPPORTED_CONTROL)]) &&
794 in_array(self::IL_LDAP_CONTROL_PAGEDRESULTS, $entries[strtolower(self::IL_LDAP_SUPPORTED_CONTROL)])
796 $this->log->info(
'Using paged control');
799 $this->log->info(
'Paged control disabled');
808 $ilLog = $DIC[
'ilLog'];
810 $ilLog->write(
'LDAP: Called referralRebind.');
812 ldap_set_option($a_ds, LDAP_OPT_PROTOCOL_VERSION, 3);
814 if (!ldap_bind($a_ds, IL_LDAP_REBIND_USER, IL_LDAP_REBIND_PASS)) {
815 $ilLog->write(
'LDAP: Rebind failed');
fetchUsers()
Fetch all users.
const IL_LDAP_CONTROL_PAGEDRESULTS
modAdd($a_dn, $a_attribute)
Add value to an existing attribute.
static _getInstanceByServerId($a_server_id)
Get instance of class.
runReadAllUsersPaged($dn)
read all users with ldap paging
const IL_LDAP_BIND_DEFAULT
__construct(ilLDAPServer $a_server, $a_url='')
Constructur.
const IL_LDAP_SUPPORTED_CONTROL
checkGroupMembership($a_ldap_user_name, $ldap_user_data)
check group membership
connect()
Connect to LDAP server.
static getAttributeNames($a_server_id)
get all possible attribute names
readAllUsers()
Fetch all users This function splits the query to filters like e.g (uid=a*) (uid=b*)...
fetchGroupMembers($a_name='')
Fetch group member ids.
const DEFAULT_NETWORK_TIMEOUT
parseAuthMode()
Parse authentication mode.
foreach($_POST as $key=> $value) $res
query($a_search_base, $a_filter, $a_scope, $a_attributes)
Perform a query.
Class ilLDAPPagingException.
fetchUserProfileFields()
fetch required fields of user profile data
checkPaginationEnabled()
Check if pagination is enabled (rfc: 2696)
referralRebind($a_ds, $a_url)
fetchUser($a_name)
Get one user by login name.
if(!defined('PATH_SEPARATOR')) $GLOBALS['_PEAR_default_error_mode']
readUserData($a_name, $a_check_dn=false, $a_try_group_user_filter=false)
Read user data.
modDelete($a_dn, $a_attribute)
Delete value from an existing attribute.
runReadAllUsersPartial($dn)
read all users partial by alphabet
static _checkExternalAuthAccount($a_auth, $a_account, $tryFallback=true)
check whether external account and authentication method matches with a user
__destruct()
Destructor unbind from ldap server.
bind($a_binding_type=IL_LDAP_BIND_DEFAULT, $a_user_dn='', $a_password='')
Bind to LDAP server.
queryByScope($a_scope, $a_base_dn, $a_filter, $a_attributes)
Query by scope IL_SCOPE_SUB => ldap_search IL_SCOPE_ONE => ldap_list.