mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
Merge pull request #21559 from nextcloud/fix/noid/ldap-group-shortcut-ad
shortcut in reading nested group members when IN_CHAIN is available
This commit is contained in:
commit
88fcc05e4f
4 changed files with 68 additions and 2 deletions
|
|
@ -45,6 +45,10 @@ class Configuration {
|
|||
public const AVATAR_PREFIX_NONE = 'none';
|
||||
public const AVATAR_PREFIX_DATA_ATTRIBUTE = 'data:';
|
||||
|
||||
public const LDAP_SERVER_FEATURE_UNKNOWN = 'unknown';
|
||||
public const LDAP_SERVER_FEATURE_AVAILABLE = 'available';
|
||||
public const LDAP_SERVER_FEATURE_UNAVAILABLE = 'unavailable';
|
||||
|
||||
protected $configPrefix = null;
|
||||
protected $configRead = false;
|
||||
/**
|
||||
|
|
@ -110,6 +114,7 @@ class Configuration {
|
|||
'ldapDynamicGroupMemberURL' => null,
|
||||
'ldapDefaultPPolicyDN' => null,
|
||||
'ldapExtStorageHomeAttribute' => null,
|
||||
'ldapMatchingRuleInChainState' => self::LDAP_SERVER_FEATURE_UNKNOWN,
|
||||
];
|
||||
|
||||
/**
|
||||
|
|
@ -482,6 +487,7 @@ class Configuration {
|
|||
'ldap_default_ppolicy_dn' => '',
|
||||
'ldap_user_avatar_rule' => 'default',
|
||||
'ldap_ext_storage_home_attribute' => '',
|
||||
'ldap_matching_rule_in_chain_state' => self::LDAP_SERVER_FEATURE_UNKNOWN,
|
||||
];
|
||||
}
|
||||
|
||||
|
|
@ -543,6 +549,7 @@ class Configuration {
|
|||
'ldap_dynamic_group_member_url' => 'ldapDynamicGroupMemberURL',
|
||||
'ldap_default_ppolicy_dn' => 'ldapDefaultPPolicyDN',
|
||||
'ldap_ext_storage_home_attribute' => 'ldapExtStorageHomeAttribute',
|
||||
'ldap_matching_rule_in_chain_state' => 'ldapMatchingRuleInChainState',
|
||||
'ldapIgnoreNamingRules' => 'ldapIgnoreNamingRules', // sysconfig
|
||||
];
|
||||
return $array;
|
||||
|
|
|
|||
|
|
@ -72,6 +72,7 @@ use OCP\ILogger;
|
|||
* @property string ldapGidNumber
|
||||
* @property int hasMemberOfFilterSupport
|
||||
* @property int useMemberOfToDetectMembership
|
||||
* @property string ldapMatchingRuleInChainState
|
||||
*/
|
||||
class Connection extends LDAPUtility {
|
||||
private $ldapConnectionRes = null;
|
||||
|
|
|
|||
|
|
@ -246,6 +246,37 @@ class Group_LDAP extends BackendUtility implements GroupInterface, IGroupLDAP, I
|
|||
if ($groupMembers !== null) {
|
||||
return $groupMembers;
|
||||
}
|
||||
|
||||
if ($this->access->connection->ldapNestedGroups
|
||||
&& $this->access->connection->useMemberOfToDetectMembership
|
||||
&& $this->access->connection->hasMemberOfFilterSupport
|
||||
&& $this->access->connection->ldapMatchingRuleInChainState !== Configuration::LDAP_SERVER_FEATURE_UNAVAILABLE
|
||||
) {
|
||||
$attemptedLdapMatchingRuleInChain = true;
|
||||
// compatibility hack with servers supporting :1.2.840.113556.1.4.1941:, and others)
|
||||
$filter = $this->access->combineFilterWithAnd([
|
||||
$this->access->connection->ldapUserFilter,
|
||||
$this->access->connection->ldapUserDisplayName . '=*',
|
||||
'memberof:1.2.840.113556.1.4.1941:=' . $dnGroup
|
||||
]);
|
||||
$memberRecords = $this->access->fetchListOfUsers(
|
||||
$filter,
|
||||
$this->access->userManager->getAttributes(true)
|
||||
);
|
||||
$result = array_reduce($memberRecords, function ($carry, $record) {
|
||||
$carry[] = $record['dn'][0];
|
||||
return $carry;
|
||||
}, []);
|
||||
if ($this->access->connection->ldapMatchingRuleInChainState === Configuration::LDAP_SERVER_FEATURE_AVAILABLE) {
|
||||
return $result;
|
||||
} elseif (!empty($memberRecords)) {
|
||||
$this->access->connection->ldapMatchingRuleInChainState = Configuration::LDAP_SERVER_FEATURE_AVAILABLE;
|
||||
$this->access->connection->saveConfiguration();
|
||||
return $result;
|
||||
}
|
||||
// when feature availability is unknown, and the result is empty, continue and test with original approach
|
||||
}
|
||||
|
||||
$seen[$dnGroup] = 1;
|
||||
$members = $this->access->readAttribute($dnGroup, $this->access->connection->ldapGroupMemberAssocAttr);
|
||||
if (is_array($members)) {
|
||||
|
|
@ -258,6 +289,13 @@ class Group_LDAP extends BackendUtility implements GroupInterface, IGroupLDAP, I
|
|||
$allMembers += $this->getDynamicGroupMembers($dnGroup);
|
||||
|
||||
$this->access->connection->writeToCache($cacheKey, $allMembers);
|
||||
if (isset($attemptedLdapMatchingRuleInChain)
|
||||
&& $this->access->connection->ldapMatchingRuleInChainState === Configuration::LDAP_SERVER_FEATURE_UNKNOWN
|
||||
&& !empty($allMembers)
|
||||
) {
|
||||
$this->access->connection->ldapMatchingRuleInChainState = Configuration::LDAP_SERVER_FEATURE_UNAVAILABLE;
|
||||
$this->access->connection->saveConfiguration();
|
||||
}
|
||||
return $allMembers;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -73,6 +73,8 @@ class Group_LDAPTest extends TestCase {
|
|||
->method('getConnection')
|
||||
->willReturn($connector);
|
||||
|
||||
$access->userManager = $this->createMock(Manager::class);
|
||||
|
||||
return $access;
|
||||
}
|
||||
|
||||
|
|
@ -127,6 +129,10 @@ class Group_LDAPTest extends TestCase {
|
|||
->method('countUsers')
|
||||
->willReturn(2);
|
||||
|
||||
$access->userManager->expects($this->any())
|
||||
->method('getAttributes')
|
||||
->willReturn(['displayName', 'mail']);
|
||||
|
||||
$groupBackend = new GroupLDAP($access, $pluginManager);
|
||||
$users = $groupBackend->countUsersInGroup('group');
|
||||
|
||||
|
|
@ -170,6 +176,10 @@ class Group_LDAPTest extends TestCase {
|
|||
->method('escapeFilterPart')
|
||||
->willReturnArgument(0);
|
||||
|
||||
$access->userManager->expects($this->any())
|
||||
->method('getAttributes')
|
||||
->willReturn(['displayName', 'mail']);
|
||||
|
||||
$groupBackend = new GroupLDAP($access, $pluginManager);
|
||||
$users = $groupBackend->countUsersInGroup('group', '3');
|
||||
|
||||
|
|
@ -544,7 +554,10 @@ class Group_LDAPTest extends TestCase {
|
|||
$access->expects($this->any())
|
||||
->method('combineFilterWithAnd')
|
||||
->willReturn('pseudo=filter');
|
||||
$access->userManager = $this->createMock(Manager::class);
|
||||
|
||||
$access->userManager->expects($this->any())
|
||||
->method('getAttributes')
|
||||
->willReturn(['displayName', 'mail']);
|
||||
|
||||
$groupBackend = new GroupLDAP($access, $pluginManager);
|
||||
$users = $groupBackend->usersInGroup('foobar');
|
||||
|
|
@ -585,7 +598,10 @@ class Group_LDAPTest extends TestCase {
|
|||
$access->expects($this->any())
|
||||
->method('combineFilterWithAnd')
|
||||
->willReturn('pseudo=filter');
|
||||
$access->userManager = $this->createMock(Manager::class);
|
||||
|
||||
$access->userManager->expects($this->any())
|
||||
->method('getAttributes')
|
||||
->willReturn(['displayName', 'mail']);
|
||||
|
||||
$groupBackend = new GroupLDAP($access, $pluginManager);
|
||||
$users = $groupBackend->usersInGroup('foobar');
|
||||
|
|
@ -625,6 +641,10 @@ class Group_LDAPTest extends TestCase {
|
|||
->method('isDNPartOfBase')
|
||||
->willReturn(true);
|
||||
|
||||
$access->userManager->expects($this->any())
|
||||
->method('getAttributes')
|
||||
->willReturn(['displayName', 'mail']);
|
||||
|
||||
$groupBackend = new GroupLDAP($access, $pluginManager);
|
||||
$users = $groupBackend->countUsersInGroup('foobar');
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue