3 * MediaWiki\Session entry point
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
24 namespace MediaWiki\Session
;
26 use Psr\Log\LoggerInterface
;
36 * This serves as the entry point to the MediaWiki session handling system.
41 final class SessionManager
implements SessionManagerInterface
{
42 /** @var SessionManager|null */
43 private static $instance = null;
45 /** @var Session|null */
46 private static $globalSession = null;
48 /** @var WebRequest|null */
49 private static $globalSessionRequest = null;
51 /** @var LoggerInterface */
57 /** @var BagOStuff|null */
60 /** @var SessionProvider[] */
61 private $sessionProviders = null;
64 private $varyCookies = null;
67 private $varyHeaders = null;
69 /** @var SessionBackend[] */
70 private $allSessionBackends = array();
72 /** @var SessionId[] */
73 private $allSessionIds = array();
76 private $preventUsers = array();
79 * Get the global SessionManager
80 * @return SessionManagerInterface
81 * (really a SessionManager, but this is to make IDEs less confused)
83 public static function singleton() {
84 if ( self
::$instance === null ) {
85 self
::$instance = new self();
87 return self
::$instance;
91 * Get the "global" session
93 * If PHP's session_id() has been set, returns that session. Otherwise
94 * returns the session for RequestContext::getMain()->getRequest().
98 public static function getGlobalSession() {
99 if ( !PHPSessionHandler
::isEnabled() ) {
105 $request = \RequestContext
::getMain()->getRequest();
107 !self
::$globalSession // No global session is set up yet
108 || self
::$globalSessionRequest !== $request // The global WebRequest changed
109 ||
$id !== '' && self
::$globalSession->getId() !== $id // Someone messed with session_id()
111 self
::$globalSessionRequest = $request;
113 // session_id() wasn't used, so fetch the Session from the WebRequest.
114 // We use $request->getSession() instead of $singleton->getSessionForRequest()
115 // because doing the latter would require a public
116 // "$request->getSessionId()" method that would confuse end
117 // users by returning SessionId|null where they'd expect it to
118 // be short for $request->getSession()->getId(), and would
119 // wind up being a duplicate of the code in
120 // $request->getSession() anyway.
121 self
::$globalSession = $request->getSession();
123 // Someone used session_id(), so we need to follow suit.
124 // Note this overwrites whatever session might already be
125 // associated with $request with the one for $id.
126 self
::$globalSession = self
::singleton()->getSessionById( $id, false, $request );
129 return self
::$globalSession;
133 * @param array $options
134 * - config: Config to fetch configuration from. Defaults to the default 'main' config.
135 * - logger: LoggerInterface to use for logging. Defaults to the 'session' channel.
136 * - store: BagOStuff to store session data in.
138 public function __construct( $options = array() ) {
139 if ( isset( $options['config'] ) ) {
140 $this->config
= $options['config'];
141 if ( !$this->config
instanceof Config
) {
142 throw new \
InvalidArgumentException(
143 '$options[\'config\'] must be an instance of Config'
147 $this->config
= \ConfigFactory
::getDefaultInstance()->makeConfig( 'main' );
150 if ( isset( $options['logger'] ) ) {
151 if ( !$options['logger'] instanceof LoggerInterface
) {
152 throw new \
InvalidArgumentException(
153 '$options[\'logger\'] must be an instance of LoggerInterface'
156 $this->setLogger( $options['logger'] );
158 $this->setLogger( \MediaWiki\Logger\LoggerFactory
::getInstance( 'session' ) );
161 if ( isset( $options['store'] ) ) {
162 if ( !$options['store'] instanceof BagOStuff
) {
163 throw new \
InvalidArgumentException(
164 '$options[\'store\'] must be an instance of BagOStuff'
167 $this->store
= $options['store'];
169 $this->store
= \ObjectCache
::getInstance( $this->config
->get( 'SessionCacheType' ) );
170 $this->store
->setLogger( $this->logger
);
173 register_shutdown_function( array( $this, 'shutdown' ) );
176 public function setLogger( LoggerInterface
$logger ) {
177 $this->logger
= $logger;
180 public function getPersistedSessionId( WebRequest
$request ) {
181 $info = $this->getSessionInfoForRequest( $request );
182 if ( $info && $info->wasPersisted() ) {
183 return $info->getId();
189 public function getSessionForRequest( WebRequest
$request ) {
190 $info = $this->getSessionInfoForRequest( $request );
193 $session = $this->getEmptySession( $request );
195 $session = $this->getSessionFromInfo( $info, $request );
200 public function getSessionById( $id, $noEmpty = false, WebRequest
$request = null ) {
201 if ( !self
::validateSessionId( $id ) ) {
202 throw new \
InvalidArgumentException( 'Invalid session ID' );
205 $request = new FauxRequest
;
210 // Test this here to provide a better log message for the common case
212 $key = wfMemcKey( 'MWSession', $id );
213 if ( is_array( $this->store
->get( $key ) ) ) {
214 $info = new SessionInfo( SessionInfo
::MIN_PRIORITY
, array( 'id' => $id, 'idIsSafe' => true ) );
215 if ( $this->loadSessionInfoFromStore( $info, $request ) ) {
216 $session = $this->getSessionFromInfo( $info, $request );
220 if ( !$noEmpty && $session === null ) {
223 $session = $this->getEmptySessionInternal( $request, $id );
224 } catch ( \Exception
$ex ) {
225 $this->logger
->error( __METHOD__
. ': failed to create empty session: ' .
229 if ( $session === null ) {
230 throw new \
UnexpectedValueException(
231 'Can neither load the session nor create an empty session', 0, $ex
239 public function getEmptySession( WebRequest
$request = null ) {
240 return $this->getEmptySessionInternal( $request );
244 * @see SessionManagerInterface::getEmptySession
245 * @param WebRequest|null $request
246 * @param string|null $id ID to force on the new session
249 private function getEmptySessionInternal( WebRequest
$request = null, $id = null ) {
250 if ( $id !== null ) {
251 if ( !self
::validateSessionId( $id ) ) {
252 throw new \
InvalidArgumentException( 'Invalid session ID' );
255 $key = wfMemcKey( 'MWSession', $id );
256 if ( is_array( $this->store
->get( $key ) ) ) {
257 throw new \
InvalidArgumentException( 'Session ID already exists' );
261 $request = new FauxRequest
;
265 foreach ( $this->getProviders() as $provider ) {
266 $info = $provider->newSessionInfo( $id );
270 if ( $info->getProvider() !== $provider ) {
271 throw new \
UnexpectedValueException(
272 "$provider returned an empty session info for a different provider: $info"
275 if ( $id !== null && $info->getId() !== $id ) {
276 throw new \
UnexpectedValueException(
277 "$provider returned empty session info with a wrong id: " .
278 $info->getId() . ' != ' . $id
281 if ( !$info->isIdSafe() ) {
282 throw new \
UnexpectedValueException(
283 "$provider returned empty session info with id flagged unsafe"
286 $compare = $infos ? SessionInfo
::compare( $infos[0], $info ) : -1;
287 if ( $compare > 0 ) {
290 if ( $compare === 0 ) {
293 $infos = array( $info );
297 // Make sure there's exactly one
298 if ( count( $infos ) > 1 ) {
299 throw new \
UnexpectedValueException(
300 'Multiple empty sessions tied for top priority: ' . join( ', ', $infos )
302 } elseif ( count( $infos ) < 1 ) {
303 throw new \
UnexpectedValueException( 'No provider could provide an empty session!' );
306 return $this->getSessionFromInfo( $infos[0], $request );
309 public function getVaryHeaders() {
310 if ( $this->varyHeaders
=== null ) {
312 foreach ( $this->getProviders() as $provider ) {
313 foreach ( $provider->getVaryHeaders() as $header => $options ) {
314 if ( !isset( $headers[$header] ) ) {
315 $headers[$header] = array();
317 if ( is_array( $options ) ) {
318 $headers[$header] = array_unique( array_merge( $headers[$header], $options ) );
322 $this->varyHeaders
= $headers;
324 return $this->varyHeaders
;
327 public function getVaryCookies() {
328 if ( $this->varyCookies
=== null ) {
330 foreach ( $this->getProviders() as $provider ) {
331 $cookies = array_merge( $cookies, $provider->getVaryCookies() );
333 $this->varyCookies
= array_values( array_unique( $cookies ) );
335 return $this->varyCookies
;
339 * Validate a session ID
343 public static function validateSessionId( $id ) {
344 return is_string( $id ) && preg_match( '/^[a-zA-Z0-9_-]{32,}$/', $id );
348 * @name Internal methods
353 * Auto-create the given user, if necessary
354 * @private Don't call this yourself. Let Setup.php do it for you at the right time.
355 * @note This more properly belongs in AuthManager, but we need it now.
356 * When AuthManager comes, this will be deprecated and will pass-through
357 * to the corresponding AuthManager method.
358 * @param User $user User to auto-create
359 * @return bool Success
361 public static function autoCreateUser( User
$user ) {
364 $logger = self
::singleton()->logger
;
366 // Much of this code is based on that in CentralAuth
368 // Try the local user from the slave DB
369 $localId = User
::idFromName( $user->getName() );
371 // Fetch the user ID from the master, so that we don't try to create the user
372 // when they already exist, due to replication lag
373 // @codeCoverageIgnoreStart
374 if ( !$localId && wfGetLB()->getReaderIndex() != 0 ) {
375 $localId = User
::idFromName( $user->getName(), User
::READ_LATEST
);
377 // @codeCoverageIgnoreEnd
380 // User exists after all.
381 $user->setId( $localId );
386 // Denied by AuthPlugin? But ignore AuthPlugin itself.
387 if ( get_class( $wgAuth ) !== 'AuthPlugin' && !$wgAuth->autoCreate() ) {
388 $logger->debug( __METHOD__
. ': denied by AuthPlugin' );
394 // Wiki is read-only?
395 if ( wfReadOnly() ) {
396 $logger->debug( __METHOD__
. ': denied by wfReadOnly()' );
402 $userName = $user->getName();
404 // Check the session, if we tried to create this user already there's
405 // no point in retrying.
406 $session = self
::getGlobalSession();
407 $reason = $session->get( 'MWSession::AutoCreateBlacklist' );
409 $logger->debug( __METHOD__
. ": blacklisted in session ($reason)" );
415 // Is the IP user able to create accounts?
417 if ( !$anon->isAllowedAny( 'createaccount', 'autocreateaccount' )
418 ||
$anon->isBlockedFromCreateAccount()
420 // Blacklist the user to avoid repeated DB queries subsequently
421 $logger->debug( __METHOD__
. ': user is blocked from this wiki, blacklisting' );
422 $session->set( 'MWSession::AutoCreateBlacklist', 'blocked', 600 );
429 // Check for validity of username
430 if ( !User
::isCreatableName( $userName ) ) {
431 $logger->debug( __METHOD__
. ': Invalid username, blacklisting' );
432 $session->set( 'MWSession::AutoCreateBlacklist', 'invalid username', 600 );
439 // Give other extensions a chance to stop auto creation.
440 $user->loadDefaults( $userName );
442 if ( !\Hooks
::run( 'AbortAutoAccount', array( $user, &$abortMessage ) ) ) {
443 // In this case we have no way to return the message to the user,
444 // but we can log it.
445 $logger->debug( __METHOD__
. ": denied by hook: $abortMessage" );
446 $session->set( 'MWSession::AutoCreateBlacklist', "hook aborted: $abortMessage", 600 );
453 // Make sure the name has not been changed
454 if ( $user->getName() !== $userName ) {
457 throw new \
UnexpectedValueException(
458 'AbortAutoAccount hook tried to change the user name'
462 // Ignore warnings about master connections/writes...hard to avoid here
463 \Profiler
::instance()->getTransactionProfiler()->resetExpectations();
465 $cache = \ObjectCache
::getLocalClusterInstance();
466 $backoffKey = wfMemcKey( 'MWSession', 'autocreate-failed', md5( $userName ) );
467 if ( $cache->get( $backoffKey ) ) {
468 $logger->debug( __METHOD__
. ': denied by prior creation attempt failures' );
474 // Checks passed, create the user...
475 $from = isset( $_SERVER['REQUEST_URI'] ) ?
$_SERVER['REQUEST_URI'] : 'CLI';
476 $logger->info( __METHOD__
. ": creating new user ($userName) - from: $from" );
479 // Insert the user into the local DB master
480 $status = $user->addToDatabase();
481 if ( !$status->isOK() ) {
482 // @codeCoverageIgnoreStart
483 $logger->error( __METHOD__
. ': failed with message ' . $status->getWikiText() );
487 // @codeCoverageIgnoreEnd
489 } catch ( \Exception
$ex ) {
490 // @codeCoverageIgnoreStart
491 $logger->error( __METHOD__
. ': failed with exception ' . $ex->getMessage() );
492 // Do not keep throwing errors for a while
493 $cache->set( $backoffKey, 1, 600 );
494 // Bubble up error; which should normally trigger DB rollbacks
496 // @codeCoverageIgnoreEnd
499 # Notify hooks (e.g. Newuserlog)
500 \Hooks
::run( 'AuthPluginAutoCreate', array( $user ) );
501 \Hooks
::run( 'LocalUserCreated', array( $user, true ) );
504 \DeferredUpdates
::addUpdate( new \
SiteStatsUpdate( 0, 0, 0, 0, 1 ) );
506 # Watch user's userpage and talk page
507 $user->addWatch( $user->getUserPage(), \WatchedItem
::IGNORE_USER_RIGHTS
);
513 * Prevent future sessions for the user
515 * The intention is that the named account will never again be usable for
516 * normal login (i.e. there is no way to undo the prevention of access).
518 * @private For use from \\User::newSystemUser only
519 * @param string $username
521 public function preventSessionsForUser( $username ) {
522 $this->preventUsers
[$username] = true;
524 // Reset the user's token to kill existing sessions
525 $user = User
::newFromName( $username );
526 if ( $user && $user->getToken() ) {
527 $user->setToken( true );
528 $user->saveSettings();
531 // Instruct the session providers to kill any other sessions too.
532 foreach ( $this->getProviders() as $provider ) {
533 $provider->preventSessionsForUser( $username );
538 * Test if a user is prevented
539 * @private For use from SessionBackend only
540 * @param string $username
543 public function isUserSessionPrevented( $username ) {
544 return !empty( $this->preventUsers
[$username] );
548 * Get the available SessionProviders
549 * @return SessionProvider[]
551 protected function getProviders() {
552 if ( $this->sessionProviders
=== null ) {
553 $this->sessionProviders
= array();
554 foreach ( $this->config
->get( 'SessionProviders' ) as $spec ) {
555 $provider = \ObjectFactory
::getObjectFromSpec( $spec );
556 $provider->setLogger( $this->logger
);
557 $provider->setConfig( $this->config
);
558 $provider->setManager( $this );
559 if ( isset( $this->sessionProviders
[(string)$provider] ) ) {
560 throw new \
UnexpectedValueException( "Duplicate provider name \"$provider\"" );
562 $this->sessionProviders
[(string)$provider] = $provider;
565 return $this->sessionProviders
;
569 * Get a session provider by name
571 * Generally, this will only be used by internal implementation of some
572 * special session-providing mechanism. General purpose code, if it needs
573 * to access a SessionProvider at all, will use Session::getProvider().
575 * @param string $name
576 * @return SessionProvider|null
578 public function getProvider( $name ) {
579 $providers = $this->getProviders();
580 return isset( $providers[$name] ) ?
$providers[$name] : null;
584 * Save all active sessions on shutdown
585 * @private For internal use with register_shutdown_function()
587 public function shutdown() {
588 if ( $this->allSessionBackends
) {
589 $this->logger
->debug( 'Saving all sessions on shutdown' );
590 if ( session_id() !== '' ) {
591 // @codeCoverageIgnoreStart
592 session_write_close();
594 // @codeCoverageIgnoreEnd
595 foreach ( $this->allSessionBackends
as $backend ) {
596 $backend->save( true );
602 * Fetch the SessionInfo(s) for a request
603 * @param WebRequest $request
604 * @return SessionInfo|null
606 private function getSessionInfoForRequest( WebRequest
$request ) {
607 // Call all providers to fetch "the" session
609 foreach ( $this->getProviders() as $provider ) {
610 $info = $provider->provideSessionInfo( $request );
614 if ( $info->getProvider() !== $provider ) {
615 throw new \
UnexpectedValueException(
616 "$provider returned session info for a different provider: $info"
622 // Sort the SessionInfos. Then find the first one that can be
623 // successfully loaded, and then all the ones after it with the same
625 usort( $infos, 'MediaWiki\\Session\\SessionInfo::compare' );
628 $info = array_pop( $infos );
629 if ( $this->loadSessionInfoFromStore( $info, $request ) ) {
632 $info = array_pop( $infos );
633 if ( SessionInfo
::compare( $retInfos[0], $info ) ) {
634 // We hit a lower priority, stop checking.
637 if ( $this->loadSessionInfoFromStore( $info, $request ) ) {
638 // This is going to error out below, but we want to
639 // provide a complete list.
646 if ( count( $retInfos ) > 1 ) {
647 $ex = new \
OverflowException(
648 'Multiple sessions for this request tied for top priority: ' . join( ', ', $retInfos )
650 $ex->sessionInfos
= $retInfos;
654 return $retInfos ?
$retInfos[0] : null;
658 * Load and verify the session info against the store
660 * @param SessionInfo &$info Will likely be replaced with an updated SessionInfo instance
661 * @param WebRequest $request
662 * @return bool Whether the session info matches the stored data (if any)
664 private function loadSessionInfoFromStore( SessionInfo
&$info, WebRequest
$request ) {
665 $blob = $this->store
->get( wfMemcKey( 'MWSession', $info->getId() ) );
667 $newParams = array();
669 if ( $blob !== false ) {
670 // Sanity check: blob must be an array, if it's saved at all
671 if ( !is_array( $blob ) ) {
672 $this->logger
->warning( "Session $info: Bad data" );
676 // Sanity check: blob has data and metadata arrays
677 if ( !isset( $blob['data'] ) ||
!is_array( $blob['data'] ) ||
678 !isset( $blob['metadata'] ) ||
!is_array( $blob['metadata'] )
680 $this->logger
->warning( "Session $info: Bad data structure" );
684 $data = $blob['data'];
685 $metadata = $blob['metadata'];
687 // Sanity check: metadata must be an array and must contain certain
688 // keys, if it's saved at all
689 if ( !array_key_exists( 'userId', $metadata ) ||
690 !array_key_exists( 'userName', $metadata ) ||
691 !array_key_exists( 'userToken', $metadata ) ||
692 !array_key_exists( 'provider', $metadata )
694 $this->logger
->warning( "Session $info: Bad metadata" );
698 // First, load the provider from metadata, or validate it against the metadata.
699 $provider = $info->getProvider();
700 if ( $provider === null ) {
701 $newParams['provider'] = $provider = $this->getProvider( $metadata['provider'] );
703 $this->logger
->warning( "Session $info: Unknown provider, " . $metadata['provider'] );
706 } elseif ( $metadata['provider'] !== (string)$provider ) {
707 $this->logger
->warning( "Session $info: Wrong provider, " .
708 $metadata['provider'] . ' !== ' . $provider );
712 // Load provider metadata from metadata, or validate it against the metadata
713 $providerMetadata = $info->getProviderMetadata();
714 if ( isset( $metadata['providerMetadata'] ) ) {
715 if ( $providerMetadata === null ) {
716 $newParams['metadata'] = $metadata['providerMetadata'];
719 $newProviderMetadata = $provider->mergeMetadata(
720 $metadata['providerMetadata'], $providerMetadata
722 if ( $newProviderMetadata !== $providerMetadata ) {
723 $newParams['metadata'] = $newProviderMetadata;
725 } catch ( \UnexpectedValueException
$ex ) {
726 $this->logger
->warning( "Session $info: Metadata merge failed: " . $ex->getMessage() );
732 // Next, load the user from metadata, or validate it against the metadata.
733 $userInfo = $info->getUserInfo();
735 // For loading, id is preferred to name.
737 if ( $metadata['userId'] ) {
738 $userInfo = UserInfo
::newFromId( $metadata['userId'] );
739 } elseif ( $metadata['userName'] !== null ) { // Shouldn't happen, but just in case
740 $userInfo = UserInfo
::newFromName( $metadata['userName'] );
742 $userInfo = UserInfo
::newAnonymous();
744 } catch ( \InvalidArgumentException
$ex ) {
745 $this->logger
->error( "Session $info: " . $ex->getMessage() );
748 $newParams['userInfo'] = $userInfo;
750 // User validation passes if user ID matches, or if there
751 // is no saved ID and the names match.
752 if ( $metadata['userId'] ) {
753 if ( $metadata['userId'] !== $userInfo->getId() ) {
754 $this->logger
->warning( "Session $info: User ID mismatch, " .
755 $metadata['userId'] . ' !== ' . $userInfo->getId() );
759 // If the user was renamed, probably best to fail here.
760 if ( $metadata['userName'] !== null &&
761 $userInfo->getName() !== $metadata['userName']
763 $this->logger
->warning( "Session $info: User ID matched but name didn't (rename?), " .
764 $metadata['userName'] . ' !== ' . $userInfo->getName() );
768 } elseif ( $metadata['userName'] !== null ) { // Shouldn't happen, but just in case
769 if ( $metadata['userName'] !== $userInfo->getName() ) {
770 $this->logger
->warning( "Session $info: User name mismatch, " .
771 $metadata['userName'] . ' !== ' . $userInfo->getName() );
774 } elseif ( !$userInfo->isAnon() ) {
775 // Metadata specifies an anonymous user, but the passed-in
776 // user isn't anonymous.
777 $this->logger
->warning(
778 "Session $info: Metadata has an anonymous user, " .
779 'but a non-anon user was provided'
785 // And if we have a token in the metadata, it must match the loaded/provided user.
786 if ( $metadata['userToken'] !== null &&
787 $userInfo->getToken() !== $metadata['userToken']
789 $this->logger
->warning( "Session $info: User token mismatch" );
792 if ( !$userInfo->isVerified() ) {
793 $newParams['userInfo'] = $userInfo->verified();
796 if ( !empty( $metadata['remember'] ) && !$info->wasRemembered() ) {
797 $newParams['remembered'] = true;
799 if ( !empty( $metadata['forceHTTPS'] ) && !$info->forceHTTPS() ) {
800 $newParams['forceHTTPS'] = true;
803 if ( !$info->isIdSafe() ) {
804 $newParams['idIsSafe'] = true;
807 // No metadata, so we can't load the provider if one wasn't given.
808 if ( $info->getProvider() === null ) {
809 $this->logger
->warning( "Session $info: Null provider and no metadata" );
813 // If no user was provided and no metadata, it must be anon.
814 if ( !$info->getUserInfo() ) {
815 if ( $info->getProvider()->canChangeUser() ) {
816 $newParams['userInfo'] = UserInfo
::newAnonymous();
819 "Session $info: No user provided and provider cannot set user"
823 } elseif ( !$info->getUserInfo()->isVerified() ) {
824 $this->logger
->warning(
825 "Session $info: Unverified user provided and no metadata to auth it"
833 if ( !$info->getProvider()->persistsSessionId() && !$info->isIdSafe() ) {
834 // The ID doesn't come from the user, so it should be safe
835 // (and if not, nothing we can do about it anyway)
836 $newParams['idIsSafe'] = true;
840 // Construct the replacement SessionInfo, if necessary
842 $newParams['copyFrom'] = $info;
843 $info = new SessionInfo( $info->getPriority(), $newParams );
846 // Allow the provider to check the loaded SessionInfo
847 $providerMetadata = $info->getProviderMetadata();
848 if ( !$info->getProvider()->refreshSessionInfo( $info, $request, $providerMetadata ) ) {
851 if ( $providerMetadata !== $info->getProviderMetadata() ) {
852 $info = new SessionInfo( $info->getPriority(), array(
853 'metadata' => $providerMetadata,
858 // Give hooks a chance to abort. Combined with the SessionMetadata
859 // hook, this can allow for tying a session to an IP address or the
861 $reason = 'Hook aborted';
864 array( &$reason, $info, $request, $metadata, $data )
866 $this->logger
->warning( "Session $info: $reason" );
874 * Create a session corresponding to the passed SessionInfo
875 * @private For use by a SessionProvider that needs to specially create its
877 * @param SessionInfo $info
878 * @param WebRequest $request
881 public function getSessionFromInfo( SessionInfo
$info, WebRequest
$request ) {
882 $id = $info->getId();
884 if ( !isset( $this->allSessionBackends
[$id] ) ) {
885 if ( !isset( $this->allSessionIds
[$id] ) ) {
886 $this->allSessionIds
[$id] = new SessionId( $id );
888 $backend = new SessionBackend(
889 $this->allSessionIds
[$id],
893 $this->config
->get( 'ObjectCacheSessionExpiry' )
895 $this->allSessionBackends
[$id] = $backend;
896 $delay = $backend->delaySave();
898 $backend = $this->allSessionBackends
[$id];
899 $delay = $backend->delaySave();
900 if ( $info->wasPersisted() ) {
903 if ( $info->wasRemembered() ) {
904 $backend->setRememberUser( true );
908 $request->setSessionId( $backend->getSessionId() );
909 $session = $backend->getSession( $request );
911 if ( !$info->isIdSafe() ) {
915 \ScopedCallback
::consume( $delay );
920 * Deregister a SessionBackend
921 * @private For use from \\MediaWiki\\Session\\SessionBackend only
922 * @param SessionBackend $backend
924 public function deregisterSessionBackend( SessionBackend
$backend ) {
925 $id = $backend->getId();
926 if ( !isset( $this->allSessionBackends
[$id] ) ||
!isset( $this->allSessionIds
[$id] ) ||
927 $this->allSessionBackends
[$id] !== $backend ||
928 $this->allSessionIds
[$id] !== $backend->getSessionId()
930 throw new \
InvalidArgumentException( 'Backend was not registered with this SessionManager' );
933 unset( $this->allSessionBackends
[$id] );
934 // Explicitly do not unset $this->allSessionIds[$id]
938 * Change a SessionBackend's ID
939 * @private For use from \\MediaWiki\\Session\\SessionBackend only
940 * @param SessionBackend $backend
942 public function changeBackendId( SessionBackend
$backend ) {
943 $sessionId = $backend->getSessionId();
944 $oldId = (string)$sessionId;
945 if ( !isset( $this->allSessionBackends
[$oldId] ) ||
!isset( $this->allSessionIds
[$oldId] ) ||
946 $this->allSessionBackends
[$oldId] !== $backend ||
947 $this->allSessionIds
[$oldId] !== $sessionId
949 throw new \
InvalidArgumentException( 'Backend was not registered with this SessionManager' );
952 $newId = $this->generateSessionId();
954 unset( $this->allSessionBackends
[$oldId], $this->allSessionIds
[$oldId] );
955 $sessionId->setId( $newId );
956 $this->allSessionBackends
[$newId] = $backend;
957 $this->allSessionIds
[$newId] = $sessionId;
961 * Generate a new random session ID
964 public function generateSessionId() {
966 $id = wfBaseConvert( \MWCryptRand
::generateHex( 40 ), 16, 32, 32 );
967 $key = wfMemcKey( 'MWSession', $id );
968 } while ( isset( $this->allSessionIds
[$id] ) ||
is_array( $this->store
->get( $key ) ) );
973 * Call setters on a PHPSessionHandler
974 * @private Use PhpSessionHandler::install()
975 * @param PHPSessionHandler $handler
977 public function setupPHPSessionHandler( PHPSessionHandler
$handler ) {
978 $handler->setManager( $this, $this->store
, $this->logger
);
982 * Reset the internal caching for unit testing
984 public static function resetCache() {
985 if ( !defined( 'MW_PHPUNIT_TEST' ) ) {
986 // @codeCoverageIgnoreStart
987 throw new MWException( __METHOD__
. ' may only be called from unit tests!' );
988 // @codeCoverageIgnoreEnd
991 self
::$globalSession = null;
992 self
::$globalSessionRequest = null;