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 */
51 /** @var array Map server names to hostname/IP and port numbers */
52 protected $lockServers = array();
54 /** @var string Random UUID */
55 protected $session = '';
58 * Construct a new instance from configuration.
60 * @param array $config Parameters include:
61 * - lockServers : Associative array of server names to "<IP>:<port>" strings.
62 * - srvsByBucket : Array of 1-16 consecutive integer keys, starting from 0,
63 * each having an odd-numbered list of server names (peers) as values.
64 * - redisConfig : Configuration for RedisConnectionPool::__construct().
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 $pathsByType ) {
82 $status = Status
::newGood();
84 $server = $this->lockServers
[$lockSrv];
85 $conn = $this->redisPool
->getConnection( $server );
87 foreach ( array_merge( array_values( $pathsByType ) ) as $path ) {
88 $status->fatal( 'lockmanager-fail-acquirelock', $path );
94 $pathsByKey = array(); // (type:hash => path) map
95 foreach ( $pathsByType as $type => $paths ) {
96 $typeString = ( $type == LockManager
::LOCK_SH
) ?
'SH' : 'EX';
97 foreach ( $paths as $path ) {
98 $pathsByKey[$this->recordKeyForPath( $path, $typeString )] = $path;
106 -- Load input params (e.g. session, ttl, time of request)
107 local rSession, rTTL, rTime = unpack(ARGV)
108 -- Check that all the locks can be acquired
109 for i,requestKey in ipairs(KEYS) do
110 local _, _, rType, resourceKey = string.find(requestKey,"(%w+):(%w+)$")
111 local keyIsFree = true
112 local currentLocks = redis.call('hKeys',resourceKey)
113 for i,lockKey in ipairs(currentLocks) do
114 -- Get the type and session of this lock
115 local _, _, type, session = string.find(lockKey,"(%w+):(%w+)")
116 -- Check any locks that are not owned by this session
117 if session ~= rSession then
118 local lockExpiry = redis.call('hGet',resourceKey,lockKey)
119 if 1*lockExpiry < 1*rTime then
120 -- Lock is stale, so just prune it out
121 redis.call('hDel',resourceKey,lockKey)
122 elseif rType == 'EX' or type == 'EX' then
128 if not keyIsFree then
129 failed[#failed+1] = requestKey
132 -- If all locks could be acquired, then do so
134 for i,requestKey in ipairs(KEYS) do
135 local _, _, rType, resourceKey = string.find(requestKey,"(%w+):(%w+)$")
136 redis.call('hSet',resourceKey,rType .. ':' .. rSession,rTime + rTTL)
137 -- In addition to invalidation logic, be sure to garbage collect
138 redis.call('expire',resourceKey,rTTL)
143 $res = $conn->luaEval( $script,
145 array_keys( $pathsByKey ), // KEYS[0], KEYS[1],...,KEYS[N]
147 $this->session
, // ARGV[1]
148 $this->lockTTL
, // ARGV[2]
152 count( $pathsByKey ) # number of first argument(s) that are keys
154 } catch ( RedisException
$e ) {
156 $this->redisPool
->handleError( $conn, $e );
159 if ( $res === false ) {
160 foreach ( array_merge( array_values( $pathsByType ) ) as $path ) {
161 $status->fatal( 'lockmanager-fail-acquirelock', $path );
164 foreach ( $res as $key ) {
165 $status->fatal( 'lockmanager-fail-acquirelock', $pathsByKey[$key] );
172 protected function freeLocksOnServer( $lockSrv, array $pathsByType ) {
173 $status = Status
::newGood();
175 $server = $this->lockServers
[$lockSrv];
176 $conn = $this->redisPool
->getConnection( $server );
178 foreach ( array_merge( array_values( $pathsByType ) ) as $path ) {
179 $status->fatal( 'lockmanager-fail-releaselock', $path );
185 $pathsByKey = array(); // (type:hash => path) map
186 foreach ( $pathsByType as $type => $paths ) {
187 $typeString = ( $type == LockManager
::LOCK_SH
) ?
'SH' : 'EX';
188 foreach ( $paths as $path ) {
189 $pathsByKey[$this->recordKeyForPath( $path, $typeString )] = $path;
197 -- Load input params (e.g. session)
198 local rSession = unpack(ARGV)
199 for i,requestKey in ipairs(KEYS) do
200 local _, _, rType, resourceKey = string.find(requestKey,"(%w+):(%w+)$")
201 local released = redis.call('hDel',resourceKey,rType .. ':' .. rSession)
203 -- Remove the whole structure if it is now empty
204 if redis.call('hLen',resourceKey) == 0 then
205 redis.call('del',resourceKey)
208 failed[#failed+1] = requestKey
213 $res = $conn->luaEval( $script,
215 array_keys( $pathsByKey ), // KEYS[0], KEYS[1],...,KEYS[N]
217 $this->session
, // ARGV[1]
220 count( $pathsByKey ) # number of first argument(s) that are keys
222 } catch ( RedisException
$e ) {
224 $this->redisPool
->handleError( $conn, $e );
227 if ( $res === false ) {
228 foreach ( array_merge( array_values( $pathsByType ) ) as $path ) {
229 $status->fatal( 'lockmanager-fail-releaselock', $path );
232 foreach ( $res as $key ) {
233 $status->fatal( 'lockmanager-fail-releaselock', $pathsByKey[$key] );
240 protected function releaseAllLocks() {
241 return Status
::newGood(); // not supported
244 protected function isServerUp( $lockSrv ) {
245 return (bool)$this->redisPool
->getConnection( $this->lockServers
[$lockSrv] );
249 * @param string $path
250 * @param string $type One of (EX,SH)
253 protected function recordKeyForPath( $path, $type ) {
255 array( __CLASS__
, 'locks', "$type:" . $this->sha1Base36Absolute( $path ) ) );
259 * Make sure remaining locks get cleared for sanity
261 function __destruct() {
262 while ( count( $this->locksHeld
) ) {
263 $pathsByType = array();
264 foreach ( $this->locksHeld
as $path => $locks ) {
265 foreach ( $locks as $type => $count ) {
266 $pathsByType[$type][] = $path;
269 $this->unlockByType( $pathsByType );