mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 17:44:08 +00:00
parallel-tactic: fix deadlocking race between shutdown and get_task (#6152)
Deadlock/Race is as follows: 1. get_task() reads m_shutdown == false and enters loop body 2. shutdown() is called; sets m_shutdown = true 3. shutdown() calls m_cond.notify_all() 4. get_task() finds no task in try_get_task() 5. get_task() calls m_cond.wait(), missing the notification 6. solve() waits forever on join() Provided patch wraps (2) and (3) with the condition variable lock so that step (5) cannot miss the notification. Co-authored-by: Anthony Romano <anthony@forallsecure.com>
This commit is contained in:
parent
99212a2726
commit
7ae1a338a7
|
@ -113,9 +113,9 @@ class parallel_tactic : public tactic {
|
|||
|
||||
void shutdown() {
|
||||
if (!m_shutdown) {
|
||||
std::lock_guard<std::mutex> lock(m_mutex);
|
||||
m_shutdown = true;
|
||||
m_cond.notify_all();
|
||||
std::lock_guard<std::mutex> lock(m_mutex);
|
||||
for (solver_state* st : m_active) {
|
||||
st->m().limit().cancel();
|
||||
}
|
||||
|
@ -147,7 +147,9 @@ class parallel_tactic : public tactic {
|
|||
}
|
||||
{
|
||||
std::unique_lock<std::mutex> lock(m_mutex);
|
||||
m_cond.wait(lock);
|
||||
if (!m_shutdown) {
|
||||
m_cond.wait(lock);
|
||||
}
|
||||
}
|
||||
dec_wait();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue