Skip to content

Commit

Permalink
[core] Fix GC stop handling (#1950)
Browse files Browse the repository at this point in the history
1. Protect m_bClosing by m_GCStopLock
2. Fix the issue that m_GCStopLock can be set up multiple times and
never be released. srt_startup()/srt_cleanup() meant to be called
only once, but it isn't used this way in FFmpeg/VLC/GStreamer.
  • Loading branch information
quink-black committed Dec 14, 2021
1 parent cf34d69 commit 3558cd0
Showing 1 changed file with 16 additions and 20 deletions.
36 changes: 16 additions & 20 deletions srtcore/api.cpp
Expand Up @@ -196,6 +196,8 @@ srt::CUDTUnited::CUDTUnited():
// XXX An unlikely exception thrown from the below calls
// might destroy the application before `main`. This shouldn't
// be a problem in general.
setupMutex(m_GCStopLock, "GCStop");
setupCond(m_GCStopCond, "GCStop");
setupMutex(m_GlobControlLock, "GlobControl");
setupMutex(m_IDLock, "ID");
setupMutex(m_InitLock, "Init");
Expand All @@ -216,6 +218,16 @@ srt::CUDTUnited::~CUDTUnited()
releaseMutex(m_GlobControlLock);
releaseMutex(m_IDLock);
releaseMutex(m_InitLock);
// XXX There's some weird bug here causing this
// to hangup on Windows. This might be either something
// bigger, or some problem in pthread-win32. As this is
// the application cleanup section, this can be temporarily
// tolerated with simply exit the application without cleanup,
// counting on that the system will take care of it anyway.
#ifndef _WIN32
releaseCond(m_GCStopCond);
#endif
releaseMutex(m_GCStopLock);

delete m_pCache;
}
Expand Down Expand Up @@ -254,15 +266,6 @@ int srt::CUDTUnited::startup()

m_bClosing = false;

try
{
setupMutex(m_GCStopLock, "GCStop");
setupCond(m_GCStopCond, "GCStop");
}
catch (...)
{
return -1;
}
if (!StartThread(m_GCThread, garbageCollect, this, "SRT:GC"))
return -1;

Expand Down Expand Up @@ -291,7 +294,10 @@ int srt::CUDTUnited::cleanup()
if (!m_bGCStatus)
return 0;

m_bClosing = true;
{
UniqueLock gclock(m_GCStopLock);
m_bClosing = true;
}
// NOTE: we can do relaxed signaling here because
// waiting on m_GCStopCond has a 1-second timeout,
// after which the m_bClosing flag is cheched, which
Expand All @@ -300,16 +306,6 @@ int srt::CUDTUnited::cleanup()
CSync::signal_relaxed(m_GCStopCond);
m_GCThread.join();

// XXX There's some weird bug here causing this
// to hangup on Windows. This might be either something
// bigger, or some problem in pthread-win32. As this is
// the application cleanup section, this can be temporarily
// tolerated with simply exit the application without cleanup,
// counting on that the system will take care of it anyway.
#ifndef _WIN32
releaseCond(m_GCStopCond);
#endif

m_bGCStatus = false;

// Global destruction code
Expand Down

0 comments on commit 3558cd0

Please sign in to comment.