Skip to content

Commit 1e3d2fb

Browse files
authored
Rollup merge of #120351 - Ayush1325:uefi-time, r=m-ou-se
Implement SystemTime for UEFI - Uses SystemTable->RuntimeServices->GetTime() - Uses the algorithm described [here](https://blog.reverberate.org/2020/05/12/optimizing-date-algorithms.html) for conversion to UNIX time
2 parents e28fae5 + 92d4060 commit 1e3d2fb

File tree

4 files changed

+133
-1
lines changed

4 files changed

+133
-1
lines changed

library/std/src/sys/pal/uefi/helpers.rs

+8
Original file line numberDiff line numberDiff line change
@@ -146,3 +146,11 @@ pub(crate) fn image_handle_protocol<T>(protocol_guid: Guid) -> Option<NonNull<T>
146146
let system_handle = uefi::env::try_image_handle()?;
147147
open_protocol(system_handle, protocol_guid).ok()
148148
}
149+
150+
/// Get RuntimeServices
151+
pub(crate) fn runtime_services() -> Option<NonNull<r_efi::efi::RuntimeServices>> {
152+
let system_table: NonNull<r_efi::efi::SystemTable> =
153+
crate::os::uefi::env::try_system_table()?.cast();
154+
let runtime_services = unsafe { (*system_table.as_ptr()).runtime_services };
155+
NonNull::new(runtime_services)
156+
}

library/std/src/sys/pal/uefi/mod.rs

-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ pub mod thread;
3838
pub mod thread_local_key;
3939
#[path = "../unsupported/thread_parking.rs"]
4040
pub mod thread_parking;
41-
#[path = "../unsupported/time.rs"]
4241
pub mod time;
4342

4443
mod helpers;

library/std/src/sys/pal/uefi/tests.rs

+20
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
use super::alloc::*;
2+
use super::time::*;
3+
use crate::time::Duration;
24

35
#[test]
46
fn align() {
@@ -19,3 +21,21 @@ fn align() {
1921
}
2022
}
2123
}
24+
25+
#[test]
26+
fn epoch() {
27+
let t = r_efi::system::Time {
28+
year: 1970,
29+
month: 1,
30+
day: 1,
31+
hour: 0,
32+
minute: 0,
33+
second: 0,
34+
nanosecond: 0,
35+
timezone: r_efi::efi::UNSPECIFIED_TIMEZONE,
36+
daylight: 0,
37+
pad1: 0,
38+
pad2: 0,
39+
};
40+
assert_eq!(system_time_internal::uefi_time_to_duration(t), Duration::new(0, 0));
41+
}

library/std/src/sys/pal/uefi/time.rs

+105
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,105 @@
1+
use crate::time::Duration;
2+
3+
const SECS_IN_MINUTE: u64 = 60;
4+
const SECS_IN_HOUR: u64 = SECS_IN_MINUTE * 60;
5+
const SECS_IN_DAY: u64 = SECS_IN_HOUR * 24;
6+
7+
#[derive(Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Debug, Hash)]
8+
pub struct Instant(Duration);
9+
10+
#[derive(Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Debug, Hash)]
11+
pub struct SystemTime(Duration);
12+
13+
pub const UNIX_EPOCH: SystemTime = SystemTime(Duration::from_secs(0));
14+
15+
impl Instant {
16+
pub fn now() -> Instant {
17+
panic!("time not implemented on this platform")
18+
}
19+
20+
pub fn checked_sub_instant(&self, other: &Instant) -> Option<Duration> {
21+
self.0.checked_sub(other.0)
22+
}
23+
24+
pub fn checked_add_duration(&self, other: &Duration) -> Option<Instant> {
25+
Some(Instant(self.0.checked_add(*other)?))
26+
}
27+
28+
pub fn checked_sub_duration(&self, other: &Duration) -> Option<Instant> {
29+
Some(Instant(self.0.checked_sub(*other)?))
30+
}
31+
}
32+
33+
impl SystemTime {
34+
pub fn now() -> SystemTime {
35+
system_time_internal::now()
36+
.unwrap_or_else(|| panic!("time not implemented on this platform"))
37+
}
38+
39+
pub fn sub_time(&self, other: &SystemTime) -> Result<Duration, Duration> {
40+
self.0.checked_sub(other.0).ok_or_else(|| other.0 - self.0)
41+
}
42+
43+
pub fn checked_add_duration(&self, other: &Duration) -> Option<SystemTime> {
44+
Some(SystemTime(self.0.checked_add(*other)?))
45+
}
46+
47+
pub fn checked_sub_duration(&self, other: &Duration) -> Option<SystemTime> {
48+
Some(SystemTime(self.0.checked_sub(*other)?))
49+
}
50+
}
51+
52+
pub(crate) mod system_time_internal {
53+
use super::super::helpers;
54+
use super::*;
55+
use crate::mem::MaybeUninit;
56+
use crate::ptr::NonNull;
57+
use r_efi::efi::{RuntimeServices, Time};
58+
59+
pub fn now() -> Option<SystemTime> {
60+
let runtime_services: NonNull<RuntimeServices> = helpers::runtime_services()?;
61+
let mut t: MaybeUninit<Time> = MaybeUninit::uninit();
62+
let r = unsafe {
63+
((*runtime_services.as_ptr()).get_time)(t.as_mut_ptr(), crate::ptr::null_mut())
64+
};
65+
66+
if r.is_error() {
67+
return None;
68+
}
69+
70+
let t = unsafe { t.assume_init() };
71+
72+
Some(SystemTime(uefi_time_to_duration(t)))
73+
}
74+
75+
// This algorithm is based on the one described in the post
76+
// https://blog.reverberate.org/2020/05/12/optimizing-date-algorithms.html
77+
pub const fn uefi_time_to_duration(t: r_efi::system::Time) -> Duration {
78+
assert!(t.month <= 12);
79+
assert!(t.month != 0);
80+
81+
const YEAR_BASE: u32 = 4800; /* Before min year, multiple of 400. */
82+
83+
// Calculate the number of days since 1/1/1970
84+
// Use 1 March as the start
85+
let (m_adj, overflow): (u32, bool) = (t.month as u32).overflowing_sub(3);
86+
let (carry, adjust): (u32, u32) = if overflow { (1, 12) } else { (0, 0) };
87+
let y_adj: u32 = (t.year as u32) + YEAR_BASE - carry;
88+
let month_days: u32 = (m_adj.wrapping_add(adjust) * 62719 + 769) / 2048;
89+
let leap_days: u32 = y_adj / 4 - y_adj / 100 + y_adj / 400;
90+
let days: u32 = y_adj * 365 + leap_days + month_days + (t.day as u32 - 1) - 2472632;
91+
92+
let localtime_epoch: u64 = (days as u64) * SECS_IN_DAY
93+
+ (t.second as u64)
94+
+ (t.minute as u64) * SECS_IN_MINUTE
95+
+ (t.hour as u64) * SECS_IN_HOUR;
96+
97+
let utc_epoch: u64 = if t.timezone == r_efi::efi::UNSPECIFIED_TIMEZONE {
98+
localtime_epoch
99+
} else {
100+
(localtime_epoch as i64 + (t.timezone as i64) * SECS_IN_MINUTE as i64) as u64
101+
};
102+
103+
Duration::new(utc_epoch, t.nanosecond)
104+
}
105+
}

0 commit comments

Comments
 (0)