Session_files_driver.php 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428
  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 Files 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_files_driver extends CI_Session_driver implements SessionHandlerInterface {
  49. /**
  50. * Save path
  51. *
  52. * @var string
  53. */
  54. protected $_save_path;
  55. /**
  56. * File handle
  57. *
  58. * @var resource
  59. */
  60. protected $_file_handle;
  61. /**
  62. * File name
  63. *
  64. * @var resource
  65. */
  66. protected $_file_path;
  67. /**
  68. * File new flag
  69. *
  70. * @var bool
  71. */
  72. protected $_file_new;
  73. /**
  74. * Validate SID regular expression
  75. *
  76. * @var string
  77. */
  78. protected $_sid_regexp;
  79. /**
  80. * mbstring.func_overload flag
  81. *
  82. * @var bool
  83. */
  84. protected static $func_overload;
  85. // ------------------------------------------------------------------------
  86. /**
  87. * Class constructor
  88. *
  89. * @param array $params Configuration parameters
  90. * @return void
  91. */
  92. public function __construct(&$params)
  93. {
  94. parent::__construct($params);
  95. if (isset($this->_config['save_path']))
  96. {
  97. $this->_config['save_path'] = rtrim($this->_config['save_path'], '/\\');
  98. ini_set('session.save_path', $this->_config['save_path']);
  99. }
  100. else
  101. {
  102. log_message('debug', 'Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.');
  103. $this->_config['save_path'] = rtrim(ini_get('session.save_path'), '/\\');
  104. }
  105. $this->_sid_regexp = $this->_config['_sid_regexp'];
  106. isset(self::$func_overload) OR self::$func_overload = (extension_loaded('mbstring') && ini_get('mbstring.func_overload'));
  107. }
  108. // ------------------------------------------------------------------------
  109. /**
  110. * Open
  111. *
  112. * Sanitizes the save_path directory.
  113. *
  114. * @param string $save_path Path to session files' directory
  115. * @param string $name Session cookie name
  116. * @return bool
  117. */
  118. public function open($save_path, $name)
  119. {
  120. if ( ! is_dir($save_path))
  121. {
  122. if ( ! mkdir($save_path, 0700, TRUE))
  123. {
  124. log_message('error', "Session: Configured save path '".$this->_config['save_path']."' is not a directory, doesn't exist or cannot be created.");
  125. return $this->_failure;
  126. }
  127. }
  128. elseif ( ! is_writable($save_path))
  129. {
  130. log_message('error', "Session: Configured save path '".$this->_config['save_path']."' is not writable by the PHP process.");
  131. return $this->_failure;
  132. }
  133. $this->_config['save_path'] = $save_path;
  134. $this->_file_path = $this->_config['save_path'].DIRECTORY_SEPARATOR
  135. .$name // we'll use the session cookie name as a prefix to avoid collisions
  136. .($this->_config['match_ip'] ? md5($_SERVER['REMOTE_ADDR']) : '');
  137. $this->php5_validate_id();
  138. return $this->_success;
  139. }
  140. // ------------------------------------------------------------------------
  141. /**
  142. * Read
  143. *
  144. * Reads session data and acquires a lock
  145. *
  146. * @param string $session_id Session ID
  147. * @return string Serialized session data
  148. */
  149. public function read($session_id)
  150. {
  151. // This might seem weird, but PHP 5.6 introduces session_reset(),
  152. // which re-reads session data
  153. if ($this->_file_handle === NULL)
  154. {
  155. $this->_file_new = ! file_exists($this->_file_path.$session_id);
  156. if (($this->_file_handle = fopen($this->_file_path.$session_id, 'c+b')) === FALSE)
  157. {
  158. log_message('error', "Session: Unable to open file '".$this->_file_path.$session_id."'.");
  159. return $this->_failure;
  160. }
  161. if (flock($this->_file_handle, LOCK_EX) === FALSE)
  162. {
  163. log_message('error', "Session: Unable to obtain lock for file '".$this->_file_path.$session_id."'.");
  164. fclose($this->_file_handle);
  165. $this->_file_handle = NULL;
  166. return $this->_failure;
  167. }
  168. // Needed by write() to detect session_regenerate_id() calls
  169. $this->_session_id = $session_id;
  170. if ($this->_file_new)
  171. {
  172. chmod($this->_file_path.$session_id, 0600);
  173. $this->_fingerprint = md5('');
  174. return '';
  175. }
  176. }
  177. // We shouldn't need this, but apparently we do ...
  178. // See https://github.com/bcit-ci/CodeIgniter/issues/4039
  179. elseif ($this->_file_handle === FALSE)
  180. {
  181. return $this->_failure;
  182. }
  183. else
  184. {
  185. rewind($this->_file_handle);
  186. }
  187. $session_data = '';
  188. for ($read = 0, $length = filesize($this->_file_path.$session_id); $read < $length; $read += self::strlen($buffer))
  189. {
  190. if (($buffer = fread($this->_file_handle, $length - $read)) === FALSE)
  191. {
  192. break;
  193. }
  194. $session_data .= $buffer;
  195. }
  196. $this->_fingerprint = md5($session_data);
  197. return $session_data;
  198. }
  199. // ------------------------------------------------------------------------
  200. /**
  201. * Write
  202. *
  203. * Writes (create / update) session data
  204. *
  205. * @param string $session_id Session ID
  206. * @param string $session_data Serialized session data
  207. * @return bool
  208. */
  209. public function write($session_id, $session_data)
  210. {
  211. // If the two IDs don't match, we have a session_regenerate_id() call
  212. // and we need to close the old handle and open a new one
  213. if ($session_id !== $this->_session_id && ($this->close() === $this->_failure OR $this->read($session_id) === $this->_failure))
  214. {
  215. return $this->_failure;
  216. }
  217. if ( ! is_resource($this->_file_handle))
  218. {
  219. return $this->_failure;
  220. }
  221. elseif ($this->_fingerprint === md5($session_data))
  222. {
  223. return ( ! $this->_file_new && ! touch($this->_file_path.$session_id))
  224. ? $this->_failure
  225. : $this->_success;
  226. }
  227. if ( ! $this->_file_new)
  228. {
  229. ftruncate($this->_file_handle, 0);
  230. rewind($this->_file_handle);
  231. }
  232. if (($length = strlen($session_data)) > 0)
  233. {
  234. for ($written = 0; $written < $length; $written += $result)
  235. {
  236. if (($result = fwrite($this->_file_handle, substr($session_data, $written))) === FALSE)
  237. {
  238. break;
  239. }
  240. }
  241. if ( ! is_int($result))
  242. {
  243. $this->_fingerprint = md5(substr($session_data, 0, $written));
  244. log_message('error', 'Session: Unable to write data.');
  245. return $this->_failure;
  246. }
  247. }
  248. $this->_fingerprint = md5($session_data);
  249. return $this->_success;
  250. }
  251. // ------------------------------------------------------------------------
  252. /**
  253. * Close
  254. *
  255. * Releases locks and closes file descriptor.
  256. *
  257. * @return bool
  258. */
  259. public function close()
  260. {
  261. if (is_resource($this->_file_handle))
  262. {
  263. flock($this->_file_handle, LOCK_UN);
  264. fclose($this->_file_handle);
  265. $this->_file_handle = $this->_file_new = $this->_session_id = NULL;
  266. }
  267. return $this->_success;
  268. }
  269. // ------------------------------------------------------------------------
  270. /**
  271. * Destroy
  272. *
  273. * Destroys the current session.
  274. *
  275. * @param string $session_id Session ID
  276. * @return bool
  277. */
  278. public function destroy($session_id)
  279. {
  280. if ($this->close() === $this->_success)
  281. {
  282. if (file_exists($this->_file_path.$session_id))
  283. {
  284. $this->_cookie_destroy();
  285. return unlink($this->_file_path.$session_id)
  286. ? $this->_success
  287. : $this->_failure;
  288. }
  289. return $this->_success;
  290. }
  291. elseif ($this->_file_path !== NULL)
  292. {
  293. clearstatcache();
  294. if (file_exists($this->_file_path.$session_id))
  295. {
  296. $this->_cookie_destroy();
  297. return unlink($this->_file_path.$session_id)
  298. ? $this->_success
  299. : $this->_failure;
  300. }
  301. return $this->_success;
  302. }
  303. return $this->_failure;
  304. }
  305. // ------------------------------------------------------------------------
  306. /**
  307. * Garbage Collector
  308. *
  309. * Deletes expired sessions
  310. *
  311. * @param int $maxlifetime Maximum lifetime of sessions
  312. * @return bool
  313. */
  314. public function gc($maxlifetime)
  315. {
  316. if ( ! is_dir($this->_config['save_path']) OR ($directory = opendir($this->_config['save_path'])) === FALSE)
  317. {
  318. log_message('debug', "Session: Garbage collector couldn't list files under directory '".$this->_config['save_path']."'.");
  319. return $this->_failure;
  320. }
  321. $ts = time() - $maxlifetime;
  322. $pattern = ($this->_config['match_ip'] === TRUE)
  323. ? '[0-9a-f]{32}'
  324. : '';
  325. $pattern = sprintf(
  326. '#\A%s'.$pattern.$this->_sid_regexp.'\z#',
  327. preg_quote($this->_config['cookie_name'])
  328. );
  329. while (($file = readdir($directory)) !== FALSE)
  330. {
  331. // If the filename doesn't match this pattern, it's either not a session file or is not ours
  332. if ( ! preg_match($pattern, $file)
  333. OR ! is_file($this->_config['save_path'].DIRECTORY_SEPARATOR.$file)
  334. OR ($mtime = filemtime($this->_config['save_path'].DIRECTORY_SEPARATOR.$file)) === FALSE
  335. OR $mtime > $ts)
  336. {
  337. continue;
  338. }
  339. unlink($this->_config['save_path'].DIRECTORY_SEPARATOR.$file);
  340. }
  341. closedir($directory);
  342. return $this->_success;
  343. }
  344. // --------------------------------------------------------------------
  345. /**
  346. * Validate ID
  347. *
  348. * Checks whether a session ID record exists server-side,
  349. * to enforce session.use_strict_mode.
  350. *
  351. * @param string $id
  352. * @return bool
  353. */
  354. public function validateSessionId($id)
  355. {
  356. $result = is_file($this->_file_path.$id);
  357. clearstatcache(TRUE, $this->_file_path.$id);
  358. return $result;
  359. }
  360. // --------------------------------------------------------------------
  361. /**
  362. * Byte-safe strlen()
  363. *
  364. * @param string $str
  365. * @return int
  366. */
  367. protected static function strlen($str)
  368. {
  369. return (self::$func_overload)
  370. ? mb_strlen($str, '8bit')
  371. : strlen($str);
  372. }
  373. }