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
use crate::Digest;
use protobuf::Message;
use std::convert::{TryFrom, TryInto};
#[derive(Debug)]
pub enum LocalAuditorError {
NameParseError(String),
MisMatchedLengths(String),
ConversionError(akd_core::proto::ConversionError),
}
impl From<akd_core::proto::ConversionError> for LocalAuditorError {
fn from(err: akd_core::proto::ConversionError) -> Self {
Self::ConversionError(err)
}
}
impl From<protobuf::Error> for LocalAuditorError {
fn from(err: protobuf::Error) -> Self {
Self::ConversionError(err.into())
}
}
macro_rules! hash_from_ref {
($obj:expr) => {
crate::hash::try_parse_digest($obj)
.map_err(akd_core::proto::ConversionError::Deserialization)
};
}
const NAME_SEPARATOR: char = '/';
#[derive(Clone, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Default)]
pub struct AuditBlobName {
pub epoch: u64,
pub previous_hash: Digest,
pub current_hash: Digest,
}
impl std::string::ToString for AuditBlobName {
fn to_string(&self) -> String {
let previous_hash = hex::encode(self.previous_hash);
let current_hash = hex::encode(self.current_hash);
format!(
"{}{}{}{}{}",
self.epoch, NAME_SEPARATOR, previous_hash, NAME_SEPARATOR, current_hash
)
}
}
impl TryFrom<&str> for AuditBlobName {
type Error = LocalAuditorError;
fn try_from(name: &str) -> Result<Self, Self::Error> {
let parts = name.split(NAME_SEPARATOR).collect::<Vec<_>>();
if parts.len() < 3 {
return Err(LocalAuditorError::NameParseError(
"Name is malformed, there are not enough components to reconstruct!".to_string(),
));
}
let epoch: u64 = parts[0].parse().map_err(|_| {
LocalAuditorError::NameParseError(format!("Failed to parse '{}' into an u64", parts[0]))
})?;
let previous_hash_bytes = hex::decode(parts[1]).map_err(|hex_err| {
LocalAuditorError::NameParseError(format!(
"Failed to decode previous hash from hex string: {}",
hex_err
))
})?;
let previous_hash = hash_from_ref!(&previous_hash_bytes)?;
let current_hash_bytes = hex::decode(parts[2]).map_err(|hex_err| {
LocalAuditorError::NameParseError(format!(
"Failed to decode current hash from hex string: {}",
hex_err
))
})?;
let current_hash = hash_from_ref!(¤t_hash_bytes)?;
Ok(AuditBlobName {
epoch,
current_hash,
previous_hash,
})
}
}
#[derive(Clone)]
pub struct AuditBlob {
pub name: AuditBlobName,
pub data: Vec<u8>,
}
impl AuditBlob {
pub fn new(
previous_hash: Digest,
current_hash: Digest,
epoch: u64,
proof: &crate::SingleAppendOnlyProof,
) -> Result<AuditBlob, LocalAuditorError> {
let name = AuditBlobName {
epoch,
previous_hash,
current_hash,
};
let proto: akd_core::proto::specs::types::SingleAppendOnlyProof = proof.into();
Ok(AuditBlob {
name,
data: proto.write_to_bytes()?,
})
}
pub fn decode(
&self,
) -> Result<(u64, Digest, Digest, crate::SingleAppendOnlyProof), LocalAuditorError> {
let proof =
akd_core::proto::specs::types::SingleAppendOnlyProof::parse_from_bytes(&self.data)?;
let local_proof: crate::SingleAppendOnlyProof = (&proof).try_into()?;
Ok((
self.name.epoch,
hash_from_ref!(&self.name.previous_hash)?,
hash_from_ref!(&self.name.current_hash)?,
local_proof,
))
}
}
pub fn generate_audit_blobs(
hashes: Vec<Digest>,
proof: crate::AppendOnlyProof,
) -> Result<Vec<AuditBlob>, LocalAuditorError> {
if proof.epochs.len() + 1 != hashes.len() {
return Err(LocalAuditorError::MisMatchedLengths(format!(
"The proof has a different number of epochs than needed for hashes.
The number of hashes you provide should be one more than the number of epochs!
Number of epochs = {}, number of hashes = {}",
proof.epochs.len(),
hashes.len()
)));
}
if proof.epochs.len() != proof.proofs.len() {
return Err(LocalAuditorError::MisMatchedLengths(format!(
"The proof has {} epochs and {} proofs. These should be equal!",
proof.epochs.len(),
proof.proofs.len()
)));
}
let mut results = Vec::with_capacity(proof.proofs.len());
for i in 0..hashes.len() - 1 {
let previous_hash = hashes[i];
let current_hash = hashes[i + 1];
let epoch = proof.epochs[i];
let blob = AuditBlob::new(previous_hash, current_hash, epoch, &proof.proofs[i])?;
results.push(blob);
}
Ok(results)
}
#[cfg(test)]
mod tests {
use super::{AuditBlobName, LocalAuditorError};
use std::convert::TryInto;
#[test]
fn test_audit_proof_naming_conventions() -> Result<(), LocalAuditorError> {
let expected_name = "54/0101010101010101010101010101010101010101010101010101010101010101/0000000000000000000000000000000000000000000000000000000000000000";
let blob_name = AuditBlobName {
current_hash: crate::hash::EMPTY_DIGEST,
previous_hash: [1u8; crate::hash::DIGEST_BYTES],
epoch: 54,
};
let name = blob_name.to_string();
assert_ne!(String::new(), name);
assert_eq!(expected_name.to_string(), blob_name.to_string());
let blob_name_ref: &str = name.as_ref();
let decomposed: AuditBlobName = blob_name_ref.try_into()?;
assert_eq!(blob_name, decomposed);
Ok(())
}
}