xref: /openbmc/linux/rust/kernel/error.rs (revision 086fbfa3)
1 // SPDX-License-Identifier: GPL-2.0
2 
3 //! Kernel errors.
4 //!
5 //! C header: [`include/uapi/asm-generic/errno-base.h`](../../../include/uapi/asm-generic/errno-base.h)
6 
7 use alloc::{
8     alloc::{AllocError, LayoutError},
9     collections::TryReserveError,
10 };
11 
12 use core::convert::From;
13 use core::num::TryFromIntError;
14 use core::str::Utf8Error;
15 
16 /// Contains the C-compatible error codes.
17 pub mod code {
18     macro_rules! declare_err {
19         ($err:tt $(,)? $($doc:expr),+) => {
20             $(
21             #[doc = $doc]
22             )*
23             pub const $err: super::Error = super::Error(-(crate::bindings::$err as i32));
24         };
25     }
26 
27     declare_err!(EPERM, "Operation not permitted.");
28     declare_err!(ENOENT, "No such file or directory.");
29     declare_err!(ESRCH, "No such process.");
30     declare_err!(EINTR, "Interrupted system call.");
31     declare_err!(EIO, "I/O error.");
32     declare_err!(ENXIO, "No such device or address.");
33     declare_err!(E2BIG, "Argument list too long.");
34     declare_err!(ENOEXEC, "Exec format error.");
35     declare_err!(EBADF, "Bad file number.");
36     declare_err!(ECHILD, "Exec format error.");
37     declare_err!(EAGAIN, "Try again.");
38     declare_err!(ENOMEM, "Out of memory.");
39     declare_err!(EACCES, "Permission denied.");
40     declare_err!(EFAULT, "Bad address.");
41     declare_err!(ENOTBLK, "Block device required.");
42     declare_err!(EBUSY, "Device or resource busy.");
43     declare_err!(EEXIST, "File exists.");
44     declare_err!(EXDEV, "Cross-device link.");
45     declare_err!(ENODEV, "No such device.");
46     declare_err!(ENOTDIR, "Not a directory.");
47     declare_err!(EISDIR, "Is a directory.");
48     declare_err!(EINVAL, "Invalid argument.");
49     declare_err!(ENFILE, "File table overflow.");
50     declare_err!(EMFILE, "Too many open files.");
51     declare_err!(ENOTTY, "Not a typewriter.");
52     declare_err!(ETXTBSY, "Text file busy.");
53     declare_err!(EFBIG, "File too large.");
54     declare_err!(ENOSPC, "No space left on device.");
55     declare_err!(ESPIPE, "Illegal seek.");
56     declare_err!(EROFS, "Read-only file system.");
57     declare_err!(EMLINK, "Too many links.");
58     declare_err!(EPIPE, "Broken pipe.");
59     declare_err!(EDOM, "Math argument out of domain of func.");
60     declare_err!(ERANGE, "Math result not representable.");
61 }
62 
63 /// Generic integer kernel error.
64 ///
65 /// The kernel defines a set of integer generic error codes based on C and
66 /// POSIX ones. These codes may have a more specific meaning in some contexts.
67 ///
68 /// # Invariants
69 ///
70 /// The value is a valid `errno` (i.e. `>= -MAX_ERRNO && < 0`).
71 #[derive(Clone, Copy, PartialEq, Eq)]
72 pub struct Error(core::ffi::c_int);
73 
74 impl Error {
75     /// Creates an [`Error`] from a kernel error code.
76     ///
77     /// It is a bug to pass an out-of-range `errno`. `EINVAL` would
78     /// be returned in such a case.
79     pub(crate) fn from_errno(errno: core::ffi::c_int) -> Error {
80         if errno < -(bindings::MAX_ERRNO as i32) || errno >= 0 {
81             // TODO: Make it a `WARN_ONCE` once available.
82             crate::pr_warn!(
83                 "attempted to create `Error` with out of range `errno`: {}",
84                 errno
85             );
86             return code::EINVAL;
87         }
88 
89         // INVARIANT: The check above ensures the type invariant
90         // will hold.
91         Error(errno)
92     }
93 
94     /// Creates an [`Error`] from a kernel error code.
95     ///
96     /// # Safety
97     ///
98     /// `errno` must be within error code range (i.e. `>= -MAX_ERRNO && < 0`).
99     #[allow(dead_code)]
100     unsafe fn from_errno_unchecked(errno: core::ffi::c_int) -> Error {
101         // INVARIANT: The contract ensures the type invariant
102         // will hold.
103         Error(errno)
104     }
105 
106     /// Returns the kernel error code.
107     pub fn to_errno(self) -> core::ffi::c_int {
108         self.0
109     }
110 
111     /// Returns the error encoded as a pointer.
112     #[allow(dead_code)]
113     pub(crate) fn to_ptr<T>(self) -> *mut T {
114         // SAFETY: self.0 is a valid error due to its invariant.
115         unsafe { bindings::ERR_PTR(self.0.into()) as *mut _ }
116     }
117 }
118 
119 impl From<AllocError> for Error {
120     fn from(_: AllocError) -> Error {
121         code::ENOMEM
122     }
123 }
124 
125 impl From<TryFromIntError> for Error {
126     fn from(_: TryFromIntError) -> Error {
127         code::EINVAL
128     }
129 }
130 
131 impl From<Utf8Error> for Error {
132     fn from(_: Utf8Error) -> Error {
133         code::EINVAL
134     }
135 }
136 
137 impl From<TryReserveError> for Error {
138     fn from(_: TryReserveError) -> Error {
139         code::ENOMEM
140     }
141 }
142 
143 impl From<LayoutError> for Error {
144     fn from(_: LayoutError) -> Error {
145         code::ENOMEM
146     }
147 }
148 
149 impl From<core::fmt::Error> for Error {
150     fn from(_: core::fmt::Error) -> Error {
151         code::EINVAL
152     }
153 }
154 
155 impl From<core::convert::Infallible> for Error {
156     fn from(e: core::convert::Infallible) -> Error {
157         match e {}
158     }
159 }
160 
161 /// A [`Result`] with an [`Error`] error type.
162 ///
163 /// To be used as the return type for functions that may fail.
164 ///
165 /// # Error codes in C and Rust
166 ///
167 /// In C, it is common that functions indicate success or failure through
168 /// their return value; modifying or returning extra data through non-`const`
169 /// pointer parameters. In particular, in the kernel, functions that may fail
170 /// typically return an `int` that represents a generic error code. We model
171 /// those as [`Error`].
172 ///
173 /// In Rust, it is idiomatic to model functions that may fail as returning
174 /// a [`Result`]. Since in the kernel many functions return an error code,
175 /// [`Result`] is a type alias for a [`core::result::Result`] that uses
176 /// [`Error`] as its error type.
177 ///
178 /// Note that even if a function does not return anything when it succeeds,
179 /// it should still be modeled as returning a `Result` rather than
180 /// just an [`Error`].
181 pub type Result<T = ()> = core::result::Result<T, Error>;
182 
183 /// Converts an integer as returned by a C kernel function to an error if it's negative, and
184 /// `Ok(())` otherwise.
185 pub fn to_result(err: core::ffi::c_int) -> Result {
186     if err < 0 {
187         Err(Error::from_errno(err))
188     } else {
189         Ok(())
190     }
191 }
192