2019-02-25 14:48:36 +00:00
|
|
|
# Copyright (c) 2018-2019 Status Research & Development GmbH
|
2018-11-23 22:44:43 +00:00
|
|
|
# Licensed and distributed under either of
|
|
|
|
# * MIT license (license terms in the root directory or at http://opensource.org/licenses/MIT).
|
|
|
|
# * Apache v2 license (license terms in the root directory or at http://www.apache.org/licenses/LICENSE-2.0).
|
|
|
|
# at your option. This file may not be copied, modified, or distributed except according to those terms.
|
|
|
|
|
|
|
|
# Helpers and functions pertaining to managing the validator set
|
|
|
|
|
2018-11-23 19:42:47 +00:00
|
|
|
import
|
2018-12-04 18:45:30 +00:00
|
|
|
options, nimcrypto, sequtils, math,
|
2019-02-05 19:21:18 +00:00
|
|
|
eth/common,
|
2018-12-03 21:41:24 +00:00
|
|
|
../ssz,
|
2018-11-28 19:49:03 +00:00
|
|
|
./crypto, ./datatypes, ./digest, ./helpers
|
2018-11-23 19:42:47 +00:00
|
|
|
|
2019-02-22 09:56:45 +00:00
|
|
|
# TODO remove once there are test vectors to check with directly
|
|
|
|
# https://github.com/ethereum/eth2.0-specs/blob/v0.3.0/specs/core/0_beacon-chain.md#get_permuted_index
|
|
|
|
func get_permuted_index_spec(index: uint64, list_size: uint64, seed: Eth2Digest): uint64 =
|
2019-02-13 10:26:32 +00:00
|
|
|
## Return `p(index)` in a pseudorandom permutation `p` of `0...list_size-1`
|
|
|
|
## with ``seed`` as entropy.
|
|
|
|
##
|
|
|
|
## Utilizes 'swap or not' shuffling found in
|
|
|
|
## https://link.springer.com/content/pdf/10.1007%2F978-3-642-32009-5_1.pdf
|
|
|
|
## See the 'generalized domain' algorithm on page 3.
|
|
|
|
result = index
|
|
|
|
var pivot_buffer: array[(32+1), byte]
|
|
|
|
var source_buffer: array[(32+1+4), byte]
|
|
|
|
|
|
|
|
for round in 0 ..< SHUFFLE_ROUND_COUNT:
|
|
|
|
pivot_buffer[0..31] = seed.data
|
|
|
|
let round_bytes1 = int_to_bytes1(round)[0]
|
|
|
|
pivot_buffer[32] = round_bytes1
|
|
|
|
|
|
|
|
let
|
|
|
|
pivot = bytes_to_int(eth2hash(pivot_buffer).data[0..7]) mod list_size
|
2019-02-22 22:47:06 +00:00
|
|
|
flip = (pivot - result) mod list_size
|
|
|
|
position = max(result, flip)
|
2019-02-13 10:26:32 +00:00
|
|
|
|
|
|
|
## Tradeoff between slicing (if reusing one larger buffer) and additional
|
|
|
|
## copies here of seed and `int_to_bytes1(round)`.
|
|
|
|
source_buffer[0..31] = seed.data
|
|
|
|
source_buffer[32] = round_bytes1
|
|
|
|
source_buffer[33..36] = int_to_bytes4(position div 256)
|
|
|
|
|
|
|
|
let
|
|
|
|
source = eth2hash(source_buffer).data
|
|
|
|
byte_value = source[(position mod 256) div 8]
|
|
|
|
bit = (byte_value shr (position mod 8)) mod 2
|
|
|
|
|
|
|
|
if bit != 0:
|
|
|
|
result = flip
|
|
|
|
|
2019-02-22 09:56:45 +00:00
|
|
|
# TODO remove once there are test vectors to check with directly
|
|
|
|
# https://github.com/ethereum/eth2.0-specs/blob/v0.3.0/specs/core/0_beacon-chain.md#get_shuffling
|
|
|
|
func get_shuffling_spec*(seed: Eth2Digest, validators: openArray[Validator],
|
|
|
|
epoch: Epoch): seq[seq[ValidatorIndex]] =
|
|
|
|
## Shuffles ``validators`` into crosslink committees seeded by ``seed`` and
|
|
|
|
## ``slot``.
|
|
|
|
## Returns a list of ``SLOTS_PER_EPOCH * committees_per_slot`` committees where
|
|
|
|
## each committee is itself a list of validator indices.
|
|
|
|
|
|
|
|
let
|
|
|
|
active_validator_indices = get_active_validator_indices(validators, epoch)
|
|
|
|
|
|
|
|
committees_per_epoch = get_epoch_committee_count(
|
|
|
|
len(active_validator_indices)).int
|
|
|
|
|
|
|
|
shuffled_active_validator_indices = mapIt(
|
|
|
|
active_validator_indices,
|
|
|
|
active_validator_indices[get_permuted_index_spec(
|
|
|
|
it, len(active_validator_indices).uint64, seed).int])
|
|
|
|
|
|
|
|
# Split the shuffled list into committees_per_epoch pieces
|
|
|
|
result = split(shuffled_active_validator_indices, committees_per_epoch)
|
|
|
|
assert result.len() == committees_per_epoch # what split should do..
|
|
|
|
|
2019-02-20 01:33:58 +00:00
|
|
|
# https://github.com/ethereum/eth2.0-specs/blob/v0.3.0/specs/core/0_beacon-chain.md#get_shuffling
|
2019-02-22 22:47:06 +00:00
|
|
|
# https://github.com/ethereum/eth2.0-specs/blob/v0.3.0/specs/core/0_beacon-chain.md#get_permuted_index
|
2019-01-16 10:21:06 +00:00
|
|
|
func get_shuffling*(seed: Eth2Digest,
|
2019-01-17 18:27:11 +00:00
|
|
|
validators: openArray[Validator],
|
2019-02-20 01:33:58 +00:00
|
|
|
epoch: Epoch
|
2019-01-29 04:15:00 +00:00
|
|
|
): seq[seq[ValidatorIndex]] =
|
2019-02-22 09:56:45 +00:00
|
|
|
## Via https://github.com/protolambda/eth2-shuffle/blob/master/shuffle.go
|
2019-02-13 10:26:32 +00:00
|
|
|
## Shuffles ``validators`` into crosslink committees seeded by ``seed`` and
|
|
|
|
## ``slot``.
|
2019-02-22 22:47:06 +00:00
|
|
|
## Returns a list of ``SLOTS_PER_EPOCH * committees_per_slot`` committees
|
|
|
|
## where each committee is itself a list of validator indices.
|
|
|
|
##
|
|
|
|
## Invert the inner/outer loops from the spec, essentially. Most useful
|
|
|
|
## hash result re-use occurs within a round.
|
2018-11-23 22:44:43 +00:00
|
|
|
let
|
2019-01-29 03:22:22 +00:00
|
|
|
active_validator_indices = get_active_validator_indices(validators, epoch)
|
2019-02-22 09:56:45 +00:00
|
|
|
list_size = active_validator_indices.len.uint64
|
2019-02-22 22:47:06 +00:00
|
|
|
committees_per_epoch = get_epoch_committee_count(
|
|
|
|
len(active_validator_indices)).int
|
2019-02-22 09:56:45 +00:00
|
|
|
var
|
2019-02-22 22:47:06 +00:00
|
|
|
# Share these buffers.
|
2019-02-22 09:56:45 +00:00
|
|
|
pivot_buffer: array[(32+1), byte]
|
2019-02-22 22:47:06 +00:00
|
|
|
source_buffer: array[(32+1+4), byte]
|
2019-02-22 22:59:10 +00:00
|
|
|
shuffled_active_validator_indices = mapIt(
|
|
|
|
0 ..< list_size.int, it.ValidatorIndex)
|
|
|
|
sources = repeat(Eth2Digest(), max(list_size div 256, 1))
|
2018-11-23 22:44:43 +00:00
|
|
|
|
2019-02-22 22:47:06 +00:00
|
|
|
## The pivot's a function of seed and round only.
|
|
|
|
## This doesn't change across rounds.
|
2019-02-22 09:56:45 +00:00
|
|
|
pivot_buffer[0..31] = seed.data
|
2019-02-22 22:47:06 +00:00
|
|
|
source_buffer[0..31] = seed.data
|
2019-02-22 09:56:45 +00:00
|
|
|
|
|
|
|
for round in 0 ..< SHUFFLE_ROUND_COUNT:
|
|
|
|
let round_bytes1 = int_to_bytes1(round)[0]
|
|
|
|
pivot_buffer[32] = round_bytes1
|
2019-02-22 22:47:06 +00:00
|
|
|
source_buffer[32] = round_bytes1
|
2019-02-22 09:56:45 +00:00
|
|
|
|
2019-02-22 22:47:06 +00:00
|
|
|
# Only one pivot per round.
|
|
|
|
let pivot = bytes_to_int(eth2hash(pivot_buffer).data[0..7]) mod list_size
|
2018-11-23 22:44:43 +00:00
|
|
|
|
2019-02-22 22:47:06 +00:00
|
|
|
## Only need to run, per round, position div 256 hashes, so precalculate
|
|
|
|
## them. This consumes memory, but for low-memory devices, it's possible
|
|
|
|
## to mitigate by some light LRU caching and similar.
|
|
|
|
for reduced_position in 0 ..< list_size.int div 256:
|
|
|
|
source_buffer[33..36] = int_to_bytes4(reduced_position.uint64)
|
|
|
|
sources[reduced_position] = eth2hash(source_buffer)
|
|
|
|
|
|
|
|
## Iterate over all the indices. This was in get_permuted_index, but large
|
|
|
|
## efficiency gains exist in caching and re-using data.
|
|
|
|
for index in 0 ..< list_size.int:
|
|
|
|
let
|
|
|
|
cur_idx_permutated = shuffled_active_validator_indices[index]
|
|
|
|
flip = (pivot - cur_idx_permutated.uint64) mod list_size
|
|
|
|
position = max(cur_idx_permutated, flip.int)
|
|
|
|
|
|
|
|
let
|
|
|
|
source = sources[position div 256].data
|
|
|
|
byte_value = source[(position mod 256) div 8]
|
|
|
|
bit = (byte_value shr (position mod 8)) mod 2
|
|
|
|
|
|
|
|
if bit != 0:
|
|
|
|
shuffled_active_validator_indices[index] = flip.ValidatorIndex
|
2018-11-23 22:44:43 +00:00
|
|
|
|
2019-01-29 03:22:22 +00:00
|
|
|
# Split the shuffled list into committees_per_epoch pieces
|
|
|
|
result = split(shuffled_active_validator_indices, committees_per_epoch)
|
|
|
|
assert result.len() == committees_per_epoch # what split should do..
|
2018-12-03 21:41:24 +00:00
|
|
|
|
2019-02-20 01:33:58 +00:00
|
|
|
# https://github.com/ethereum/eth2.0-specs/blob/v0.3.0/specs/core/0_beacon-chain.md#get_previous_epoch_committee_count
|
2019-01-29 03:22:22 +00:00
|
|
|
func get_previous_epoch_committee_count(state: BeaconState): uint64 =
|
2019-02-13 10:26:32 +00:00
|
|
|
# Return the number of committees in the previous epoch of the given ``state``.
|
2019-01-23 01:50:51 +00:00
|
|
|
let previous_active_validators = get_active_validator_indices(
|
|
|
|
state.validator_registry,
|
2019-02-19 23:07:56 +00:00
|
|
|
state.previous_shuffling_epoch,
|
2019-01-23 01:50:51 +00:00
|
|
|
)
|
2019-01-29 03:22:22 +00:00
|
|
|
get_epoch_committee_count(len(previous_active_validators))
|
2019-01-23 01:50:51 +00:00
|
|
|
|
2019-02-20 01:33:58 +00:00
|
|
|
# https://github.com/ethereum/eth2.0-specs/blob/v0.3.0/specs/core/0_beacon-chain.md#get_next_epoch_committee_count
|
2019-02-07 19:27:13 +00:00
|
|
|
func get_next_epoch_committee_count(state: BeaconState): uint64 =
|
2019-02-20 01:33:58 +00:00
|
|
|
## Return the number of committees in the next epoch of the given ``state``.
|
2019-02-07 19:27:13 +00:00
|
|
|
let next_active_validators = get_active_validator_indices(
|
|
|
|
state.validator_registry,
|
|
|
|
get_current_epoch(state) + 1,
|
|
|
|
)
|
|
|
|
get_epoch_committee_count(len(next_active_validators))
|
|
|
|
|
2019-02-20 01:33:58 +00:00
|
|
|
# https://github.com/ethereum/eth2.0-specs/blob/v0.3.0/specs/core/0_beacon-chain.md#get_previous_epoch
|
|
|
|
func get_previous_epoch(state: BeaconState): Epoch =
|
2019-02-11 15:10:46 +00:00
|
|
|
## Return the previous epoch of the given ``state``.
|
|
|
|
## If the current epoch is ``GENESIS_EPOCH``, return ``GENESIS_EPOCH``.
|
|
|
|
let current_epoch = get_current_epoch(state)
|
|
|
|
if current_epoch == GENESIS_EPOCH:
|
|
|
|
GENESIS_EPOCH
|
|
|
|
else:
|
|
|
|
current_epoch - 1
|
|
|
|
|
2019-02-20 01:33:58 +00:00
|
|
|
# https://github.com/ethereum/eth2.0-specs/blob/v0.3.0/specs/core/0_beacon-chain.md#get_crosslink_committees_at_slot
|
|
|
|
func get_crosslink_committees_at_slot*(state: BeaconState, slot: Slot,
|
2019-02-07 19:27:13 +00:00
|
|
|
registry_change: bool = false):
|
2019-02-06 19:37:25 +00:00
|
|
|
seq[CrosslinkCommittee] =
|
2019-01-23 01:50:51 +00:00
|
|
|
## Returns the list of ``(committee, shard)`` tuples for the ``slot``.
|
2019-02-07 19:27:13 +00:00
|
|
|
##
|
|
|
|
## Note: There are two possible shufflings for crosslink committees for a
|
|
|
|
## ``slot`` in the next epoch -- with and without a `registry_change`
|
2019-01-23 01:50:51 +00:00
|
|
|
|
2019-01-29 03:22:22 +00:00
|
|
|
let
|
|
|
|
epoch = slot_to_epoch(slot)
|
|
|
|
current_epoch = get_current_epoch(state)
|
2019-02-11 15:10:46 +00:00
|
|
|
previous_epoch = get_previous_epoch(state)
|
2019-01-29 03:22:22 +00:00
|
|
|
next_epoch = current_epoch + 1
|
|
|
|
|
2019-02-15 16:33:32 +00:00
|
|
|
assert previous_epoch <= epoch,
|
|
|
|
"Previous epoch: " & $humaneEpochNum(previous_epoch) &
|
|
|
|
", epoch: " & $humaneEpochNum(epoch) &
|
|
|
|
", Next epoch: " & $humaneEpochNum(next_epoch)
|
|
|
|
|
|
|
|
assert epoch <= next_epoch,
|
|
|
|
"Previous epoch: " & $humaneEpochNum(previous_epoch) &
|
|
|
|
", epoch: " & $humaneEpochNum(epoch) &
|
|
|
|
", Next epoch: " & $humaneEpochNum(next_epoch)
|
2019-02-11 15:29:21 +00:00
|
|
|
# TODO - Hack: used to be "epoch < next_epoch" (exlusive interval)
|
2019-02-07 19:31:23 +00:00
|
|
|
# until https://github.com/status-im/nim-beacon-chain/issues/97
|
2019-01-29 03:22:22 +00:00
|
|
|
|
2019-02-07 12:03:02 +00:00
|
|
|
template get_epoch_specific_params(): auto =
|
2019-01-29 03:22:22 +00:00
|
|
|
if epoch < current_epoch:
|
|
|
|
let
|
2019-02-13 10:26:32 +00:00
|
|
|
## TODO this might be pointless copying; RVO exists, but not sure if
|
|
|
|
## Nim optimizes out both copies per. Could directly construct tuple
|
|
|
|
## but this hews closer to spec helper code.
|
2019-01-29 03:22:22 +00:00
|
|
|
committees_per_epoch = get_previous_epoch_committee_count(state)
|
2019-02-19 23:07:56 +00:00
|
|
|
seed = state.previous_shuffling_seed
|
|
|
|
shuffling_epoch = state.previous_shuffling_epoch
|
|
|
|
shuffling_start_shard = state.previous_shuffling_start_shard
|
2019-01-29 03:22:22 +00:00
|
|
|
(committees_per_epoch, seed, shuffling_epoch, shuffling_start_shard)
|
2019-02-07 19:27:13 +00:00
|
|
|
elif epoch == current_epoch:
|
2019-01-29 03:22:22 +00:00
|
|
|
let
|
|
|
|
committees_per_epoch = get_current_epoch_committee_count(state)
|
2019-02-19 23:07:56 +00:00
|
|
|
seed = state.current_shuffling_seed
|
|
|
|
shuffling_epoch = state.current_shuffling_epoch
|
|
|
|
shuffling_start_shard = state.current_shuffling_start_shard
|
2019-01-29 03:22:22 +00:00
|
|
|
(committees_per_epoch, seed, shuffling_epoch, shuffling_start_shard)
|
2019-02-07 19:27:13 +00:00
|
|
|
else:
|
|
|
|
assert epoch == next_epoch
|
|
|
|
|
|
|
|
let
|
|
|
|
current_committees_per_epoch = get_current_epoch_committee_count(state)
|
|
|
|
committees_per_epoch = get_next_epoch_committee_count(state)
|
|
|
|
shuffling_epoch = next_epoch
|
|
|
|
|
|
|
|
epochs_since_last_registry_update = current_epoch - state.validator_registry_update_epoch
|
|
|
|
condition = epochs_since_last_registry_update > 1'u64 and
|
|
|
|
is_power_of_2(epochs_since_last_registry_update)
|
|
|
|
seed = if registry_change or condition:
|
|
|
|
generate_seed(state, next_epoch)
|
|
|
|
else:
|
2019-02-19 23:07:56 +00:00
|
|
|
state.current_shuffling_seed
|
2019-02-07 19:27:13 +00:00
|
|
|
shuffling_start_shard =
|
|
|
|
if registry_change:
|
2019-02-19 23:07:56 +00:00
|
|
|
(state.current_shuffling_start_shard +
|
2019-02-07 19:27:13 +00:00
|
|
|
current_committees_per_epoch) mod SHARD_COUNT
|
|
|
|
else:
|
2019-02-19 23:07:56 +00:00
|
|
|
state.current_shuffling_start_shard
|
2019-02-07 19:27:13 +00:00
|
|
|
(committees_per_epoch, seed, shuffling_epoch, shuffling_start_shard)
|
2019-01-29 03:22:22 +00:00
|
|
|
|
2019-02-07 12:03:02 +00:00
|
|
|
let (committees_per_epoch, seed, shuffling_epoch, shuffling_start_shard) =
|
|
|
|
get_epoch_specific_params()
|
2019-01-29 03:22:22 +00:00
|
|
|
|
|
|
|
let
|
|
|
|
shuffling = get_shuffling(
|
|
|
|
seed,
|
|
|
|
state.validator_registry,
|
|
|
|
shuffling_epoch,
|
|
|
|
)
|
2019-02-20 01:33:58 +00:00
|
|
|
offset = slot mod SLOTS_PER_EPOCH
|
|
|
|
committees_per_slot = committees_per_epoch div SLOTS_PER_EPOCH
|
2019-01-29 03:22:22 +00:00
|
|
|
slot_start_shard = (shuffling_start_shard + committees_per_slot * offset) mod SHARD_COUNT
|
|
|
|
|
|
|
|
for i in 0 ..< committees_per_slot.int:
|
|
|
|
result.add (
|
|
|
|
shuffling[(committees_per_slot * offset + i.uint64).int],
|
|
|
|
(slot_start_shard + i.uint64) mod SHARD_COUNT
|
|
|
|
)
|
2019-01-26 19:32:10 +00:00
|
|
|
|
2019-02-20 20:35:27 +00:00
|
|
|
# https://github.com/ethereum/eth2.0-specs/blob/v0.3.0/specs/core/0_beacon-chain.md#get_beacon_proposer_index
|
|
|
|
func get_beacon_proposer_index*(state: BeaconState, slot: Slot): ValidatorIndex =
|
2019-01-26 19:32:10 +00:00
|
|
|
## From Casper RPJ mini-spec:
|
|
|
|
## When slot i begins, validator Vidx is expected
|
|
|
|
## to create ("propose") a block, which contains a pointer to some parent block
|
|
|
|
## that they perceive as the "head of the chain",
|
|
|
|
## and includes all of the **attestations** that they know about
|
|
|
|
## that have not yet been included into that chain.
|
|
|
|
##
|
|
|
|
## idx in Vidx == p(i mod N), pi being a random permutation of validators indices (i.e. a committee)
|
|
|
|
## Returns the beacon proposer index for the ``slot``.
|
|
|
|
# TODO this index is invalid outside of the block state transition function
|
|
|
|
# because presently, `state.slot += 1` happens before this function
|
|
|
|
# is called - see also testutil.getNextBeaconProposerIndex
|
2019-01-30 08:41:07 +00:00
|
|
|
let (first_committee, _) = get_crosslink_committees_at_slot(state, slot)[0]
|
2019-02-07 21:14:08 +00:00
|
|
|
let idx = int(slot mod uint64(first_committee.len))
|
2019-02-07 15:58:39 +00:00
|
|
|
first_committee[idx]
|