Skip to content

Commit 52aa98a

Browse files
committed
Auto merge of #3932 - rust-lang:epoll-with-vector-clock, r=oli-obk
Add vector clock to epoll ready lists Replaces #3928Fixes#3911
2 parents 97510cd + 81202c8 commit 52aa98a

2 files changed

Lines changed: 67 additions & 15 deletions

File tree

‎src/tools/miri/src/shims/unix/linux/epoll.rs‎

Lines changed: 27 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ use std::io;
44
use std::rc::{Rc,Weak};
55
use std::time::Duration;
66

7+
usecrate::concurrency::VClock;
78
usecrate::shims::unix::fd::{FdId,FileDescriptionRef,WeakFileDescriptionRef};
89
usecrate::shims::unix::*;
910
usecrate::*;
@@ -19,7 +20,7 @@ struct Epoll {
1920
/// and file descriptor value.
2021
// This is an Rc because EpollInterest need to hold a reference to update
2122
// it.
22-
ready_list:Rc<RefCell<BTreeMap<(FdId,i32),EpollEventInstance>>>,
23+
ready_list:Rc<ReadyList>,
2324
/// A list of thread ids blocked on this epoll instance.
2425
thread_id:RefCell<Vec<ThreadId>>,
2526
}
@@ -63,7 +64,7 @@ pub struct EpollEventInterest {
6364
/// <https://man7.org/linux/man-pages/man3/epoll_event.3type.html>
6465
data:u64,
6566
/// Ready list of the epoll instance under which this EpollEventInterest is registered.
66-
ready_list:Rc<RefCell<BTreeMap<(FdId,i32),EpollEventInstance>>>,
67+
ready_list:Rc<ReadyList>,
6768
/// The epoll file description that this EpollEventInterest is registered under.
6869
weak_epfd:WeakFileDescriptionRef,
6970
}
@@ -88,6 +89,12 @@ pub struct EpollReadyEvents {
8889
pubepollerr:bool,
8990
}
9091

