blob: 413c30d6754cdc0a4765e7ceb4f70ce0626cbfa9 [file] [log] [blame]
Andrey Andreev43f6cdb2014-08-27 22:26:40 +03001<?php
2/**
3 * CodeIgniter
4 *
Andrey Andreevbf6b11d2015-01-12 17:27:12 +02005 * An open source application development framework for PHP
Andrey Andreev43f6cdb2014-08-27 22:26:40 +03006 *
Andrey Andreev46f2f262014-11-11 14:37:51 +02007 * This content is released under the MIT License (MIT)
Andrey Andreev43f6cdb2014-08-27 22:26:40 +03008 *
Andrey Andreevcce6bd12018-01-09 11:32:02 +02009 * Copyright (c) 2014 - 2018, British Columbia Institute of Technology
Andrey Andreev43f6cdb2014-08-27 22:26:40 +030010 *
Andrey Andreev46f2f262014-11-11 14:37:51 +020011 * 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 Andreev43f6cdb2014-08-27 22:26:40 +030017 *
Andrey Andreev46f2f262014-11-11 14:37:51 +020018 * 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 Andreev1924e872016-01-11 12:55:34 +020031 * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
Andrey Andreevcce6bd12018-01-09 11:32:02 +020032 * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
Andrey Andreev46f2f262014-11-11 14:37:51 +020033 * @license http://opensource.org/licenses/MIT MIT License
Andrey Andreevbd202c92016-01-11 12:50:18 +020034 * @link https://codeigniter.com
Andrey Andreev46f2f262014-11-11 14:37:51 +020035 * @since Version 3.0.0
Andrey Andreev43f6cdb2014-08-27 22:26:40 +030036 * @filesource
37 */
38defined('BASEPATH') OR exit('No direct script access allowed');
39
40/**
41 * CodeIgniter Session Redis Driver
42 *
Andrey Andreev46f2f262014-11-11 14:37:51 +020043 * @package CodeIgniter
Andrey Andreev43f6cdb2014-08-27 22:26:40 +030044 * @subpackage Libraries
45 * @category Sessions
Andrey Andreev46f2f262014-11-11 14:37:51 +020046 * @author Andrey Andreev
Andrey Andreevbd202c92016-01-11 12:50:18 +020047 * @link https://codeigniter.com/user_guide/libraries/sessions.html
Andrey Andreev43f6cdb2014-08-27 22:26:40 +030048 */
49class CI_Session_redis_driver extends CI_Session_driver implements SessionHandlerInterface {
50
51 /**
Andrey Andreev43f6cdb2014-08-27 22:26:40 +030052 * phpRedis instance
53 *
Andrey Andreevee9d4282017-06-05 10:44:37 +030054 * @var Redis
Andrey Andreev43f6cdb2014-08-27 22:26:40 +030055 */
56 protected $_redis;
57
58 /**
59 * Key prefix
60 *
61 * @var string
62 */
63 protected $_key_prefix = 'ci_session:';
64
65 /**
66 * Lock key
67 *
68 * @var string
69 */
70 protected $_lock_key;
71
Andrey Andreev173cf412016-02-05 14:36:50 +020072 /**
73 * Key exists flag
74 *
75 * @var bool
76 */
77 protected $_key_exists = FALSE;
78
Andrey Andreev43f6cdb2014-08-27 22:26:40 +030079 // ------------------------------------------------------------------------
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 Andreevdfb39be2014-10-06 01:50:14 +030091 if (empty($this->_config['save_path']))
Andrey Andreev43f6cdb2014-08-27 22:26:40 +030092 {
93 log_message('error', 'Session: No Redis save path configured.');
94 }
Andrey Andreevdfb39be2014-10-06 01:50:14 +030095 elseif (preg_match('#(?:tcp://)?([^:?]+)(?:\:(\d+))?(\?.+)?#', $this->_config['save_path'], $matches))
Andrey Andreev43f6cdb2014-08-27 22:26:40 +030096 {
Andrey Andreev39ec2952014-09-17 14:16:05 +030097 isset($matches[3]) OR $matches[3] = ''; // Just to avoid undefined index notices below
Andrey Andreevdfb39be2014-10-06 01:50:14 +030098 $this->_config['save_path'] = array(
Andrey Andreev43f6cdb2014-08-27 22:26:40 +030099 'host' => $matches[1],
100 'port' => empty($matches[2]) ? NULL : $matches[2],
101 'password' => preg_match('#auth=([^\s&]+)#', $matches[3], $match) ? $match[1] : NULL,
102 'database' => preg_match('#database=(\d+)#', $matches[3], $match) ? (int) $match[1] : NULL,
103 'timeout' => preg_match('#timeout=(\d+\.\d+)#', $matches[3], $match) ? (float) $match[1] : NULL
104 );
105
106 preg_match('#prefix=([^\s&]+)#', $matches[3], $match) && $this->_key_prefix = $match[1];
107 }
108 else
109 {
Andrey Andreevdfb39be2014-10-06 01:50:14 +0300110 log_message('error', 'Session: Invalid Redis save path format: '.$this->_config['save_path']);
Andrey Andreev43f6cdb2014-08-27 22:26:40 +0300111 }
112
Andrey Andreevdfb39be2014-10-06 01:50:14 +0300113 if ($this->_config['match_ip'] === TRUE)
Andrey Andreev43f6cdb2014-08-27 22:26:40 +0300114 {
115 $this->_key_prefix .= $_SERVER['REMOTE_ADDR'].':';
116 }
117 }
118
119 // ------------------------------------------------------------------------
120
Andrey Andreev10411fc2015-01-19 13:54:53 +0200121 /**
122 * Open
123 *
124 * Sanitizes save_path and initializes connection.
125 *
126 * @param string $save_path Server path
127 * @param string $name Session cookie name, unused
128 * @return bool
129 */
Andrey Andreev43f6cdb2014-08-27 22:26:40 +0300130 public function open($save_path, $name)
131 {
Andrey Andreevdfb39be2014-10-06 01:50:14 +0300132 if (empty($this->_config['save_path']))
Andrey Andreev43f6cdb2014-08-27 22:26:40 +0300133 {
Andrey Andreeva027a7f2016-03-10 13:59:20 +0200134 return $this->_fail();
Andrey Andreev43f6cdb2014-08-27 22:26:40 +0300135 }
136
137 $redis = new Redis();
Andrey Andreevdfb39be2014-10-06 01:50:14 +0300138 if ( ! $redis->connect($this->_config['save_path']['host'], $this->_config['save_path']['port'], $this->_config['save_path']['timeout']))
Andrey Andreev43f6cdb2014-08-27 22:26:40 +0300139 {
140 log_message('error', 'Session: Unable to connect to Redis with the configured settings.');
141 }
Andrey Andreevdfb39be2014-10-06 01:50:14 +0300142 elseif (isset($this->_config['save_path']['password']) && ! $redis->auth($this->_config['save_path']['password']))
Andrey Andreev43f6cdb2014-08-27 22:26:40 +0300143 {
144 log_message('error', 'Session: Unable to authenticate to Redis instance.');
145 }
Andrey Andreevdfb39be2014-10-06 01:50:14 +0300146 elseif (isset($this->_config['save_path']['database']) && ! $redis->select($this->_config['save_path']['database']))
Andrey Andreev43f6cdb2014-08-27 22:26:40 +0300147 {
Andrey Andreevdfb39be2014-10-06 01:50:14 +0300148 log_message('error', 'Session: Unable to select Redis database with index '.$this->_config['save_path']['database']);
Andrey Andreev43f6cdb2014-08-27 22:26:40 +0300149 }
150 else
151 {
152 $this->_redis = $redis;
Andrey Andreevaf849692015-12-12 14:07:39 +0200153 return $this->_success;
Andrey Andreev43f6cdb2014-08-27 22:26:40 +0300154 }
155
Andrey Andreeva027a7f2016-03-10 13:59:20 +0200156 return $this->_fail();
Andrey Andreev43f6cdb2014-08-27 22:26:40 +0300157 }
158
159 // ------------------------------------------------------------------------
160
Andrey Andreev10411fc2015-01-19 13:54:53 +0200161 /**
162 * Read
163 *
164 * Reads session data and acquires a lock
165 *
166 * @param string $session_id Session ID
167 * @return string Serialized session data
168 */
Andrey Andreev43f6cdb2014-08-27 22:26:40 +0300169 public function read($session_id)
170 {
171 if (isset($this->_redis) && $this->_get_lock($session_id))
172 {
Andrey Andreev7474a672014-10-31 23:35:32 +0200173 // Needed by write() to detect session_regenerate_id() calls
174 $this->_session_id = $session_id;
175
Andrey Andreev173cf412016-02-05 14:36:50 +0200176 $session_data = $this->_redis->get($this->_key_prefix.$session_id);
177
178 is_string($session_data)
179 ? $this->_key_exists = TRUE
180 : $session_data = '';
181
Andrey Andreev43f6cdb2014-08-27 22:26:40 +0300182 $this->_fingerprint = md5($session_data);
183 return $session_data;
184 }
185
Andrey Andreeva027a7f2016-03-10 13:59:20 +0200186 return $this->_fail();
Andrey Andreev43f6cdb2014-08-27 22:26:40 +0300187 }
188
Andrey Andreev10411fc2015-01-19 13:54:53 +0200189 // ------------------------------------------------------------------------
190
191 /**
192 * Write
193 *
194 * Writes (create / update) session data
195 *
196 * @param string $session_id Session ID
197 * @param string $session_data Serialized session data
198 * @return bool
199 */
Andrey Andreev43f6cdb2014-08-27 22:26:40 +0300200 public function write($session_id, $session_data)
201 {
Andrey Andreev62769262016-11-29 15:30:30 +0200202 if ( ! isset($this->_redis, $this->_lock_key))
Andrey Andreev7474a672014-10-31 23:35:32 +0200203 {
Andrey Andreeva027a7f2016-03-10 13:59:20 +0200204 return $this->_fail();
Andrey Andreev7474a672014-10-31 23:35:32 +0200205 }
206 // Was the ID regenerated?
207 elseif ($session_id !== $this->_session_id)
208 {
209 if ( ! $this->_release_lock() OR ! $this->_get_lock($session_id))
210 {
Andrey Andreeva027a7f2016-03-10 13:59:20 +0200211 return $this->_fail();
Andrey Andreev7474a672014-10-31 23:35:32 +0200212 }
213
Andrey Andreev173cf412016-02-05 14:36:50 +0200214 $this->_key_exists = FALSE;
Andrey Andreev7474a672014-10-31 23:35:32 +0200215 $this->_session_id = $session_id;
216 }
217
Andrey Andreev62769262016-11-29 15:30:30 +0200218 $this->_redis->setTimeout($this->_lock_key, 300);
219 if ($this->_fingerprint !== ($fingerprint = md5($session_data)) OR $this->_key_exists === FALSE)
Andrey Andreev43f6cdb2014-08-27 22:26:40 +0300220 {
Andrey Andreev62769262016-11-29 15:30:30 +0200221 if ($this->_redis->set($this->_key_prefix.$session_id, $session_data, $this->_config['expiration']))
Andrey Andreev43f6cdb2014-08-27 22:26:40 +0300222 {
Andrey Andreev62769262016-11-29 15:30:30 +0200223 $this->_fingerprint = $fingerprint;
224 $this->_key_exists = TRUE;
225 return $this->_success;
Andrey Andreev43f6cdb2014-08-27 22:26:40 +0300226 }
227
Andrey Andreev62769262016-11-29 15:30:30 +0200228 return $this->_fail();
Andrey Andreev43f6cdb2014-08-27 22:26:40 +0300229 }
230
Andrey Andreev62769262016-11-29 15:30:30 +0200231 return ($this->_redis->setTimeout($this->_key_prefix.$session_id, $this->_config['expiration']))
232 ? $this->_success
233 : $this->_fail();
Andrey Andreev43f6cdb2014-08-27 22:26:40 +0300234 }
235
236 // ------------------------------------------------------------------------
237
Andrey Andreev10411fc2015-01-19 13:54:53 +0200238 /**
239 * Close
240 *
241 * Releases locks and closes connection.
242 *
Gabriel Potkány1fb50002015-02-04 01:45:59 +0100243 * @return bool
Andrey Andreev10411fc2015-01-19 13:54:53 +0200244 */
Andrey Andreev43f6cdb2014-08-27 22:26:40 +0300245 public function close()
246 {
247 if (isset($this->_redis))
248 {
249 try {
250 if ($this->_redis->ping() === '+PONG')
251 {
Andrey Andreevf06858c2016-02-29 17:35:12 +0200252 $this->_release_lock();
Andrey Andreevd6807792016-05-26 10:28:04 +0300253 if ($this->_redis->close() === FALSE)
Andrey Andreev43f6cdb2014-08-27 22:26:40 +0300254 {
Andrey Andreeva027a7f2016-03-10 13:59:20 +0200255 return $this->_fail();
Andrey Andreev43f6cdb2014-08-27 22:26:40 +0300256 }
257 }
258 }
259 catch (RedisException $e)
260 {
261 log_message('error', 'Session: Got RedisException on close(): '.$e->getMessage());
262 }
263
264 $this->_redis = NULL;
Andrey Andreevaf849692015-12-12 14:07:39 +0200265 return $this->_success;
Andrey Andreev43f6cdb2014-08-27 22:26:40 +0300266 }
267
Andrey Andreevaf849692015-12-12 14:07:39 +0200268 return $this->_success;
Andrey Andreev43f6cdb2014-08-27 22:26:40 +0300269 }
270
271 // ------------------------------------------------------------------------
272
Andrey Andreev10411fc2015-01-19 13:54:53 +0200273 /**
274 * Destroy
275 *
276 * Destroys the current session.
277 *
278 * @param string $session_id Session ID
279 * @return bool
280 */
Andrey Andreev43f6cdb2014-08-27 22:26:40 +0300281 public function destroy($session_id)
282 {
283 if (isset($this->_redis, $this->_lock_key))
284 {
Andrey Andreevabc8f002015-02-23 08:38:06 +0200285 if (($result = $this->_redis->delete($this->_key_prefix.$session_id)) !== 1)
Andrey Andreev43f6cdb2014-08-27 22:26:40 +0300286 {
287 log_message('debug', 'Session: Redis::delete() expected to return 1, got '.var_export($result, TRUE).' instead.');
288 }
289
Andrey Andreevaf849692015-12-12 14:07:39 +0200290 $this->_cookie_destroy();
291 return $this->_success;
Andrey Andreev43f6cdb2014-08-27 22:26:40 +0300292 }
293
Andrey Andreeva027a7f2016-03-10 13:59:20 +0200294 return $this->_fail();
Andrey Andreev43f6cdb2014-08-27 22:26:40 +0300295 }
296
297 // ------------------------------------------------------------------------
298
Andrey Andreev10411fc2015-01-19 13:54:53 +0200299 /**
300 * Garbage Collector
301 *
302 * Deletes expired sessions
303 *
304 * @param int $maxlifetime Maximum lifetime of sessions
305 * @return bool
306 */
Andrey Andreev43f6cdb2014-08-27 22:26:40 +0300307 public function gc($maxlifetime)
308 {
Andrey Andreev7474a672014-10-31 23:35:32 +0200309 // Not necessary, Redis takes care of that.
Andrey Andreevaf849692015-12-12 14:07:39 +0200310 return $this->_success;
Andrey Andreev43f6cdb2014-08-27 22:26:40 +0300311 }
312
313 // ------------------------------------------------------------------------
314
Andrey Andreev10411fc2015-01-19 13:54:53 +0200315 /**
316 * Get lock
317 *
318 * Acquires an (emulated) lock.
319 *
320 * @param string $session_id Session ID
321 * @return bool
322 */
Andrey Andreev43f6cdb2014-08-27 22:26:40 +0300323 protected function _get_lock($session_id)
324 {
Andrey Andreev79b8a082016-01-07 13:55:21 +0200325 // PHP 7 reuses the SessionHandler object on regeneration,
326 // so we need to check here if the lock key is for the
327 // correct session ID.
328 if ($this->_lock_key === $this->_key_prefix.$session_id.':lock')
Andrey Andreev43f6cdb2014-08-27 22:26:40 +0300329 {
Andrey Andreeve1a5bb32015-03-04 13:33:39 +0200330 return $this->_redis->setTimeout($this->_lock_key, 300);
Andrey Andreev43f6cdb2014-08-27 22:26:40 +0300331 }
332
Andrey Andreeve1a5bb32015-03-04 13:33:39 +0200333 // 30 attempts to obtain a lock, in case another request already has it
Andrey Andreev43f6cdb2014-08-27 22:26:40 +0300334 $lock_key = $this->_key_prefix.$session_id.':lock';
Andrey Andreev43f6cdb2014-08-27 22:26:40 +0300335 $attempt = 0;
Andrey Andreeve1a5bb32015-03-04 13:33:39 +0200336 do
Andrey Andreev43f6cdb2014-08-27 22:26:40 +0300337 {
Andrey Andreev43f6cdb2014-08-27 22:26:40 +0300338 if (($ttl = $this->_redis->ttl($lock_key)) > 0)
339 {
Andrey Andreeve1a5bb32015-03-04 13:33:39 +0200340 sleep(1);
Andrey Andreev43f6cdb2014-08-27 22:26:40 +0300341 continue;
342 }
343
Andrey Andreevfdf4b592017-07-06 11:49:13 +0300344 $result = ($ttl === -2)
345 ? $this->_redis->set($lock_key, time(), array('nx', 'ex' => 300))
346 : $this->_redis->setex($lock_key, 300, time());
347
348 if ( ! $result)
Andrey Andreev43f6cdb2014-08-27 22:26:40 +0300349 {
350 log_message('error', 'Session: Error while trying to obtain lock for '.$this->_key_prefix.$session_id);
351 return FALSE;
352 }
353
354 $this->_lock_key = $lock_key;
355 break;
356 }
Andrey Andreev73b9e852015-04-30 13:06:40 +0300357 while (++$attempt < 30);
Andrey Andreev43f6cdb2014-08-27 22:26:40 +0300358
Andrey Andreeve1a5bb32015-03-04 13:33:39 +0200359 if ($attempt === 30)
Andrey Andreev43f6cdb2014-08-27 22:26:40 +0300360 {
Andrey Andreeve1a5bb32015-03-04 13:33:39 +0200361 log_message('error', 'Session: Unable to obtain lock for '.$this->_key_prefix.$session_id.' after 30 attempts, aborting.');
Andrey Andreev43f6cdb2014-08-27 22:26:40 +0300362 return FALSE;
363 }
Andrey Andreeve1a5bb32015-03-04 13:33:39 +0200364 elseif ($ttl === -1)
365 {
366 log_message('debug', 'Session: Lock for '.$this->_key_prefix.$session_id.' had no TTL, overriding.');
367 }
Andrey Andreev43f6cdb2014-08-27 22:26:40 +0300368
369 $this->_lock = TRUE;
370 return TRUE;
371 }
372
373 // ------------------------------------------------------------------------
374
Andrey Andreev10411fc2015-01-19 13:54:53 +0200375 /**
376 * Release lock
377 *
378 * Releases a previously acquired lock
379 *
380 * @return bool
381 */
Andrey Andreev43f6cdb2014-08-27 22:26:40 +0300382 protected function _release_lock()
383 {
384 if (isset($this->_redis, $this->_lock_key) && $this->_lock)
385 {
386 if ( ! $this->_redis->delete($this->_lock_key))
387 {
Andrey Andreev00025882015-02-11 16:23:46 +0200388 log_message('error', 'Session: Error while trying to free lock for '.$this->_lock_key);
Andrey Andreev43f6cdb2014-08-27 22:26:40 +0300389 return FALSE;
390 }
391
392 $this->_lock_key = NULL;
393 $this->_lock = FALSE;
394 }
395
396 return TRUE;
397 }
398
399}