blob: 0ec6e34f07673d8bd88dc2de2380ec22f4336fa0 [file] [log] [blame]
Andrey Andreev47a47fb2014-05-31 16:08:30 +03001<?php
2/**
3 * CodeIgniter
4 *
Andrey Andreevbf6b11d2015-01-12 17:27:12 +02005 * An open source application development framework for PHP
Andrey Andreev47a47fb2014-05-31 16:08:30 +03006 *
Andrey Andreev46f2f262014-11-11 14:37:51 +02007 * This content is released under the MIT License (MIT)
Andrey Andreev47a47fb2014-05-31 16:08:30 +03008 *
Andrey Andreevbf6b11d2015-01-12 17:27:12 +02009 * Copyright (c) 2014 - 2015, British Columbia Institute of Technology
Andrey Andreev47a47fb2014-05-31 16:08:30 +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 Andreev47a47fb2014-05-31 16:08:30 +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 Andreev47a47fb2014-05-31 16:08:30 +030031 * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (http://ellislab.com/)
Andrey Andreevbf6b11d2015-01-12 17:27:12 +020032 * @copyright Copyright (c) 2014 - 2015, British Columbia Institute of Technology (http://bcit.ca/)
Andrey Andreev46f2f262014-11-11 14:37:51 +020033 * @license http://opensource.org/licenses/MIT MIT License
34 * @link http://codeigniter.com
35 * @since Version 3.0.0
Andrey Andreev47a47fb2014-05-31 16:08:30 +030036 * @filesource
37 */
38defined('BASEPATH') OR exit('No direct script access allowed');
39
40/**
41 * CodeIgniter Session Database Driver
42 *
Andrey Andreev46f2f262014-11-11 14:37:51 +020043 * @package CodeIgniter
Andrey Andreev47a47fb2014-05-31 16:08:30 +030044 * @subpackage Libraries
45 * @category Sessions
Andrey Andreev46f2f262014-11-11 14:37:51 +020046 * @author Andrey Andreev
47 * @link http://codeigniter.com/user_guide/libraries/sessions.html
Andrey Andreev47a47fb2014-05-31 16:08:30 +030048 */
49class CI_Session_database_driver extends CI_Session_driver implements SessionHandlerInterface {
50
51 /**
52 * DB object
53 *
54 * @var object
55 */
56 protected $_db;
57
58 /**
Andrey Andreev47a47fb2014-05-31 16:08:30 +030059 * Row exists flag
60 *
61 * @var bool
62 */
63 protected $_row_exists = FALSE;
64
65 /**
66 * Lock "driver" flag
67 *
68 * @var string
69 */
Andrey Andreeve9ca0122015-01-15 17:42:17 +020070 protected $_platform;
Andrey Andreev47a47fb2014-05-31 16:08:30 +030071
72 // ------------------------------------------------------------------------
73
74 /**
75 * Class constructor
76 *
77 * @param array $params Configuration parameters
78 * @return void
79 */
80 public function __construct(&$params)
81 {
82 parent::__construct($params);
83
84 $CI =& get_instance();
85 isset($CI->db) OR $CI->load->database();
Andrey Andreev00c222d2015-01-29 18:14:31 +020086 $this->_db = $CI->db;
Andrey Andreev47a47fb2014-05-31 16:08:30 +030087
88 if ( ! $this->_db instanceof CI_DB_query_builder)
89 {
90 throw new Exception('Query Builder not enabled for the configured database. Aborting.');
91 }
92 elseif ($this->_db->pconnect)
93 {
94 throw new Exception('Configured database connection is persistent. Aborting.');
95 }
96
97 $db_driver = $this->_db->dbdriver.(empty($this->_db->subdriver) ? '' : '_'.$this->_db->subdriver);
98 if (strpos($db_driver, 'mysql') !== FALSE)
99 {
Andrey Andreeve9ca0122015-01-15 17:42:17 +0200100 $this->_platform = 'mysql';
Andrey Andreev47a47fb2014-05-31 16:08:30 +0300101 }
102 elseif (in_array($db_driver, array('postgre', 'pdo_pgsql'), TRUE))
103 {
Andrey Andreeve9ca0122015-01-15 17:42:17 +0200104 $this->_platform = 'postgre';
Andrey Andreev47a47fb2014-05-31 16:08:30 +0300105 }
Andrey Andreev47a47fb2014-05-31 16:08:30 +0300106
Andrey Andreev7f8eb362015-01-15 18:01:41 +0200107 // Note: BC work-around for the old 'sess_table_name' setting, should be removed in the future.
Andrey Andreevdfb39be2014-10-06 01:50:14 +0300108 isset($this->_config['save_path']) OR $this->_config['save_path'] = config_item('sess_table_name');
Andrey Andreev47a47fb2014-05-31 16:08:30 +0300109 }
110
111 // ------------------------------------------------------------------------
112
Andrey Andreev10411fc2015-01-19 13:54:53 +0200113 /**
114 * Open
115 *
116 * Initializes the database connection
117 *
118 * @param string $save_path Table name
119 * @param string $name Session cookie name, unused
120 * @return bool
121 */
Andrey Andreev47a47fb2014-05-31 16:08:30 +0300122 public function open($save_path, $name)
123 {
124 return empty($this->_db->conn_id)
125 ? ( ! $this->_db->autoinit && $this->_db->db_connect())
126 : TRUE;
127 }
128
129 // ------------------------------------------------------------------------
130
Andrey Andreev10411fc2015-01-19 13:54:53 +0200131 /**
132 * Read
133 *
134 * Reads session data and acquires a lock
135 *
136 * @param string $session_id Session ID
137 * @return string Serialized session data
138 */
Andrey Andreev47a47fb2014-05-31 16:08:30 +0300139 public function read($session_id)
140 {
Andrey Andreevd069b9b2014-09-16 10:18:16 +0300141 if ($this->_get_lock($session_id) !== FALSE)
Andrey Andreev47a47fb2014-05-31 16:08:30 +0300142 {
Andrey Andreev7474a672014-10-31 23:35:32 +0200143 // Needed by write() to detect session_regenerate_id() calls
144 $this->_session_id = $session_id;
145
Andrey Andreev47a47fb2014-05-31 16:08:30 +0300146 $this->_db
147 ->select('data')
Andrey Andreevdfb39be2014-10-06 01:50:14 +0300148 ->from($this->_config['save_path'])
Andrey Andreev47a47fb2014-05-31 16:08:30 +0300149 ->where('id', $session_id);
150
Andrey Andreevdfb39be2014-10-06 01:50:14 +0300151 if ($this->_config['match_ip'])
Andrey Andreev47a47fb2014-05-31 16:08:30 +0300152 {
153 $this->_db->where('ip_address', $_SERVER['REMOTE_ADDR']);
154 }
155
156 if (($result = $this->_db->get()->row()) === NULL)
157 {
158 $this->_fingerprint = md5('');
159 return '';
160 }
161
Andrey Andreeve9ca0122015-01-15 17:42:17 +0200162 // PostgreSQL's variant of a BLOB datatype is Bytea, which is a
163 // PITA to work with, so we use base64-encoded data in a TEXT
164 // field instead.
Andrey Andreevd0122552015-01-15 21:25:58 +0200165 $result = ($this->_platform === 'postgre')
166 ? base64_decode(rtrim($result->data))
167 : $result->data;
Andrey Andreeve9ca0122015-01-15 17:42:17 +0200168
Andrey Andreevd0122552015-01-15 21:25:58 +0200169 $this->_fingerprint = md5($result);
Andrey Andreev47a47fb2014-05-31 16:08:30 +0300170 $this->_row_exists = TRUE;
Andrey Andreev74009752015-01-15 21:36:25 +0200171 return $result;
Andrey Andreev47a47fb2014-05-31 16:08:30 +0300172 }
173
174 $this->_fingerprint = md5('');
175 return '';
176 }
177
Andrey Andreev10411fc2015-01-19 13:54:53 +0200178 // ------------------------------------------------------------------------
179
180 /**
181 * Write
182 *
183 * Writes (create / update) session data
184 *
185 * @param string $session_id Session ID
186 * @param string $session_data Serialized session data
187 * @return bool
188 */
Andrey Andreev47a47fb2014-05-31 16:08:30 +0300189 public function write($session_id, $session_data)
190 {
Andrey Andreev7474a672014-10-31 23:35:32 +0200191 // Was the ID regenerated?
Shakespeare2000305186d2014-11-02 11:28:47 +0100192 if ($session_id !== $this->_session_id)
Andrey Andreev7474a672014-10-31 23:35:32 +0200193 {
194 if ( ! $this->_release_lock() OR ! $this->_get_lock($session_id))
195 {
196 return FALSE;
197 }
198
199 $this->_row_exists = FALSE;
200 $this->_session_id = $session_id;
201 }
Shakespeare2000305186d2014-11-02 11:28:47 +0100202 elseif ($this->_lock === FALSE)
203 {
204 return FALSE;
205 }
Andrey Andreev47a47fb2014-05-31 16:08:30 +0300206
207 if ($this->_row_exists === FALSE)
208 {
Andrey Andreev5231d322015-01-19 02:29:49 +0200209 $insert_data = array(
210 'id' => $session_id,
211 'ip_address' => $_SERVER['REMOTE_ADDR'],
212 'timestamp' => time(),
213 'data' => ($this->_platform === 'postgre' ? base64_encode($session_data) : $session_data)
214 );
215
216 if ($this->_db->insert($this->_config['save_path'], $insert_data))
Andrey Andreev47a47fb2014-05-31 16:08:30 +0300217 {
218 $this->_fingerprint = md5($session_data);
219 return $this->_row_exists = TRUE;
220 }
221
222 return FALSE;
223 }
224
225 $this->_db->where('id', $session_id);
Andrey Andreevdfb39be2014-10-06 01:50:14 +0300226 if ($this->_config['match_ip'])
Andrey Andreev47a47fb2014-05-31 16:08:30 +0300227 {
228 $this->_db->where('ip_address', $_SERVER['REMOTE_ADDR']);
229 }
230
Andrey Andreevc33c3ad2015-01-19 10:54:21 +0200231 $update_data = array('timestamp' => time());
Andrey Andreev5231d322015-01-19 02:29:49 +0200232 if ($this->_fingerprint !== md5($session_data))
233 {
234 $update_data['data'] = ($this->_platform === 'postgre')
235 ? base64_encode($session_data)
236 : $session_data;
237 }
Andrey Andreev47a47fb2014-05-31 16:08:30 +0300238
Andrey Andreevdfb39be2014-10-06 01:50:14 +0300239 if ($this->_db->update($this->_config['save_path'], $update_data))
Andrey Andreev47a47fb2014-05-31 16:08:30 +0300240 {
241 $this->_fingerprint = md5($session_data);
242 return TRUE;
243 }
244
245 return FALSE;
246 }
247
248 // ------------------------------------------------------------------------
249
Andrey Andreev10411fc2015-01-19 13:54:53 +0200250 /**
251 * Close
252 *
253 * Releases locks
254 *
255 * @return void
256 */
Andrey Andreev47a47fb2014-05-31 16:08:30 +0300257 public function close()
258 {
259 return ($this->_lock)
260 ? $this->_release_lock()
261 : TRUE;
262 }
263
264 // ------------------------------------------------------------------------
265
Andrey Andreev10411fc2015-01-19 13:54:53 +0200266 /**
267 * Destroy
268 *
269 * Destroys the current session.
270 *
271 * @param string $session_id Session ID
272 * @return bool
273 */
Andrey Andreev47a47fb2014-05-31 16:08:30 +0300274 public function destroy($session_id)
275 {
276 if ($this->_lock)
277 {
278 $this->_db->where('id', $session_id);
Andrey Andreevdfb39be2014-10-06 01:50:14 +0300279 if ($this->_config['match_ip'])
Andrey Andreev47a47fb2014-05-31 16:08:30 +0300280 {
281 $this->_db->where('ip_address', $_SERVER['REMOTE_ADDR']);
282 }
283
Andrey Andreevdfb39be2014-10-06 01:50:14 +0300284 return $this->_db->delete($this->_config['save_path'])
Andrey Andreev47a47fb2014-05-31 16:08:30 +0300285 ? ($this->close() && $this->_cookie_destroy())
286 : FALSE;
287 }
288
289 return ($this->close() && $this->_cookie_destroy());
290 }
291
292 // ------------------------------------------------------------------------
293
Andrey Andreev10411fc2015-01-19 13:54:53 +0200294 /**
295 * Garbage Collector
296 *
297 * Deletes expired sessions
298 *
299 * @param int $maxlifetime Maximum lifetime of sessions
300 * @return bool
301 */
Andrey Andreev47a47fb2014-05-31 16:08:30 +0300302 public function gc($maxlifetime)
303 {
Andrey Andreevdfb39be2014-10-06 01:50:14 +0300304 return $this->_db->delete($this->_config['save_path'], 'timestamp < '.(time() - $maxlifetime));
Andrey Andreev47a47fb2014-05-31 16:08:30 +0300305 }
306
307 // ------------------------------------------------------------------------
308
Andrey Andreev10411fc2015-01-19 13:54:53 +0200309 /**
310 * Get lock
311 *
312 * Acquires a lock, depending on the underlying platform.
313 *
314 * @param string $session_id Session ID
315 * @return bool
316 */
Andrey Andreev93d9fa72014-08-27 22:14:36 +0300317 protected function _get_lock($session_id)
Andrey Andreev47a47fb2014-05-31 16:08:30 +0300318 {
Andrey Andreeve9ca0122015-01-15 17:42:17 +0200319 if ($this->_platform === 'mysql')
Andrey Andreev47a47fb2014-05-31 16:08:30 +0300320 {
Andrey Andreevdfb39be2014-10-06 01:50:14 +0300321 $arg = $session_id.($this->_config['match_ip'] ? '_'.$_SERVER['REMOTE_ADDR'] : '');
Andrey Andreev93d9fa72014-08-27 22:14:36 +0300322 if ($this->_db->query("SELECT GET_LOCK('".$arg."', 10) AS ci_session_lock")->row()->ci_session_lock)
323 {
324 $this->_lock = $arg;
325 return TRUE;
326 }
327
328 return FALSE;
Andrey Andreev47a47fb2014-05-31 16:08:30 +0300329 }
Andrey Andreeve9ca0122015-01-15 17:42:17 +0200330 elseif ($this->_platform === 'postgre')
Andrey Andreev47a47fb2014-05-31 16:08:30 +0300331 {
Andrey Andreevdfb39be2014-10-06 01:50:14 +0300332 $arg = "hashtext('".$session_id."')".($this->_config['match_ip'] ? ", hashtext('".$_SERVER['REMOTE_ADDR']."')" : '');
Andrey Andreev93d9fa72014-08-27 22:14:36 +0300333 if ($this->_db->simple_query('SELECT pg_advisory_lock('.$arg.')'))
Andrey Andreev47a47fb2014-05-31 16:08:30 +0300334 {
Andrey Andreev93d9fa72014-08-27 22:14:36 +0300335 $this->_lock = $arg;
336 return TRUE;
Andrey Andreev47a47fb2014-05-31 16:08:30 +0300337 }
338
Andrey Andreev93d9fa72014-08-27 22:14:36 +0300339 return FALSE;
Andrey Andreev47a47fb2014-05-31 16:08:30 +0300340 }
341
Andrey Andreev93d9fa72014-08-27 22:14:36 +0300342 return parent::_get_lock($session_id);
Andrey Andreev47a47fb2014-05-31 16:08:30 +0300343 }
344
345 // ------------------------------------------------------------------------
346
Andrey Andreev10411fc2015-01-19 13:54:53 +0200347 /**
348 * Release lock
349 *
350 * Releases a previously acquired lock
351 *
352 * @return bool
353 */
Andrey Andreev47a47fb2014-05-31 16:08:30 +0300354 protected function _release_lock()
355 {
Andrey Andreev93d9fa72014-08-27 22:14:36 +0300356 if ( ! $this->_lock)
357 {
358 return TRUE;
359 }
360
Andrey Andreeve9ca0122015-01-15 17:42:17 +0200361 if ($this->_platform === 'mysql')
Andrey Andreev47a47fb2014-05-31 16:08:30 +0300362 {
Andrey Andreev93d9fa72014-08-27 22:14:36 +0300363 if ($this->_db->query("SELECT RELEASE_LOCK('".$this->_lock."') AS ci_session_lock")->row()->ci_session_lock)
364 {
365 $this->_lock = FALSE;
366 return TRUE;
367 }
Andrey Andreev47a47fb2014-05-31 16:08:30 +0300368
Andrey Andreev93d9fa72014-08-27 22:14:36 +0300369 return FALSE;
Andrey Andreev47a47fb2014-05-31 16:08:30 +0300370 }
Andrey Andreeve9ca0122015-01-15 17:42:17 +0200371 elseif ($this->_platform === 'postgre')
Andrey Andreev47a47fb2014-05-31 16:08:30 +0300372 {
Andrey Andreev93d9fa72014-08-27 22:14:36 +0300373 if ($this->_db->simple_query('SELECT pg_advisory_unlock('.$this->_lock.')'))
374 {
375 $this->_lock = FALSE;
376 return TRUE;
377 }
Andrey Andreev47a47fb2014-05-31 16:08:30 +0300378
Andrey Andreev93d9fa72014-08-27 22:14:36 +0300379 return FALSE;
Andrey Andreev47a47fb2014-05-31 16:08:30 +0300380 }
381
Andrey Andreev93d9fa72014-08-27 22:14:36 +0300382 return parent::_release_lock();
Andrey Andreev47a47fb2014-05-31 16:08:30 +0300383 }
384
385}