-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathTokenService.php
426 lines (370 loc) · 12.5 KB
/
TokenService.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
<?php
/**
* 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; under version 2
* of the License (non-upgradable).
*
* 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
* Copyright (c) 2017-2020 (original work) Open Assessment Technologies SA ;
*/
declare(strict_types=1);
namespace oat\tao\model\security\xsrf;
use common_Exception;
use common_exception_NoImplementation;
use common_exception_Unauthorized;
use oat\oatbox\log\LoggerAwareTrait;
use oat\oatbox\service\ConfigurableService;
use oat\oatbox\service\exception\InvalidService;
use oat\tao\model\security\TokenGenerator;
/**
* This service let's you manage tokens to protect against XSRF.
* The protection works using this workflow :
* 1. Token pool gets generated and stored by front-end
* 2. Front-end adds a token header using the token header "X-CSRF-Token"
* 3. Back-end verifies the token using \oat\tao\model\security\xsrf\CsrfValidatorTrait
*
* @see \oat\tao\model\security\xsrf\CsrfValidatorTrait
* @author Bertrand Chevrier <[email protected]>
* @author Martijn Swinkels <[email protected]>
*/
class TokenService extends ConfigurableService
{
use TokenGenerator;
use LoggerAwareTrait;
public const SERVICE_ID = 'tao/security-xsrf-token';
// options keys
public const POOL_SIZE_OPT = 'poolSize';
public const TIME_LIMIT_OPT = 'timeLimit';
public const VALIDATE_TOKENS_OPT = 'validateTokens';
public const OPTION_STORE = 'store';
public const OPTION_CLIENT_STORE = 'clientStore';
public const OPTION_CLIENT_STORE_LOCAL_STORAGE = 'localStorage';
public const OPTION_CLIENT_STORE_LOCAL_SESSION_STORAGE = 'sessionStorage';
public const OPTION_CLIENT_STORE_LOCAL_SESSION_INDEXED_DB = 'indexedDB';
public const OPTION_CLIENT_STORE_MEMORY = 'memory';
public const CLIENT_STORE_OPTION_VALUES = [
self::OPTION_CLIENT_STORE_LOCAL_STORAGE,
self::OPTION_CLIENT_STORE_LOCAL_SESSION_STORAGE,
self::OPTION_CLIENT_STORE_LOCAL_SESSION_INDEXED_DB,
self::OPTION_CLIENT_STORE_MEMORY,
];
public const CSRF_TOKEN_HEADER = 'X-CSRF-Token';
public const FORM_TOKEN_NAMESPACE = 'form_token';
public const JS_DATA_KEY = 'tokenHandler';
public const JS_TOKEN_KEY = 'tokens';
public const JS_TOKEN_POOL_SIZE_KEY = 'maxSize';
public const JS_TOKEN_TIME_LIMIT_KEY = 'tokenTimeLimit';
public const JS_TOKEN_STORE = 'store';
private const DEFAULT_POOL_SIZE = 6;
private const DEFAULT_TIME_LIMIT = 0;
private const DEFAULT_CLIENT_STORE = self::OPTION_CLIENT_STORE_MEMORY;
/**
* @param int $uSleepInterval Microseconds interval between scan/keys to perform deletion
* @param int $timeLimit Expiration time for tokens, 0 means, no expiration
* @return int - The total deleted records
*/
public function clearAll(int $uSleepInterval, int $timeLimit): int
{
$store = $this->getStore();
if ($store instanceof TokenStoreKeyValue) {
return $store->clearAll($uSleepInterval, $timeLimit);
}
throw new common_exception_NoImplementation(
sprintf(
'There is no implementation of %s to the Store Driver %s',
__METHOD__,
get_class($store)
)
);
}
/**
* Generates, stores and return a brand new token
* Triggers the pool invalidation.
*
* @return Token
* @throws common_Exception
*/
public function createToken(): Token
{
$store = $this->getStore();
$this->invalidateExpiredAndSurplus($store->getAll());
$token = new Token();
$store->setToken($token->getValue(), $token);
return $token;
}
/**
* Check if the given token is valid
* (does not revoke)
*
* @param string|Token $token The given token to validate
*
* @return boolean
* @throws InvalidService
*/
public function checkToken($token): bool
{
$token = $this->normaliseToken($token);
$savedToken = $this->getStore()->getToken($token);
return $this->isTokenValid($token, $savedToken);
}
/**
* Check if form token is valid (does not revoke)
*
* @param string|Token $token The given token to validate
*
* @return boolean
* @throws InvalidService
*/
public function checkFormToken($token): bool
{
$token = $this->normaliseToken($token);
$savedToken = $this->getStore()->getToken(self::FORM_TOKEN_NAMESPACE);
return $this->isTokenValid($token, $savedToken);
}
/**
* Check if the given token is valid and revoke it.
*
* @param string |Token $token
*
* @return bool Whether or not the token was successfully revoked
*
* @throws common_Exception
* @throws common_exception_Unauthorized In case of an invalid token or missing
*/
public function validateToken($token): bool
{
$token = $this->normaliseToken($token);
$storeToken = $this->getStore()->getToken($token);
$result = $this->revokeToken($token);
if ($storeToken === null || $this->isExpired($storeToken)) {
throw new common_exception_Unauthorized();
}
return $result;
}
/**
* Check if the given token has expired.
*
* @param Token $token
* @return bool
*/
private function isExpired(Token $token): bool
{
return $token->isExpired($this->getTimeLimit());
}
/**
* Revokes the given token
*
* @param string|Token $token
*
* @return true
*
* @throws InvalidService
*/
public function revokeToken($token): bool
{
$token = $this->normaliseToken($token);
return $this->getStore()->removeToken($token);
}
/**
* Invalidate the tokens in the pool :
* - remove the oldest if the pool raises it's size limit
* - remove the expired tokens
*
* @param Token[] $tokens
*
* @return array the invalidated pool
*
* @throws InvalidService
*/
protected function invalidateExpiredAndSurplus(array $tokens): array
{
$timeLimit = $this->getTimeLimit();
$poolSize = $this->getPoolSize();
if ($timeLimit > 0) {
foreach ($tokens as $key => $token) {
if ($this->isExpired($token)) {
$this->getStore()->removeToken($token->getValue());
unset($tokens[$key]);
}
}
}
if ($poolSize > 0 && count($tokens) >= $poolSize) {
uasort($tokens, static function (Token $a, Token $b) {
if ($a->getCreatedAt() === $b->getCreatedAt()) {
return 0;
}
return $a->getCreatedAt() < $b->getCreatedAt() ? -1 : 1;
});
//remove the elements at the beginning to fit the pool size
for ($i = 0; $i <= count($tokens) - $poolSize; $i++) {
$this->getStore()->removeToken($tokens[$i]->getValue());
}
}
return $tokens;
}
/**
* Get the configured pool size
*
* @param bool $withForm - Takes care of the form token
*
* @return int the pool size, 10 by default
*
* @throws InvalidService
*/
public function getPoolSize(bool $withForm = true): int
{
$poolSize = self::DEFAULT_POOL_SIZE;
if ($this->hasOption(self::POOL_SIZE_OPT)) {
$poolSize = (int)$this->getOption(self::POOL_SIZE_OPT);
}
if ($withForm && $poolSize > 0 && $this->getStore()->hasToken(self::FORM_TOKEN_NAMESPACE)) {
$poolSize++;
}
return $poolSize;
}
/**
* Get the configured time limit in seconds
*
* @return int the limit
*/
protected function getTimeLimit(): int
{
$timeLimit = self::DEFAULT_TIME_LIMIT;
if ($this->hasOption(self::TIME_LIMIT_OPT)) {
$timeLimit = (int)$this->getOption(self::TIME_LIMIT_OPT);
}
return $timeLimit;
}
/**
* Get the configured store
*
* @return TokenStore the store
*
* @throws InvalidService
*/
protected function getStore(): TokenStore
{
$store = $this->getOption(self::OPTION_STORE);
if (!$store instanceof TokenStore) {
throw new InvalidService('Unexpected store for ' . __CLASS__);
}
return $this->propagate($store);
}
/**
* Generate a token pool, and return it.
*
* @return Token[]
* @throws common_Exception
*/
public function generateTokenPool(): array
{
$store = $this->getStore();
$tokens = $store->getAll();
if ($this->getTimeLimit() > 0) {
foreach ($tokens as $key => $token) {
if ($this->isExpired($token)) {
$this->revokeToken($token->getValue());
unset($tokens[$key]);
}
}
}
$remainingPoolSize = $this->getPoolSize() - count($tokens);
for ($i = 0; $i < $remainingPoolSize; $i++) {
$newToken = new Token();
$store->setToken($newToken->getValue(), $newToken);
$tokens[] = $newToken;
}
return $tokens;
}
/**
* Gets the client configuration
*
* @return array
*
* @throws common_Exception
*/
public function getClientConfig(): array
{
$storedFormToken = $this->getFormToken();
$tokenPool = $this->generateTokenPool();
$jsTokenPool = [];
foreach ($tokenPool as $token) {
if ($storedFormToken && $token->getValue() === $storedFormToken->getValue()) {
// exclude form token from client configuration
continue;
}
$jsTokenPool[] = $token->getValue();
}
return [
self::JS_TOKEN_TIME_LIMIT_KEY => $this->getTimeLimit() * 1000,
self::JS_TOKEN_POOL_SIZE_KEY => $this->getPoolSize(false),
self::JS_TOKEN_KEY => $jsTokenPool,
self::VALIDATE_TOKENS_OPT => $this->getOption(self::VALIDATE_TOKENS_OPT),
self::JS_TOKEN_STORE => $this->getClientStore(),
];
}
/**
* Add a token that can be used for forms.
* @throws common_Exception
*/
public function addFormToken(): void
{
$this->getStore()->setToken(self::FORM_TOKEN_NAMESPACE, new Token());
}
/**
* Get a token from the pool, which can be used for forms.
* @return Token
* @throws common_Exception
*/
public function getFormToken(): Token
{
$store = $this->getStore();
$token = $store->getToken(self::FORM_TOKEN_NAMESPACE);
if ($token === null) {
$this->addFormToken();
return $store->getToken(self::FORM_TOKEN_NAMESPACE);
}
if ($token->isExpired($this->getTimeLimit())) {
$this->revokeToken($token);
$this->addFormToken();
return $store->getToken(self::FORM_TOKEN_NAMESPACE);
}
return $token;
}
private function getClientStore(): string
{
$store = $this->getOption(self::OPTION_CLIENT_STORE, self::DEFAULT_CLIENT_STORE);
return in_array($store, self::CLIENT_STORE_OPTION_VALUES, true)
? $store
: self::DEFAULT_CLIENT_STORE;
}
/**
* @param string|Token $token
* @return string
*/
private function normaliseToken($token): string
{
if (is_object($token) && $token instanceof Token) {
$token = $token->getValue();
}
return $token;
}
/**
* @param string $tokenToCheck
* @param Token|null $savedToken
* @return bool
*/
private function isTokenValid(string $tokenToCheck, ?Token $savedToken): bool
{
return $savedToken !== null && $savedToken->getValue() === $tokenToCheck && !$this->isExpired($savedToken);
}
}