1#![allow(dead_code)]
2use crate::Error;
3use core::{
4 mem::MaybeUninit,
5 num::NonZeroU32,
6 ptr::NonNull,
7 sync::atomic::{fence, AtomicPtr, Ordering},
8};
9use libc::c_void;
1011cfg_if! {
12if #[cfg(any(target_os = "netbsd", target_os = "openbsd", target_os = "android"))] {
13use libc::__errno as errno_location;
14 } else if #[cfg(any(target_os = "linux", target_os = "emscripten", target_os = "hurd", target_os = "redox", target_os = "dragonfly"))] {
15use libc::__errno_location as errno_location;
16 } else if #[cfg(any(target_os = "solaris", target_os = "illumos"))] {
17use libc::___errno as errno_location;
18 } else if #[cfg(any(target_os = "macos", target_os = "freebsd"))] {
19use libc::__error as errno_location;
20 } else if #[cfg(target_os = "haiku")] {
21use libc::_errnop as errno_location;
22 } else if #[cfg(target_os = "nto")] {
23use libc::__get_errno_ptr as errno_location;
24 } else if #[cfg(any(all(target_os = "horizon", target_arch = "arm"), target_os = "vita"))] {
25extern "C" {
26// Not provided by libc: https://github.com/rust-lang/libc/issues/1995
27fn __errno() -> *mut libc::c_int;
28 }
29use __errno as errno_location;
30 } else if #[cfg(target_os = "aix")] {
31use libc::_Errno as errno_location;
32 }
33}
3435cfg_if! {
36if #[cfg(target_os = "vxworks")] {
37use libc::errnoGet as get_errno;
38 } else {
39unsafe fn get_errno() -> libc::c_int { *errno_location() }
40 }
41}
4243pub fn last_os_error() -> Error {
44let errno = unsafe { get_errno() };
45if errno > 0 {
46 Error::from(NonZeroU32::new(errno as u32).unwrap())
47 } else {
48 Error::ERRNO_NOT_POSITIVE
49 }
50}
5152// Fill a buffer by repeatedly invoking a system call. The `sys_fill` function:
53// - should return -1 and set errno on failure
54// - should return the number of bytes written on success
55pub fn sys_fill_exact(
56mut buf: &mut [MaybeUninit<u8>],
57 sys_fill: impl Fn(&mut [MaybeUninit<u8>]) -> libc::ssize_t,
58) -> Result<(), Error> {
59while !buf.is_empty() {
60let res = sys_fill(buf);
61match res {
62 res if res > 0 => buf = buf.get_mut(res as usize..).ok_or(Error::UNEXPECTED)?,
63 -1 => {
64let err = last_os_error();
65// We should try again if the call was interrupted.
66if err.raw_os_error() != Some(libc::EINTR) {
67return Err(err);
68 }
69 }
70// Negative return codes not equal to -1 should be impossible.
71 // EOF (ret = 0) should be impossible, as the data we are reading
72 // should be an infinite stream of random bytes.
73_ => return Err(Error::UNEXPECTED),
74 }
75 }
76Ok(())
77}
7879// A "weak" binding to a C function that may or may not be present at runtime.
80// Used for supporting newer OS features while still building on older systems.
81// Based off of the DlsymWeak struct in libstd:
82// https://github.com/rust-lang/rust/blob/1.61.0/library/std/src/sys/unix/weak.rs#L84
83// except that the caller must manually cast self.ptr() to a function pointer.
84pub struct Weak {
85 name: &'static str,
86 addr: AtomicPtr<c_void>,
87}
8889impl Weak {
90// A non-null pointer value which indicates we are uninitialized. This
91 // constant should ideally not be a valid address of a function pointer.
92 // However, if by chance libc::dlsym does return UNINIT, there will not
93 // be undefined behavior. libc::dlsym will just be called each time ptr()
94 // is called. This would be inefficient, but correct.
95 // TODO: Replace with core::ptr::invalid_mut(1) when that is stable.
96const UNINIT: *mut c_void = 1 as *mut c_void;
9798// Construct a binding to a C function with a given name. This function is
99 // unsafe because `name` _must_ be null terminated.
100pub const unsafe fn new(name: &'static str) -> Self {
101Self {
102 name,
103 addr: AtomicPtr::new(Self::UNINIT),
104 }
105 }
106107// Return the address of a function if present at runtime. Otherwise,
108 // return None. Multiple callers can call ptr() concurrently. It will
109 // always return _some_ value returned by libc::dlsym. However, the
110 // dlsym function may be called multiple times.
111pub fn ptr(&self) -> Option<NonNull<c_void>> {
112// Despite having only a single atomic variable (self.addr), we still
113 // cannot always use Ordering::Relaxed, as we need to make sure a
114 // successful call to dlsym() is "ordered before" any data read through
115 // the returned pointer (which occurs when the function is called).
116 // Our implementation mirrors that of the one in libstd, meaning that
117 // the use of non-Relaxed operations is probably unnecessary.
118match self.addr.load(Ordering::Relaxed) {
119Self::UNINIT => {
120let symbol = self.name.as_ptr() as *const _;
121let addr = unsafe { libc::dlsym(libc::RTLD_DEFAULT, symbol) };
122// Synchronizes with the Acquire fence below
123self.addr.store(addr, Ordering::Release);
124 NonNull::new(addr)
125 }
126 addr => {
127let func = NonNull::new(addr)?;
128 fence(Ordering::Acquire);
129Some(func)
130 }
131 }
132 }
133}
134135// SAFETY: path must be null terminated, FD must be manually closed.
136pub unsafe fn open_readonly(path: &str) -> Result<libc::c_int, Error> {
137debug_assert_eq!(path.as_bytes().last(), Some(&0));
138loop {
139let fd = libc::open(path.as_ptr() as *const _, libc::O_RDONLY | libc::O_CLOEXEC);
140if fd >= 0 {
141return Ok(fd);
142 }
143let err = last_os_error();
144// We should try again if open() was interrupted.
145if err.raw_os_error() != Some(libc::EINTR) {
146return Err(err);
147 }
148 }
149}
150151/// Thin wrapper around the `getrandom()` Linux system call
152#[cfg(any(target_os = "android", target_os = "linux"))]
153pub fn getrandom_syscall(buf: &mut [MaybeUninit<u8>]) -> libc::ssize_t {
154unsafe {
155 libc::syscall(
156 libc::SYS_getrandom,
157 buf.as_mut_ptr() as *mut libc::c_void,
158 buf.len(),
1590,
160 ) as libc::ssize_t
161 }
162}