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.
|
|
|
|
|
2018-11-28 19:49:03 +00:00
|
|
|
# Uncategorized helper functions from the spec
|
|
|
|
|
|
|
|
import ./datatypes, ./digest, sequtils, math
|
2018-07-23 12:58:41 +00:00
|
|
|
|
2018-12-21 23:47:55 +00:00
|
|
|
# TODO spec candidate? there's bits in nim-ranges but that one has some API
|
|
|
|
# issues regarding bit endianess that need resolving..
|
|
|
|
func bitIsSet*(bitfield: openArray[byte], index: int): bool =
|
|
|
|
(bitfield[index div 8] shr byte(7 - (index mod 8))) mod 2 > 0'u8
|
|
|
|
|
|
|
|
func bitSet*(bitfield: var openArray[byte], index: int) =
|
|
|
|
bitfield[index div 8] = bitfield[index div 8] or 1'u8 shl (7 - (index mod 8))
|
|
|
|
|
2018-12-03 21:41:24 +00:00
|
|
|
func mod_get[T](arr: openarray[T], pos: Natural): T =
|
|
|
|
arr[pos mod arr.len]
|
|
|
|
|
2018-11-27 23:10:09 +00:00
|
|
|
func shuffle*[T](values: seq[T], seed: Eth2Digest): 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-27 23:10:09 +00:00
|
|
|
source = eth2hash 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-12-11 21:53:18 +00:00
|
|
|
func get_new_recent_block_roots*(old_block_roots: seq[Eth2Digest],
|
2018-11-23 19:42:47 +00:00
|
|
|
parent_slot, current_slot: int64,
|
2018-11-27 23:10:09 +00:00
|
|
|
parent_hash: Eth2Digest
|
|
|
|
): seq[Eth2Digest] =
|
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
|
2018-12-11 21:53:18 +00:00
|
|
|
result = old_block_roots[d .. ^1]
|
|
|
|
for _ in 0 ..< min(d, old_block_roots.len):
|
2018-08-21 16:21:45 +00:00
|
|
|
result.add parent_hash
|
|
|
|
|
2018-11-29 22:11:05 +00:00
|
|
|
func ceil_div8*(v: int): int = (v + 7) div 8 # TODO use a proper bitarray!
|
|
|
|
|
|
|
|
func repeat_hash*(v: Eth2Digest, n: SomeInteger): Eth2Digest =
|
2018-12-13 16:00:55 +00:00
|
|
|
# Spec version:
|
|
|
|
# if n == 0: v
|
|
|
|
# else: repeat_hash(eth2hash(v.data), n - 1)
|
|
|
|
# Nim is pretty bad at recursion though (max 2k levels / no tco), so:
|
|
|
|
result = v
|
|
|
|
var n = n
|
|
|
|
while n != 0:
|
|
|
|
result = eth2hash(result.data)
|
|
|
|
dec n
|
2018-12-03 21:41:24 +00:00
|
|
|
|
2018-12-14 16:12:39 +00:00
|
|
|
func get_shard_committees_index*(state: BeaconState, slot: uint64): uint64 =
|
2018-12-27 20:14:37 +00:00
|
|
|
## Warning: as it stands, this helper only works during state updates _after_
|
|
|
|
## state.slot has been incremented but before shard_committees_at_slots has
|
|
|
|
## been updated!
|
2018-12-03 21:41:24 +00:00
|
|
|
# TODO spec unsigned-unsafe here
|
2018-12-14 16:12:39 +00:00
|
|
|
doAssert slot + (state.slot mod EPOCH_LENGTH) + EPOCH_LENGTH > state.slot
|
|
|
|
slot + (state.slot mod EPOCH_LENGTH) + EPOCH_LENGTH - state.slot
|
2018-12-03 21:41:24 +00:00
|
|
|
|
2018-12-14 16:12:39 +00:00
|
|
|
proc get_shard_committees_at_slot*(
|
2018-12-06 02:07:04 +00:00
|
|
|
state: BeaconState, slot: uint64): seq[ShardCommittee] =
|
2018-12-14 16:12:39 +00:00
|
|
|
let index = state.get_shard_committees_index(slot)
|
2018-12-06 02:07:04 +00:00
|
|
|
state.shard_committees_at_slots[index]
|
2018-12-03 21:41:24 +00:00
|
|
|
|
2018-12-04 18:45:30 +00:00
|
|
|
func get_beacon_proposer_index*(state: BeaconState, slot: uint64): Uint24 =
|
2018-12-03 21:41:24 +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-12-19 04:36:10 +00:00
|
|
|
# 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
|
2018-12-14 16:12:39 +00:00
|
|
|
let idx = get_shard_committees_index(state, slot)
|
2018-12-28 16:51:40 +00:00
|
|
|
doAssert idx.int < state.shard_committees_at_slots.len
|
|
|
|
doAssert state.shard_committees_at_slots[idx].len > 0
|
2018-12-06 02:07:04 +00:00
|
|
|
state.shard_committees_at_slots[idx][0].committee.mod_get(slot)
|
2018-12-03 21:41:24 +00:00
|
|
|
|
2018-12-19 04:36:10 +00:00
|
|
|
func integer_squareroot*(n: SomeInteger): SomeInteger =
|
|
|
|
## The largest integer ``x`` such that ``x**2`` is less than ``n``.
|
2018-12-03 21:41:24 +00:00
|
|
|
var
|
|
|
|
x = n
|
|
|
|
y = (x + 1) div 2
|
|
|
|
while y < x:
|
|
|
|
x = y
|
|
|
|
y = (x + n div x) div 2
|
|
|
|
x
|
|
|
|
|
|
|
|
func get_fork_version*(fork_data: ForkData, slot: uint64): uint64 =
|
|
|
|
if slot < fork_data.fork_slot: fork_data.pre_fork_version
|
|
|
|
else: fork_data.post_fork_version
|
|
|
|
|
2018-12-11 17:55:45 +00:00
|
|
|
func get_domain*(
|
|
|
|
fork_data: ForkData, slot: uint64, domain_type: SignatureDomain): uint64 =
|
2018-12-03 21:41:24 +00:00
|
|
|
# TODO Slot overflow? Or is slot 32 bits for all intents and purposes?
|
2018-12-11 17:55:45 +00:00
|
|
|
(get_fork_version(fork_data, slot) shl 32) + domain_type.uint32
|
2018-12-04 18:45:30 +00:00
|
|
|
|
2018-12-05 13:07:42 +00:00
|
|
|
func is_power_of_2*(v: uint64): bool = (v and (v-1)) == 0
|
2018-12-11 17:55:45 +00:00
|
|
|
|
2018-12-13 16:00:55 +00:00
|
|
|
func merkle_root*(values: openArray[Eth2Digest]): Eth2Digest =
|
|
|
|
# o = [0] * len(values) + values
|
|
|
|
# for i in range(len(values)-1, 0, -1):
|
|
|
|
# o[i] = hash(o[i*2] + o[i*2+1])
|
|
|
|
# return o[1]
|
|
|
|
# TODO
|
2018-12-19 04:36:10 +00:00
|
|
|
discard
|
|
|
|
|
|
|
|
proc is_double_vote*(attestation_data_1: AttestationData,
|
|
|
|
attestation_data_2: AttestationData): bool =
|
|
|
|
## Assumes ``attestation_data_1`` is distinct from ``attestation_data_2``.
|
|
|
|
## Returns True if the provided ``AttestationData`` are slashable
|
|
|
|
## due to a 'double vote'.
|
2018-12-27 20:14:37 +00:00
|
|
|
## A double vote is when a validator votes for two attestations within the
|
|
|
|
## same slot - doing so means risking getting slashed.
|
2018-12-19 04:36:10 +00:00
|
|
|
attestation_data_1.slot == attestation_data_2.slot
|
|
|
|
|
|
|
|
proc is_surround_vote*(attestation_data_1: AttestationData,
|
|
|
|
attestation_data_2: AttestationData): bool =
|
|
|
|
## Assumes ``attestation_data_1`` is distinct from ``attestation_data_2``.
|
|
|
|
## Returns True if the provided ``AttestationData`` are slashable
|
|
|
|
## due to a 'surround vote'.
|
|
|
|
## Note: parameter order matters as this function only checks
|
|
|
|
## that ``attestation_data_1`` surrounds ``attestation_data_2``.
|
|
|
|
(
|
|
|
|
(attestation_data_1.justified_slot < attestation_data_2.justified_slot) and
|
|
|
|
(attestation_data_1.justified_slot + 1 == attestation_data_2.slot) and
|
|
|
|
(attestation_data_2.slot < attestation_data_1.slot)
|
|
|
|
)
|