Skip to content

Commit

Permalink
WIP - refactor user_ldap group membership cache and add check-group c…
Browse files Browse the repository at this point in the history
…ommand

Signed-off-by: Côme Chilliet <[email protected]>
  • Loading branch information
come-nc committed Jul 18, 2023
1 parent 67709b3 commit 173062a
Show file tree
Hide file tree
Showing 9 changed files with 464 additions and 38 deletions.
2 changes: 1 addition & 1 deletion apps/user_ldap/appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
A user logs into Nextcloud with their LDAP or AD credentials, and is granted access based on an authentication request handled by the LDAP or AD server. Nextcloud does not store LDAP or AD passwords, rather these credentials are used to authenticate a user and then Nextcloud uses a session for the user ID. More information is available in the LDAP User and Group Backend documentation.

</description>
<version>1.18.0</version>
<version>1.19.0</version>
<licence>agpl</licence>
<author>Dominik Schmidt</author>
<author>Arthur Schiwon</author>
Expand Down
146 changes: 146 additions & 0 deletions apps/user_ldap/lib/Command/CheckGroup.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,146 @@
<?php
/**
* @copyright Copyright (c) 2016, ownCloud, Inc.
*
* @author Arthur Schiwon <[email protected]>
* @author Christoph Wurst <[email protected]>
* @author Côme Chilliet <[email protected]>
* @author Joas Schilling <[email protected]>
* @author Morris Jobke <[email protected]>
* @author Roeland Jago Douma <[email protected]>
*
* @license AGPL-3.0
*
* This code is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License, version 3,
* as published by the Free Software Foundation.
*
* This program 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, version 3,
* along with this program. If not, see <http://www.gnu.org/licenses/>
*
*/
namespace OCA\User_LDAP\Command;

use OCA\User_LDAP\Helper;
use OCA\User_LDAP\Mapping\UserMapping;
use OCA\User_LDAP\Group_Proxy;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Output\OutputInterface;

class CheckGroup extends Command {
public function __construct(
protected Group_Proxy $backend,
protected Helper $helper,
protected UserMapping $mapping
) {
parent::__construct();
}

protected function configure(): void {
$this
->setName('ldap:check-group')
->setDescription('checks whether a group exists on LDAP.')
->addArgument(
'ocName',
InputArgument::REQUIRED,
'the group name as used in Nextcloud, or the LDAP DN'
)
->addOption(
'force',
null,
InputOption::VALUE_NONE,
'ignores disabled LDAP configuration'
)
->addOption(
'update',
null,
InputOption::VALUE_NONE,
'syncs values from LDAP'
)
;
}

protected function execute(InputInterface $input, OutputInterface $output): int {
try {
$this->assertAllowed($input->getOption('force'));
$gid = $input->getArgument('ocName');
if ($this->backend->getLDAPAccess($gid)->stringResemblesDN($gid)) {
$groupname = $this->backend->dn2GroupName($gid);
if ($groupname !== false) {
$gid = $groupname;
}
}
$wasMapped = $this->groupWasMapped($gid);
$exists = $this->backend->groupExistsOnLDAP($gid, true);
if ($exists === true) {
$output->writeln('The group is still available on LDAP.');
if ($input->getOption('update')) {
$this->updateGroup($gid, $output);
}
return 0;
} elseif ($wasMapped) {
$output->writeln('The group does not exists on LDAP anymore.');
return 0;
} else {
throw new \Exception('The given group is not a recognized LDAP group.');
}
} catch (\Exception $e) {
$output->writeln('<error>' . $e->getMessage(). '</error>');
return 1;
}
}

/**
* checks whether a group is actually mapped
* @param string $ocName the groupname as used in Nextcloud
*/
protected function groupWasMapped(string $ocName): bool {
$dn = $this->mapping->getDNByName($ocName);
return $dn !== false;
}

/**
* checks whether the setup allows reliable checking of LDAP group existence
* @throws \Exception
*/
protected function assertAllowed(bool $force): void {
if ($this->helper->haveDisabledConfigurations() && !$force) {
throw new \Exception('Cannot check group existence, because '
. 'disabled LDAP configurations are present.');
}

// we don't check ldapUserCleanupInterval from config.php because this
// action is triggered manually, while the setting only controls the
// background job.
}

private function updateGroup(string $gid, OutputInterface $output): void {
try {
$access = $this->backend->getLDAPAccess($gid);
$attrs = $access->userManager->getAttributes();
$user = $access->userManager->get($gid);
$avatarAttributes = $access->getConnection()->resolveRule('avatar');
$result = $access->search('objectclass=*', $user->getDN(), $attrs, 1, 0);

Check notice

Code scanning / Psalm

PossiblyNullReference Note

Cannot call method getDN on possibly null value
foreach ($result[0] as $attribute => $valueSet) {
$output->writeln(' ' . $attribute . ': ');
foreach ($valueSet as $value) {
if (in_array($attribute, $avatarAttributes)) {
$value = '{ImageData}';
}
$output->writeln(' ' . $value);
}
}
$access->batchApplyUserAttributes($result);
} catch (\Exception $e) {
$output->writeln('<error>Error while trying to lookup and update attributes from LDAP</error>');
}
}
}
48 changes: 48 additions & 0 deletions apps/user_ldap/lib/Db/GroupMembership.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
<?php

