1//! Implementations that just need to read from a file
2use crate::{
3 util_libc::{open_readonly, sys_fill_exact},
4 Error,
5};
6use core::{
7 cell::UnsafeCell,
8 mem::MaybeUninit,
9 sync::atomic::{AtomicUsize, Ordering::Relaxed},
10};
1112/// For all platforms, we use `/dev/urandom` rather than `/dev/random`.
13/// For more information see the linked man pages in lib.rs.
14/// - On Linux, "/dev/urandom is preferred and sufficient in all use cases".
15/// - On Redox, only /dev/urandom is provided.
16/// - On AIX, /dev/urandom will "provide cryptographically secure output".
17/// - On Haiku and QNX Neutrino they are identical.
18const FILE_PATH: &str = "/dev/urandom\0";
19const FD_UNINIT: usize = usize::max_value();
2021pub fn getrandom_inner(dest: &mut [MaybeUninit<u8>]) -> Result<(), Error> {
22let fd = get_rng_fd()?;
23 sys_fill_exact(dest, |buf| unsafe {
24 libc::read(fd, buf.as_mut_ptr() as *mut libc::c_void, buf.len())
25 })
26}
2728// Returns the file descriptor for the device file used to retrieve random
29// bytes. The file will be opened exactly once. All subsequent calls will
30// return the same file descriptor. This file descriptor is never closed.
31fn get_rng_fd() -> Result<libc::c_int, Error> {
32static FD: AtomicUsize = AtomicUsize::new(FD_UNINIT);
33fn get_fd() -> Option<libc::c_int> {
34match FD.load(Relaxed) {
35 FD_UNINIT => None,
36 val => Some(val as libc::c_int),
37 }
38 }
3940// Use double-checked locking to avoid acquiring the lock if possible.
41if let Some(fd) = get_fd() {
42return Ok(fd);
43 }
4445// SAFETY: We use the mutex only in this method, and we always unlock it
46 // before returning, making sure we don't violate the pthread_mutex_t API.
47static MUTEX: Mutex = Mutex::new();
48unsafe { MUTEX.lock() };
49let _guard = DropGuard(|| unsafe { MUTEX.unlock() });
5051if let Some(fd) = get_fd() {
52return Ok(fd);
53 }
5455// On Linux, /dev/urandom might return insecure values.
56#[cfg(any(target_os = "android", target_os = "linux"))]
57wait_until_rng_ready()?;
5859let fd = unsafe { open_readonly(FILE_PATH)? };
60// The fd always fits in a usize without conflicting with FD_UNINIT.
61debug_assert!(fd >= 0 && (fd as usize) < FD_UNINIT);
62 FD.store(fd as usize, Relaxed);
6364Ok(fd)
65}
6667// Succeeds once /dev/urandom is safe to read from
68#[cfg(any(target_os = "android", target_os = "linux"))]
69fn wait_until_rng_ready() -> Result<(), Error> {
70// Poll /dev/random to make sure it is ok to read from /dev/urandom.
71let fd = unsafe { open_readonly("/dev/random\0")? };
72let mut pfd = libc::pollfd {
73 fd,
74 events: libc::POLLIN,
75 revents: 0,
76 };
77let _guard = DropGuard(|| unsafe {
78 libc::close(fd);
79 });
8081loop {
82// A negative timeout means an infinite timeout.
83let res = unsafe { libc::poll(&mut pfd, 1, -1) };
84if res >= 0 {
85debug_assert_eq!(res, 1); // We only used one fd, and cannot timeout.
86return Ok(());
87 }
88let err = crate::util_libc::last_os_error();
89match err.raw_os_error() {
90Some(libc::EINTR) | Some(libc::EAGAIN) => continue,
91_ => return Err(err),
92 }
93 }
94}
9596struct Mutex(UnsafeCell<libc::pthread_mutex_t>);
9798impl Mutex {
99const fn new() -> Self {
100Self(UnsafeCell::new(libc::PTHREAD_MUTEX_INITIALIZER))
101 }
102unsafe fn lock(&self) {
103let r = libc::pthread_mutex_lock(self.0.get());
104debug_assert_eq!(r, 0);
105 }
106unsafe fn unlock(&self) {
107let r = libc::pthread_mutex_unlock(self.0.get());
108debug_assert_eq!(r, 0);
109 }
110}
111112unsafe impl Sync for Mutex {}
113114struct DropGuard<F: FnMut()>(F);
115116impl<F: FnMut()> Drop for DropGuard<F> {
117fn drop(&mut self) {
118self.0()
119 }
120}