2012-05-11 17:00:03 +02:00
|
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
2018-01-02 18:12:05 +01:00
|
|
|
// Copyright (c) 2009-2017 The Bitcoin Core developers
|
2014-12-13 05:09:33 +01:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
2012-05-18 16:02:28 +02:00
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
2013-04-13 07:13:08 +02:00
|
|
|
|
2012-05-11 17:00:03 +02:00
|
|
|
#ifndef BITCOIN_SYNC_H
|
|
|
|
#define BITCOIN_SYNC_H
|
|
|
|
|
2017-11-10 01:57:53 +01:00
|
|
|
#include <threadsafety.h>
|
2013-04-13 07:13:08 +02:00
|
|
|
|
2017-08-16 19:56:02 +02:00
|
|
|
#include <condition_variable>
|
|
|
|
#include <thread>
|
|
|
|
#include <mutex>
|
2012-05-11 17:00:03 +02:00
|
|
|
|
2013-06-24 18:10:15 +02:00
|
|
|
|
|
|
|
////////////////////////////////////////////////
|
|
|
|
// //
|
2015-08-09 01:17:27 +02:00
|
|
|
// THE SIMPLE DEFINITION, EXCLUDING DEBUG CODE //
|
2013-06-24 18:10:15 +02:00
|
|
|
// //
|
|
|
|
////////////////////////////////////////////////
|
|
|
|
|
|
|
|
/*
|
|
|
|
CCriticalSection mutex;
|
2017-08-16 19:56:02 +02:00
|
|
|
std::recursive_mutex mutex;
|
2013-06-24 18:10:15 +02:00
|
|
|
|
|
|
|
LOCK(mutex);
|
2017-08-16 19:56:02 +02:00
|
|
|
std::unique_lock<std::recursive_mutex> criticalblock(mutex);
|
2013-06-24 18:10:15 +02:00
|
|
|
|
|
|
|
LOCK2(mutex1, mutex2);
|
2017-08-16 19:56:02 +02:00
|
|
|
std::unique_lock<std::recursive_mutex> criticalblock1(mutex1);
|
|
|
|
std::unique_lock<std::recursive_mutex> criticalblock2(mutex2);
|
2013-06-24 18:10:15 +02:00
|
|
|
|
|
|
|
TRY_LOCK(mutex, name);
|
2017-08-16 19:56:02 +02:00
|
|
|
std::unique_lock<std::recursive_mutex> name(mutex, std::try_to_lock_t);
|
2013-06-24 18:10:15 +02:00
|
|
|
|
|
|
|
ENTER_CRITICAL_SECTION(mutex); // no RAII
|
|
|
|
mutex.lock();
|
|
|
|
|
|
|
|
LEAVE_CRITICAL_SECTION(mutex); // no RAII
|
|
|
|
mutex.unlock();
|
|
|
|
*/
|
|
|
|
|
|
|
|
///////////////////////////////
|
|
|
|
// //
|
|
|
|
// THE ACTUAL IMPLEMENTATION //
|
|
|
|
// //
|
|
|
|
///////////////////////////////
|
|
|
|
|
2012-05-11 17:00:03 +02:00
|
|
|
#ifdef DEBUG_LOCKORDER
|
|
|
|
void EnterCritical(const char* pszName, const char* pszFile, int nLine, void* cs, bool fTry = false);
|
|
|
|
void LeaveCritical();
|
2013-11-29 08:25:30 +01:00
|
|
|
std::string LocksHeld();
|
2018-06-08 20:06:58 +02:00
|
|
|
void AssertLockHeldInternal(const char* pszName, const char* pszFile, int nLine, void* cs) ASSERT_EXCLUSIVE_LOCK(cs);
|
2017-01-17 23:42:46 +01:00
|
|
|
void AssertLockNotHeldInternal(const char* pszName, const char* pszFile, int nLine, void* cs);
|
2016-04-08 22:14:19 +02:00
|
|
|
void DeleteLock(void* cs);
|
2017-11-08 21:28:35 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Call abort() if a potential lock order deadlock bug is detected, instead of
|
|
|
|
* just logging information and throwing a logic_error. Defaults to true, and
|
|
|
|
* set to false in DEBUG_LOCKORDER unit tests.
|
|
|
|
*/
|
|
|
|
extern bool g_debug_lockorder_abort;
|
2012-05-11 17:00:03 +02:00
|
|
|
#else
|
2015-03-13 08:14:50 +01:00
|
|
|
void static inline EnterCritical(const char* pszName, const char* pszFile, int nLine, void* cs, bool fTry = false) {}
|
2012-05-11 17:00:03 +02:00
|
|
|
void static inline LeaveCritical() {}
|
2018-06-08 20:06:58 +02:00
|
|
|
void static inline AssertLockHeldInternal(const char* pszName, const char* pszFile, int nLine, void* cs) ASSERT_EXCLUSIVE_LOCK(cs) {}
|
2017-01-17 23:42:46 +01:00
|
|
|
void static inline AssertLockNotHeldInternal(const char* pszName, const char* pszFile, int nLine, void* cs) {}
|
2016-04-08 22:14:19 +02:00
|
|
|
void static inline DeleteLock(void* cs) {}
|
2012-05-11 17:00:03 +02:00
|
|
|
#endif
|
2013-12-19 09:09:51 +01:00
|
|
|
#define AssertLockHeld(cs) AssertLockHeldInternal(#cs, __FILE__, __LINE__, &cs)
|
2017-01-17 23:42:46 +01:00
|
|
|
#define AssertLockNotHeld(cs) AssertLockNotHeldInternal(#cs, __FILE__, __LINE__, &cs)
|
2012-05-11 17:00:03 +02:00
|
|
|
|
2017-12-07 18:01:53 +01:00
|
|
|
/**
|
|
|
|
* Template mixin that adds -Wthread-safety locking
|
|
|
|
* annotations to a subset of the mutex API.
|
|
|
|
*/
|
|
|
|
template <typename PARENT>
|
|
|
|
class LOCKABLE AnnotatedMixin : public PARENT
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
void lock() EXCLUSIVE_LOCK_FUNCTION()
|
|
|
|
{
|
|
|
|
PARENT::lock();
|
|
|
|
}
|
|
|
|
|
|
|
|
void unlock() UNLOCK_FUNCTION()
|
|
|
|
{
|
|
|
|
PARENT::unlock();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool try_lock() EXCLUSIVE_TRYLOCK_FUNCTION(true)
|
|
|
|
{
|
|
|
|
return PARENT::try_lock();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2016-04-08 22:14:19 +02:00
|
|
|
/**
|
2017-08-16 19:56:02 +02:00
|
|
|
* Wrapped mutex: supports recursive locking, but no waiting
|
2016-04-08 22:14:19 +02:00
|
|
|
* TODO: We should move away from using the recursive lock by default.
|
|
|
|
*/
|
2017-08-16 19:56:02 +02:00
|
|
|
class CCriticalSection : public AnnotatedMixin<std::recursive_mutex>
|
2016-04-08 22:14:19 +02:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
~CCriticalSection() {
|
|
|
|
DeleteLock((void*)this);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2017-08-16 19:56:02 +02:00
|
|
|
/** Wrapped mutex: supports waiting but not recursive locking */
|
|
|
|
typedef AnnotatedMixin<std::mutex> CWaitableCriticalSection;
|
2016-04-08 22:14:19 +02:00
|
|
|
|
2017-08-16 19:56:02 +02:00
|
|
|
/** Just a typedef for std::condition_variable, can be wrapped later if desired */
|
|
|
|
typedef std::condition_variable CConditionVariable;
|
|
|
|
|
|
|
|
/** Just a typedef for std::unique_lock, can be wrapped later if desired */
|
|
|
|
typedef std::unique_lock<std::mutex> WaitableLock;
|
2016-04-08 22:14:19 +02:00
|
|
|
|
2012-06-05 16:12:32 +02:00
|
|
|
#ifdef DEBUG_LOCKCONTENTION
|
|
|
|
void PrintLockContention(const char* pszName, const char* pszFile, int nLine);
|
|
|
|
#endif
|
|
|
|
|
2017-08-16 19:56:02 +02:00
|
|
|
/** Wrapper around std::unique_lock<CCriticalSection> */
|
|
|
|
class SCOPED_LOCKABLE CCriticalBlock
|
2012-05-11 17:00:03 +02:00
|
|
|
{
|
|
|
|
private:
|
2017-08-16 19:56:02 +02:00
|
|
|
std::unique_lock<CCriticalSection> lock;
|
2012-05-11 17:00:03 +02:00
|
|
|
|
|
|
|
void Enter(const char* pszName, const char* pszFile, int nLine)
|
|
|
|
{
|
2012-11-11 07:11:13 +01:00
|
|
|
EnterCritical(pszName, pszFile, nLine, (void*)(lock.mutex()));
|
2012-05-11 17:00:03 +02:00
|
|
|
#ifdef DEBUG_LOCKCONTENTION
|
2014-09-19 19:21:46 +02:00
|
|
|
if (!lock.try_lock()) {
|
2012-11-11 07:11:13 +01:00
|
|
|
PrintLockContention(pszName, pszFile, nLine);
|
2012-05-11 17:00:03 +02:00
|
|
|
#endif
|
2014-09-19 19:21:46 +02:00
|
|
|
lock.lock();
|
2012-05-11 17:00:03 +02:00
|
|
|
#ifdef DEBUG_LOCKCONTENTION
|
|
|
|
}
|
2012-11-11 07:11:13 +01:00
|
|
|
#endif
|
2012-05-11 17:00:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool TryEnter(const char* pszName, const char* pszFile, int nLine)
|
|
|
|
{
|
2012-11-11 07:11:13 +01:00
|
|
|
EnterCritical(pszName, pszFile, nLine, (void*)(lock.mutex()), true);
|
|
|
|
lock.try_lock();
|
2012-05-13 17:55:23 +02:00
|
|
|
if (!lock.owns_lock())
|
2012-11-11 07:11:13 +01:00
|
|
|
LeaveCritical();
|
2012-05-13 17:55:23 +02:00
|
|
|
return lock.owns_lock();
|
2012-05-11 17:00:03 +02:00
|
|
|
}
|
|
|
|
|
2012-11-11 07:11:13 +01:00
|
|
|
public:
|
2017-08-16 19:56:02 +02:00
|
|
|
CCriticalBlock(CCriticalSection& mutexIn, const char* pszName, const char* pszFile, int nLine, bool fTry = false) EXCLUSIVE_LOCK_FUNCTION(mutexIn) : lock(mutexIn, std::defer_lock)
|
2012-05-11 17:00:03 +02:00
|
|
|
{
|
|
|
|
if (fTry)
|
|
|
|
TryEnter(pszName, pszFile, nLine);
|
|
|
|
else
|
|
|
|
Enter(pszName, pszFile, nLine);
|
|
|
|
}
|
|
|
|
|
2017-08-16 19:56:02 +02:00
|
|
|
CCriticalBlock(CCriticalSection* pmutexIn, const char* pszName, const char* pszFile, int nLine, bool fTry = false) EXCLUSIVE_LOCK_FUNCTION(pmutexIn)
|
2014-10-19 10:46:17 +02:00
|
|
|
{
|
|
|
|
if (!pmutexIn) return;
|
|
|
|
|
2017-08-16 19:56:02 +02:00
|
|
|
lock = std::unique_lock<CCriticalSection>(*pmutexIn, std::defer_lock);
|
2014-10-19 10:46:17 +02:00
|
|
|
if (fTry)
|
|
|
|
TryEnter(pszName, pszFile, nLine);
|
|
|
|
else
|
|
|
|
Enter(pszName, pszFile, nLine);
|
|
|
|
}
|
|
|
|
|
2017-08-16 19:56:02 +02:00
|
|
|
~CCriticalBlock() UNLOCK_FUNCTION()
|
2012-05-11 17:00:03 +02:00
|
|
|
{
|
2012-05-13 17:55:23 +02:00
|
|
|
if (lock.owns_lock())
|
2012-05-11 17:00:03 +02:00
|
|
|
LeaveCritical();
|
|
|
|
}
|
|
|
|
|
|
|
|
operator bool()
|
|
|
|
{
|
2012-05-13 17:55:23 +02:00
|
|
|
return lock.owns_lock();
|
2012-05-11 17:00:03 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2016-08-06 10:54:29 +02:00
|
|
|
#define PASTE(x, y) x ## y
|
|
|
|
#define PASTE2(x, y) PASTE(x, y)
|
|
|
|
|
|
|
|
#define LOCK(cs) CCriticalBlock PASTE2(criticalblock, __COUNTER__)(cs, #cs, __FILE__, __LINE__)
|
2014-09-19 19:21:46 +02:00
|
|
|
#define LOCK2(cs1, cs2) CCriticalBlock criticalblock1(cs1, #cs1, __FILE__, __LINE__), criticalblock2(cs2, #cs2, __FILE__, __LINE__)
|
|
|
|
#define TRY_LOCK(cs, name) CCriticalBlock name(cs, #cs, __FILE__, __LINE__, true)
|
2012-05-11 17:00:03 +02:00
|
|
|
|
2014-09-19 19:21:46 +02:00
|
|
|
#define ENTER_CRITICAL_SECTION(cs) \
|
|
|
|
{ \
|
2012-05-11 17:00:03 +02:00
|
|
|
EnterCritical(#cs, __FILE__, __LINE__, (void*)(&cs)); \
|
2014-09-19 19:21:46 +02:00
|
|
|
(cs).lock(); \
|
2012-05-11 17:00:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#define LEAVE_CRITICAL_SECTION(cs) \
|
2014-09-19 19:21:46 +02:00
|
|
|
{ \
|
|
|
|
(cs).unlock(); \
|
|
|
|
LeaveCritical(); \
|
2012-05-11 17:00:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
class CSemaphore
|
|
|
|
{
|
|
|
|
private:
|
2017-11-18 20:35:14 +01:00
|
|
|
std::condition_variable condition;
|
|
|
|
std::mutex mutex;
|
2012-05-13 17:55:23 +02:00
|
|
|
int value;
|
2012-05-11 17:00:03 +02:00
|
|
|
|
|
|
|
public:
|
2017-08-01 12:22:41 +02:00
|
|
|
explicit CSemaphore(int init) : value(init) {}
|
2012-05-11 17:00:03 +02:00
|
|
|
|
2014-09-19 19:21:46 +02:00
|
|
|
void wait()
|
|
|
|
{
|
2017-11-18 20:35:14 +01:00
|
|
|
std::unique_lock<std::mutex> lock(mutex);
|
|
|
|
condition.wait(lock, [&]() { return value >= 1; });
|
2012-05-13 17:55:23 +02:00
|
|
|
value--;
|
2012-05-11 17:00:03 +02:00
|
|
|
}
|
|
|
|
|
2014-09-19 19:21:46 +02:00
|
|
|
bool try_wait()
|
|
|
|
{
|
2017-11-18 20:35:14 +01:00
|
|
|
std::lock_guard<std::mutex> lock(mutex);
|
2012-05-13 17:55:23 +02:00
|
|
|
if (value < 1)
|
|
|
|
return false;
|
|
|
|
value--;
|
|
|
|
return true;
|
2012-05-11 17:00:03 +02:00
|
|
|
}
|
|
|
|
|
2014-09-19 19:21:46 +02:00
|
|
|
void post()
|
|
|
|
{
|
2012-05-13 17:55:23 +02:00
|
|
|
{
|
2017-11-18 20:35:14 +01:00
|
|
|
std::lock_guard<std::mutex> lock(mutex);
|
2012-05-13 17:55:23 +02:00
|
|
|
value++;
|
|
|
|
}
|
|
|
|
condition.notify_one();
|
2012-05-11 17:00:03 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/** RAII-style semaphore lock */
|
|
|
|
class CSemaphoreGrant
|
|
|
|
{
|
|
|
|
private:
|
2014-09-19 19:21:46 +02:00
|
|
|
CSemaphore* sem;
|
2012-05-11 17:00:03 +02:00
|
|
|
bool fHaveGrant;
|
|
|
|
|
|
|
|
public:
|
2014-09-19 19:21:46 +02:00
|
|
|
void Acquire()
|
|
|
|
{
|
2012-05-11 17:00:03 +02:00
|
|
|
if (fHaveGrant)
|
|
|
|
return;
|
|
|
|
sem->wait();
|
|
|
|
fHaveGrant = true;
|
|
|
|
}
|
|
|
|
|
2014-09-19 19:21:46 +02:00
|
|
|
void Release()
|
|
|
|
{
|
2012-05-11 17:00:03 +02:00
|
|
|
if (!fHaveGrant)
|
|
|
|
return;
|
|
|
|
sem->post();
|
|
|
|
fHaveGrant = false;
|
|
|
|
}
|
|
|
|
|
2014-09-19 19:21:46 +02:00
|
|
|
bool TryAcquire()
|
|
|
|
{
|
2012-05-11 17:00:03 +02:00
|
|
|
if (!fHaveGrant && sem->try_wait())
|
|
|
|
fHaveGrant = true;
|
|
|
|
return fHaveGrant;
|
|
|
|
}
|
|
|
|
|
2014-09-19 19:21:46 +02:00
|
|
|
void MoveTo(CSemaphoreGrant& grant)
|
|
|
|
{
|
2012-05-11 17:00:03 +02:00
|
|
|
grant.Release();
|
|
|
|
grant.sem = sem;
|
|
|
|
grant.fHaveGrant = fHaveGrant;
|
|
|
|
fHaveGrant = false;
|
|
|
|
}
|
|
|
|
|
2017-08-07 07:36:37 +02:00
|
|
|
CSemaphoreGrant() : sem(nullptr), fHaveGrant(false) {}
|
2012-05-11 17:00:03 +02:00
|
|
|
|
2017-08-01 12:22:41 +02:00
|
|
|
explicit CSemaphoreGrant(CSemaphore& sema, bool fTry = false) : sem(&sema), fHaveGrant(false)
|
2014-09-19 19:21:46 +02:00
|
|
|
{
|
2012-05-11 17:00:03 +02:00
|
|
|
if (fTry)
|
|
|
|
TryAcquire();
|
|
|
|
else
|
|
|
|
Acquire();
|
|
|
|
}
|
|
|
|
|
2014-09-19 19:21:46 +02:00
|
|
|
~CSemaphoreGrant()
|
|
|
|
{
|
2012-05-11 17:00:03 +02:00
|
|
|
Release();
|
|
|
|
}
|
|
|
|
|
2017-03-09 13:34:54 +01:00
|
|
|
operator bool() const
|
2014-09-19 19:21:46 +02:00
|
|
|
{
|
2012-05-11 17:00:03 +02:00
|
|
|
return fHaveGrant;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2014-08-28 22:21:03 +02:00
|
|
|
#endif // BITCOIN_SYNC_H
|