libbpf_rs/error.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 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613
use std::borrow::Borrow;
use std::borrow::Cow;
use std::error;
use std::error::Error as _;
use std::fmt::Debug;
use std::fmt::Display;
use std::fmt::Formatter;
use std::fmt::Result as FmtResult;
use std::io;
use std::mem::transmute;
use std::ops::Deref;
use std::result;
/// A result type using our [`Error`] by default.
pub type Result<T, E = Error> = result::Result<T, E>;
#[allow(clippy::wildcard_imports)]
mod private {
use super::*;
pub trait Sealed {}
impl<T> Sealed for Option<T> {}
impl<T, E> Sealed for Result<T, E> {}
impl Sealed for &'static str {}
impl Sealed for String {}
impl Sealed for Error {}
impl Sealed for io::Error {}
}
/// A `str` replacement whose owned representation is a `Box<str>` and
/// not a `String`.
#[derive(Debug)]
#[repr(transparent)]
#[doc(hidden)]
pub struct Str(str);
impl ToOwned for Str {
type Owned = Box<str>;
#[inline]
fn to_owned(&self) -> Self::Owned {
self.0.to_string().into_boxed_str()
}
}
impl Borrow<Str> for Box<str> {
#[inline]
fn borrow(&self) -> &Str {
// SAFETY: `Str` is `repr(transparent)` and so `&str` and `&Str`
// can trivially be converted into each other.
unsafe { transmute::<&str, &Str>(self.deref()) }
}
}
impl Deref for Str {
type Target = str;
fn deref(&self) -> &Self::Target {
&self.0
}
}
// For convenient use in `format!`, for example.
impl Display for Str {
#[inline]
fn fmt(&self, f: &mut Formatter<'_>) -> FmtResult {
Display::fmt(&self.0, f)
}
}
/// A helper trait to abstracting over various string types, allowing
/// for conversion into a `Cow<'static, Str>`. This is the `Cow` enabled
/// equivalent of `ToString`.
pub trait IntoCowStr: private::Sealed {
fn into_cow_str(self) -> Cow<'static, Str>;
}
impl IntoCowStr for &'static str {
fn into_cow_str(self) -> Cow<'static, Str> {
// SAFETY: `Str` is `repr(transparent)` and so `&str` and `&Str`
// can trivially be converted into each other.
let other = unsafe { transmute::<&str, &Str>(self) };
Cow::Borrowed(other)
}
}
impl IntoCowStr for String {
fn into_cow_str(self) -> Cow<'static, Str> {
Cow::Owned(self.into_boxed_str())
}
}
// TODO: We may want to support optionally storing a backtrace in
// terminal variants.
enum ErrorImpl {
Io(io::Error),
// Unfortunately, if we just had a single `Context` variant that
// contains a `Cow`, this inner `Cow` would cause an overall enum
// size increase by a machine word, because currently `rustc`
// seemingly does not fold the necessary bits into the outer enum.
// We have two variants to work around that until `rustc` is smart
// enough.
ContextOwned {
context: Box<str>,
source: Box<ErrorImpl>,
},
ContextStatic {
context: &'static str,
source: Box<ErrorImpl>,
},
}
impl ErrorImpl {
fn kind(&self) -> ErrorKind {
match self {
Self::Io(error) => match error.kind() {
io::ErrorKind::NotFound => ErrorKind::NotFound,
io::ErrorKind::PermissionDenied => ErrorKind::PermissionDenied,
io::ErrorKind::AlreadyExists => ErrorKind::AlreadyExists,
io::ErrorKind::WouldBlock => ErrorKind::WouldBlock,
io::ErrorKind::InvalidInput => ErrorKind::InvalidInput,
io::ErrorKind::InvalidData => ErrorKind::InvalidData,
io::ErrorKind::TimedOut => ErrorKind::TimedOut,
io::ErrorKind::WriteZero => ErrorKind::WriteZero,
io::ErrorKind::Interrupted => ErrorKind::Interrupted,
io::ErrorKind::Unsupported => ErrorKind::Unsupported,
io::ErrorKind::UnexpectedEof => ErrorKind::UnexpectedEof,
io::ErrorKind::OutOfMemory => ErrorKind::OutOfMemory,
_ => ErrorKind::Other,
},
Self::ContextOwned { source, .. } | Self::ContextStatic { source, .. } => {
source.deref().kind()
}
}
}
#[cfg(test)]
fn is_owned(&self) -> Option<bool> {
match self {
Self::ContextOwned { .. } => Some(true),
Self::ContextStatic { .. } => Some(false),
_ => None,
}
}
}
impl Debug for ErrorImpl {
// We try to mirror roughly how anyhow's Error is behaving, because
// that makes the most sense.
fn fmt(&self, f: &mut Formatter<'_>) -> FmtResult {
if f.alternate() {
let mut dbg;
match self {
Self::Io(io) => {
dbg = f.debug_tuple(stringify!(Io));
dbg.field(io)
}
Self::ContextOwned { context, .. } => {
dbg = f.debug_tuple(stringify!(ContextOwned));
dbg.field(context)
}
Self::ContextStatic { context, .. } => {
dbg = f.debug_tuple(stringify!(ContextStatic));
dbg.field(context)
}
}
.finish()
} else {
let () = match self {
Self::Io(error) => write!(f, "Error: {error}")?,
Self::ContextOwned { context, .. } => write!(f, "Error: {context}")?,
Self::ContextStatic { context, .. } => write!(f, "Error: {context}")?,
};
if let Some(source) = self.source() {
let () = f.write_str("\n\nCaused by:")?;
let mut error = Some(source);
while let Some(err) = error {
let () = write!(f, "\n {err:}")?;
error = err.source();
}
}
Ok(())
}
}
}
impl Display for ErrorImpl {
fn fmt(&self, f: &mut Formatter<'_>) -> FmtResult {
let () = match self {
Self::Io(error) => Display::fmt(error, f)?,
Self::ContextOwned { context, .. } => Display::fmt(context, f)?,
Self::ContextStatic { context, .. } => Display::fmt(context, f)?,
};
if f.alternate() {
let mut error = self.source();
while let Some(err) = error {
let () = write!(f, ": {err}")?;
error = err.source();
}
}
Ok(())
}
}
impl error::Error for ErrorImpl {
fn source(&self) -> Option<&(dyn error::Error + 'static)> {
match self {
Self::Io(error) => error.source(),
Self::ContextOwned { source, .. } | Self::ContextStatic { source, .. } => Some(source),
}
}
}
/// An enum providing a rough classification of errors.
///
/// The variants of this type partly resemble those of
/// [`std::io::Error`], because these are the most common sources of
/// error that the crate concerns itself with.
#[derive(Clone, Copy, Debug, PartialEq)]
#[non_exhaustive]
pub enum ErrorKind {
/// An entity was not found, often a file.
NotFound,
/// The operation lacked the necessary privileges to complete.
PermissionDenied,
/// An entity already exists, often a file.
AlreadyExists,
/// The operation needs to block to complete, but the blocking
/// operation was requested to not occur.
WouldBlock,
/// A parameter was incorrect.
InvalidInput,
/// Data not valid for the operation were encountered.
InvalidData,
/// The I/O operation's timeout expired, causing it to be canceled.
TimedOut,
/// An error returned when an operation could not be completed
/// because a call to [`write`] returned [`Ok(0)`].
WriteZero,
/// This operation was interrupted.
///
/// Interrupted operations can typically be retried.
Interrupted,
/// This operation is unsupported on this platform.
Unsupported,
/// An error returned when an operation could not be completed
/// because an "end of file" was reached prematurely.
UnexpectedEof,
/// An operation could not be completed, because it failed
/// to allocate enough memory.
OutOfMemory,
/// A custom error that does not fall under any other I/O error
/// kind.
Other,
}
/// The error type used by the library.
///
/// Errors generally form a chain, with higher-level errors typically
/// providing additional context for lower level ones. E.g., an IO error
/// such as file-not-found could be reported by a system level API (such
/// as [`std::fs::File::open`]) and may be contextualized with the path
/// to the file attempted to be opened.
///
/// ```
/// use std::fs::File;
/// use std::error::Error as _;
/// # use libbpf_rs::ErrorExt as _;
///
/// let path = "/does-not-exist";
/// let result = File::open(path).with_context(|| format!("failed to open {path}"));
///
/// let err = result.unwrap_err();
/// assert_eq!(err.to_string(), "failed to open /does-not-exist");
///
/// // Retrieve the underlying error.
/// let inner_err = err.source().unwrap();
/// assert!(inner_err.to_string().starts_with("No such file or directory"));
/// ```
///
/// For convenient reporting, the [`Display`][std::fmt::Display]
/// representation takes care of reporting the complete error chain when
/// the alternate flag is set:
/// ```
/// # use std::fs::File;
/// # use std::error::Error as _;
/// # use libbpf_rs::ErrorExt as _;
/// # let path = "/does-not-exist";
/// # let result = File::open(path).with_context(|| format!("failed to open {path}"));
/// # let err = result.unwrap_err();
/// // > failed to open /does-not-exist: No such file or directory (os error 2)
/// println!("{err:#}");
/// ```
///
/// The [`Debug`][std::fmt::Debug] representation similarly will print
/// the entire error chain, but will do so in a multi-line format:
/// ```
/// # use std::fs::File;
/// # use std::error::Error as _;
/// # use libbpf_rs::ErrorExt as _;
/// # let path = "/does-not-exist";
/// # let result = File::open(path).with_context(|| format!("failed to open {path}"));
/// # let err = result.unwrap_err();
/// // > Error: failed to open /does-not-exist
/// // >
/// // > Caused by:
/// // > No such file or directory (os error 2)
/// println!("{err:?}");
/// ```
// Representation is optimized for fast copying (a single machine word),
// not so much for fast creation (as it is heap allocated). We generally
// expect errors to be exceptional, though a lot of functionality is
// fallible (i.e., returns a `Result<T, Error>` which would be penalized
// by a large `Err` variant).
#[repr(transparent)]
pub struct Error {
/// The top-most error of the chain.
error: Box<ErrorImpl>,
}
impl Error {
/// Create an [`Error`] from an OS error code (typically `errno`).
///
/// # Notes
/// An OS error code should always be positive.
#[inline]
pub fn from_raw_os_error(code: i32) -> Self {
debug_assert!(
code > 0,
"OS error code should be positive integer; got: {code}"
);
Self::from(io::Error::from_raw_os_error(code))
}
#[inline]
pub(crate) fn with_io_error<E>(kind: io::ErrorKind, error: E) -> Self
where
E: ToString,
{
Self::from(io::Error::new(kind, error.to_string()))
}
#[inline]
pub(crate) fn with_invalid_data<E>(error: E) -> Self
where
E: ToString,
{
Self::with_io_error(io::ErrorKind::InvalidData, error)
}
/// Retrieve a rough error classification in the form of an
/// [`ErrorKind`].
#[inline]
pub fn kind(&self) -> ErrorKind {
self.error.kind()
}
/// Layer the provided context on top of this `Error`, creating a
/// new one in the process.
fn layer_context(self, context: Cow<'static, Str>) -> Self {
match context {
Cow::Owned(context) => Self {
error: Box::new(ErrorImpl::ContextOwned {
context,
source: self.error,
}),
},
Cow::Borrowed(context) => Self {
error: Box::new(ErrorImpl::ContextStatic {
context,
source: self.error,
}),
},
}
}
}
impl Debug for Error {
#[inline]
fn fmt(&self, f: &mut Formatter<'_>) -> FmtResult {
Debug::fmt(&self.error, f)
}
}
impl Display for Error {
#[inline]
fn fmt(&self, f: &mut Formatter<'_>) -> FmtResult {
Display::fmt(&self.error, f)
}
}
impl error::Error for Error {
#[inline]
fn source(&self) -> Option<&(dyn error::Error + 'static)> {
self.error.source()
}
}
impl From<io::Error> for Error {
fn from(other: io::Error) -> Self {
Self {
error: Box::new(ErrorImpl::Io(other)),
}
}
}
/// A trait providing ergonomic chaining capabilities to [`Error`].
pub trait ErrorExt: private::Sealed {
/// The output type produced by [`context`](Self::context) and
/// [`with_context`](Self::with_context).
type Output;
/// Add context to this error.
// If we had specialization of sorts we could be more lenient as to
// what we can accept, but for now this method always works with
// static strings and nothing else.
fn context<C>(self, context: C) -> Self::Output
where
C: IntoCowStr;
/// Add context to this error, using a closure for lazy evaluation.
fn with_context<C, F>(self, f: F) -> Self::Output
where
C: IntoCowStr,
F: FnOnce() -> C;
}
impl ErrorExt for Error {
type Output = Error;
fn context<C>(self, context: C) -> Self::Output
where
C: IntoCowStr,
{
self.layer_context(context.into_cow_str())
}
fn with_context<C, F>(self, f: F) -> Self::Output
where
C: IntoCowStr,
F: FnOnce() -> C,
{
self.layer_context(f().into_cow_str())
}
}
impl<T, E> ErrorExt for Result<T, E>
where
E: ErrorExt,
{
type Output = Result<T, E::Output>;
fn context<C>(self, context: C) -> Self::Output
where
C: IntoCowStr,
{
match self {
Ok(val) => Ok(val),
Err(err) => Err(err.context(context)),
}
}
fn with_context<C, F>(self, f: F) -> Self::Output
where
C: IntoCowStr,
F: FnOnce() -> C,
{
match self {
Ok(val) => Ok(val),
Err(err) => Err(err.with_context(f)),
}
}
}
impl ErrorExt for io::Error {
type Output = Error;
fn context<C>(self, context: C) -> Self::Output
where
C: IntoCowStr,
{
Error::from(self).context(context)
}
fn with_context<C, F>(self, f: F) -> Self::Output
where
C: IntoCowStr,
F: FnOnce() -> C,
{
Error::from(self).with_context(f)
}
}
/// A trait providing conversion shortcuts for creating `Error`
/// instances.
pub trait IntoError<T>: private::Sealed
where
Self: Sized,
{
fn ok_or_error<C, F>(self, kind: io::ErrorKind, f: F) -> Result<T, Error>
where
C: ToString,
F: FnOnce() -> C;
#[inline]
fn ok_or_invalid_data<C, F>(self, f: F) -> Result<T, Error>
where
C: ToString,
F: FnOnce() -> C,
{
self.ok_or_error(io::ErrorKind::InvalidData, f)
}
}
impl<T> IntoError<T> for Option<T> {
#[inline]
fn ok_or_error<C, F>(self, kind: io::ErrorKind, f: F) -> Result<T, Error>
where
C: ToString,
F: FnOnce() -> C,
{
self.ok_or_else(|| Error::with_io_error(kind, f().to_string()))
}
}
#[cfg(test)]
mod tests {
use super::*;
use std::mem::size_of;
/// Check various features of our `Str` wrapper type.
#[test]
fn str_wrapper() {
let b = "test string".to_string().into_boxed_str();
let s: &Str = b.borrow();
let _b: Box<str> = s.to_owned();
assert_eq!(s.to_string(), b.deref());
assert_eq!(format!("{s:?}"), "Str(\"test string\")");
}
/// Check that our `Error` type's size is as expected.
#[test]
fn error_size() {
assert_eq!(size_of::<Error>(), size_of::<usize>());
assert_eq!(size_of::<ErrorImpl>(), 4 * size_of::<usize>());
}
/// Check that we can format errors as expected.
#[test]
fn error_formatting() {
let err = io::Error::new(io::ErrorKind::InvalidData, "some invalid data");
let err = Error::from(err);
let src = err.source();
assert!(src.is_none(), "{src:?}");
assert!(err.error.is_owned().is_none());
assert_eq!(err.kind(), ErrorKind::InvalidData);
assert_eq!(format!("{err}"), "some invalid data");
assert_eq!(format!("{err:#}"), "some invalid data");
assert_eq!(format!("{err:?}"), "Error: some invalid data");
// TODO: The inner format may not actually be all that stable.
let expected = r#"Io(
Custom {
kind: InvalidData,
error: "some invalid data",
},
)"#;
assert_eq!(format!("{err:#?}"), expected);
let err = err.context("inner context");
let src = err.source();
assert!(src.is_some(), "{src:?}");
assert!(!err.error.is_owned().unwrap());
assert_eq!(err.kind(), ErrorKind::InvalidData);
assert_eq!(format!("{err}"), "inner context");
assert_eq!(format!("{err:#}"), "inner context: some invalid data");
let expected = r#"Error: inner context
Caused by:
some invalid data"#;
assert_eq!(format!("{err:?}"), expected);
// Nope, not going to bother.
assert_ne!(format!("{err:#?}"), "");
let err = err.context("outer context".to_string());
let src = err.source();
assert!(src.is_some(), "{src:?}");
assert!(err.error.is_owned().unwrap());
assert_eq!(err.kind(), ErrorKind::InvalidData);
assert_eq!(format!("{err}"), "outer context");
assert_eq!(
format!("{err:#}"),
"outer context: inner context: some invalid data"
);
let expected = r#"Error: outer context
Caused by:
inner context
some invalid data"#;
assert_eq!(format!("{err:?}"), expected);
assert_ne!(format!("{err:#?}"), "");
}
}