declare(strict_types=1);

/**
* @copyright Copyright (c) 2023 Côme Chilliet <[email protected]>
*
* @author Côme Chilliet <[email protected]>
*
* @license GNU AGPL version 3 or any later version
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program 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 program. If not, see <http://www.gnu.org/licenses/>.
*
*/

namespace OCA\User_LDAP\Db;

use OCP\AppFramework\Db\Entity;

/**
* @method void setUserid(string $userid)
* @method string getUserid()
* @method void setGroupid(string $groupid)
* @method string getGroupid()
*/
class GroupMembership extends Entity {

Check notice

Code scanning / Psalm

PropertyNotSetInConstructor Note

Property OCA\User_LDAP\Db\GroupMembership::$id is not defined in constructor of OCA\User_LDAP\Db\GroupMembership or in any methods called in the constructor
/** @var string */
protected $groupid;

Check notice

Code scanning / Psalm

PropertyNotSetInConstructor Note

Property OCA\User_LDAP\Db\GroupMembership::$groupid is not defined in constructor of OCA\User_LDAP\Db\GroupMembership or in any methods called in the constructor

/** @var string */
protected $userid;

Check notice

Code scanning / Psalm

PropertyNotSetInConstructor Note

Property OCA\User_LDAP\Db\GroupMembership::$userid is not defined in constructor of OCA\User_LDAP\Db\GroupMembership or in any methods called in the constructor

public function __construct() {
$this->addType('groupid', 'string');
$this->addType('userid', 'string');
}
}
53 changes: 53 additions & 0 deletions apps/user_ldap/lib/Db/GroupMembershipMapper.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
<?php

declare(strict_types=1);

/**
* @copyright Copyright (c) 2023 Côme Chilliet <[email protected]>
*
* @author Côme Chilliet <[email protected]>
*
* @license GNU AGPL version 3 or any later version
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program 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 program. If not, see <http://www.gnu.org/licenses/>.
*
*/

namespace OCA\User_LDAP\Db;

use OCP\AppFramework\Db\QBMapper;
use OCP\IDBConnection;

