2018-08-21 16:21:45 +00:00
|
|
|
# beacon_chain
|
2020-01-27 11:36:17 +00:00
|
|
|
# Copyright (c) 2018-2020 Status Research & Development GmbH
|
2018-08-21 16:21:45 +00:00
|
|
|
# Licensed and distributed under either of
|
2019-11-25 15:30:02 +00:00
|
|
|
# * MIT license (license terms in the root directory or at https://opensource.org/licenses/MIT).
|
|
|
|
# * Apache v2 license (license terms in the root directory or at https://www.apache.org/licenses/LICENSE-2.0).
|
2018-08-21 16:21:45 +00:00
|
|
|
# at your option. This file may not be copied, modified, or distributed except according to those terms.
|
|
|
|
|
2018-12-04 18:45:30 +00:00
|
|
|
# State transition, as described in
|
|
|
|
# https://github.com/ethereum/eth2.0-specs/blob/master/specs/core/0_beacon-chain.md#beacon-chain-state-transition-function
|
2018-08-21 16:21:45 +00:00
|
|
|
#
|
2018-12-04 18:45:30 +00:00
|
|
|
# The purpose of this code right is primarily educational, to help piece
|
|
|
|
# together the mechanics of the beacon state and to discover potential problem
|
2020-03-05 12:52:10 +00:00
|
|
|
# areas. The entry point is `state_transition` which is at the bottom of the file!
|
2018-12-04 18:45:30 +00:00
|
|
|
#
|
|
|
|
# General notes about the code (TODO):
|
|
|
|
# * Weird styling - the sections taken from the spec use python styling while
|
|
|
|
# the others use NEP-1 - helps grepping identifiers in spec
|
|
|
|
# * We mix procedural and functional styles for no good reason, except that the
|
|
|
|
# spec does so also.
|
2019-01-29 04:15:00 +00:00
|
|
|
# * For indices, we get a mix of uint64, ValidatorIndex and int - this is currently
|
2018-12-04 18:45:30 +00:00
|
|
|
# swept under the rug with casts
|
|
|
|
# * Sane error handling is missing in most cases (yay, we'll get the chance to
|
|
|
|
# debate exceptions again!)
|
|
|
|
# When updating the code, add TODO sections to mark where there are clear
|
|
|
|
# improvements to be made - other than that, keep things similar to spec for
|
|
|
|
# now.
|
2018-08-21 16:21:45 +00:00
|
|
|
|
2020-04-22 05:53:02 +00:00
|
|
|
{.push raises: [Defect].}
|
|
|
|
|
2018-09-26 16:26:39 +00:00
|
|
|
import
|
2020-04-11 17:41:50 +00:00
|
|
|
chronicles,
|
2019-10-25 10:59:56 +00:00
|
|
|
./extras, ./ssz, metrics,
|
2020-04-09 09:41:02 +00:00
|
|
|
./spec/[datatypes, crypto, digest, helpers, validator],
|
2019-12-20 16:14:43 +00:00
|
|
|
./spec/[state_transition_block, state_transition_epoch],
|
|
|
|
../nbench/bench_lab
|
2018-12-13 16:00:55 +00:00
|
|
|
|
2019-10-06 04:31:50 +00:00
|
|
|
# https://github.com/ethereum/eth2.0-metrics/blob/master/metrics.md#additional-metrics
|
|
|
|
declareGauge beacon_current_validators, """Number of status="pending|active|exited|withdrawable" validators in current epoch""" # On epoch transition
|
|
|
|
declareGauge beacon_previous_validators, """Number of status="pending|active|exited|withdrawable" validators in previous epoch""" # On epoch transition
|
|
|
|
|
2019-07-15 21:10:40 +00:00
|
|
|
# Canonical state transition functions
|
|
|
|
# ---------------------------------------------------------------
|
2019-02-22 09:56:45 +00:00
|
|
|
|
2020-01-27 11:36:17 +00:00
|
|
|
# https://github.com/ethereum/eth2.0-specs/blob/v0.10.1/specs/phase0/beacon-chain.md#beacon-chain-state-transition-function
|
2019-12-20 16:14:43 +00:00
|
|
|
func process_slot*(state: var BeaconState) {.nbench.}=
|
2019-06-14 07:50:14 +00:00
|
|
|
# Cache state root
|
|
|
|
let previous_state_root = hash_tree_root(state)
|
2019-07-01 09:42:37 +00:00
|
|
|
state.state_roots[state.slot mod SLOTS_PER_HISTORICAL_ROOT] =
|
2019-06-14 07:50:14 +00:00
|
|
|
previous_state_root
|
2019-03-16 19:52:37 +00:00
|
|
|
|
2019-06-14 07:50:14 +00:00
|
|
|
# Cache latest block header state root
|
2019-03-16 19:52:37 +00:00
|
|
|
if state.latest_block_header.state_root == ZERO_HASH:
|
2019-06-14 07:50:14 +00:00
|
|
|
state.latest_block_header.state_root = previous_state_root
|
2019-03-16 19:52:37 +00:00
|
|
|
|
2019-06-14 07:50:14 +00:00
|
|
|
# Cache block root
|
2019-07-01 07:53:42 +00:00
|
|
|
state.block_roots[state.slot mod SLOTS_PER_HISTORICAL_ROOT] =
|
2019-12-16 18:08:50 +00:00
|
|
|
hash_tree_root(state.latest_block_header)
|
2018-12-19 04:36:10 +00:00
|
|
|
|
2019-10-06 04:31:50 +00:00
|
|
|
func get_epoch_validator_count(state: BeaconState): int64 =
|
|
|
|
# https://github.com/ethereum/eth2.0-metrics/blob/master/metrics.md#additional-metrics
|
|
|
|
#
|
|
|
|
# This O(n) loop doesn't add to the algorithmic complexity of the epoch
|
|
|
|
# transition -- registry update already does this. It is not great, but
|
|
|
|
# isn't new, either. If profiling shows issues some of this can be loop
|
|
|
|
# fusion'ed.
|
|
|
|
for index, validator in state.validators:
|
|
|
|
# These work primarily for the `beacon_current_validators` metric defined
|
|
|
|
# as 'Number of status="pending|active|exited|withdrawable" validators in
|
|
|
|
# current epoch'. This is, in principle, equivalent to checking whether a
|
|
|
|
# validator's either at less than MAX_EFFECTIVE_BALANCE, or has withdrawn
|
|
|
|
# already because withdrawable_epoch has passed, which more precisely has
|
|
|
|
# intuitive meaning of all-the-current-relevant-validators. So, check for
|
|
|
|
# not-(either (not-even-pending) or withdrawn). That is validators change
|
|
|
|
# from not-even-pending to pending to active to exited to withdrawable to
|
|
|
|
# withdrawn, and this avoids bugs on potential edge cases and off-by-1's.
|
|
|
|
if (validator.activation_epoch != FAR_FUTURE_EPOCH or
|
|
|
|
validator.effective_balance > MAX_EFFECTIVE_BALANCE) and
|
|
|
|
validator.withdrawable_epoch > get_current_epoch(state):
|
|
|
|
result += 1
|
|
|
|
|
2020-01-27 11:36:17 +00:00
|
|
|
# https://github.com/ethereum/eth2.0-specs/blob/v0.10.1/specs/phase0/beacon-chain.md#beacon-chain-state-transition-function
|
2019-12-20 16:14:43 +00:00
|
|
|
proc process_slots*(state: var BeaconState, slot: Slot) {.nbench.}=
|
2020-02-07 07:11:26 +00:00
|
|
|
if not (state.slot <= slot):
|
|
|
|
warn("Trying to apply old block",
|
|
|
|
state_slot = state.slot,
|
|
|
|
slot = slot)
|
|
|
|
return
|
2019-07-15 21:10:40 +00:00
|
|
|
|
|
|
|
# Catch up to the target slot
|
|
|
|
while state.slot < slot:
|
|
|
|
process_slot(state)
|
2019-10-06 04:31:50 +00:00
|
|
|
let is_epoch_transition = (state.slot + 1) mod SLOTS_PER_EPOCH == 0
|
|
|
|
if is_epoch_transition:
|
2019-07-15 21:10:40 +00:00
|
|
|
# Note: Genesis epoch = 0, no need to test if before Genesis
|
2020-04-22 05:53:02 +00:00
|
|
|
try:
|
|
|
|
beacon_previous_validators.set(get_epoch_validator_count(state))
|
|
|
|
except Exception as e: # TODO https://github.com/status-im/nim-metrics/pull/22
|
|
|
|
trace "Couldn't update metrics", msg = e.msg
|
2019-07-15 21:10:40 +00:00
|
|
|
process_epoch(state)
|
|
|
|
state.slot += 1
|
2019-10-06 04:31:50 +00:00
|
|
|
if is_epoch_transition:
|
2020-04-22 05:53:02 +00:00
|
|
|
try:
|
|
|
|
beacon_current_validators.set(get_epoch_validator_count(state))
|
|
|
|
except Exception as e: # TODO https://github.com/status-im/nim-metrics/pull/22
|
|
|
|
trace "Couldn't update metrics", msg = e.msg
|
2019-07-15 21:10:40 +00:00
|
|
|
|
2020-04-09 09:41:02 +00:00
|
|
|
# https://github.com/ethereum/eth2.0-specs/blob/v0.11.1/specs/phase0/beacon-chain.md#verify_block_signature
|
|
|
|
proc verify_block_signature*(
|
|
|
|
state: BeaconState, signedBlock: SignedBeaconBlock): bool {.nbench.} =
|
|
|
|
if signedBlock.message.proposer_index >= state.validators.len.uint64:
|
|
|
|
notice "Invalid proposer index in block",
|
|
|
|
blck = shortLog(signedBlock.message)
|
|
|
|
return false
|
|
|
|
|
|
|
|
let
|
|
|
|
proposer = state.validators[signedBlock.message.proposer_index]
|
|
|
|
domain = get_domain(
|
|
|
|
state, DOMAIN_BEACON_PROPOSER,
|
|
|
|
compute_epoch_at_slot(signedBlock.message.slot))
|
|
|
|
signing_root = compute_signing_root(signedBlock.message, domain)
|
|
|
|
|
|
|
|
if not bls_verify(proposer.pubKey, signing_root.data, signedBlock.signature):
|
|
|
|
notice "Block: signature verification failed",
|
|
|
|
blck = shortLog(signedBlock),
|
|
|
|
signingRoot = shortLog(signing_root)
|
|
|
|
return false
|
|
|
|
|
|
|
|
true
|
|
|
|
|
2019-12-20 16:50:09 +00:00
|
|
|
# https://github.com/ethereum/eth2.0-specs/blob/v0.9.4/specs/core/0_beacon-chain.md#beacon-chain-state-transition-function
|
2018-12-21 22:37:46 +00:00
|
|
|
proc verifyStateRoot(state: BeaconState, blck: BeaconBlock): bool =
|
2019-09-05 19:52:34 +00:00
|
|
|
# This is inlined in state_transition(...) in spec.
|
2019-03-25 16:46:31 +00:00
|
|
|
let state_root = hash_tree_root(state)
|
2018-12-21 22:37:46 +00:00
|
|
|
if state_root != blck.state_root:
|
2019-01-25 17:35:22 +00:00
|
|
|
notice "Block: root verification failed",
|
|
|
|
block_state_root = blck.state_root, state_root
|
2018-12-21 22:37:46 +00:00
|
|
|
false
|
|
|
|
else:
|
|
|
|
true
|
|
|
|
|
2019-07-15 21:10:40 +00:00
|
|
|
proc state_transition*(
|
2020-02-29 15:15:44 +00:00
|
|
|
state: var BeaconState, signedBlock: SignedBeaconBlock, flags: UpdateFlags): bool {.nbench.}=
|
2018-12-13 16:00:55 +00:00
|
|
|
## Time in the beacon chain moves by slots. Every time (haha.) that happens,
|
|
|
|
## we will update the beacon state. Normally, the state updates will be driven
|
|
|
|
## by the contents of a new block, but it may happen that the block goes
|
|
|
|
## missing - the state updates happen regardless.
|
2019-03-08 16:40:17 +00:00
|
|
|
##
|
2018-12-13 16:00:55 +00:00
|
|
|
## Each call to this function will advance the state by one slot - new_block,
|
2019-03-08 16:40:17 +00:00
|
|
|
## must match that slot. If the update fails, the state will remain unchanged.
|
2018-12-19 04:36:10 +00:00
|
|
|
##
|
2018-12-21 22:37:46 +00:00
|
|
|
## The flags are used to specify that certain validations should be skipped
|
|
|
|
## for the new block. This is done during block proposal, to create a state
|
|
|
|
## whose hash can be included in the new block.
|
2018-12-13 16:00:55 +00:00
|
|
|
#
|
|
|
|
# TODO this function can be written with a loop inside to handle all empty
|
|
|
|
# slots up to the slot of the new_block - but then again, why not eagerly
|
|
|
|
# update the state as time passes? Something to ponder...
|
2018-12-21 22:37:46 +00:00
|
|
|
# One reason to keep it this way is that you need to look ahead if you're
|
|
|
|
# the block proposer, though in reality we only need a partial update for
|
2019-07-15 21:10:40 +00:00
|
|
|
# that ===> Implemented as process_slots
|
2019-03-08 16:40:17 +00:00
|
|
|
# TODO There's a discussion about what this function should do, and when:
|
|
|
|
# https://github.com/ethereum/eth2.0-specs/issues/284
|
|
|
|
|
2018-12-04 18:45:30 +00:00
|
|
|
# TODO check to which extent this copy can be avoided (considering forks etc),
|
|
|
|
# for now, it serves as a reminder that we need to handle invalid blocks
|
|
|
|
# somewhere..
|
2019-03-08 16:40:17 +00:00
|
|
|
# many functions will mutate `state` partially without rolling back
|
2018-12-04 18:45:30 +00:00
|
|
|
# the changes in case of failure (look out for `var BeaconState` and
|
|
|
|
# bool return values...)
|
2019-03-21 15:31:36 +00:00
|
|
|
|
|
|
|
## TODO, of cacheState/processEpoch/processSlot/processBloc, only the last
|
|
|
|
## might fail, so should this bother capturing here, or?
|
2020-04-23 18:58:54 +00:00
|
|
|
var old_state = newClone(state)
|
2018-12-13 16:00:55 +00:00
|
|
|
|
2019-03-21 15:31:36 +00:00
|
|
|
# These should never fail.
|
2020-02-29 15:15:44 +00:00
|
|
|
process_slots(state, signedBlock.message.slot)
|
2018-12-21 22:37:46 +00:00
|
|
|
|
2019-03-08 16:40:17 +00:00
|
|
|
# Block updates - these happen when there's a new block being suggested
|
|
|
|
# by the block proposer. Every actor in the network will update its state
|
|
|
|
# according to the contents of this block - but first they will validate
|
|
|
|
# that the block is sane.
|
|
|
|
# TODO what should happen if block processing fails?
|
|
|
|
# https://github.com/ethereum/eth2.0-specs/issues/293
|
2020-04-09 09:41:02 +00:00
|
|
|
if skipBLSValidation in flags or
|
|
|
|
verify_block_signature(state, signedBlock):
|
|
|
|
var per_epoch_cache = get_empty_per_epoch_cache()
|
2019-06-24 09:21:56 +00:00
|
|
|
|
2020-04-09 09:41:02 +00:00
|
|
|
if processBlock(state, signedBlock.message, flags, per_epoch_cache):
|
|
|
|
# This is a bit awkward - at the end of processing we verify that the
|
|
|
|
# state we arrive at is what the block producer thought it would be -
|
|
|
|
# meaning that potentially, it could fail verification
|
|
|
|
if skipStateRootValidation in flags or verifyStateRoot(state, signedBlock.message):
|
|
|
|
# State root is what it should be - we're done!
|
|
|
|
return true
|
2019-03-08 16:40:17 +00:00
|
|
|
|
|
|
|
# Block processing failed, roll back changes
|
2020-04-23 18:58:54 +00:00
|
|
|
state = old_state[]
|
2019-03-08 16:40:17 +00:00
|
|
|
false
|
2018-12-27 20:14:37 +00:00
|
|
|
|
2019-07-15 21:10:40 +00:00
|
|
|
# Hashed-state transition functions
|
|
|
|
# ---------------------------------------------------------------
|
2019-05-04 14:10:45 +00:00
|
|
|
|
2020-01-27 12:21:50 +00:00
|
|
|
# https://github.com/ethereum/eth2.0-specs/blob/v0.10.1/specs/phase0/beacon-chain.md#beacon-chain-state-transition-function
|
2019-06-14 07:50:14 +00:00
|
|
|
func process_slot(state: var HashedBeaconState) =
|
|
|
|
# Cache state root
|
2019-05-04 14:10:45 +00:00
|
|
|
let previous_slot_state_root = state.root
|
2019-07-01 09:42:37 +00:00
|
|
|
state.data.state_roots[state.data.slot mod SLOTS_PER_HISTORICAL_ROOT] =
|
2019-05-04 14:10:45 +00:00
|
|
|
previous_slot_state_root
|
|
|
|
|
2019-06-14 07:50:14 +00:00
|
|
|
# Cache latest block header state root
|
2019-05-04 14:10:45 +00:00
|
|
|
if state.data.latest_block_header.state_root == ZERO_HASH:
|
|
|
|
state.data.latest_block_header.state_root = previous_slot_state_root
|
|
|
|
|
2019-06-14 07:50:14 +00:00
|
|
|
# Cache block root
|
2019-07-01 07:53:42 +00:00
|
|
|
state.data.block_roots[state.data.slot mod SLOTS_PER_HISTORICAL_ROOT] =
|
2019-12-16 18:08:50 +00:00
|
|
|
hash_tree_root(state.data.latest_block_header)
|
2019-05-04 14:10:45 +00:00
|
|
|
|
2020-01-27 12:21:50 +00:00
|
|
|
# https://github.com/ethereum/eth2.0-specs/blob/v0.10.1/specs/phase0/beacon-chain.md#beacon-chain-state-transition-function
|
2019-07-15 21:10:40 +00:00
|
|
|
proc process_slots*(state: var HashedBeaconState, slot: Slot) =
|
|
|
|
# TODO: Eth specs strongly assert that state.data.slot <= slot
|
|
|
|
# This prevents receiving attestation in any order
|
|
|
|
# (see tests/test_attestation_pool)
|
|
|
|
# but it maybe an artifact of the test case
|
|
|
|
# as this was not triggered in the testnet1
|
|
|
|
# after a hour
|
|
|
|
if state.data.slot > slot:
|
|
|
|
notice(
|
|
|
|
"Unusual request for a slot in the past",
|
2020-02-05 12:04:22 +00:00
|
|
|
state_root = shortLog(state.root),
|
2019-07-15 21:10:40 +00:00
|
|
|
current_slot = state.data.slot,
|
|
|
|
target_slot = slot
|
|
|
|
)
|
|
|
|
|
|
|
|
# Catch up to the target slot
|
|
|
|
while state.data.slot < slot:
|
|
|
|
process_slot(state)
|
2019-10-06 04:31:50 +00:00
|
|
|
let is_epoch_transition = (state.data.slot + 1) mod SLOTS_PER_EPOCH == 0
|
|
|
|
if is_epoch_transition:
|
2019-07-15 21:10:40 +00:00
|
|
|
# Note: Genesis epoch = 0, no need to test if before Genesis
|
2020-04-22 05:53:02 +00:00
|
|
|
try:
|
2020-04-23 18:58:54 +00:00
|
|
|
beacon_previous_validators.set(get_epoch_validator_count(state.data[]))
|
2020-04-22 05:53:02 +00:00
|
|
|
except Exception as e: # TODO https://github.com/status-im/nim-metrics/pull/22
|
|
|
|
trace "Couldn't update metrics", msg = e.msg
|
2020-04-23 18:58:54 +00:00
|
|
|
process_epoch(state.data[])
|
2019-07-15 21:10:40 +00:00
|
|
|
state.data.slot += 1
|
2019-10-06 04:31:50 +00:00
|
|
|
if is_epoch_transition:
|
2020-04-22 05:53:02 +00:00
|
|
|
try:
|
2020-04-23 18:58:54 +00:00
|
|
|
beacon_current_validators.set(get_epoch_validator_count(state.data[]))
|
2020-04-22 05:53:02 +00:00
|
|
|
except Exception as e: # TODO https://github.com/status-im/nim-metrics/pull/22
|
|
|
|
trace "Couldn't update metrics", msg = e.msg
|
2019-09-27 16:53:02 +00:00
|
|
|
state.root = hash_tree_root(state.data)
|
2019-07-15 21:10:40 +00:00
|
|
|
|
|
|
|
proc state_transition*(
|
2020-02-29 15:15:44 +00:00
|
|
|
state: var HashedBeaconState, signedBlock: SignedBeaconBlock, flags: UpdateFlags): bool =
|
2019-07-15 21:10:40 +00:00
|
|
|
# Save for rollback
|
2020-04-22 23:35:55 +00:00
|
|
|
var old_state = clone(state)
|
2019-05-04 14:10:45 +00:00
|
|
|
|
2020-02-29 15:15:44 +00:00
|
|
|
process_slots(state, signedBlock.message.slot)
|
2019-07-15 21:10:40 +00:00
|
|
|
|
2020-04-09 09:41:02 +00:00
|
|
|
if skipBLSValidation in flags or
|
2020-04-23 18:58:54 +00:00
|
|
|
verify_block_signature(state.data[], signedBlock):
|
2020-04-09 09:41:02 +00:00
|
|
|
|
|
|
|
var per_epoch_cache = get_empty_per_epoch_cache()
|
2020-04-23 18:58:54 +00:00
|
|
|
if processBlock(state.data[], signedBlock.message, flags, per_epoch_cache):
|
|
|
|
if skipStateRootValidation in flags or verifyStateRoot(state.data[], signedBlock.message):
|
2020-04-09 09:41:02 +00:00
|
|
|
# State root is what it should be - we're done!
|
2019-05-04 14:10:45 +00:00
|
|
|
|
2020-04-09 09:41:02 +00:00
|
|
|
# TODO when creating a new block, state_root is not yet set.. comparing
|
|
|
|
# with zero hash here is a bit fragile however, but this whole thing
|
|
|
|
# should go away with proper hash caching
|
|
|
|
state.root =
|
2020-04-23 18:58:54 +00:00
|
|
|
if signedBlock.message.state_root == Eth2Digest(): hash_tree_root(state.data[])
|
2020-04-09 09:41:02 +00:00
|
|
|
else: signedBlock.message.state_root
|
2019-05-04 14:10:45 +00:00
|
|
|
|
2020-04-09 09:41:02 +00:00
|
|
|
return true
|
2019-05-04 14:10:45 +00:00
|
|
|
|
|
|
|
# Block processing failed, roll back changes
|
2020-04-22 23:35:55 +00:00
|
|
|
state.data[] = old_state.data[]
|
|
|
|
state.root = old_state.root
|
2019-05-04 14:10:45 +00:00
|
|
|
false
|