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
#[cfg(all(target_vendor = "apple", not(feature = "getrandom")))]
pub use darwin::entropy as system;
#[cfg(all(
any(target_os = "linux", target_os = "android"),
not(feature = "getrandom")
))]
pub use linux::entropy as system;
#[cfg(all(windows, not(target_vendor = "uwp"), not(feature = "getrandom")))]
pub use windows::entropy as system;
#[cfg(all(windows, target_vendor = "uwp", not(feature = "getrandom")))]
pub use windows_uwp::entropy as system;
#[cfg(all(
any(target_os = "linux", target_os = "android"),
not(feature = "getrandom")
))]
pub mod linux;
#[cfg(all(target_vendor = "apple", not(feature = "getrandom")))]
pub mod darwin;
#[cfg(all(windows, target_vendor = "uwp", not(feature = "getrandom")))]
pub mod windows_uwp;
#[cfg(all(windows, not(target_vendor = "uwp"), not(feature = "getrandom")))]
pub mod windows;
#[cfg(feature = "getrandom")]
pub fn system(out: &mut [u8]) {
match getrandom::getrandom(out) {
Ok(_) => (),
Err(_) => backup(out),
}
}
#[cfg(not(any(
feature = "getrandom",
target_os = "linux",
target_os = "android",
target_vendor = "apple",
windows
)))]
pub fn system(out: &mut [u8]) {
backup_entropy(out);
}
#[cfg(feature = "rdseed")]
#[cfg(any(target_arch = "x86", target_arch = "x86_64"))]
fn stupid_rdseed_hack() -> Option<u64> {
#[cfg(target_arch = "x86")]
use core::arch::x86::_rdseed64_step as rdseed;
#[cfg(target_arch = "x86_64")]
use core::arch::x86_64::_rdseed64_step as rdseed;
let mut x = 0;
for _ in 0..10 {
if 0 != unsafe { rdseed(&mut x) } {
return Some(x);
}
}
None
}
#[cfg(all(feature = "rdseed", any(target_arch = "x86", target_arch = "x86_64")))]
pub fn rdseed(out: &mut [u8]) -> Option<usize> {
if !std::is_x86_feature_detected!("rdseed") {
return None;
}
let amt = out.len();
let mut bytes_pulled: usize = 0;
let rdseed_amt = ((amt + core::mem::size_of::<u64>() - 1) / core::mem::size_of::<u64>()).max(0);
for n in 0..rdseed_amt {
let seed = match stupid_rdseed_hack() {
Some(s) => s,
None => return Some(bytes_pulled),
};
let x = seed.to_ne_bytes();
bytes_pulled += x.len();
x.iter()
.enumerate()
.for_each(|(i, val)| out[(core::mem::size_of::<u64>() * n) + i] = *val);
}
Some(bytes_pulled)
}
#[cfg(any(
not(feature = "rdseed"),
not(any(target_arch = "x86", target_arch = "x86_64"))
))]
pub fn rdseed(_out: &mut [u8]) -> Option<usize> {
None
}
#[cfg(feature = "std")]
pub fn backup(out: &mut [u8]) {
if let Some(amt) = rdseed(out) {
if amt >= out.len() {
return;
}
};
panic!("Failed to source sufficient entropy!")
}
#[cfg(not(feature = "std"))]
pub fn backup_entropy(_: &mut [u8]) {
panic!("Failed to source any entropy!")
}