468015f9bb
* Add interop chain spec and rename chain_id * Add ability to connect to raw libp2p nodes * Adds Identify protocol, clean up RPC protocol name handling * Update to latest libp2p, gossipsub improvements * Updates to latest interop branch. - Shifts decoding of objects into message handler. - Updates to latest interop gossipsub. - Adds interop spec constant. * Configuration updates allow for verbosity CLI flag and spec constants * Update submodules to master * Correct minimal chainspec modifications * Duplication of validator polls are no longer fatal * Apply PR suggestions
394 lines
16 KiB
Rust
394 lines
16 KiB
Rust
/// The Validator Client service.
|
|
///
|
|
/// Connects to a beacon node and negotiates the correct chain id.
|
|
///
|
|
/// Once connected, the service loads known validators keypairs from disk. Every slot,
|
|
/// the service pings the beacon node, asking for new duties for each of the validators.
|
|
///
|
|
/// When a validator needs to either produce a block or sign an attestation, it requests the
|
|
/// data from the beacon node and performs the signing before publishing the block to the beacon
|
|
/// node.
|
|
use crate::attestation_producer::AttestationProducer;
|
|
use crate::block_producer::{BeaconBlockGrpcClient, BlockProducer};
|
|
use crate::config::Config as ValidatorConfig;
|
|
use crate::duties::{BeaconNodeDuties, DutiesManager, EpochDutiesMap};
|
|
use crate::error as error_chain;
|
|
use crate::error::ErrorKind;
|
|
use crate::signer::Signer;
|
|
use bls::Keypair;
|
|
use eth2_config::Eth2Config;
|
|
use grpcio::{ChannelBuilder, EnvBuilder};
|
|
use protos::services::Empty;
|
|
use protos::services_grpc::{
|
|
AttestationServiceClient, BeaconBlockServiceClient, BeaconNodeServiceClient,
|
|
ValidatorServiceClient,
|
|
};
|
|
use slog::{crit, error, info, warn};
|
|
use slot_clock::{SlotClock, SystemTimeSlotClock};
|
|
use std::marker::PhantomData;
|
|
use std::sync::Arc;
|
|
use std::sync::RwLock;
|
|
use std::time::{Duration, Instant, SystemTime};
|
|
use tokio::prelude::*;
|
|
use tokio::runtime::Builder;
|
|
use tokio::timer::Interval;
|
|
use tokio_timer::clock::Clock;
|
|
use types::{ChainSpec, Epoch, EthSpec, Fork, Slot};
|
|
|
|
/// A fixed amount of time after a slot to perform operations. This gives the node time to complete
|
|
/// per-slot processes.
|
|
const TIME_DELAY_FROM_SLOT: Duration = Duration::from_millis(100);
|
|
|
|
/// The validator service. This is the main thread that executes and maintains validator
|
|
/// duties.
|
|
//TODO: Generalize the BeaconNode types to use testing
|
|
pub struct Service<B: BeaconNodeDuties + 'static, S: Signer + 'static, E: EthSpec> {
|
|
/// The node's current fork version we are processing on.
|
|
fork: Fork,
|
|
/// The slot clock for this service.
|
|
slot_clock: SystemTimeSlotClock,
|
|
/// The current slot we are processing.
|
|
current_slot: Slot,
|
|
slots_per_epoch: u64,
|
|
/// The chain specification for this clients instance.
|
|
spec: Arc<ChainSpec>,
|
|
/// The duties manager which maintains the state of when to perform actions.
|
|
duties_manager: Arc<DutiesManager<B, S>>,
|
|
// GRPC Clients
|
|
/// The beacon block GRPC client.
|
|
beacon_block_client: Arc<BeaconBlockGrpcClient>,
|
|
/// The attester GRPC client.
|
|
attestation_client: Arc<AttestationServiceClient>,
|
|
/// The validator client logger.
|
|
log: slog::Logger,
|
|
_phantom: PhantomData<E>,
|
|
}
|
|
|
|
impl<B: BeaconNodeDuties + 'static, S: Signer + 'static, E: EthSpec> Service<B, S, E> {
|
|
/// Initial connection to the beacon node to determine its properties.
|
|
///
|
|
/// This tries to connect to a beacon node. Once connected, it initialised the gRPC clients
|
|
/// and returns an instance of the service.
|
|
fn initialize_service(
|
|
client_config: ValidatorConfig,
|
|
eth2_config: Eth2Config,
|
|
log: slog::Logger,
|
|
) -> error_chain::Result<Service<ValidatorServiceClient, Keypair, E>> {
|
|
// initialise the beacon node client to check for a connection
|
|
|
|
let env = Arc::new(EnvBuilder::new().build());
|
|
// Beacon node gRPC beacon node endpoints.
|
|
let beacon_node_client = {
|
|
let ch = ChannelBuilder::new(env.clone()).connect(&client_config.server);
|
|
BeaconNodeServiceClient::new(ch)
|
|
};
|
|
|
|
// retrieve node information and validate the beacon node
|
|
let node_info = loop {
|
|
match beacon_node_client.info(&Empty::new()) {
|
|
Err(e) => {
|
|
warn!(log, "Could not connect to node. Error: {}", e);
|
|
info!(log, "Retrying in 5 seconds...");
|
|
std::thread::sleep(Duration::from_secs(5));
|
|
continue;
|
|
}
|
|
Ok(info) => {
|
|
// verify the node's genesis time
|
|
if SystemTime::now()
|
|
.duration_since(SystemTime::UNIX_EPOCH)
|
|
.unwrap()
|
|
.as_secs()
|
|
< info.genesis_time
|
|
{
|
|
error!(
|
|
log,
|
|
"Beacon Node's genesis time is in the future. No work to do.\n Exiting"
|
|
);
|
|
return Err("Genesis time in the future".into());
|
|
}
|
|
// verify the node's network id
|
|
if eth2_config.spec.network_id != info.network_id as u8 {
|
|
error!(
|
|
log,
|
|
"Beacon Node's genesis time is in the future. No work to do.\n Exiting"
|
|
);
|
|
return Err(format!("Beacon node has the wrong chain id. Expected chain id: {}, node's chain id: {}", eth2_config.spec.network_id, info.network_id).into());
|
|
}
|
|
break info;
|
|
}
|
|
};
|
|
};
|
|
|
|
// build requisite objects to form Self
|
|
let genesis_time = node_info.get_genesis_time();
|
|
let genesis_slot = Slot::from(node_info.get_genesis_slot());
|
|
|
|
info!(log,"Beacon node connected"; "Node Version" => node_info.version.clone(), "Chain ID" => node_info.network_id, "Genesis time" => genesis_time);
|
|
|
|
let proto_fork = node_info.get_fork();
|
|
let mut previous_version: [u8; 4] = [0; 4];
|
|
let mut current_version: [u8; 4] = [0; 4];
|
|
previous_version.copy_from_slice(&proto_fork.get_previous_version()[..4]);
|
|
current_version.copy_from_slice(&proto_fork.get_current_version()[..4]);
|
|
let fork = Fork {
|
|
previous_version,
|
|
current_version,
|
|
epoch: Epoch::from(proto_fork.get_epoch()),
|
|
};
|
|
|
|
// initialize the RPC clients
|
|
|
|
// Beacon node gRPC beacon block endpoints.
|
|
let beacon_block_client = {
|
|
let ch = ChannelBuilder::new(env.clone()).connect(&client_config.server);
|
|
let beacon_block_service_client = Arc::new(BeaconBlockServiceClient::new(ch));
|
|
// a wrapper around the service client to implement the beacon block node trait
|
|
Arc::new(BeaconBlockGrpcClient::new(beacon_block_service_client))
|
|
};
|
|
|
|
// Beacon node gRPC validator endpoints.
|
|
let validator_client = {
|
|
let ch = ChannelBuilder::new(env.clone()).connect(&client_config.server);
|
|
Arc::new(ValidatorServiceClient::new(ch))
|
|
};
|
|
|
|
//Beacon node gRPC attester endpoints.
|
|
let attestation_client = {
|
|
let ch = ChannelBuilder::new(env.clone()).connect(&client_config.server);
|
|
Arc::new(AttestationServiceClient::new(ch))
|
|
};
|
|
|
|
// build the validator slot clock
|
|
let slot_clock = SystemTimeSlotClock::new(
|
|
genesis_slot,
|
|
genesis_time,
|
|
eth2_config.spec.seconds_per_slot,
|
|
);
|
|
|
|
let current_slot = slot_clock
|
|
.present_slot()
|
|
.map_err(ErrorKind::SlotClockError)?
|
|
.ok_or_else::<error_chain::Error, _>(|| {
|
|
"Genesis is not in the past. Exiting.".into()
|
|
})?;
|
|
|
|
/* Generate the duties manager */
|
|
|
|
// Load generated keypairs
|
|
let keypairs = match client_config.fetch_keys(&log) {
|
|
Some(kps) => Arc::new(kps),
|
|
None => {
|
|
return Err("Unable to locate validator key pairs, nothing to do.".into());
|
|
}
|
|
};
|
|
|
|
let slots_per_epoch = E::slots_per_epoch();
|
|
|
|
// TODO: keypairs are randomly generated; they should be loaded from a file or generated.
|
|
// https://github.com/sigp/lighthouse/issues/160
|
|
//let keypairs = Arc::new(generate_deterministic_keypairs(8));
|
|
|
|
// Builds a mapping of Epoch -> Map(PublicKey, EpochDuty)
|
|
// where EpochDuty contains slot numbers and attestation data that each validator needs to
|
|
// produce work on.
|
|
let duties_map = RwLock::new(EpochDutiesMap::new(slots_per_epoch));
|
|
|
|
// builds a manager which maintains the list of current duties for all known validators
|
|
// and can check when a validator needs to perform a task.
|
|
let duties_manager = Arc::new(DutiesManager {
|
|
duties_map,
|
|
// these are abstract objects capable of signing
|
|
signers: keypairs,
|
|
beacon_node: validator_client,
|
|
});
|
|
|
|
let spec = Arc::new(eth2_config.spec);
|
|
|
|
Ok(Service {
|
|
fork,
|
|
slot_clock,
|
|
current_slot,
|
|
slots_per_epoch,
|
|
spec,
|
|
duties_manager,
|
|
beacon_block_client,
|
|
attestation_client,
|
|
log,
|
|
_phantom: PhantomData,
|
|
})
|
|
}
|
|
|
|
/// Initialise the service then run the core thread.
|
|
// TODO: Improve handling of generic BeaconNode types, to stub grpcClient
|
|
pub fn start(
|
|
client_config: ValidatorConfig,
|
|
eth2_config: Eth2Config,
|
|
log: slog::Logger,
|
|
) -> error_chain::Result<()> {
|
|
// connect to the node and retrieve its properties and initialize the gRPC clients
|
|
let mut service = Service::<ValidatorServiceClient, Keypair, E>::initialize_service(
|
|
client_config,
|
|
eth2_config,
|
|
log,
|
|
)?;
|
|
|
|
// we have connected to a node and established its parameters. Spin up the core service
|
|
|
|
// set up the validator service runtime
|
|
let mut runtime = Builder::new()
|
|
.clock(Clock::system())
|
|
.name_prefix("validator-client-")
|
|
.build()
|
|
.map_err(|e| format!("Tokio runtime failed: {}", e))?;
|
|
|
|
let duration_to_next_slot = service
|
|
.slot_clock
|
|
.duration_to_next_slot()
|
|
.map_err(|e| format!("System clock error: {:?}", e))?
|
|
.ok_or_else::<error_chain::Error, _>(|| {
|
|
"Genesis is not in the past. Exiting.".into()
|
|
})?;
|
|
|
|
// set up the validator work interval - start at next slot and proceed every slot
|
|
let interval = {
|
|
// Set the interval to start at the next slot, and every slot after
|
|
let slot_duration = Duration::from_secs(service.spec.seconds_per_slot);
|
|
//TODO: Handle checked add correctly
|
|
Interval::new(Instant::now() + duration_to_next_slot, slot_duration)
|
|
};
|
|
|
|
/* kick off the core service */
|
|
runtime.block_on(
|
|
interval
|
|
.for_each(move |_| {
|
|
// wait for node to process
|
|
std::thread::sleep(TIME_DELAY_FROM_SLOT);
|
|
// if a non-fatal error occurs, proceed to the next slot.
|
|
let _ignore_error = service.per_slot_execution();
|
|
// completed a slot process
|
|
Ok(())
|
|
})
|
|
.map_err(|e| format!("Service thread failed: {:?}", e)),
|
|
)?;
|
|
// validator client exited
|
|
Ok(())
|
|
}
|
|
|
|
/// The execution logic that runs every slot.
|
|
// Errors are logged to output, and core execution continues unless fatal errors occur.
|
|
fn per_slot_execution(&mut self) -> error_chain::Result<()> {
|
|
/* get the new current slot and epoch */
|
|
self.update_current_slot()?;
|
|
|
|
/* check for new duties */
|
|
self.check_for_duties();
|
|
|
|
/* process any required duties for validators */
|
|
self.process_duties();
|
|
|
|
Ok(())
|
|
}
|
|
|
|
/// Updates the known current slot and epoch.
|
|
fn update_current_slot(&mut self) -> error_chain::Result<()> {
|
|
let current_slot = match self.slot_clock.present_slot() {
|
|
Err(e) => {
|
|
error!(self.log, "SystemTimeError {:?}", e);
|
|
return Err("Could not read system time".into());
|
|
}
|
|
Ok(slot) => slot.ok_or_else::<error_chain::Error, _>(|| {
|
|
"Genesis is not in the past. Exiting.".into()
|
|
})?,
|
|
};
|
|
|
|
let current_epoch = current_slot.epoch(self.slots_per_epoch);
|
|
|
|
// this is a non-fatal error. If the slot clock repeats, the node could
|
|
// have been slow to process the previous slot and is now duplicating tasks.
|
|
// We ignore duplicated but raise a critical error.
|
|
if current_slot <= self.current_slot {
|
|
crit!(
|
|
self.log,
|
|
"The validator tried to duplicate a slot. Likely missed the previous slot"
|
|
);
|
|
return Err("Duplicate slot".into());
|
|
}
|
|
self.current_slot = current_slot;
|
|
info!(self.log, "Processing"; "slot" => current_slot.as_u64(), "epoch" => current_epoch.as_u64());
|
|
Ok(())
|
|
}
|
|
|
|
/// For all known validator keypairs, update any known duties from the beacon node.
|
|
fn check_for_duties(&mut self) {
|
|
let cloned_manager = self.duties_manager.clone();
|
|
let cloned_log = self.log.clone();
|
|
let current_epoch = self.current_slot.epoch(self.slots_per_epoch);
|
|
// spawn a new thread separate to the runtime
|
|
// TODO: Handle thread termination/timeout
|
|
// TODO: Add duties thread back in, with channel to process duties in duty change.
|
|
// leave sequential for now.
|
|
//std::thread::spawn(move || {
|
|
// the return value is a future which returns ready.
|
|
// built to be compatible with the tokio runtime.
|
|
let _empty = cloned_manager.run_update(current_epoch, cloned_log.clone());
|
|
//});
|
|
}
|
|
|
|
/// If there are any duties to process, spawn a separate thread and perform required actions.
|
|
fn process_duties(&mut self) {
|
|
if let Some(work) = self.duties_manager.get_current_work(self.current_slot) {
|
|
for (signer_index, work_type) in work {
|
|
if work_type.produce_block {
|
|
// we need to produce a block
|
|
// spawns a thread to produce a beacon block
|
|
let signers = self.duties_manager.signers.clone(); // this is an arc
|
|
let fork = self.fork.clone();
|
|
let slot = self.current_slot;
|
|
let spec = self.spec.clone();
|
|
let beacon_node = self.beacon_block_client.clone();
|
|
let log = self.log.clone();
|
|
let slots_per_epoch = self.slots_per_epoch;
|
|
std::thread::spawn(move || {
|
|
info!(log, "Producing a block"; "Validator"=> format!("{}", signers[signer_index]));
|
|
let signer = &signers[signer_index];
|
|
let mut block_producer = BlockProducer {
|
|
fork,
|
|
slot,
|
|
spec,
|
|
beacon_node,
|
|
signer,
|
|
slots_per_epoch,
|
|
_phantom: PhantomData::<E>,
|
|
};
|
|
block_producer.handle_produce_block(log);
|
|
});
|
|
}
|
|
if work_type.attestation_duty.is_some() {
|
|
// we need to produce an attestation
|
|
// spawns a thread to produce and sign an attestation
|
|
let signers = self.duties_manager.signers.clone(); // this is an arc
|
|
let fork = self.fork.clone();
|
|
let spec = self.spec.clone();
|
|
let beacon_node = self.attestation_client.clone();
|
|
let log = self.log.clone();
|
|
let slots_per_epoch = self.slots_per_epoch;
|
|
std::thread::spawn(move || {
|
|
info!(log, "Producing an attestation"; "Validator"=> format!("{}", signers[signer_index]));
|
|
let signer = &signers[signer_index];
|
|
let mut attestation_producer = AttestationProducer {
|
|
fork,
|
|
duty: work_type.attestation_duty.expect("Should never be none"),
|
|
spec,
|
|
beacon_node,
|
|
signer,
|
|
slots_per_epoch,
|
|
_phantom: PhantomData::<E>,
|
|
};
|
|
attestation_producer.handle_produce_attestation(log);
|
|
});
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|