2022-06-16 06:50:29 +00:00
|
|
|
# Nimbus
|
|
|
|
# Copyright (c) 2022 Status Research & Development GmbH
|
|
|
|
# Licensed and distributed under either of
|
|
|
|
# * 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).
|
|
|
|
# at your option. This file may not be copied, modified, or distributed except according to those terms.
|
|
|
|
|
|
|
|
{.push raises: [Defect].}
|
|
|
|
|
|
|
|
import
|
2022-08-01 19:00:21 +00:00
|
|
|
std/hashes,
|
2022-09-03 18:15:35 +00:00
|
|
|
eth/common/eth_types_rlp,
|
2022-06-16 06:50:29 +00:00
|
|
|
ssz_serialization, ssz_serialization/[proofs, merkleization],
|
|
|
|
../../common/common_types,
|
|
|
|
./history_content
|
|
|
|
|
2022-10-10 10:59:55 +00:00
|
|
|
export ssz_serialization, merkleization, proofs, eth_types_rlp
|
2022-06-16 06:50:29 +00:00
|
|
|
|
2022-08-24 20:12:56 +00:00
|
|
|
# Header Accumulator, as per specification:
|
|
|
|
# https://github.com/ethereum/portal-network-specs/blob/master/history-network.md#the-header-accumulator
|
2022-10-10 10:59:55 +00:00
|
|
|
# But with the adjustment to finish the accumulator at merge point.
|
2022-06-16 06:50:29 +00:00
|
|
|
|
|
|
|
const
|
|
|
|
epochSize* = 8192 # blocks
|
2022-10-10 10:59:55 +00:00
|
|
|
# Allow this to be adjusted at compile time. If more constants need to be
|
|
|
|
# adjusted we can add some presets file.
|
|
|
|
mergeBlockNumber* {.intdefine.}: uint64 = 15537394
|
|
|
|
|
|
|
|
# Note: This is like a ceil(mergeBlockNumber / epochSize)
|
|
|
|
# Could use ceilDiv(mergeBlockNumber, epochSize) in future versions
|
|
|
|
preMergeEpochs* = (mergeBlockNumber + epochSize - 1) div epochSize
|
2022-06-16 06:50:29 +00:00
|
|
|
|
|
|
|
type
|
|
|
|
HeaderRecord* = object
|
|
|
|
blockHash*: BlockHash
|
|
|
|
totalDifficulty*: UInt256
|
|
|
|
|
|
|
|
EpochAccumulator* = List[HeaderRecord, epochSize]
|
|
|
|
|
|
|
|
Accumulator* = object
|
2022-10-10 10:59:55 +00:00
|
|
|
historicalEpochs*: List[Bytes32, int(preMergeEpochs)]
|
2022-06-16 06:50:29 +00:00
|
|
|
currentEpoch*: EpochAccumulator
|
|
|
|
|
2022-10-10 10:59:55 +00:00
|
|
|
FinishedAccumulator* = object
|
|
|
|
historicalEpochs*: List[Bytes32, int(preMergeEpochs)]
|
2022-08-04 06:34:53 +00:00
|
|
|
|
2022-10-10 10:59:55 +00:00
|
|
|
BlockEpochData* = object
|
|
|
|
epochHash*: Bytes32
|
|
|
|
blockRelativeIndex*: uint64
|
2022-08-04 06:34:53 +00:00
|
|
|
|
2022-08-24 20:12:56 +00:00
|
|
|
func init*(T: type Accumulator): T =
|
|
|
|
Accumulator(
|
2022-10-10 10:59:55 +00:00
|
|
|
historicalEpochs: List[Bytes32, int(preMergeEpochs)].init(@[]),
|
2022-08-24 20:12:56 +00:00
|
|
|
currentEpoch: EpochAccumulator.init(@[])
|
2022-08-04 06:34:53 +00:00
|
|
|
)
|
|
|
|
|
2022-10-10 10:59:55 +00:00
|
|
|
# TODO:
|
|
|
|
# Could probably also make this work with TTD instead of merge block number.
|
|
|
|
func updateAccumulator*(
|
|
|
|
a: var Accumulator, header: BlockHeader) =
|
|
|
|
doAssert(header.blockNumber.truncate(uint64) < mergeBlockNumber,
|
|
|
|
"No post merge blocks for header accumulator")
|
|
|
|
|
2022-06-16 06:50:29 +00:00
|
|
|
let lastTotalDifficulty =
|
|
|
|
if a.currentEpoch.len() == 0:
|
|
|
|
0.stuint(256)
|
|
|
|
else:
|
|
|
|
a.currentEpoch[^1].totalDifficulty
|
|
|
|
|
2022-10-10 10:59:55 +00:00
|
|
|
# TODO: It is a bit annoying to require an extra header + update call to
|
|
|
|
# finish an epoch. However, if we were to move this after adding the
|
|
|
|
# `HeaderRecord`, there would be no way to get the current total difficulty,
|
|
|
|
# unless another field is introduced in the `Accumulator` object.
|
2022-06-16 06:50:29 +00:00
|
|
|
if a.currentEpoch.len() == epochSize:
|
|
|
|
let epochHash = hash_tree_root(a.currentEpoch)
|
|
|
|
|
|
|
|
doAssert(a.historicalEpochs.add(epochHash.data))
|
|
|
|
a.currentEpoch = EpochAccumulator.init(@[])
|
|
|
|
|
|
|
|
let headerRecord =
|
|
|
|
HeaderRecord(
|
|
|
|
blockHash: header.blockHash(),
|
|
|
|
totalDifficulty: lastTotalDifficulty + header.difficulty)
|
|
|
|
|
|
|
|
let res = a.currentEpoch.add(headerRecord)
|
|
|
|
doAssert(res, "Can't fail because of currentEpoch length check")
|
|
|
|
|
2022-10-10 10:59:55 +00:00
|
|
|
func isFinished*(a: Accumulator): bool =
|
|
|
|
a.historicalEpochs.len() == (int)(preMergeEpochs)
|
|
|
|
|
|
|
|
func finishAccumulator*(a: var Accumulator) =
|
|
|
|
let epochHash = hash_tree_root(a.currentEpoch)
|
|
|
|
|
|
|
|
doAssert(a.historicalEpochs.add(epochHash.data))
|
|
|
|
|
2022-08-01 19:00:21 +00:00
|
|
|
func hash*(a: Accumulator): hashes.Hash =
|
|
|
|
# TODO: This is used for the CountTable but it will be expensive.
|
|
|
|
hash(hash_tree_root(a).data)
|
2022-06-16 06:50:29 +00:00
|
|
|
|
2022-08-01 19:00:21 +00:00
|
|
|
func buildAccumulator*(headers: seq[BlockHeader]): Accumulator =
|
2022-06-16 06:50:29 +00:00
|
|
|
var accumulator: Accumulator
|
|
|
|
for header in headers:
|
|
|
|
updateAccumulator(accumulator, header)
|
|
|
|
|
2022-10-10 10:59:55 +00:00
|
|
|
if header.blockNumber.truncate(uint64) == mergeBlockNumber - 1:
|
|
|
|
finishAccumulator(accumulator)
|
|
|
|
|
2022-08-01 19:00:21 +00:00
|
|
|
accumulator
|
2022-06-16 06:50:29 +00:00
|
|
|
|
2022-08-01 19:00:21 +00:00
|
|
|
func buildAccumulatorData*(headers: seq[BlockHeader]):
|
|
|
|
seq[(ContentKey, EpochAccumulator)] =
|
2022-06-16 06:50:29 +00:00
|
|
|
var accumulator: Accumulator
|
2022-08-01 19:00:21 +00:00
|
|
|
var epochAccumulators: seq[(ContentKey, EpochAccumulator)]
|
2022-06-16 06:50:29 +00:00
|
|
|
for header in headers:
|
|
|
|
updateAccumulator(accumulator, header)
|
|
|
|
|
2022-10-10 10:59:55 +00:00
|
|
|
# TODO: By allowing updateAccumulator and finishAccumulator to return
|
|
|
|
# optionally the finished epoch accumulators we would avoid double
|
|
|
|
# hash_tree_root computations.
|
2022-08-01 19:00:21 +00:00
|
|
|
if accumulator.currentEpoch.len() == epochSize:
|
|
|
|
let
|
|
|
|
rootHash = accumulator.currentEpoch.hash_tree_root()
|
|
|
|
key = ContentKey(
|
|
|
|
contentType: epochAccumulator,
|
|
|
|
epochAccumulatorKey: EpochAccumulatorKey(
|
|
|
|
epochHash: rootHash))
|
2022-06-16 06:50:29 +00:00
|
|
|
|
2022-08-01 19:00:21 +00:00
|
|
|
epochAccumulators.add((key, accumulator.currentEpoch))
|
2022-06-16 06:50:29 +00:00
|
|
|
|
2022-10-10 10:59:55 +00:00
|
|
|
if header.blockNumber.truncate(uint64) == mergeBlockNumber - 1:
|
|
|
|
let
|
|
|
|
rootHash = accumulator.currentEpoch.hash_tree_root()
|
|
|
|
key = ContentKey(
|
|
|
|
contentType: epochAccumulator,
|
|
|
|
epochAccumulatorKey: EpochAccumulatorKey(
|
|
|
|
epochHash: rootHash))
|
|
|
|
|
|
|
|
epochAccumulators.add((key, accumulator.currentEpoch))
|
|
|
|
|
|
|
|
finishAccumulator(accumulator)
|
|
|
|
|
2022-08-01 19:00:21 +00:00
|
|
|
epochAccumulators
|
2022-06-23 19:00:59 +00:00
|
|
|
|
|
|
|
## Calls and helper calls for building header proofs and verifying headers
|
|
|
|
## against the Accumulator and the header proofs.
|
|
|
|
|
2022-08-24 20:12:56 +00:00
|
|
|
func getEpochIndex*(blockNumber: uint64): uint64 =
|
|
|
|
blockNumber div epochSize
|
2022-06-23 19:00:59 +00:00
|
|
|
|
2022-08-01 19:00:21 +00:00
|
|
|
func getEpochIndex*(header: BlockHeader): uint64 =
|
2022-08-04 06:34:53 +00:00
|
|
|
let blockNumber = header.blockNumber.truncate(uint64)
|
2022-06-23 19:00:59 +00:00
|
|
|
## Get the index for the historical epochs
|
2022-08-24 20:12:56 +00:00
|
|
|
getEpochIndex(blockNumber)
|
2022-08-04 06:34:53 +00:00
|
|
|
|
2022-08-24 20:12:56 +00:00
|
|
|
func getHeaderRecordIndex(blockNumber: uint64, epochIndex: uint64): uint64 =
|
2022-08-04 06:34:53 +00:00
|
|
|
## Get the relative header index for the epoch accumulator
|
2022-08-24 20:12:56 +00:00
|
|
|
uint64(blockNumber - epochIndex * epochSize)
|
2022-06-23 19:00:59 +00:00
|
|
|
|
2022-08-01 19:00:21 +00:00
|
|
|
func getHeaderRecordIndex*(header: BlockHeader, epochIndex: uint64): uint64 =
|
2022-06-23 19:00:59 +00:00
|
|
|
## Get the relative header index for the epoch accumulator
|
2022-08-24 20:12:56 +00:00
|
|
|
getHeaderRecordIndex(header.blockNumber.truncate(uint64), epochIndex)
|
2022-06-23 19:00:59 +00:00
|
|
|
|
2022-10-10 10:59:55 +00:00
|
|
|
func isPreMerge*(blockNumber: uint64): bool =
|
|
|
|
blockNumber < mergeBlockNumber
|
|
|
|
|
|
|
|
func isPreMerge*(header: BlockHeader): bool =
|
|
|
|
isPreMerge(header.blockNumber.truncate(uint64))
|
|
|
|
|
2022-06-23 19:00:59 +00:00
|
|
|
func verifyProof*(
|
2022-08-24 20:12:56 +00:00
|
|
|
a: Accumulator, header: BlockHeader, proof: openArray[Digest]): bool =
|
2022-06-23 19:00:59 +00:00
|
|
|
let
|
|
|
|
epochIndex = getEpochIndex(header)
|
|
|
|
epochAccumulatorHash = Digest(data: a.historicalEpochs[epochIndex])
|
|
|
|
|
|
|
|
leave = hash_tree_root(header.blockHash())
|
|
|
|
headerRecordIndex = getHeaderRecordIndex(header, epochIndex)
|
|
|
|
|
|
|
|
# TODO: Implement more generalized `get_generalized_index`
|
|
|
|
gIndex = GeneralizedIndex(epochSize*2*2 + (headerRecordIndex*2))
|
|
|
|
|
|
|
|
verify_merkle_multiproof(@[leave], proof, @[gIndex], epochAccumulatorHash)
|
|
|
|
|
2022-08-24 20:12:56 +00:00
|
|
|
func verifyHeader*(
|
2022-10-10 10:59:55 +00:00
|
|
|
a: Accumulator, header: BlockHeader, proof: openArray[Digest]):
|
2022-06-23 19:00:59 +00:00
|
|
|
Result[void, string] =
|
2022-10-10 10:59:55 +00:00
|
|
|
if header.isPreMerge():
|
|
|
|
if a.verifyProof(header, proof):
|
2022-06-23 19:00:59 +00:00
|
|
|
ok()
|
|
|
|
else:
|
2022-10-10 10:59:55 +00:00
|
|
|
err("Proof verification failed")
|
2022-06-23 19:00:59 +00:00
|
|
|
else:
|
2022-10-10 10:59:55 +00:00
|
|
|
err("Cannot verify post merge header with accumulator proof")
|
2022-08-04 06:34:53 +00:00
|
|
|
|
2022-10-10 10:59:55 +00:00
|
|
|
func getBlockEpochDataForBlockNumber*(
|
|
|
|
a: Accumulator, bn: UInt256): Result[BlockEpochData, string] =
|
2022-08-04 06:34:53 +00:00
|
|
|
let blockNumber = bn.truncate(uint64)
|
|
|
|
|
2022-10-10 10:59:55 +00:00
|
|
|
if blockNumber.isPreMerge:
|
2022-08-04 06:34:53 +00:00
|
|
|
let epochIndex = getEpochIndex(blockNumber)
|
2022-10-10 10:59:55 +00:00
|
|
|
|
|
|
|
ok(BlockEpochData(
|
2022-08-04 06:34:53 +00:00
|
|
|
epochHash: a.historicalEpochs[epochIndex],
|
2022-10-10 10:59:55 +00:00
|
|
|
blockRelativeIndex: getHeaderRecordIndex(blockNumber, epochIndex))
|
|
|
|
)
|
|
|
|
else:
|
|
|
|
err("Block number is post merge: " & $blockNumber)
|