2018-07-23 12:58:41 +00:00
|
|
|
# beacon_chain
|
|
|
|
# Copyright (c) 2018 Status Research & Development GmbH
|
|
|
|
# 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.
|
|
|
|
|
|
|
|
# Helper functions
|
2018-08-17 16:21:25 +00:00
|
|
|
import ../datatypes, sequtils, nimcrypto, math
|
2018-07-23 12:58:41 +00:00
|
|
|
|
2018-11-23 19:42:47 +00:00
|
|
|
func shuffle*[T](values: seq[T], seed: Blake2_256_Digest): seq[T] =
|
2018-11-16 00:54:36 +00:00
|
|
|
## Returns the shuffled ``values`` with seed as entropy.
|
|
|
|
## TODO: this calls out for tests, but I odn't particularly trust spec
|
|
|
|
## right now.
|
2018-07-23 12:58:41 +00:00
|
|
|
|
2018-11-16 00:54:36 +00:00
|
|
|
let values_count = values.len
|
2018-07-23 12:58:41 +00:00
|
|
|
|
2018-11-23 19:42:47 +00:00
|
|
|
const
|
|
|
|
# Entropy is consumed from the seed in 3-byte (24 bit) chunks.
|
|
|
|
rand_bytes = 3
|
|
|
|
# The highest possible result of the RNG.
|
|
|
|
rand_max = 2^(rand_bytes * 8) - 1
|
2018-11-16 00:54:36 +00:00
|
|
|
|
|
|
|
# The range of the RNG places an upper-bound on the size of the list that
|
|
|
|
# may be shuffled. It is a logic error to supply an oversized list.
|
|
|
|
assert values_count < rand_max
|
|
|
|
|
2018-11-23 19:42:47 +00:00
|
|
|
result = values
|
|
|
|
var
|
|
|
|
source = seed
|
|
|
|
index = 0
|
|
|
|
while index < values_count - 1:
|
|
|
|
# Re-hash the `source` to obtain a new pattern of bytes.
|
2018-11-26 16:41:03 +00:00
|
|
|
source = blake2_256.digest source.data
|
2018-11-23 22:44:43 +00:00
|
|
|
|
2018-11-23 19:42:47 +00:00
|
|
|
# Iterate through the `source` bytes in 3-byte chunks.
|
2018-07-23 12:58:41 +00:00
|
|
|
for pos in countup(0, 29, 3):
|
2018-11-23 19:42:47 +00:00
|
|
|
let remaining = values_count - index
|
2018-11-16 00:54:36 +00:00
|
|
|
if remaining == 1:
|
2018-07-23 12:58:41 +00:00
|
|
|
break
|
|
|
|
|
2018-11-16 00:54:36 +00:00
|
|
|
# Read 3-bytes of `source` as a 24-bit big-endian integer.
|
2018-11-23 19:42:47 +00:00
|
|
|
let sample_from_source =
|
|
|
|
source.data[pos].Uint24 shl 16 or
|
|
|
|
source.data[pos+1].Uint24 shl 8 or
|
|
|
|
source.data[pos+2].Uint24
|
2018-07-23 12:58:41 +00:00
|
|
|
|
2018-11-16 00:54:36 +00:00
|
|
|
# Sample values greater than or equal to `sample_max` will cause
|
|
|
|
# modulo bias when mapped into the `remaining` range.
|
|
|
|
let sample_max = rand_max - rand_max mod remaining
|
|
|
|
|
|
|
|
# Perform a swap if the consumed entropy will not cause modulo bias.
|
|
|
|
if sample_from_source < sample_max:
|
2018-11-23 19:42:47 +00:00
|
|
|
# Select a replacement index for the current index.
|
|
|
|
let replacement_position = sample_from_source mod remaining + index
|
|
|
|
swap result[index], result[replacement_position]
|
|
|
|
inc index
|
2018-07-23 14:22:37 +00:00
|
|
|
|
2018-11-23 19:42:47 +00:00
|
|
|
func split*[T](lst: openArray[T], N: Positive): seq[seq[T]] =
|
2018-11-23 22:44:43 +00:00
|
|
|
## split lst in N pieces, with each piece having `len(lst) div N` or
|
|
|
|
## `len(lst) div N + 1` pieces
|
2018-08-17 16:21:25 +00:00
|
|
|
# TODO: implement as an iterator
|
|
|
|
result = newSeq[seq[T]](N)
|
|
|
|
for i in 0 ..< N:
|
|
|
|
result[i] = lst[lst.len * i div N ..< lst.len * (i+1) div N] # TODO: avoid alloc via toOpenArray
|
|
|
|
|
2018-11-16 00:54:36 +00:00
|
|
|
func get_shards_and_committees_for_slot*(state: BeaconState,
|
2018-11-23 19:42:47 +00:00
|
|
|
slot: uint64
|
|
|
|
): seq[ShardAndCommittee] =
|
2018-11-16 00:54:36 +00:00
|
|
|
let earliest_slot_in_array = state.last_state_recalculation_slot - CYCLE_LENGTH
|
|
|
|
assert earliest_slot_in_array <= slot
|
|
|
|
assert slot < earliest_slot_in_array + CYCLE_LENGTH * 2
|
2018-08-17 16:21:25 +00:00
|
|
|
|
2018-11-23 19:42:47 +00:00
|
|
|
return state.shard_and_committee_for_slots[int slot - earliest_slot_in_array]
|
2018-11-09 09:34:30 +00:00
|
|
|
# TODO, slot is a uint64; will be an issue on int32 arch.
|
2018-08-17 16:21:25 +00:00
|
|
|
# Clarify with EF if light clients will need the beacon chain
|
|
|
|
|
2018-11-16 00:54:36 +00:00
|
|
|
func get_block_hash*(state: BeaconState, current_block: BeaconBlock, slot: int): Blake2_256_Digest =
|
|
|
|
let earliest_slot_in_array = current_block.slot.int - state.recent_block_hashes.len
|
|
|
|
assert earliest_slot_in_array <= slot
|
|
|
|
assert slot < current_block.slot.int
|
2018-08-17 16:21:25 +00:00
|
|
|
|
2018-11-16 00:54:36 +00:00
|
|
|
return state.recent_block_hashes[slot - earliest_slot_in_array]
|
2018-08-21 16:21:45 +00:00
|
|
|
|
2018-11-23 19:42:47 +00:00
|
|
|
func get_new_recent_block_hashes*(old_block_hashes: seq[Blake2_256_Digest],
|
|
|
|
parent_slot, current_slot: int64,
|
|
|
|
parent_hash: Blake2_256_Digest
|
|
|
|
): seq[Blake2_256_Digest] =
|
2018-08-21 16:21:45 +00:00
|
|
|
|
|
|
|
# Should throw for `current_slot - CYCLE_LENGTH * 2 - 1` according to spec comment
|
|
|
|
let d = current_slot - parent_slot
|
|
|
|
result = old_block_hashes[d .. ^1]
|
|
|
|
for _ in 0 ..< min(d, old_block_hashes.len):
|
|
|
|
result.add parent_hash
|
|
|
|
|
2018-11-23 19:42:47 +00:00
|
|
|
func get_beacon_proposer*(state: BeaconState, slot: uint64): ValidatorRecord =
|
2018-11-26 15:44:49 +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)
|
2018-11-23 19:42:47 +00:00
|
|
|
let
|
|
|
|
first_committee = get_shards_and_committees_for_slot(state, slot)[0].committee
|
|
|
|
index = first_committee[(slot mod len(first_committee).uint64).int]
|
|
|
|
state.validators[index]
|