Fix potential overflow sub in timer wheel

This commit is contained in:
Nikolay Kim 2021-11-29 15:30:18 +06:00
parent a5ecfa88f1
commit 4fcfc13e25
3 changed files with 13 additions and 5 deletions

View file

@ -1,5 +1,9 @@
# Changes
## [0.4.10] - 2021-11-29
* Fix potential overflow sub in timer wheel
## [0.4.9] - 2021-11-20
* Update rustls to 0.20

View file

@ -1,6 +1,6 @@
[package]
name = "ntex"
version = "0.4.9"
version = "0.4.10"
authors = ["ntex contributors <team@ntex.rs>"]
description = "Framework for composable network services"
readme = "README.md"

View file

@ -400,7 +400,7 @@ impl Timer {
/// Get next expiry time in millis
fn next_expiry_ms(&mut self) -> u64 {
to_millis(self.next_expiry - self.elapsed)
to_millis(self.next_expiry.saturating_sub(self.elapsed))
}
fn execute_expired_timers(&mut self) {
@ -567,9 +567,13 @@ impl Future for TimerDriver {
if inner.flags.contains(Flags::DRIVER_RECALC) {
inner.flags.remove(Flags::DRIVER_RECALC);
let now = Instant::now();
let deadline = now
+ Duration::from_millis(inner.next_expiry_ms())
.saturating_sub(now - inner.elapsed_time());
let deadline = if let Some(diff) =
now.checked_duration_since(inner.elapsed_time())
{
now + Duration::from_millis(inner.next_expiry_ms()).saturating_sub(diff)
} else {
now + Duration::from_millis(inner.next_expiry_ms())
};
Pin::as_mut(&mut inner.driver_sleep).reset(deadline);
}