3 * Version of LockManager based on using redis servers.
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.
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.
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
21 * @ingroup LockManager
25 * Manage locks using redis servers.
27 * Version of LockManager based on using redis servers.
28 * This is meant for multi-wiki systems that may share files.
29 * All locks are non-blocking, which avoids deadlocks.
31 * All lock requests for a resource, identified by a hash string, will map to one
32 * bucket. Each bucket maps to one or several peer servers, each running redis.
33 * A majority of peers must agree for a lock to be acquired.
35 * This class requires Redis 2.6 as it makes use Lua scripts for fast atomic operations.
37 * @ingroup LockManager
40 class RedisLockManager
extends QuorumLockManager
{
41 /** @var Array Mapping of lock types to the type actually used */
42 protected $lockTypeMap = array(
43 self
::LOCK_SH
=> self
::LOCK_SH
,
44 self
::LOCK_UW
=> self
::LOCK_SH
,
45 self
::LOCK_EX
=> self
::LOCK_EX
48 /** @var RedisConnectionPool */
50 /** @var Array Map server names to hostname/IP and port numbers */
51 protected $lockServers = array();
53 protected $session = ''; // string; random UUID
56 * Construct a new instance from configuration.
58 * $config paramaters include:
59 * - lockServers : Associative array of server names to "<IP>:<port>" strings.
60 * - srvsByBucket : Array of 1-16 consecutive integer keys, starting from 0,
61 * each having an odd-numbered list of server names (peers) as values.
62 * - redisConfig : Configuration for RedisConnectionPool::__construct().
64 * @param Array $config
67 public function __construct( array $config ) {
68 parent
::__construct( $config );
70 $this->lockServers
= $config['lockServers'];
71 // Sanitize srvsByBucket config to prevent PHP errors
72 $this->srvsByBucket
= array_filter( $config['srvsByBucket'], 'is_array' );
73 $this->srvsByBucket
= array_values( $this->srvsByBucket
); // consecutive
75 $config['redisConfig']['serializer'] = 'none';
76 $this->redisPool
= RedisConnectionPool
::singleton( $config['redisConfig'] );
78 $this->session
= wfRandomString( 32 );
81 protected function getLocksOnServer( $lockSrv, array $paths, $type ) {
82 $status = Status
::newGood();
84 $server = $this->lockServers
[$lockSrv];
85 $conn = $this->redisPool
->getConnection( $server );
87 foreach ( $paths as $path ) {
88 $status->fatal( 'lockmanager-fail-acquirelock', $path );
93 $keys = array_map( array( $this, 'recordKeyForPath' ), $paths ); // lock records
98 if ARGV[1] ~= 'EX' and ARGV[1] ~= 'SH' then
99 return redis.error_reply('Unrecognized lock type given (must be EX or SH)')
102 -- Check that all the locks can be acquired
103 for i,resourceKey in ipairs(KEYS) do
104 local keyIsFree = true
105 local currentLocks = redis.call('hKeys',resourceKey)
106 for i,lockKey in ipairs(currentLocks) do
107 local _, _, type, session = string.find(lockKey,"(%w+):(%w+)")
108 -- Check any locks that are not owned by this session
109 if session ~= ARGV[2] then
110 local lockTimestamp = redis.call('hGet',resourceKey,lockKey)
111 if 1*lockTimestamp < ( ARGV[4] - ARGV[3] ) then
112 -- Lock is stale, so just prune it out
113 redis.call('hDel',resourceKey,lockKey)
114 elseif ARGV[1] == 'EX' or type == 'EX' then
120 if not keyIsFree then
121 failed[#failed+1] = resourceKey
124 -- If all locks could be acquired, then do so
126 for i,resourceKey in ipairs(KEYS) do
127 redis.call('hSet',resourceKey,ARGV[1] .. ':' .. ARGV[2],ARGV[4])
128 -- In addition to invalidation logic, be sure to garbage collect
129 redis.call('expire',resourceKey,ARGV[3])
134 $res = $conn->luaEval( $script,
136 $keys, // KEYS[0], KEYS[1],...KEYS[N]
138 $type === self
::LOCK_SH ?
'SH' : 'EX', // ARGV[1]
139 $this->session
, // ARGV[2]
140 $this->lockTTL
, // ARGV[3]
144 count( $keys ) # number of first argument(s) that are keys
146 } catch ( RedisException
$e ) {
148 $this->redisPool
->handleException( $server, $conn, $e );
151 if ( $res === false ) {
152 foreach ( $paths as $path ) {
153 $status->fatal( 'lockmanager-fail-acquirelock', $path );
156 $pathsByKey = array_combine( $keys, $paths );
157 foreach ( $res as $key ) {
158 $status->fatal( 'lockmanager-fail-acquirelock', $pathsByKey[$key] );
165 protected function freeLocksOnServer( $lockSrv, array $paths, $type ) {
166 $status = Status
::newGood();
168 $server = $this->lockServers
[$lockSrv];
169 $conn = $this->redisPool
->getConnection( $server );
171 foreach ( $paths as $path ) {
172 $status->fatal( 'lockmanager-fail-releaselock', $path );
177 $keys = array_map( array( $this, 'recordKeyForPath' ), $paths ); // lock records
182 if ARGV[1] ~= 'EX' and ARGV[1] ~= 'SH' then
183 return redis.error_reply('Unrecognized lock type given (must be EX or SH)')
186 for i,resourceKey in ipairs(KEYS) do
187 local released = redis.call('hDel',resourceKey,ARGV[1] .. ':' .. ARGV[2])
189 -- Remove the whole structure if it is now empty
190 if redis.call('hLen',resourceKey) == 0 then
191 redis.call('del',resourceKey)
194 failed[#failed+1] = resourceKey
199 $res = $conn->luaEval( $script,
201 $keys, // KEYS[0], KEYS[1],...KEYS[N]
203 $type === self
::LOCK_SH ?
'SH' : 'EX', // ARGV[1]
204 $this->session
// ARGV[2]
207 count( $keys ) # number of first argument(s) that are keys
209 } catch ( RedisException
$e ) {
211 $this->redisPool
->handleException( $server, $conn, $e );
214 if ( $res === false ) {
215 foreach ( $paths as $path ) {
216 $status->fatal( 'lockmanager-fail-releaselock', $path );
219 $pathsByKey = array_combine( $keys, $paths );
220 foreach ( $res as $key ) {
221 $status->fatal( 'lockmanager-fail-releaselock', $pathsByKey[$key] );
228 protected function releaseAllLocks() {
229 return Status
::newGood(); // not supported
232 protected function isServerUp( $lockSrv ) {
233 return (bool)$this->redisPool
->getConnection( $this->lockServers
[$lockSrv] );
237 * @param $path string
240 protected function recordKeyForPath( $path ) {
241 return implode( ':', array( __CLASS__
, 'locks', $this->sha1Base36Absolute( $path ) ) );
245 * Make sure remaining locks get cleared for sanity
247 function __destruct() {
248 while ( count( $this->locksHeld
) ) {
249 foreach ( $this->locksHeld
as $path => $locks ) {
250 $this->doUnlock( array( $path ), self
::LOCK_EX
);
251 $this->doUnlock( array( $path ), self
::LOCK_SH
);