From 0344b168276f80189e2254c75a762aff5b517b6b Mon Sep 17 00:00:00 2001 From: Aleksander Machniak <alec@alec.pl> Date: Sun, 22 May 2016 06:32:57 -0400 Subject: [PATCH] Fix priority icon(s) position --- program/lib/Roundcube/rcube_session.php | 99 +++++++++++++++++++++++++------------------------ 1 files changed, 50 insertions(+), 49 deletions(-) diff --git a/program/lib/Roundcube/rcube_session.php b/program/lib/Roundcube/rcube_session.php index ab5c24c..f0c012c 100644 --- a/program/lib/Roundcube/rcube_session.php +++ b/program/lib/Roundcube/rcube_session.php @@ -1,6 +1,6 @@ <?php -/* +/** +-----------------------------------------------------------------------+ | This file is part of the Roundcube Webmail client | | Copyright (C) 2005-2014, The Roundcube Dev Team | @@ -15,7 +15,7 @@ +-----------------------------------------------------------------------+ | Author: Thomas Bruederli <roundcube@gmail.com> | | Author: Aleksander Machniak <alec@alec.pl> | - | Author: Cor Bosman <cor@roundcu.be> | + | Author: Cor Bosman <cor@roundcu.be> | +-----------------------------------------------------------------------+ */ @@ -29,22 +29,23 @@ */ abstract class rcube_session { + protected $config; protected $key; protected $ip; protected $changed; protected $start; - protected $time_diff = 0; - protected $reloaded = false; - protected $appends = array(); - protected $unsets = array(); - protected $gc_handlers = array(); - protected $cookiename = 'roundcube_sessauth'; protected $vars; protected $now; - protected $secret = ''; - protected $ip_check = false; - protected $logging = false; - protected $config; + protected $time_diff = 0; + protected $reloaded = false; + protected $appends = array(); + protected $unsets = array(); + protected $gc_enabled = 0; + protected $gc_handlers = array(); + protected $cookiename = 'roundcube_sessauth'; + protected $ip_check = false; + protected $logging = false; + /** * Blocks session data from being written to database. @@ -86,9 +87,6 @@ { $this->config = $config; - // set secret - $this->set_secret($this->config->get('des_key') . dirname($_SERVER['SCRIPT_NAME'])); - // set ip check $this->set_ip_check($this->config->get('ip_check')); @@ -116,7 +114,6 @@ ); } - /** * Wrapper for session_start() */ @@ -142,12 +139,12 @@ abstract function write($key, $vars); abstract function update($key, $newvars, $oldvars); - /** * session write handler. This calls the implementation methods for write/update after some initial checks. * * @param $key * @param $vars + * * @return bool */ public function sess_write($key, $vars) @@ -160,7 +157,7 @@ $oldvars = $this->get_cache($key); // if there are cached vars, update store, else insert new data - if ($oldvars !== null) { + if ($oldvars) { $newvars = $this->_fixvars($vars, $oldvars); return $this->update($key, $newvars, $oldvars); } @@ -168,7 +165,6 @@ return $this->write($key, $vars); } } - /** * Wrapper for session_write_close() @@ -223,7 +219,9 @@ { // move gc execution to the script shutdown function // see rcube::shutdown() and rcube_session::write_close() - return $this->gc_enabled = $maxlifetime; + $this->gc_enabled = $maxlifetime; + + return true; } /** @@ -242,7 +240,6 @@ $this->gc_handlers[] = $func; } - /** * Garbage collector handler to run on script shutdown */ @@ -254,7 +251,6 @@ } } } - /** * Generate and set new session id @@ -273,10 +269,11 @@ } /** - * see if we have vars of this key already cached, and if so, return them. + * See if we have vars of this key already cached, and if so, return them. * - * @param $key - * @return null|array + * @param string $key Session ID + * + * @return string */ protected function get_cache($key) { @@ -291,12 +288,14 @@ else { // else read data again $cache = $this->read($key); } + return $cache; } - /** * Append the given value to the certain node in the session data array + * + * Warning: Do not use if you already modified $_SESSION in the same request (#1490608) * * @param string Path denoting the session variable where to append the value * @param string Key name under which to append the new value (use null for appending to an indexed list) @@ -324,10 +323,10 @@ $this->appends[] = $path; // when overwriting a previously unset variable - if ($this->unsets[$path]) + if ($this->unsets[$path]) { unset($this->unsets[$path]); + } } - /** * Unset a session variable @@ -356,18 +355,16 @@ return true; } - /** * Kill this session */ public function kill() { $this->vars = null; - $this->ip = rcube_utils::remote_addr(); // update IP (might have changed) + $this->ip = rcube_utils::remote_addr(); // update IP (might have changed) $this->destroy(session_id()); rcube_utils::setcookie($this->cookiename, '-del-', time() - 60); } - /** * Re-read session data from storage backend @@ -384,7 +381,7 @@ $node[$k] = $value; } - if($this->key) { + if ($this->key) { $data = $this->read($this->key); } @@ -406,7 +403,6 @@ } } } - } /** @@ -443,7 +439,6 @@ return $data; } - /** * Unserialize session data @@ -543,7 +538,6 @@ return unserialize( 'a:' . $items . ':{' . $serialized . '}' ); } - /** * Setter for session lifetime */ @@ -556,7 +550,6 @@ $this->now = $now - ($now % ($this->lifetime / 2)); } - /** * Getter for remote IP saved with this session */ @@ -565,15 +558,23 @@ return $this->ip; } - /** * Setter for cookie encryption secret */ - function set_secret($secret) + function set_secret($secret = null) { - $this->secret = $secret; - } + // generate random hash and store in session + if (!$secret) { + if (!empty($_SESSION['auth_secret'])) { + $secret = $_SESSION['auth_secret']; + } + else { + $secret = rcube_utils::random_bytes(strlen($this->key)); + } + } + $_SESSION['auth_secret'] = $secret; + } /** * Enable/disable IP check @@ -582,7 +583,6 @@ { $this->ip_check = $check; } - /** * Setter for the cookie name used for session cookie @@ -593,7 +593,6 @@ $this->cookiename = $cookiename; } } - /** * Check session authentication cookie @@ -632,28 +631,30 @@ return $result; } - /** * Set session authentication cookie */ - function set_auth_cookie() + public function set_auth_cookie() { $this->cookie = $this->_mkcookie($this->now); rcube_utils::setcookie($this->cookiename, $this->cookie, 0); $_COOKIE[$this->cookiename] = $this->cookie; } - /** - * Create session cookie from session data + * Create session cookie for specified time slot. * * @param int Time slot to use + * * @return string */ - function _mkcookie($timeslot) + protected function _mkcookie($timeslot) { - $auth_string = "$this->key,$this->secret,$timeslot"; - return "S" . (function_exists('sha1') ? sha1($auth_string) : md5($auth_string)); + // make sure the secret key exists + $this->set_secret(); + + // no need to hash this, it's just a random string + return $_SESSION['auth_secret'] . '-' . $timeslot; } /** -- Gitblit v1.9.1