-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlib.rs
277 lines (238 loc) · 8.19 KB
/
lib.rs
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
//! Catalyst documents signing crate
mod builder;
mod content;
pub mod doc_types;
mod metadata;
pub mod providers;
mod signature;
pub mod validator;
use std::{
convert::TryFrom,
fmt::{Display, Formatter},
sync::Arc,
};
use anyhow::Context;
pub use builder::Builder;
pub use catalyst_types::{
problem_report::ProblemReport,
uuid::{Uuid, UuidV4, UuidV7},
};
pub use content::Content;
use coset::{CborSerializable, Header, TaggedCborSerializable};
pub use metadata::{
Algorithm, ContentEncoding, ContentType, DocumentRef, ExtraFields, Metadata, Section,
};
use minicbor::{decode, encode, Decode, Decoder, Encode};
pub use signature::{IdUri, Signatures};
/// A problem report content string
const PROBLEM_REPORT_CTX: &str = "Catalyst Signed Document";
/// Inner type that holds the Catalyst Signed Document with parsing errors.
#[derive(Debug)]
struct InnerCatalystSignedDocument {
/// Document Metadata
metadata: Metadata,
/// Document Content
content: Content,
/// Signatures
signatures: Signatures,
/// A comprehensive problem report, which could include a decoding errors along with
/// the other validation errors
report: ProblemReport,
}
/// Keep all the contents private.
/// Better even to use a structure like this. Wrapping in an Arc means we don't have to
/// manage the Arc anywhere else. These are likely to be large, best to have the Arc be
/// non-optional.
#[derive(Debug, Clone)]
pub struct CatalystSignedDocument {
/// Catalyst Signed Document metadata, raw doc, with content errors.
inner: Arc<InnerCatalystSignedDocument>,
}
impl Display for CatalystSignedDocument {
fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), std::fmt::Error> {
writeln!(f, "{}", self.inner.metadata)?;
writeln!(f, "Payload Size: {} bytes", self.inner.content.size())?;
writeln!(f, "Signature Information")?;
if self.inner.signatures.is_empty() {
writeln!(f, " This document is unsigned.")?;
} else {
for kid in &self.inner.signatures.kids() {
writeln!(f, " Signature Key ID: {kid}")?;
}
}
Ok(())
}
}
impl From<InnerCatalystSignedDocument> for CatalystSignedDocument {
fn from(inner: InnerCatalystSignedDocument) -> Self {
Self {
inner: inner.into(),
}
}
}
impl CatalystSignedDocument {
// A bunch of getters to access the contents, or reason through the document, such as.
/// Return Document Type `UUIDv4`.
///
/// # Errors
/// - Missing 'type' field.
pub fn doc_type(&self) -> anyhow::Result<UuidV4> {
self.inner.metadata.doc_type()
}
/// Return Document ID `UUIDv7`.
///
/// # Errors
/// - Missing 'id' field.
pub fn doc_id(&self) -> anyhow::Result<UuidV7> {
self.inner.metadata.doc_id()
}
/// Return Document Version `UUIDv7`.
///
/// # Errors
/// - Missing 'ver' field.
pub fn doc_ver(&self) -> anyhow::Result<UuidV7> {
self.inner.metadata.doc_ver()
}
/// Return document `Content`.
#[must_use]
pub fn doc_content(&self) -> &Content {
&self.inner.content
}
/// Return document `ContentType`.
///
/// # Errors
/// - Missing 'content-type' field.
pub fn doc_content_type(&self) -> anyhow::Result<ContentType> {
self.inner.metadata.content_type()
}
/// Return document `ContentEncoding`.
#[must_use]
pub fn doc_content_encoding(&self) -> Option<ContentEncoding> {
self.inner.metadata.content_encoding()
}
/// Return document metadata content.
#[must_use]
pub fn doc_meta(&self) -> &ExtraFields {
self.inner.metadata.extra()
}
/// Return a Document's signatures
#[must_use]
pub(crate) fn signatures(&self) -> &Signatures {
&self.inner.signatures
}
/// Return a list of Document's Catalyst IDs.
#[must_use]
pub fn kids(&self) -> Vec<IdUri> {
self.inner.signatures.kids()
}
/// Return a list of Document's author IDs (short form of Catalyst IDs).
#[must_use]
pub fn authors(&self) -> Vec<IdUri> {
self.inner.signatures.authors()
}
/// Returns a collected problem report for the document.
/// It accumulates all kind of errors, collected during the decoding, type based
/// validation and signature verification.
///
/// This is method is only for the public API usage, do not use it internally inside
/// this crate.
#[must_use]
pub fn problem_report(&self) -> ProblemReport {
self.report().clone()
}
/// Returns an internal problem report
#[must_use]
pub(crate) fn report(&self) -> &ProblemReport {
&self.inner.report
}
/// Convert Catalyst Signed Document into `coset::CoseSign`
///
/// # Errors
/// Could fails if the `CatalystSignedDocument` object is not valid.
pub(crate) fn as_cose_sign(&self) -> anyhow::Result<coset::CoseSign> {
self.inner.as_cose_sign()
}
/// Returns a signed document `Builder` pre-loaded with the current signed document's
/// data.
#[must_use]
pub fn into_builder(&self) -> Builder {
self.into()
}
}
impl InnerCatalystSignedDocument {
/// Convert Catalyst Signed Document into `coset::CoseSign`
///
/// # Errors
/// Could fails if the `CatalystSignedDocument` object is not valid.
fn as_cose_sign(&self) -> anyhow::Result<coset::CoseSign> {
let protected_header =
Header::try_from(&self.metadata).context("Failed to encode Document Metadata")?;
let content = self
.content
.encoded_bytes(self.metadata.content_encoding())?;
let mut builder = coset::CoseSignBuilder::new()
.protected(protected_header)
.payload(content);
for signature in self.signatures.cose_signatures() {
builder = builder.add_signature(signature);
}
Ok(builder.build())
}
}
impl Decode<'_, ()> for CatalystSignedDocument {
fn decode(d: &mut Decoder<'_>, _ctx: &mut ()) -> Result<Self, decode::Error> {
let start = d.position();
d.skip()?;
let end = d.position();
let cose_bytes = d
.input()
.get(start..end)
.ok_or(minicbor::decode::Error::end_of_input())?;
let cose_sign = coset::CoseSign::from_tagged_slice(cose_bytes)
.or_else(|_| coset::CoseSign::from_slice(cose_bytes))
.map_err(|e| {
minicbor::decode::Error::message(format!("Invalid COSE Sign document: {e}"))
})?;
let report = ProblemReport::new(PROBLEM_REPORT_CTX);
let metadata = Metadata::from_protected_header(&cose_sign.protected, &report);
let signatures = Signatures::from_cose_sig(&cose_sign.signatures, &report);
let content = if let Some(payload) = cose_sign.payload {
Content::from_encoded(payload, metadata.content_encoding(), &report)
} else {
report.missing_field("COSE Sign Payload", "Missing document content (payload)");
Content::default()
};
Ok(InnerCatalystSignedDocument {
metadata,
content,
signatures,
report,
}
.into())
}
}
impl Encode<()> for CatalystSignedDocument {
fn encode<W: minicbor::encode::Write>(
&self, e: &mut encode::Encoder<W>, _ctx: &mut (),
) -> Result<(), encode::Error<W::Error>> {
let cose_sign = self.as_cose_sign().map_err(encode::Error::message)?;
let cose_bytes = cose_sign.to_tagged_vec().map_err(|e| {
minicbor::encode::Error::message(format!("Failed to encode COSE Sign document: {e}"))
})?;
e.writer_mut()
.write_all(&cose_bytes)
.map_err(|_| minicbor::encode::Error::message("Failed to encode to CBOR"))
}
}
impl TryFrom<&[u8]> for CatalystSignedDocument {
type Error = anyhow::Error;
fn try_from(value: &[u8]) -> Result<Self, Self::Error> {
Ok(minicbor::decode(value)?)
}
}
impl TryFrom<CatalystSignedDocument> for Vec<u8> {
type Error = anyhow::Error;
fn try_from(value: CatalystSignedDocument) -> Result<Self, Self::Error> {
Ok(minicbor::to_vec(value)?)
}
}