3 * Simple version of LockManager based on using FS lock files.
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 * Simple version of LockManager based on using FS lock files.
26 * All locks are non-blocking, which avoids deadlocks.
28 * This should work fine for small sites running off one server.
29 * Do not use this with 'lockDirectory' set to an NFS mount unless the
30 * NFS client is at least version 2.6.12. Otherwise, the BSD flock()
31 * locks will be ignored; see http://nfs.sourceforge.net/#section_d.
33 * @ingroup LockManager
36 class FSLockManager
extends LockManager
{
37 /** @var Array Mapping of lock types to the type actually used */
38 protected $lockTypeMap = array(
39 self
::LOCK_SH
=> self
::LOCK_SH
,
40 self
::LOCK_UW
=> self
::LOCK_SH
,
41 self
::LOCK_EX
=> self
::LOCK_EX
44 protected $lockDir; // global dir for all servers
46 /** @var Array Map of (locked key => lock file handle) */
47 protected $handles = array();
50 * Construct a new instance from configuration.
53 * - lockDirectory : Directory containing the lock files
55 * @param array $config
57 function __construct( array $config ) {
58 parent
::__construct( $config );
60 $this->lockDir
= $config['lockDirectory'];
64 * @see LockManager::doLock()
69 protected function doLock( array $paths, $type ) {
70 $status = Status
::newGood();
72 $lockedPaths = array(); // files locked in this attempt
73 foreach ( $paths as $path ) {
74 $status->merge( $this->doSingleLock( $path, $type ) );
75 if ( $status->isOK() ) {
76 $lockedPaths[] = $path;
78 // Abort and unlock everything
79 $status->merge( $this->doUnlock( $lockedPaths, $type ) );
88 * @see LockManager::doUnlock()
93 protected function doUnlock( array $paths, $type ) {
94 $status = Status
::newGood();
96 foreach ( $paths as $path ) {
97 $status->merge( $this->doSingleUnlock( $path, $type ) );
104 * Lock a single resource key
106 * @param $path string
107 * @param $type integer
110 protected function doSingleLock( $path, $type ) {
111 $status = Status
::newGood();
113 if ( isset( $this->locksHeld
[$path][$type] ) ) {
114 ++
$this->locksHeld
[$path][$type];
115 } elseif ( isset( $this->locksHeld
[$path][self
::LOCK_EX
] ) ) {
116 $this->locksHeld
[$path][$type] = 1;
118 if ( isset( $this->handles
[$path] ) ) {
119 $handle = $this->handles
[$path];
121 wfSuppressWarnings();
122 $handle = fopen( $this->getLockPath( $path ), 'a+' );
124 if ( !$handle ) { // lock dir missing?
125 wfMkdirParents( $this->lockDir
);
126 $handle = fopen( $this->getLockPath( $path ), 'a+' ); // try again
130 // Either a shared or exclusive lock
131 $lock = ( $type == self
::LOCK_SH
) ? LOCK_SH
: LOCK_EX
;
132 if ( flock( $handle, $lock | LOCK_NB
) ) {
133 // Record this lock as active
134 $this->locksHeld
[$path][$type] = 1;
135 $this->handles
[$path] = $handle;
138 $status->fatal( 'lockmanager-fail-acquirelock', $path );
141 $status->fatal( 'lockmanager-fail-openlock', $path );
149 * Unlock a single resource key
151 * @param $path string
152 * @param $type integer
155 protected function doSingleUnlock( $path, $type ) {
156 $status = Status
::newGood();
158 if ( !isset( $this->locksHeld
[$path] ) ) {
159 $status->warning( 'lockmanager-notlocked', $path );
160 } elseif ( !isset( $this->locksHeld
[$path][$type] ) ) {
161 $status->warning( 'lockmanager-notlocked', $path );
163 $handlesToClose = array();
164 --$this->locksHeld
[$path][$type];
165 if ( $this->locksHeld
[$path][$type] <= 0 ) {
166 unset( $this->locksHeld
[$path][$type] );
168 if ( !count( $this->locksHeld
[$path] ) ) {
169 unset( $this->locksHeld
[$path] ); // no locks on this path
170 if ( isset( $this->handles
[$path] ) ) {
171 $handlesToClose[] = $this->handles
[$path];
172 unset( $this->handles
[$path] );
175 // Unlock handles to release locks and delete
176 // any lock files that end up with no locks on them...
177 if ( wfIsWindows() ) {
178 // Windows: for any process, including this one,
179 // calling unlink() on a locked file will fail
180 $status->merge( $this->closeLockHandles( $path, $handlesToClose ) );
181 $status->merge( $this->pruneKeyLockFiles( $path ) );
183 // Unix: unlink() can be used on files currently open by this
184 // process and we must do so in order to avoid race conditions
185 $status->merge( $this->pruneKeyLockFiles( $path ) );
186 $status->merge( $this->closeLockHandles( $path, $handlesToClose ) );
194 * @param $path string
195 * @param $handlesToClose array
198 private function closeLockHandles( $path, array $handlesToClose ) {
199 $status = Status
::newGood();
200 foreach ( $handlesToClose as $handle ) {
201 if ( !flock( $handle, LOCK_UN
) ) {
202 $status->fatal( 'lockmanager-fail-releaselock', $path );
204 if ( !fclose( $handle ) ) {
205 $status->warning( 'lockmanager-fail-closelock', $path );
212 * @param $path string
215 private function pruneKeyLockFiles( $path ) {
216 $status = Status
::newGood();
217 if ( !isset( $this->locksHeld
[$path] ) ) {
218 # No locks are held for the lock file anymore
219 if ( !unlink( $this->getLockPath( $path ) ) ) {
220 $status->warning( 'lockmanager-fail-deletelock', $path );
222 unset( $this->handles
[$path] );
228 * Get the path to the lock file for a key
229 * @param $path string
232 protected function getLockPath( $path ) {
233 return "{$this->lockDir}/{$this->sha1Base36Absolute( $path )}.lock";
237 * Make sure remaining locks get cleared for sanity
239 function __destruct() {
240 while ( count( $this->locksHeld
) ) {
241 foreach ( $this->locksHeld
as $path => $locks ) {
242 $this->doSingleUnlock( $path, self
::LOCK_EX
);
243 $this->doSingleUnlock( $path, self
::LOCK_SH
);