/* * Copyright 2008, 2014 Free Software Foundation, Inc. * Copyright 2014 Range Networks, Inc. * * * This software is distributed under the terms of the GNU Affero Public License. * See the COPYING file in the main directory for details. * * This use of this software may be subject to additional restrictions. * See the LEGAL file in the main directory for details. This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program 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 Affero General Public License for more details. You should have received a copy of the GNU Affero General Public License along with this program. If not, see . */ #include "Threads.h" #include "Timeval.h" #include "Logger.h" #include using namespace std; int gMutexLogLevel = LOG_INFO; // The mutexes cannot call gConfig or gGetLoggingLevel so we have to get the log level indirectly. #define LOCKLOG(level,fmt,...) \ if (gMutexLogLevel >= LOG_##level) syslog(LOG_##level,"%lu %s %s:%u:%s:lockid=%p " fmt,(unsigned long)pthread_self(),Utils::timestr().c_str(),__FILE__,__LINE__,__FUNCTION__,this,##__VA_ARGS__); //printf("%u %s %s:%u:%s:lockid=%u " fmt "\n",(unsigned)pthread_self(),Utils::timestr().c_str(),__FILE__,__LINE__,__FUNCTION__,(unsigned)this,##__VA_ARGS__); Mutex gStreamLock; ///< Global lock to control access to cout and cerr. void lockCout() { gStreamLock.lock(); Timeval entryTime; cout << entryTime << " " << pthread_self() << ": "; } void unlockCout() { cout << dec << endl << flush; gStreamLock.unlock(); } void lockCerr() { gStreamLock.lock(); Timeval entryTime; cerr << entryTime << " " << pthread_self() << ": "; } void unlockCerr() { cerr << dec << endl << flush; gStreamLock.unlock(); } Mutex::Mutex() : mLockCnt(0) //, mLockerFile(0), mLockerLine(0) { memset(mLockerFile,0,sizeof(mLockerFile)); // Must use getLoggingLevel, not gGetLoggingLevel, to avoid infinite recursion. bool res; res = pthread_mutexattr_init(&mAttribs); assert(!res); res = pthread_mutexattr_settype(&mAttribs,PTHREAD_MUTEX_RECURSIVE); assert(!res); res = pthread_mutex_init(&mMutex,&mAttribs); assert(!res); } Mutex::~Mutex() { pthread_mutex_destroy(&mMutex); bool res = pthread_mutexattr_destroy(&mAttribs); assert(!res); } bool Mutex::trylock() { if (pthread_mutex_trylock(&mMutex)==0) { if (mLockCnt < maxLocks) { mLockerFile[mLockCnt] = NULL; } mLockCnt++; return true; } else { return false; } } // Returns true if the lock was acquired within the timeout, or false if it timed out. bool Mutex::timedlock(int msecs) // Wait this long in milli-seconds. { Timeval future(msecs); struct timespec timeout = future.timespec(); return ETIMEDOUT != pthread_mutex_timedlock(&mMutex, &timeout); } string Mutex::mutext() const { string result; result.reserve(100); //result += format("lockid=%u lockcnt=%d",(unsigned)this,mLockCnt); result += format("lockcnt=%d",mLockCnt); for (int i = 0; i < mLockCnt && i < maxLocks; i++) { if (mLockerFile[i]) { result += format(" %s:%u",mLockerFile[i],mLockerLine[i]); } else { result += " ?"; } } return result; } void Mutex::lock() { if (lockerFile()) LOCKLOG(DEBUG,"lock unchecked"); _lock(); mLockCnt++; } // WARNING: The LOG facility calls lock, so to avoid infinite recursion do not call LOG if file == NULL, // and the file argument should never be used from the Logger facility. void Mutex::lock(const char *file, unsigned line) { // (pat 10-25-13) This is now going to be the default behavior so we can detect and report deadlocks at customer sites. //if (file && gGetLoggingLevel(file)>=LOG_DEBUG) //if (file) OBJLOG(DEBUG) <<"start at "<= 0 && mLockCnt < maxLocks) { mLockerFile[mLockCnt] = file; mLockerLine[mLockCnt] = line; // Now our thread has it locked from here. } mLockCnt++; if (file) { LOCKLOG(DEBUG,"lock by %s",mutext().c_str()); } //else { LOCKLOG(DEBUG,"lock no file"); } } void Mutex::unlock() { if (lockerFile()) { LOCKLOG(DEBUG,"unlock at %s",mutext().c_str()); } //else { LOCKLOG(DEBUG,"unlock unchecked"); } mLockCnt--; pthread_mutex_unlock(&mMutex); } RWLock::RWLock() { bool res; res = pthread_rwlockattr_init(&mAttribs); assert(!res); res = pthread_rwlock_init(&mRWLock,&mAttribs); assert(!res); } RWLock::~RWLock() { pthread_rwlock_destroy(&mRWLock); bool res = pthread_rwlockattr_destroy(&mAttribs); assert(!res); } /** Block for the signal up to the cancellation timeout in msecs. */ // (pat 8-2013) Our code had places (InterthreadQueue) that passed in negative timeouts which create deadlock. // To prevent that, use signed, not unsigned timeout. void Signal::wait(Mutex& wMutex, long timeout) const { if (timeout <= 0) { return; } // (pat) Timeout passed already Timeval then(timeout); struct timespec waitTime = then.timespec(); pthread_cond_timedwait(&mSignal,&wMutex.mMutex,&waitTime); } struct wrapArgs { void *(*task)(void *); void *arg; }; static void * thread_main(void *arg) { struct wrapArgs *p = (struct wrapArgs *)arg; void *(*task)(void *) = p->task; void *param = p->arg; delete p; return (*task)(param); } void Thread::start(void *(*task)(void*), void *arg) { assert(mThread==((pthread_t)0)); bool res; // (pat) Moved initialization to constructor to avoid crash in destructor. //res = pthread_attr_init(&mAttrib); //assert(!res); res = pthread_attr_setstacksize(&mAttrib, mStackSize); assert(!res); struct wrapArgs *p = new wrapArgs; p->task = task; p->arg = arg; res = pthread_create(&mThread, &mAttrib, &thread_main, p); // (pat) Note: the error is returned and is not placed in errno. if (res) { LOG(ALERT) << "pthread_create failed, error:" <