This repository was archived by the owner on Jul 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathClusteredSessionHandler.php
executable file
·298 lines (273 loc) · 7.38 KB
/
ClusteredSessionHandler.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
<?php
/**
* @package ClusteredSessionHandler
* @version $Id$
*
* This class replaces the default php session handler with one that is more
* suitable for clustered environment.
*
* It utilizes the database to save the session data and may also use memcache
* as a write-throu cache layer to speed up fetching of data
*
* Usage:
* Save this file as /etc/php.session.php
*
* auto_prepend_file = /etc/php.session.php
*
* See bottom of the file
*
*
* Database create statement:
*
CREATE DATABASE IF NOT EXISTS `sessions`;
DROP TABLE IF EXISTS `sessions`.`tblsessions`;
CREATE TABLE IF NOT EXISTS `sessions`.`tblsessions` (
`session_id` VARCHAR(32) CHARACTER SET ascii COLLATE ascii_bin NOT NULL,
`session_expiration` INT(10) UNSIGNED NOT NULL,
`session_data` TEXT COLLATE utf8_unicode_ci NOT NULL,
`session_save_path` TEXT COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`session_id`),
KEY `session_expiration` (`session_expiration`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
GRANT ALL PRIVILEGES ON sessions.* TO "%"@"%";
*/
class ClusteredSessionHandler {
/**
*
* @var Memcache
*/
public static $memcache = null;
/**
*
* @var mysqli
*/
protected $dbLink = null;
/**
*
* @var string - serialized from php
*/
private $initSessionData;
private $host;
private $password;
private $user;
/**
* Creates and initializes the sessionHandler
*
* @param string $dbhost
* @param string $dbuser
* @param string $dbpassword
* @return ClusteredSessionHandler
*/
public static function factory( $dbhost, $dbuser, $dbpassword ) {
$sessionHandler = new ClusteredSessionHandler( $dbhost, $dbuser, $dbpassword );
session_set_save_handler( array( &$sessionHandler, "open" ), array( &$sessionHandler, "close" ), array( &$sessionHandler, "read" ), array( &$sessionHandler, "write" ), array( &$sessionHandler, "destroy" ), array( &$sessionHandler, "gc" ) );
return $sessionHandler;
}
/**
* Connect to the database
*
* @param string $host
* @param string $user
* @param string $password
* @return mysqli
*/
private function db() {
if( $this->dbLink instanceof mysqli ) {
return $this->dbLink;
}
$this->dbLink = @new mysqli( $this->host, $this->user, $this->password, 'sessions' );
if( mysqli_connect_errno() ) {
self::syslog('Can\'t connect to MySQL Server. Errorcode: '.mysqli_connect_error());
$this->dbLink = null;
return false;
}
return $this->dbLink;
}
/**
* Connect and use memcache as a fast cachelayer - optional
*
* @param string $host
* @param string $portnumber
*/
public static function connect_to_memcached( $host, $portnumber ) {
$memcache = new Memcache();
if( @$memcache->connect( $host, $portnumber ) ) {
self::$memcache = $memcache;
} else {
self::syslog( 'Can\'t connect to memcached server at '.$host.':'.$portnumber );
}
}
/**
*
* @param string $memcacheHost
* @param string $memcachePort
* @return boolean
*/
public function __construct($host, $user, $password ) {
$this->host = $host;
$this->user = $user;
$this->password = $password;
register_shutdown_function( "session_write_close" );
$this->initSessionData = null;
return true;
}
/**
* Open a session
*
* @param string $savePath - not used yet
* @param string $sessionName
* @return boolean
*/
public function open( $savePath, $sessionName ) {
$sessionID = session_id();
if( $sessionID !== "" ) {
$this->initSessionData = $this->read( $sessionID );
}
return true;
}
/**
* Close the session handler
*
* @return boolean
*/
public function close() {
#self::$memcache = null;
$this->initSessionData = null;
return true;
}
/**
* Get data from session with session ID
*
* @param string $sessionID
* @return mixed
*/
public function read( $sessionID ) {
$data = $this->memcache_get( $sessionID );
if( $data !== false ) {
return $data;
}
$stmt = $this->db()->prepare( "SELECT `session_data` FROM `sessions`.`tblsessions` WHERE `session_id`= ?" );
$stmt->bind_param( 's', $sessionID );
$stmt->execute();
$stmt->bind_result( $data );
$stmt->fetch();
$stmt->close();
if( $data ) {
$this->memcache_set( $sessionID, $data, false, intval( ini_get( "session.gc_maxlifetime" ) ) );
}
return $data;
}
/**
* Write session with sessionId with data
* This is called upon script termination or when session_write_close() is called, which ever is first.
*
* @param string $sessionID
* @param string $data
* @return boolean
*/
public function write( $sessionID, $data ) {
// Only save data if it has changed
if( $this->initSessionData === $data ) {
return $data;
}
$this->memcache_set( $sessionID, $data, false, intval( ini_get( "session.gc_maxlifetime" ) ) );
$stmt = $this->db()->prepare( "REPLACE INTO `sessions`.`tblsessions` (`session_id`,`session_expiration`,`session_data`) VALUES(?,?,?)" );
$sessionExpire = (intval( ini_get( "session.gc_maxlifetime" ) ) + time());
$stmt->bind_param( 'sis', $sessionID, $sessionExpire, $data );
$stmt->execute();
$written = (bool) $stmt->affected_rows;
$stmt->close();
return $written;
}
/**
* Destroy session with sessionid
*
* @param string $sessionID
* @return boolean
*/
public function destroy( $sessionID ) {
$this->memcache_delete( $sessionID );
$stmt = $this->db()->prepare( "DELETE FROM `sessions`.`tblsessions` WHERE `session_id`= ?" );
$stmt->bind_param('s',$sessionID);
$stmt->execute();
$stmt->close();
return true;
}
/**
* Garbage collection
*
* From php.ini
* ; The probability is calculated by using gc_probability/gc_divisor,
* ; e.g. 1/100 means there is a 1% chance that the GC process starts
* ; on each request.
* session.gc_probability = 1
* session.gc_divisor = 1000
*
* @param int $maxlifetime
* @return boolean
*/
public function gc( $maxlifetime ) {
$stmt = $this->db()->prepare( "SELECT `session_id` FROM `sessions`.`tblsessions` WHERE `session_expiration` < ?" );
$timeExpire = time() - $maxlifetime;
$stmt->bind_param( 'i', $timeExpire);
$stmt->execute();
$stmt->bind_result( $sessionID );
$oldSessions = array();
while( $stmt->fetch() ) {
$oldSessions[] = $sessionID;
}
foreach( $oldSessions as $sessionID ) {
$this->destroy( $sessionID );
}
return true;
}
/**
*
* @param string $sessionID
* @return mixed
*/
private function memcache_get( $sessionID ) {
if( !self::$memcache ) {
return false;
}
return self::$memcache->get( $sessionID );
}
/**
*
* @param sting $sessionID
* @param string $data
* @param boolean $compressed
* @param int $lifetime
* @return mixed
*/
private function memcache_set( $sessionID, $data, $compressed, $lifetime ) {
if( !self::$memcache ) {
return false;
}
self::$memcache->set( $sessionID, $data, $compressed, $lifetime );
}
/**
* Delete session with sessionId from Memcached
*
* @param string $sessionID
* @return mixed
*/
private function memcache_delete( $sessionID ) {
if( !self::$memcache ) {
return false;
}
self::$memcache->delete( $sessionID );
}
/**
* Reports to syslog
*
* @param string $message
*/
private static function syslog( $message ) {
openlog('session', LOG_ODELAY, LOG_LOCAL0 );
syslog( LOG_CRIT, __FILE__.' '.$message );
closelog();
}
}
#ClusteredSessionHandler::connect_to_memcached( '127.0.0.1', '11211' );
$ClusteredSessionHandler = ClusteredSessionHandler::factory('localhost', 'root', '' );