2019-06-28 13:44:44 +00:00
|
|
|
# beacon_chain
|
2020-01-27 12:21:50 +00:00
|
|
|
# Copyright (c) 2018-2020 Status Research & Development GmbH
|
2019-06-28 13:44:44 +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).
|
2019-06-28 13:44:44 +00:00
|
|
|
# at your option. This file may not be copied, modified, or distributed except according to those terms.
|
|
|
|
|
|
|
|
# State transition - block processing, as described in
|
|
|
|
# https://github.com/ethereum/eth2.0-specs/blob/master/specs/core/0_beacon-chain.md#beacon-chain-state-transition-function
|
|
|
|
#
|
|
|
|
# The purpose of this code right is primarily educational, to help piece
|
|
|
|
# together the mechanics of the beacon state and to discover potential problem
|
|
|
|
# areas.
|
|
|
|
#
|
|
|
|
# The entry point is `process_block` which is at the bottom of this file.
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
# * For indices, we get a mix of uint64, ValidatorIndex and int - this is currently
|
|
|
|
# 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.
|
|
|
|
|
2020-04-22 05:53:02 +00:00
|
|
|
{.push raises: [Defect].}
|
|
|
|
|
2019-12-04 10:49:59 +00:00
|
|
|
import
|
2020-04-10 14:06:24 +00:00
|
|
|
algorithm, collections/sets, chronicles, options, sequtils, sets,
|
2019-10-25 10:59:56 +00:00
|
|
|
../extras, ../ssz, metrics,
|
2019-12-20 16:14:43 +00:00
|
|
|
beaconstate, crypto, datatypes, digest, helpers, validator,
|
|
|
|
../../nbench/bench_lab
|
2019-06-28 13:44:44 +00:00
|
|
|
|
2019-10-06 04:31:50 +00:00
|
|
|
# https://github.com/ethereum/eth2.0-metrics/blob/master/metrics.md#additional-metrics
|
2019-10-21 08:11:54 +00:00
|
|
|
declareGauge beacon_current_live_validators, "Number of active validators that successfully included attestation on chain for current epoch" # On block
|
|
|
|
declareGauge beacon_previous_live_validators, "Number of active validators that successfully included attestation on chain for previous epoch" # On block
|
2019-10-06 04:31:50 +00:00
|
|
|
declareGauge beacon_pending_deposits, "Number of pending deposits (state.eth1_data.deposit_count - state.eth1_deposit_index)" # On block
|
|
|
|
declareGauge beacon_processed_deposits_total, "Number of total deposits included on chain" # On block
|
|
|
|
|
2020-05-19 14:37:29 +00:00
|
|
|
# https://github.com/ethereum/eth2.0-specs/blob/v0.11.3/specs/phase0/beacon-chain.md#block-header
|
2019-09-09 18:40:59 +00:00
|
|
|
proc process_block_header*(
|
2019-06-28 13:44:44 +00:00
|
|
|
state: var BeaconState, blck: BeaconBlock, flags: UpdateFlags,
|
2019-12-20 16:14:43 +00:00
|
|
|
stateCache: var StateCache): bool {.nbench.}=
|
2019-06-28 13:44:44 +00:00
|
|
|
# Verify that the slots match
|
|
|
|
if not (blck.slot == state.slot):
|
|
|
|
notice "Block header: slot mismatch",
|
2019-08-15 16:01:55 +00:00
|
|
|
block_slot = shortLog(blck.slot),
|
|
|
|
state_slot = shortLog(state.slot)
|
2019-06-28 13:44:44 +00:00
|
|
|
return false
|
|
|
|
|
2020-05-19 14:37:29 +00:00
|
|
|
# Verify that the block is newer than latest block header
|
|
|
|
if not (blck.slot > state.latest_block_header.slot):
|
|
|
|
debug "Block header: block not newer than latest block header"
|
|
|
|
return false
|
|
|
|
|
2020-03-14 21:54:45 +00:00
|
|
|
# Verify that proposer index is the correct index
|
|
|
|
let proposer_index = get_beacon_proposer_index(state, stateCache)
|
|
|
|
if proposer_index.isNone:
|
|
|
|
debug "Block header: proposer missing"
|
|
|
|
return false
|
|
|
|
|
|
|
|
if not (blck.proposer_index.ValidatorIndex == proposer_index.get):
|
2020-03-15 13:01:37 +00:00
|
|
|
notice "Block header: proposer index incorrect",
|
|
|
|
block_proposer_index = blck.proposer_index.ValidatorIndex,
|
|
|
|
proposer_index = proposer_index.get
|
2020-03-14 21:54:45 +00:00
|
|
|
return false
|
|
|
|
|
2019-06-28 13:44:44 +00:00
|
|
|
# Verify that the parent matches
|
2020-03-05 12:52:10 +00:00
|
|
|
if skipBlockParentRootValidation notin flags and not (blck.parent_root ==
|
2019-12-16 18:08:50 +00:00
|
|
|
hash_tree_root(state.latest_block_header)):
|
2019-06-28 13:44:44 +00:00
|
|
|
notice "Block header: previous block root mismatch",
|
|
|
|
latest_block_header = state.latest_block_header,
|
|
|
|
blck = shortLog(blck),
|
2019-12-16 18:08:50 +00:00
|
|
|
latest_block_header_root = shortLog(hash_tree_root(state.latest_block_header))
|
2019-06-28 13:44:44 +00:00
|
|
|
return false
|
|
|
|
|
2020-03-14 21:54:45 +00:00
|
|
|
# Cache current block as the new latest block
|
2019-06-28 13:44:44 +00:00
|
|
|
state.latest_block_header = BeaconBlockHeader(
|
|
|
|
slot: blck.slot,
|
2020-03-14 21:54:45 +00:00
|
|
|
proposer_index: blck.proposer_index,
|
2019-06-28 13:44:44 +00:00
|
|
|
parent_root: blck.parent_root,
|
2019-07-15 12:57:18 +00:00
|
|
|
# state_root: zeroed, overwritten in the next `process_slot` call
|
2019-06-28 13:44:44 +00:00
|
|
|
body_root: hash_tree_root(blck.body),
|
|
|
|
)
|
|
|
|
|
|
|
|
# Verify proposer is not slashed
|
2019-12-04 10:49:59 +00:00
|
|
|
let proposer = state.validators[proposer_index.get]
|
2019-06-28 13:44:44 +00:00
|
|
|
if proposer.slashed:
|
|
|
|
notice "Block header: proposer slashed"
|
|
|
|
return false
|
|
|
|
|
|
|
|
true
|
|
|
|
|
2020-05-26 05:04:24 +00:00
|
|
|
# https://github.com/ethereum/eth2.0-specs/blob/v0.11.3/specs/phase0/beacon-chain.md#randao
|
2019-09-04 13:57:18 +00:00
|
|
|
proc process_randao(
|
2019-06-28 13:44:44 +00:00
|
|
|
state: var BeaconState, body: BeaconBlockBody, flags: UpdateFlags,
|
2019-12-20 16:14:43 +00:00
|
|
|
stateCache: var StateCache): bool {.nbench.}=
|
2019-06-28 13:44:44 +00:00
|
|
|
let
|
2019-09-04 13:57:18 +00:00
|
|
|
epoch = state.get_current_epoch()
|
2019-06-28 13:44:44 +00:00
|
|
|
proposer_index = get_beacon_proposer_index(state, stateCache)
|
2019-12-04 10:49:59 +00:00
|
|
|
|
|
|
|
if proposer_index.isNone:
|
|
|
|
debug "Proposer index missing, probably along with any active validators"
|
|
|
|
return false
|
|
|
|
|
2020-05-26 05:04:24 +00:00
|
|
|
# Verify RANDAO reveal
|
2019-12-04 10:49:59 +00:00
|
|
|
let proposer = addr state.validators[proposer_index.get]
|
2019-06-28 13:44:44 +00:00
|
|
|
|
2020-03-30 11:31:44 +00:00
|
|
|
let signing_root = compute_signing_root(
|
|
|
|
epoch, get_domain(state, DOMAIN_RANDAO, get_current_epoch(state)))
|
2020-03-04 21:27:11 +00:00
|
|
|
if skipBLSValidation notin flags:
|
|
|
|
if not blsVerify(proposer.pubkey, signing_root.data, body.randao_reveal):
|
2020-03-19 16:18:48 +00:00
|
|
|
notice "Randao mismatch", proposer_pubkey = shortLog(proposer.pubkey),
|
2019-09-04 13:57:18 +00:00
|
|
|
message = epoch,
|
2020-03-19 16:18:48 +00:00
|
|
|
signature = shortLog(body.randao_reveal),
|
2019-06-28 13:44:44 +00:00
|
|
|
slot = state.slot
|
|
|
|
return false
|
|
|
|
|
|
|
|
# Mix it in
|
|
|
|
let
|
2019-09-04 13:57:18 +00:00
|
|
|
mix = get_randao_mix(state, epoch)
|
2020-04-11 08:51:07 +00:00
|
|
|
rr = eth2hash(body.randao_reveal.toRaw()).data
|
2019-06-28 13:44:44 +00:00
|
|
|
|
2019-09-04 13:57:18 +00:00
|
|
|
for i in 0 ..< mix.data.len:
|
|
|
|
state.randao_mixes[epoch mod EPOCHS_PER_HISTORICAL_VECTOR].data[i] = mix.data[i] xor rr[i]
|
2019-06-28 13:44:44 +00:00
|
|
|
|
|
|
|
true
|
|
|
|
|
2020-05-20 08:46:31 +00:00
|
|
|
# https://github.com/ethereum/eth2.0-specs/blob/v0.11.3/specs/phase0/beacon-chain.md#eth1-data
|
2019-12-20 16:14:43 +00:00
|
|
|
func process_eth1_data(state: var BeaconState, body: BeaconBlockBody) {.nbench.}=
|
2019-06-28 13:44:44 +00:00
|
|
|
state.eth1_data_votes.add body.eth1_data
|
2020-05-18 17:49:22 +00:00
|
|
|
if state.eth1_data_votes.asSeq.count(body.eth1_data) * 2 > SLOTS_PER_ETH1_VOTING_PERIOD.int:
|
2019-07-01 09:42:37 +00:00
|
|
|
state.eth1_data = body.eth1_data
|
2019-06-28 13:44:44 +00:00
|
|
|
|
2020-05-20 08:46:31 +00:00
|
|
|
# https://github.com/ethereum/eth2.0-specs/blob/v0.11.3/specs/phase0/beacon-chain.md#is_slashable_validator
|
2019-06-28 13:44:44 +00:00
|
|
|
func is_slashable_validator(validator: Validator, epoch: Epoch): bool =
|
|
|
|
# Check if ``validator`` is slashable.
|
|
|
|
(not validator.slashed) and
|
|
|
|
(validator.activation_epoch <= epoch) and
|
|
|
|
(epoch < validator.withdrawable_epoch)
|
|
|
|
|
2020-05-20 08:46:31 +00:00
|
|
|
# https://github.com/ethereum/eth2.0-specs/blob/v0.11.3/specs/phase0/beacon-chain.md#proposer-slashings
|
2019-09-11 07:50:07 +00:00
|
|
|
proc process_proposer_slashing*(
|
2019-09-10 15:29:46 +00:00
|
|
|
state: var BeaconState, proposer_slashing: ProposerSlashing,
|
2019-12-20 16:14:43 +00:00
|
|
|
flags: UpdateFlags, stateCache: var StateCache): bool {.nbench.}=
|
2020-03-14 21:54:45 +00:00
|
|
|
|
|
|
|
let
|
|
|
|
header_1 = proposer_slashing.signed_header_1.message
|
|
|
|
header_2 = proposer_slashing.signed_header_2.message
|
|
|
|
|
|
|
|
# Not from spec
|
|
|
|
if header_1.proposer_index.int >= state.validators.len:
|
2019-09-11 07:50:07 +00:00
|
|
|
notice "Proposer slashing: invalid proposer index"
|
|
|
|
return false
|
|
|
|
|
2020-03-14 21:54:45 +00:00
|
|
|
# Verify header slots match
|
|
|
|
if not (header_1.slot == header_2.slot):
|
2019-11-08 10:30:22 +00:00
|
|
|
notice "Proposer slashing: slot mismatch"
|
2019-09-10 15:29:46 +00:00
|
|
|
return false
|
|
|
|
|
2020-03-14 21:54:45 +00:00
|
|
|
# Verify header proposer indices match
|
|
|
|
if not (header_1.proposer_index == header_2.proposer_index):
|
|
|
|
notice "Proposer slashing: proposer indices mismatch"
|
|
|
|
return false
|
|
|
|
|
|
|
|
# Verify the headers are different
|
|
|
|
if not (header_1 != header_2):
|
2019-09-11 07:50:07 +00:00
|
|
|
notice "Proposer slashing: headers not different"
|
2019-09-10 15:29:46 +00:00
|
|
|
return false
|
|
|
|
|
2020-03-14 21:54:45 +00:00
|
|
|
# Verify the proposer is slashable
|
|
|
|
let proposer = state.validators[header_1.proposer_index]
|
2019-09-10 15:29:46 +00:00
|
|
|
if not is_slashable_validator(proposer, get_current_epoch(state)):
|
2019-09-11 07:50:07 +00:00
|
|
|
notice "Proposer slashing: slashed proposer"
|
2019-09-10 15:29:46 +00:00
|
|
|
return false
|
|
|
|
|
2020-03-14 21:54:45 +00:00
|
|
|
# Verify signatures
|
2020-03-05 12:52:10 +00:00
|
|
|
if skipBlsValidation notin flags:
|
2019-12-16 18:08:50 +00:00
|
|
|
for i, signed_header in [proposer_slashing.signed_header_1,
|
|
|
|
proposer_slashing.signed_header_2]:
|
2020-03-04 21:27:11 +00:00
|
|
|
let domain = get_domain(
|
2019-12-16 18:08:50 +00:00
|
|
|
state, DOMAIN_BEACON_PROPOSER,
|
2020-03-04 21:27:11 +00:00
|
|
|
compute_epoch_at_slot(signed_header.message.slot)
|
|
|
|
)
|
|
|
|
let signing_root = compute_signing_root(signed_header.message, domain)
|
|
|
|
if not blsVerify(proposer.pubkey, signing_root.data, signed_header.signature):
|
2019-09-11 07:50:07 +00:00
|
|
|
notice "Proposer slashing: invalid signature",
|
2019-09-10 15:29:46 +00:00
|
|
|
signature_index = i
|
|
|
|
return false
|
|
|
|
|
2020-03-14 21:54:45 +00:00
|
|
|
slashValidator(state, header_1.proposer_index.ValidatorIndex, stateCache)
|
2019-09-10 15:29:46 +00:00
|
|
|
|
|
|
|
true
|
|
|
|
|
2020-05-20 08:46:31 +00:00
|
|
|
# https://github.com/ethereum/eth2.0-specs/blob/v0.11.3/specs/phase0/beacon-chain.md#is_slashable_attestation_data
|
2019-06-28 13:44:44 +00:00
|
|
|
func is_slashable_attestation_data(
|
|
|
|
data_1: AttestationData, data_2: AttestationData): bool =
|
|
|
|
## Check if ``data_1`` and ``data_2`` are slashable according to Casper FFG
|
|
|
|
## rules.
|
|
|
|
|
|
|
|
# Double vote
|
2019-07-02 21:14:55 +00:00
|
|
|
(data_1 != data_2 and data_1.target.epoch == data_2.target.epoch) or
|
2019-06-28 13:44:44 +00:00
|
|
|
# Surround vote
|
2019-07-02 21:14:55 +00:00
|
|
|
(data_1.source.epoch < data_2.source.epoch and
|
|
|
|
data_2.target.epoch < data_1.target.epoch)
|
2019-06-28 13:44:44 +00:00
|
|
|
|
2020-05-20 08:46:31 +00:00
|
|
|
# https://github.com/ethereum/eth2.0-specs/blob/v0.11.3/specs/phase0/beacon-chain.md#attester-slashings
|
2019-09-10 22:03:06 +00:00
|
|
|
proc process_attester_slashing*(
|
|
|
|
state: var BeaconState,
|
|
|
|
attester_slashing: AttesterSlashing,
|
2020-01-30 21:03:47 +00:00
|
|
|
flags: UpdateFlags,
|
2019-09-10 22:03:06 +00:00
|
|
|
stateCache: var StateCache
|
2019-12-20 16:14:43 +00:00
|
|
|
): bool {.nbench.}=
|
2019-06-28 13:44:44 +00:00
|
|
|
let
|
|
|
|
attestation_1 = attester_slashing.attestation_1
|
|
|
|
attestation_2 = attester_slashing.attestation_2
|
|
|
|
|
|
|
|
if not is_slashable_attestation_data(
|
|
|
|
attestation_1.data, attestation_2.data):
|
2019-09-10 22:03:06 +00:00
|
|
|
notice "Attester slashing: surround or double vote check failed"
|
2019-06-28 13:44:44 +00:00
|
|
|
return false
|
|
|
|
|
2020-01-30 21:03:47 +00:00
|
|
|
if not is_valid_indexed_attestation(state, attestation_1, flags):
|
2019-09-10 22:03:06 +00:00
|
|
|
notice "Attester slashing: invalid attestation 1"
|
2019-06-28 13:44:44 +00:00
|
|
|
return false
|
|
|
|
|
2020-01-30 21:03:47 +00:00
|
|
|
if not is_valid_indexed_attestation(state, attestation_2, flags):
|
2019-09-10 22:03:06 +00:00
|
|
|
notice "Attester slashing: invalid attestation 2"
|
2019-06-28 13:44:44 +00:00
|
|
|
return false
|
|
|
|
|
2019-12-17 09:52:04 +00:00
|
|
|
var slashed_any = false
|
2019-06-28 13:44:44 +00:00
|
|
|
|
2019-11-13 11:30:11 +00:00
|
|
|
for index in sorted(toSeq(intersection(
|
2020-05-18 17:49:22 +00:00
|
|
|
toHashSet(attestation_1.attesting_indices.asSeq),
|
|
|
|
toHashSet(attestation_2.attesting_indices.asSeq)).items), system.cmp):
|
2019-11-13 11:30:11 +00:00
|
|
|
if is_slashable_validator(
|
|
|
|
state.validators[index.int], get_current_epoch(state)):
|
2019-06-28 13:44:44 +00:00
|
|
|
slash_validator(state, index.ValidatorIndex, stateCache)
|
|
|
|
slashed_any = true
|
2019-09-10 22:03:06 +00:00
|
|
|
if not slashed_any:
|
|
|
|
notice "Attester slashing: Trying to slash participant(s) twice"
|
|
|
|
return false
|
|
|
|
return 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#voluntary-exits
|
2019-09-10 00:14:03 +00:00
|
|
|
proc process_voluntary_exit*(
|
|
|
|
state: var BeaconState,
|
2019-12-16 18:08:50 +00:00
|
|
|
signed_voluntary_exit: SignedVoluntaryExit,
|
2019-12-20 16:14:43 +00:00
|
|
|
flags: UpdateFlags): bool {.nbench.}=
|
2019-09-10 00:14:03 +00:00
|
|
|
|
2019-12-16 18:08:50 +00:00
|
|
|
let voluntary_exit = signed_voluntary_exit.message
|
|
|
|
|
2019-09-10 00:14:03 +00:00
|
|
|
# Not in spec. Check that validator_index is in range
|
2019-12-16 18:08:50 +00:00
|
|
|
if voluntary_exit.validator_index.int >= state.validators.len:
|
2019-09-10 00:14:03 +00:00
|
|
|
notice "Exit: invalid validator index",
|
2019-12-16 18:08:50 +00:00
|
|
|
index = voluntary_exit.validator_index,
|
2019-09-10 00:14:03 +00:00
|
|
|
num_validators = state.validators.len
|
2019-06-28 13:44:44 +00:00
|
|
|
return false
|
|
|
|
|
2019-12-16 18:08:50 +00:00
|
|
|
let validator = state.validators[voluntary_exit.validator_index.int]
|
2019-06-28 13:44:44 +00:00
|
|
|
|
2019-09-10 00:14:03 +00:00
|
|
|
# Verify the validator is active
|
|
|
|
if not is_active_validator(validator, get_current_epoch(state)):
|
|
|
|
notice "Exit: validator not active"
|
|
|
|
return false
|
2019-06-28 13:44:44 +00:00
|
|
|
|
2019-09-10 00:14:03 +00:00
|
|
|
# Verify the validator has not yet exited
|
|
|
|
if validator.exit_epoch != FAR_FUTURE_EPOCH:
|
|
|
|
notice "Exit: validator has exited"
|
|
|
|
return false
|
2019-06-28 13:44:44 +00:00
|
|
|
|
2019-09-10 00:14:03 +00:00
|
|
|
## Exits must specify an epoch when they become valid; they are not valid
|
|
|
|
## before then
|
2019-12-16 18:08:50 +00:00
|
|
|
if not (get_current_epoch(state) >= voluntary_exit.epoch):
|
2019-09-10 00:14:03 +00:00
|
|
|
notice "Exit: exit epoch not passed"
|
|
|
|
return false
|
2019-06-28 13:44:44 +00:00
|
|
|
|
2019-09-10 00:14:03 +00:00
|
|
|
# Verify the validator has been active long enough
|
|
|
|
if not (get_current_epoch(state) >= validator.activation_epoch +
|
|
|
|
PERSISTENT_COMMITTEE_PERIOD):
|
|
|
|
notice "Exit: not in validator set long enough"
|
|
|
|
return false
|
2019-06-28 13:44:44 +00:00
|
|
|
|
2019-09-10 00:14:03 +00:00
|
|
|
# Verify signature
|
2020-03-05 12:52:10 +00:00
|
|
|
if skipBlsValidation notin flags:
|
2019-12-16 18:08:50 +00:00
|
|
|
let domain = get_domain(state, DOMAIN_VOLUNTARY_EXIT, voluntary_exit.epoch)
|
2020-03-04 21:27:11 +00:00
|
|
|
let signing_root = compute_signing_root(voluntary_exit, domain)
|
|
|
|
if not bls_verify(validator.pubkey, signing_root.data, signed_voluntary_exit.signature):
|
2019-09-10 00:14:03 +00:00
|
|
|
notice "Exit: invalid signature"
|
|
|
|
return false
|
2019-06-28 13:44:44 +00:00
|
|
|
|
2019-09-10 00:14:03 +00:00
|
|
|
# Initiate exit
|
2019-11-25 08:22:16 +00:00
|
|
|
debug "Exit: processing voluntary exit (validator_leaving)",
|
2019-12-16 18:08:50 +00:00
|
|
|
index = voluntary_exit.validator_index,
|
2019-11-25 08:22:16 +00:00
|
|
|
num_validators = state.validators.len,
|
2019-12-16 18:08:50 +00:00
|
|
|
epoch = voluntary_exit.epoch,
|
2019-11-25 08:22:16 +00:00
|
|
|
current_epoch = get_current_epoch(state),
|
|
|
|
validator_slashed = validator.slashed,
|
|
|
|
validator_withdrawable_epoch = validator.withdrawable_epoch,
|
|
|
|
validator_exit_epoch = validator.exit_epoch,
|
|
|
|
validator_effective_balance = validator.effective_balance
|
2019-12-16 18:08:50 +00:00
|
|
|
initiate_validator_exit(state, voluntary_exit.validator_index.ValidatorIndex)
|
2019-06-28 13:44:44 +00:00
|
|
|
|
|
|
|
true
|
|
|
|
|
2020-05-22 15:52:07 +00:00
|
|
|
# https://github.com/ethereum/eth2.0-specs/blob/v0.11.3/specs/phase0/beacon-chain.md#operations
|
|
|
|
proc process_operations(state: var BeaconState, body: BeaconBlockBody,
|
|
|
|
flags: UpdateFlags, stateCache: var StateCache): bool {.nbench.} =
|
|
|
|
# Verify that outstanding deposits are processed up to the maximum number of
|
|
|
|
# deposits
|
|
|
|
let
|
|
|
|
num_deposits = len(body.deposits).int64
|
|
|
|
req_deposits = min(MAX_DEPOSITS,
|
|
|
|
state.eth1_data.deposit_count.int64 - state.eth1_deposit_index.int64)
|
|
|
|
if not (num_deposits == req_deposits):
|
|
|
|
notice "processOperations: incorrect number of deposits",
|
|
|
|
num_deposits = num_deposits,
|
|
|
|
req_deposits = req_deposits,
|
|
|
|
deposit_count = state.eth1_data.deposit_count,
|
|
|
|
deposit_index = state.eth1_deposit_index
|
2019-09-10 00:14:03 +00:00
|
|
|
return false
|
2020-05-22 15:52:07 +00:00
|
|
|
|
2020-05-22 17:00:58 +00:00
|
|
|
template for_ops_cached(operations: auto, fn: auto) =
|
2020-05-22 15:52:07 +00:00
|
|
|
for operation in operations:
|
2020-05-23 17:43:05 +00:00
|
|
|
if not fn(state, operation, flags, stateCache):
|
|
|
|
return false
|
2020-05-22 15:52:07 +00:00
|
|
|
|
2020-05-22 17:00:58 +00:00
|
|
|
template for_ops(operations: auto, fn: auto) =
|
2020-05-22 15:52:07 +00:00
|
|
|
for operation in operations:
|
2020-05-23 17:43:05 +00:00
|
|
|
if not fn(state, operation, flags):
|
|
|
|
return false
|
2020-05-22 15:52:07 +00:00
|
|
|
|
2020-05-22 17:00:58 +00:00
|
|
|
for_ops_cached(body.proposer_slashings, process_proposer_slashing)
|
|
|
|
for_ops_cached(body.attester_slashings, process_attester_slashing)
|
|
|
|
for_ops_cached(body.attestations, process_attestation)
|
|
|
|
for_ops(body.deposits, process_deposit)
|
|
|
|
for_ops(body.voluntary_exits, process_voluntary_exit)
|
2020-05-22 15:52:07 +00:00
|
|
|
|
|
|
|
true
|
2019-09-10 00:14:03 +00:00
|
|
|
|
2020-05-20 08:46:31 +00:00
|
|
|
# https://github.com/ethereum/eth2.0-specs/blob/v0.11.3/specs/phase0/beacon-chain.md#block-processing
|
2020-03-15 13:01:37 +00:00
|
|
|
proc process_block*(
|
2019-06-28 13:44:44 +00:00
|
|
|
state: var BeaconState, blck: BeaconBlock, flags: UpdateFlags,
|
2019-12-20 16:14:43 +00:00
|
|
|
stateCache: var StateCache): bool {.nbench.}=
|
2019-06-28 13:44:44 +00:00
|
|
|
## When there's a new block, we need to verify that the block is sane and
|
|
|
|
## update the state accordingly
|
|
|
|
|
|
|
|
# TODO when there's a failure, we should reset the state!
|
|
|
|
# TODO probably better to do all verification first, then apply state changes
|
|
|
|
|
2019-10-06 04:31:50 +00:00
|
|
|
# https://github.com/ethereum/eth2.0-metrics/blob/master/metrics.md#additional-metrics
|
|
|
|
# doesn't seem to specify at what point in block processing this metric is to be read,
|
|
|
|
# and this avoids the early-return issue (could also use defer, etc).
|
2020-05-08 23:13:57 +00:00
|
|
|
beacon_pending_deposits.set(
|
|
|
|
state.eth1_data.deposit_count.int64 - state.eth1_deposit_index.int64)
|
|
|
|
beacon_processed_deposits_total.set(state.eth1_deposit_index.int64)
|
|
|
|
|
|
|
|
# Adds nontrivial additional computation, but only does so when metrics
|
|
|
|
# enabled.
|
|
|
|
beacon_current_live_validators.set(toHashSet(
|
|
|
|
mapIt(state.current_epoch_attestations, it.proposerIndex)).len.int64)
|
|
|
|
beacon_previous_live_validators.set(toHashSet(
|
|
|
|
mapIt(state.previous_epoch_attestations, it.proposerIndex)).len.int64)
|
2019-10-21 08:11:54 +00:00
|
|
|
|
2019-09-09 18:40:59 +00:00
|
|
|
if not process_block_header(state, blck, flags, stateCache):
|
2019-08-15 16:01:55 +00:00
|
|
|
notice "Block header not valid", slot = shortLog(state.slot)
|
2019-06-28 13:44:44 +00:00
|
|
|
return false
|
|
|
|
|
|
|
|
if not processRandao(state, blck.body, flags, stateCache):
|
2019-08-15 16:01:55 +00:00
|
|
|
debug "[Block processing] Randao failure", slot = shortLog(state.slot)
|
2019-06-28 13:44:44 +00:00
|
|
|
return false
|
|
|
|
|
initial 0.9.0 spec sync (#509)
* rename compute_epoch_of_slot(...) to compute_epoch_at_slot(...)
* remove some unnecessary imports; remove some crosslink-related code and tests; complete renaming of compute_epoch_of_slot(...) to compute_epoch_at_slot(...)
* rm more transfer-related code and tests; rm more unnecessary strutils imports
* rm remaining unused imports
* remove useless get_empty_per_epoch_cache(...)/compute_start_slot_of_epoch(...) calls
* rename compute_start_slot_of_epoch(...) to compute_start_slot_at_epoch(...)
* rename ACTIVATION_EXIT_DELAY to MAX_SEED_LOOKAHEAD
* update domain types to 0.9.0
* mark AttesterSlashing, IndexedAttestation, AttestationDataAndCustodyBit, DepositData, BeaconBlockHeader, Fork, integer_squareroot(...), and process_voluntary_exit(...) as 0.9.0
* mark increase_balance(...), decrease_balance(...), get_block_root(...), CheckPoint, Deposit, PendingAttestation, HistoricalBatch, is_active_validator(...), and is_slashable_attestation_data(...) as 0.9.0
* mark compute_activation_exit_epoch(...), bls_verify(...), Validator, get_active_validator_indices(...), get_current_epoch(...), get_total_active_balance(...), and get_previous_epoch(...) as 0.9.0
* mark get_block_root_at_slot(...), ProposerSlashing, get_domain(...), VoluntaryExit, mainnet preset Gwei values, minimal preset max operations, process_block_header(...), and is_slashable_validator(...) as 0.9.0
* mark makeWithdrawalCredentials(...), get_validator_churn_limit(...), get_total_balance(...), is_valid_indexed_attestation(...), bls_aggregate_pubkeys(...), initial genesis value/constants, Attestation, get_randao_mix(...), mainnet preset max operations per block constants, minimal preset Gwei values and time parameters, process_eth1_data(...), get_shuffled_seq(...), compute_committee(...), and process_slots(...) as 0.9.0; partially update get_indexed_attestation(...) to 0.9.0 by removing crosslink refs and associated tests
* mark initiate_validator_exit(...), process_registry_updates(...), BeaconBlock, Eth1Data, compute_domain(...), process_randao(...), process_attester_slashing(...), get_base_reward(...), and process_slot(...) as 0.9.0
2019-10-30 19:41:19 +00:00
|
|
|
process_eth1_data(state, blck.body)
|
2020-05-22 15:52:07 +00:00
|
|
|
if not process_operations(state, blck.body, flags, stateCache):
|
|
|
|
# One could combine this and the default-true, but that's a bit implicit
|
2019-06-28 13:44:44 +00:00
|
|
|
return false
|
|
|
|
|
|
|
|
true
|
2020-03-19 23:48:03 +00:00
|
|
|
|
2020-03-30 11:31:44 +00:00
|
|
|
# https://github.com/ethereum/eth2.0-specs/blob/v0.11.1/specs/phase0/validator.md#aggregation-selection
|
2020-03-19 23:48:03 +00:00
|
|
|
func get_slot_signature*(
|
2020-03-30 11:31:44 +00:00
|
|
|
fork: Fork, genesis_validators_root: Eth2Digest, slot: Slot,
|
|
|
|
privkey: ValidatorPrivKey): ValidatorSig =
|
2020-03-19 23:48:03 +00:00
|
|
|
let
|
2020-03-30 11:31:44 +00:00
|
|
|
domain = get_domain(fork, DOMAIN_SELECTION_PROOF,
|
|
|
|
compute_epoch_at_slot(slot), genesis_validators_root)
|
2020-03-19 23:48:03 +00:00
|
|
|
signing_root = compute_signing_root(slot, domain)
|
|
|
|
|
|
|
|
blsSign(privKey, signing_root.data)
|
|
|
|
|
2020-03-30 11:31:44 +00:00
|
|
|
# https://github.com/ethereum/eth2.0-specs/blob/v0.11.1/specs/phase0/validator.md#randao-reveal
|
2020-03-19 23:48:03 +00:00
|
|
|
func get_epoch_signature*(
|
2020-03-30 11:31:44 +00:00
|
|
|
fork: Fork, genesis_validators_root: Eth2Digest, slot: Slot,
|
|
|
|
privkey: ValidatorPrivKey): ValidatorSig =
|
2020-03-19 23:48:03 +00:00
|
|
|
let
|
2020-03-30 11:31:44 +00:00
|
|
|
domain = get_domain(fork, DOMAIN_RANDAO, compute_epoch_at_slot(slot),
|
|
|
|
genesis_validators_root)
|
2020-03-19 23:48:03 +00:00
|
|
|
signing_root = compute_signing_root(compute_epoch_at_slot(slot), domain)
|
|
|
|
|
|
|
|
blsSign(privKey, signing_root.data)
|
|
|
|
|
2020-03-30 11:31:44 +00:00
|
|
|
# https://github.com/ethereum/eth2.0-specs/blob/v0.11.1/specs/phase0/validator.md#signature
|
2020-03-19 23:48:03 +00:00
|
|
|
func get_block_signature*(
|
2020-03-30 11:31:44 +00:00
|
|
|
fork: Fork, genesis_validators_root: Eth2Digest, slot: Slot,
|
|
|
|
root: Eth2Digest, privkey: ValidatorPrivKey): ValidatorSig =
|
2020-03-19 23:48:03 +00:00
|
|
|
let
|
2020-03-30 11:31:44 +00:00
|
|
|
domain = get_domain(fork, DOMAIN_BEACON_PROPOSER,
|
|
|
|
compute_epoch_at_slot(slot), genesis_validators_root)
|
2020-03-19 23:48:03 +00:00
|
|
|
signing_root = compute_signing_root(root, domain)
|
|
|
|
|
|
|
|
blsSign(privKey, signing_root.data)
|
|
|
|
|
2020-04-15 02:41:22 +00:00
|
|
|
# https://github.com/ethereum/eth2.0-specs/blob/v0.11.1/specs/phase0/validator.md#broadcast-aggregate
|
|
|
|
func get_aggregate_and_proof_signature*(fork: Fork, genesis_validators_root: Eth2Digest,
|
|
|
|
aggregate_and_proof: AggregateAndProof,
|
|
|
|
privKey: ValidatorPrivKey): ValidatorSig =
|
|
|
|
let
|
|
|
|
aggregate = aggregate_and_proof.aggregate
|
|
|
|
domain = get_domain(fork, DOMAIN_AGGREGATE_AND_PROOF,
|
|
|
|
compute_epoch_at_slot(aggregate.data.slot),
|
|
|
|
genesis_validators_root)
|
|
|
|
signing_root = compute_signing_root(aggregate_and_proof, domain)
|
|
|
|
|
|
|
|
return blsSign(privKey, signing_root.data)
|
|
|
|
|
2020-03-30 11:31:44 +00:00
|
|
|
# https://github.com/ethereum/eth2.0-specs/blob/v0.11.1/specs/phase0/validator.md#aggregate-signature
|
2020-03-19 23:48:03 +00:00
|
|
|
func get_attestation_signature*(
|
2020-03-30 11:31:44 +00:00
|
|
|
fork: Fork, genesis_validators_root: Eth2Digest, attestation: AttestationData,
|
|
|
|
privkey: ValidatorPrivKey): ValidatorSig =
|
2020-03-19 23:48:03 +00:00
|
|
|
let
|
|
|
|
attestationRoot = hash_tree_root(attestation)
|
2020-03-30 11:31:44 +00:00
|
|
|
domain = get_domain(fork, DOMAIN_BEACON_ATTESTER,
|
|
|
|
attestation.target.epoch, genesis_validators_root)
|
2020-03-19 23:48:03 +00:00
|
|
|
signing_root = compute_signing_root(attestationRoot, domain)
|
|
|
|
|
|
|
|
blsSign(privKey, signing_root.data)
|