penumbra_tct/validate.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 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
//! Validation checks to ensure that [`Tree`]s are well-formed.
use std::{
collections::BTreeMap,
fmt::{Display, Write},
};
use crate::prelude::*;
/// Verify that the inner index of the tree is correct with respect to the tree structure
/// itself.
///
/// This is an expensive operation that requires traversing the entire tree structure,
/// building an auxiliary reverse index, and re-hashing every leaf of the tree.
///
/// If this ever returns `Err`, it indicates either a bug in this crate, or a tree that was
/// deserialized from an untrustworthy source.
pub fn index(tree: &Tree) -> Result<(), IndexMalformed> {
// A reverse index from positions back to the commitments that are supposed to map to their
// hashes
let reverse_index: BTreeMap<Position, StateCommitment> = tree
.commitments_unordered()
.map(|(commitment, position)| (position, commitment))
.collect();
let mut errors = vec![];
let mut stack = vec![tree.structure()];
while let Some(node) = stack.pop() {
stack.extend(node.children());
if let Kind::Leaf {
commitment: Some(actual_commitment),
} = node.kind()
{
// We're at a leaf, so check it:
if let Some(&expected_commitment) = reverse_index.get(&node.position()) {
if actual_commitment != expected_commitment {
errors.push(IndexError::CommitmentMismatch {
position: node.position(),
expected_commitment,
actual_commitment,
});
}
let expected_hash = Hash::of(actual_commitment);
if expected_hash != node.hash() {
errors.push(IndexError::HashMismatch {
commitment: expected_commitment,
position: node.position(),
expected_hash,
found_hash: node.hash(),
});
}
} else {
// It's okay for there to be an unindexed witness on the frontier (because the
// frontier is always represented, even if it's marked for later forgetting),
// but otherwise we want to ensure that all witnesses are indexed
errors.push(IndexError::UnindexedWitness {
position: node.position(),
found_hash: node.hash(),
});
};
}
}
// Return an error if any were discovered
if errors.is_empty() {
Ok(())
} else {
Err(IndexMalformed { errors })
}
}
/// The index for the tree contained at least one error.
#[derive(Clone, Debug, Error)]
#[error("malformed index:{}", display_errors(.errors))]
pub struct IndexMalformed {
/// The errors found in the index.
pub errors: Vec<IndexError>,
}
/// An error occurred when verifying the tree's index.
#[derive(Clone, Debug, Error)]
pub enum IndexError {
/// The index is missing a position.
#[error("unindexed position `{position:?}` with hash {found_hash:?}")]
UnindexedWitness {
/// The position expected to be present in the index.
position: Position,
/// The hash found at that position.
found_hash: Hash,
},
/// A commitment in the index points to a leaf with a different commitment
#[error("found commitment {actual_commitment:?} at position {position:?} but expected {expected_commitment:?}")]
CommitmentMismatch {
/// The position of the leaf that was found to have the wrong commitment.
position: Position,
/// The commitment that was expected.
expected_commitment: StateCommitment,
/// The commitment that was found.
actual_commitment: StateCommitment,
},
/// A commitment in the index doesn't match the hash in the tree at that position.
#[error("mismatched hash for commitment {commitment:?} at position `{position:?}`: found {found_hash:?}, expected {expected_hash:?}")]
HashMismatch {
/// The commitment which should have the found hash.
commitment: StateCommitment,
/// The position that commitment maps to in the index.
position: Position,
/// The expected hash value of that commitment.
expected_hash: Hash,
/// The actual hash found in the tree structure at the position in the index for that commitment.
found_hash: Hash,
},
}
/// Verify that every witnessed commitment can be used to generate a proof of inclusion which is
/// valid with respect to the current root.
///
/// This is an expensive operation that requires traversing the entire tree structure and doing
/// a lot of hashing.
///
/// If this ever returns `Err`, it indicates either a bug in this crate, or a tree that was
/// deserialized from an untrustworthy source.
pub fn all_proofs(tree: &Tree) -> Result<(), InvalidWitnesses> {
let root = tree.root();
let mut errors = vec![];
for (commitment, position) in tree.commitments_unordered() {
if let Some(proof) = tree.witness(commitment) {
if proof.verify(root).is_err() {
errors.push(WitnessError::InvalidProof {
proof: Box::new(proof),
});
}
} else {
errors.push(WitnessError::UnwitnessedCommitment {
commitment,
position,
})
}
}
if errors.is_empty() {
Ok(())
} else {
Err(InvalidWitnesses { root, errors })
}
}
/// At least one proof generated by the tree failed to verify against the root.
#[derive(Clone, Debug, Error)]
#[error(
"invalid witnesses produced by tree for root {root:?}:{}",
display_errors(errors)
)]
pub struct InvalidWitnesses {
/// The root of the tree at which the errors were found.
pub root: Root,
/// The errors found.
pub errors: Vec<WitnessError>,
}
/// An error occurred when verifying the tree's contained witnesses.
#[derive(Clone, Debug, Error)]
pub enum WitnessError {
/// The index contains a commitment that is not witnessed.
#[error("unwitnessed commitment {commitment:?} at position `{position:?}`")]
UnwitnessedCommitment {
/// The commitment that was not present in the tree.
commitment: StateCommitment,
/// The position at which it was supposed to appear.
position: Position,
},
/// The proof produced by the tree does not verify against the root.
#[error("invalid proof for commitment {:?} at position `{:?}`", .proof.commitment(), .proof.position())]
InvalidProof {
/// The proof which failed to verify.
proof: Box<Proof>,
},
}
/// Verify that every internally cached hash matches what it should be, by re-hashing all of them.
///
/// This is an expensive operation that requires traversing the entire tree structure and doing
/// a lot of hashing.
///
/// If this ever returns `Err`, it indicates a bug in this crate.
pub fn cached_hashes(tree: &Tree) -> Result<(), InvalidCachedHashes> {
use structure::*;
fn check_hashes(errors: &mut Vec<InvalidCachedHash>, node: Node) {
// IMPORTANT: we need to traverse children before parent, to avoid overwriting the
// parent's hash before we have a chance to check it! This is why we don't use
// `structure::traverse` here, because that is a pre-order traversal.
for child in node.children() {
// The frontier is the only place where cached hashes occur
if child.place() == Place::Frontier {
check_hashes(errors, child);
}
}
if let Some(cached) = node.cached_hash() {
// IMPORTANT: we need to clear the cache to actually recompute it!
node.clear_cached_hash();
let recomputed = node.hash();
if cached != recomputed {
errors.push(InvalidCachedHash {
place: node.place(),
kind: node.kind(),
height: node.height(),
index: node.index(),
cached,
recomputed,
})
}
}
}
let mut errors = vec![];
check_hashes(&mut errors, tree.structure());
if errors.is_empty() {
Ok(())
} else {
Err(InvalidCachedHashes { errors })
}
}
/// The tree contained at least one internal cached hash that was incorrect.
#[derive(Clone, Debug, Error)]
#[error("invalid cached hashes:{}", display_errors(.errors))]
pub struct InvalidCachedHashes {
/// The errors found in the tree.
pub errors: Vec<InvalidCachedHash>,
}
/// An mismatch between a cached hash and the hash it ought to have been.
#[derive(Clone, Debug, Error)]
#[error("cache for `{place}::{kind}` at height {height}, index {index} is incorrect: found {cached:?}, expected {recomputed:?}")]
pub struct InvalidCachedHash {
/// The place of the node with the error.
pub place: Place,
/// The kind of the node with the error.
pub kind: Kind,
/// The height of the node with the error.
pub height: u8,
/// The index of the node with the error.
pub index: u64,
/// The previous cached hash at that location.
pub cached: Hash,
/// The recomputed hash that should have been there.
pub recomputed: Hash,
}
/// Verify that the internal forgotten versions are consistent throughout the tree.
///
/// This is a relatively expensive operation which requires traversing the entire tree structure.
///
/// If this ever returns `Err`, it indicates a bug in this crate.
pub fn forgotten(tree: &Tree) -> Result<(), InvalidForgotten> {
use structure::*;
fn check_forgotten(
errors: &mut Vec<InvalidForgottenVersion>,
expected_max: Option<Forgotten>,
node: Node,
) {
let children = node.children();
let actual_max = node
.children()
.iter()
.map(Node::forgotten)
.max()
.unwrap_or_default();
if let Some(expected_max) = expected_max {
// Check the expected forgotten version here
if actual_max != expected_max {
errors.push(InvalidForgottenVersion {
kind: node.kind(),
place: node.place(),
height: node.height(),
index: node.index(),
expected_max,
actual_max,
})
}
// Check the children
for child in children {
check_forgotten(errors, Some(child.forgotten()), child);
}
}
}
let mut errors = vec![];
check_forgotten(&mut errors, None, tree.structure());
if errors.is_empty() {
Ok(())
} else {
Err(InvalidForgotten { errors })
}
}
/// The tree contained at least one discrepancy in the internal forgotten versions of its nodes.
#[derive(Clone, Debug, Error)]
#[error("invalid forgotten versions:{}", display_errors(.errors))]
pub struct InvalidForgotten {
/// The errors found in the tree.
pub errors: Vec<InvalidForgottenVersion>,
}
/// A mismatch between the expected maximum forgotten version and the actual one.
#[derive(Clone, Debug, Error)]
#[error("forgotten version mismatch for `{place}::{kind}` at height {height}, index {index}: found {actual_max:?}, expected {expected_max:?}")]
pub struct InvalidForgottenVersion {
/// The place of the node with the error.
pub place: Place,
/// The kind of the node with the error.
pub kind: Kind,
/// The height of the node with the error.
pub height: u8,
/// The index of the node with the error.
pub index: u64,
/// The actual maximum forgotten version.
pub actual_max: Forgotten,
/// The expected maximum forgotten version.
pub expected_max: Forgotten,
}
// A helper function to display a line-separated list of errors
fn display_errors(errors: impl IntoIterator<Item = impl Display>) -> String {
let mut output = String::new();
for error in errors.into_iter() {
write!(&mut output, "\n {error}").unwrap();
}
output
}