extern crate std;
use crate::Error;
use core::num::NonZeroU32;
use lazy_static::lazy_static;
use std::{
fs::File,
io::Read,
os::unix::io::{FromRawFd, IntoRawFd, RawFd},
};
#[cfg(target_os = "redox")]
const FILE_PATH: &str = "rand:";
#[cfg(any(target_os = "android", target_os = "linux", target_os = "netbsd"))]
const FILE_PATH: &str = "/dev/urandom";
#[cfg(any(
target_os = "dragonfly",
target_os = "emscripten",
target_os = "haiku",
target_os = "solaris",
target_os = "illumos"
))]
const FILE_PATH: &str = "/dev/random";
pub fn getrandom_inner(dest: &mut [u8]) -> Result<(), Error> {
lazy_static! {
static ref RNG_FD: Result<RawFd, Error> = init_file();
}
let mut f = unsafe { File::from_raw_fd((*RNG_FD)?) };
if cfg!(target_os = "emscripten") {
for chunk in dest.chunks_mut(65536) {
f.read_exact(chunk)?;
}
} else {
f.read_exact(dest)?;
}
Ok(())
}
fn init_file() -> Result<RawFd, Error> {
if FILE_PATH == "/dev/urandom" {
File::open("/dev/random")?.read_exact(&mut [0u8; 1])?;
}
Ok(File::open(FILE_PATH)?.into_raw_fd())
}
#[inline(always)]
#[allow(dead_code)]
pub fn error_msg_inner(_: NonZeroU32) -> Option<&'static str> {
None
}