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
use ruma_common::{
serde::Base64DecodeError, EventId, OwnedEventId, OwnedServerName, RoomVersionId,
};
use thiserror::Error;
#[derive(Debug, Error)]
#[non_exhaustive]
#[allow(clippy::enum_variant_names)]
pub enum Error {
#[error("JSON error: {0}")]
Json(#[from] JsonError),
#[error("Verification error: {0}")]
Verification(#[from] VerificationError),
#[error("Parse error: {0}")]
Parse(#[from] ParseError),
#[error("DER Parse error: {0}")]
DerParse(pkcs8::der::Error),
#[error("malformed signature ID: expected exactly 2 segment separated by a colon, found {0}")]
InvalidLength(usize),
#[error("malformed signature ID: expected version to contain only characters in the character set `[a-zA-Z0-9_]`, found `{0}`")]
InvalidVersion(String),
#[error("signature uses an unsupported algorithm: {0}")]
UnsupportedAlgorithm(String),
#[error("PDU is larger than maximum of 65535 bytes")]
PduSize,
}
#[derive(Debug, Error)]
#[non_exhaustive]
pub enum JsonError {
#[error("Value in {target:?} must be a JSON {of_type:?}")]
NotOfType {
target: String,
of_type: JsonType,
},
#[error("Values in {target:?} must be JSON {of_type:?}s")]
NotMultiplesOfType {
target: String,
of_type: JsonType,
},
#[error("JSON object must contain the field {0:?}")]
JsonFieldMissingFromObject(String),
#[error("JSON object {for_target:?} does not have {type_of} key {with_key:?}")]
JsonKeyMissing {
for_target: String,
type_of: String,
with_key: String,
},
#[error(transparent)]
Serde(#[from] serde_json::Error),
}
impl JsonError {
pub(crate) fn not_of_type<T: Into<String>>(target: T, of_type: JsonType) -> Error {
Self::NotOfType { target: target.into(), of_type }.into()
}
pub(crate) fn not_multiples_of_type<T: Into<String>>(target: T, of_type: JsonType) -> Error {
Self::NotMultiplesOfType { target: target.into(), of_type }.into()
}
pub(crate) fn field_missing_from_object<T: Into<String>>(target: T) -> Error {
Self::JsonFieldMissingFromObject(target.into()).into()
}
pub(crate) fn key_missing<T1: Into<String>, T2: Into<String>, T3: Into<String>>(
for_target: T1,
type_of: T2,
with_key: T3,
) -> Error {
Self::JsonKeyMissing {
for_target: for_target.into(),
type_of: type_of.into(),
with_key: with_key.into(),
}
.into()
}
}
#[derive(Debug)]
#[allow(clippy::exhaustive_enums)]
pub enum JsonType {
Object,
String,
Integer,
Array,
Boolean,
Null,
}
#[derive(Debug, Error)]
#[non_exhaustive]
pub enum VerificationError {
#[error("Could not find signatures for {0:?}")]
SignatureNotFound(OwnedServerName),
#[error("Could not find public key for {0:?}")]
PublicKeyNotFound(OwnedServerName),
#[error("Not signed with any of the given public keys")]
UnknownPublicKeysForSignature,
#[error("Could not verify signature: {0}")]
Signature(#[source] ed25519_dalek::SignatureError),
}
impl VerificationError {
pub(crate) fn signature_not_found(target: OwnedServerName) -> Error {
Self::SignatureNotFound(target).into()
}
pub(crate) fn public_key_not_found(target: OwnedServerName) -> Error {
Self::PublicKeyNotFound(target).into()
}
}
#[derive(Debug, Error)]
#[non_exhaustive]
pub enum ParseError {
#[error("Could not parse User ID: {0}")]
UserId(#[source] ruma_common::IdParseError),
#[error("Could not parse Event ID: {0}")]
EventId(#[source] ruma_common::IdParseError),
#[error("Event Id {0:?} should have a server name for the given room version {1:?}")]
ServerNameFromEventIdByRoomVersion(OwnedEventId, RoomVersionId),
#[error("PKCS#8 Document public key does not match public key derived from private key; derived: {0:X?} (len {}), parsed: {1:X?} (len {})", .derived_key.len(), .parsed_key.len())]
DerivedPublicKeyDoesNotMatchParsedKey {
parsed_key: Vec<u8>,
derived_key: Vec<u8>,
},
#[error("Algorithm OID does not match ed25519, expected {expected}, found {found}")]
Oid {
expected: pkcs8::ObjectIdentifier,
found: pkcs8::ObjectIdentifier,
},
#[error("Could not parse secret key: {0}")]
SecretKey(#[source] ed25519_dalek::SignatureError),
#[error("Could not parse public key: {0}")]
PublicKey(#[source] ed25519_dalek::SignatureError),
#[error("Could not parse signature: {0}")]
Signature(#[source] ed25519_dalek::SignatureError),
#[error("Could not parse {of_type} base64 string {string:?}: {source}")]
Base64 {
of_type: String,
string: String,
#[source]
source: Base64DecodeError,
},
}
impl ParseError {
pub(crate) fn from_event_id_by_room_version(
event_id: &EventId,
room_version: &RoomVersionId,
) -> Error {
Self::ServerNameFromEventIdByRoomVersion(event_id.to_owned(), room_version.clone()).into()
}
pub(crate) fn derived_vs_parsed_mismatch<P: Into<Vec<u8>>, D: Into<Vec<u8>>>(
parsed: P,
derived: D,
) -> Error {
Self::DerivedPublicKeyDoesNotMatchParsedKey {
parsed_key: parsed.into(),
derived_key: derived.into(),
}
.into()
}
pub(crate) fn base64<T1: Into<String>, T2: Into<String>>(
of_type: T1,
string: T2,
source: Base64DecodeError,
) -> Error {
Self::Base64 { of_type: of_type.into(), string: string.into(), source }.into()
}
}