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
use sha2::Digest;
use crate::cell::{
CellContainer, CellDescriptor, CellFamily, CellHash, CellType, LevelMask, MAX_REF_COUNT,
};
use crate::util::{unlikely, ArrayVec};
#[cfg(feature = "stats")]
use crate::cell::CellTreeStats;
pub trait Finalizer<C: CellFamily + ?Sized> {
fn finalize_cell(&mut self, cell: CellParts<'_, C>) -> Option<CellContainer<C>>;
}
impl<F, C: CellFamily> Finalizer<C> for F
where
F: FnMut(CellParts<C>) -> Option<CellContainer<C>>,
{
fn finalize_cell(&mut self, cell: CellParts<C>) -> Option<CellContainer<C>> {
(*self)(cell)
}
}
pub trait DefaultFinalizer: CellFamily {
type Finalizer: Finalizer<Self>;
fn default_finalizer() -> Self::Finalizer;
}
pub struct CellParts<'a, C: CellFamily + ?Sized> {
#[cfg(feature = "stats")]
pub stats: CellTreeStats,
pub bit_len: u16,
pub descriptor: CellDescriptor,
pub children_mask: LevelMask,
pub references: ArrayVec<CellContainer<C>, MAX_REF_COUNT>,
pub data: &'a [u8],
}
impl<'a, C: CellFamily + 'a> CellParts<'a, C> {
pub fn compute_hashes(&self) -> Option<Vec<(CellHash, u16)>> {
const HASH_BITS: usize = 256;
const DEPTH_BITS: usize = 16;
let mut descriptor = self.descriptor;
let bit_len = self.bit_len as usize;
let level_mask = descriptor.level_mask();
let level = level_mask.level() as usize;
let references = self.references.as_ref();
let mut hashes_len = level + 1;
let (cell_type, computed_level_mask) = if unlikely(descriptor.is_exotic()) {
let Some(&first_byte) = self.data.first() else {
return None;
};
const PRUNED_BRANCH: u8 = CellType::PrunedBranch.to_byte();
const MERKLE_PROOF: u8 = CellType::MerkleProof.to_byte();
const MERKLE_UPDATE: u8 = CellType::MerkleUpdate.to_byte();
const LIBRARY_REFERENCE: u8 = CellType::LibraryReference.to_byte();
match first_byte {
PRUNED_BRANCH => {
if unlikely(level == 0) {
return None;
}
let expected_bit_len = 8 + 8 + level * (HASH_BITS + DEPTH_BITS);
if unlikely(bit_len != expected_bit_len || !references.is_empty()) {
return None;
}
let stored_mask = self.data.get(1).copied().unwrap_or_default();
if unlikely(level_mask != stored_mask) {
return None;
}
hashes_len = 1;
(CellType::PrunedBranch, level_mask)
}
MERKLE_PROOF => {
const EXPECTED_BIT_LEN: usize = 8 + HASH_BITS + DEPTH_BITS;
if unlikely(bit_len != EXPECTED_BIT_LEN || references.len() != 1) {
return None;
}
(CellType::MerkleProof, self.children_mask.virtualize(1))
}
MERKLE_UPDATE => {
const EXPECTED_BIT_LEN: usize = 8 + 2 * (HASH_BITS + DEPTH_BITS);
if unlikely(bit_len != EXPECTED_BIT_LEN || references.len() != 2) {
return None;
}
(CellType::MerkleUpdate, self.children_mask.virtualize(1))
}
LIBRARY_REFERENCE => {
const EXPECTED_BIT_LEN: usize = 8 + HASH_BITS;
if unlikely(bit_len != EXPECTED_BIT_LEN || !references.is_empty()) {
return None;
}
(CellType::LibraryReference, LevelMask::EMPTY)
}
_ => return None,
}
} else {
(CellType::Ordinary, self.children_mask)
};
if unlikely(computed_level_mask != level_mask) {
return None;
}
let level_offset = cell_type.is_merkle() as u8;
let mut hashes = Vec::<(CellHash, u16)>::with_capacity(hashes_len);
for level in 0..hashes_len {
let mut hasher = sha2::Sha256::new();
let level_mask = if cell_type == CellType::PrunedBranch {
level_mask
} else {
LevelMask::from_level(level as u8)
};
descriptor.d1 &= !(CellDescriptor::LEVEL_MASK | CellDescriptor::STORE_HASHES_MASK);
descriptor.d1 |= u8::from(level_mask) << 5;
hasher.update([descriptor.d1, descriptor.d2]);
if level == 0 {
hasher.update(self.data);
} else {
debug_assert!((level - 1) < hashes.len());
let prev_hash = unsafe { hashes.get_unchecked(level - 1) };
hasher.update(prev_hash.0.as_slice());
}
let mut depth = 0;
for child in references {
let child_depth = child.as_ref().depth(level as u8 + level_offset);
depth = std::cmp::max(depth, child_depth.checked_add(1)?);
hasher.update(child_depth.to_be_bytes());
}
for child in references {
let child_hash = child.as_ref().hash(level as u8 + level_offset);
hasher.update(child_hash.as_slice());
}
let hash = hasher.finalize().into();
hashes.push((hash, depth));
}
Some(hashes)
}
}