kdelibs/kdecore/io/klockfile_unix.cpp

511 lines
14 KiB
C++
Raw Normal View History

2014-11-13 01:04:59 +02:00
/*
This file is part of the KDE libraries
Copyright (c) 2004 Waldo Bastian <bastian@kde.org>
Copyright (c) 2011 David Faure <faure@kde.org>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License version 2 as published by the Free Software Foundation.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#include "klockfile.h"
#include <config.h>
#include <sys/types.h>
#ifdef HAVE_SYS_STAT_H
#include <sys/stat.h>
#endif
#ifdef HAVE_SYS_TIME_H
#include <sys/time.h>
#endif
#include <signal.h>
#include <errno.h>
#include <stdlib.h>
#include <unistd.h>
#include <QtCore/qdatetime.h>
2014-11-13 01:04:59 +02:00
#include <QtCore/QFile>
#include <QTextStream>
2015-08-27 20:35:05 +03:00
#include "kdebug.h"
2014-11-13 01:04:59 +02:00
#include "krandom.h"
#include "kglobal.h"
#include "kcomponentdata.h"
#include "ktemporaryfile.h"
#include "kde_file.h"
#include "kfilesystemtype_p.h"
#include <unistd.h>
#include <fcntl.h>
// Related reading:
// http://www.spinnaker.de/linux/nfs-locking.html
// http://en.wikipedia.org/wiki/File_locking
// http://apenwarr.ca/log/?m=201012
// Related source code:
// * lockfile-create, from the lockfile-progs package, uses the link() trick from lockFileWithLink
// below, so it works over NFS but fails on FAT32 too.
// * the flock program, which uses flock(LOCK_EX), works on local filesystems (including FAT32),
// but not NFS.
// Note about flock: don't unlink, it creates a race. http://world.std.com/~swmcd/steven/tech/flock.html
// fcntl(F_SETLK) is not a good solution.
// It locks other processes but locking out other threads must be done by hand,
// and worse, it unlocks when just reading the file in the same process (!).
// See the apenwarr.ca article above.
// open(O_EXCL) seems to be the best solution for local files (on all filesystems),
// it only fails over NFS (at least with old NFS servers).
// See http://www.informit.com/guides/content.aspx?g=cplusplus&seqNum=144
// Conclusion: we use O_EXCL by default, and the link() trick over NFS.
class KLockFile::Private
{
public:
Private(const KComponentData &c)
: staleTime(30), // 30 seconds
isLocked(false),
linkCountSupport(true),
mustCloseFd(false),
m_pid(-1),
m_componentData(c)
{
}
// The main method
KLockFile::LockResult lockFile(KDE_struct_stat &st_buf);
// Two different implementations
KLockFile::LockResult lockFileOExcl(KDE_struct_stat &st_buf);
KLockFile::LockResult lockFileWithLink(KDE_struct_stat &st_buf);
KLockFile::LockResult deleteStaleLock();
KLockFile::LockResult deleteStaleLockWithLink();
void writeIntoLockFile(QFile& file, const KComponentData& componentData);
void readLockFile();
bool isNfs() const;
QFile m_file;
QString m_fileName;
int staleTime;
bool isLocked;
bool linkCountSupport;
bool mustCloseFd;
QTime staleTimer;
KDE_struct_stat statBuf;
int m_pid;
QString m_hostname;
QString m_componentName;
KComponentData m_componentData;
};
KLockFile::KLockFile(const QString &file, const KComponentData &componentData)
: d(new Private(componentData))
{
d->m_fileName = file;
}
KLockFile::~KLockFile()
{
unlock();
delete d;
}
int
KLockFile::staleTime() const
{
return d->staleTime;
}
void
KLockFile::setStaleTime(int _staleTime)
{
d->staleTime = _staleTime;
}
static bool operator==( const KDE_struct_stat &st_buf1,
const KDE_struct_stat &st_buf2)
{
#define FIELD_EQ(what) (st_buf1.what == st_buf2.what)
return FIELD_EQ(st_dev) && FIELD_EQ(st_ino) &&
FIELD_EQ(st_uid) && FIELD_EQ(st_gid) && FIELD_EQ(st_nlink);
#undef FIELD_EQ
}
static bool operator!=( const KDE_struct_stat& st_buf1,
const KDE_struct_stat& st_buf2 )
{
return !(st_buf1 == st_buf2);
}
static bool testLinkCountSupport(const QByteArray &fileName)
{
KDE_struct_stat st_buf;
int result = -1;
// Check if hardlinks raise the link count at all?
if(!::link( fileName, QByteArray(fileName+".test") )) {
result = KDE_lstat( fileName, &st_buf );
::unlink( QByteArray(fileName+".test") );
}
return (result < 0 || ((result == 0) && (st_buf.st_nlink == 2)));
}
void KLockFile::Private::writeIntoLockFile(QFile& file, const KComponentData& componentData)
{
file.setPermissions(QFile::ReadUser|QFile::WriteUser|QFile::ReadGroup|QFile::ReadOther);
char hostname[256];
hostname[0] = 0;
gethostname(hostname, 255);
hostname[255] = 0;
m_hostname = QString::fromLocal8Bit(hostname);
m_componentName = componentData.componentName();
QTextStream stream(&file);
m_pid = getpid();
stream << QString::number(m_pid) << endl
<< m_componentName << endl
<< m_hostname << endl;
stream.flush();
}
void KLockFile::Private::readLockFile()
{
m_pid = -1;
m_hostname.clear();
m_componentName.clear();
QFile file(m_fileName);
if (file.open(QIODevice::ReadOnly))
{
QTextStream ts(&file);
if (!ts.atEnd())
m_pid = ts.readLine().toInt();
if (!ts.atEnd())
m_componentName = ts.readLine();
if (!ts.atEnd())
m_hostname = ts.readLine();
}
}
KLockFile::LockResult KLockFile::Private::lockFileWithLink(KDE_struct_stat &st_buf)
{
const QByteArray lockFileName = QFile::encodeName( m_fileName );
int result = KDE_lstat( lockFileName, &st_buf );
if (result == 0) {
return KLockFile::LockFail;
}
KTemporaryFile uniqueFile(m_componentData);
uniqueFile.setFileTemplate(m_fileName);
if (!uniqueFile.open())
return KLockFile::LockError;
writeIntoLockFile(uniqueFile, m_componentData);
QByteArray uniqueName = QFile::encodeName( uniqueFile.fileName() );
// Create lock file
result = ::link( uniqueName, lockFileName );
if (result != 0)
return KLockFile::LockError;
if (!linkCountSupport)
return KLockFile::LockOK;
KDE_struct_stat st_buf2;
result = KDE_lstat( uniqueName, &st_buf2 );
if (result != 0)
return KLockFile::LockError;
result = KDE_lstat( lockFileName, &st_buf );
if (result != 0)
return KLockFile::LockError;
if (st_buf != st_buf2 || S_ISLNK(st_buf.st_mode) || S_ISLNK(st_buf2.st_mode))
{
// SMBFS supports hardlinks by copying the file, as a result the above test will always fail
// cifs increases link count artifically but the inodes are still different
if ((st_buf2.st_nlink > 1 ||
((st_buf.st_nlink == 1) && (st_buf2.st_nlink == 1))) && (st_buf.st_ino != st_buf2.st_ino))
{
linkCountSupport = testLinkCountSupport(uniqueName);
if (!linkCountSupport)
return KLockFile::LockOK; // Link count support is missing... assume everything is OK.
}
return KLockFile::LockFail;
}
return KLockFile::LockOK;
}
bool KLockFile::Private::isNfs() const
{
const KFileSystemType::Type fsType = KFileSystemType::fileSystemType(m_fileName);
return fsType == KFileSystemType::Nfs;
}
KLockFile::LockResult KLockFile::Private::lockFile(KDE_struct_stat &st_buf)
{
if (isNfs()) {
return lockFileWithLink(st_buf);
}
return lockFileOExcl(st_buf);
}
KLockFile::LockResult KLockFile::Private::lockFileOExcl(KDE_struct_stat &st_buf)
{
const QByteArray lockFileName = QFile::encodeName( m_fileName );
int fd = KDE_open(lockFileName.constData(), O_WRONLY | O_CREAT | O_EXCL, 0644);
if (fd < 0) {
if (errno == EEXIST) {
// File already exists
if (KDE_lstat(lockFileName, &st_buf) != 0) { // caller wants stat buf details
// File got deleted meanwhile! Clear struct rather than leaving it unset.
st_buf.st_dev = 0;
st_buf.st_ino = 0;
st_buf.st_uid = 0;
st_buf.st_gid = 0;
st_buf.st_nlink = 0;
}
return LockFail;
} else {
return LockError;
}
}
// We hold the lock, continue.
if (!m_file.open(fd, QIODevice::WriteOnly)) {
return LockError;
}
mustCloseFd = true;
writeIntoLockFile(m_file, m_componentData);
// stat to get the modification time
const int result = KDE_lstat(QFile::encodeName(m_fileName), &st_buf);
if (result != 0)
return KLockFile::LockError;
return KLockFile::LockOK;
}
KLockFile::LockResult KLockFile::Private::deleteStaleLock()
{
if (isNfs())
return deleteStaleLockWithLink();
// I see no way to prevent the race condition here, where we could
// delete a new lock file that another process just got after we
// decided the old one was too stale for us too.
2015-08-27 20:35:05 +03:00
kWarning() << "Deleting stale lockfile" << qPrintable(m_fileName);
2014-11-13 01:04:59 +02:00
QFile::remove(m_fileName);
return LockOK;
}
KLockFile::LockResult KLockFile::Private::deleteStaleLockWithLink()
{
// This is dangerous, we could be deleting a new lock instead of
// the old stale one, let's be very careful
// Create temp file
KTemporaryFile *ktmpFile = new KTemporaryFile(m_componentData);
ktmpFile->setFileTemplate(m_fileName);
if (!ktmpFile->open()) {
delete ktmpFile;
return KLockFile::LockError;
}
const QByteArray lckFile = QFile::encodeName(m_fileName);
const QByteArray tmpFile = QFile::encodeName(ktmpFile->fileName());
delete ktmpFile;
// link to lock file
if (::link(lckFile, tmpFile) != 0)
return KLockFile::LockFail; // Try again later
// check if link count increased with exactly one
// and if the lock file still matches
KDE_struct_stat st_buf1;
KDE_struct_stat st_buf2;
memcpy(&st_buf1, &statBuf, sizeof(KDE_struct_stat));
st_buf1.st_nlink++;
if ((KDE_lstat(tmpFile, &st_buf2) == 0) && st_buf1 == st_buf2)
{
if ((KDE_lstat(lckFile, &st_buf2) == 0) && st_buf1 == st_buf2)
{
// - - if yes, delete lock file, delete temp file, retry lock
2015-08-27 20:35:05 +03:00
kWarning() << "Deleting stale lockfile" << lckFile.data();
2014-11-13 01:04:59 +02:00
::unlink(lckFile);
::unlink(tmpFile);
return KLockFile::LockOK;
}
}
// SMBFS supports hardlinks by copying the file, as a result the above test will always fail
if (linkCountSupport)
{
linkCountSupport = testLinkCountSupport(tmpFile);
}
if (!linkCountSupport)
{
// Without support for link counts we will have a little race condition
2015-08-27 20:35:05 +03:00
kWarning() << "Deleting stale lockfile" << lckFile.data();
2014-11-13 01:04:59 +02:00
::unlink(tmpFile);
if (::unlink(lckFile) < 0) {
2015-08-27 20:35:05 +03:00
kWarning() << "Problem deleting stale lockfile" << lckFile.data() << ": " << strerror(errno);
2014-11-13 01:04:59 +02:00
return KLockFile::LockFail;
}
return KLockFile::LockOK;
}
// Failed to delete stale lock file
2015-08-27 20:35:05 +03:00
kWarning() << "Problem deleting stale lockfile" << lckFile.data();
2014-11-13 01:04:59 +02:00
::unlink(tmpFile);
return KLockFile::LockFail;
}
KLockFile::LockResult KLockFile::lock(LockFlags options)
{
if (d->isLocked)
return KLockFile::LockOK;
KLockFile::LockResult result;
int hardErrors = 5;
int n = 5;
while(true)
{
KDE_struct_stat st_buf;
// Try to create the lock file
result = d->lockFile(st_buf);
if (result == KLockFile::LockOK)
{
d->staleTimer = QTime();
break;
}
else if (result == KLockFile::LockError)
{
d->staleTimer = QTime();
if (--hardErrors == 0)
{
break;
}
}
else // KLockFile::Fail -- there is already such a file present (e.g. left by a crashed app)
{
if (!d->staleTimer.isNull() && d->statBuf != st_buf)
d->staleTimer = QTime();
if (d->staleTimer.isNull())
{
memcpy(&(d->statBuf), &st_buf, sizeof(KDE_struct_stat));
d->staleTimer.start();
d->readLockFile();
}
bool isStale = false;
if ((d->m_pid > 0) && !d->m_hostname.isEmpty())
{
// Check if hostname is us
char hostname[256];
hostname[0] = 0;
gethostname(hostname, 255);
hostname[255] = 0;
if (d->m_hostname == QLatin1String(hostname))
{
// Check if pid still exists
int res = ::kill(d->m_pid, 0);
if ((res == -1) && (errno == ESRCH))
isStale = true; // pid does not exist
}
}
if (d->staleTimer.elapsed() > (d->staleTime*1000))
isStale = true;
if (isStale)
{
if ((options & ForceFlag) == 0)
return KLockFile::LockStale;
result = d->deleteStaleLock();
if (result == KLockFile::LockOK)
{
// Lock deletion successful
d->staleTimer = QTime();
continue; // Now try to get the new lock
}
else if (result != KLockFile::LockFail)
{
return result;
}
}
}
if (options & NoBlockFlag)
break;
struct timeval tv;
tv.tv_sec = 0;
tv.tv_usec = n*((KRandom::random() % 200)+100);
if (n < 2000)
n = n * 2;
select(0, 0, 0, 0, &tv);
}
if (result == LockOK)
d->isLocked = true;
return result;
}
bool KLockFile::isLocked() const
{
return d->isLocked;
}
void KLockFile::unlock()
{
if (d->isLocked)
{
::unlink(QFile::encodeName(d->m_fileName));
if (d->mustCloseFd) {
close(d->m_file.handle());
d->mustCloseFd = false;
}
d->m_file.close();
d->m_pid = -1;
d->isLocked = false;
}
}
bool KLockFile::getLockInfo(int &pid, QString &hostname, QString &appname)
{
if (d->m_pid == -1)
return false;
pid = d->m_pid;
hostname = d->m_hostname;
appname = d->m_componentName;
return true;
}