Andrey Andreev | 05afe3e | 2015-02-02 19:04:37 +0200 | [diff] [blame] | 1 | <?php |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 2 | /** |
| 3 | * CodeIgniter |
| 4 | * |
Andrey Andreev | bf6b11d | 2015-01-12 17:27:12 +0200 | [diff] [blame] | 5 | * An open source application development framework for PHP |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 6 | * |
Andrey Andreev | 46f2f26 | 2014-11-11 14:37:51 +0200 | [diff] [blame] | 7 | * This content is released under the MIT License (MIT) |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 8 | * |
Andrey Andreev | 125ef47 | 2016-01-11 12:33:00 +0200 | [diff] [blame] | 9 | * Copyright (c) 2014 - 2016, British Columbia Institute of Technology |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 10 | * |
Andrey Andreev | 46f2f26 | 2014-11-11 14:37:51 +0200 | [diff] [blame] | 11 | * Permission is hereby granted, free of charge, to any person obtaining a copy |
| 12 | * of this software and associated documentation files (the "Software"), to deal |
| 13 | * in the Software without restriction, including without limitation the rights |
| 14 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| 15 | * copies of the Software, and to permit persons to whom the Software is |
| 16 | * furnished to do so, subject to the following conditions: |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 17 | * |
Andrey Andreev | 46f2f26 | 2014-11-11 14:37:51 +0200 | [diff] [blame] | 18 | * The above copyright notice and this permission notice shall be included in |
| 19 | * all copies or substantial portions of the Software. |
| 20 | * |
| 21 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 22 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 23 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| 24 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 25 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| 26 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
| 27 | * THE SOFTWARE. |
| 28 | * |
| 29 | * @package CodeIgniter |
| 30 | * @author EllisLab Dev Team |
Andrey Andreev | 1924e87 | 2016-01-11 12:55:34 +0200 | [diff] [blame] | 31 | * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/) |
Andrey Andreev | 125ef47 | 2016-01-11 12:33:00 +0200 | [diff] [blame] | 32 | * @copyright Copyright (c) 2014 - 2016, British Columbia Institute of Technology (http://bcit.ca/) |
Andrey Andreev | 46f2f26 | 2014-11-11 14:37:51 +0200 | [diff] [blame] | 33 | * @license http://opensource.org/licenses/MIT MIT License |
Andrey Andreev | bd202c9 | 2016-01-11 12:50:18 +0200 | [diff] [blame] | 34 | * @link https://codeigniter.com |
Andrey Andreev | 46f2f26 | 2014-11-11 14:37:51 +0200 | [diff] [blame] | 35 | * @since Version 3.0.0 |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 36 | * @filesource |
Andrey Andreev | 46f2f26 | 2014-11-11 14:37:51 +0200 | [diff] [blame] | 37 | */ |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 38 | defined('BASEPATH') OR exit('No direct script access allowed'); |
| 39 | |
| 40 | /** |
| 41 | * CodeIgniter Session Files Driver |
| 42 | * |
Andrey Andreev | 46f2f26 | 2014-11-11 14:37:51 +0200 | [diff] [blame] | 43 | * @package CodeIgniter |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 44 | * @subpackage Libraries |
| 45 | * @category Sessions |
Andrey Andreev | 46f2f26 | 2014-11-11 14:37:51 +0200 | [diff] [blame] | 46 | * @author Andrey Andreev |
Andrey Andreev | bd202c9 | 2016-01-11 12:50:18 +0200 | [diff] [blame] | 47 | * @link https://codeigniter.com/user_guide/libraries/sessions.html |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 48 | */ |
| 49 | class CI_Session_files_driver extends CI_Session_driver implements SessionHandlerInterface { |
| 50 | |
| 51 | /** |
| 52 | * Save path |
| 53 | * |
| 54 | * @var string |
| 55 | */ |
| 56 | protected $_save_path; |
| 57 | |
| 58 | /** |
| 59 | * File handle |
| 60 | * |
| 61 | * @var resource |
| 62 | */ |
| 63 | protected $_file_handle; |
| 64 | |
| 65 | /** |
| 66 | * File name |
| 67 | * |
| 68 | * @var resource |
| 69 | */ |
| 70 | protected $_file_path; |
| 71 | |
| 72 | /** |
| 73 | * File new flag |
| 74 | * |
| 75 | * @var bool |
| 76 | */ |
| 77 | protected $_file_new; |
| 78 | |
| 79 | // ------------------------------------------------------------------------ |
| 80 | |
| 81 | /** |
| 82 | * Class constructor |
| 83 | * |
| 84 | * @param array $params Configuration parameters |
| 85 | * @return void |
| 86 | */ |
| 87 | public function __construct(&$params) |
| 88 | { |
| 89 | parent::__construct($params); |
| 90 | |
Andrey Andreev | dfb39be | 2014-10-06 01:50:14 +0300 | [diff] [blame] | 91 | if (isset($this->_config['save_path'])) |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 92 | { |
Andrey Andreev | dfb39be | 2014-10-06 01:50:14 +0300 | [diff] [blame] | 93 | $this->_config['save_path'] = rtrim($this->_config['save_path'], '/\\'); |
| 94 | ini_set('session.save_path', $this->_config['save_path']); |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 95 | } |
| 96 | else |
| 97 | { |
Andrey Andreev | 85dfc2a | 2016-04-01 22:54:15 +0300 | [diff] [blame] | 98 | log_message('debug', 'Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.'); |
Andrey Andreev | dfb39be | 2014-10-06 01:50:14 +0300 | [diff] [blame] | 99 | $this->_config['save_path'] = rtrim(ini_get('session.save_path'), '/\\'); |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 100 | } |
| 101 | } |
| 102 | |
| 103 | // ------------------------------------------------------------------------ |
| 104 | |
Andrey Andreev | 10411fc | 2015-01-19 13:54:53 +0200 | [diff] [blame] | 105 | /** |
| 106 | * Open |
| 107 | * |
| 108 | * Sanitizes the save_path directory. |
| 109 | * |
| 110 | * @param string $save_path Path to session files' directory |
Tom Atkinson | 388ce59 | 2015-02-04 17:54:52 +0100 | [diff] [blame] | 111 | * @param string $name Session cookie name |
Andrey Andreev | 10411fc | 2015-01-19 13:54:53 +0200 | [diff] [blame] | 112 | * @return bool |
| 113 | */ |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 114 | public function open($save_path, $name) |
| 115 | { |
Andrey Andreev | 5f4d01a | 2015-02-02 18:38:00 +0200 | [diff] [blame] | 116 | if ( ! is_dir($save_path)) |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 117 | { |
Andrey Andreev | 5f4d01a | 2015-02-02 18:38:00 +0200 | [diff] [blame] | 118 | if ( ! mkdir($save_path, 0700, TRUE)) |
| 119 | { |
| 120 | throw new Exception("Session: Configured save path '".$this->_config['save_path']."' is not a directory, doesn't exist or cannot be created."); |
| 121 | } |
| 122 | } |
| 123 | elseif ( ! is_writable($save_path)) |
| 124 | { |
| 125 | throw new Exception("Session: Configured save path '".$this->_config['save_path']."' is not writable by the PHP process."); |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 126 | } |
| 127 | |
Andrey Andreev | dfb39be | 2014-10-06 01:50:14 +0300 | [diff] [blame] | 128 | $this->_config['save_path'] = $save_path; |
| 129 | $this->_file_path = $this->_config['save_path'].DIRECTORY_SEPARATOR |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 130 | .$name // we'll use the session cookie name as a prefix to avoid collisions |
Andrey Andreev | dfb39be | 2014-10-06 01:50:14 +0300 | [diff] [blame] | 131 | .($this->_config['match_ip'] ? md5($_SERVER['REMOTE_ADDR']) : ''); |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 132 | |
Andrey Andreev | af84969 | 2015-12-12 14:07:39 +0200 | [diff] [blame] | 133 | return $this->_success; |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 134 | } |
| 135 | |
| 136 | // ------------------------------------------------------------------------ |
| 137 | |
Andrey Andreev | 10411fc | 2015-01-19 13:54:53 +0200 | [diff] [blame] | 138 | /** |
| 139 | * Read |
| 140 | * |
| 141 | * Reads session data and acquires a lock |
| 142 | * |
| 143 | * @param string $session_id Session ID |
| 144 | * @return string Serialized session data |
| 145 | */ |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 146 | public function read($session_id) |
| 147 | { |
| 148 | // This might seem weird, but PHP 5.6 introduces session_reset(), |
| 149 | // which re-reads session data |
| 150 | if ($this->_file_handle === NULL) |
| 151 | { |
Andrey Andreev | a838279 | 2016-07-28 16:40:12 +0300 | [diff] [blame^] | 152 | $this->_file_new = ! file_exists($this->_file_path.$session_id); |
| 153 | |
| 154 | if (($this->_file_handle = fopen($this->_file_path.$session_id, 'c+b')) === FALSE) |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 155 | { |
Andrey Andreev | 7474a67 | 2014-10-31 23:35:32 +0200 | [diff] [blame] | 156 | log_message('error', "Session: Unable to open file '".$this->_file_path.$session_id."'."); |
Andrey Andreev | af84969 | 2015-12-12 14:07:39 +0200 | [diff] [blame] | 157 | return $this->_failure; |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 158 | } |
| 159 | |
| 160 | if (flock($this->_file_handle, LOCK_EX) === FALSE) |
| 161 | { |
Andrey Andreev | 7474a67 | 2014-10-31 23:35:32 +0200 | [diff] [blame] | 162 | log_message('error', "Session: Unable to obtain lock for file '".$this->_file_path.$session_id."'."); |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 163 | fclose($this->_file_handle); |
| 164 | $this->_file_handle = NULL; |
Andrey Andreev | af84969 | 2015-12-12 14:07:39 +0200 | [diff] [blame] | 165 | return $this->_failure; |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 166 | } |
| 167 | |
Andrey Andreev | 7474a67 | 2014-10-31 23:35:32 +0200 | [diff] [blame] | 168 | // Needed by write() to detect session_regenerate_id() calls |
| 169 | $this->_session_id = $session_id; |
| 170 | |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 171 | if ($this->_file_new) |
| 172 | { |
Andrey Andreev | 7474a67 | 2014-10-31 23:35:32 +0200 | [diff] [blame] | 173 | chmod($this->_file_path.$session_id, 0600); |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 174 | $this->_fingerprint = md5(''); |
| 175 | return ''; |
| 176 | } |
| 177 | } |
Andrey Andreev | 8df6efd | 2015-12-11 17:55:55 +0200 | [diff] [blame] | 178 | // We shouldn't need this, but apparently we do ... |
| 179 | // See https://github.com/bcit-ci/CodeIgniter/issues/4039 |
Andrey Andreev | 2d6d9ab | 2015-12-15 12:32:50 +0200 | [diff] [blame] | 180 | elseif ($this->_file_handle === FALSE) |
Andrey Andreev | 8df6efd | 2015-12-11 17:55:55 +0200 | [diff] [blame] | 181 | { |
Andrey Andreev | af84969 | 2015-12-12 14:07:39 +0200 | [diff] [blame] | 182 | return $this->_failure; |
Andrey Andreev | 8df6efd | 2015-12-11 17:55:55 +0200 | [diff] [blame] | 183 | } |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 184 | else |
| 185 | { |
| 186 | rewind($this->_file_handle); |
| 187 | } |
| 188 | |
| 189 | $session_data = ''; |
Andrey Andreev | 7474a67 | 2014-10-31 23:35:32 +0200 | [diff] [blame] | 190 | for ($read = 0, $length = filesize($this->_file_path.$session_id); $read < $length; $read += strlen($buffer)) |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 191 | { |
| 192 | if (($buffer = fread($this->_file_handle, $length - $read)) === FALSE) |
| 193 | { |
| 194 | break; |
| 195 | } |
| 196 | |
| 197 | $session_data .= $buffer; |
| 198 | } |
| 199 | |
| 200 | $this->_fingerprint = md5($session_data); |
| 201 | return $session_data; |
| 202 | } |
| 203 | |
Andrey Andreev | 10411fc | 2015-01-19 13:54:53 +0200 | [diff] [blame] | 204 | // ------------------------------------------------------------------------ |
| 205 | |
| 206 | /** |
| 207 | * Write |
| 208 | * |
| 209 | * Writes (create / update) session data |
| 210 | * |
| 211 | * @param string $session_id Session ID |
| 212 | * @param string $session_data Serialized session data |
| 213 | * @return bool |
| 214 | */ |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 215 | public function write($session_id, $session_data) |
| 216 | { |
Andrey Andreev | 7474a67 | 2014-10-31 23:35:32 +0200 | [diff] [blame] | 217 | // If the two IDs don't match, we have a session_regenerate_id() call |
| 218 | // and we need to close the old handle and open a new one |
Andrey Andreev | bb71dba | 2015-12-15 13:00:52 +0200 | [diff] [blame] | 219 | if ($session_id !== $this->_session_id && ($this->close() === $this->_failure OR $this->read($session_id) === $this->_failure)) |
Andrey Andreev | 7474a67 | 2014-10-31 23:35:32 +0200 | [diff] [blame] | 220 | { |
Andrey Andreev | af84969 | 2015-12-12 14:07:39 +0200 | [diff] [blame] | 221 | return $this->_failure; |
Andrey Andreev | 7474a67 | 2014-10-31 23:35:32 +0200 | [diff] [blame] | 222 | } |
| 223 | |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 224 | if ( ! is_resource($this->_file_handle)) |
| 225 | { |
Andrey Andreev | af84969 | 2015-12-12 14:07:39 +0200 | [diff] [blame] | 226 | return $this->_failure; |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 227 | } |
| 228 | elseif ($this->_fingerprint === md5($session_data)) |
| 229 | { |
Andrey Andreev | af84969 | 2015-12-12 14:07:39 +0200 | [diff] [blame] | 230 | return ( ! $this->_file_new && ! touch($this->_file_path.$session_id)) |
| 231 | ? $this->_failure |
| 232 | : $this->_success; |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 233 | } |
| 234 | |
| 235 | if ( ! $this->_file_new) |
| 236 | { |
| 237 | ftruncate($this->_file_handle, 0); |
| 238 | rewind($this->_file_handle); |
| 239 | } |
| 240 | |
Andrey Andreev | 5995e08 | 2014-06-03 15:33:51 +0300 | [diff] [blame] | 241 | if (($length = strlen($session_data)) > 0) |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 242 | { |
Andrey Andreev | 5995e08 | 2014-06-03 15:33:51 +0300 | [diff] [blame] | 243 | for ($written = 0; $written < $length; $written += $result) |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 244 | { |
Andrey Andreev | 5995e08 | 2014-06-03 15:33:51 +0300 | [diff] [blame] | 245 | if (($result = fwrite($this->_file_handle, substr($session_data, $written))) === FALSE) |
| 246 | { |
| 247 | break; |
| 248 | } |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 249 | } |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 250 | |
Andrey Andreev | 5995e08 | 2014-06-03 15:33:51 +0300 | [diff] [blame] | 251 | if ( ! is_int($result)) |
| 252 | { |
| 253 | $this->_fingerprint = md5(substr($session_data, 0, $written)); |
| 254 | log_message('error', 'Session: Unable to write data.'); |
Andrey Andreev | af84969 | 2015-12-12 14:07:39 +0200 | [diff] [blame] | 255 | return $this->_failure; |
Andrey Andreev | 5995e08 | 2014-06-03 15:33:51 +0300 | [diff] [blame] | 256 | } |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 257 | } |
| 258 | |
| 259 | $this->_fingerprint = md5($session_data); |
Andrey Andreev | af84969 | 2015-12-12 14:07:39 +0200 | [diff] [blame] | 260 | return $this->_success; |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 261 | } |
| 262 | |
| 263 | // ------------------------------------------------------------------------ |
| 264 | |
Andrey Andreev | 10411fc | 2015-01-19 13:54:53 +0200 | [diff] [blame] | 265 | /** |
| 266 | * Close |
| 267 | * |
| 268 | * Releases locks and closes file descriptor. |
| 269 | * |
Gabriel Potkány | 1fb5000 | 2015-02-04 01:45:59 +0100 | [diff] [blame] | 270 | * @return bool |
Andrey Andreev | 10411fc | 2015-01-19 13:54:53 +0200 | [diff] [blame] | 271 | */ |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 272 | public function close() |
| 273 | { |
| 274 | if (is_resource($this->_file_handle)) |
| 275 | { |
| 276 | flock($this->_file_handle, LOCK_UN); |
| 277 | fclose($this->_file_handle); |
| 278 | |
Andrey Andreev | 7474a67 | 2014-10-31 23:35:32 +0200 | [diff] [blame] | 279 | $this->_file_handle = $this->_file_new = $this->_session_id = NULL; |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 280 | } |
| 281 | |
Andrey Andreev | af84969 | 2015-12-12 14:07:39 +0200 | [diff] [blame] | 282 | return $this->_success; |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 283 | } |
| 284 | |
| 285 | // ------------------------------------------------------------------------ |
| 286 | |
Andrey Andreev | 10411fc | 2015-01-19 13:54:53 +0200 | [diff] [blame] | 287 | /** |
| 288 | * Destroy |
| 289 | * |
| 290 | * Destroys the current session. |
| 291 | * |
| 292 | * @param string $session_id Session ID |
| 293 | * @return bool |
| 294 | */ |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 295 | public function destroy($session_id) |
| 296 | { |
Andrey Andreev | bb71dba | 2015-12-15 13:00:52 +0200 | [diff] [blame] | 297 | if ($this->close() === $this->_success) |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 298 | { |
Andrey Andreev | af84969 | 2015-12-12 14:07:39 +0200 | [diff] [blame] | 299 | if (file_exists($this->_file_path.$session_id)) |
| 300 | { |
| 301 | $this->_cookie_destroy(); |
| 302 | return unlink($this->_file_path.$session_id) |
| 303 | ? $this->_success |
| 304 | : $this->_failure; |
| 305 | } |
| 306 | |
| 307 | return $this->_success; |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 308 | } |
| 309 | elseif ($this->_file_path !== NULL) |
| 310 | { |
| 311 | clearstatcache(); |
Andrey Andreev | af84969 | 2015-12-12 14:07:39 +0200 | [diff] [blame] | 312 | if (file_exists($this->_file_path.$session_id)) |
| 313 | { |
| 314 | $this->_cookie_destroy(); |
| 315 | return unlink($this->_file_path.$session_id) |
| 316 | ? $this->_success |
| 317 | : $this->_failure; |
| 318 | } |
| 319 | |
| 320 | return $this->_success; |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 321 | } |
| 322 | |
Andrey Andreev | af84969 | 2015-12-12 14:07:39 +0200 | [diff] [blame] | 323 | return $this->_failure; |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 324 | } |
| 325 | |
| 326 | // ------------------------------------------------------------------------ |
| 327 | |
Andrey Andreev | 10411fc | 2015-01-19 13:54:53 +0200 | [diff] [blame] | 328 | /** |
| 329 | * Garbage Collector |
| 330 | * |
| 331 | * Deletes expired sessions |
| 332 | * |
| 333 | * @param int $maxlifetime Maximum lifetime of sessions |
| 334 | * @return bool |
| 335 | */ |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 336 | public function gc($maxlifetime) |
| 337 | { |
Andrey Andreev | 2f79f9a | 2015-03-26 12:52:05 +0200 | [diff] [blame] | 338 | if ( ! is_dir($this->_config['save_path']) OR ($directory = opendir($this->_config['save_path'])) === FALSE) |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 339 | { |
Andrey Andreev | dfb39be | 2014-10-06 01:50:14 +0300 | [diff] [blame] | 340 | log_message('debug', "Session: Garbage collector couldn't list files under directory '".$this->_config['save_path']."'."); |
Andrey Andreev | af84969 | 2015-12-12 14:07:39 +0200 | [diff] [blame] | 341 | return $this->_failure; |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 342 | } |
| 343 | |
| 344 | $ts = time() - $maxlifetime; |
| 345 | |
Tom Atkinson | 388ce59 | 2015-02-04 17:54:52 +0100 | [diff] [blame] | 346 | $pattern = sprintf( |
| 347 | '/^%s[0-9a-f]{%d}$/', |
| 348 | preg_quote($this->_config['cookie_name'], '/'), |
| 349 | ($this->_config['match_ip'] === TRUE ? 72 : 40) |
| 350 | ); |
| 351 | |
Andrey Andreev | 2f79f9a | 2015-03-26 12:52:05 +0200 | [diff] [blame] | 352 | while (($file = readdir($directory)) !== FALSE) |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 353 | { |
| 354 | // If the filename doesn't match this pattern, it's either not a session file or is not ours |
Tom Atkinson | 388ce59 | 2015-02-04 17:54:52 +0100 | [diff] [blame] | 355 | if ( ! preg_match($pattern, $file) |
Andrey Andreev | dfb39be | 2014-10-06 01:50:14 +0300 | [diff] [blame] | 356 | OR ! is_file($this->_config['save_path'].DIRECTORY_SEPARATOR.$file) |
Andrey Andreev | cd48961 | 2014-10-27 16:09:01 +0200 | [diff] [blame] | 357 | OR ($mtime = filemtime($this->_config['save_path'].DIRECTORY_SEPARATOR.$file)) === FALSE |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 358 | OR $mtime > $ts) |
| 359 | { |
| 360 | continue; |
| 361 | } |
| 362 | |
Andrey Andreev | dfb39be | 2014-10-06 01:50:14 +0300 | [diff] [blame] | 363 | unlink($this->_config['save_path'].DIRECTORY_SEPARATOR.$file); |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 364 | } |
| 365 | |
Andrey Andreev | 2f79f9a | 2015-03-26 12:52:05 +0200 | [diff] [blame] | 366 | closedir($directory); |
| 367 | |
Andrey Andreev | af84969 | 2015-12-12 14:07:39 +0200 | [diff] [blame] | 368 | return $this->_success; |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 369 | } |
| 370 | |
Andrey Andreev | af84969 | 2015-12-12 14:07:39 +0200 | [diff] [blame] | 371 | } |