Session_database_driver.php 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445
  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 - 2019, 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 - 2019, British Columbia Institute of Technology (https://bcit.ca/)
  33. * @license https://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. * CodeIgniter Session Database Driver
  41. *
  42. * @package CodeIgniter
  43. * @subpackage Libraries
  44. * @category Sessions
  45. * @author Andrey Andreev
  46. * @link https://codeigniter.com/user_guide/libraries/sessions.html
  47. */
  48. class CI_Session_database_driver extends CI_Session_driver implements SessionHandlerInterface {
  49. /**
  50. * DB object
  51. *
  52. * @var object
  53. */
  54. protected $_db;
  55. /**
  56. * Row exists flag
  57. *
  58. * @var bool
  59. */
  60. protected $_row_exists = FALSE;
  61. /**
  62. * Lock "driver" flag
  63. *
  64. * @var string
  65. */
  66. protected $_platform;
  67. // ------------------------------------------------------------------------
  68. /**
  69. * Class constructor
  70. *
  71. * @param array $params Configuration parameters
  72. * @return void
  73. */
  74. public function __construct(&$params)
  75. {
  76. parent::__construct($params);
  77. $CI =& get_instance();
  78. isset($CI->db) OR $CI->load->database();
  79. $this->_db = $CI->db;
  80. if ( ! $this->_db instanceof CI_DB_query_builder)
  81. {
  82. throw new Exception('Query Builder not enabled for the configured database. Aborting.');
  83. }
  84. elseif ($this->_db->pconnect)
  85. {
  86. throw new Exception('Configured database connection is persistent. Aborting.');
  87. }
  88. elseif ($this->_db->cache_on)
  89. {
  90. throw new Exception('Configured database connection has cache enabled. Aborting.');
  91. }
  92. $db_driver = $this->_db->dbdriver.(empty($this->_db->subdriver) ? '' : '_'.$this->_db->subdriver);
  93. if (strpos($db_driver, 'mysql') !== FALSE)
  94. {
  95. $this->_platform = 'mysql';
  96. }
  97. elseif (in_array($db_driver, array('postgre', 'pdo_pgsql'), TRUE))
  98. {
  99. $this->_platform = 'postgre';
  100. }
  101. // Note: BC work-around for the old 'sess_table_name' setting, should be removed in the future.
  102. if ( ! isset($this->_config['save_path']) && ($this->_config['save_path'] = config_item('sess_table_name')))
  103. {
  104. log_message('debug', 'Session: "sess_save_path" is empty; using BC fallback to "sess_table_name".');
  105. }
  106. }
  107. // ------------------------------------------------------------------------
  108. /**
  109. * Open
  110. *
  111. * Initializes the database connection
  112. *
  113. * @param string $save_path Table name
  114. * @param string $name Session cookie name, unused
  115. * @return bool
  116. */
  117. public function open($save_path, $name)
  118. {
  119. if (empty($this->_db->conn_id) && ! $this->_db->db_connect())
  120. {
  121. return $this->_failure;
  122. }
  123. $this->php5_validate_id();
  124. return $this->_success;
  125. }
  126. // ------------------------------------------------------------------------
  127. /**
  128. * Read
  129. *
  130. * Reads session data and acquires a lock
  131. *
  132. * @param string $session_id Session ID
  133. * @return string Serialized session data
  134. */
  135. public function read($session_id)
  136. {
  137. if ($this->_get_lock($session_id) === FALSE)
  138. {
  139. return $this->_failure;
  140. }
  141. // Prevent previous QB calls from messing with our queries
  142. $this->_db->reset_query();
  143. // Needed by write() to detect session_regenerate_id() calls
  144. $this->_session_id = $session_id;
  145. $this->_db
  146. ->select('data')
  147. ->from($this->_config['save_path'])
  148. ->where('id', $session_id);
  149. if ($this->_config['match_ip'])
  150. {
  151. $this->_db->where('ip_address', $_SERVER['REMOTE_ADDR']);
  152. }
  153. if ( ! ($result = $this->_db->get()) OR ($result = $result->row()) === NULL)
  154. {
  155. // PHP7 will reuse the same SessionHandler object after
  156. // ID regeneration, so we need to explicitly set this to
  157. // FALSE instead of relying on the default ...
  158. $this->_row_exists = FALSE;
  159. $this->_fingerprint = md5('');
  160. return '';
  161. }
  162. // 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.
  165. $result = ($this->_platform === 'postgre')
  166. ? base64_decode(rtrim($result->data))
  167. : $result->data;
  168. $this->_fingerprint = md5($result);
  169. $this->_row_exists = TRUE;
  170. return $result;
  171. }
  172. // ------------------------------------------------------------------------
  173. /**
  174. * Write
  175. *
  176. * Writes (create / update) session data
  177. *
  178. * @param string $session_id Session ID
  179. * @param string $session_data Serialized session data
  180. * @return bool
  181. */
  182. public function write($session_id, $session_data)
  183. {
  184. // Prevent previous QB calls from messing with our queries
  185. $this->_db->reset_query();
  186. // Was the ID regenerated?
  187. if (isset($this->_session_id) && $session_id !== $this->_session_id)
  188. {
  189. if ( ! $this->_release_lock() OR ! $this->_get_lock($session_id))
  190. {
  191. return $this->_failure;
  192. }
  193. $this->_row_exists = FALSE;
  194. $this->_session_id = $session_id;
  195. }
  196. elseif ($this->_lock === FALSE)
  197. {
  198. return $this->_failure;
  199. }
  200. if ($this->_row_exists === FALSE)
  201. {
  202. $insert_data = array(
  203. 'id' => $session_id,
  204. 'ip_address' => $_SERVER['REMOTE_ADDR'],
  205. 'timestamp' => time(),
  206. 'data' => ($this->_platform === 'postgre' ? base64_encode($session_data) : $session_data)
  207. );
  208. if ($this->_db->insert($this->_config['save_path'], $insert_data))
  209. {
  210. $this->_fingerprint = md5($session_data);
  211. $this->_row_exists = TRUE;
  212. return $this->_success;
  213. }
  214. return $this->_failure;
  215. }
  216. $this->_db->where('id', $session_id);
  217. if ($this->_config['match_ip'])
  218. {
  219. $this->_db->where('ip_address', $_SERVER['REMOTE_ADDR']);
  220. }
  221. $update_data = array('timestamp' => time());
  222. if ($this->_fingerprint !== md5($session_data))
  223. {
  224. $update_data['data'] = ($this->_platform === 'postgre')
  225. ? base64_encode($session_data)
  226. : $session_data;
  227. }
  228. if ($this->_db->update($this->_config['save_path'], $update_data))
  229. {
  230. $this->_fingerprint = md5($session_data);
  231. return $this->_success;
  232. }
  233. return $this->_failure;
  234. }
  235. // ------------------------------------------------------------------------
  236. /**
  237. * Close
  238. *
  239. * Releases locks
  240. *
  241. * @return bool
  242. */
  243. public function close()
  244. {
  245. return ($this->_lock && ! $this->_release_lock())
  246. ? $this->_failure
  247. : $this->_success;
  248. }
  249. // ------------------------------------------------------------------------
  250. /**
  251. * Destroy
  252. *
  253. * Destroys the current session.
  254. *
  255. * @param string $session_id Session ID
  256. * @return bool
  257. */
  258. public function destroy($session_id)
  259. {
  260. if ($this->_lock)
  261. {
  262. // Prevent previous QB calls from messing with our queries
  263. $this->_db->reset_query();
  264. $this->_db->where('id', $session_id);
  265. if ($this->_config['match_ip'])
  266. {
  267. $this->_db->where('ip_address', $_SERVER['REMOTE_ADDR']);
  268. }
  269. if ( ! $this->_db->delete($this->_config['save_path']))
  270. {
  271. return $this->_failure;
  272. }
  273. }
  274. if ($this->close() === $this->_success)
  275. {
  276. $this->_cookie_destroy();
  277. return $this->_success;
  278. }
  279. return $this->_failure;
  280. }
  281. // ------------------------------------------------------------------------
  282. /**
  283. * Garbage Collector
  284. *
  285. * Deletes expired sessions
  286. *
  287. * @param int $maxlifetime Maximum lifetime of sessions
  288. * @return bool
  289. */
  290. public function gc($maxlifetime)
  291. {
  292. // Prevent previous QB calls from messing with our queries
  293. $this->_db->reset_query();
  294. return ($this->_db->delete($this->_config['save_path'], 'timestamp < '.(time() - $maxlifetime)))
  295. ? $this->_success
  296. : $this->_failure;
  297. }
  298. // --------------------------------------------------------------------
  299. /**
  300. * Validate ID
  301. *
  302. * Checks whether a session ID record exists server-side,
  303. * to enforce session.use_strict_mode.
  304. *
  305. * @param string $id
  306. * @return bool
  307. */
  308. public function validateSessionId($id)
  309. {
  310. // Prevent previous QB calls from messing with our queries
  311. $this->_db->reset_query();
  312. $this->_db->select('1')->from($this->_config['save_path'])->where('id', $id);
  313. empty($this->_config['match_ip']) OR $this->_db->where('ip_address', $_SERVER['REMOTE_ADDR']);
  314. $result = $this->_db->get();
  315. empty($result) OR $result = $result->row();
  316. return ! empty($result);
  317. }
  318. // ------------------------------------------------------------------------
  319. /**
  320. * Get lock
  321. *
  322. * Acquires a lock, depending on the underlying platform.
  323. *
  324. * @param string $session_id Session ID
  325. * @return bool
  326. */
  327. protected function _get_lock($session_id)
  328. {
  329. if ($this->_platform === 'mysql')
  330. {
  331. $arg = md5($session_id.($this->_config['match_ip'] ? '_'.$_SERVER['REMOTE_ADDR'] : ''));
  332. if ($this->_db->query("SELECT GET_LOCK('".$arg."', 300) AS ci_session_lock")->row()->ci_session_lock)
  333. {
  334. $this->_lock = $arg;
  335. return TRUE;
  336. }
  337. return FALSE;
  338. }
  339. elseif ($this->_platform === 'postgre')
  340. {
  341. $arg = "hashtext('".$session_id."')".($this->_config['match_ip'] ? ", hashtext('".$_SERVER['REMOTE_ADDR']."')" : '');
  342. if ($this->_db->simple_query('SELECT pg_advisory_lock('.$arg.')'))
  343. {
  344. $this->_lock = $arg;
  345. return TRUE;
  346. }
  347. return FALSE;
  348. }
  349. return parent::_get_lock($session_id);
  350. }
  351. // ------------------------------------------------------------------------
  352. /**
  353. * Release lock
  354. *
  355. * Releases a previously acquired lock
  356. *
  357. * @return bool
  358. */
  359. protected function _release_lock()
  360. {
  361. if ( ! $this->_lock)
  362. {
  363. return TRUE;
  364. }
  365. if ($this->_platform === 'mysql')
  366. {
  367. if ($this->_db->query("SELECT RELEASE_LOCK('".$this->_lock."') AS ci_session_lock")->row()->ci_session_lock)
  368. {
  369. $this->_lock = FALSE;
  370. return TRUE;
  371. }
  372. return FALSE;
  373. }
  374. elseif ($this->_platform === 'postgre')
  375. {
  376. if ($this->_db->simple_query('SELECT pg_advisory_unlock('.$this->_lock.')'))
  377. {
  378. $this->_lock = FALSE;
  379. return TRUE;
  380. }
  381. return FALSE;
  382. }
  383. return parent::_release_lock();
  384. }
  385. }