Merge "Rename autonym for 'no' from 'norsk bokmål' to 'norsk'"
[lhc/web/wiklou.git] / includes / libs / redis / RedisConnectionPool.php
1 <?php
2 /**
3 * Redis client connection pooling manager.
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
19 *
20 * @file
21 * @defgroup Redis Redis
22 */
23
24 use Psr\Log\LoggerAwareInterface;
25 use Psr\Log\LoggerInterface;
26
27 /**
28 * Helper class to manage Redis connections.
29 *
30 * This can be used to get handle wrappers that free the handle when the wrapper
31 * leaves scope. The maximum number of free handles (connections) is configurable.
32 * This provides an easy way to cache connection handles that may also have state,
33 * such as a handle does between multi() and exec(), and without hoarding connections.
34 * The wrappers use PHP magic methods so that calling functions on them calls the
35 * function of the actual Redis object handle.
36 *
37 * @ingroup Redis
38 * @since 1.21
39 */
40 class RedisConnectionPool implements LoggerAwareInterface {
41 /** @var string Connection timeout in seconds */
42 protected $connectTimeout;
43 /** @var string Read timeout in seconds */
44 protected $readTimeout;
45 /** @var string Plaintext auth password */
46 protected $password;
47 /** @var bool Whether connections persist */
48 protected $persistent;
49 /** @var int Serializer to use (Redis::SERIALIZER_*) */
50 protected $serializer;
51 /** @var string ID for persistent connections */
52 protected $id;
53
54 /** @var int Current idle pool size */
55 protected $idlePoolSize = 0;
56
57 /** @var array (server name => ((connection info array),...) */
58 protected $connections = [];
59 /** @var array (server name => UNIX timestamp) */
60 protected $downServers = [];
61
62 /** @var array (pool ID => RedisConnectionPool) */
63 protected static $instances = [];
64
65 /** integer; seconds to cache servers as "down". */
66 const SERVER_DOWN_TTL = 30;
67
68 /**
69 * @var LoggerInterface
70 */
71 protected $logger;
72
73 /**
74 * @param array $options
75 * @param string $id
76 * @throws Exception
77 */
78 protected function __construct( array $options, $id ) {
79 if ( !class_exists( 'Redis' ) ) {
80 throw new RuntimeException(
81 __CLASS__ . ' requires a Redis client library. ' .
82 'See https://www.mediawiki.org/wiki/Redis#Setup' );
83 }
84 $this->logger = isset( $options['logger'] )
85 ? $options['logger']
86 : new \Psr\Log\NullLogger();
87 $this->connectTimeout = $options['connectTimeout'];
88 $this->readTimeout = $options['readTimeout'];
89 $this->persistent = $options['persistent'];
90 $this->password = $options['password'];
91 if ( !isset( $options['serializer'] ) || $options['serializer'] === 'php' ) {
92 $this->serializer = Redis::SERIALIZER_PHP;
93 } elseif ( $options['serializer'] === 'igbinary' ) {
94 $this->serializer = Redis::SERIALIZER_IGBINARY;
95 } elseif ( $options['serializer'] === 'none' ) {
96 $this->serializer = Redis::SERIALIZER_NONE;
97 } else {
98 throw new InvalidArgumentException( "Invalid serializer specified." );
99 }
100 $this->id = $id;
101 }
102
103 /**
104 * @param LoggerInterface $logger
105 * @return null
106 */
107 public function setLogger( LoggerInterface $logger ) {
108 $this->logger = $logger;
109 }
110
111 /**
112 * @param array $options
113 * @return array
114 */
115 protected static function applyDefaultConfig( array $options ) {
116 if ( !isset( $options['connectTimeout'] ) ) {
117 $options['connectTimeout'] = 1;
118 }
119 if ( !isset( $options['readTimeout'] ) ) {
120 $options['readTimeout'] = 1;
121 }
122 if ( !isset( $options['persistent'] ) ) {
123 $options['persistent'] = false;
124 }
125 if ( !isset( $options['password'] ) ) {
126 $options['password'] = null;
127 }
128
129 return $options;
130 }
131
132 /**
133 * @param array $options
134 * $options include:
135 * - connectTimeout : The timeout for new connections, in seconds.
136 * Optional, default is 1 second.
137 * - readTimeout : The timeout for operation reads, in seconds.
138 * Commands like BLPOP can fail if told to wait longer than this.
139 * Optional, default is 1 second.
140 * - persistent : Set this to true to allow connections to persist across
141 * multiple web requests. False by default.
142 * - password : The authentication password, will be sent to Redis in clear text.
143 * Optional, if it is unspecified, no AUTH command will be sent.
144 * - serializer : Set to "php", "igbinary", or "none". Default is "php".
145 * @return RedisConnectionPool
146 */
147 public static function singleton( array $options ) {
148 $options = self::applyDefaultConfig( $options );
149 // Map the options to a unique hash...
150 ksort( $options ); // normalize to avoid pool fragmentation
151 $id = sha1( serialize( $options ) );
152 // Initialize the object at the hash as needed...
153 if ( !isset( self::$instances[$id] ) ) {
154 self::$instances[$id] = new self( $options, $id );
155 }
156
157 return self::$instances[$id];
158 }
159
160 /**
161 * Destroy all singleton() instances
162 * @since 1.27
163 */
164 public static function destroySingletons() {
165 self::$instances = [];
166 }
167
168 /**
169 * Get a connection to a redis server. Based on code in RedisBagOStuff.php.
170 *
171 * @param string $server A hostname/port combination or the absolute path of a UNIX socket.
172 * If a hostname is specified but no port, port 6379 will be used.
173 * @param LoggerInterface $logger PSR-3 logger intance. [optional]
174 * @return RedisConnRef|bool Returns false on failure
175 * @throws MWException
176 */
177 public function getConnection( $server, LoggerInterface $logger = null ) {
178 $logger = $logger ?: $this->logger;
179 // Check the listing "dead" servers which have had a connection errors.
180 // Servers are marked dead for a limited period of time, to
181 // avoid excessive overhead from repeated connection timeouts.
182 if ( isset( $this->downServers[$server] ) ) {
183 $now = time();
184 if ( $now > $this->downServers[$server] ) {
185 // Dead time expired
186 unset( $this->downServers[$server] );
187 } else {
188 // Server is dead
189 $logger->debug(
190 'Server "{redis_server}" is marked down for another ' .
191 ( $this->downServers[$server] - $now ) . 'seconds',
192 [ 'redis_server' => $server ]
193 );
194
195 return false;
196 }
197 }
198
199 // Check if a connection is already free for use
200 if ( isset( $this->connections[$server] ) ) {
201 foreach ( $this->connections[$server] as &$connection ) {
202 if ( $connection['free'] ) {
203 $connection['free'] = false;
204 --$this->idlePoolSize;
205
206 return new RedisConnRef(
207 $this, $server, $connection['conn'], $logger
208 );
209 }
210 }
211 }
212
213 if ( !$server ) {
214 throw new InvalidArgumentException(
215 __CLASS__ . ": invalid configured server \"$server\"" );
216 } elseif ( substr( $server, 0, 1 ) === '/' ) {
217 // UNIX domain socket
218 // These are required by the redis extension to start with a slash, but
219 // we still need to set the port to a special value to make it work.
220 $host = $server;
221 $port = 0;
222 } else {
223 // TCP connection
224 if ( preg_match( '/^\[(.+)\]:(\d+)$/', $server, $m ) ) {
225 list( $host, $port ) = [ $m[1], (int)$m[2] ]; // (ip, port)
226 } elseif ( preg_match( '/^([^:]+):(\d+)$/', $server, $m ) ) {
227 list( $host, $port ) = [ $m[1], (int)$m[2] ]; // (ip or path, port)
228 } else {
229 list( $host, $port ) = [ $server, 6379 ]; // (ip or path, port)
230 }
231 }
232
233 $conn = new Redis();
234 try {
235 if ( $this->persistent ) {
236 $result = $conn->pconnect( $host, $port, $this->connectTimeout, $this->id );
237 } else {
238 $result = $conn->connect( $host, $port, $this->connectTimeout );
239 }
240 if ( !$result ) {
241 $logger->error(
242 'Could not connect to server "{redis_server}"',
243 [ 'redis_server' => $server ]
244 );
245 // Mark server down for some time to avoid further timeouts
246 $this->downServers[$server] = time() + self::SERVER_DOWN_TTL;
247
248 return false;
249 }
250 if ( $this->password !== null ) {
251 if ( !$conn->auth( $this->password ) ) {
252 $logger->error(
253 'Authentication error connecting to "{redis_server}"',
254 [ 'redis_server' => $server ]
255 );
256 }
257 }
258 } catch ( RedisException $e ) {
259 $this->downServers[$server] = time() + self::SERVER_DOWN_TTL;
260 $logger->error(
261 'Redis exception connecting to "{redis_server}"',
262 [
263 'redis_server' => $server,
264 'exception' => $e,
265 ]
266 );
267
268 return false;
269 }
270
271 if ( $conn ) {
272 $conn->setOption( Redis::OPT_READ_TIMEOUT, $this->readTimeout );
273 $conn->setOption( Redis::OPT_SERIALIZER, $this->serializer );
274 $this->connections[$server][] = [ 'conn' => $conn, 'free' => false ];
275
276 return new RedisConnRef( $this, $server, $conn, $logger );
277 } else {
278 return false;
279 }
280 }
281
282 /**
283 * Mark a connection to a server as free to return to the pool
284 *
285 * @param string $server
286 * @param Redis $conn
287 * @return bool
288 */
289 public function freeConnection( $server, Redis $conn ) {
290 $found = false;
291
292 foreach ( $this->connections[$server] as &$connection ) {
293 if ( $connection['conn'] === $conn && !$connection['free'] ) {
294 $connection['free'] = true;
295 ++$this->idlePoolSize;
296 break;
297 }
298 }
299
300 $this->closeExcessIdleConections();
301
302 return $found;
303 }
304
305 /**
306 * Close any extra idle connections if there are more than the limit
307 */
308 protected function closeExcessIdleConections() {
309 if ( $this->idlePoolSize <= count( $this->connections ) ) {
310 return; // nothing to do (no more connections than servers)
311 }
312
313 foreach ( $this->connections as &$serverConnections ) {
314 foreach ( $serverConnections as $key => &$connection ) {
315 if ( $connection['free'] ) {
316 unset( $serverConnections[$key] );
317 if ( --$this->idlePoolSize <= count( $this->connections ) ) {
318 return; // done (no more connections than servers)
319 }
320 }
321 }
322 }
323 }
324
325 /**
326 * The redis extension throws an exception in response to various read, write
327 * and protocol errors. Sometimes it also closes the connection, sometimes
328 * not. The safest response for us is to explicitly destroy the connection
329 * object and let it be reopened during the next request.
330 *
331 * @param RedisConnRef $cref
332 * @param RedisException $e
333 */
334 public function handleError( RedisConnRef $cref, RedisException $e ) {
335 $server = $cref->getServer();
336 $this->logger->error(
337 'Redis exception on server "{redis_server}"',
338 [
339 'redis_server' => $server,
340 'exception' => $e,
341 ]
342 );
343 foreach ( $this->connections[$server] as $key => $connection ) {
344 if ( $cref->isConnIdentical( $connection['conn'] ) ) {
345 $this->idlePoolSize -= $connection['free'] ? 1 : 0;
346 unset( $this->connections[$server][$key] );
347 break;
348 }
349 }
350 }
351
352 /**
353 * Re-send an AUTH request to the redis server (useful after disconnects).
354 *
355 * This works around an upstream bug in phpredis. phpredis hides disconnects by transparently
356 * reconnecting, but it neglects to re-authenticate the new connection. To the user of the
357 * phpredis client API this manifests as a seemingly random tendency of connections to lose
358 * their authentication status.
359 *
360 * This method is for internal use only.
361 *
362 * @see https://github.com/nicolasff/phpredis/issues/403
363 *
364 * @param string $server
365 * @param Redis $conn
366 * @return bool Success
367 */
368 public function reauthenticateConnection( $server, Redis $conn ) {
369 if ( $this->password !== null ) {
370 if ( !$conn->auth( $this->password ) ) {
371 $this->logger->error(
372 'Authentication error connecting to "{redis_server}"',
373 [ 'redis_server' => $server ]
374 );
375
376 return false;
377 }
378 }
379
380 return true;
381 }
382
383 /**
384 * Adjust or reset the connection handle read timeout value
385 *
386 * @param Redis $conn
387 * @param int $timeout Optional
388 */
389 public function resetTimeout( Redis $conn, $timeout = null ) {
390 $conn->setOption( Redis::OPT_READ_TIMEOUT, $timeout ?: $this->readTimeout );
391 }
392
393 /**
394 * Make sure connections are closed for sanity
395 */
396 function __destruct() {
397 foreach ( $this->connections as $server => &$serverConnections ) {
398 foreach ( $serverConnections as $key => &$connection ) {
399 /** @var Redis $conn */
400 $conn = $connection['conn'];
401 $conn->close();
402 }
403 }
404 }
405 }