syscalls/errno/mod.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223
#[macro_use]
mod macros;
mod generated;
#[cfg(feature = "std")]
mod last;
use core::fmt;
pub use self::generated::Errno;
impl Errno {
/// Operation would block. This is the same as [`Errno::EAGAIN`].
pub const EWOULDBLOCK: Self = Self::EAGAIN;
/// Same as [`Errno::EDEADLK`].
pub const EDEADLOCK: Self = Self::EDEADLK;
/// Creates a new `Errno`.
pub fn new(num: i32) -> Self {
Self(num)
}
/// Converts the `Errno` into a raw `i32`.
pub fn into_raw(self) -> i32 {
self.0
}
/// Returns true if the error code is valid (i.e., less than 4096).
pub fn is_valid(&self) -> bool {
self.0 < 4096
}
/// Converts a raw syscall return value to a result.
#[inline(always)]
pub fn from_ret(value: usize) -> Result<usize, Errno> {
if value > -4096isize as usize {
// Truncation of the error value is guaranteed to never occur due to
// the above check. This is the same check that musl uses:
// https://git.musl-libc.org/cgit/musl/tree/src/internal/syscall_ret.c?h=v1.1.15
Err(Self(-(value as i32)))
} else {
Ok(value)
}
}
/// Returns the last error that occurred.
#[cfg(feature = "std")]
pub fn last() -> Self {
Self(unsafe { *last::errno() })
}
/// Converts a value into an `Errno`.
#[cfg(feature = "std")]
pub fn result<T>(value: T) -> Result<T, Errno>
where
T: ErrnoSentinel + PartialEq<T>,
{
if value == T::sentinel() {
Err(Self::last())
} else {
Ok(value)
}
}
/// Returns the name of the error. If the internal error code is unknown or
/// invalid, `None` is returned.
pub fn name(&self) -> Option<&'static str> {
self.name_and_description().map(|x| x.0)
}
/// Returns the error description. If the internal error code is unknown or
/// invalid, `None` is returned.
pub fn description(&self) -> Option<&'static str> {
self.name_and_description().map(|x| x.1)
}
/// Converts an `std::io::Error` into an `Errno` if possible. Since an error
/// code is just one of the few possible error types that `std::io::Error`
/// can represent, this will return `None` if the conversion is not possible.
///
/// A `From<std::io::Error>` implementation is not provided because this
/// conversion can fail. However, the reverse is possible, so that is
/// provided as a `From` implementation.
#[cfg(feature = "std")]
pub fn from_io_error(err: std::io::Error) -> Option<Self> {
err.raw_os_error().map(Self::new)
}
}
impl fmt::Display for Errno {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
match self.name_and_description() {
Some((name, description)) => {
write!(f, "{} {name} ({description})", -self.0)
}
None => {
if self.is_valid() {
write!(f, "{}", -self.0)
} else {
write!(f, "Invalid errno {:#x}", self.0)
}
}
}
}
}
impl fmt::Debug for Errno {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
match self.name() {
Some(name) => f.write_str(name),
None => write!(f, "Errno({})", self.0),
}
}
}
#[cfg(feature = "std")]
impl From<Errno> for std::io::Error {
fn from(err: Errno) -> Self {
std::io::Error::from_raw_os_error(err.into_raw())
}
}
#[cfg(feature = "std")]
impl std::error::Error for Errno {}
pub trait ErrnoSentinel: Sized {
fn sentinel() -> Self;
}
impl ErrnoSentinel for isize {
fn sentinel() -> Self {
-1
}
}
impl ErrnoSentinel for i32 {
fn sentinel() -> Self {
-1
}
}
impl ErrnoSentinel for i64 {
fn sentinel() -> Self {
-1
}
}
impl ErrnoSentinel for *mut core::ffi::c_void {
fn sentinel() -> Self {
-1isize as *mut core::ffi::c_void
}
}
impl ErrnoSentinel for usize {
fn sentinel() -> Self {
usize::MAX
}
}
#[cfg(test)]
mod test {
use super::*;
#[test]
fn basic() {
assert_eq!(Errno::ENOENT.name(), Some("ENOENT"));
assert_eq!(
Errno::ENOENT.description(),
Some("No such file or directory")
);
#[cfg(feature = "std")]
{
assert_eq!(
format!("{}", Errno::ENOENT),
"-2 ENOENT (No such file or directory)"
);
assert_eq!(format!("{:?}", Errno::ENOENT), "ENOENT");
}
}
#[test]
fn from_ret() {
assert_eq!(Errno::from_ret(-2isize as usize), Err(Errno::ENOENT));
assert_eq!(Errno::from_ret(2), Ok(2));
}
#[cfg(feature = "std")]
#[test]
fn io_error() {
use std::io;
assert_eq!(
io::Error::from(Errno::ENOENT).kind(),
io::ErrorKind::NotFound
);
assert_eq!(
Errno::from_io_error(io::Error::from_raw_os_error(2)),
Some(Errno::ENOENT)
);
assert_eq!(
Errno::from_io_error(io::Error::new(io::ErrorKind::Other, "")),
None
);
}
#[cfg(feature = "std")]
#[test]
fn last_errno() {
assert_eq!(
Errno::result(unsafe {
libc::open(
b"this_should_not_exist\0".as_ptr() as *const _,
libc::O_RDONLY,
)
}),
Err(Errno::ENOENT)
);
}
}