2 namespace Shaarli\Security
;
4 use Shaarli\Config\ConfigManager
;
7 * User login management
11 /** @var string Name of the cookie set after logging in **/
12 public static $STAY_SIGNED_IN_COOKIE = 'shaarli_staySignedIn';
14 /** @var array A reference to the $_GLOBALS array */
15 protected $globals = [];
17 /** @var ConfigManager Configuration Manager instance **/
18 protected $configManager = null;
20 /** @var SessionManager Session Manager instance **/
21 protected $sessionManager = null;
23 /** @var string Path to the file containing IP bans */
24 protected $banFile = '';
26 /** @var bool Whether the user is logged in **/
27 protected $isLoggedIn = false;
29 /** @var bool Whether the Shaarli instance is open to public edition **/
30 protected $openShaarli = false;
32 /** @var string User sign-in token depending on remote IP and credentials */
33 protected $staySignedInToken = '';
38 * @param array $globals The $GLOBALS array (reference)
39 * @param ConfigManager $configManager Configuration Manager instance
40 * @param SessionManager $sessionManager SessionManager instance
42 public function __construct(& $globals, $configManager, $sessionManager)
44 $this->globals
= &$globals;
45 $this->configManager
= $configManager;
46 $this->sessionManager
= $sessionManager;
47 $this->banFile
= $this->configManager
->get('resource.ban_file', 'data/ipbans.php');
49 if ($this->configManager
->get('security.open_shaarli') === true) {
50 $this->openShaarli
= true;
55 * Generate a token depending on deployment salt, user password and client IP
57 * @param string $clientIpAddress The remote client IP address
59 public function generateStaySignedInToken($clientIpAddress)
61 $this->staySignedInToken
= sha1(
62 $this->configManager
->get('credentials.hash')
64 . $this->configManager
->get('credentials.salt')
69 * Return the user's client stay-signed-in token
71 * @return string User's client stay-signed-in token
73 public function getStaySignedInToken()
75 return $this->staySignedInToken
;
79 * Check user session state and validity (expiration)
81 * @param array $cookie The $_COOKIE array
82 * @param string $clientIpId Client IP address identifier
84 public function checkLoginState($cookie, $clientIpId)
86 if (! $this->configManager
->exists('credentials.login')) {
87 // Shaarli is not configured yet
88 $this->isLoggedIn
= false;
92 if (isset($cookie[self
::$STAY_SIGNED_IN_COOKIE])
93 && $cookie[self
::$STAY_SIGNED_IN_COOKIE] === $this->staySignedInToken
95 // The user client has a valid stay-signed-in cookie
96 // Session information is updated with the current client information
97 $this->sessionManager
->storeLoginInfo($clientIpId);
99 } elseif ($this->sessionManager
->hasSessionExpired()
100 || $this->sessionManager
->hasClientIpChanged($clientIpId)
102 $this->sessionManager
->logout();
103 $this->isLoggedIn
= false;
107 $this->isLoggedIn
= true;
108 $this->sessionManager
->extendSession();
112 * Return whether the user is currently logged in
114 * @return true when the user is logged in, false otherwise
116 public function isLoggedIn()
118 if ($this->openShaarli
) {
121 return $this->isLoggedIn
;
125 * Check user credentials are valid
127 * @param string $remoteIp Remote client IP address
128 * @param string $clientIpId Client IP address identifier
129 * @param string $login Username
130 * @param string $password Password
132 * @return bool true if the provided credentials are valid, false otherwise
134 public function checkCredentials($remoteIp, $clientIpId, $login, $password)
136 $hash = sha1($password . $login . $this->configManager
->get('credentials.salt'));
138 if ($login != $this->configManager
->get('credentials.login')
139 || $hash != $this->configManager
->get('credentials.hash')
142 $this->configManager
->get('resource.log'),
144 'Login failed for user ' . $login
149 $this->sessionManager
->storeLoginInfo($clientIpId);
151 $this->configManager
->get('resource.log'),
159 * Read a file containing banned IPs
161 protected function readBanFile()
163 if (! file_exists($this->banFile
)) {
166 include $this->banFile
;
170 * Write the banned IPs to a file
172 protected function writeBanFile()
174 if (! array_key_exists('IPBANS', $this->globals
)) {
179 "<?php\n\$GLOBALS['IPBANS']=" . var_export($this->globals
['IPBANS'], true) . ";\n?>"
184 * Handle a failed login and ban the IP after too many failed attempts
186 * @param array $server The $_SERVER array
188 public function handleFailedLogin($server)
190 $ip = $server['REMOTE_ADDR'];
191 $trusted = $this->configManager
->get('security.trusted_proxies', []);
193 if (in_array($ip, $trusted)) {
194 $ip = getIpAddressFromProxy($server, $trusted);
196 // the IP is behind a trusted forward proxy, but is not forwarded
197 // in the HTTP headers, so we do nothing
202 // increment the fail count for this IP
203 if (isset($this->globals
['IPBANS']['FAILURES'][$ip])) {
204 $this->globals
['IPBANS']['FAILURES'][$ip]++
;
206 $this->globals
['IPBANS']['FAILURES'][$ip] = 1;
209 if ($this->globals
['IPBANS']['FAILURES'][$ip] >= $this->configManager
->get('security.ban_after')) {
210 $this->globals
['IPBANS']['BANS'][$ip] = time() +
$this->configManager
->get('security.ban_duration', 1800);
212 $this->configManager
->get('resource.log'),
213 $server['REMOTE_ADDR'],
214 'IP address banned from login'
217 $this->writeBanFile();
221 * Handle a successful login
223 * @param array $server The $_SERVER array
225 public function handleSuccessfulLogin($server)
227 $ip = $server['REMOTE_ADDR'];
228 // FIXME unban when behind a trusted proxy?
230 unset($this->globals
['IPBANS']['FAILURES'][$ip]);
231 unset($this->globals
['IPBANS']['BANS'][$ip]);
233 $this->writeBanFile();
237 * Check if the user can login from this IP
239 * @param array $server The $_SERVER array
241 * @return bool true if the user is allowed to login
243 public function canLogin($server)
245 $ip = $server['REMOTE_ADDR'];
247 if (! isset($this->globals
['IPBANS']['BANS'][$ip])) {
248 // the user is not banned
252 if ($this->globals
['IPBANS']['BANS'][$ip] > time()) {
253 // the user is still banned
257 // the ban has expired, the user can attempt to log in again
258 logm($this->configManager
->get('resource.log'), $server['REMOTE_ADDR'], 'Ban lifted.');
259 unset($this->globals
['IPBANS']['FAILURES'][$ip]);
260 unset($this->globals
['IPBANS']['BANS'][$ip]);
262 $this->writeBanFile();