123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378 |
- <?php
- defined('BASEPATH') OR exit('No direct script access allowed');
- class CI_Session_memcached_driver extends CI_Session_driver implements SessionHandlerInterface {
-
- protected $_memcached;
-
- protected $_key_prefix = 'ci_session:';
-
- protected $_lock_key;
-
-
- public function __construct(&$params)
- {
- parent::__construct($params);
- if (empty($this->_config['save_path']))
- {
- log_message('error', 'Session: No Memcached save path configured.');
- }
- if ($this->_config['match_ip'] === TRUE)
- {
- $this->_key_prefix .= $_SERVER['REMOTE_ADDR'].':';
- }
- }
-
-
- public function open($save_path, $name)
- {
- $this->_memcached = new Memcached();
- $this->_memcached->setOption(Memcached::OPT_BINARY_PROTOCOL, TRUE);
- $server_list = array();
- foreach ($this->_memcached->getServerList() as $server)
- {
- $server_list[] = $server['host'].':'.$server['port'];
- }
- if ( ! preg_match_all('#,?([^,:]+)\:(\d{1,5})(?:\:(\d+))?#', $this->_config['save_path'], $matches, PREG_SET_ORDER))
- {
- $this->_memcached = NULL;
- log_message('error', 'Session: Invalid Memcached save path format: '.$this->_config['save_path']);
- return $this->_fail();
- }
- foreach ($matches as $match)
- {
-
- if (in_array($match[1].':'.$match[2], $server_list, TRUE))
- {
- log_message('debug', 'Session: Memcached server pool already has '.$match[1].':'.$match[2]);
- continue;
- }
- if ( ! $this->_memcached->addServer($match[1], $match[2], isset($match[3]) ? $match[3] : 0))
- {
- log_message('error', 'Could not add '.$match[1].':'.$match[2].' to Memcached server pool.');
- }
- else
- {
- $server_list[] = $match[1].':'.$match[2];
- }
- }
- if (empty($server_list))
- {
- log_message('error', 'Session: Memcached server pool is empty.');
- return $this->_fail();
- }
- return $this->_success;
- }
-
-
- public function read($session_id)
- {
- if (isset($this->_memcached) && $this->_get_lock($session_id))
- {
-
- $this->_session_id = $session_id;
- $session_data = (string) $this->_memcached->get($this->_key_prefix.$session_id);
- $this->_fingerprint = md5($session_data);
- return $session_data;
- }
- return $this->_fail();
- }
-
-
- public function write($session_id, $session_data)
- {
- if ( ! isset($this->_memcached))
- {
- return $this->_fail();
- }
-
- elseif ($session_id !== $this->_session_id)
- {
- if ( ! $this->_release_lock() OR ! $this->_get_lock($session_id))
- {
- return $this->_fail();
- }
- $this->_fingerprint = md5('');
- $this->_session_id = $session_id;
- }
- if (isset($this->_lock_key))
- {
- $key = $this->_key_prefix.$session_id;
- $this->_memcached->replace($this->_lock_key, time(), 300);
- if ($this->_fingerprint !== ($fingerprint = md5($session_data)))
- {
- if ($this->_memcached->set($key, $session_data, $this->_config['expiration']))
- {
- $this->_fingerprint = $fingerprint;
- return $this->_success;
- }
- return $this->_fail();
- }
- elseif (
- $this->_memcached->touch($key, $this->_config['expiration'])
- OR ($this->_memcached->getResultCode() === Memcached::RES_NOTFOUND && $this->_memcached->set($key, $session_data, $this->_config['expiration']))
- )
- {
- return $this->_success;
- }
- }
- return $this->_fail();
- }
-
-
- public function close()
- {
- if (isset($this->_memcached))
- {
- $this->_release_lock();
- if ( ! $this->_memcached->quit())
- {
- return $this->_fail();
- }
- $this->_memcached = NULL;
- return $this->_success;
- }
- return $this->_fail();
- }
-
-
- public function destroy($session_id)
- {
- if (isset($this->_memcached, $this->_lock_key))
- {
- $this->_memcached->delete($this->_key_prefix.$session_id);
- $this->_cookie_destroy();
- return $this->_success;
- }
- return $this->_fail();
- }
-
-
- public function gc($maxlifetime)
- {
-
- return $this->_success;
- }
-
-
- protected function _get_lock($session_id)
- {
-
-
-
- if ($this->_lock_key === $this->_key_prefix.$session_id.':lock')
- {
- if ( ! $this->_memcached->replace($this->_lock_key, time(), 300))
- {
- return ($this->_memcached->getResultCode() === Memcached::RES_NOTFOUND)
- ? $this->_memcached->set($this->_lock_key, time(), 300)
- : FALSE;
- }
- }
-
- $lock_key = $this->_key_prefix.$session_id.':lock';
- $attempt = 0;
- do
- {
- if ($this->_memcached->get($lock_key))
- {
- sleep(1);
- continue;
- }
- if ( ! $this->_memcached->set($lock_key, time(), 300))
- {
- log_message('error', 'Session: Error while trying to obtain lock for '.$this->_key_prefix.$session_id);
- return FALSE;
- }
- $this->_lock_key = $lock_key;
- break;
- }
- while (++$attempt < 30);
- if ($attempt === 30)
- {
- log_message('error', 'Session: Unable to obtain lock for '.$this->_key_prefix.$session_id.' after 30 attempts, aborting.');
- return FALSE;
- }
- $this->_lock = TRUE;
- return TRUE;
- }
-
-
- protected function _release_lock()
- {
- if (isset($this->_memcached, $this->_lock_key) && $this->_lock)
- {
- if ( ! $this->_memcached->delete($this->_lock_key) && $this->_memcached->getResultCode() !== Memcached::RES_NOTFOUND)
- {
- log_message('error', 'Session: Error while trying to free lock for '.$this->_lock_key);
- return FALSE;
- }
- $this->_lock_key = NULL;
- $this->_lock = FALSE;
- }
- return TRUE;
- }
- }
|