1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
#[cfg(feature = "no_std")]
core::compile_error!("no_std is not supported for posix implementation");
use core::future::Future;
use core::pin::Pin;
use core::{mem, ptr, time, task};
use super::state::TimerState;
use crate::alloc::boxed::Box;
type RawFd = usize;
mod ffi {
use super::*;
#[cfg(any(target_os = "linux", target_os = "android"))]
unsafe fn get_value(info: *mut libc::siginfo_t) -> *const TimerState {
#[repr(C)]
pub struct _timer {
pub si_tid: libc::c_int,
pub si_overrun: libc::c_int,
pub si_sigval: libc::sigval,
}
#[repr(C)]
struct siginfo_timer {
_si_signo: libc::c_int,
_si_errno: libc::c_int,
_si_code: libc::c_int,
_timer: _timer,
}
let value = (*(info as *const libc::siginfo_t as *const siginfo_timer))._timer.si_sigval;
value.sival_ptr as *const TimerState
}
#[cfg(any(target_os = "openbsd", target_os = "netbsd"))]
unsafe fn get_value(info: *mut libc::siginfo_t) -> *const TimerState {
#[repr(C)]
pub struct _timer {
_pid: libc::pid_t,
_uid: libc::uid_t,
_value: libc::sigval,
}
#[repr(C)]
struct siginfo_timer {
_si_signo: libc::c_int,
_si_errno: libc::c_int,
_si_code: libc::c_int,
__pad1: libc::c_int,
_timer: _timer,
}
let value = (*(info as *const libc::siginfo_t as *const siginfo_timer))._timer._value;
value.sival_ptr as *const TimerState
}
#[cfg(any(target_os = "dragonfly", target_os = "freebsd"))]
unsafe fn get_value(info: *mut libc::siginfo_t) -> *const TimerState {
#[repr(C)]
pub struct siginfo_si_value {
pub si_signo: libc::c_int,
pub si_errno: libc::c_int,
pub si_code: libc::c_int,
pub si_pid: libc::pid_t,
pub si_uid: libc::uid_t,
pub si_status: libc::c_int,
pub si_addr: *mut libc::c_void,
pub si_value: libc::sigval,
}
let value = (*(info as *const libc::siginfo_t as *const siginfo_si_value)).si_value;
value.sival_ptr as *const TimerState
}
pub unsafe extern "C" fn timer_handler(_sig: libc::c_int, si: *mut libc::siginfo_t, _uc: *mut libc::c_void) {
let state = get_value(si);
(*state).wake();
}
#[repr(C)]
pub struct itimerspec {
pub it_interval: libc::timespec,
pub it_value: libc::timespec,
}
extern "C" {
pub fn timer_create(clockid: libc::clockid_t, sevp: *mut libc::sigevent, timerid: *mut RawFd) -> libc::c_int;
pub fn timer_settime(timerid: RawFd, flags: libc::c_int, new_value: *const itimerspec, old_value: *mut itimerspec) -> libc::c_int;
pub fn timer_delete(timerid: RawFd);
}
}
const TIMER_SIG: libc::c_int = 40;
fn init() {
let mut sa_mask: libc::sigset_t = unsafe { mem::uninitialized() };
unsafe {
libc::sigemptyset(&mut sa_mask);
}
let timer_sig = libc::sigaction {
sa_flags: libc::SA_SIGINFO,
sa_sigaction: ffi::timer_handler as usize,
sa_mask,
#[cfg(any(target_os = "linux", target_os = "android"))]
sa_restorer: None,
};
unsafe {
assert_ne!(libc::sigaction(TIMER_SIG, &timer_sig, ptr::null_mut()), -1);
}
}
fn time_create(state: *mut TimerState) -> RawFd {
let mut event: libc::sigevent = unsafe { mem::zeroed() };
event.sigev_value = libc::sigval {
sival_ptr: state as *mut _,
};
event.sigev_signo = TIMER_SIG;
event.sigev_notify = libc::SIGEV_SIGNAL;
let mut res = 0;
unsafe {
assert_eq!(ffi::timer_create(libc::CLOCK_MONOTONIC, &mut event, &mut res), 0);
}
res
}
fn set_timer_value(fd: RawFd, timeout: &time::Duration) {
let it_value = libc::timespec {
tv_sec: timeout.as_secs() as libc::time_t,
#[cfg(not(any(target_os = "openbsd", target_os = "netbsd")))]
tv_nsec: timeout.subsec_nanos() as libc::suseconds_t,
#[cfg(any(target_os = "openbsd", target_os = "netbsd"))]
tv_nsec: timeout.subsec_nanos() as libc::c_long,
};
let new_value = ffi::itimerspec {
it_interval: unsafe { mem::zeroed() },
it_value,
};
unsafe {
assert_eq!(ffi::timer_settime(fd, 0, &new_value, ptr::null_mut()), 0);
}
}
enum State {
Init(time::Duration),
Running(RawFd, Box<TimerState>),
}
pub struct PosixTimer {
state: State,
}
impl super::Oneshot for PosixTimer {
fn new(timeout: time::Duration) -> Self {
static RUNTIME: std::sync::Once = std::sync::Once::new();
debug_assert!(!(timeout.as_secs() == 0 && timeout.subsec_nanos() == 0), "Zero timeout makes no sense");
RUNTIME.call_once(init);
Self {
state: State::Init(timeout),
}
}
fn is_ticking(&self) -> bool {
match &self.state {
State::Init(_) => false,
State::Running(_, ref state) => !state.is_done(),
}
}
fn is_expired(&self) -> bool {
match &self.state {
State::Init(_) => false,
State::Running(_, ref state) => state.is_done(),
}
}
fn cancel(&mut self) {
match self.state {
State::Init(_) => (),
State::Running(fd, _) => unsafe {
ffi::timer_settime(fd, 0, &mut mem::zeroed(), ptr::null_mut());
}
}
}
fn restart(&mut self, new_value: &time::Duration, waker: &task::Waker) {
debug_assert!(!(new_value.as_secs() == 0 && new_value.subsec_nanos() == 0), "Zero timeout makes no sense");
match &mut self.state {
State::Init(ref mut timeout) => {
*timeout = *new_value;
},
State::Running(fd, ref mut state) => {
state.register(waker);
set_timer_value(*fd, new_value);
}
}
}
}
impl Future for PosixTimer {
type Output = ();
fn poll(mut self: Pin<&mut Self>, ctx: &mut task::Context) -> task::Poll<Self::Output> {
self.state = match &self.state {
State::Init(ref timeout) => {
let state = Box::into_raw(Box::new(TimerState::new()));
let fd = time_create(state);
let state = unsafe { Box::from_raw(state) };
state.register(ctx.waker());
set_timer_value(fd, timeout);
State::Running(fd, state)
},
State::Running(_, ref state) => match state.is_done() {
false => return task::Poll::Pending,
true => return task::Poll::Ready(()),
}
};
task::Poll::Pending
}
}
impl Drop for PosixTimer {
fn drop(&mut self) {
match self.state {
State::Init(_) => (),
State::Running(fd, _) => unsafe {
ffi::timer_delete(fd);
}
}
}
}