Merge branch 'timing-report' of github.com:sigp/lighthouse into timing-report
This commit is contained in:
commit
85e7dd8b5a
@ -115,7 +115,20 @@ impl BeaconChainHarness {
|
|||||||
);
|
);
|
||||||
} else {
|
} else {
|
||||||
debug!("Generating initial validator deposits...");
|
debug!("Generating initial validator deposits...");
|
||||||
let deposits = generate_deposits_from_keypairs(&keypairs, genesis_time, &spec);
|
let deposits = generate_deposits_from_keypairs(
|
||||||
|
&keypairs,
|
||||||
|
genesis_time,
|
||||||
|
spec.get_domain(
|
||||||
|
spec.genesis_epoch,
|
||||||
|
Domain::Deposit,
|
||||||
|
&Fork {
|
||||||
|
previous_version: spec.genesis_fork_version,
|
||||||
|
current_version: spec.genesis_fork_version,
|
||||||
|
epoch: spec.genesis_epoch,
|
||||||
|
},
|
||||||
|
),
|
||||||
|
&spec,
|
||||||
|
);
|
||||||
state_builder.process_initial_deposits(&deposits, &spec);
|
state_builder.process_initial_deposits(&deposits, &spec);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
use bls::{create_proof_of_possession, get_withdrawal_credentials};
|
use bls::get_withdrawal_credentials;
|
||||||
use int_to_bytes::int_to_bytes48;
|
use int_to_bytes::int_to_bytes48;
|
||||||
use log::debug;
|
use log::debug;
|
||||||
use rayon::prelude::*;
|
use rayon::prelude::*;
|
||||||
@ -34,6 +34,7 @@ pub fn generate_deterministic_keypairs(validator_count: usize) -> Vec<Keypair> {
|
|||||||
pub fn generate_deposits_from_keypairs(
|
pub fn generate_deposits_from_keypairs(
|
||||||
keypairs: &[Keypair],
|
keypairs: &[Keypair],
|
||||||
genesis_time: u64,
|
genesis_time: u64,
|
||||||
|
domain: u64,
|
||||||
spec: &ChainSpec,
|
spec: &ChainSpec,
|
||||||
) -> Vec<Deposit> {
|
) -> Vec<Deposit> {
|
||||||
debug!(
|
debug!(
|
||||||
@ -41,10 +42,13 @@ pub fn generate_deposits_from_keypairs(
|
|||||||
keypairs.len()
|
keypairs.len()
|
||||||
);
|
);
|
||||||
|
|
||||||
let initial_validator_deposits =
|
let initial_validator_deposits = keypairs
|
||||||
keypairs
|
.par_iter()
|
||||||
.par_iter()
|
.map(|keypair| {
|
||||||
.map(|keypair| Deposit {
|
let withdrawal_credentials = Hash256::from_slice(
|
||||||
|
&get_withdrawal_credentials(&keypair.pk, spec.bls_withdrawal_prefix_byte)[..],
|
||||||
|
);
|
||||||
|
Deposit {
|
||||||
branch: vec![], // branch verification is not specified.
|
branch: vec![], // branch verification is not specified.
|
||||||
index: 0, // index verification is not specified.
|
index: 0, // index verification is not specified.
|
||||||
deposit_data: DepositData {
|
deposit_data: DepositData {
|
||||||
@ -53,17 +57,17 @@ pub fn generate_deposits_from_keypairs(
|
|||||||
deposit_input: DepositInput {
|
deposit_input: DepositInput {
|
||||||
pubkey: keypair.pk.clone(),
|
pubkey: keypair.pk.clone(),
|
||||||
// Validator can withdraw using their main keypair.
|
// Validator can withdraw using their main keypair.
|
||||||
withdrawal_credentials: Hash256::from_slice(
|
withdrawal_credentials: withdrawal_credentials.clone(),
|
||||||
&get_withdrawal_credentials(
|
proof_of_possession: DepositInput::create_proof_of_possession(
|
||||||
&keypair.pk,
|
&keypair,
|
||||||
spec.bls_withdrawal_prefix_byte,
|
&withdrawal_credentials,
|
||||||
)[..],
|
domain,
|
||||||
),
|
),
|
||||||
proof_of_possession: create_proof_of_possession(&keypair),
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
})
|
}
|
||||||
.collect();
|
})
|
||||||
|
.collect();
|
||||||
|
|
||||||
initial_validator_deposits
|
initial_validator_deposits
|
||||||
}
|
}
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
|
|
||||||
use crate::beacon_chain_harness::BeaconChainHarness;
|
use crate::beacon_chain_harness::BeaconChainHarness;
|
||||||
use beacon_chain::CheckPoint;
|
use beacon_chain::CheckPoint;
|
||||||
use bls::{create_proof_of_possession, get_withdrawal_credentials};
|
use bls::get_withdrawal_credentials;
|
||||||
use log::{info, warn};
|
use log::{info, warn};
|
||||||
use ssz::SignedRoot;
|
use ssz::SignedRoot;
|
||||||
use std::path::Path;
|
use std::path::Path;
|
||||||
@ -258,11 +258,23 @@ fn build_deposit(
|
|||||||
index_offset: u64,
|
index_offset: u64,
|
||||||
) -> (Deposit, Keypair) {
|
) -> (Deposit, Keypair) {
|
||||||
let keypair = Keypair::random();
|
let keypair = Keypair::random();
|
||||||
let proof_of_possession = create_proof_of_possession(&keypair);
|
|
||||||
let index = harness.beacon_chain.state.read().deposit_index + index_offset;
|
|
||||||
let withdrawal_credentials = Hash256::from_slice(
|
let withdrawal_credentials = Hash256::from_slice(
|
||||||
&get_withdrawal_credentials(&keypair.pk, harness.spec.bls_withdrawal_prefix_byte)[..],
|
&get_withdrawal_credentials(&keypair.pk, harness.spec.bls_withdrawal_prefix_byte)[..],
|
||||||
);
|
);
|
||||||
|
let proof_of_possession = DepositInput::create_proof_of_possession(
|
||||||
|
&keypair,
|
||||||
|
&withdrawal_credentials,
|
||||||
|
harness.spec.get_domain(
|
||||||
|
harness
|
||||||
|
.beacon_chain
|
||||||
|
.state
|
||||||
|
.read()
|
||||||
|
.current_epoch(&harness.spec),
|
||||||
|
Domain::Deposit,
|
||||||
|
&harness.beacon_chain.state.read().fork,
|
||||||
|
),
|
||||||
|
);
|
||||||
|
let index = harness.beacon_chain.state.read().deposit_index + index_offset;
|
||||||
|
|
||||||
let deposit = Deposit {
|
let deposit = Deposit {
|
||||||
// Note: `branch` and `index` will need to be updated once the spec defines their
|
// Note: `branch` and `index` will need to be updated once the spec defines their
|
||||||
|
@ -8,7 +8,6 @@ use std::path::PathBuf;
|
|||||||
use crate::config::LighthouseConfig;
|
use crate::config::LighthouseConfig;
|
||||||
use crate::rpc::start_server;
|
use crate::rpc::start_server;
|
||||||
use beacon_chain::BeaconChain;
|
use beacon_chain::BeaconChain;
|
||||||
use bls::create_proof_of_possession;
|
|
||||||
use clap::{App, Arg};
|
use clap::{App, Arg};
|
||||||
use db::{
|
use db::{
|
||||||
stores::{BeaconBlockStore, BeaconStateStore},
|
stores::{BeaconBlockStore, BeaconStateStore},
|
||||||
@ -21,7 +20,7 @@ use ssz::TreeHash;
|
|||||||
use std::sync::Arc;
|
use std::sync::Arc;
|
||||||
use types::{
|
use types::{
|
||||||
beacon_state::BeaconStateBuilder, BeaconBlock, ChainSpec, Deposit, DepositData, DepositInput,
|
beacon_state::BeaconStateBuilder, BeaconBlock, ChainSpec, Deposit, DepositData, DepositInput,
|
||||||
Eth1Data, Hash256, Keypair,
|
Domain, Eth1Data, Fork, Hash256, Keypair,
|
||||||
};
|
};
|
||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
@ -113,7 +112,20 @@ fn main() {
|
|||||||
deposit_input: DepositInput {
|
deposit_input: DepositInput {
|
||||||
pubkey: keypair.pk.clone(),
|
pubkey: keypair.pk.clone(),
|
||||||
withdrawal_credentials: Hash256::zero(), // Withdrawal not possible.
|
withdrawal_credentials: Hash256::zero(), // Withdrawal not possible.
|
||||||
proof_of_possession: create_proof_of_possession(&keypair),
|
proof_of_possession: DepositInput::create_proof_of_possession(
|
||||||
|
&keypair,
|
||||||
|
&Hash256::zero(),
|
||||||
|
spec.get_domain(
|
||||||
|
// Get domain from genesis fork_version
|
||||||
|
spec.genesis_epoch,
|
||||||
|
Domain::Deposit,
|
||||||
|
&Fork {
|
||||||
|
previous_version: spec.genesis_fork_version,
|
||||||
|
current_version: spec.genesis_fork_version,
|
||||||
|
epoch: spec.genesis_epoch,
|
||||||
|
},
|
||||||
|
),
|
||||||
|
),
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
use self::epoch_cache::EpochCache;
|
use self::epoch_cache::EpochCache;
|
||||||
use crate::test_utils::TestRandom;
|
use crate::test_utils::TestRandom;
|
||||||
use crate::{validator_registry::get_active_validator_indices, *};
|
use crate::{validator_registry::get_active_validator_indices, *};
|
||||||
use bls::verify_proof_of_possession;
|
|
||||||
use helpers::*;
|
use helpers::*;
|
||||||
use honey_badger_split::SplitExt;
|
use honey_badger_split::SplitExt;
|
||||||
use int_to_bytes::int_to_bytes32;
|
use int_to_bytes::int_to_bytes32;
|
||||||
@ -9,7 +8,7 @@ use log::{debug, error, trace};
|
|||||||
use rand::RngCore;
|
use rand::RngCore;
|
||||||
use rayon::prelude::*;
|
use rayon::prelude::*;
|
||||||
use serde_derive::Serialize;
|
use serde_derive::Serialize;
|
||||||
use ssz::{hash, Decodable, DecodeError, Encodable, SszStream, TreeHash};
|
use ssz::{hash, Decodable, DecodeError, Encodable, SignedRoot, SszStream, TreeHash};
|
||||||
use std::collections::HashMap;
|
use std::collections::HashMap;
|
||||||
use swap_or_not_shuffle::shuffle_list;
|
use swap_or_not_shuffle::shuffle_list;
|
||||||
|
|
||||||
@ -590,10 +589,8 @@ impl BeaconState {
|
|||||||
|
|
||||||
for deposit_data in deposits {
|
for deposit_data in deposits {
|
||||||
let result = self.process_deposit(
|
let result = self.process_deposit(
|
||||||
deposit_data.deposit_input.pubkey.clone(),
|
deposit_data.deposit_input.clone(),
|
||||||
deposit_data.amount,
|
deposit_data.amount,
|
||||||
deposit_data.deposit_input.proof_of_possession.clone(),
|
|
||||||
deposit_data.deposit_input.withdrawal_credentials,
|
|
||||||
Some(&pubkey_map),
|
Some(&pubkey_map),
|
||||||
spec,
|
spec,
|
||||||
);
|
);
|
||||||
@ -616,18 +613,24 @@ impl BeaconState {
|
|||||||
/// Spec v0.4.0
|
/// Spec v0.4.0
|
||||||
pub fn process_deposit(
|
pub fn process_deposit(
|
||||||
&mut self,
|
&mut self,
|
||||||
pubkey: PublicKey,
|
deposit_input: DepositInput,
|
||||||
amount: u64,
|
amount: u64,
|
||||||
proof_of_possession: Signature,
|
|
||||||
withdrawal_credentials: Hash256,
|
|
||||||
pubkey_map: Option<&HashMap<PublicKey, usize>>,
|
pubkey_map: Option<&HashMap<PublicKey, usize>>,
|
||||||
spec: &ChainSpec,
|
spec: &ChainSpec,
|
||||||
) -> Result<usize, ()> {
|
) -> Result<usize, ()> {
|
||||||
//
|
let proof_is_valid = deposit_input.proof_of_possession.verify(
|
||||||
if !verify_proof_of_possession(&proof_of_possession, &pubkey) {
|
&deposit_input.signed_root(),
|
||||||
|
spec.get_domain(self.current_epoch(&spec), Domain::Deposit, &self.fork),
|
||||||
|
&deposit_input.pubkey,
|
||||||
|
);
|
||||||
|
|
||||||
|
if !proof_is_valid {
|
||||||
return Err(());
|
return Err(());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
let pubkey = deposit_input.pubkey.clone();
|
||||||
|
let withdrawal_credentials = deposit_input.withdrawal_credentials.clone();
|
||||||
|
|
||||||
let validator_index = if let Some(pubkey_map) = pubkey_map {
|
let validator_index = if let Some(pubkey_map) = pubkey_map {
|
||||||
pubkey_map.get(&pubkey).and_then(|i| Some(*i))
|
pubkey_map.get(&pubkey).and_then(|i| Some(*i))
|
||||||
} else {
|
} else {
|
||||||
@ -1055,33 +1058,6 @@ impl BeaconState {
|
|||||||
self.validator_registry_update_epoch = current_epoch;
|
self.validator_registry_update_epoch = current_epoch;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Confirm validator owns PublicKey
|
|
||||||
///
|
|
||||||
/// Spec v0.4.0
|
|
||||||
pub fn validate_proof_of_possession(
|
|
||||||
&self,
|
|
||||||
pubkey: PublicKey,
|
|
||||||
proof_of_possession: Signature,
|
|
||||||
withdrawal_credentials: Hash256,
|
|
||||||
spec: &ChainSpec,
|
|
||||||
) -> bool {
|
|
||||||
let proof_of_possession_data = DepositInput {
|
|
||||||
pubkey: pubkey.clone(),
|
|
||||||
withdrawal_credentials,
|
|
||||||
proof_of_possession: Signature::empty_signature(),
|
|
||||||
};
|
|
||||||
|
|
||||||
proof_of_possession.verify(
|
|
||||||
&proof_of_possession_data.hash_tree_root(),
|
|
||||||
spec.get_domain(
|
|
||||||
self.slot.epoch(spec.slots_per_epoch),
|
|
||||||
Domain::Deposit,
|
|
||||||
&self.fork,
|
|
||||||
),
|
|
||||||
&pubkey,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Iterate through the validator registry and eject active validators with balance below
|
/// Iterate through the validator registry and eject active validators with balance below
|
||||||
/// ``EJECTION_BALANCE``.
|
/// ``EJECTION_BALANCE``.
|
||||||
///
|
///
|
||||||
|
@ -1,21 +1,52 @@
|
|||||||
use super::Hash256;
|
use super::Hash256;
|
||||||
use crate::test_utils::TestRandom;
|
use crate::test_utils::TestRandom;
|
||||||
use bls::{PublicKey, Signature};
|
use bls::{Keypair, PublicKey, Signature};
|
||||||
use rand::RngCore;
|
use rand::RngCore;
|
||||||
use serde_derive::{Deserialize, Serialize};
|
use serde_derive::{Deserialize, Serialize};
|
||||||
use ssz_derive::{Decode, Encode, TreeHash};
|
use ssz::{SignedRoot, TreeHash};
|
||||||
|
use ssz_derive::{Decode, Encode, SignedRoot, TreeHash};
|
||||||
use test_random_derive::TestRandom;
|
use test_random_derive::TestRandom;
|
||||||
|
|
||||||
/// The data supplied by the user to the deposit contract.
|
/// The data supplied by the user to the deposit contract.
|
||||||
///
|
///
|
||||||
/// Spec v0.4.0
|
/// Spec v0.4.0
|
||||||
#[derive(Debug, PartialEq, Clone, Serialize, Deserialize, Encode, Decode, TreeHash, TestRandom)]
|
#[derive(
|
||||||
|
Debug,
|
||||||
|
PartialEq,
|
||||||
|
Clone,
|
||||||
|
Serialize,
|
||||||
|
Deserialize,
|
||||||
|
Encode,
|
||||||
|
Decode,
|
||||||
|
SignedRoot,
|
||||||
|
TreeHash,
|
||||||
|
TestRandom,
|
||||||
|
)]
|
||||||
pub struct DepositInput {
|
pub struct DepositInput {
|
||||||
pub pubkey: PublicKey,
|
pub pubkey: PublicKey,
|
||||||
pub withdrawal_credentials: Hash256,
|
pub withdrawal_credentials: Hash256,
|
||||||
pub proof_of_possession: Signature,
|
pub proof_of_possession: Signature,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
impl DepositInput {
|
||||||
|
/// Generate the 'proof_of_posession' signature for a given DepositInput details.
|
||||||
|
///
|
||||||
|
/// Spec v0.4.0
|
||||||
|
pub fn create_proof_of_possession(
|
||||||
|
keypair: &Keypair,
|
||||||
|
withdrawal_credentials: &Hash256,
|
||||||
|
domain: u64,
|
||||||
|
) -> Signature {
|
||||||
|
let signable_deposite_input = DepositInput {
|
||||||
|
pubkey: keypair.pk.clone(),
|
||||||
|
withdrawal_credentials: withdrawal_credentials.clone(),
|
||||||
|
proof_of_possession: Signature::empty_signature(),
|
||||||
|
};
|
||||||
|
let msg = signable_deposite_input.signed_root();
|
||||||
|
Signature::new(msg.as_slice(), domain, &keypair.sk)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
mod tests {
|
mod tests {
|
||||||
use super::*;
|
use super::*;
|
||||||
|
@ -153,12 +153,12 @@ impl TestingBeaconBlockBuilder {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// Insert a `Valid` deposit into the state.
|
/// Insert a `Valid` deposit into the state.
|
||||||
pub fn insert_deposit(&mut self, amount: u64, index: u64, spec: &ChainSpec) {
|
pub fn insert_deposit(&mut self, amount: u64, index: u64, domain: u64, spec: &ChainSpec) {
|
||||||
let keypair = Keypair::random();
|
let keypair = Keypair::random();
|
||||||
|
|
||||||
let mut builder = TestingDepositBuilder::new(amount);
|
let mut builder = TestingDepositBuilder::new(amount);
|
||||||
builder.set_index(index);
|
builder.set_index(index);
|
||||||
builder.sign(&keypair, spec);
|
builder.sign(&keypair, domain, spec);
|
||||||
|
|
||||||
self.block.body.deposits.push(builder.build())
|
self.block.body.deposits.push(builder.build())
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
use crate::*;
|
use crate::*;
|
||||||
use bls::{create_proof_of_possession, get_withdrawal_credentials};
|
use bls::get_withdrawal_credentials;
|
||||||
|
|
||||||
pub struct TestingDepositBuilder {
|
pub struct TestingDepositBuilder {
|
||||||
deposit: Deposit,
|
deposit: Deposit,
|
||||||
@ -30,16 +30,17 @@ impl TestingDepositBuilder {
|
|||||||
self.deposit.index = index;
|
self.deposit.index = index;
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn sign(&mut self, keypair: &Keypair, spec: &ChainSpec) {
|
pub fn sign(&mut self, keypair: &Keypair, domain: u64, spec: &ChainSpec) {
|
||||||
|
let withdrawal_credentials = Hash256::from_slice(
|
||||||
|
&get_withdrawal_credentials(&keypair.pk, spec.bls_withdrawal_prefix_byte)[..],
|
||||||
|
);
|
||||||
self.deposit.deposit_data.deposit_input.pubkey = keypair.pk.clone();
|
self.deposit.deposit_data.deposit_input.pubkey = keypair.pk.clone();
|
||||||
self.deposit.deposit_data.deposit_input.proof_of_possession =
|
|
||||||
create_proof_of_possession(&keypair);
|
|
||||||
self.deposit
|
self.deposit
|
||||||
.deposit_data
|
.deposit_data
|
||||||
.deposit_input
|
.deposit_input
|
||||||
.withdrawal_credentials = Hash256::from_slice(
|
.withdrawal_credentials = withdrawal_credentials.clone();
|
||||||
&get_withdrawal_credentials(&keypair.pk, spec.bls_withdrawal_prefix_byte)[..],
|
self.deposit.deposit_data.deposit_input.proof_of_possession =
|
||||||
);
|
DepositInput::create_proof_of_possession(&keypair, &withdrawal_credentials, domain);
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn build(self) -> Deposit {
|
pub fn build(self) -> Deposit {
|
||||||
|
@ -29,12 +29,6 @@ pub fn verify_proof_of_possession(sig: &Signature, pubkey: &PublicKey) -> bool {
|
|||||||
sig.verify(&ssz_encode(pubkey), 0, &pubkey)
|
sig.verify(&ssz_encode(pubkey), 0, &pubkey)
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO: Update this method
|
|
||||||
// https://github.com/sigp/lighthouse/issues/239
|
|
||||||
pub fn create_proof_of_possession(keypair: &Keypair) -> Signature {
|
|
||||||
Signature::new(&ssz_encode(&keypair.pk), 0, &keypair.sk)
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Returns the withdrawal credentials for a given public key.
|
/// Returns the withdrawal credentials for a given public key.
|
||||||
pub fn get_withdrawal_credentials(pubkey: &PublicKey, prefix_byte: u8) -> Vec<u8> {
|
pub fn get_withdrawal_credentials(pubkey: &PublicKey, prefix_byte: u8) -> Vec<u8> {
|
||||||
let hashed = hash(&ssz_encode(pubkey));
|
let hashed = hash(&ssz_encode(pubkey));
|
||||||
|
Loading…
Reference in New Issue
Block a user