92+
#[derive(Debug,Default)]
93+
structReadyList{
94+
mapping:RefCell<BTreeMap<(FdId,i32),EpollEventInstance>>,
95+
clock:RefCell<VClock>,
96+
}
97+
9198
implEpollReadyEvents{
9299
pubfnnew() -> Self{
93100
EpollReadyEvents{
@@ -127,7 +134,7 @@ impl EpollReadyEvents {
127134
}
128135

129136
implEpoll{
130-
fnget_ready_list(&self) -> Rc<RefCell<BTreeMap<(FdId,i32),EpollEventInstance>>>{
137+
fnget_ready_list(&self) -> Rc<ReadyList>{
131138
Rc::clone(&self.ready_list)
132139
}
133140
}
@@ -207,9 +214,6 @@ pub trait EvalContextExt<'tcx>: crate::MiriInterpCxExt<'tcx> {
207214
);
208215
}
209216

210-
letmut epoll_instance = Epoll::default();
211-
epoll_instance.ready_list = Rc::new(RefCell::new(BTreeMap::new()));
212-
213217
let fd = this.machine.fds.insert_new(Epoll::default());
214218
Ok(Scalar::from_i32(fd))
215219
}
@@ -377,7 +381,7 @@ pub trait EvalContextExt<'tcx>: crate::MiriInterpCxExt<'tcx> {
377381
drop(epoll_interest);
378382

379383
// Remove related epoll_interest from ready list.
380-
ready_list.borrow_mut().remove(&epoll_key);
384+
ready_list.mapping.borrow_mut().remove(&epoll_key);
381385

382386
// Remove dangling EpollEventInterest from its global table.
383387
// .unwrap() below should succeed because the file description id must have registered
@@ -471,8 +475,7 @@ pub trait EvalContextExt<'tcx>: crate::MiriInterpCxExt<'tcx> {
471475
let epoll_file_description = epfd
472476
.downcast::<Epoll>()
473477
.ok_or_else(|| err_unsup_format!("non-epoll FD passed to `epoll_wait`"))?;
474-
let binding = epoll_file_description.get_ready_list();
475-
ready_list_empty = binding.borrow_mut().is_empty();
478+
ready_list_empty = epoll_file_description.ready_list.mapping.borrow().is_empty();
476479
thread_ids = epoll_file_description.thread_id.borrow_mut();
477480
}
478481
if timeout == 0 || !ready_list_empty {
@@ -561,9 +564,15 @@ pub trait EvalContextExt<'tcx>: crate::MiriInterpCxExt<'tcx> {
561564
// holds a strong ref to epoll_interest.
562565
let epfd = epoll_interest.borrow().weak_epfd.upgrade().unwrap();
563566
// FIXME: We can randomly pick a thread to unblock.
564-
ifletSome(thread_id) =
565-
epfd.downcast::<Epoll>().unwrap().thread_id.borrow_mut().pop()
566-
{
567+
568+
let epoll = epfd.downcast::<Epoll>().unwrap();
569+
570+
// Synchronize running thread to the epoll ready list.
571+
ifletSome(clock) = &this.release_clock(){
572+
epoll.ready_list.clock.borrow_mut().join(clock);
573+
}
574+
575+
ifletSome(thread_id) = epoll.thread_id.borrow_mut().pop(){
567576
waiter.push(thread_id);
568577
};
569578
}
@@ -617,7 +626,7 @@ fn check_and_update_one_event_interest<'tcx>(
617626
// insert an epoll_return to the ready list.
618627
if flags != 0{
619628
let epoll_key = (id, epoll_event_interest.fd_num);
620-
let ready_list = &mut epoll_event_interest.ready_list.borrow_mut();
629+
let ready_list = &mut epoll_event_interest.ready_list.mapping.borrow_mut();
621630
let event_instance = EpollEventInstance::new(flags, epoll_event_interest.data);
622631
// Triggers the notification by inserting it to the ready list.
623632
ready_list.insert(epoll_key, event_instance);
@@ -644,7 +653,11 @@ fn blocking_epoll_callback<'tcx>(
644653
.ok_or_else(|| err_unsup_format!("non-epoll FD passed to `epoll_wait`"))?;
645654

646655
let ready_list = epoll_file_description.get_ready_list();
647-
letmut ready_list = ready_list.borrow_mut();
656+
657+
// Synchronize waking thread from the epoll ready list.
658+
ecx.acquire_clock(&ready_list.clock.borrow());
659+
660+
letmut ready_list = ready_list.mapping.borrow_mut();
648661
letmut num_of_events:i32 = 0;
649662
letmut array_iter = ecx.project_array_fields(events)?;
650663

‎src/tools/miri/tests/pass-dep/libc/libc-epoll-blocking.rs‎

Lines changed: 40 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//@only-target: linux
2-
// test_epoll_block_then_unblock depends on a deterministic schedule.
2+
// test_epoll_block_then_unblock and test_epoll_race depend on a deterministic schedule.
33
//@compile-flags: -Zmiri-preemption-rate=0
44

55
use std::convert::TryInto;
@@ -12,6 +12,7 @@ fn main() {
1212
test_epoll_block_without_notification();
1313
test_epoll_block_then_unblock();
1414
test_notification_after_timeout();
15+
test_epoll_race();
1516
}
1617

1718
// Using `as` cast since `EPOLLET` wraps around
@@ -137,3 +138,41 @@ fn test_notification_after_timeout() {
137138
let expected_value = fds[0]asu64;
138139
check_epoll_wait::<1>(epfd,&[(expected_event, expected_value)],10);
139140
}
141+
142+
// This test shows a data_race before epoll had vector clocks added.
143+
fntest_epoll_race(){
144+
// Create an epoll instance.
145+
let epfd = unsafe{ libc::epoll_create1(0)};
146+
assert_ne!(epfd, -1);
147+
148+
// Create an eventfd instance.
149+
let flags = libc::EFD_NONBLOCK | libc::EFD_CLOEXEC;
150+
let fd = unsafe{ libc::eventfd(0, flags)};
151+
152+
// Register eventfd with the epoll instance.
153+
letmut ev = libc::epoll_event{events:EPOLL_IN_OUT_ET,u64: fd asu64};
154+
let res = unsafe{ libc::epoll_ctl(epfd, libc::EPOLL_CTL_ADD, fd,&mut ev)};
155+
assert_eq!(res,0);
156+
157+
staticmutVAL:u8 = 0;
158+
let thread1 = thread::spawn(move || {
159+
// Write to the static mut variable.
160+
unsafe{VAL = 1};
161+
// Write to the eventfd instance.
162+
let sized_8_data:[u8;8] = 1_u64.to_ne_bytes();
163+
let res = unsafe{ libc::write(fd, sized_8_data.as_ptr()as*const libc::c_void,8)};
164+
// read returns number of bytes that have been read, which is always 8.
165+
assert_eq!(res,8);
166+
});
167+
thread::yield_now();
168+
// epoll_wait for the event to happen.
169+
let expected_event = u32::try_from(libc::EPOLLIN | libc::EPOLLOUT).unwrap();
170+
let expected_value = u64::try_from(fd).unwrap();
171+
check_epoll_wait::<8>(epfd,&[(expected_event, expected_value)], -1);
172+
// Read from the static mut variable.
173+
#[allow(static_mut_refs)]
174+
unsafe{
175+
assert_eq!(VAL,1)
176+
};
177+
thread1.join().unwrap();
178+
}

0 commit comments

Comments
 (0)