summaryrefslogtreecommitdiffstats
path: root/vendor/rustix/src/backend/libc/rand/syscalls.rs
blob: 2dcff139ef11600389923f218b91bc8378f77560 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! libc syscalls supporting `rustix::rand`.

#[cfg(any(target_os = "android", target_os = "linux"))]
use {super::super::c, super::super::conv::ret_usize, crate::io, crate::rand::GetRandomFlags};

#[cfg(any(target_os = "android", target_os = "linux"))]
pub(crate) fn getrandom(buf: &mut [u8], flags: GetRandomFlags) -> io::Result<usize> {
    // `getrandom` wasn't supported in glibc until 2.25.
    weak_or_syscall! {
        fn getrandom(buf: *mut c::c_void, buflen: c::size_t, flags: c::c_uint) via SYS_getrandom -> c::ssize_t
    }

    unsafe { ret_usize(getrandom(buf.as_mut_ptr().cast(), buf.len(), flags.bits())) }
}