2017-10-25 23:03:31 +02:00
|
|
|
<?php
|
2018-04-27 22:12:22 +02:00
|
|
|
namespace Shaarli\Security;
|
2017-10-25 23:03:31 +02:00
|
|
|
|
2020-03-02 17:08:19 +01:00
|
|
|
use Exception;
|
2018-04-04 00:54:59 +02:00
|
|
|
use Shaarli\Config\ConfigManager;
|
|
|
|
|
2017-10-25 23:03:31 +02:00
|
|
|
/**
|
|
|
|
* User login management
|
|
|
|
*/
|
|
|
|
class LoginManager
|
|
|
|
{
|
2018-04-04 00:43:48 +02:00
|
|
|
/** @var array A reference to the $_GLOBALS array */
|
2017-10-25 23:03:31 +02:00
|
|
|
protected $globals = [];
|
2018-04-04 00:43:48 +02:00
|
|
|
|
|
|
|
/** @var ConfigManager Configuration Manager instance **/
|
2017-10-25 23:03:31 +02:00
|
|
|
protected $configManager = null;
|
2018-04-04 00:43:48 +02:00
|
|
|
|
|
|
|
/** @var SessionManager Session Manager instance **/
|
2018-02-17 01:46:27 +01:00
|
|
|
protected $sessionManager = null;
|
2018-04-04 00:43:48 +02:00
|
|
|
|
2019-02-09 16:44:48 +01:00
|
|
|
/** @var BanManager Ban Manager instance **/
|
|
|
|
protected $banManager;
|
2018-04-04 00:43:48 +02:00
|
|
|
|
|
|
|
/** @var bool Whether the user is logged in **/
|
2018-02-17 01:46:27 +01:00
|
|
|
protected $isLoggedIn = false;
|
2018-04-04 00:43:48 +02:00
|
|
|
|
|
|
|
/** @var bool Whether the Shaarli instance is open to public edition **/
|
2018-02-17 01:46:27 +01:00
|
|
|
protected $openShaarli = false;
|
2017-10-25 23:03:31 +02:00
|
|
|
|
2018-05-06 17:06:36 +02:00
|
|
|
/** @var string User sign-in token depending on remote IP and credentials */
|
|
|
|
protected $staySignedInToken = '';
|
2020-07-07 10:15:56 +02:00
|
|
|
/** @var CookieManager */
|
|
|
|
protected $cookieManager;
|
2018-05-06 17:06:36 +02:00
|
|
|
|
2017-10-25 23:03:31 +02:00
|
|
|
/**
|
|
|
|
* Constructor
|
|
|
|
*
|
2018-02-17 01:46:27 +01:00
|
|
|
* @param ConfigManager $configManager Configuration Manager instance
|
|
|
|
* @param SessionManager $sessionManager SessionManager instance
|
2020-07-07 10:15:56 +02:00
|
|
|
* @param CookieManager $cookieManager CookieManager instance
|
2017-10-25 23:03:31 +02:00
|
|
|
*/
|
2020-07-07 10:15:56 +02:00
|
|
|
public function __construct($configManager, $sessionManager, $cookieManager)
|
2017-10-25 23:03:31 +02:00
|
|
|
{
|
|
|
|
$this->configManager = $configManager;
|
2018-02-17 01:46:27 +01:00
|
|
|
$this->sessionManager = $sessionManager;
|
2020-07-07 10:15:56 +02:00
|
|
|
$this->cookieManager = $cookieManager;
|
2019-02-09 16:44:48 +01:00
|
|
|
$this->banManager = new BanManager(
|
|
|
|
$this->configManager->get('security.trusted_proxies', []),
|
|
|
|
$this->configManager->get('security.ban_after'),
|
|
|
|
$this->configManager->get('security.ban_duration'),
|
|
|
|
$this->configManager->get('resource.ban_file', 'data/ipbans.php'),
|
|
|
|
$this->configManager->get('resource.log')
|
|
|
|
);
|
|
|
|
|
2018-05-06 17:12:48 +02:00
|
|
|
if ($this->configManager->get('security.open_shaarli') === true) {
|
2018-02-17 01:46:27 +01:00
|
|
|
$this->openShaarli = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-06 17:06:36 +02:00
|
|
|
/**
|
|
|
|
* Generate a token depending on deployment salt, user password and client IP
|
|
|
|
*
|
|
|
|
* @param string $clientIpAddress The remote client IP address
|
|
|
|
*/
|
|
|
|
public function generateStaySignedInToken($clientIpAddress)
|
|
|
|
{
|
2018-07-17 14:13:37 +02:00
|
|
|
if ($this->configManager->get('security.session_protection_disabled') === true) {
|
|
|
|
$clientIpAddress = '';
|
|
|
|
}
|
2018-05-06 17:06:36 +02:00
|
|
|
$this->staySignedInToken = sha1(
|
|
|
|
$this->configManager->get('credentials.hash')
|
|
|
|
. $clientIpAddress
|
|
|
|
. $this->configManager->get('credentials.salt')
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return the user's client stay-signed-in token
|
|
|
|
*
|
|
|
|
* @return string User's client stay-signed-in token
|
|
|
|
*/
|
|
|
|
public function getStaySignedInToken()
|
|
|
|
{
|
|
|
|
return $this->staySignedInToken;
|
|
|
|
}
|
|
|
|
|
2018-02-17 01:46:27 +01:00
|
|
|
/**
|
|
|
|
* Check user session state and validity (expiration)
|
|
|
|
*
|
2018-04-18 23:09:45 +02:00
|
|
|
* @param string $clientIpId Client IP address identifier
|
2018-02-17 01:46:27 +01:00
|
|
|
*/
|
2020-07-07 10:15:56 +02:00
|
|
|
public function checkLoginState($clientIpId)
|
2018-02-17 01:46:27 +01:00
|
|
|
{
|
|
|
|
if (! $this->configManager->exists('credentials.login')) {
|
|
|
|
// Shaarli is not configured yet
|
|
|
|
$this->isLoggedIn = false;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-07-07 10:15:56 +02:00
|
|
|
if ($this->staySignedInToken === $this->cookieManager->getCookieParameter(CookieManager::STAY_SIGNED_IN)) {
|
2018-05-06 17:12:48 +02:00
|
|
|
// The user client has a valid stay-signed-in cookie
|
|
|
|
// Session information is updated with the current client information
|
2018-04-04 00:54:59 +02:00
|
|
|
$this->sessionManager->storeLoginInfo($clientIpId);
|
2018-05-06 17:12:48 +02:00
|
|
|
} elseif ($this->sessionManager->hasSessionExpired()
|
2018-04-04 00:54:59 +02:00
|
|
|
|| $this->sessionManager->hasClientIpChanged($clientIpId)
|
2018-02-17 01:46:27 +01:00
|
|
|
) {
|
2018-04-27 23:17:38 +02:00
|
|
|
$this->sessionManager->logout();
|
2018-02-17 01:46:27 +01:00
|
|
|
$this->isLoggedIn = false;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-05-30 02:09:09 +02:00
|
|
|
$this->isLoggedIn = true;
|
2018-04-04 00:54:59 +02:00
|
|
|
$this->sessionManager->extendSession();
|
2018-02-17 01:46:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return whether the user is currently logged in
|
|
|
|
*
|
|
|
|
* @return true when the user is logged in, false otherwise
|
|
|
|
*/
|
|
|
|
public function isLoggedIn()
|
|
|
|
{
|
|
|
|
if ($this->openShaarli) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return $this->isLoggedIn;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check user credentials are valid
|
|
|
|
*
|
2018-04-18 23:09:45 +02:00
|
|
|
* @param string $remoteIp Remote client IP address
|
|
|
|
* @param string $clientIpId Client IP address identifier
|
|
|
|
* @param string $login Username
|
|
|
|
* @param string $password Password
|
2018-02-17 01:46:27 +01:00
|
|
|
*
|
|
|
|
* @return bool true if the provided credentials are valid, false otherwise
|
|
|
|
*/
|
2018-04-18 23:09:45 +02:00
|
|
|
public function checkCredentials($remoteIp, $clientIpId, $login, $password)
|
2018-02-17 01:46:27 +01:00
|
|
|
{
|
2020-03-02 17:08:19 +01:00
|
|
|
// Check login matches config
|
2020-06-03 10:35:41 +02:00
|
|
|
if ($login !== $this->configManager->get('credentials.login')) {
|
2020-03-02 17:08:19 +01:00
|
|
|
return false;
|
|
|
|
}
|
2018-02-17 01:46:27 +01:00
|
|
|
|
2020-03-02 17:08:19 +01:00
|
|
|
// Check credentials
|
|
|
|
try {
|
2020-06-03 10:34:32 +02:00
|
|
|
$useLdapLogin = !empty($this->configManager->get('ldap.host'));
|
|
|
|
if ((false === $useLdapLogin && $this->checkCredentialsFromLocalConfig($login, $password))
|
|
|
|
|| (true === $useLdapLogin && $this->checkCredentialsFromLdap($login, $password))
|
|
|
|
) {
|
2020-03-02 17:08:19 +01:00
|
|
|
$this->sessionManager->storeLoginInfo($clientIpId);
|
|
|
|
logm(
|
|
|
|
$this->configManager->get('resource.log'),
|
|
|
|
$remoteIp,
|
|
|
|
'Login successful'
|
|
|
|
);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch(Exception $exception) {
|
2018-02-17 01:46:27 +01:00
|
|
|
logm(
|
|
|
|
$this->configManager->get('resource.log'),
|
2018-04-18 23:09:45 +02:00
|
|
|
$remoteIp,
|
2020-03-02 17:08:19 +01:00
|
|
|
'Exception while checking credentials: ' . $exception
|
2018-02-17 01:46:27 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
logm(
|
|
|
|
$this->configManager->get('resource.log'),
|
2018-04-18 23:09:45 +02:00
|
|
|
$remoteIp,
|
2020-03-02 17:08:19 +01:00
|
|
|
'Login failed for user ' . $login
|
2018-02-17 01:46:27 +01:00
|
|
|
);
|
2020-03-02 17:08:19 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check user credentials from local config
|
|
|
|
*
|
|
|
|
* @param string $login Username
|
|
|
|
* @param string $password Password
|
|
|
|
*
|
|
|
|
* @return bool true if the provided credentials are valid, false otherwise
|
|
|
|
*/
|
|
|
|
public function checkCredentialsFromLocalConfig($login, $password) {
|
|
|
|
$hash = sha1($password . $login . $this->configManager->get('credentials.salt'));
|
|
|
|
|
|
|
|
return $login == $this->configManager->get('credentials.login')
|
|
|
|
&& $hash == $this->configManager->get('credentials.hash');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check user credentials are valid through LDAP bind
|
|
|
|
*
|
|
|
|
* @param string $remoteIp Remote client IP address
|
|
|
|
* @param string $clientIpId Client IP address identifier
|
|
|
|
* @param string $login Username
|
|
|
|
* @param string $password Password
|
|
|
|
*
|
|
|
|
* @return bool true if the provided credentials are valid, false otherwise
|
|
|
|
*/
|
|
|
|
public function checkCredentialsFromLdap($login, $password, $connect = null, $bind = null)
|
|
|
|
{
|
2020-06-25 16:18:25 +02:00
|
|
|
$connect = $connect ?? function($host) {
|
|
|
|
$resource = ldap_connect($host);
|
|
|
|
|
|
|
|
ldap_set_option($resource, LDAP_OPT_PROTOCOL_VERSION, 3);
|
|
|
|
|
|
|
|
return $resource;
|
|
|
|
};
|
|
|
|
$bind = $bind ?? function($handle, $dn, $password) {
|
|
|
|
return ldap_bind($handle, $dn, $password);
|
|
|
|
};
|
2020-06-03 10:36:04 +02:00
|
|
|
|
|
|
|
return $bind(
|
|
|
|
$connect($this->configManager->get('ldap.host')),
|
2020-06-25 16:18:25 +02:00
|
|
|
sprintf($this->configManager->get('ldap.dn'), $login),
|
2020-06-03 10:36:04 +02:00
|
|
|
$password
|
|
|
|
);
|
2017-10-25 23:03:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle a failed login and ban the IP after too many failed attempts
|
|
|
|
*
|
|
|
|
* @param array $server The $_SERVER array
|
|
|
|
*/
|
|
|
|
public function handleFailedLogin($server)
|
|
|
|
{
|
2019-02-09 16:44:48 +01:00
|
|
|
$this->banManager->handleFailedAttempt($server);
|
2017-10-25 23:03:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle a successful login
|
|
|
|
*
|
|
|
|
* @param array $server The $_SERVER array
|
|
|
|
*/
|
|
|
|
public function handleSuccessfulLogin($server)
|
|
|
|
{
|
2019-02-09 16:44:48 +01:00
|
|
|
$this->banManager->clearFailures($server);
|
2017-10-25 23:03:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if the user can login from this IP
|
|
|
|
*
|
|
|
|
* @param array $server The $_SERVER array
|
|
|
|
*
|
|
|
|
* @return bool true if the user is allowed to login
|
|
|
|
*/
|
|
|
|
public function canLogin($server)
|
|
|
|
{
|
2019-02-09 16:44:48 +01:00
|
|
|
return ! $this->banManager->isBanned($server);
|
2017-10-25 23:03:31 +02:00
|
|
|
}
|
|
|
|
}
|