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 614
// 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.
//! Error conditions.
use std::{io::Error as IoError, sync::Arc, time::Duration};
use as_variant::as_variant;
use http::StatusCode;
#[cfg(feature = "qrcode")]
use matrix_sdk_base::crypto::ScanError;
#[cfg(feature = "e2e-encryption")]
use matrix_sdk_base::crypto::{
CryptoStoreError, DecryptorError, KeyExportError, MegolmError, OlmError,
};
use matrix_sdk_base::{
event_cache::store::EventCacheStoreError, Error as SdkBaseError, QueueWedgeError, RoomState,
StoreError,
};
use reqwest::Error as ReqwestError;
use ruma::{
api::{
client::{
error::{ErrorBody, ErrorKind, RetryAfter},
uiaa::{UiaaInfo, UiaaResponse},
},
error::{FromHttpResponseError, IntoHttpError},
},
events::tag::InvalidUserTagName,
push::{InsertPushRuleError, RemovePushRuleError},
IdParseError,
};
use serde_json::Error as JsonError;
use thiserror::Error;
use url::ParseError as UrlParseError;
use crate::{event_cache::EventCacheError, media::MediaError, store_locks::LockStoreError};
/// Result type of the matrix-sdk.
pub type Result<T, E = Error> = std::result::Result<T, E>;
/// Result type of a pure HTTP request.
pub type HttpResult<T> = std::result::Result<T, HttpError>;
/// An error response from a Matrix API call, using a client API specific
/// representation if the endpoint is from that.
#[derive(Error, Debug)]
pub enum RumaApiError {
/// A client API response error.
#[error(transparent)]
ClientApi(ruma::api::client::Error),
/// A user-interactive authentication API error.
///
/// When registering or authenticating, the Matrix server can send a
/// `UiaaInfo` as the error type, this is a User-Interactive Authentication
/// API response. This represents an error with information about how to
/// authenticate the user.
#[error("User-Interactive Authentication required.")]
Uiaa(UiaaInfo),
/// Another API response error.
#[error(transparent)]
Other(ruma::api::error::MatrixError),
}
impl RumaApiError {
/// If `self` is `ClientApi(e)`, returns `Some(e)`.
///
/// Otherwise, returns `None`.
pub fn as_client_api_error(&self) -> Option<&ruma::api::client::Error> {
as_variant!(self, Self::ClientApi)
}
}
/// An HTTP error, representing either a connection error or an error while
/// converting the raw HTTP response into a Matrix response.
#[derive(Error, Debug)]
pub enum HttpError {
/// Error at the HTTP layer.
#[error(transparent)]
Reqwest(#[from] ReqwestError),
/// Queried endpoint is not meant for clients.
#[error("the queried endpoint is not meant for clients")]
NotClientRequest,
/// API response error (deserialization, or a Matrix-specific error).
#[error(transparent)]
Api(#[from] FromHttpResponseError<RumaApiError>),
/// Error when creating an API request (e.g. serialization of
/// body/headers/query parameters).
#[error(transparent)]
IntoHttp(IntoHttpError),
/// Error while refreshing the access token.
#[error(transparent)]
RefreshToken(RefreshTokenError),
}
#[rustfmt::skip] // stop rustfmt breaking the `<code>` in docs across multiple lines
impl HttpError {
/// If `self` is
/// <code>[Api](Self::Api)([Server](FromHttpResponseError::Server)(e))</code>,
/// returns `Some(e)`.
///
/// Otherwise, returns `None`.
pub fn as_ruma_api_error(&self) -> Option<&RumaApiError> {
as_variant!(self, Self::Api(FromHttpResponseError::Server(e)) => e)
}
/// Shorthand for
/// <code>.[as_ruma_api_error](Self::as_ruma_api_error)().[and_then](Option::and_then)([RumaApiError::as_client_api_error])</code>.
pub fn as_client_api_error(&self) -> Option<&ruma::api::client::Error> {
self.as_ruma_api_error().and_then(RumaApiError::as_client_api_error)
}
}
// Another impl block that's formatted with rustfmt.
impl HttpError {
/// If `self` is a server error in the `errcode` + `error` format expected
/// for client-API endpoints, returns the error kind (`errcode`).
pub fn client_api_error_kind(&self) -> Option<&ErrorKind> {
self.as_client_api_error()
.and_then(|e| as_variant!(&e.body, ErrorBody::Standard { kind, .. } => kind))
}
/// Try to destructure the error into an universal interactive auth info.
///
/// Some requests require universal interactive auth, doing such a request
/// will always fail the first time with a 401 status code, the response
/// body will contain info how the client can authenticate.
///
/// The request will need to be retried, this time containing additional
/// authentication data.
///
/// This method is an convenience method to get to the info the server
/// returned on the first, failed request.
pub fn as_uiaa_response(&self) -> Option<&UiaaInfo> {
self.as_ruma_api_error().and_then(as_variant!(RumaApiError::Uiaa))
}
/// Returns whether an HTTP error response should be qualified as transient
/// or permanent.
pub(crate) fn retry_kind(&self) -> RetryKind {
match self {
// If it was a plain network error, it's either that we're disconnected from the
// internet, or that the remote is, so retry a few times.
HttpError::Reqwest(_) => RetryKind::NetworkFailure,
HttpError::Api(FromHttpResponseError::Server(api_error)) => {
RetryKind::from_api_error(api_error)
}
_ => RetryKind::Permanent,
}
}
}
/// How should we behave with respect to retry behavior after an [`HttpError`]
/// happened?
pub(crate) enum RetryKind {
/// The request failed because of an error at the network layer.
NetworkFailure,
/// The request failed with a "transient" error, meaning it could be retried
/// either soon, or after a given amount of time expressed in
/// `retry_after`.
Transient {
// This is used only for attempts to retry, so on non-wasm32 code (in the `native` module).
#[cfg_attr(target_arch = "wasm32", allow(dead_code))]
retry_after: Option<Duration>,
},
/// The request failed with a non-transient error, and retrying it would
/// likely cause the same error again, so it's not worth retrying.
Permanent,
}
impl RetryKind {
/// Construct a [`RetryKind`] from a Ruma API error.
///
/// The Ruma API error is for errors which have the standard error response
/// format defined in the [spec].
///
/// [spec]: https://spec.matrix.org/v1.11/client-server-api/#standard-error-response
fn from_api_error(api_error: &RumaApiError) -> Self {
use ruma::api::client::Error;
match api_error {
RumaApiError::ClientApi(client_error) => {
let Error { status_code, body, .. } = client_error;
match body {
ErrorBody::Standard { kind, .. } => match kind {
ErrorKind::LimitExceeded { retry_after } => {
RetryKind::from_retry_after(retry_after.as_ref())
}
ErrorKind::Unrecognized => RetryKind::Permanent,
_ => RetryKind::from_status_code(*status_code),
},
_ => RetryKind::from_status_code(*status_code),
}
}
RumaApiError::Other(e) => RetryKind::from_status_code(e.status_code),
RumaApiError::Uiaa(_) => RetryKind::Permanent,
}
}
/// Create a [`RetryKind`] if we have found a [`RetryAfter`] defined in an
/// error.
///
/// This method should be used for errors where the server explicitly tells
/// us how long we must wait before we retry the request again.
fn from_retry_after(retry_after: Option<&RetryAfter>) -> Self {
let retry_after = retry_after
.and_then(|retry_after| match retry_after {
RetryAfter::Delay(d) => Some(d),
RetryAfter::DateTime(_) => None,
})
.copied();
Self::Transient { retry_after }
}
/// Construct a [`RetryKind`] from a HTTP [`StatusCode`].
///
/// This should be used if we don't have a more specific Matrix style error
/// which gives us more information about the nature of the error, i.e.
/// if we received an error from a reverse proxy while the Matrix
/// homeserver is down.
fn from_status_code(status_code: StatusCode) -> Self {
// If the status code is 429, this is requesting a retry in HTTP, without the
// custom `errcode`. Treat that as a retriable request with no specified
// retry_after delay.
if status_code == StatusCode::TOO_MANY_REQUESTS || status_code.is_server_error() {
RetryKind::Transient { retry_after: None }
} else {
RetryKind::Permanent
}
}
}
/// Internal representation of errors.
#[derive(Error, Debug)]
#[non_exhaustive]
pub enum Error {
/// Error doing an HTTP request.
#[error(transparent)]
Http(#[from] HttpError),
/// Queried endpoint requires authentication but was called on an anonymous
/// client.
#[error("the queried endpoint requires authentication but was called before logging in")]
AuthenticationRequired,
/// This request failed because the local data wasn't sufficient.
#[error("Local cache doesn't contain all necessary data to perform the action.")]
InsufficientData,
/// Attempting to restore a session after the olm-machine has already been
/// set up fails
#[cfg(feature = "e2e-encryption")]
#[error("The olm machine has already been initialized")]
BadCryptoStoreState,
/// Attempting to access the olm-machine but it is not yet available.
#[cfg(feature = "e2e-encryption")]
#[error("The olm machine isn't yet available")]
NoOlmMachine,
/// An error de/serializing type for the `StateStore`
#[error(transparent)]
SerdeJson(#[from] JsonError),
/// An IO error happened.
#[error(transparent)]
Io(#[from] IoError),
/// An error occurred in the crypto store.
#[cfg(feature = "e2e-encryption")]
#[error(transparent)]
CryptoStoreError(#[from] CryptoStoreError),
/// An error occurred with a cross-process store lock.
#[error(transparent)]
CrossProcessLockError(#[from] LockStoreError),
/// An error occurred during a E2EE operation.
#[cfg(feature = "e2e-encryption")]
#[error(transparent)]
OlmError(#[from] OlmError),
/// An error occurred during a E2EE group operation.
#[cfg(feature = "e2e-encryption")]
#[error(transparent)]
MegolmError(#[from] MegolmError),
/// An error occurred during decryption.
#[cfg(feature = "e2e-encryption")]
#[error(transparent)]
DecryptorError(#[from] DecryptorError),
/// An error occurred in the state store.
#[error(transparent)]
StateStore(#[from] StoreError),
/// An error occurred in the event cache store.
#[error(transparent)]
EventCacheStore(#[from] EventCacheStoreError),
/// An error encountered when trying to parse an identifier.
#[error(transparent)]
Identifier(#[from] IdParseError),
/// An error encountered when trying to parse a url.
#[error(transparent)]
Url(#[from] UrlParseError),
/// An error while scanning a QR code.
#[cfg(feature = "qrcode")]
#[error(transparent)]
QrCodeScanError(#[from] ScanError),
/// An error encountered when trying to parse a user tag name.
#[error(transparent)]
UserTagName(#[from] InvalidUserTagName),
/// An error occurred within sliding-sync
#[cfg(feature = "experimental-sliding-sync")]
#[error(transparent)]
SlidingSync(#[from] crate::sliding_sync::Error),
/// Attempted to call a method on a room that requires the user to have a
/// specific membership state in the room, but the membership state is
/// different.
#[error("wrong room state: {0}")]
WrongRoomState(WrongRoomState),
/// Session callbacks have been set multiple times.
#[error("session callbacks have been set multiple times")]
MultipleSessionCallbacks,
/// An error occurred interacting with the OpenID Connect API.
#[cfg(feature = "experimental-oidc")]
#[error(transparent)]
Oidc(#[from] crate::oidc::OidcError),
/// A concurrent request to a deduplicated request has failed.
#[error("a concurrent request failed; see logs for details")]
ConcurrentRequestFailed,
/// An other error was raised.
///
/// This might happen because encryption was enabled on the base-crate
/// but not here and that raised.
#[error("unknown error: {0}")]
UnknownError(Box<dyn std::error::Error + Send + Sync>),
/// An error coming from the event cache subsystem.
#[error(transparent)]
EventCache(#[from] EventCacheError),
/// An item has been wedged in the send queue.
#[error(transparent)]
SendQueueWedgeError(#[from] QueueWedgeError),
/// Backups are not enabled
#[error("backups are not enabled")]
BackupNotEnabled,
/// An error happened during handling of a media subrequest.
#[error(transparent)]
Media(#[from] MediaError),
}
#[rustfmt::skip] // stop rustfmt breaking the `<code>` in docs across multiple lines
impl Error {
/// If `self` is
/// <code>[Http](Self::Http)([Api](HttpError::Api)([Server](FromHttpResponseError::Server)(e)))</code>,
/// returns `Some(e)`.
///
/// Otherwise, returns `None`.
pub fn as_ruma_api_error(&self) -> Option<&RumaApiError> {
as_variant!(self, Self::Http).and_then(|e| e.as_ruma_api_error())
}
/// Shorthand for
/// <code>.[as_ruma_api_error](Self::as_ruma_api_error)().[and_then](Option::and_then)([RumaApiError::as_client_api_error])</code>.
pub fn as_client_api_error(&self) -> Option<&ruma::api::client::Error> {
self.as_ruma_api_error().and_then(RumaApiError::as_client_api_error)
}
/// If `self` is a server error in the `errcode` + `error` format expected
/// for client-API endpoints, returns the error kind (`errcode`).
pub fn client_api_error_kind(&self) -> Option<&ErrorKind> {
self.as_client_api_error().and_then(|e| {
as_variant!(&e.body, ErrorBody::Standard { kind, .. } => kind)
})
}
/// Try to destructure the error into an universal interactive auth info.
///
/// Some requests require universal interactive auth, doing such a request
/// will always fail the first time with a 401 status code, the response
/// body will contain info how the client can authenticate.
///
/// The request will need to be retried, this time containing additional
/// authentication data.
///
/// This method is an convenience method to get to the info the server
/// returned on the first, failed request.
pub fn as_uiaa_response(&self) -> Option<&UiaaInfo> {
self.as_ruma_api_error().and_then(as_variant!(RumaApiError::Uiaa))
}
}
/// Error for the room key importing functionality.
#[cfg(feature = "e2e-encryption")]
#[derive(Error, Debug)]
// This is allowed because key importing isn't enabled under wasm.
#[allow(dead_code)]
pub enum RoomKeyImportError {
/// An error de/serializing type for the `StateStore`
#[error(transparent)]
SerdeJson(#[from] JsonError),
/// The crypto store isn't yet open. Logging in is required to open the
/// crypto store.
#[error("The crypto store hasn't been yet opened, can't import yet.")]
StoreClosed,
/// An IO error happened.
#[error(transparent)]
Io(#[from] IoError),
/// An error occurred in the crypto store.
#[error(transparent)]
CryptoStore(#[from] CryptoStoreError),
/// An error occurred while importing the key export.
#[error(transparent)]
Export(#[from] KeyExportError),
}
impl From<FromHttpResponseError<ruma::api::client::Error>> for HttpError {
fn from(err: FromHttpResponseError<ruma::api::client::Error>) -> Self {
Self::Api(err.map(RumaApiError::ClientApi))
}
}
impl From<FromHttpResponseError<UiaaResponse>> for HttpError {
fn from(err: FromHttpResponseError<UiaaResponse>) -> Self {
Self::Api(err.map(|e| match e {
UiaaResponse::AuthResponse(i) => RumaApiError::Uiaa(i),
UiaaResponse::MatrixError(e) => RumaApiError::ClientApi(e),
}))
}
}
impl From<FromHttpResponseError<ruma::api::error::MatrixError>> for HttpError {
fn from(err: FromHttpResponseError<ruma::api::error::MatrixError>) -> Self {
Self::Api(err.map(RumaApiError::Other))
}
}
impl From<SdkBaseError> for Error {
fn from(e: SdkBaseError) -> Self {
match e {
SdkBaseError::StateStore(e) => Self::StateStore(e),
#[cfg(feature = "e2e-encryption")]
SdkBaseError::CryptoStore(e) => Self::CryptoStoreError(e),
#[cfg(feature = "e2e-encryption")]
SdkBaseError::BadCryptoStoreState => Self::BadCryptoStoreState,
#[cfg(feature = "e2e-encryption")]
SdkBaseError::OlmError(e) => Self::OlmError(e),
#[cfg(feature = "eyre")]
_ => Self::UnknownError(eyre::eyre!(e).into()),
#[cfg(all(not(feature = "eyre"), feature = "anyhow"))]
_ => Self::UnknownError(anyhow::anyhow!(e).into()),
#[cfg(all(not(feature = "eyre"), not(feature = "anyhow")))]
_ => {
let e: Box<dyn std::error::Error + Sync + Send> = format!("{e:?}").into();
Self::UnknownError(e)
}
}
}
}
impl From<ReqwestError> for Error {
fn from(e: ReqwestError) -> Self {
Error::Http(HttpError::Reqwest(e))
}
}
/// Errors that can happen when interacting with the beacon API.
#[derive(Debug, Error)]
pub enum BeaconError {
// A network error occurred.
#[error("Network error: {0}")]
Network(#[from] HttpError),
// The beacon information is not found.
#[error("Existing beacon information not found.")]
NotFound,
// The redacted event is not an error, but it's not useful for the client.
#[error("Beacon event is redacted and cannot be processed.")]
Redacted,
// The client must join the room to access the beacon information.
#[error("Must join the room to access beacon information.")]
Stripped,
// The beacon event could not be deserialized.
#[error("Deserialization error: {0}")]
Deserialization(#[from] serde_json::Error),
// The beacon event is expired.
#[error("The beacon event has expired.")]
NotLive,
// Allow for other errors to be wrapped.
#[error("Other error: {0}")]
Other(Box<Error>),
}
impl From<Error> for BeaconError {
fn from(err: Error) -> Self {
BeaconError::Other(Box::new(err))
}
}
/// Errors that can happen when refreshing an access token.
///
/// This is usually only returned by [`Client::refresh_access_token()`], unless
/// [handling refresh tokens] is activated for the `Client`.
///
/// [`Client::refresh_access_token()`]: crate::Client::refresh_access_token()
/// [handling refresh tokens]: crate::ClientBuilder::handle_refresh_tokens()
#[derive(Debug, Error, Clone)]
pub enum RefreshTokenError {
/// Tried to send a refresh token request without a refresh token.
#[error("missing refresh token")]
RefreshTokenRequired,
/// An error occurred interacting with the native Matrix authentication API.
#[error(transparent)]
MatrixAuth(Arc<HttpError>),
/// An error occurred interacting with the OpenID Connect API.
#[cfg(feature = "experimental-oidc")]
#[error(transparent)]
Oidc(#[from] Arc<crate::oidc::OidcError>),
}
/// Errors that can occur when manipulating push notification settings.
#[derive(Debug, Error, Clone, PartialEq)]
pub enum NotificationSettingsError {
/// Invalid parameter.
#[error("Invalid parameter `{0}`")]
InvalidParameter(String),
/// Unable to add push rule.
#[error("Unable to add push rule")]
UnableToAddPushRule,
/// Unable to remove push rule.
#[error("Unable to remove push rule")]
UnableToRemovePushRule,
/// Unable to update push rule.
#[error("Unable to update push rule")]
UnableToUpdatePushRule,
/// Rule not found
#[error("Rule `{0}` not found")]
RuleNotFound(String),
/// Unable to save the push rules
#[error("Unable to save push rules")]
UnableToSavePushRules,
}
impl From<InsertPushRuleError> for NotificationSettingsError {
fn from(_: InsertPushRuleError) -> Self {
Self::UnableToAddPushRule
}
}
impl From<RemovePushRuleError> for NotificationSettingsError {
fn from(_: RemovePushRuleError) -> Self {
Self::UnableToRemovePushRule
}
}
#[derive(Debug, Error)]
#[error("expected: {expected}, got: {got:?}")]
pub struct WrongRoomState {
expected: &'static str,
got: RoomState,
}
impl WrongRoomState {
pub(crate) fn new(expected: &'static str, got: RoomState) -> Self {
Self { expected, got }
}
}