2020-02-25 16:36:11 +00:00
|
|
|
// Copyright 2020 The Matrix.org Foundation C.I.C.
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
|
|
|
|
use cjson::Error as CjsonError;
|
2020-03-25 10:32:40 +00:00
|
|
|
use olm_rs::errors::{OlmGroupSessionError, OlmSessionError};
|
2020-03-23 15:14:10 +00:00
|
|
|
use serde_json::Error as SerdeError;
|
2020-03-18 13:15:56 +00:00
|
|
|
use thiserror::Error;
|
2020-02-25 16:36:11 +00:00
|
|
|
|
2020-03-18 13:15:56 +00:00
|
|
|
use super::store::CryptoStoreError;
|
|
|
|
|
2020-04-30 15:10:12 +00:00
|
|
|
pub type OlmResult<T> = Result<T, OlmError>;
|
|
|
|
pub type MegolmResult<T> = Result<T, MegolmError>;
|
2020-03-18 14:50:32 +00:00
|
|
|
|
2020-04-30 15:10:12 +00:00
|
|
|
/// Error representing a failure during a device to device cryptographic
|
|
|
|
/// operation.
|
2020-03-18 14:50:32 +00:00
|
|
|
#[derive(Error, Debug)]
|
|
|
|
pub enum OlmError {
|
2020-04-30 15:10:12 +00:00
|
|
|
/// The event that should have been decrypted is malformed.
|
2020-04-30 11:16:10 +00:00
|
|
|
#[error(transparent)]
|
|
|
|
EventError(#[from] EventError),
|
2020-04-30 15:10:12 +00:00
|
|
|
|
|
|
|
/// The received decrypted event couldn't be deserialized.
|
2020-04-30 11:16:10 +00:00
|
|
|
#[error(transparent)]
|
|
|
|
JsonError(#[from] SerdeError),
|
2020-04-30 15:10:12 +00:00
|
|
|
|
|
|
|
/// The underlying Olm session operation returned an error.
|
2020-04-30 11:16:10 +00:00
|
|
|
#[error("can't finish Olm Session operation {0}")]
|
|
|
|
OlmSession(#[from] OlmSessionError),
|
2020-04-30 15:10:12 +00:00
|
|
|
|
|
|
|
/// The underlying group session operation returned an error.
|
2020-04-30 11:16:10 +00:00
|
|
|
#[error("can't finish Olm Session operation {0}")]
|
|
|
|
OlmGroupSession(#[from] OlmGroupSessionError),
|
2020-04-30 15:10:12 +00:00
|
|
|
|
|
|
|
/// The storage layer returned an error.
|
2020-03-18 14:50:32 +00:00
|
|
|
#[error("failed to read or write to the crypto store {0}")]
|
|
|
|
Store(#[from] CryptoStoreError),
|
2020-04-30 15:10:12 +00:00
|
|
|
|
|
|
|
/// The session with a device has become corrupted.
|
2020-03-21 15:41:48 +00:00
|
|
|
#[error("decryption failed likely because a Olm session was wedged")]
|
|
|
|
SessionWedged,
|
2020-04-30 11:16:10 +00:00
|
|
|
}
|
|
|
|
|
2020-04-30 15:10:12 +00:00
|
|
|
/// Error representing a failure during a group encryption operation.
|
2020-04-30 11:16:10 +00:00
|
|
|
#[derive(Error, Debug)]
|
|
|
|
pub enum MegolmError {
|
2020-04-30 15:10:12 +00:00
|
|
|
/// The event that should have been decrypted is malformed.
|
2020-04-30 11:16:10 +00:00
|
|
|
#[error(transparent)]
|
|
|
|
EventError(#[from] EventError),
|
2020-04-30 15:10:12 +00:00
|
|
|
|
|
|
|
/// The received decrypted event couldn't be deserialized.
|
|
|
|
#[error(transparent)]
|
|
|
|
JsonError(#[from] SerdeError),
|
|
|
|
|
|
|
|
/// Decryption failed because the session needed to decrypt the event is
|
|
|
|
/// missing.
|
|
|
|
#[error("decryption failed because the session to decrypt the message is missing")]
|
|
|
|
MissingSession,
|
|
|
|
|
|
|
|
/// The underlying group session operation returned an error.
|
2020-04-30 11:16:10 +00:00
|
|
|
#[error("can't finish Olm group session operation {0}")]
|
|
|
|
OlmGroupSession(#[from] OlmGroupSessionError),
|
2020-04-30 15:10:12 +00:00
|
|
|
|
|
|
|
/// The storage layer returned an error.
|
2020-04-30 11:16:10 +00:00
|
|
|
#[error(transparent)]
|
|
|
|
Store(#[from] CryptoStoreError),
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Error, Debug)]
|
|
|
|
pub enum EventError {
|
2020-03-21 15:41:48 +00:00
|
|
|
#[error("the Olm message has a unsupported type")]
|
|
|
|
UnsupportedOlmType,
|
2020-04-30 15:10:12 +00:00
|
|
|
|
2020-03-23 15:14:10 +00:00
|
|
|
#[error("the Encrypted message has been encrypted with a unsupported algorithm.")]
|
|
|
|
UnsupportedAlgorithm,
|
2020-04-30 15:10:12 +00:00
|
|
|
|
2020-04-30 11:16:10 +00:00
|
|
|
#[error("the provided JSON value isn't an object")]
|
|
|
|
NotAnObject,
|
2020-04-30 15:10:12 +00:00
|
|
|
|
2020-03-23 15:14:10 +00:00
|
|
|
#[error("the Encrypted message doesn't contain a ciphertext for our device")]
|
|
|
|
MissingCiphertext,
|
2020-04-30 15:10:12 +00:00
|
|
|
|
2020-03-27 16:01:21 +00:00
|
|
|
#[error("the Encrypted message is missing the signing key of the sender")]
|
|
|
|
MissingSigningKey,
|
2020-04-30 15:10:12 +00:00
|
|
|
|
2020-04-30 11:16:10 +00:00
|
|
|
#[error("the Encrypted message is missing the field {0}")]
|
|
|
|
MissingField(String),
|
2020-04-30 15:10:12 +00:00
|
|
|
|
2020-04-30 11:16:10 +00:00
|
|
|
#[error("the sender of the plaintext doesn't match the sender of the encrypted message.")]
|
|
|
|
MissmatchedSender,
|
2020-04-30 15:10:12 +00:00
|
|
|
|
2020-04-30 11:16:10 +00:00
|
|
|
#[error("the keys of the message don't match the keys in our database.")]
|
|
|
|
MissmatchedKeys,
|
2020-03-18 14:50:32 +00:00
|
|
|
}
|
|
|
|
|
2020-03-18 13:15:56 +00:00
|
|
|
#[derive(Error, Debug)]
|
2020-04-30 15:10:12 +00:00
|
|
|
pub(crate) enum SignatureError {
|
2020-03-18 13:15:56 +00:00
|
|
|
#[error("the provided JSON value isn't an object")]
|
2020-02-25 16:36:11 +00:00
|
|
|
NotAnObject,
|
2020-04-30 15:10:12 +00:00
|
|
|
|
2020-03-18 13:15:56 +00:00
|
|
|
#[error("the provided JSON object doesn't contain a signatures field")]
|
2020-02-25 16:36:11 +00:00
|
|
|
NoSignatureFound,
|
2020-04-30 15:10:12 +00:00
|
|
|
|
2020-03-18 13:15:56 +00:00
|
|
|
#[error("the provided JSON object can't be converted to a canonical representation")]
|
2020-02-25 16:36:11 +00:00
|
|
|
CanonicalJsonError(CjsonError),
|
2020-04-30 15:10:12 +00:00
|
|
|
|
2020-03-18 13:15:56 +00:00
|
|
|
#[error("the signature didn't match the provided key")]
|
2020-02-25 16:36:11 +00:00
|
|
|
VerificationError,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<CjsonError> for SignatureError {
|
|
|
|
fn from(error: CjsonError) -> Self {
|
|
|
|
Self::CanonicalJsonError(error)
|
|
|
|
}
|
|
|
|
}
|