Take in a Keystore and validator ID

This commit is contained in:
Luke Parker 2022-11-01 20:06:42 -04:00
parent aa0a4cf106
commit 5832007a45
No known key found for this signature in database
GPG key ID: F9F1386DB1E119B6
5 changed files with 56 additions and 20 deletions

1
Cargo.lock generated
View file

@ -7342,6 +7342,7 @@ dependencies = [
"sp-consensus",
"sp-core",
"sp-inherents",
"sp-keystore",
"sp-runtime",
"sp-staking",
"sp-tendermint",

View file

@ -22,6 +22,7 @@ tokio = { version = "1", features = ["sync", "rt"] }
sp-core = { git = "https://github.com/serai-dex/substrate" }
sp-application-crypto = { git = "https://github.com/serai-dex/substrate" }
sp-keystore = { git = "https://github.com/serai-dex/substrate" }
sp-inherents = { git = "https://github.com/serai-dex/substrate" }
sp-staking = { git = "https://github.com/serai-dex/substrate" }
sp-blockchain = { git = "https://github.com/serai-dex/substrate" }

View file

@ -135,6 +135,7 @@ impl<T: TendermintValidator> TendermintAuthority<T> {
providers: T::CIDP,
env: T::Environment,
network: T::Network,
validator: (u16, T::Keystore),
registry: Option<&Registry>,
) {
let (best_hash, last) = self.get_last();
@ -164,16 +165,15 @@ impl<T: TendermintValidator> TendermintAuthority<T> {
env,
announce: network,
});
let (validator, keys) = validator;
self.import.validators.set_keys(keys).await;
let proposal = self
.get_proposal(&self.import.client.header(BlockId::Hash(best_hash)).unwrap().unwrap())
.await;
TendermintMachine::new(
self, // We no longer need self, so let TendermintMachine become its owner
0, // TODO: ValidatorId
last, proposal,
)
// We no longer need self, so let TendermintMachine become its owner
TendermintMachine::new(self, validator, last, proposal)
};
// Start receiving messages about the Tendermint process for this block

View file

@ -1,5 +1,7 @@
use std::sync::Arc;
use sp_core::crypto::KeyTypeId;
use sp_keystore::CryptoStore;
use sp_inherents::CreateInherentDataProviders;
use sp_runtime::traits::{Header, Block};
use sp_blockchain::HeaderBackend;
@ -28,6 +30,7 @@ pub(crate) mod authority;
pub use authority::TendermintAuthority;
const CONSENSUS_ID: [u8; 4] = *b"tend";
const KEY_TYPE_ID: KeyTypeId = KeyTypeId(CONSENSUS_ID);
/// Trait consolidating all generics required by sc_tendermint for processing.
pub trait TendermintClient: Send + Sync + 'static {
@ -55,6 +58,8 @@ pub trait TendermintClient: Send + Sync + 'static {
+ Finalizer<Self::Block, Self::Backend>
+ ProvideRuntimeApi<Self::Block, Api = Self::Api>
+ 'static;
type Keystore: CryptoStore;
}
/// Trait implementable on firm types to automatically provide a full TendermintClient impl.
@ -72,6 +77,8 @@ pub trait TendermintClientMinimal: Send + Sync + 'static {
+ Finalizer<Self::Block, Self::Backend>
+ ProvideRuntimeApi<Self::Block, Api = Self::Api>
+ 'static;
type Keystore: CryptoStore;
}
impl<T: TendermintClientMinimal> TendermintClient for T
@ -89,6 +96,8 @@ where
type StateBackend = StateBackendFor<T::Client, T::Block>;
type Api = <T::Client as ProvideRuntimeApi<T::Block>>::Api;
type Client = T::Client;
type Keystore = T::Keystore;
}
/// Trait consolidating additional generics required by sc_tendermint for authoring.

View file

@ -3,10 +3,14 @@ use std::sync::{Arc, RwLock};
use async_trait::async_trait;
use tokio::sync::RwLock as AsyncRwLock;
use sp_core::Decode;
use sp_application_crypto::{
RuntimePublic as PublicTrait, Pair as PairTrait,
sr25519::{Public, Pair, Signature},
RuntimePublic as PublicTrait,
sr25519::{Public, Signature},
};
use sp_keystore::CryptoStore;
use sp_staking::SessionIndex;
use sp_api::{BlockId, ProvideRuntimeApi};
@ -17,7 +21,7 @@ use tendermint_machine::ext::{BlockNumber, Round, Weights, SignatureScheme};
use sp_tendermint::TendermintApi;
use crate::TendermintClient;
use crate::{KEY_TYPE_ID, TendermintClient};
struct TendermintValidatorsStruct {
session: SessionIndex,
@ -25,19 +29,18 @@ struct TendermintValidatorsStruct {
total_weight: u64,
weights: Vec<u64>,
keys: Pair, // TODO: sp_keystore
lookup: Vec<Public>,
}
impl TendermintValidatorsStruct {
fn from_module<T: TendermintClient>(client: &Arc<T::Client>) -> TendermintValidatorsStruct {
fn from_module<T: TendermintClient>(client: &Arc<T::Client>) -> Self {
let last = client.info().finalized_hash;
let api = client.runtime_api();
let session = api.current_session(&BlockId::Hash(last)).unwrap();
let validators = api.validators(&BlockId::Hash(last)).unwrap();
assert_eq!(validators.len(), 1);
let keys = Pair::from_string("//Alice", None).unwrap();
TendermintValidatorsStruct {
Self {
session,
// TODO
@ -45,7 +48,6 @@ impl TendermintValidatorsStruct {
weights: vec![1; validators.len()],
lookup: validators,
keys,
}
}
}
@ -82,15 +84,25 @@ impl<T: TendermintClient> Deref for Refresh<T> {
}
/// Tendermint validators observer, providing data on the active validators.
pub struct TendermintValidators<T: TendermintClient>(Refresh<T>);
pub struct TendermintValidators<T: TendermintClient>(
Refresh<T>,
Arc<AsyncRwLock<Option<T::Keystore>>>,
);
impl<T: TendermintClient> TendermintValidators<T> {
pub(crate) fn new(client: Arc<T::Client>) -> TendermintValidators<T> {
TendermintValidators(Refresh {
_tc: PhantomData,
_refresh: Arc::new(RwLock::new(TendermintValidatorsStruct::from_module::<T>(&client))),
client,
})
TendermintValidators(
Refresh {
_tc: PhantomData,
_refresh: Arc::new(RwLock::new(TendermintValidatorsStruct::from_module::<T>(&client))),
client,
},
Arc::new(AsyncRwLock::new(None)),
)
}
pub(crate) async fn set_keys(&self, keys: T::Keystore) {
*self.1.write().await = Some(keys);
}
}
@ -101,7 +113,20 @@ impl<T: TendermintClient> SignatureScheme for TendermintValidators<T> {
type AggregateSignature = Vec<Signature>;
async fn sign(&self, msg: &[u8]) -> Signature {
self.0.read().unwrap().keys.sign(msg)
let read = self.1.read().await;
let keys = read.as_ref().unwrap();
let key = {
let pubs = keys.sr25519_public_keys(KEY_TYPE_ID).await;
if pubs.is_empty() {
keys.sr25519_generate_new(KEY_TYPE_ID, None).await.unwrap()
} else {
pubs[0]
}
};
Signature::decode(
&mut keys.sign_with(KEY_TYPE_ID, &key.into(), msg).await.unwrap().unwrap().as_ref(),
)
.unwrap()
}
fn verify(&self, validator: u16, msg: &[u8], sig: &Signature) -> bool {