Skip to main content

NocError

Enum NocError 

Source
#[non_exhaustive]
pub enum NocError { NocsrParse(Box<dyn Error + Send + Sync + 'static>), CsrParse(Box<dyn Error + Send + Sync + 'static>), BadCsrSelfSignature, NonceMismatch, BadCsrAttestationSignature, InvalidCsrPublicKey, DnAttributeOverflow, CertBuild(Error), SigningFailed(SignerError), Rng, ClusterCodec(Error), MalformedResponse(&'static str), }
Expand description

Errors produced by matter-commissioning::noc.

Variants are coarse-grained — each maps to a distinct caller-side remediation path. See the M6.3 design doc’s “Information leakage in error variants” table for the audit reasoning.

Variants (Non-exhaustive)§

This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
§

NocsrParse(Box<dyn Error + Send + Sync + 'static>)

The NOCSR TLV outer envelope was malformed.

§

CsrParse(Box<dyn Error + Send + Sync + 'static>)

The embedded PKCS#10 CSR could not be parsed.

§

BadCsrSelfSignature

The PKCS#10 CSR’s self-signature did not verify.

§

NonceMismatch

The CSRNonce echoed by the device did not match the value the commissioner sent in CSRRequest.

§

BadCsrAttestationSignature

The DAC’s signature over NOCSR_elements || attestation_challenge did not verify. Coarse by design (see design doc).

§

InvalidCsrPublicKey

The CSR’s public key was not a valid P-256 SEC1 uncompressed point.

§

DnAttributeOverflow

A Matter DN attribute (e.g., a CaseAuthenticatedTag) could not be constructed from the caller-supplied values.

§

CertBuild(Error)

NOC certificate construction via the matter-cert builder failed.

§

SigningFailed(SignerError)

The fabric’s root signer rejected the signing operation.

§

Rng

The system RNG (or a caller-supplied stub) failed.

§

ClusterCodec(Error)

An OpCreds cluster command codec failed.

§

MalformedResponse(&'static str)

An OpCreds cluster response was structurally malformed — the TLV itself decoded, but its shape violated the expected schema (wrong container kind / tag, duplicate field, a fixed-width field with the wrong length, or a required field absent).

Distinct from NocError::ClusterCodec, which wraps a low-level codec failure (e.g. a truncated buffer). A structural mismatch must not be reported as a codec EOF — the carried &'static str names what was expected so callers and logs get an accurate label.

Trait Implementations§

Source§

impl Debug for NocError

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Display for NocError

Source§

fn fmt(&self, __formatter: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Error for NocError

Source§

fn source(&self) -> Option<&(dyn Error + 'static)>

Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§

fn description(&self) -> &str

👎Deprecated since 1.42.0:

use the Display impl or to_string()

1.0.0 · Source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0:

replaced by Error::source, which can support downcasting

Source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type-based access to context intended for error reports. Read more
Source§

impl From<Error> for NocError

Source§

fn from(e: Error) -> Self

Converts to this type from the input type.
Source§

impl From<NocError> for CommissioningError

Source§

fn from(source: NocError) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<'a, T, E> AsTaggedExplicit<'a, E> for T
where T: 'a,

Source§

fn explicit(self, class: Class, tag: u32) -> TaggedParser<'a, Explicit, Self, E>

Source§

impl<'a, T, E> AsTaggedImplicit<'a, E> for T
where T: 'a,

Source§

fn implicit( self, class: Class, constructed: bool, tag: u32, ) -> TaggedParser<'a, Implicit, Self, E>

Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.