2016-05-11 12:23:25 +03:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 18:07:57 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2016-05-11 12:23:25 +03:00
|
|
|
* @author Christoph Wurst <christoph@owncloud.com>
|
|
|
|
*
|
|
|
|
* @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 OC\Authentication\TwoFactorAuth;
|
|
|
|
|
2016-06-13 13:46:45 +03:00
|
|
|
use Exception;
|
2016-05-11 12:23:25 +03:00
|
|
|
use OC;
|
|
|
|
use OC\App\AppManager;
|
2016-06-16 11:08:49 +03:00
|
|
|
use OC_App;
|
2016-05-11 12:23:25 +03:00
|
|
|
use OCP\AppFramework\QueryException;
|
|
|
|
use OCP\Authentication\TwoFactorAuth\IProvider;
|
2016-05-17 16:48:41 +03:00
|
|
|
use OCP\IConfig;
|
2016-05-11 12:23:25 +03:00
|
|
|
use OCP\ISession;
|
|
|
|
use OCP\IUser;
|
|
|
|
|
|
|
|
class Manager {
|
|
|
|
|
|
|
|
const SESSION_UID_KEY = 'two_factor_auth_uid';
|
2016-08-29 20:19:44 +03:00
|
|
|
const BACKUP_CODES_APP_ID = 'twofactor_backupcodes';
|
|
|
|
const BACKUP_CODES_PROVIDER_ID = 'backup_codes';
|
2016-05-11 12:23:25 +03:00
|
|
|
|
|
|
|
/** @var AppManager */
|
|
|
|
private $appManager;
|
|
|
|
|
|
|
|
/** @var ISession */
|
|
|
|
private $session;
|
|
|
|
|
2016-05-17 16:48:41 +03:00
|
|
|
/** @var IConfig */
|
|
|
|
private $config;
|
|
|
|
|
2016-05-11 12:23:25 +03:00
|
|
|
/**
|
|
|
|
* @param AppManager $appManager
|
|
|
|
* @param ISession $session
|
2016-05-17 16:48:41 +03:00
|
|
|
* @param IConfig $config
|
2016-05-11 12:23:25 +03:00
|
|
|
*/
|
2016-05-17 16:48:41 +03:00
|
|
|
public function __construct(AppManager $appManager, ISession $session, IConfig $config) {
|
2016-05-11 12:23:25 +03:00
|
|
|
$this->appManager = $appManager;
|
|
|
|
$this->session = $session;
|
2016-05-17 16:48:41 +03:00
|
|
|
$this->config = $config;
|
2016-05-11 12:23:25 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Determine whether the user must provide a second factor challenge
|
|
|
|
*
|
|
|
|
* @param IUser $user
|
|
|
|
* @return boolean
|
|
|
|
*/
|
|
|
|
public function isTwoFactorAuthenticated(IUser $user) {
|
2016-05-17 16:48:41 +03:00
|
|
|
$twoFactorEnabled = ((int) $this->config->getUserValue($user->getUID(), 'core', 'two_factor_auth_disabled', 0)) === 0;
|
|
|
|
return $twoFactorEnabled && count($this->getProviders($user)) > 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Disable 2FA checks for the given user
|
|
|
|
*
|
|
|
|
* @param IUser $user
|
|
|
|
*/
|
|
|
|
public function disableTwoFactorAuthentication(IUser $user) {
|
|
|
|
$this->config->setUserValue($user->getUID(), 'core', 'two_factor_auth_disabled', 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Enable all 2FA checks for the given user
|
|
|
|
*
|
|
|
|
* @param IUser $user
|
|
|
|
*/
|
|
|
|
public function enableTwoFactorAuthentication(IUser $user) {
|
|
|
|
$this->config->deleteUserValue($user->getUID(), 'core', 'two_factor_auth_disabled');
|
2016-05-11 12:23:25 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get a 2FA provider by its ID
|
|
|
|
*
|
|
|
|
* @param IUser $user
|
|
|
|
* @param string $challengeProviderId
|
|
|
|
* @return IProvider|null
|
|
|
|
*/
|
|
|
|
public function getProvider(IUser $user, $challengeProviderId) {
|
2016-08-29 20:19:44 +03:00
|
|
|
$providers = $this->getProviders($user, true);
|
2016-05-11 12:23:25 +03:00
|
|
|
return isset($providers[$challengeProviderId]) ? $providers[$challengeProviderId] : null;
|
|
|
|
}
|
|
|
|
|
2016-08-29 20:19:44 +03:00
|
|
|
/**
|
|
|
|
* @param IUser $user
|
|
|
|
* @return IProvider|null the backup provider, if enabled for the given user
|
|
|
|
*/
|
|
|
|
public function getBackupProvider(IUser $user) {
|
|
|
|
$providers = $this->getProviders($user, true);
|
|
|
|
return $providers[self::BACKUP_CODES_PROVIDER_ID];
|
|
|
|
}
|
|
|
|
|
2016-05-11 12:23:25 +03:00
|
|
|
/**
|
|
|
|
* Get the list of 2FA providers for the given user
|
|
|
|
*
|
|
|
|
* @param IUser $user
|
2016-08-29 20:19:44 +03:00
|
|
|
* @param bool $includeBackupApp
|
2016-05-11 12:23:25 +03:00
|
|
|
* @return IProvider[]
|
|
|
|
*/
|
2016-08-29 20:19:44 +03:00
|
|
|
public function getProviders(IUser $user, $includeBackupApp = false) {
|
2016-05-11 12:23:25 +03:00
|
|
|
$allApps = $this->appManager->getEnabledAppsForUser($user);
|
|
|
|
$providers = [];
|
|
|
|
|
|
|
|
foreach ($allApps as $appId) {
|
2016-08-29 20:19:44 +03:00
|
|
|
if (!$includeBackupApp && $appId === self::BACKUP_CODES_APP_ID) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2016-05-11 12:23:25 +03:00
|
|
|
$info = $this->appManager->getAppInfo($appId);
|
2016-07-23 14:26:57 +03:00
|
|
|
if (isset($info['two-factor-providers'])) {
|
|
|
|
$providerClasses = $info['two-factor-providers'];
|
|
|
|
foreach ($providerClasses as $class) {
|
|
|
|
try {
|
|
|
|
$this->loadTwoFactorApp($appId);
|
|
|
|
$provider = OC::$server->query($class);
|
|
|
|
$providers[$provider->getId()] = $provider;
|
|
|
|
} catch (QueryException $exc) {
|
|
|
|
// Provider class can not be resolved
|
|
|
|
throw new Exception("Could not load two-factor auth provider $class");
|
|
|
|
}
|
2016-05-11 12:23:25 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return array_filter($providers, function ($provider) use ($user) {
|
|
|
|
/* @var $provider IProvider */
|
|
|
|
return $provider->isTwoFactorAuthEnabledForUser($user);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2016-06-16 11:08:49 +03:00
|
|
|
/**
|
|
|
|
* Load an app by ID if it has not been loaded yet
|
|
|
|
*
|
|
|
|
* @param string $appId
|
|
|
|
*/
|
|
|
|
protected function loadTwoFactorApp($appId) {
|
|
|
|
if (!OC_App::isAppLoaded($appId)) {
|
|
|
|
OC_App::loadApp($appId);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-11 12:23:25 +03:00
|
|
|
/**
|
|
|
|
* Verify the given challenge
|
|
|
|
*
|
|
|
|
* @param string $providerId
|
|
|
|
* @param IUser $user
|
|
|
|
* @param string $challenge
|
|
|
|
* @return boolean
|
|
|
|
*/
|
|
|
|
public function verifyChallenge($providerId, IUser $user, $challenge) {
|
|
|
|
$provider = $this->getProvider($user, $providerId);
|
|
|
|
if (is_null($provider)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$result = $provider->verifyChallenge($user, $challenge);
|
|
|
|
if ($result) {
|
|
|
|
$this->session->remove(self::SESSION_UID_KEY);
|
|
|
|
}
|
|
|
|
return $result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if the currently logged in user needs to pass 2FA
|
|
|
|
*
|
2016-08-24 11:42:07 +03:00
|
|
|
* @param IUser $user the currently logged in user
|
2016-05-11 12:23:25 +03:00
|
|
|
* @return boolean
|
|
|
|
*/
|
2016-08-24 11:42:07 +03:00
|
|
|
public function needsSecondFactor(IUser $user = null) {
|
|
|
|
if (is_null($user) || !$this->session->exists(self::SESSION_UID_KEY)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!$this->isTwoFactorAuthenticated($user)) {
|
|
|
|
// There is no second factor any more -> let the user pass
|
|
|
|
// This prevents infinite redirect loops when a user is about
|
|
|
|
// to solve the 2FA challenge, and the provider app is
|
|
|
|
// disabled the same time
|
|
|
|
$this->session->remove(self::SESSION_UID_KEY);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
2016-05-11 12:23:25 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Prepare the 2FA login (set session value)
|
|
|
|
*
|
|
|
|
* @param IUser $user
|
|
|
|
*/
|
|
|
|
public function prepareTwoFactorLogin(IUser $user) {
|
|
|
|
$this->session->set(self::SESSION_UID_KEY, $user->getUID());
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|