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
//! All error types used by Snow operations.

/// Exits a function early with an error.
///
/// The `err!` macro provides an easy way to exit a function. `err!(X)` is
/// equivalent to writing:
///
/// ```rust,ignore
/// return Err(X.into())
/// ```
macro_rules! bail {
    ($e:expr) => {
        return Err(($e).into());
    };
}

/// All errors in snow will return a `SnowError` enum.
#[allow(missing_docs)]
#[derive(Fail, Debug)]
pub enum SnowError {
    #[fail(display = "pattern failed to parse: {:?}", reason)]
    Pattern { reason: PatternProblem },

    #[fail(display = "initialization failed at {:?}", reason)]
    Init { reason: InitStage },

    #[fail(display = "missing prerequisite: {:?}", reason)]
    Prereq { reason: Prerequisite },

    #[fail(display = "state error of type: {:?}", reason)]
    State { reason: StateProblem },

    #[fail(display = "invalid input")]
    Input,

    #[fail(display = "dh failed")]
    Dh,

    #[fail(display = "decryption failed")]
    Decrypt,
}

/// The various stages of initialization used to help identify
/// the specific cause of an `Init` error.
#[allow(missing_docs)]
#[derive(Debug)]
pub enum PatternProblem {
    TooFewParameters,
    UnsupportedHandshakeType,
    UnsupportedBaseType,
    UnsupportedHashType,
    UnsupportedDhType,
    UnsupportedCipherType,
    InvalidPsk,
    UnsupportedModifier,
}

impl From<PatternProblem> for SnowError {
    fn from(reason: PatternProblem) -> Self {
        SnowError::Pattern { reason }
    }
}

/// The various stages of initialization used to help identify
/// the specific cause of an `Init` error.
#[allow(missing_docs)]
#[derive(Debug)]
pub enum InitStage {
    ValidateKeyLengths,
    ValidatePskLengths,
    ValidateCipherTypes,
    GetRngImpl,
    GetDhImpl,
    GetCipherImpl,
    GetHashImpl,
    ValidatePskPosition,
}

impl From<InitStage> for SnowError {
    fn from(reason: InitStage) -> Self {
        SnowError::Init { reason }
    }
}

/// A prerequisite that may be missing.
#[allow(missing_docs)]
#[derive(Debug)]
pub enum Prerequisite {
    LocalPrivateKey,
    RemotePublicKey,
}

impl From<Prerequisite> for SnowError {
    fn from(reason: Prerequisite) -> Self {
        SnowError::Prereq { reason }
    }
}

/// Specific errors in the state machine.
#[allow(missing_docs)]
#[derive(Debug)]
pub enum StateProblem {
    MissingKeyMaterial,
    MissingPsk,
    NotTurnToWrite,
    NotTurnToRead,
    HandshakeNotFinished,
    HandshakeAlreadyFinished,
    OneWay,
    StatelessTransportMode,
}

impl From<StateProblem> for SnowError {
    fn from(reason: StateProblem) -> Self {
        SnowError::State { reason }
    }
}