extern crate std;
use crate::Error;
use core::num::NonZeroU32;
use core::ptr;
use std::io;
fn kern_arnd(buf: &mut [u8]) -> Result<usize, Error> {
static MIB: [libc::c_int; 2] = [libc::CTL_KERN, libc::KERN_ARND];
let mut len = buf.len();
let ret = unsafe {
libc::sysctl(
MIB.as_ptr(),
MIB.len() as libc::c_uint,
buf.as_mut_ptr() as *mut _,
&mut len,
ptr::null(),
0,
)
};
if ret == -1 {
error!("freebsd: kern.arandom syscall failed");
return Err(io::Error::last_os_error().into());
}
Ok(len)
}
pub fn getrandom_inner(dest: &mut [u8]) -> Result<(), Error> {
let mut start = 0;
while start < dest.len() {
start += kern_arnd(&mut dest[start..])?;
}
Ok(())
}
#[inline(always)]
pub fn error_msg_inner(_: NonZeroU32) -> Option<&'static str> {
None
}