Subversion-Projekte lars-tiefland.ci

Revision

Revision 2049 | Zur aktuellen Revision | Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
68 lars 1
<?php
2
/**
3
 * CodeIgniter
4
 *
5
 * An open source application development framework for PHP
6
 *
7
 * This content is released under the MIT License (MIT)
8
 *
9
 * Copyright (c) 2014 - 2016, British Columbia Institute of Technology
10
 *
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:
17
 *
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
31
 * @copyright	Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
32
 * @copyright	Copyright (c) 2014 - 2016, British Columbia Institute of Technology (http://bcit.ca/)
33
 * @license	http://opensource.org/licenses/MIT	MIT License
34
 * @link	https://codeigniter.com
35
 * @since	Version 3.0.0
36
 * @filesource
37
 */
38
defined('BASEPATH') OR exit('No direct script access allowed');
39
 
40
/**
41
 * CodeIgniter Session Redis Driver
42
 *
43
 * @package	CodeIgniter
44
 * @subpackage	Libraries
45
 * @category	Sessions
46
 * @author	Andrey Andreev
47
 * @link	https://codeigniter.com/user_guide/libraries/sessions.html
48
 */
49
class CI_Session_redis_driver extends CI_Session_driver implements SessionHandlerInterface {
50
 
51
	/**
52
	 * phpRedis instance
53
	 *
54
	 * @var	resource
55
	 */
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
 
72
	/**
73
	 * Key exists flag
74
	 *
75
	 * @var bool
76
	 */
77
	protected $_key_exists = FALSE;
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
 
91
		if (empty($this->_config['save_path']))
92
		{
93
			log_message('error', 'Session: No Redis save path configured.');
94
		}
95
		elseif (preg_match('#(?:tcp://)?([^:?]+)(?:\:(\d+))?(\?.+)?#', $this->_config['save_path'], $matches))
96
		{
97
			isset($matches[3]) OR $matches[3] = ''; // Just to avoid undefined index notices below
98
			$this->_config['save_path'] = array(
99
				'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
		{
110
			log_message('error', 'Session: Invalid Redis save path format: '.$this->_config['save_path']);
111
		}
112
 
113
		if ($this->_config['match_ip'] === TRUE)
114
		{
115
			$this->_key_prefix .= $_SERVER['REMOTE_ADDR'].':';
116
		}
117
	}
118
 
119
	// ------------------------------------------------------------------------
120
 
121
	/**
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
	 */
130
	public function open($save_path, $name)
131
	{
132
		if (empty($this->_config['save_path']))
133
		{
134
			return $this->_fail();
135
		}
136
 
137
		$redis = new Redis();
138
		if ( ! $redis->connect($this->_config['save_path']['host'], $this->_config['save_path']['port'], $this->_config['save_path']['timeout']))
139
		{
140
			log_message('error', 'Session: Unable to connect to Redis with the configured settings.');
141
		}
142
		elseif (isset($this->_config['save_path']['password']) && ! $redis->auth($this->_config['save_path']['password']))
143
		{
144
			log_message('error', 'Session: Unable to authenticate to Redis instance.');
145
		}
146
		elseif (isset($this->_config['save_path']['database']) && ! $redis->select($this->_config['save_path']['database']))
147
		{
148
			log_message('error', 'Session: Unable to select Redis database with index '.$this->_config['save_path']['database']);
149
		}
150
		else
151
		{
152
			$this->_redis = $redis;
153
			return $this->_success;
154
		}
155
 
156
		return $this->_fail();
157
	}
158
 
159
	// ------------------------------------------------------------------------
160
 
161
	/**
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
	 */
169
	public function read($session_id)
170
	{
171
		if (isset($this->_redis) && $this->_get_lock($session_id))
172
		{
173
			// Needed by write() to detect session_regenerate_id() calls
174
			$this->_session_id = $session_id;
175
 
176
			$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
 
182
			$this->_fingerprint = md5($session_data);
183
			return $session_data;
184
		}
185
 
186
		return $this->_fail();
187
	}
188
 
189
	// ------------------------------------------------------------------------
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
	 */
200
	public function write($session_id, $session_data)
201
	{
202
		if ( ! isset($this->_redis))
203
		{
204
			return $this->_fail();
205
		}
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
			{
211
				return $this->_fail();
212
			}
213
 
214
			$this->_key_exists = FALSE;
215
			$this->_session_id = $session_id;
216
		}
217
 
218
		if (isset($this->_lock_key))
219
		{
220
			$this->_redis->setTimeout($this->_lock_key, 300);
221
			if ($this->_fingerprint !== ($fingerprint = md5($session_data)) OR $this->_key_exists === FALSE)
222
			{
223
				if ($this->_redis->set($this->_key_prefix.$session_id, $session_data, $this->_config['expiration']))
224
				{
225
					$this->_fingerprint = $fingerprint;
226
					$this->_key_exists = TRUE;
227
					return $this->_success;
228
				}
229
 
230
				return $this->_fail();
231
			}
232
 
233
			return ($this->_redis->setTimeout($this->_key_prefix.$session_id, $this->_config['expiration']))
234
				? $this->_success
235
				: $this->_fail();
236
		}
237
 
238
		return $this->_fail();
239
	}
240
 
241
	// ------------------------------------------------------------------------
242
 
243
	/**
244
	 * Close
245
	 *
246
	 * Releases locks and closes connection.
247
	 *
248
	 * @return	bool
249
	 */
250
	public function close()
251
	{
252
		if (isset($this->_redis))
253
		{
254
			try {
255
				if ($this->_redis->ping() === '+PONG')
256
				{
257
					$this->_release_lock();
258
					if ($this->_redis->close() === FALSE)
259
					{
260
						return $this->_fail();
261
					}
262
				}
263
			}
264
			catch (RedisException $e)
265
			{
266
				log_message('error', 'Session: Got RedisException on close(): '.$e->getMessage());
267
			}
268
 
269
			$this->_redis = NULL;
270
			return $this->_success;
271
		}
272
 
273
		return $this->_success;
274
	}
275
 
276
	// ------------------------------------------------------------------------
277
 
278
	/**
279
	 * Destroy
280
	 *
281
	 * Destroys the current session.
282
	 *
283
	 * @param	string	$session_id	Session ID
284
	 * @return	bool
285
	 */
286
	public function destroy($session_id)
287
	{
288
		if (isset($this->_redis, $this->_lock_key))
289
		{
290
			if (($result = $this->_redis->delete($this->_key_prefix.$session_id)) !== 1)
291
			{
292
				log_message('debug', 'Session: Redis::delete() expected to return 1, got '.var_export($result, TRUE).' instead.');
293
			}
294
 
295
			$this->_cookie_destroy();
296
			return $this->_success;
297
		}
298
 
299
		return $this->_fail();
300
	}
301
 
302
	// ------------------------------------------------------------------------
303
 
304
	/**
305
	 * Garbage Collector
306
	 *
307
	 * Deletes expired sessions
308
	 *
309
	 * @param	int 	$maxlifetime	Maximum lifetime of sessions
310
	 * @return	bool
311
	 */
312
	public function gc($maxlifetime)
313
	{
314
		// Not necessary, Redis takes care of that.
315
		return $this->_success;
316
	}
317
 
318
	// ------------------------------------------------------------------------
319
 
320
	/**
321
	 * Get lock
322
	 *
323
	 * Acquires an (emulated) lock.
324
	 *
325
	 * @param	string	$session_id	Session ID
326
	 * @return	bool
327
	 */
328
	protected function _get_lock($session_id)
329
	{
330
		// PHP 7 reuses the SessionHandler object on regeneration,
331
		// so we need to check here if the lock key is for the
332
		// correct session ID.
333
		if ($this->_lock_key === $this->_key_prefix.$session_id.':lock')
334
		{
335
			return $this->_redis->setTimeout($this->_lock_key, 300);
336
		}
337
 
338
		// 30 attempts to obtain a lock, in case another request already has it
339
		$lock_key = $this->_key_prefix.$session_id.':lock';
340
		$attempt = 0;
341
		do
342
		{
343
			if (($ttl = $this->_redis->ttl($lock_key)) > 0)
344
			{
345
				sleep(1);
346
				continue;
347
			}
348
 
349
			if ( ! $this->_redis->setex($lock_key, 300, time()))
350
			{
351
				log_message('error', 'Session: Error while trying to obtain lock for '.$this->_key_prefix.$session_id);
352
				return FALSE;
353
			}
354
 
355
			$this->_lock_key = $lock_key;
356
			break;
357
		}
358
		while (++$attempt < 30);
359
 
360
		if ($attempt === 30)
361
		{
362
			log_message('error', 'Session: Unable to obtain lock for '.$this->_key_prefix.$session_id.' after 30 attempts, aborting.');
363
			return FALSE;
364
		}
365
		elseif ($ttl === -1)
366
		{
367
			log_message('debug', 'Session: Lock for '.$this->_key_prefix.$session_id.' had no TTL, overriding.');
368
		}
369
 
370
		$this->_lock = TRUE;
371
		return TRUE;
372
	}
373
 
374
	// ------------------------------------------------------------------------
375
 
376
	/**
377
	 * Release lock
378
	 *
379
	 * Releases a previously acquired lock
380
	 *
381
	 * @return	bool
382
	 */
383
	protected function _release_lock()
384
	{
385
		if (isset($this->_redis, $this->_lock_key) && $this->_lock)
386
		{
387
			if ( ! $this->_redis->delete($this->_lock_key))
388
			{
389
				log_message('error', 'Session: Error while trying to free lock for '.$this->_lock_key);
390
				return FALSE;
391
			}
392
 
393
			$this->_lock_key = NULL;
394
			$this->_lock = FALSE;
395
		}
396
 
397
		return TRUE;
398
	}
399
 
400
}