Files
serai/coordinator/src/tributary/scanner.rs

332 lines
10 KiB
Rust
Raw Normal View History

2023-04-20 05:05:17 -04:00
use core::ops::Deref;
use std::collections::HashMap;
2023-04-20 05:05:17 -04:00
use zeroize::Zeroizing;
use ciphersuite::{Ciphersuite, Ristretto};
use tokio::sync::mpsc::UnboundedSender;
use tributary::{Signed, Block, TributaryReader};
2023-04-20 05:05:17 -04:00
use processor_messages::{
key_gen::{self, KeyGenId},
sign::{self, SignId},
coordinator, CoordinatorMessage,
2023-04-20 05:05:17 -04:00
};
use serai_db::DbTxn;
use crate::{
Db,
processors::Processors,
2023-04-20 05:05:17 -04:00
tributary::{TributaryDb, TributarySpec, Transaction},
};
#[derive(Clone, Copy, PartialEq, Eq, Debug)]
pub enum RecognizedIdType {
Block,
Plan,
}
2023-04-20 05:05:17 -04:00
// Handle a specific Tributary block
2023-08-01 02:49:31 -04:00
#[allow(clippy::needless_pass_by_ref_mut)] // False positive?
async fn handle_block<D: Db, Pro: Processors>(
2023-04-20 05:05:17 -04:00
db: &mut TributaryDb<D>,
key: &Zeroizing<<Ristretto as Ciphersuite>::F>,
recognized_id: &UnboundedSender<([u8; 32], RecognizedIdType, [u8; 32])>,
processors: &Pro,
2023-04-20 05:05:17 -04:00
spec: &TributarySpec,
block: Block<Transaction>,
) {
log::info!("found block for Tributary {:?}", spec.set());
let genesis = spec.genesis();
2023-04-20 05:05:17 -04:00
let hash = block.hash();
let mut event_id = 0;
2023-04-20 14:24:49 -04:00
#[allow(clippy::explicit_counter_loop)] // event_id isn't TX index. It just currently lines up
2023-04-20 05:05:17 -04:00
for tx in block.transactions {
if !TributaryDb::<D>::handled_event(&db.0, hash, event_id) {
let mut txn = db.0.txn();
2023-04-20 14:24:49 -04:00
// Used to determine if an ID is acceptable
#[derive(Clone, Copy, PartialEq, Eq, Debug)]
enum Zone {
Dkg,
Batch,
Sign,
}
2023-04-20 14:51:33 -04:00
impl Zone {
fn label(&self) -> &'static str {
match self {
Zone::Dkg => {
panic!("getting the label for dkg despite dkg code paths not needing a label")
}
2023-04-20 14:24:49 -04:00
Zone::Batch => "batch",
Zone::Sign => "sign",
2023-04-20 14:51:33 -04:00
}
2023-04-20 14:24:49 -04:00
}
2023-04-20 14:51:33 -04:00
}
2023-04-20 14:24:49 -04:00
let mut handle = |zone: Zone,
label,
needed,
id,
attempt,
mut bytes: Vec<u8>,
signed: Signed| {
if zone == Zone::Dkg {
// Since Dkg doesn't have an ID, solely attempts, this should just be [0; 32]
assert_eq!(id, [0; 32], "DKG, which shouldn't have IDs, had a non-0 ID");
} else if !TributaryDb::<D>::recognized_id(&txn, zone.label(), genesis, id) {
// TODO: Full slash
todo!();
}
2023-04-20 05:05:17 -04:00
// If they've already published a TX for this attempt, slash
if let Some(data) = TributaryDb::<D>::data(label, &txn, genesis, id, attempt, signed.signer)
{
if data != bytes {
2023-04-20 14:51:33 -04:00
// TODO: Full slash
todo!();
2023-04-20 05:05:17 -04:00
}
// TODO: Slash
return None;
}
2023-04-20 14:51:33 -04:00
// If the attempt is lesser than the blockchain's, slash
let curr_attempt = TributaryDb::<D>::attempt(&txn, genesis, id);
if attempt < curr_attempt {
// TODO: Slash for being late
return None;
}
if attempt > curr_attempt {
// TODO: Full slash
todo!();
}
2023-04-20 14:51:33 -04:00
// TODO: We can also full slash if shares before all commitments, or share before the
// necessary preprocesses
// TODO: If this is shares, we need to check they are part of the selected signing set
// Store this data
let received =
TributaryDb::<D>::set_data(label, &mut txn, genesis, id, attempt, signed.signer, &bytes);
// If we have all the needed commitments/preprocesses/shares, tell the processor
// TODO: This needs to be coded by weight, not by validator count
if received == needed {
let mut data = HashMap::new();
for validator in spec.validators().iter().map(|validator| validator.0) {
data.insert(
spec.i(validator).unwrap(),
if validator == signed.signer {
bytes.split_off(0)
} else if let Some(data) =
TributaryDb::<D>::data(label, &txn, genesis, id, attempt, validator)
{
data
} else {
continue;
},
);
2023-04-20 14:51:33 -04:00
}
assert_eq!(data.len(), usize::from(needed));
return Some(data);
}
None
};
2023-04-20 05:05:17 -04:00
match tx {
Transaction::DkgCommitments(attempt, bytes, signed) => {
if let Some(commitments) =
2023-04-20 14:24:49 -04:00
handle(Zone::Dkg, b"dkg_commitments", spec.n(), [0; 32], attempt, bytes, signed)
{
processors
.send(
spec.set().network,
CoordinatorMessage::KeyGen(key_gen::CoordinatorMessage::Commitments {
id: KeyGenId { set: spec.set(), attempt },
commitments,
}),
)
2023-04-20 05:05:17 -04:00
.await;
}
}
Transaction::DkgShares(attempt, mut shares, signed) => {
if shares.len() != usize::from(spec.n()) {
// TODO: Full slash
2023-04-20 14:24:49 -04:00
todo!();
2023-04-20 05:05:17 -04:00
}
let bytes = shares
.remove(
&spec
.i(Ristretto::generator() * key.deref())
.expect("in a tributary we're not a validator for"),
)
.unwrap();
2023-04-20 14:24:49 -04:00
if let Some(shares) =
handle(Zone::Dkg, b"dkg_shares", spec.n(), [0; 32], attempt, bytes, signed)
{
processors
.send(
spec.set().network,
CoordinatorMessage::KeyGen(key_gen::CoordinatorMessage::Shares {
id: KeyGenId { set: spec.set(), attempt },
shares,
}),
)
2023-04-20 05:05:17 -04:00
.await;
}
}
2023-04-20 14:51:33 -04:00
Transaction::ExternalBlock(block) => {
// Because this external block has been finalized, its batch ID should be authorized
TributaryDb::<D>::recognize_id(&mut txn, Zone::Batch.label(), genesis, block);
recognized_id
.send((genesis, RecognizedIdType::Block, block))
.expect("recognized_id_recv was dropped. are we shutting down?");
2023-04-20 14:51:33 -04:00
}
Transaction::SubstrateBlock(block) => {
let plan_ids = TributaryDb::<D>::plan_ids(&txn, genesis, block).expect(
"synced a tributary block finalizing a substrate block in a provided transaction \
despite us not providing that transaction",
);
for id in plan_ids {
TributaryDb::<D>::recognize_id(&mut txn, Zone::Sign.label(), genesis, id);
recognized_id
.send((genesis, RecognizedIdType::Plan, id))
.expect("recognized_id_recv was dropped. are we shutting down?");
}
}
2023-04-20 05:05:17 -04:00
Transaction::BatchPreprocess(data) => {
2023-04-20 14:24:49 -04:00
if let Some(preprocesses) = handle(
Zone::Batch,
b"batch_preprocess",
spec.t(),
data.plan,
data.attempt,
data.data,
data.signed,
) {
processors
.send(
spec.set().network,
CoordinatorMessage::Coordinator(
coordinator::CoordinatorMessage::BatchPreprocesses {
id: SignId { key: todo!(), id: data.plan, attempt: data.attempt },
preprocesses,
},
),
)
.await;
}
}
Transaction::BatchShare(data) => {
2023-04-20 14:24:49 -04:00
if let Some(shares) = handle(
Zone::Batch,
b"batch_share",
spec.t(),
data.plan,
data.attempt,
data.data,
data.signed,
) {
processors
.send(
spec.set().network,
CoordinatorMessage::Coordinator(coordinator::CoordinatorMessage::BatchShares {
id: SignId { key: todo!(), id: data.plan, attempt: data.attempt },
shares: shares
.drain()
.map(|(validator, share)| (validator, share.try_into().unwrap()))
.collect(),
}),
)
.await;
}
}
Transaction::SignPreprocess(data) => {
2023-04-20 14:24:49 -04:00
if let Some(preprocesses) = handle(
Zone::Sign,
b"sign_preprocess",
spec.t(),
data.plan,
data.attempt,
data.data,
data.signed,
) {
processors
.send(
spec.set().network,
CoordinatorMessage::Sign(sign::CoordinatorMessage::Preprocesses {
id: SignId { key: todo!(), id: data.plan, attempt: data.attempt },
preprocesses,
}),
)
.await;
}
}
Transaction::SignShare(data) => {
2023-04-20 14:24:49 -04:00
if let Some(shares) = handle(
Zone::Sign,
b"sign_share",
spec.t(),
data.plan,
data.attempt,
data.data,
data.signed,
) {
processors
.send(
spec.set().network,
CoordinatorMessage::Sign(sign::CoordinatorMessage::Shares {
id: SignId { key: todo!(), id: data.plan, attempt: data.attempt },
shares,
}),
)
.await;
}
}
Transaction::SignCompleted(_, _, _) => todo!(),
2023-04-20 05:05:17 -04:00
}
TributaryDb::<D>::handle_event(&mut txn, hash, event_id);
txn.commit();
}
event_id += 1;
}
// TODO: Trigger any necessary re-attempts
2023-04-20 05:05:17 -04:00
}
pub async fn handle_new_blocks<D: Db, Pro: Processors>(
2023-04-20 05:05:17 -04:00
db: &mut TributaryDb<D>,
key: &Zeroizing<<Ristretto as Ciphersuite>::F>,
recognized_id: &UnboundedSender<([u8; 32], RecognizedIdType, [u8; 32])>,
processors: &Pro,
2023-04-20 05:05:17 -04:00
spec: &TributarySpec,
tributary: &TributaryReader<D, Transaction>,
2023-04-20 05:05:17 -04:00
) {
let genesis = tributary.genesis();
let mut last_block = db.last_block(genesis);
while let Some(next) = tributary.block_after(&last_block) {
let block = tributary.block(&next).unwrap();
handle_block(db, key, recognized_id, processors, spec, block).await;
last_block = next;
db.set_last_block(genesis, next);
2023-04-20 05:05:17 -04:00
}
}