blob: 9643e1e6580bb331f1c3039f68dbb1215026833e [file] [log] [blame]
// Copyright 2024, The Android Open Source Project
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//! Rust types related to the libfdt C integer results.
use core::ffi::c_int;
use core::fmt;
use core::result;
/// Error type corresponding to libfdt error codes.
#[derive(Clone, Copy, Debug, Eq, PartialEq)]
pub enum FdtError {
/// FDT_ERR_NOTFOUND
NotFound,
/// FDT_ERR_EXISTS
Exists,
/// FDT_ERR_NOSPACE
NoSpace,
/// FDT_ERR_BADOFFSET
BadOffset,
/// FDT_ERR_BADPATH
BadPath,
/// FDT_ERR_BADPHANDLE
BadPhandle,
/// FDT_ERR_BADSTATE
BadState,
/// FDT_ERR_TRUNCATED
Truncated,
/// FDT_ERR_BADMAGIC
BadMagic,
/// FDT_ERR_BADVERSION
BadVersion,
/// FDT_ERR_BADSTRUCTURE
BadStructure,
/// FDT_ERR_BADLAYOUT
BadLayout,
/// FDT_ERR_INTERNAL
Internal,
/// FDT_ERR_BADNCELLS
BadNCells,
/// FDT_ERR_BADVALUE
BadValue,
/// FDT_ERR_BADOVERLAY
BadOverlay,
/// FDT_ERR_NOPHANDLES
NoPhandles,
/// FDT_ERR_BADFLAGS
BadFlags,
/// FDT_ERR_ALIGNMENT
Alignment,
/// Unexpected error code
Unknown(i32),
}
impl fmt::Display for FdtError {
/// Prints error messages from libfdt.h documentation.
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
match self {
Self::NotFound => write!(f, "The requested node or property does not exist"),
Self::Exists => write!(f, "Attempted to create an existing node or property"),
Self::NoSpace => write!(f, "Insufficient buffer space to contain the expanded tree"),
Self::BadOffset => write!(f, "Structure block offset is out-of-bounds or invalid"),
Self::BadPath => write!(f, "Badly formatted path"),
Self::BadPhandle => write!(f, "Invalid phandle length or value"),
Self::BadState => write!(f, "Received incomplete device tree"),
Self::Truncated => write!(f, "Device tree or sub-block is improperly terminated"),
Self::BadMagic => write!(f, "Device tree header missing its magic number"),
Self::BadVersion => write!(f, "Device tree has a version which can't be handled"),
Self::BadStructure => write!(f, "Device tree has a corrupt structure block"),
Self::BadLayout => write!(f, "Device tree sub-blocks in unsupported order"),
Self::Internal => write!(f, "libfdt has failed an internal assertion"),
Self::BadNCells => write!(f, "Bad format or value of #address-cells or #size-cells"),
Self::BadValue => write!(f, "Unexpected property value"),
Self::BadOverlay => write!(f, "Overlay cannot be applied"),
Self::NoPhandles => write!(f, "Device tree doesn't have any phandle available anymore"),
Self::BadFlags => write!(f, "Invalid flag or invalid combination of flags"),
Self::Alignment => write!(f, "Device tree base address is not 8-byte aligned"),
Self::Unknown(e) => write!(f, "Unknown libfdt error '{e}'"),
}
}
}
/// Result type with FdtError enum.
pub type Result<T> = result::Result<T, FdtError>;
pub(crate) fn fdt_err(val: c_int) -> Result<c_int> {
if val >= 0 {
Ok(val)
} else {
Err(match -val as _ {
libfdt_bindgen::FDT_ERR_NOTFOUND => FdtError::NotFound,
libfdt_bindgen::FDT_ERR_EXISTS => FdtError::Exists,
libfdt_bindgen::FDT_ERR_NOSPACE => FdtError::NoSpace,
libfdt_bindgen::FDT_ERR_BADOFFSET => FdtError::BadOffset,
libfdt_bindgen::FDT_ERR_BADPATH => FdtError::BadPath,
libfdt_bindgen::FDT_ERR_BADPHANDLE => FdtError::BadPhandle,
libfdt_bindgen::FDT_ERR_BADSTATE => FdtError::BadState,
libfdt_bindgen::FDT_ERR_TRUNCATED => FdtError::Truncated,
libfdt_bindgen::FDT_ERR_BADMAGIC => FdtError::BadMagic,
libfdt_bindgen::FDT_ERR_BADVERSION => FdtError::BadVersion,
libfdt_bindgen::FDT_ERR_BADSTRUCTURE => FdtError::BadStructure,
libfdt_bindgen::FDT_ERR_BADLAYOUT => FdtError::BadLayout,
libfdt_bindgen::FDT_ERR_INTERNAL => FdtError::Internal,
libfdt_bindgen::FDT_ERR_BADNCELLS => FdtError::BadNCells,
libfdt_bindgen::FDT_ERR_BADVALUE => FdtError::BadValue,
libfdt_bindgen::FDT_ERR_BADOVERLAY => FdtError::BadOverlay,
libfdt_bindgen::FDT_ERR_NOPHANDLES => FdtError::NoPhandles,
libfdt_bindgen::FDT_ERR_BADFLAGS => FdtError::BadFlags,
libfdt_bindgen::FDT_ERR_ALIGNMENT => FdtError::Alignment,
_ => FdtError::Unknown(val),
})
}
}
pub(crate) fn fdt_err_expect_zero(val: c_int) -> Result<()> {
match fdt_err(val)? {
0 => Ok(()),
_ => Err(FdtError::Unknown(val)),
}
}
pub(crate) fn fdt_err_or_option(val: c_int) -> Result<Option<c_int>> {
match fdt_err(val) {
Ok(val) => Ok(Some(val)),
Err(FdtError::NotFound) => Ok(None),
Err(e) => Err(e),
}
}