123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233 |
- <?php
- /**
- * Implementation of PHP's session API.
- * What it does:
- * - it handles the session data in the database (more scalable.)
- * - it uses the databaseSession_lifetime setting for garbage collection.
- * - the custom session handler is set by loadSession().
- *
- * Simple Machines Forum (SMF)
- *
- * @package SMF
- * @author Simple Machines http://www.simplemachines.org
- * @copyright 2011 Simple Machines
- * @license http://www.simplemachines.org/about/smf/license.php BSD
- *
- * @version 2.0
- */
- if (!defined('SMF'))
- die('Hacking attempt...');
- /**
- * Attempt to start the session, unless it already has been.
- */
- function loadSession()
- {
- global $HTTP_SESSION_VARS, $modSettings, $boardurl, $sc;
- // Attempt to change a few PHP settings.
- @ini_set('session.use_cookies', true);
- @ini_set('session.use_only_cookies', false);
- @ini_set('url_rewriter.tags', '');
- @ini_set('session.use_trans_sid', false);
- @ini_set('arg_separator.output', '&');
- if (!empty($modSettings['globalCookies']))
- {
- $parsed_url = parse_url($boardurl);
- if (preg_match('~^\d{1,3}(\.\d{1,3}){3}$~', $parsed_url['host']) == 0 && preg_match('~(?:[^\.]+\.)?([^\.]{2,}\..+)\z~i', $parsed_url['host'], $parts) == 1)
- @ini_set('session.cookie_domain', '.' . $parts[1]);
- }
- // !!! Set the session cookie path?
- // If it's already been started... probably best to skip this.
- if ((@ini_get('session.auto_start') == 1 && !empty($modSettings['databaseSession_enable'])) || session_id() == '')
- {
- // Attempt to end the already-started session.
- if (@ini_get('session.auto_start') == 1)
- @session_write_close();
- // This is here to stop people from using bad junky PHPSESSIDs.
- if (isset($_REQUEST[session_name()]) && preg_match('~^[A-Za-z0-9]{16,32}$~', $_REQUEST[session_name()]) == 0 && !isset($_COOKIE[session_name()]))
- {
- $session_id = md5(md5('smf_sess_' . time()) . mt_rand());
- $_REQUEST[session_name()] = $session_id;
- $_GET[session_name()] = $session_id;
- $_POST[session_name()] = $session_id;
- }
- // Use database sessions? (they don't work in 4.1.x!)
- if (!empty($modSettings['databaseSession_enable']) && @version_compare(PHP_VERSION, '4.2.0') != -1)
- {
- session_set_save_handler('sessionOpen', 'sessionClose', 'sessionRead', 'sessionWrite', 'sessionDestroy', 'sessionGC');
- @ini_set('session.gc_probability', '1');
- }
- elseif (@ini_get('session.gc_maxlifetime') <= 1440 && !empty($modSettings['databaseSession_lifetime']))
- @ini_set('session.gc_maxlifetime', max($modSettings['databaseSession_lifetime'], 60));
- // Use cache setting sessions?
- if (empty($modSettings['databaseSession_enable']) && !empty($modSettings['cache_enable']) && php_sapi_name() != 'cli')
- {
- if (function_exists('mmcache_set_session_handlers'))
- mmcache_set_session_handlers();
- elseif (function_exists('eaccelerator_set_session_handlers'))
- eaccelerator_set_session_handlers();
- }
- session_start();
- // Change it so the cache settings are a little looser than default.
- if (!empty($modSettings['databaseSession_loose']))
- header('Cache-Control: private');
- }
- // While PHP 4.1.x should use $_SESSION, it seems to need this to do it right.
- if (@version_compare(PHP_VERSION, '4.2.0') == -1)
- $HTTP_SESSION_VARS['php_412_bugfix'] = true;
- // Set the randomly generated code.
- if (!isset($_SESSION['session_var']))
- {
- $_SESSION['session_value'] = md5(session_id() . mt_rand());
- $_SESSION['session_var'] = substr(preg_replace('~^\d+~', '', sha1(mt_rand() . session_id() . mt_rand())), 0, rand(7, 12));
- }
- $sc = $_SESSION['session_value'];
- }
- /**
- * Implementation of sessionOpen() replacing the standard open handler.
- * It simply returns true.
- *
- * @param $save_path
- * @param $session_name
- * @return bool
- */
- function sessionOpen($save_path, $session_name)
- {
- return true;
- }
- /**
- * Implementation of sessionClose() replacing the standard close handler.
- * It simply returns true.
- *
- * @return bool
- */
- function sessionClose()
- {
- return true;
- }
- /**
- * Implementation of sessionRead() replacing the standard read handler.
- *
- * @param $session_id
- */
- function sessionRead($session_id)
- {
- global $smcFunc;
- if (preg_match('~^[A-Za-z0-9]{16,32}$~', $session_id) == 0)
- return false;
- // Look for it in the database.
- $result = $smcFunc['db_query']('', '
- SELECT data
- FROM {db_prefix}sessions
- WHERE session_id = {string:session_id}
- LIMIT 1',
- array(
- 'session_id' => $session_id,
- )
- );
- list ($sess_data) = $smcFunc['db_fetch_row']($result);
- $smcFunc['db_free_result']($result);
- return $sess_data;
- }
- /**
- * Implementation of sessionWrite() replacing the standard write handler.
- *
- * @param $session_id
- * @param $data
- */
- function sessionWrite($session_id, $data)
- {
- global $smcFunc;
- if (preg_match('~^[A-Za-z0-9]{16,32}$~', $session_id) == 0)
- return false;
- // First try to update an existing row...
- $result = $smcFunc['db_query']('', '
- UPDATE {db_prefix}sessions
- SET data = {string:data}, last_update = {int:last_update}
- WHERE session_id = {string:session_id}',
- array(
- 'last_update' => time(),
- 'data' => $data,
- 'session_id' => $session_id,
- )
- );
- // If that didn't work, try inserting a new one.
- if ($smcFunc['db_affected_rows']() == 0)
- $result = $smcFunc['db_insert']('ignore',
- '{db_prefix}sessions',
- array('session_id' => 'string', 'data' => 'string', 'last_update' => 'int'),
- array($session_id, $data, time()),
- array('session_id')
- );
- return $result;
- }
- /**
- * Implementation of sessionDestroy() replacing the standard destroy handler.
- *
- * @param $session_id
- */
- function sessionDestroy($session_id)
- {
- global $smcFunc;
- if (preg_match('~^[A-Za-z0-9]{16,32}$~', $session_id) == 0)
- return false;
- // Just delete the row...
- return $smcFunc['db_query']('', '
- DELETE FROM {db_prefix}sessions
- WHERE session_id = {string:session_id}',
- array(
- 'session_id' => $session_id,
- )
- );
- }
- /**
- * Implementation of sessionDestroy() replacing the standard gc handler.
- * Callback for garbage collection.
- *
- * @param int $max_lifetime
- */
- function sessionGC($max_lifetime)
- {
- global $modSettings, $smcFunc;
- // Just set to the default or lower? Ignore it for a higher value. (hopefully)
- if (!empty($modSettings['databaseSession_lifetime']) && ($max_lifetime <= 1440 || $modSettings['databaseSession_lifetime'] > $max_lifetime))
- $max_lifetime = max($modSettings['databaseSession_lifetime'], 60);
- // Clean up after yerself ;).
- return $smcFunc['db_query']('', '
- DELETE FROM {db_prefix}sessions
- WHERE last_update < {int:last_update}',
- array(
- 'last_update' => time() - $max_lifetime,
- )
- );
- }
|