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