/**
* @template-extends QBMapper<GroupMembership>
*/
class GroupMembershipMapper extends QBMapper {
public function __construct(IDBConnection $db) {
parent::__construct($db, 'ldap_group_membership', GroupMembership::class);
}

/**
* @return string[]
*/
public function getKnownGroups(): array {
$query = $this->db->getQueryBuilder();
$result = $query->selectDistinct('groupid')
->from($this->getTableName())
->executeQuery();

$groups = $result->fetchAll();
$result->closeCursor();
return $groups;
}
}
33 changes: 26 additions & 7 deletions apps/user_ldap/lib/Group_LDAP.php
Original file line number Diff line number Diff line change
Expand Up @@ -1105,31 +1105,43 @@ public function getGroups($search = '', $limit = -1, $offset = 0) {
* @throws ServerNotAvailableException
*/
public function groupExists($gid) {
$groupExists = $this->access->connection->getFromCache('groupExists' . $gid);
if (!is_null($groupExists)) {
return (bool)$groupExists;
return $this->groupExistsOnLDAP($gid, false);
}

/**
* Check if a group exists
*
* @throws ServerNotAvailableException
*/
public function groupExistsOnLDAP(string $gid, bool $ignoreCache = false): bool {
$cacheKey = 'groupExists' . $gid;
if (!$ignoreCache) {
$groupExists = $this->access->connection->getFromCache($cacheKey);
if (!is_null($groupExists)) {
return (bool)$groupExists;
}
}

//getting dn, if false the group does not exist. If dn, it may be mapped
//only, requires more checking.
$dn = $this->access->groupname2dn($gid);
if (!$dn) {
$this->access->connection->writeToCache('groupExists' . $gid, false);
$this->access->connection->writeToCache($cacheKey, false);
return false;
}

if (!$this->access->isDNPartOfBase($dn, $this->access->connection->ldapBaseGroups)) {
$this->access->connection->writeToCache('groupExists' . $gid, false);
$this->access->connection->writeToCache($cacheKey, false);
return false;
}

//if group really still exists, we will be able to read its objectClass
if (!is_array($this->access->readAttribute($dn, '', $this->access->connection->ldapGroupFilter))) {
$this->access->connection->writeToCache('groupExists' . $gid, false);
$this->access->connection->writeToCache($cacheKey, false);
return false;
}

$this->access->connection->writeToCache('groupExists' . $gid, true);
$this->access->connection->writeToCache($cacheKey, true);
return true;
}

Expand Down Expand Up @@ -1336,4 +1348,11 @@ public function getDisplayName(string $gid): string {
$this->access->connection->writeToCache($cacheKey, $displayName);
return $displayName;
}

/**
* returns the groupname for the given LDAP DN, if available
*/
public function dn2GroupName(string $dn): string|false {
return $this->access->dn2groupname($dn);
}
}
17 changes: 17 additions & 0 deletions apps/user_ldap/lib/Group_Proxy.php
Original file line number Diff line number Diff line change
Expand Up @@ -286,6 +286,23 @@ public function groupExists($gid) {
return $this->handleRequest($gid, 'groupExists', [$gid]);
}

/**
* Check if a group exists
*
* @throws ServerNotAvailableException

Check failure on line 292 in apps/user_ldap/lib/Group_Proxy.php

View workflow job for this annotation

GitHub Actions / static-code-analysis

UndefinedDocblockClass

apps/user_ldap/lib/Group_Proxy.php:292:13: UndefinedDocblockClass: Docblock-defined class, interface or enum named OCA\User_LDAP\ServerNotAvailableException does not exist (see https://psalm.dev/200)

Check failure

Code scanning / Psalm

UndefinedDocblockClass Error

Docblock-defined class, interface or enum named OCA\User_LDAP\ServerNotAvailableException does not exist
*/
public function groupExistsOnLDAP(string $gid, bool $ignoreCache = false): bool {
return $this->handleRequest($gid, 'groupExistsOnLDAP', [$gid, $ignoreCache]);
}

/**
* returns the groupname for the given LDAP DN, if available
*/
public function dn2GroupName(string $dn): string|false {
$id = 'DN,' . $dn;
return $this->handleRequest($id, 'dn2GroupName', [$dn]);
}

/**
* Check if backend implements actions
*
Expand Down
Loading

0 comments on commit 173062a

Please sign in to comment.