Skip to content

Commit 6b0ce8b

Browse files
committed
Auto merge of #3495 - RalfJung:data-race-clocks, r=RalfJung
data_race: make the release/acquire API more clear
2 parents 9713ff4 + 8cab0d5 commit 6b0ce8b

File tree

6 files changed

+119
-124
lines changed

6 files changed

+119
-124
lines changed

src/tools/miri/src/alloc_addresses/mod.rs

+10-10
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ use rustc_data_structures::fx::{FxHashMap, FxHashSet};
1313
use rustc_span::Span;
1414
use rustc_target::abi::{Align, HasDataLayout, Size};
1515

16-
use crate::*;
16+
use crate::{concurrency::VClock, *};
1717

1818
use self::reuse_pool::ReusePool;
1919

@@ -171,8 +171,10 @@ trait EvalContextExtPriv<'mir, 'tcx: 'mir>: crate::MiriInterpCxExt<'mir, 'tcx> {
171171
memory_kind,
172172
ecx.get_active_thread(),
173173
) {
174-
if let Some(data_race) = &ecx.machine.data_race {
175-
data_race.validate_lock_acquire(&clock, ecx.get_active_thread());
174+
if let Some(clock) = clock
175+
&& let Some(data_race) = &ecx.machine.data_race
176+
{
177+
data_race.acquire_clock(&clock, ecx.get_active_thread());
176178
}
177179
reuse_addr
178180
} else {
@@ -369,15 +371,13 @@ impl<'mir, 'tcx> MiriMachine<'mir, 'tcx> {
369371
// Also remember this address for future reuse.
370372
let thread = self.threads.get_active_thread_id();
371373
global_state.reuse.add_addr(rng, addr, size, align, kind, thread, || {
372-
let mut clock = concurrency::VClock::default();
373374
if let Some(data_race) = &self.data_race {
374-
data_race.validate_lock_release(
375-
&mut clock,
376-
thread,
377-
self.threads.active_thread_ref().current_span(),
378-
);
375+
data_race
376+
.release_clock(thread, self.threads.active_thread_ref().current_span())
377+
.clone()
378+
} else {
379+
VClock::default()
379380
}
380-
clock
381381
})
382382
}
383383
}

src/tools/miri/src/alloc_addresses/reuse_pool.rs

+4-2
Original file line numberDiff line numberDiff line change
@@ -78,14 +78,15 @@ impl ReusePool {
7878
subpool.insert(pos, (addr, size, thread, clock));
7979
}
8080

81+
/// Returns the address to use and optionally a clock we have to synchronize with.
8182
pub fn take_addr(
8283
&mut self,
8384
rng: &mut impl Rng,
8485
size: Size,
8586
align: Align,
8687
kind: MemoryKind,
8788
thread: ThreadId,
88-
) -> Option<(u64, VClock)> {
89+
) -> Option<(u64, Option<VClock>)> {
8990
// Determine whether we'll even attempt a reuse. As above, we don't do reuse for stack addresses.
9091
if kind == MemoryKind::Stack || !rng.gen_bool(self.address_reuse_rate) {
9192
return None;
@@ -122,6 +123,7 @@ impl ReusePool {
122123
let (chosen_addr, chosen_size, chosen_thread, clock) = subpool.remove(idx);
123124
debug_assert!(chosen_size >= size && chosen_addr % align.bytes() == 0);
124125
debug_assert!(cross_thread_reuse || chosen_thread == thread);
125-
Some((chosen_addr, clock))
126+
// No synchronization needed if we reused from the current thread.
127+
Some((chosen_addr, if chosen_thread == thread { None } else { Some(clock) }))
126128
}
127129
}

src/tools/miri/src/concurrency/data_race.rs

+34-43
Original file line numberDiff line numberDiff line change
@@ -547,9 +547,9 @@ impl MemoryCellClocks {
547547
) -> Result<(), DataRace> {
548548
trace!("Unsynchronized read with vectors: {:#?} :: {:#?}", self, thread_clocks);
549549
if !current_span.is_dummy() {
550-
thread_clocks.clock[index].span = current_span;
550+
thread_clocks.clock.index_mut(index).span = current_span;
551551
}
552-
thread_clocks.clock[index].set_read_type(read_type);
552+
thread_clocks.clock.index_mut(index).set_read_type(read_type);
553553
if self.write_was_before(&thread_clocks.clock) {
554554
let race_free = if let Some(atomic) = self.atomic() {
555555
// We must be ordered-after all atomic accesses, reads and writes.
@@ -577,7 +577,7 @@ impl MemoryCellClocks {
577577
) -> Result<(), DataRace> {
578578
trace!("Unsynchronized write with vectors: {:#?} :: {:#?}", self, thread_clocks);
579579
if !current_span.is_dummy() {
580-
thread_clocks.clock[index].span = current_span;
580+
thread_clocks.clock.index_mut(index).span = current_span;
581581
}
582582
if self.write_was_before(&thread_clocks.clock) && self.read <= thread_clocks.clock {
583583
let race_free = if let Some(atomic) = self.atomic() {
@@ -1701,49 +1701,34 @@ impl GlobalState {
17011701
format!("thread `{thread_name}`")
17021702
}
17031703

1704-
/// Acquire a lock, express that the previous call of
1705-
/// `validate_lock_release` must happen before this.
1704+
/// Acquire the given clock into the given thread, establishing synchronization with
1705+
/// the moment when that clock snapshot was taken via `release_clock`.
17061706
/// As this is an acquire operation, the thread timestamp is not
17071707
/// incremented.
1708-
pub fn validate_lock_acquire(&self, lock: &VClock, thread: ThreadId) {
1709-
let (_, mut clocks) = self.load_thread_state_mut(thread);
1708+
pub fn acquire_clock(&self, lock: &VClock, thread: ThreadId) {
1709+
let (_, mut clocks) = self.thread_state_mut(thread);
17101710
clocks.clock.join(lock);
17111711
}
17121712

1713-
/// Release a lock handle, express that this happens-before
1714-
/// any subsequent calls to `validate_lock_acquire`.
1715-
/// For normal locks this should be equivalent to `validate_lock_release_shared`
1716-
/// since an acquire operation should have occurred before, however
1717-
/// for futex & condvar operations this is not the case and this
1718-
/// operation must be used.
1719-
pub fn validate_lock_release(&self, lock: &mut VClock, thread: ThreadId, current_span: Span) {
1720-
let (index, mut clocks) = self.load_thread_state_mut(thread);
1721-
lock.clone_from(&clocks.clock);
1722-
clocks.increment_clock(index, current_span);
1723-
}
1724-
1725-
/// Release a lock handle, express that this happens-before
1726-
/// any subsequent calls to `validate_lock_acquire` as well
1727-
/// as any previous calls to this function after any
1728-
/// `validate_lock_release` calls.
1729-
/// For normal locks this should be equivalent to `validate_lock_release`.
1730-
/// This function only exists for joining over the set of concurrent readers
1731-
/// in a read-write lock and should not be used for anything else.
1732-
pub fn validate_lock_release_shared(
1733-
&self,
1734-
lock: &mut VClock,
1735-
thread: ThreadId,
1736-
current_span: Span,
1737-
) {
1738-
let (index, mut clocks) = self.load_thread_state_mut(thread);
1739-
lock.join(&clocks.clock);
1713+
/// Returns the `release` clock of the given thread.
1714+
/// Other threads can acquire this clock in the future to establish synchronization
1715+
/// with this program point.
1716+
pub fn release_clock(&self, thread: ThreadId, current_span: Span) -> Ref<'_, VClock> {
1717+
// We increment the clock each time this happens, to ensure no two releases
1718+
// can be confused with each other.
1719+
let (index, mut clocks) = self.thread_state_mut(thread);
17401720
clocks.increment_clock(index, current_span);
1721+
drop(clocks);
1722+
// To return a read-only view, we need to release the RefCell
1723+
// and borrow it again.
1724+
let (_index, clocks) = self.thread_state(thread);
1725+
Ref::map(clocks, |c| &c.clock)
17411726
}
17421727

17431728
/// Load the vector index used by the given thread as well as the set of vector clocks
17441729
/// used by the thread.
17451730
#[inline]
1746-
fn load_thread_state_mut(&self, thread: ThreadId) -> (VectorIdx, RefMut<'_, ThreadClockSet>) {
1731+
fn thread_state_mut(&self, thread: ThreadId) -> (VectorIdx, RefMut<'_, ThreadClockSet>) {
17471732
let index = self.thread_info.borrow()[thread]
17481733
.vector_index
17491734
.expect("Loading thread state for thread with no assigned vector");
@@ -1752,17 +1737,26 @@ impl GlobalState {
17521737
(index, clocks)
17531738
}
17541739

1740+
/// Load the vector index used by the given thread as well as the set of vector clocks
1741+
/// used by the thread.
1742+
#[inline]
1743+
fn thread_state(&self, thread: ThreadId) -> (VectorIdx, Ref<'_, ThreadClockSet>) {
1744+
let index = self.thread_info.borrow()[thread]
1745+
.vector_index
1746+
.expect("Loading thread state for thread with no assigned vector");
1747+
let ref_vector = self.vector_clocks.borrow();
1748+
let clocks = Ref::map(ref_vector, |vec| &vec[index]);
1749+
(index, clocks)
1750+
}
1751+
17551752
/// Load the current vector clock in use and the current set of thread clocks
17561753
/// in use for the vector.
17571754
#[inline]
17581755
pub(super) fn current_thread_state(
17591756
&self,
17601757
thread_mgr: &ThreadManager<'_, '_>,
17611758
) -> (VectorIdx, Ref<'_, ThreadClockSet>) {
1762-
let index = self.current_index(thread_mgr);
1763-
let ref_vector = self.vector_clocks.borrow();
1764-
let clocks = Ref::map(ref_vector, |vec| &vec[index]);
1765-
(index, clocks)
1759+
self.thread_state(thread_mgr.get_active_thread_id())
17661760
}
17671761

17681762
/// Load the current vector clock in use and the current set of thread clocks
@@ -1772,10 +1766,7 @@ impl GlobalState {
17721766
&self,
17731767
thread_mgr: &ThreadManager<'_, '_>,
17741768
) -> (VectorIdx, RefMut<'_, ThreadClockSet>) {
1775-
let index = self.current_index(thread_mgr);
1776-
let ref_vector = self.vector_clocks.borrow_mut();
1777-
let clocks = RefMut::map(ref_vector, |vec| &mut vec[index]);
1778-
(index, clocks)
1769+
self.thread_state_mut(thread_mgr.get_active_thread_id())
17791770
}
17801771

17811772
/// Return the current thread, should be the same

src/tools/miri/src/concurrency/init_once.rs

+5-7
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ pub enum InitOnceStatus {
4141
pub(super) struct InitOnce<'mir, 'tcx> {
4242
status: InitOnceStatus,
4343
waiters: VecDeque<InitOnceWaiter<'mir, 'tcx>>,
44-
data_race: VClock,
44+
clock: VClock,
4545
}
4646

4747
impl<'mir, 'tcx> VisitProvenance for InitOnce<'mir, 'tcx> {
@@ -61,10 +61,8 @@ trait EvalContextExtPriv<'mir, 'tcx: 'mir>: crate::MiriInterpCxExt<'mir, 'tcx> {
6161
let current_thread = this.get_active_thread();
6262

6363
if let Some(data_race) = &this.machine.data_race {
64-
data_race.validate_lock_acquire(
65-
&this.machine.threads.sync.init_onces[id].data_race,
66-
current_thread,
67-
);
64+
data_race
65+
.acquire_clock(&this.machine.threads.sync.init_onces[id].clock, current_thread);
6866
}
6967
}
7068

@@ -176,7 +174,7 @@ pub trait EvalContextExt<'mir, 'tcx: 'mir>: crate::MiriInterpCxExt<'mir, 'tcx> {
176174

177175
// Each complete happens-before the end of the wait
178176
if let Some(data_race) = &this.machine.data_race {
179-
data_race.validate_lock_release(&mut init_once.data_race, current_thread, current_span);
177+
init_once.clock.clone_from(&data_race.release_clock(current_thread, current_span));
180178
}
181179

182180
// Wake up everyone.
@@ -202,7 +200,7 @@ pub trait EvalContextExt<'mir, 'tcx: 'mir>: crate::MiriInterpCxExt<'mir, 'tcx> {
202200

203201
// Each complete happens-before the end of the wait
204202
if let Some(data_race) = &this.machine.data_race {
205-
data_race.validate_lock_release(&mut init_once.data_race, current_thread, current_span);
203+
init_once.clock.clone_from(&data_race.release_clock(current_thread, current_span));
206204
}
207205

208206
// Wake up one waiting thread, so they can go ahead and try to init this.

0 commit comments

Comments
 (0)