mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-01-19 23:03:45 +01:00
net: fix use-after-free with v2->v1 reconnection logic
CConnman::Stop() resets semOutbound, yet m_reconnections is not cleared in Stop. Each ReconnectionInfo contains a grant member that points to the memory that semOutbound pointed to and ~CConnman will attempt to access the grant field (memory that was already freed) when destroying m_reconnections. Fix this by calling m_reconnections.clear() in CConnman::Stop() and add appropriate annotations.
This commit is contained in:
@@ -3483,6 +3483,8 @@ void CConnman::StopThreads()
|
||||
|
||||
void CConnman::StopNodes()
|
||||
{
|
||||
AssertLockNotHeld(m_reconnections_mutex);
|
||||
|
||||
if (fAddressesInitialized) {
|
||||
DumpAddresses();
|
||||
fAddressesInitialized = false;
|
||||
@@ -3510,6 +3512,7 @@ void CConnman::StopNodes()
|
||||
DeleteNode(pnode);
|
||||
}
|
||||
m_nodes_disconnected.clear();
|
||||
WITH_LOCK(m_reconnections_mutex, m_reconnections.clear());
|
||||
vhListenSocket.clear();
|
||||
semOutbound.reset();
|
||||
semAddnode.reset();
|
||||
|
||||
@@ -1138,9 +1138,10 @@ public:
|
||||
bool Start(CScheduler& scheduler, const Options& options) EXCLUSIVE_LOCKS_REQUIRED(!m_total_bytes_sent_mutex, !m_added_nodes_mutex, !m_addr_fetches_mutex, !mutexMsgProc);
|
||||
|
||||
void StopThreads();
|
||||
void StopNodes();
|
||||
void Stop()
|
||||
void StopNodes() EXCLUSIVE_LOCKS_REQUIRED(!m_reconnections_mutex);
|
||||
void Stop() EXCLUSIVE_LOCKS_REQUIRED(!m_reconnections_mutex)
|
||||
{
|
||||
AssertLockNotHeld(m_reconnections_mutex);
|
||||
StopThreads();
|
||||
StopNodes();
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user