1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00

Merge pull request #4679

anthony.bilinski (1):
      fix(IPC): don't double lock shared memory
This commit is contained in:
sudden6 2017-09-28 18:42:53 +02:00
commit ab12555935
No known key found for this signature in database
GPG Key ID: 279509B499E032B9
2 changed files with 22 additions and 11 deletions

View File

@ -81,11 +81,13 @@ IPC::IPC(uint32_t profileId)
IPC::~IPC()
{
if (isCurrentOwner()) {
if (globalMemory.lock()) {
if (globalMemory.lock()) {
if (isCurrentOwnerNoLock()) {
global()->globalId = 0;
globalMemory.unlock();
}
globalMemory.unlock();
} else {
qWarning() << "Failed to lock in ~IPC";
}
}
@ -135,13 +137,7 @@ time_t IPC::postEvent(const QString& name, const QByteArray& data, uint32_t dest
bool IPC::isCurrentOwner()
{
if (globalMemory.lock()) {
void* data = globalMemory.data();
if (!data) {
qWarning() << "isCurrentOwner failed to access the memory, returning false";
globalMemory.unlock();
return false;
}
bool isOwner = ((*(uint64_t*)data) == globalId);
const bool isOwner = isCurrentOwnerNoLock();
globalMemory.unlock();
return isOwner;
} else {
@ -216,7 +212,7 @@ IPC::IPCEvent* IPC::fetchEvent()
memset(evt, 0, sizeof(IPCEvent));
if (evt->posted && !evt->processed && evt->sender != getpid()
&& (evt->dest == profileId || (evt->dest == 0 && isCurrentOwner())))
&& (evt->dest == profileId || (evt->dest == 0 && isCurrentOwnerNoLock())))
return evt;
}
@ -281,6 +277,20 @@ void IPC::processEvents()
timer.start();
}
/**
* @brief Only called when global memory IS LOCKED.
* @return true if owner, false if not owner or if error
*/
bool IPC::isCurrentOwnerNoLock()
{
const void* const data = globalMemory.data();
if (!data) {
qWarning() << "isCurrentOwnerNoLock failed to access the memory, returning false";
return false;
}
return (*static_cast<const uint64_t*>(data) == globalId);
}
IPC::IPCMemory* IPC::global()
{
return static_cast<IPCMemory*>(globalMemory.data());

View File

@ -82,6 +82,7 @@ private:
bool runEventHandler(IPCEventHandler handler, const QByteArray& arg);
IPCEvent* fetchEvent();
void processEvents();
bool isCurrentOwnerNoLock();
private:
QTimer timer;