1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299
|
// --------------------------------------------------------------------------
//
// File
// Name: NamedLock.cpp
// Purpose: A global named lock, implemented as a lock file in
// file system
// Created: 2003/08/28
//
// --------------------------------------------------------------------------
#include "Box.h"
#include <fcntl.h>
#include <errno.h>
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#ifdef HAVE_FLOCK
#include <sys/file.h>
#endif
#include "CommonException.h"
#include "NamedLock.h"
#include "Utils.h"
#include "MemLeakFindOn.h"
// --------------------------------------------------------------------------
//
// Function
// Name: NamedLock::NamedLock()
// Purpose: Constructor
// Created: 2003/08/28
//
// --------------------------------------------------------------------------
NamedLock::NamedLock()
#ifdef WIN32
: mFileDescriptor(INVALID_HANDLE_VALUE)
#else
: mFileDescriptor(-1)
#endif
{
}
// --------------------------------------------------------------------------
//
// Function
// Name: NamedLock::~NamedLock()
// Purpose: Destructor (automatically unlocks if locked)
// Created: 2003/08/28
//
// --------------------------------------------------------------------------
NamedLock::~NamedLock()
{
#ifdef WIN32
if(mFileDescriptor != INVALID_HANDLE_VALUE)
#else
if(mFileDescriptor != -1)
#endif
{
ReleaseLock();
}
}
// --------------------------------------------------------------------------
//
// Function
// Name: NamedLock::TryAndGetLock(const char *, int)
// Purpose: Tries to get a lock on the name in the file system.
// IMPORTANT NOTE: If a file exists with this name, it
// will be deleted.
// Created: 2003/08/28
//
// --------------------------------------------------------------------------
bool NamedLock::TryAndGetLock(const std::string& rFilename, int mode)
{
// Check
#ifdef WIN32
if(mFileDescriptor != INVALID_HANDLE_VALUE)
#else
if(mFileDescriptor != -1)
#endif
{
THROW_EXCEPTION(CommonException, NamedLockAlreadyLockingSomething)
}
mFileName = rFilename;
// See if the lock can be got
int flags = O_WRONLY | O_CREAT | O_TRUNC;
#if HAVE_DECL_O_EXLOCK
flags |= O_NONBLOCK | O_EXLOCK;
BOX_TRACE("Trying to create lockfile " << rFilename << " using O_EXLOCK");
#elif defined BOX_OPEN_LOCK
flags |= BOX_OPEN_LOCK;
BOX_TRACE("Trying to create lockfile " << rFilename << " using BOX_OPEN_LOCK");
#elif !HAVE_DECL_F_SETLK && !defined HAVE_FLOCK
// We have no other way to get a lock, so all we can do is fail if
// the file already exists, and take the risk of stale locks.
flags |= O_EXCL;
BOX_TRACE("Trying to create lockfile " << rFilename << " using O_EXCL");
#else
BOX_TRACE("Trying to create lockfile " << rFilename << " without special flags");
#endif
#ifdef WIN32
HANDLE fd = openfile(rFilename.c_str(), flags, mode);
if(fd == INVALID_HANDLE_VALUE)
#else
int fd = ::open(rFilename.c_str(), flags, mode);
if(fd == -1)
#endif
#if HAVE_DECL_O_EXLOCK
{ // if()
if(errno == EWOULDBLOCK)
{
// Lockfile already exists, and we tried to open it
// exclusively, which means we failed to lock it.
BOX_NOTICE("Failed to lock lockfile with O_EXLOCK: " << rFilename
<< ": already locked by another process?");
return false;
}
else
{
THROW_SYS_FILE_ERROR("Failed to open lockfile with O_EXLOCK",
rFilename, CommonException, OSFileError);
}
}
#else // !HAVE_DECL_O_EXLOCK
{ // if()
# if defined BOX_OPEN_LOCK
if(errno == EBUSY)
# else // !BOX_OPEN_LOCK
if(errno == EEXIST && (flags & O_EXCL))
# endif
{
// Lockfile already exists, and we tried to open it
// exclusively, which means we failed to lock it.
BOX_NOTICE("Failed to lock lockfile with O_EXCL: " << rFilename
<< ": already locked by another process?");
return false;
}
else
{
THROW_SYS_FILE_ERROR("Failed to open lockfile with O_EXCL",
rFilename, CommonException, OSFileError);
}
}
try
{
# ifdef HAVE_FLOCK
BOX_TRACE("Trying to lock lockfile " << rFilename << " using flock()");
if(::flock(fd, LOCK_EX | LOCK_NB) != 0)
{
if(errno == EWOULDBLOCK)
{
::close(fd);
BOX_NOTICE("Failed to lock lockfile with flock(): " << rFilename
<< ": already locked by another process");
return false;
}
else
{
THROW_SYS_FILE_ERROR("Failed to lock lockfile with flock()",
rFilename, CommonException, OSFileError);
}
}
# elif HAVE_DECL_F_SETLK
struct flock desc;
desc.l_type = F_WRLCK;
desc.l_whence = SEEK_SET;
desc.l_start = 0;
desc.l_len = 0;
BOX_TRACE("Trying to lock lockfile " << rFilename << " using fcntl()");
if(::fcntl(fd, F_SETLK, &desc) != 0)
{
if(errno == EAGAIN)
{
::close(fd);
BOX_NOTICE("Failed to lock lockfile with fcntl(): " << rFilename
<< ": already locked by another process");
return false;
}
else
{
THROW_SYS_FILE_ERROR("Failed to lock lockfile with fcntl()",
rFilename, CommonException, OSFileError);
}
}
# endif
}
catch(BoxException &e)
{
# ifdef WIN32
CloseHandle(fd);
# else
::close(fd);
# endif
BOX_NOTICE("Failed to lock lockfile " << rFilename << ": " << e.what());
throw;
}
#endif // HAVE_DECL_O_EXLOCK
if(!FileExists(rFilename))
{
BOX_ERROR("Locked lockfile " << rFilename << ", but lockfile no longer "
"exists, bailing out");
# ifdef WIN32
CloseHandle(fd);
# else
::close(fd);
# endif
return false;
}
// Success
mFileDescriptor = fd;
BOX_TRACE("Successfully locked lockfile " << rFilename);
return true;
}
// --------------------------------------------------------------------------
//
// Function
// Name: NamedLock::ReleaseLock()
// Purpose: Release the lock. Exceptions if the lock is not held
// Created: 2003/08/28
//
// --------------------------------------------------------------------------
void NamedLock::ReleaseLock()
{
// Got a lock?
#ifdef WIN32
if(mFileDescriptor == INVALID_HANDLE_VALUE)
#else
if(mFileDescriptor == -1)
#endif
{
THROW_EXCEPTION(CommonException, NamedLockNotHeld)
}
#ifndef WIN32
// Delete the file. We need to do this before closing the filehandle,
// if we used flock() or fcntl() to lock it, otherwise someone could
// acquire the lock, release and delete it between us closing (and
// hence releasing) and deleting it, and we'd fail when it came to
// deleting the file. This happens in tests much more often than
// you'd expect!
//
// This doesn't apply on systems using plain lockfile locking, such as
// Windows, and there we need to close the file before deleting it,
// otherwise the system won't let us delete it.
if(EMU_UNLINK(mFileName.c_str()) != 0)
{
THROW_EMU_ERROR(
BOX_FILE_MESSAGE(mFileName, "Failed to delete lockfile"),
CommonException, OSFileError);
}
#endif // !WIN32
// Close the file
# ifdef WIN32
if(!CloseHandle(mFileDescriptor))
# else
if(::close(mFileDescriptor) != 0)
# endif
{
THROW_EMU_ERROR(
BOX_FILE_MESSAGE(mFileName, "Failed to close lockfile"),
CommonException, OSFileError);
}
// Mark as unlocked, so we don't try to close it again if the unlink() fails.
#ifdef WIN32
mFileDescriptor = INVALID_HANDLE_VALUE;
#else
mFileDescriptor = -1;
#endif
#ifdef WIN32
// On Windows we need to close the file before deleting it, otherwise
// the system won't let us delete it.
if(EMU_UNLINK(mFileName.c_str()) != 0)
{
THROW_EMU_ERROR(
BOX_FILE_MESSAGE(mFileName, "Failed to delete lockfile"),
CommonException, OSFileError);
}
#endif // WIN32
BOX_TRACE("Released lock and deleted lockfile " << mFileName);
}
|