sc_proof_of_time/verifier.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
//! Proof of time verifier
#[cfg(test)]
mod tests;
use parking_lot::Mutex;
use schnellru::{ByLength, LruMap};
use sp_consensus_slots::Slot;
use sp_consensus_subspace::{PotNextSlotInput, PotParametersChange};
use std::num::NonZeroU32;
use std::sync::Arc;
use subspace_core_primitives::pot::{PotCheckpoints, PotOutput, PotSeed};
#[derive(Debug, Copy, Clone, Eq, PartialEq, Hash)]
struct CacheKey {
seed: PotSeed,
slot_iterations: NonZeroU32,
}
#[derive(Debug, Clone)]
struct CacheValue {
checkpoints: Arc<Mutex<Option<PotCheckpoints>>>,
}
/// Verifier data structure that verifies and caches results of PoT verification
#[derive(Debug, Clone)]
pub struct PotVerifier {
genesis_seed: PotSeed,
cache: Arc<Mutex<LruMap<CacheKey, CacheValue>>>,
}
impl PotVerifier {
pub fn new(genesis_seed: PotSeed, cache_size: u32) -> Self {
Self {
genesis_seed,
cache: Arc::new(Mutex::new(LruMap::new(ByLength::new(cache_size)))),
}
}
/// Inject known good checkpoints into verifier
pub fn inject_verified_checkpoints(
&self,
seed: PotSeed,
slot_iterations: NonZeroU32,
checkpoints: PotCheckpoints,
) {
self.cache.lock().insert(
CacheKey {
seed,
slot_iterations,
},
CacheValue {
checkpoints: Arc::new(Mutex::new(Some(checkpoints))),
},
);
}
/// Get genesis seed
pub fn genesis_seed(&self) -> PotSeed {
self.genesis_seed
}
/// Try to get checkpoints for provided seed and slot iterations, returns `None` if proving
/// fails internally.
pub fn get_checkpoints(
&self,
slot_iterations: NonZeroU32,
seed: PotSeed,
) -> Option<PotCheckpoints> {
self.calculate_checkpoints(slot_iterations, seed, true)
}
/// Try to get checkpoints quickly without waiting for potentially locked mutex or proving
pub fn try_get_checkpoints(
&self,
slot_iterations: NonZeroU32,
seed: PotSeed,
) -> Option<PotCheckpoints> {
let cache_key = CacheKey {
seed,
slot_iterations,
};
self.cache
.lock()
.get(&cache_key)
.and_then(|value| value.checkpoints.try_lock()?.as_ref().copied())
}
/// Verify sequence of proofs of time that covers `slots` slots starting at `slot` with provided
/// initial `seed`.
///
/// In case `maybe_parameters_change` is present, it will not affect provided `seed` and
/// `slot_iterations`, meaning if parameters change occurred at `slot`, provided `seed` and
/// `slot_iterations` must already account for that.
///
/// NOTE: Potentially much slower than checkpoints, prefer [`Self::verify_checkpoints()`]
/// whenever possible.
pub fn is_output_valid(
&self,
input: PotNextSlotInput,
slots: Slot,
output: PotOutput,
maybe_parameters_change: Option<PotParametersChange>,
) -> bool {
self.is_output_valid_internal(input, slots, output, maybe_parameters_change, true)
}
/// Does the same verification as [`Self::is_output_valid()`] except it relies on proofs being
/// pre-validated before and will return `false` in case proving is necessary, this is meant to
/// be a quick and cheap version of the function.
pub fn try_is_output_valid(
&self,
input: PotNextSlotInput,
slots: Slot,
output: PotOutput,
maybe_parameters_change: Option<PotParametersChange>,
) -> bool {
self.is_output_valid_internal(input, slots, output, maybe_parameters_change, false)
}
fn is_output_valid_internal(
&self,
mut input: PotNextSlotInput,
slots: Slot,
output: PotOutput,
maybe_parameters_change: Option<PotParametersChange>,
do_proving_if_necessary: bool,
) -> bool {
let mut slots = u64::from(slots);
loop {
let maybe_calculated_checkpoints = self.calculate_checkpoints(
input.slot_iterations,
input.seed,
do_proving_if_necessary,
);
let Some(calculated_checkpoints) = maybe_calculated_checkpoints else {
return false;
};
let calculated_output = calculated_checkpoints.output();
slots -= 1;
if slots == 0 {
return output == calculated_output;
}
input = PotNextSlotInput::derive(
input.slot_iterations,
input.slot,
calculated_output,
&maybe_parameters_change,
);
}
}
/// Derive next seed, proving might be used if necessary
fn calculate_checkpoints(
&self,
slot_iterations: NonZeroU32,
seed: PotSeed,
do_proving_if_necessary: bool,
) -> Option<PotCheckpoints> {
let cache_key = CacheKey {
seed,
slot_iterations,
};
loop {
let mut cache = self.cache.lock();
let maybe_cache_value = cache.get(&cache_key).cloned();
if let Some(cache_value) = maybe_cache_value {
drop(cache);
let correct_checkpoints = cache_value.checkpoints.lock();
if let Some(correct_checkpoints) = *correct_checkpoints {
return Some(correct_checkpoints);
}
// There was another verification for these inputs and it wasn't successful, retry
continue;
}
if !do_proving_if_necessary {
// If not found and proving is not allowed then just exit
return None;
}
let cache_value = CacheValue {
checkpoints: Arc::default(),
};
let checkpoints = Arc::clone(&cache_value.checkpoints);
// Take a lock before anyone else
let mut checkpoints = checkpoints
.try_lock()
.expect("No one can access this mutex yet; qed");
// Store pending verification entry in cache
cache.insert(cache_key, cache_value);
// Cache lock is no longer necessary, other callers should be able to access cache too
drop(cache);
let proving_result = subspace_proof_of_time::prove(seed, slot_iterations);
let Ok(generated_checkpoints) = proving_result else {
// Avoid deadlock when taking a lock below
drop(checkpoints);
// Proving failed, remove pending entry from cache such that retries can happen
let maybe_removed_cache_value = self.cache.lock().remove(&cache_key);
if let Some(removed_cache_value) = maybe_removed_cache_value {
// It is possible that we have removed a verified value that we have not
// inserted, check for this and restore if that was the case
let removed_verified_value = removed_cache_value.checkpoints.lock().is_some();
if removed_verified_value {
self.cache.lock().insert(cache_key, removed_cache_value);
}
}
return None;
};
checkpoints.replace(generated_checkpoints);
return Some(generated_checkpoints);
}
}
/// Verify proof of time checkpoints
pub fn verify_checkpoints(
&self,
seed: PotSeed,
slot_iterations: NonZeroU32,
checkpoints: &PotCheckpoints,
) -> bool {
self.verify_checkpoints_internal(seed, slot_iterations, checkpoints)
}
fn verify_checkpoints_internal(
&self,
seed: PotSeed,
slot_iterations: NonZeroU32,
checkpoints: &PotCheckpoints,
) -> bool {
let cache_key = CacheKey {
seed,
slot_iterations,
};
loop {
let mut cache = self.cache.lock();
if let Some(cache_value) = cache.get(&cache_key).cloned() {
drop(cache);
let correct_checkpoints = cache_value.checkpoints.lock();
if let Some(correct_checkpoints) = correct_checkpoints.as_ref() {
return checkpoints == correct_checkpoints;
}
// There was another verification for these inputs and it wasn't successful, retry
continue;
}
let cache_value = CacheValue {
checkpoints: Arc::default(),
};
let correct_checkpoints = Arc::clone(&cache_value.checkpoints);
// Take a lock before anyone else
let mut correct_checkpoints = correct_checkpoints
.try_lock()
.expect("No one can access this mutex yet; qed");
// Store pending verification entry in cache
cache.insert(cache_key, cache_value);
// Cache lock is no longer necessary, other callers should be able to access cache too
drop(cache);
let verified_successfully =
subspace_proof_of_time::verify(seed, slot_iterations, checkpoints.as_slice())
.unwrap_or_default();
if !verified_successfully {
// Avoid deadlock when taking a lock below
drop(correct_checkpoints);
// Verification failed, remove pending entry from cache such that retries can happen
let maybe_removed_cache_value = self.cache.lock().remove(&cache_key);
if let Some(removed_cache_value) = maybe_removed_cache_value {
// It is possible that we have removed a verified value that we have not
// inserted, check for this and restore if that was the case
let removed_verified_value = removed_cache_value.checkpoints.lock().is_some();
if removed_verified_value {
self.cache.lock().insert(cache_key, removed_cache_value);
}
}
return false;
}
// Store known good checkpoints in cache
correct_checkpoints.replace(*checkpoints);
return true;
}
}
}