summaryrefslogtreecommitdiffstats
path: root/apps/user_ldap/lib
diff options
context:
space:
mode:
authorXuanwo <xuanwo@yunify.com>2017-03-18 14:56:24 +0800
committerXuanwo <xuanwo@yunify.com>2017-04-25 10:06:47 +0800
commit8db21ad8c894332b85a37bef28818604a175db23 (patch)
tree7c0634b90346f92e0dcde7f276168db73d06f50b /apps/user_ldap/lib
parent9e1e7dac479f63f194b595e45c05d7bf833622dd (diff)
downloadnextcloud-server-8db21ad8c894332b85a37bef28818604a175db23.tar.gz
nextcloud-server-8db21ad8c894332b85a37bef28818604a175db23.zip
user_ldap: Add support for gidNumber
This patch is based on the work of @dleeuw (https://github.com/dleeuw) (See https://github.com/nextcloud/server/issues/2640#issuecomment-269615883 for more details). The difference is user & group data will be written into cache to have better performance, and functions splited from primaryGroupID series to make them more readable. Fixed https://github.com/nextcloud/server/issues/2640 Signed-off-by: Xuanwo <xuanwo@yunify.com>
Diffstat (limited to 'apps/user_ldap/lib')
-rw-r--r--apps/user_ldap/lib/Configuration.php3
-rw-r--r--apps/user_ldap/lib/Connection.php6
-rw-r--r--apps/user_ldap/lib/Group_LDAP.php188
-rw-r--r--apps/user_ldap/lib/Wizard.php5
4 files changed, 196 insertions, 6 deletions
diff --git a/apps/user_ldap/lib/Configuration.php b/apps/user_ldap/lib/Configuration.php
index 65ee9c70807..0e08b05eb8f 100644
--- a/apps/user_ldap/lib/Configuration.php
+++ b/apps/user_ldap/lib/Configuration.php
@@ -55,6 +55,7 @@ class Configuration {
'ldapIgnoreNamingRules' => null,
'ldapUserDisplayName' => null,
'ldapUserDisplayName2' => null,
+ 'ldapGidNumber' => null,
'ldapUserFilterObjectclass' => null,
'ldapUserFilterGroups' => null,
'ldapUserFilter' => null,
@@ -430,6 +431,7 @@ class Configuration {
'ldap_group_filter_mode' => 0,
'ldap_groupfilter_objectclass' => '',
'ldap_groupfilter_groups' => '',
+ 'ldap_gid_number' => 'gidNumber',
'ldap_display_name' => 'displayName',
'ldap_user_display_name_2' => '',
'ldap_group_display_name' => 'cn',
@@ -489,6 +491,7 @@ class Configuration {
'ldap_group_filter_mode' => 'ldapGroupFilterMode',
'ldap_groupfilter_objectclass' => 'ldapGroupFilterObjectclass',
'ldap_groupfilter_groups' => 'ldapGroupFilterGroups',
+ 'ldap_gid_number' => 'ldapGidNumber',
'ldap_display_name' => 'ldapUserDisplayName',
'ldap_user_display_name_2' => 'ldapUserDisplayName2',
'ldap_group_display_name' => 'ldapGroupDisplayName',
diff --git a/apps/user_ldap/lib/Connection.php b/apps/user_ldap/lib/Connection.php
index 04f8c7401e2..10fbea7174b 100644
--- a/apps/user_ldap/lib/Connection.php
+++ b/apps/user_ldap/lib/Connection.php
@@ -12,6 +12,7 @@
* @author Robin Appelman <robin@icewind.nl>
* @author Robin McCorkell <robin@mccorkell.me.uk>
* @author Roger Szabo <roger.szabo@web.de>
+ * @author Xuanwo <xuanwo@yunify.com>
*
* @license AGPL-3.0
*
@@ -64,6 +65,11 @@ class Connection extends LDAPUtility {
*/
public $hasPrimaryGroups = true;
+ /**
+ * @var bool runtime flag that indicates whether supported POSIX gidNumber are available
+ */
+ public $hasGidNumber = true;
+
//cache handler
protected $cache;
diff --git a/apps/user_ldap/lib/Group_LDAP.php b/apps/user_ldap/lib/Group_LDAP.php
index d620a00f849..52e36bdf359 100644
--- a/apps/user_ldap/lib/Group_LDAP.php
+++ b/apps/user_ldap/lib/Group_LDAP.php
@@ -18,6 +18,7 @@
* @author Roeland Jago Douma <roeland@famdouma.nl>
* @author Thomas Müller <thomas.mueller@tmit.eu>
* @author Vincent Petry <pvince81@owncloud.com>
+ * @author Xuanwo <xuanwo@yunify.com>
*
* @license AGPL-3.0
*
@@ -229,9 +230,9 @@ class Group_LDAP extends BackendUtility implements \OCP\GroupInterface {
}
}
}
-
+
$allMembers = array_merge($allMembers, $this->getDynamicGroupMembers($dnGroup));
-
+
$this->access->connection->writeToCache($cacheKey, $allMembers);
return $allMembers;
}
@@ -263,7 +264,167 @@ class Group_LDAP extends BackendUtility implements \OCP\GroupInterface {
$allGroups = array_merge($allGroups, $subGroups);
}
}
- return $allGroups;
+ return $allGroups;
+ }
+
+ /**
+ * translates a gidNumber into an ownCloud internal name
+ * @param string $gid as given by gidNumber on POSIX LDAP
+ * @param string $dn a DN that belongs to the same domain as the group
+ * @return string|bool
+ */
+ public function gidNumber2Name($gid, $dn) {
+ $cacheKey = 'gidNumberToName' . $gid;
+ $groupName = $this->access->connection->getFromCache($cacheKey);
+ if(!is_null($groupName) && isset($groupName)) {
+ return $groupName;
+ }
+
+ //we need to get the DN from LDAP
+ $filter = $this->access->combineFilterWithAnd([
+ $this->access->connection->ldapGroupFilter,
+ 'objectClass=posixGroup',
+ $this->access->connection->ldapGidNumber . '=' . $gid
+ ]);
+ $result = $this->access->searchGroups($filter, array('dn'), 1);
+ if(empty($result)) {
+ return false;
+ }
+ $dn = $result[0]['dn'][0];
+
+ //and now the group name
+ //NOTE once we have separate ownCloud group IDs and group names we can
+ //directly read the display name attribute instead of the DN
+ $name = $this->access->dn2groupname($dn);
+
+ $this->access->connection->writeToCache($cacheKey, $name);
+
+ return $name;
+ }
+
+ /**
+ * returns the entry's gidNumber
+ * @param string $dn
+ * @param string $attribute
+ * @return string|bool
+ */
+ private function getEntryGidNumber($dn, $attribute) {
+ $value = $this->access->readAttribute($dn, $attribute);
+ if(is_array($value) && !empty($value)) {
+ return $value[0];
+ }
+ return false;
+ }
+
+ /**
+ * returns the group's primary ID
+ * @param string $dn
+ * @return string|bool
+ */
+ public function getGroupGidNumber($dn) {
+ return $this->getEntryGidNumber($dn, 'gidNumber');
+ }
+
+ /**
+ * returns the user's gidNumber
+ * @param string $dn
+ * @return string|bool
+ */
+ public function getUserGidNumber($dn) {
+ $gidNumber = false;
+ if($this->access->connection->hasGidNumber) {
+ $gidNumber = $this->getEntryGidNumber($dn, 'gidNumber');
+ if($gidNumber === false) {
+ $this->access->connection->hasGidNumber = false;
+ }
+ }
+ return $gidNumber;
+ }
+
+ /**
+ * returns a filter for a "users has specific gid" search or count operation
+ *
+ * @param string $groupDN
+ * @param string $search
+ * @return string
+ * @throws \Exception
+ */
+ private function prepareFilterForUsersHasGidNumber($groupDN, $search = '') {
+ $groupID = $this->getGroupGidNumber($groupDN);
+ if($groupID === false) {
+ throw new \Exception('Not a valid group');
+ }
+
+ $filterParts = [];
+ $filterParts[] = $this->access->getFilterForUserCount();
+ if ($search !== '') {
+ $filterParts[] = $this->access->getFilterPartForUserSearch($search);
+ }
+ $filterParts[] = $this->access->connection->ldapGidNumber .'=' . $groupID;
+
+ $filter = $this->access->combineFilterWithAnd($filterParts);
+
+ return $filter;
+ }
+
+ /**
+ * returns a list of users that have the given group as gid number
+ *
+ * @param string $groupDN
+ * @param string $search
+ * @param int $limit
+ * @param int $offset
+ * @return string[]
+ */
+ public function getUsersInGidNumber($groupDN, $search = '', $limit = -1, $offset = 0) {
+ try {
+ $filter = $this->prepareFilterForUsersHasGidNumber($groupDN, $search);
+ $users = $this->access->fetchListOfUsers(
+ $filter,
+ [$this->access->connection->ldapUserDisplayName, 'dn'],
+ $limit,
+ $offset
+ );
+ return $this->access->ownCloudUserNames($users);
+ } catch (\Exception $e) {
+ return [];
+ }
+ }
+
+ /**
+ * returns the number of users that have the given group as gid number
+ *
+ * @param string $groupDN
+ * @param string $search
+ * @param int $limit
+ * @param int $offset
+ * @return int
+ */
+ public function countUsersInGidNumber($groupDN, $search = '', $limit = -1, $offset = 0) {
+ try {
+ $filter = $this->prepareFilterForUsersHasGidNumber($groupDN, $search);
+ $users = $this->access->countUsers($filter, ['dn'], $limit, $offset);
+ return (int)$users;
+ } catch (\Exception $e) {
+ return 0;
+ }
+ }
+
+ /**
+ * gets the gidNumber of a user
+ * @param string $dn
+ * @return string
+ */
+ public function getUserGroupByGid($dn) {
+ $groupID = $this->getUserGidNumber($dn);
+ if($groupID !== false) {
+ $groupName = $this->gidNumber2Name($groupID, $dn);
+ if($groupName !== false) {
+ return $groupName;
+ }
+ }
+
+ return false;
}
/**
@@ -457,6 +618,7 @@ class Group_LDAP extends BackendUtility implements \OCP\GroupInterface {
$groups = [];
$primaryGroup = $this->getUserPrimaryGroup($userDN);
+ $gidGroupName = $this->getUserGroupByGid($userDN);
$dynamicGroupMemberURL = strtolower($this->access->connection->ldapDynamicGroupMemberURL);
@@ -510,10 +672,13 @@ class Group_LDAP extends BackendUtility implements \OCP\GroupInterface {
}
}
}
-
+
if($primaryGroup !== false) {
$groups[] = $primaryGroup;
}
+ if($gidGroupName !== false) {
+ $groups[] = $gidGroupName;
+ }
$this->access->connection->writeToCache($cacheKey, $groups);
return $groups;
}
@@ -547,6 +712,9 @@ class Group_LDAP extends BackendUtility implements \OCP\GroupInterface {
if($primaryGroup !== false) {
$groups[] = $primaryGroup;
}
+ if($gidGroupName !== false) {
+ $groups[] = $gidGroupName;
+ }
$groups = array_unique($groups, SORT_LOCALE_STRING);
$this->access->connection->writeToCache($cacheKey, $groups);
@@ -641,6 +809,14 @@ class Group_LDAP extends BackendUtility implements \OCP\GroupInterface {
return array();
}
+ $posixGroupUsers = $this->getUsersInGidNumber($groupDN, $search, $limit, $offset);
+ $members = array_keys($this->_groupMembers($groupDN));
+ if(!$members && empty($posixGroupUsers)) {
+ //in case users could not be retrieved, return empty result set
+ $this->access->connection->writeToCache($cacheKey, []);
+ return [];
+ }
+
$groupUsers = array();
$isMemberUid = (strtolower($this->access->connection->ldapGroupMemberAssocAttr) === 'memberuid');
$attrs = $this->access->userManager->getAttributes(true);
@@ -677,6 +853,10 @@ class Group_LDAP extends BackendUtility implements \OCP\GroupInterface {
$this->access->connection->writeToCache('usersInGroup-'.$gid.'-'.$search, $groupUsers);
$groupUsers = array_slice($groupUsers, $offset, $limit);
+ $groupUsers = array_unique(array_merge($groupUsers, $posixGroupUsers));
+ natsort($groupUsers);
+ $this->access->connection->writeToCache('usersInGroup-'.$gid.'-'.$search, $groupUsers);
+ $groupUsers = array_slice($groupUsers, $offset, $limit);
$this->access->connection->writeToCache($cacheKey, $groupUsers);
diff --git a/apps/user_ldap/lib/Wizard.php b/apps/user_ldap/lib/Wizard.php
index 2c388b1803e..73fcd4f1e44 100644
--- a/apps/user_ldap/lib/Wizard.php
+++ b/apps/user_ldap/lib/Wizard.php
@@ -15,6 +15,7 @@
* @author Robin McCorkell <robin@mccorkell.me.uk>
* @author Stefan Weil <sw@weilnetz.de>
* @author Victor Dubiniuk <dubiniuk@owncloud.com>
+ * @author Xuanwo <xuanwo@yunify.com>
*
* @license AGPL-3.0
*
@@ -775,12 +776,12 @@ class Wizard extends LDAPUtility {
/**
* tries to detect the group member association attribute which is
- * one of 'uniqueMember', 'memberUid', 'member'
+ * one of 'uniqueMember', 'memberUid', 'member', 'gidNumber'
* @return string|false, string with the attribute name, false on error
* @throws \Exception
*/
private function detectGroupMemberAssoc() {
- $possibleAttrs = array('uniqueMember', 'memberUid', 'member');
+ $possibleAttrs = array('uniqueMember', 'memberUid', 'member', 'gidNumber');
$filter = $this->configuration->ldapGroupFilter;
if(empty($filter)) {
return false;