2 namespace TYPO3\CMS\Core\Authentication
;
5 * This file is part of the TYPO3 CMS project.
7 * It is free software; you can redistribute it and/or modify it under
8 * the terms of the GNU General Public License, either version 2
9 * of the License, or any later version.
11 * For the full copyright and license information, please read the
12 * LICENSE.txt file that was distributed with this source code.
14 * The TYPO3 project - inspiring people to share!
17 use Psr\Log\LoggerAwareInterface
;
18 use Psr\Log\LoggerAwareTrait
;
19 use TYPO3\CMS\Core\Core\Environment
;
20 use TYPO3\CMS\Core\Crypto\Random
;
21 use TYPO3\CMS\Core\Database\Connection
;
22 use TYPO3\CMS\Core\Database\ConnectionPool
;
23 use TYPO3\CMS\Core\Database\Query\Restriction\DefaultRestrictionContainer
;
24 use TYPO3\CMS\Core\Database\Query\Restriction\DeletedRestriction
;
25 use TYPO3\CMS\Core\Database\Query\Restriction\EndTimeRestriction
;
26 use TYPO3\CMS\Core\Database\Query\Restriction\HiddenRestriction
;
27 use TYPO3\CMS\Core\Database\Query\Restriction\QueryRestrictionContainerInterface
;
28 use TYPO3\CMS\Core\Database\Query\Restriction\RootLevelRestriction
;
29 use TYPO3\CMS\Core\Database\Query\Restriction\StartTimeRestriction
;
30 use TYPO3\CMS\Core\Exception
;
31 use TYPO3\CMS\Core\Session\Backend\Exception\SessionNotFoundException
;
32 use TYPO3\CMS\Core\Session\Backend\SessionBackendInterface
;
33 use TYPO3\CMS\Core\Session\SessionManager
;
34 use TYPO3\CMS\Core\Utility\GeneralUtility
;
35 use TYPO3\CMS\Core\Utility\MathUtility
;
38 * Authentication of users in TYPO3
40 * This class is used to authenticate a login user.
41 * The class is used by both the frontend and backend.
42 * In both cases this class is a parent class to BackendUserAuthentication and FrontendUserAuthentication
44 * See Inside TYPO3 for more information about the API of the class and internal variables.
46 abstract class AbstractUserAuthentication
implements LoggerAwareInterface
57 * Table in database with user data
60 public $user_table = '';
63 * Table in database with user groups
66 public $usergroup_table = '';
69 * Column for login-name
72 public $username_column = '';
78 public $userident_column = '';
84 public $userid_column = '';
87 * Column for user group information
90 public $usergroup_column = '';
93 * Column name for last login timestamp
96 public $lastLogin_column = '';
99 * Enable field columns of user table
102 public $enablecolumns = [
104 // Boolean: If TRUE, 'AND pid=0' will be a part of the query...
114 public $showHiddenRecords = false;
117 * Form field with login-name
120 public $formfield_uname = '';
123 * Form field with password
126 public $formfield_uident = '';
129 * Form field with status: *'login', 'logout'. If empty login is not verified.
132 public $formfield_status = '';
135 * Session timeout (on the server)
137 * If >0: session-timeout in seconds.
138 * If <=0: Instant logout after login.
142 public $sessionTimeout = 0;
145 * Name for a field to fetch the server session timeout from.
146 * If not empty this is a field name from the user table where the timeout can be found.
149 public $auth_timeout_field = '';
152 * Lifetime for the session-cookie (on the client)
154 * If >0: permanent cookie with given lifetime
155 * If 0: session-cookie
156 * Session-cookie means the browser will remove it when the browser is closed.
160 public $lifetime = 0;
164 * Purge all server session data older than $gc_time seconds.
165 * if $this->sessionTimeout > 0, then the session timeout is used instead.
168 public $gc_time = 86400;
171 * Probability for garbage collection to be run (in percent)
174 public $gc_probability = 1;
177 * Decides if the writelog() function is called at login and logout
180 public $writeStdLog = false;
183 * Log failed login attempts
186 public $writeAttemptLog = false;
189 * Send no-cache headers
192 public $sendNoCacheHeaders = true;
195 * The ident-hash is normally 32 characters and should be!
196 * But if you are making sites for WAP-devices or other low-bandwidth stuff,
197 * you may shorten the length.
198 * Never let this value drop below 6!
199 * A length of 6 would give you more than 16 mio possibilities.
202 public $hash_length = 32;
205 * If set to 4, the session will be locked to the user's IP address (all four numbers).
206 * Reducing this to 1-3 means that only the given number of parts of the IP address is used.
214 public $warningEmail = '';
217 * Time span (in seconds) within the number of failed logins are collected
220 public $warningPeriod = 3600;
223 * The maximum accepted number of warnings before an email to $warningEmail is sent
226 public $warningMax = 3;
229 * If set, the user-record must be stored at the page defined by $checkPid_value
232 public $checkPid = true;
235 * The page id the user record must be stored at
238 public $checkPid_value = 0;
241 * session_id (MD5-hash)
248 * Indicates if an authentication was started but failed
251 public $loginFailure = false;
254 * Will be set to TRUE if the login session is actually written during auth-check.
257 public $loginSessionStarted = false;
260 * @var array|null contains user- AND session-data from database (joined tables)
266 * Will be set to TRUE if a new session ID was created
269 public $newSessionID = false;
272 * Will force the session cookie to be set every time (lifetime must be 0)
275 public $forceSetCookie = false;
278 * Will prevent the setting of the session cookie (takes precedence over forceSetCookie)
281 public $dontSetCookie = false;
286 protected $cookieWasSetOnCurrentRequest = false;
289 * Login type, used for services.
292 public $loginType = '';
295 * "auth" services configuration array from $GLOBALS['TYPO3_CONF_VARS']['SVCONF']['auth']
298 public $svConfig = [];
306 * @var SessionBackendInterface
308 protected $sessionBackend;
311 * Holds deserialized data from session records.
312 * 'Reserved' keys are:
313 * - 'sys': Reserved for TypoScript standard code.
316 protected $sessionData = [];
319 * Initialize some important variables
323 public function __construct()
325 $this->svConfig
= $GLOBALS['TYPO3_CONF_VARS']['SVCONF']['auth'] ??
[];
326 // If there is a custom session timeout, use this instead of the 1d default gc time.
327 if ($this->sessionTimeout
> 0) {
328 $this->gc_time
= $this->sessionTimeout
;
330 // Backend or frontend login - used for auth services
331 if (empty($this->loginType
)) {
332 throw new Exception('No loginType defined, must be set explicitly by subclass', 1476045345);
337 * Starts a user session
338 * Typical configurations will:
339 * a) check if session cookie was set and if not, set one,
340 * b) check if a password/username was sent and if so, try to authenticate the user
341 * c) Lookup a session attached to a user and check timeout etc.
342 * d) Garbage collection, setting of no-cache headers.
343 * If a user is authenticated the database record of the user (array) will be set in the ->user internal variable.
345 public function start()
347 $this->logger
->debug('## Beginning of auth logging.');
348 $this->newSessionID
= false;
349 // Make certain that NO user is set initially
351 // sessionID is set to ses_id if cookie is present. Otherwise a new session will start
352 $this->id
= $this->getCookie($this->name
);
354 // If new session or client tries to fix session...
355 if (!$this->isExistingSessionRecord($this->id
)) {
356 $this->id
= $this->createSessionId();
357 $this->newSessionID
= true;
360 // Set all possible headers that could ensure that the script is not cached on the client-side
361 $this->sendHttpHeaders();
362 // Load user session, check to see if anyone has submitted login-information and if so authenticate
363 // the user with the session. $this->user[uid] may be used to write log...
364 $this->checkAuthentication();
366 if (!$this->dontSetCookie
) {
367 $this->setSessionCookie();
369 // Hook for alternative ways of filling the $this->user array (is used by the "timtaw" extension)
370 foreach ($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['t3lib/class.t3lib_userauth.php']['postUserLookUp'] ??
[] as $funcName) {
374 GeneralUtility
::callUserFunction($funcName, $_params, $this);
376 // If we're lucky we'll get to clean up old sessions
377 if (rand() %
100 <= $this->gc_probability
) {
383 * Set all possible headers that could ensure that the script
384 * is not cached on the client-side.
386 * Only do this if $this->sendNoCacheHeaders is set.
388 protected function sendHttpHeaders()
390 // skip sending the "no-cache" headers if it's a CLI request or the no-cache headers should not be sent.
391 if (!$this->sendNoCacheHeaders || Environment
::isCli()) {
394 $httpHeaders = $this->getHttpHeaders();
395 foreach ($httpHeaders as $httpHeaderName => $value) {
396 header($httpHeaderName . ': ' . $value);
401 * Get the http headers to be sent if an authenticated user is available, in order to disallow
402 * browsers to store the response on the client side.
406 protected function getHttpHeaders(): array
410 'Last-Modified' => gmdate('D, d M Y H:i:s') . ' GMT'
412 $cacheControlHeader = 'no-cache, must-revalidate';
413 $pragmaHeader = 'no-cache';
414 // Prevent error message in IE when using a https connection
415 // see http://forge.typo3.org/issues/24125
416 if (strpos(GeneralUtility
::getIndpEnv('HTTP_USER_AGENT'), 'MSIE') !== false
417 && GeneralUtility
::getIndpEnv('TYPO3_SSL')) {
418 // Some IEs can not handle no-cache
419 // see http://support.microsoft.com/kb/323308/en-us
420 $cacheControlHeader = 'must-revalidate';
421 // IE needs "Pragma: private" if SSL connection
422 $pragmaHeader = 'private';
424 $headers['Cache-Control'] = $cacheControlHeader;
425 $headers['Pragma'] = $pragmaHeader;
430 * Sets the session cookie for the current disposal.
434 protected function setSessionCookie()
436 $isSetSessionCookie = $this->isSetSessionCookie();
437 $isRefreshTimeBasedCookie = $this->isRefreshTimeBasedCookie();
438 if ($isSetSessionCookie ||
$isRefreshTimeBasedCookie) {
439 $settings = $GLOBALS['TYPO3_CONF_VARS']['SYS'];
440 // Get the domain to be used for the cookie (if any):
441 $cookieDomain = $this->getCookieDomain();
442 // If no cookie domain is set, use the base path:
443 $cookiePath = $cookieDomain ?
'/' : GeneralUtility
::getIndpEnv('TYPO3_SITE_PATH');
444 // If the cookie lifetime is set, use it:
445 $cookieExpire = $isRefreshTimeBasedCookie ?
$GLOBALS['EXEC_TIME'] +
$this->lifetime
: 0;
446 // Use the secure option when the current request is served by a secure connection:
447 $cookieSecure = (bool)$settings['cookieSecure'] && GeneralUtility
::getIndpEnv('TYPO3_SSL');
448 // Do not set cookie if cookieSecure is set to "1" (force HTTPS) and no secure channel is used:
449 if ((int)$settings['cookieSecure'] !== 1 || GeneralUtility
::getIndpEnv('TYPO3_SSL')) {
450 setcookie($this->name
, $this->id
, $cookieExpire, $cookiePath, $cookieDomain, $cookieSecure, true);
451 $this->cookieWasSetOnCurrentRequest
= true;
453 throw new Exception('Cookie was not set since HTTPS was forced in $TYPO3_CONF_VARS[SYS][cookieSecure].', 1254325546);
455 $this->logger
->debug(
456 ($isRefreshTimeBasedCookie ?
'Updated Cookie: ' : 'Set Cookie: ')
457 . $this->id
. ($cookieDomain ?
', ' . $cookieDomain : '')
463 * Gets the domain to be used on setting cookies.
464 * The information is taken from the value in $GLOBALS['TYPO3_CONF_VARS']['SYS']['cookieDomain'].
466 * @return string The domain to be used on setting cookies
468 protected function getCookieDomain()
471 $cookieDomain = $GLOBALS['TYPO3_CONF_VARS']['SYS']['cookieDomain'];
472 // If a specific cookie domain is defined for a given TYPO3_MODE,
474 if (!empty($GLOBALS['TYPO3_CONF_VARS'][$this->loginType
]['cookieDomain'])) {
475 $cookieDomain = $GLOBALS['TYPO3_CONF_VARS'][$this->loginType
]['cookieDomain'];
478 if ($cookieDomain[0] === '/') {
480 $matchCnt = @preg_match
($cookieDomain, GeneralUtility
::getIndpEnv('TYPO3_HOST_ONLY'), $match);
481 if ($matchCnt === false) {
482 $this->logger
->critical('The regular expression for the cookie domain (' . $cookieDomain . ') contains errors. The session is not shared across sub-domains.');
483 } elseif ($matchCnt) {
487 $result = $cookieDomain;
494 * Get the value of a specified cookie.
496 * @param string $cookieName The cookie ID
497 * @return string The value stored in the cookie
499 protected function getCookie($cookieName)
501 return isset($_COOKIE[$cookieName]) ?
stripslashes($_COOKIE[$cookieName]) : '';
505 * Determine whether a session cookie needs to be set (lifetime=0)
510 public function isSetSessionCookie()
512 return ($this->newSessionID ||
$this->forceSetCookie
) && $this->lifetime
== 0;
516 * Determine whether a non-session cookie needs to be set (lifetime>0)
521 public function isRefreshTimeBasedCookie()
523 return $this->lifetime
> 0;
527 * Checks if a submission of username and password is present or use other authentication by auth services
529 * @throws \RuntimeException
532 public function checkAuthentication()
534 // No user for now - will be searched by service below
537 // User is not authenticated by default
538 $authenticated = false;
539 // User want to login with passed login data (name/password)
540 $activeLogin = false;
541 // Indicates if an active authentication failed (not auto login)
542 $this->loginFailure
= false;
543 $this->logger
->debug('Login type: ' . $this->loginType
);
544 // The info array provide additional information for auth services
545 $authInfo = $this->getAuthInfoArray();
546 // Get Login/Logout data submitted by a form or params
547 $loginData = $this->getLoginFormData();
548 $this->logger
->debug('Login data', $loginData);
549 // Active logout (eg. with "logout" button)
550 if ($loginData['status'] === LoginType
::LOGOUT
) {
551 if ($this->writeStdLog
) {
552 // $type,$action,$error,$details_nr,$details,$data,$tablename,$recuid,$recpid
553 $this->writelog(255, 2, 0, 2, 'User %s logged out', [$this->user
['username']], '', 0, 0);
555 $this->logger
->info('User logged out. Id: ' . $this->id
);
558 // Determine whether we need to skip session update.
559 // This is used mainly for checking session timeout in advance without refreshing the current session's timeout.
560 $skipSessionUpdate = (bool)GeneralUtility
::_GP('skipSessionUpdate');
561 $haveSession = false;
562 $anonymousSession = false;
563 if (!$this->newSessionID
) {
565 $authInfo['userSession'] = $this->fetchUserSession($skipSessionUpdate);
566 $haveSession = is_array($authInfo['userSession']);
567 if ($haveSession && !empty($authInfo['userSession']['ses_anonymous'])) {
568 $anonymousSession = true;
572 // Active login (eg. with login form).
573 if (!$haveSession && $loginData['status'] === LoginType
::LOGIN
) {
575 $this->logger
->debug('Active login (eg. with login form)');
576 // check referrer for submitted login values
577 if ($this->formfield_status
&& $loginData['uident'] && $loginData['uname']) {
578 // Delete old user session if any
581 // Refuse login for _CLI users, if not processing a CLI request type
582 // (although we shouldn't be here in case of a CLI request type)
583 if (stripos($loginData['uname'], '_CLI_') === 0 && !Environment
::isCli()) {
584 throw new \
RuntimeException('TYPO3 Fatal Error: You have tried to login using a CLI user. Access prohibited!', 1270853931);
588 // Cause elevation of privilege, make sure regenerateSessionId is called later on
589 if ($anonymousSession && $loginData['status'] === LoginType
::LOGIN
) {
594 $this->logger
->debug('User session found', [
595 $this->userid_column
=> $authInfo['userSession'][$this->userid_column
] ??
null,
596 $this->username_column
=> $authInfo['userSession'][$this->username_column
] ??
null,
599 $this->logger
->debug('No user session found');
601 if (is_array($this->svConfig
['setup'] ??
false)) {
602 $this->logger
->debug('SV setup', $this->svConfig
['setup']);
607 $activeLogin ||
!empty($this->svConfig
['setup'][$this->loginType
. '_alwaysFetchUser'])
608 ||
!$haveSession && !empty($this->svConfig
['setup'][$this->loginType
. '_fetchUserIfNoSession'])
610 // Use 'auth' service to find the user
611 // First found user will be used
612 $subType = 'getUser' . $this->loginType
;
613 /** @var AuthenticationService $serviceObj */
614 foreach ($this->getAuthServices($subType, $loginData, $authInfo) as $serviceObj) {
615 if ($row = $serviceObj->getUser()) {
616 $tempuserArr[] = $row;
617 $this->logger
->debug('User found', [
618 $this->userid_column
=> $row[$this->userid_column
],
619 $this->username_column
=> $row[$this->username_column
],
621 // User found, just stop to search for more if not configured to go on
622 if (empty($this->svConfig
['setup'][$this->loginType
. '_fetchAllUsers'])) {
628 if (!empty($this->svConfig
['setup'][$this->loginType
. '_alwaysFetchUser'])) {
629 $this->logger
->debug($this->loginType
. '_alwaysFetchUser option is enabled');
631 if (empty($tempuserArr)) {
632 $this->logger
->debug('No user found by services');
634 $this->logger
->debug(count($tempuserArr) . ' user records found by services');
638 // If no new user was set we use the already found user session
639 if (empty($tempuserArr) && $haveSession && !$anonymousSession) {
640 $tempuserArr[] = $authInfo['userSession'];
641 $tempuser = $authInfo['userSession'];
642 // User is authenticated because we found a user session
643 $authenticated = true;
644 $this->logger
->debug('User session used', [
645 $this->userid_column
=> $authInfo['userSession'][$this->userid_column
],
646 $this->username_column
=> $authInfo['userSession'][$this->username_column
],
649 // Re-auth user when 'auth'-service option is set
650 if (!empty($this->svConfig
['setup'][$this->loginType
. '_alwaysAuthUser'])) {
651 $authenticated = false;
652 $this->logger
->debug('alwaysAuthUser option is enabled');
654 // Authenticate the user if needed
655 if (!empty($tempuserArr) && !$authenticated) {
656 foreach ($tempuserArr as $tempuser) {
657 // Use 'auth' service to authenticate the user
658 // If one service returns FALSE then authentication failed
659 // a service might return 100 which means there's no reason to stop but the user can't be authenticated by that service
660 $this->logger
->debug('Auth user', $tempuser);
661 $subType = 'authUser' . $this->loginType
;
663 /** @var AuthenticationService $serviceObj */
664 foreach ($this->getAuthServices($subType, $loginData, $authInfo) as $serviceObj) {
665 if (($ret = $serviceObj->authUser($tempuser)) > 0) {
666 // If the service returns >=200 then no more checking is needed - useful for IP checking without password
667 if ((int)$ret >= 200) {
668 $authenticated = true;
671 if ((int)$ret >= 100) {
673 $authenticated = true;
676 $authenticated = false;
681 if ($authenticated) {
682 // Leave foreach() because a user is authenticated
688 // If user is authenticated a valid user is in $tempuser
689 if ($authenticated) {
690 // Reset failure flag
691 $this->loginFailure
= false;
692 // Insert session record if needed:
693 if (!$haveSession ||
$anonymousSession ||
$tempuser['ses_id'] != $this->id
&& $tempuser['uid'] != $authInfo['userSession']['ses_userid']) {
694 $sessionData = $this->createUserSession($tempuser);
696 // Preserve session data on login
697 if ($anonymousSession) {
698 $sessionData = $this->getSessionBackend()->update(
700 ['ses_data' => $authInfo['userSession']['ses_data']]
704 $this->user
= array_merge(
708 // The login session is started.
709 $this->loginSessionStarted
= true;
710 if (is_array($this->user
)) {
711 $this->logger
->debug('User session finally read', [
712 $this->userid_column
=> $this->user
[$this->userid_column
],
713 $this->username_column
=> $this->user
[$this->username_column
],
716 } elseif ($haveSession) {
717 // if we come here the current session is for sure not anonymous as this is a pre-condition for $authenticated = true
718 $this->user
= $authInfo['userSession'];
721 if ($activeLogin && !$this->newSessionID
) {
722 $this->regenerateSessionId();
725 // User logged in - write that to the log!
726 if ($this->writeStdLog
&& $activeLogin) {
727 $this->writelog(255, 1, 0, 1, 'User %s logged in from ###IP###', [$tempuser[$this->username_column
]], '', '', '');
730 $this->logger
->info('User ' . $tempuser[$this->username_column
] . ' logged in from ' . GeneralUtility
::getIndpEnv('REMOTE_ADDR'));
733 $this->logger
->debug('User ' . $tempuser[$this->username_column
] . ' authenticated from ' . GeneralUtility
::getIndpEnv('REMOTE_ADDR'));
736 // User was not authenticated, so we should reuse the existing anonymous session
737 if ($anonymousSession) {
738 $this->user
= $authInfo['userSession'];
741 // Mark the current login attempt as failed
742 if ($activeLogin ||
!empty($tempuserArr)) {
743 $this->loginFailure
= true;
744 if (empty($tempuserArr) && $activeLogin) {
746 'loginData' => $loginData
748 $this->logger
->debug('Login failed', $logData);
750 if (!empty($tempuserArr)) {
752 $this->userid_column
=> $tempuser[$this->userid_column
],
753 $this->username_column
=> $tempuser[$this->username_column
],
755 $this->logger
->debug('Login failed', $logData);
760 // If there were a login failure, check to see if a warning email should be sent:
761 if ($this->loginFailure
&& $activeLogin) {
762 $this->logger
->debug(
763 'Call checkLogFailures',
765 'warningEmail' => $this->warningEmail
,
766 'warningPeriod' => $this->warningPeriod
,
767 'warningMax' => $this->warningMax
771 // Hook to implement login failure tracking methods
774 foreach ($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['t3lib/class.t3lib_userauth.php']['postLoginFailureProcessing'] ??
[] as $_funcRef) {
775 GeneralUtility
::callUserFunction($_funcRef, $_params, $this);
780 // No hooks were triggered - default login failure behavior is to sleep 5 seconds
784 $this->checkLogFailures($this->warningEmail
, $this->warningPeriod
, $this->warningMax
);
789 * Creates a new session ID.
791 * @return string The new session ID
793 public function createSessionId()
795 return GeneralUtility
::makeInstance(Random
::class)->generateRandomHexString($this->hash_length
);
799 * Initializes authentication services to be used in a foreach loop
801 * @param string $subType e.g. getUserFE
802 * @param array $loginData
803 * @param array $authInfo
804 * @return \Traversable A generator of service objects
806 protected function getAuthServices(string $subType, array $loginData, array $authInfo): \Traversable
809 while (is_object($serviceObj = GeneralUtility
::makeInstanceService('auth', $subType, $serviceChain))) {
810 $serviceChain .= ',' . $serviceObj->getServiceKey();
811 $serviceObj->initAuth($subType, $loginData, $authInfo, $this);
815 $this->logger
->debug($subType . ' auth services called: ' . $serviceChain);
820 * Regenerate the session ID and transfer the session to new ID
821 * Call this method whenever a user proceeds to a higher authorization level
822 * e.g. when an anonymous session is now authenticated.
824 * @param array $existingSessionRecord If given, this session record will be used instead of fetching again
825 * @param bool $anonymous If true session will be regenerated as anonymous session
827 protected function regenerateSessionId(array $existingSessionRecord = [], bool $anonymous = false)
829 if (empty($existingSessionRecord)) {
830 $existingSessionRecord = $this->getSessionBackend()->get($this->id
);
833 // Update session record with new ID
834 $oldSessionId = $this->id
;
835 $this->id
= $this->createSessionId();
836 $updatedSession = $this->getSessionBackend()->set($this->id
, $existingSessionRecord);
837 $this->sessionData
= unserialize($updatedSession['ses_data']);
838 // Merge new session data into user/session array
839 $this->user
= array_merge($this->user ??
[], $updatedSession);
840 $this->getSessionBackend()->remove($oldSessionId);
841 $this->newSessionID
= true;
844 /*************************
848 *************************/
851 * Creates a user session record and returns its values.
853 * @param array $tempuser User data array
855 * @return array The session data for the newly created session.
857 public function createUserSession($tempuser)
859 $this->logger
->debug('Create session ses_id = ' . $this->id
);
860 // Delete any session entry first
861 $this->getSessionBackend()->remove($this->id
);
862 // Re-create session entry
863 $sessionRecord = $this->getNewSessionRecord($tempuser);
864 $sessionRecord = $this->getSessionBackend()->set($this->id
, $sessionRecord);
865 // Updating lastLogin_column carrying information about last login.
866 $this->updateLoginTimestamp($tempuser[$this->userid_column
]);
867 return $sessionRecord;
871 * Updates the last login column in the user with the given id
875 protected function updateLoginTimestamp(int $userId)
877 if ($this->lastLogin_column
) {
878 $connection = GeneralUtility
::makeInstance(ConnectionPool
::class)->getConnectionForTable($this->user_table
);
881 [$this->lastLogin_column
=> $GLOBALS['EXEC_TIME']],
882 [$this->userid_column
=> $userId]
888 * Returns a new session record for the current user for insertion into the DB.
889 * This function is mainly there as a wrapper for inheriting classes to override it.
891 * @param array $tempuser
892 * @return array User session record
894 public function getNewSessionRecord($tempuser)
896 $sessionIpLock = '[DISABLED]';
897 if ($this->lockIP
&& empty($tempuser['disableIPlock'])) {
898 $sessionIpLock = $this->ipLockClause_remoteIPNumber($this->lockIP
);
902 'ses_id' => $this->id
,
903 'ses_iplock' => $sessionIpLock,
904 'ses_userid' => $tempuser[$this->userid_column
] ??
0,
905 'ses_tstamp' => $GLOBALS['EXEC_TIME'],
911 * Read the user session from db.
913 * @param bool $skipSessionUpdate
914 * @return array|bool User session data, false if $this->id does not represent valid session
916 public function fetchUserSession($skipSessionUpdate = false)
918 $this->logger
->debug('Fetch session ses_id = ' . $this->id
);
920 $sessionRecord = $this->getSessionBackend()->get($this->id
);
921 } catch (SessionNotFoundException
$e) {
925 $this->sessionData
= unserialize($sessionRecord['ses_data']);
926 // Session is anonymous so no need to fetch user
927 if (!empty($sessionRecord['ses_anonymous'])) {
928 return $sessionRecord;
931 // Fetch the user from the DB
932 $userRecord = $this->getRawUserByUid((int)$sessionRecord['ses_userid']);
934 $userRecord = array_merge($sessionRecord, $userRecord);
936 $userRecord['ses_tstamp'] = (int)$userRecord['ses_tstamp'];
937 $userRecord['is_online'] = (int)$userRecord['ses_tstamp'];
939 if (!empty($this->auth_timeout_field
)) {
940 // Get timeout-time from usertable
941 $timeout = (int)$userRecord[$this->auth_timeout_field
];
943 $timeout = $this->sessionTimeout
;
945 // If timeout > 0 (TRUE) and current time has not exceeded the latest sessions-time plus the timeout in seconds then accept user
946 // Use a gracetime-value to avoid updating a session-record too often
947 if ($timeout > 0 && $GLOBALS['EXEC_TIME'] < $userRecord['ses_tstamp'] +
$timeout) {
948 $sessionUpdateGracePeriod = 61;
949 if (!$skipSessionUpdate && $GLOBALS['EXEC_TIME'] > ($userRecord['ses_tstamp'] +
$sessionUpdateGracePeriod)) {
950 // Update the session timestamp by writing a dummy update. (Backend will update the timestamp)
951 $updatesSession = $this->getSessionBackend()->update($this->id
, []);
952 $userRecord = array_merge($userRecord, $updatesSession);
955 // Delete any user set...
964 * Regenerates the session ID and sets the cookie again.
968 public function enforceNewSessionId()
970 $this->regenerateSessionId();
971 $this->setSessionCookie();
975 * Log out current user!
976 * Removes the current session record, sets the internal ->user array to a blank string;
977 * Thereby the current user (if any) is effectively logged out!
979 public function logoff()
981 $this->logger
->debug('logoff: ses_id = ' . $this->id
);
984 foreach ($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['t3lib/class.t3lib_userauth.php']['logoff_pre_processing'] ??
[] as $_funcRef) {
986 GeneralUtility
::callUserFunction($_funcRef, $_params, $this);
989 $this->performLogoff();
991 foreach ($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['t3lib/class.t3lib_userauth.php']['logoff_post_processing'] ??
[] as $_funcRef) {
993 GeneralUtility
::callUserFunction($_funcRef, $_params, $this);
999 * Perform the logoff action. Called from logoff() as a way to allow subclasses to override
1000 * what happens when a user logs off, without needing to reproduce the hook calls and logging
1001 * that happens in the public logoff() API method.
1003 protected function performLogoff()
1006 $this->getSessionBackend()->remove($this->id
);
1008 $this->sessionData
= [];
1013 * Empty / unset the cookie
1015 * @param string $cookieName usually, this is $this->name
1017 public function removeCookie($cookieName)
1019 $cookieDomain = $this->getCookieDomain();
1020 // If no cookie domain is set, use the base path
1021 $cookiePath = $cookieDomain ?
'/' : GeneralUtility
::getIndpEnv('TYPO3_SITE_PATH');
1022 setcookie($cookieName, null, -1, $cookiePath, $cookieDomain);
1026 * Determine whether there's an according session record to a given session_id.
1027 * Don't care if session record is still valid or not.
1029 * @param string $id Claimed Session ID
1030 * @return bool Returns TRUE if a corresponding session was found in the database
1032 public function isExistingSessionRecord($id)
1038 $sessionRecord = $this->getSessionBackend()->get($id);
1039 if (empty($sessionRecord)) {
1042 // If the session does not match the current IP lock, it should be treated as invalid
1043 // and a new session should be created.
1044 if ($sessionRecord['ses_iplock'] !== $this->ipLockClause_remoteIPNumber($this->lockIP
) && $sessionRecord['ses_iplock'] !== '[DISABLED]') {
1048 } catch (SessionNotFoundException
$e) {
1054 * Returns whether this request is going to set a cookie
1055 * or a cookie was already found in the system
1057 * @return bool Returns TRUE if a cookie is set
1059 public function isCookieSet()
1061 return $this->cookieWasSetOnCurrentRequest ||
$this->getCookie($this->name
);
1064 /*************************
1068 *************************/
1070 * This returns the restrictions needed to select the user respecting
1071 * enable columns and flags like deleted, hidden, starttime, endtime
1074 * @return QueryRestrictionContainerInterface
1077 protected function userConstraints(): QueryRestrictionContainerInterface
1079 $restrictionContainer = GeneralUtility
::makeInstance(DefaultRestrictionContainer
::class);
1081 if (empty($this->enablecolumns
['disabled'])) {
1082 $restrictionContainer->removeByType(HiddenRestriction
::class);
1085 if (empty($this->enablecolumns
['deleted'])) {
1086 $restrictionContainer->removeByType(DeletedRestriction
::class);
1089 if (empty($this->enablecolumns
['starttime'])) {
1090 $restrictionContainer->removeByType(StartTimeRestriction
::class);
1093 if (empty($this->enablecolumns
['endtime'])) {
1094 $restrictionContainer->removeByType(EndTimeRestriction
::class);
1097 if (!empty($this->enablecolumns
['rootLevel'])) {
1098 $restrictionContainer->add(GeneralUtility
::makeInstance(RootLevelRestriction
::class, [$this->user_table
]));
1101 return $restrictionContainer;
1105 * Returns the IP address to lock to.
1106 * The IP address may be partial based on $parts.
1108 * @param int $parts 1-4: Indicates how many parts of the IP address to return. 4 means all, 1 means only first number.
1109 * @return string (Partial) IP address for REMOTE_ADDR
1111 protected function ipLockClause_remoteIPNumber($parts)
1113 $IP = GeneralUtility
::getIndpEnv('REMOTE_ADDR');
1117 $parts = MathUtility
::forceIntegerInRange($parts, 1, 3);
1118 $IPparts = explode('.', $IP);
1119 for ($a = 4; $a > $parts; $a--) {
1120 unset($IPparts[$a - 1]);
1122 return implode('.', $IPparts);
1125 /*************************
1127 * Session and Configuration Handling
1129 *************************/
1131 * This writes $variable to the user-record. This is a way of providing session-data.
1132 * You can fetch the data again through $this->uc in this class!
1133 * If $variable is not an array, $this->uc is saved!
1135 * @param array|string $variable An array you want to store for the user as session data. If $variable is not supplied (is null), the internal variable, ->uc, is stored by default
1137 public function writeUC($variable = '')
1139 if (is_array($this->user
) && $this->user
[$this->userid_column
]) {
1140 if (!is_array($variable)) {
1141 $variable = $this->uc
;
1143 $this->logger
->debug('writeUC: ' . $this->userid_column
. '=' . (int)$this->user
[$this->userid_column
]);
1144 GeneralUtility
::makeInstance(ConnectionPool
::class)->getConnectionForTable($this->user_table
)->update(
1146 ['uc' => serialize($variable)],
1147 [$this->userid_column
=> (int)$this->user
[$this->userid_column
]],
1148 ['uc' => Connection
::PARAM_LOB
]
1154 * Sets $theUC as the internal variable ->uc IF $theUC is an array.
1155 * If $theUC is FALSE, the 'uc' content from the ->user array will be unserialized and restored in ->uc
1157 * @param mixed $theUC If an array, then set as ->uc, otherwise load from user record
1159 public function unpack_uc($theUC = '')
1161 if (!$theUC && isset($this->user
['uc'])) {
1162 $theUC = unserialize($this->user
['uc']);
1164 if (is_array($theUC)) {
1170 * Stores data for a module.
1171 * The data is stored with the session id so you can even check upon retrieval
1172 * if the module data is from a previous session or from the current session.
1174 * @param string $module Is the name of the module ($MCONF['name'])
1175 * @param mixed $data Is the data you want to store for that module (array, string, ...)
1176 * @param bool|int $noSave If $noSave is set, then the ->uc array (which carries all kinds of user data) is NOT written immediately, but must be written by some subsequent call.
1178 public function pushModuleData($module, $data, $noSave = 0)
1180 $this->uc
['moduleData'][$module] = $data;
1181 $this->uc
['moduleSessionID'][$module] = $this->id
;
1188 * Gets module data for a module (from a loaded ->uc array)
1190 * @param string $module Is the name of the module ($MCONF['name'])
1191 * @param string $type If $type = 'ses' then module data is returned only if it was stored in the current session, otherwise data from a previous session will be returned (if available).
1192 * @return mixed The module data if available: $this->uc['moduleData'][$module];
1194 public function getModuleData($module, $type = '')
1196 if ($type !== 'ses' ||
(isset($this->uc
['moduleSessionID'][$module]) && $this->uc
['moduleSessionID'][$module] == $this->id
)) {
1197 return $this->uc
['moduleData'][$module];
1203 * Returns the session data stored for $key.
1204 * The data will last only for this login session since it is stored in the user session.
1206 * @param string $key The key associated with the session data
1209 public function getSessionData($key)
1211 return $this->sessionData
[$key] ??
null;
1215 * Set session data by key.
1216 * The data will last only for this login session since it is stored in the user session.
1218 * @param string $key A non empty string to store the data under
1219 * @param mixed $data Data store store in session
1221 public function setSessionData($key, $data)
1224 throw new \
InvalidArgumentException('Argument key must not be empty', 1484311516);
1226 $this->sessionData
[$key] = $data;
1230 * Sets the session data ($data) for $key and writes all session data (from ->user['ses_data']) to the database.
1231 * The data will last only for this login session since it is stored in the session table.
1233 * @param string $key Pointer to an associative key in the session data array which is stored serialized in the field "ses_data" of the session table.
1234 * @param mixed $data The data to store in index $key
1236 public function setAndSaveSessionData($key, $data)
1238 $this->sessionData
[$key] = $data;
1239 $this->user
['ses_data'] = serialize($this->sessionData
);
1240 $this->logger
->debug('setAndSaveSessionData: ses_id = ' . $this->id
);
1241 $updatedSession = $this->getSessionBackend()->update(
1243 ['ses_data' => $this->user
['ses_data']]
1245 $this->user
= array_merge($this->user ??
[], $updatedSession);
1248 /*************************
1252 *************************/
1254 * Returns an info array with Login/Logout data submitted by a form or params
1259 public function getLoginFormData()
1262 'status' => GeneralUtility
::_GP($this->formfield_status
),
1263 'uname' => GeneralUtility
::_POST($this->formfield_uname
),
1264 'uident' => GeneralUtility
::_POST($this->formfield_uident
)
1266 // Only process the login data if a login is requested
1267 if ($loginData['status'] === LoginType
::LOGIN
) {
1268 $loginData = $this->processLoginData($loginData);
1270 $loginData = array_map('trim', $loginData);
1275 * Processes Login data submitted by a form or params depending on the
1276 * passwordTransmissionStrategy
1278 * @param array $loginData Login data array
1279 * @param string $passwordTransmissionStrategy Alternative passwordTransmissionStrategy. Used when authentication services wants to override the default.
1283 public function processLoginData($loginData, $passwordTransmissionStrategy = '')
1285 $loginSecurityLevel = trim($GLOBALS['TYPO3_CONF_VARS'][$this->loginType
]['loginSecurityLevel']) ?
: 'normal';
1286 $passwordTransmissionStrategy = $passwordTransmissionStrategy ?
: $loginSecurityLevel;
1287 $this->logger
->debug('Login data before processing', $loginData);
1288 $subType = 'processLoginData' . $this->loginType
;
1289 $authInfo = $this->getAuthInfoArray();
1290 $isLoginDataProcessed = false;
1291 $processedLoginData = $loginData;
1292 /** @var AuthenticationService $serviceObject */
1293 foreach ($this->getAuthServices($subType, $loginData, $authInfo) as $serviceObject) {
1294 $serviceResult = $serviceObject->processLoginData($processedLoginData, $passwordTransmissionStrategy);
1295 if (!empty($serviceResult)) {
1296 $isLoginDataProcessed = true;
1297 // If the service returns >=200 then no more processing is needed
1298 if ((int)$serviceResult >= 200) {
1303 if ($isLoginDataProcessed) {
1304 $loginData = $processedLoginData;
1305 $this->logger
->debug('Processed login data', $processedLoginData);
1311 * Returns an info array which provides additional information for auth services
1316 public function getAuthInfoArray()
1318 $queryBuilder = GeneralUtility
::makeInstance(ConnectionPool
::class)->getQueryBuilderForTable($this->user_table
);
1319 $expressionBuilder = $queryBuilder->expr();
1321 $authInfo['loginType'] = $this->loginType
;
1322 $authInfo['refInfo'] = parse_url(GeneralUtility
::getIndpEnv('HTTP_REFERER'));
1323 $authInfo['HTTP_HOST'] = GeneralUtility
::getIndpEnv('HTTP_HOST');
1324 $authInfo['REMOTE_ADDR'] = GeneralUtility
::getIndpEnv('REMOTE_ADDR');
1325 $authInfo['REMOTE_HOST'] = GeneralUtility
::getIndpEnv('REMOTE_HOST');
1326 $authInfo['showHiddenRecords'] = $this->showHiddenRecords
;
1327 // Can be overidden in localconf by SVCONF:
1328 $authInfo['db_user']['table'] = $this->user_table
;
1329 $authInfo['db_user']['userid_column'] = $this->userid_column
;
1330 $authInfo['db_user']['username_column'] = $this->username_column
;
1331 $authInfo['db_user']['userident_column'] = $this->userident_column
;
1332 $authInfo['db_user']['usergroup_column'] = $this->usergroup_column
;
1333 $authInfo['db_user']['enable_clause'] = $this->userConstraints()->buildExpression(
1334 [$this->user_table
=> $this->user_table
],
1337 if ($this->checkPid
&& $this->checkPid_value
!== null) {
1338 $authInfo['db_user']['checkPidList'] = $this->checkPid_value
;
1339 $authInfo['db_user']['check_pid_clause'] = $expressionBuilder->in(
1341 GeneralUtility
::intExplode(',', $this->checkPid_value
)
1344 $authInfo['db_user']['checkPidList'] = '';
1345 $authInfo['db_user']['check_pid_clause'] = '';
1347 $authInfo['db_groups']['table'] = $this->usergroup_table
;
1352 * Garbage collector, removing old expired sessions.
1356 public function gc()
1358 $this->getSessionBackend()->collectGarbage($this->gc_time
);
1362 * DUMMY: Writes to log database table (in some extension classes)
1364 * @param int $type denotes which module that has submitted the entry. This is the current list: 1=tce_db; 2=tce_file; 3=system (eg. sys_history save); 4=modules; 254=Personal settings changed; 255=login / out action: 1=login, 2=logout, 3=failed login (+ errorcode 3), 4=failure_warning_email sent
1365 * @param int $action denotes which specific operation that wrote the entry (eg. 'delete', 'upload', 'update' and so on...). Specific for each $type. Also used to trigger update of the interface. (see the log-module for the meaning of each number !!)
1366 * @param int $error flag. 0 = message, 1 = error (user problem), 2 = System Error (which should not happen), 3 = security notice (admin)
1367 * @param int $details_nr The message number. Specific for each $type and $action. in the future this will make it possible to translate errormessages to other languages
1368 * @param string $details Default text that follows the message
1369 * @param array $data Data that follows the log. Might be used to carry special information. If an array the first 5 entries (0-4) will be sprintf'ed the details-text...
1370 * @param string $tablename Special field used by tce_main.php. These ($tablename, $recuid, $recpid) holds the reference to the record which the log-entry is about. (Was used in attic status.php to update the interface.)
1371 * @param int|string $recuid Special field used by tce_main.php. These ($tablename, $recuid, $recpid) holds the reference to the record which the log-entry is about. (Was used in attic status.php to update the interface.)
1372 * @param int|string $recpid Special field used by tce_main.php. These ($tablename, $recuid, $recpid) holds the reference to the record which the log-entry is about. (Was used in attic status.php to update the interface.)
1374 public function writelog($type, $action, $error, $details_nr, $details, $data, $tablename, $recuid, $recpid)
1379 * DUMMY: Check login failures (in some extension classes)
1381 * @param string $email Email address
1382 * @param int $secondsBack Number of sections back in time to check. This is a kind of limit for how many failures an hour for instance
1383 * @param int $maxFailures Max allowed failures before a warning mail is sent
1386 public function checkLogFailures($email, $secondsBack, $maxFailures)
1391 * Raw initialization of the be_user with uid=$uid
1392 * This will circumvent all login procedures and select a be_users record from the
1393 * database and set the content of ->user to the record selected.
1394 * Thus the BE_USER object will appear like if a user was authenticated - however without
1395 * a session id and the fields from the session table of course.
1396 * Will check the users for disabled, start/endtime, etc. ($this->user_where_clause())
1398 * @param int $uid The UID of the backend user to set in ->user
1401 public function setBeUserByUid($uid)
1403 $this->user
= $this->getRawUserByUid($uid);
1407 * Raw initialization of the be_user with username=$name
1409 * @param string $name The username to look up.
1410 * @see \TYPO3\CMS\Core\Authentication\AbstractUserAuthentication::setBeUserByUid()
1413 public function setBeUserByName($name)
1415 $this->user
= $this->getRawUserByName($name);
1419 * Fetching raw user record with uid=$uid
1421 * @param int $uid The UID of the backend user to set in ->user
1422 * @return array user record or FALSE
1425 public function getRawUserByUid($uid)
1427 $query = GeneralUtility
::makeInstance(ConnectionPool
::class)->getQueryBuilderForTable($this->user_table
);
1428 $query->setRestrictions($this->userConstraints());
1430 ->from($this->user_table
)
1431 ->where($query->expr()->eq('uid', $query->createNamedParameter($uid, \PDO
::PARAM_INT
)));
1433 return $query->execute()->fetch();
1437 * Fetching raw user record with username=$name
1439 * @param string $name The username to look up.
1440 * @return array user record or FALSE
1441 * @see \TYPO3\CMS\Core\Authentication\AbstractUserAuthentication::getUserByUid()
1444 public function getRawUserByName($name)
1446 $query = GeneralUtility
::makeInstance(ConnectionPool
::class)->getQueryBuilderForTable($this->user_table
);
1447 $query->setRestrictions($this->userConstraints());
1449 ->from($this->user_table
)
1450 ->where($query->expr()->eq('username', $query->createNamedParameter($name, \PDO
::PARAM_STR
)));
1452 return $query->execute()->fetch();
1459 public function getSessionId(): string
1468 public function getLoginType(): string
1470 return $this->loginType
;
1474 * Returns initialized session backend. Returns same session backend if called multiple times
1476 * @return SessionBackendInterface
1478 protected function getSessionBackend()
1480 if (!isset($this->sessionBackend
)) {
1481 $this->sessionBackend
= GeneralUtility
::makeInstance(SessionManager
::class)->getSessionBackend($this->loginType
);
1483 return $this->sessionBackend
;