LDAPAccountManager/lam/lib/2factor.inc

218 lines
6.6 KiB
PHP
Raw Normal View History

2017-01-30 19:02:31 +00:00
<?php
namespace LAM\LIB\TWO_FACTOR;
2017-01-31 19:50:51 +00:00
use \selfServiceProfile;
2017-01-30 19:02:31 +00:00
/*
This code is part of LDAP Account Manager (http://www.ldap-account-manager.org/)
Copyright (C) 2017 Roland Gruber
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 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 General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
/**
* 2-factor authentication
*
* @package two_factor
* @author Roland Gruber
*/
interface TwoFactorProvider {
2017-01-31 19:50:51 +00:00
/**
* Returns a list of serial numbers of the user's tokens.
*
* @param string $user user name
* @param string $password password
* @throws \Exception error getting serials
*/
public function getSerials($user, $password);
2017-01-30 19:02:31 +00:00
/**
* Verifies if the provided 2nd factor is valid.
*
* @param string $user user name
* @param string $password password
* @param string $twoFactorInput input for 2nd factor
2017-01-31 19:50:51 +00:00
* @return boolean true if verified and false if verification failed
2017-01-30 19:02:31 +00:00
* @throws \Exception error during check
*/
2017-01-31 19:50:51 +00:00
public function verify2ndFactor($user, $password, $twoFactorInput);
2017-01-30 19:02:31 +00:00
}
2017-01-31 19:50:51 +00:00
/**
* Provider for privacyIDEA.
*/
2017-01-30 19:02:31 +00:00
class PrivacyIDEAProvider implements TwoFactorProvider {
2017-01-31 19:50:51 +00:00
private $profile;
/**
* Constructor.
*
* @param selfServiceProfile $profile profile
*/
public function __construct(&$profile) {
$this->profile = $profile;
}
/**
* {@inheritDoc}
* @see \LAM\LIB\TWO_FACTOR\TwoFactorProvider::getSerials()
*/
public function getSerials($user, $password) {
logNewMessage(LOG_DEBUG, 'PrivacyIDEAProvider: Getting serials for ' . $user);
$token = $this->authenticate($user, $password);
return $this->getSerialsForUser($user, $token);
}
2017-01-30 19:02:31 +00:00
/**
* {@inheritDoc}
* @see \LAM\LIB\TWO_FACTOR\TwoFactorProvider::verify2ndFactor()
*/
2017-01-31 19:50:51 +00:00
public function verify2ndFactor($user, $password, $twoFactorInput) {
2017-01-30 19:02:31 +00:00
logNewMessage(LOG_DEBUG, 'PrivacyIDEAProvider: Checking 2nd factor for ' . $user);
2017-01-31 19:50:51 +00:00
$token = $this->authenticate($user, $password);
return false;
2017-01-30 19:02:31 +00:00
}
/**
* Authenticates against the server
*
2017-01-31 19:50:51 +00:00
* @param string $user user name
* @param string $password password
2017-01-30 19:02:31 +00:00
* @return string token
* @throws \Exception error during authentication
*/
2017-01-31 19:50:51 +00:00
private function authenticate($user, $password) {
$curl = $this->getCurl();
$url = $this->profile->twoFactorAuthenticationURL . "/auth";
curl_setopt($curl, CURLOPT_URL, $url);
$header = array('Accept: application/json');
curl_setopt($curl, CURLOPT_HTTPHEADER, $header);
$options = array(
'username' => $user,
'password' => $password,
);
curl_setopt($curl, CURLOPT_POSTFIELDS, $options);
$json = curl_exec($curl);
curl_close($curl);
if (empty($json)) {
throw new \Exception("Unable to get server response from $url.");
}
$output = json_decode($json);
if (empty($output) || !isset($output->result) || !isset($output->result->status)) {
throw new \Exception("Unable to get json from $url.");
}
$status = $output->result->status;
if ($status != 1) {
$errCode = isset($output->result->error) && isset($output->result->error->code) ? $output->result->error->code : '';
$errMessage = isset($output->result->error) && isset($output->result->error->message) ? $output->result->error->message : '';
throw new \Exception("Unable to login: " . $errCode . ' ' . $errMessage);
}
if (!isset($output->result->value) || !isset($output->result->value->token)) {
throw new \Exception("Unable to get token.");
}
return $output->result->value->token;
2017-01-30 19:02:31 +00:00
}
/**
* Returns the curl object.
*
* @return object curl handle
* @throws \Exception error during curl creation
*/
2017-01-31 19:50:51 +00:00
private function getCurl() {
2017-01-30 19:02:31 +00:00
$curl = curl_init();
2017-01-31 19:50:51 +00:00
if ($this->profile->twoFactorAuthenticationInsecure) {
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, 0);
}
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
2017-01-30 19:02:31 +00:00
return $curl;
}
2017-01-31 19:50:51 +00:00
/**
* Returns the serial numbers of the user.
*
* @param string $user user name
* @param string $token login token
* @throws \Exception error during serial reading
*/
private function getSerialsForUser($user, $token) {
$curl = $this->getCurl();
$url = $this->profile->twoFactorAuthenticationURL . "/token/?user=" . $user;
curl_setopt($curl, CURLOPT_URL, $url);
$header = array('Authorization: ' . $token, 'Accept: application/json');
curl_setopt($curl, CURLOPT_HTTPHEADER, $header);
$json = curl_exec($curl);
curl_close($curl);
if (empty($json)) {
throw new \Exception("Unable to get server response from $url.");
}
$output = json_decode($json);
if (empty($output) || !isset($output->result) || !isset($output->result->status)) {
throw new \Exception("Unable to get json from $url.");
}
$status = $output->result->status;
if (($status != 1) || !isset($output->result->value) || !isset($output->result->value->tokens)) {
$errCode = isset($output->result->error) && isset($output->result->error->code) ? $output->result->error->code : '';
$errMessage = isset($output->result->error) && isset($output->result->error->message) ? $output->result->error->message : '';
throw new \Exception("Unable to get serials: " . $errCode . ' ' . $errMessage);
}
$serials = array();
foreach ($output->result->value->tokens as $tokenEntry) {
if (!isset($tokenEntry->active) || ($tokenEntry->active != 1) || !isset($tokenEntry->serial)) {
continue;
}
$serials[] = $tokenEntry->serial;
}
return $serials;
}
}
/**
* Returns the correct 2 factor provider.
*/
class TwoFactorProviderService {
private $profile;
/**
* Constructor.
*
* @param selfServiceProfile $profile profile
*/
public function __construct(&$profile) {
$this->profile = $profile;
}
/**
* Returns the provider for the given type.
*
* @param string $type authentication type
* @return TwoFactorProvider provider
* @throws \Exception unable to get provider
*/
public function getProvider() {
if ($this->profile->twoFactorAuthentication == selfServiceProfile::TWO_FACTOR_PRIVACYIDEA) {
return new PrivacyIDEAProvider($this->profile);
}
throw new \Exception('Invalid provider: ' . $this->profile->twoFactorAuthentication);
}
2017-01-30 19:02:31 +00:00
}