forked from rust-random/getrandom
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Hermit: use sys_read_entropy syscall (rust-random#333)
* Hermit: use sys_read_entropy syscall * Add doc link
- Loading branch information
Showing
2 changed files
with
25 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
use crate::Error; | ||
use core::{cmp::min, mem::MaybeUninit, num::NonZeroU32}; | ||
|
||
extern "C" { | ||
fn sys_read_entropy(buffer: *mut u8, length: usize, flags: u32) -> isize; | ||
} | ||
|
||
pub fn getrandom_inner(mut dest: &mut [MaybeUninit<u8>]) -> Result<(), Error> { | ||
while !dest.is_empty() { | ||
let res = unsafe { sys_read_entropy(dest.as_mut_ptr() as *mut u8, dest.len(), 0) }; | ||
if res < 0 { | ||
// SAFETY: all Hermit error codes use i32 under the hood: | ||
// https://github.com/hermitcore/libhermit-rs/blob/master/src/errno.rs | ||
let code = unsafe { NonZeroU32::new_unchecked((-res) as u32) }; | ||
return Err(code.into()); | ||
} | ||
let len = min(res as usize, dest.len()); | ||
dest = &mut dest[len..]; | ||
} | ||
Ok(()) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters