mirror of
https://github.com/status-im/nimbus-eth1.git
synced 2025-01-26 20:19:31 +00:00
36d430aaa2
* Add headers with proof content type and use it for verification - Add BlockHeaderWithProof content type & content - Use BlockHeaderWithProof content to verify if chain data is part of the canonical chain - Adjust parser & seeder code to be able to seed these headers with proof - Adjust eth_data_exporter to be able to export custom header ranges for which to build proofs (mostly for testing) There is currently quite some ugliness & clean-up needed for which a big part is due tos upporting both BlockHeader and BlockHeaderWithProof on the network. * Change accumulator proof to array / SSZ vector type - Change accumulator proof to SSZ vector instead of SSZ list. - Add and use general buildProof and buildHeaderWithProof func. * Make the BlockHeaderWithProof an SSZ Union with None option * Update portal-spec-tests to master commit
142 lines
4.1 KiB
Nim
142 lines
4.1 KiB
Nim
# Nimbus
|
|
# Copyright (c) 2021-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.
|
|
|
|
# https://github.com/ethereum/portal-network-specs/blob/master/history-network.md#content-keys-and-values
|
|
|
|
{.push raises: [Defect].}
|
|
|
|
import
|
|
std/[options, math],
|
|
nimcrypto/[sha2, hash], stew/byteutils, stint,
|
|
ssz_serialization,
|
|
../../common/common_types
|
|
|
|
export ssz_serialization, common_types, hash
|
|
|
|
## Types and calls for history network content keys
|
|
|
|
const
|
|
# Maximum content key size:
|
|
# - 32 bytes for SSZ serialized `BlockKey`
|
|
# - 1 byte for `ContentType`
|
|
# TODO: calculate it somehow from the object definition (macro?)
|
|
maxContentKeySize* = 33
|
|
|
|
type
|
|
ContentType* = enum
|
|
blockHeader = 0x00
|
|
blockBody = 0x01
|
|
receipts = 0x02
|
|
epochAccumulator = 0x03
|
|
blockHeaderWithProof = 0x04
|
|
|
|
BlockKey* = object
|
|
blockHash*: BlockHash
|
|
|
|
EpochAccumulatorKey* = object
|
|
epochHash*: Digest # TODO: Perhaps this should be called epochRoot in the spec instead
|
|
|
|
ContentKey* = object
|
|
case contentType*: ContentType
|
|
of blockHeader:
|
|
blockHeaderKey*: BlockKey
|
|
of blockBody:
|
|
blockBodyKey*: BlockKey
|
|
of receipts:
|
|
receiptsKey*: BlockKey
|
|
of epochAccumulator:
|
|
epochAccumulatorKey*: EpochAccumulatorKey
|
|
of blockHeaderWithProof:
|
|
blockHeaderWithProofKey*: BlockKey
|
|
|
|
func encode*(contentKey: ContentKey): ByteList =
|
|
ByteList.init(SSZ.encode(contentKey))
|
|
|
|
func decode*(contentKey: ByteList): Option[ContentKey] =
|
|
try:
|
|
some(SSZ.decode(contentKey.asSeq(), ContentKey))
|
|
except SszError:
|
|
return none[ContentKey]()
|
|
|
|
func toContentId*(contentKey: ByteList): ContentId =
|
|
# TODO: Should we try to parse the content key here for invalid ones?
|
|
let idHash = sha2.sha256.digest(contentKey.asSeq())
|
|
readUintBE[256](idHash.data)
|
|
|
|
func toContentId*(contentKey: ContentKey): ContentId =
|
|
toContentId(encode(contentKey))
|
|
|
|
func `$`*(x: BlockHash): string =
|
|
"0x" & x.data.toHex()
|
|
|
|
func `$`*(x: BlockKey): string =
|
|
"blockHash: " & $x.blockHash
|
|
|
|
func `$`*(x: ContentKey): string =
|
|
var res = "(type: " & $x.contentType & ", "
|
|
|
|
case x.contentType:
|
|
of blockHeader:
|
|
res.add($x.blockHeaderKey)
|
|
of blockBody:
|
|
res.add($x.blockBodyKey)
|
|
of receipts:
|
|
res.add($x.receiptsKey)
|
|
of epochAccumulator:
|
|
let key = x.epochAccumulatorKey
|
|
res.add("epochHash: " & $key.epochHash)
|
|
of blockHeaderWithProof:
|
|
res.add($x.blockHeaderWithProofKey)
|
|
|
|
res.add(")")
|
|
|
|
res
|
|
|
|
## Types for history network content
|
|
|
|
const
|
|
MAX_TRANSACTION_LENGTH* = 2^24 # ~= 16 million
|
|
MAX_TRANSACTION_COUNT* = 2^14 # ~= 16k
|
|
MAX_RECEIPT_LENGTH* = 2^27 # ~= 134 million
|
|
MAX_HEADER_LENGTH = 2^13 # = 8192
|
|
MAX_ENCODED_UNCLES_LENGTH* = MAX_HEADER_LENGTH * 2^4 # = 2**17 ~= 131k
|
|
|
|
type
|
|
## Types for content
|
|
# TODO: Using `init` on these lists appears to fail because of the constants
|
|
# that are used? Strange.
|
|
TransactionByteList* = List[byte, MAX_TRANSACTION_LENGTH] # RLP data
|
|
Transactions* = List[TransactionByteList, MAX_TRANSACTION_COUNT]
|
|
Uncles* = List[byte, MAX_ENCODED_UNCLES_LENGTH] # RLP data
|
|
|
|
BlockBodySSZ* = object
|
|
transactions*: Transactions
|
|
uncles*: Uncles
|
|
|
|
ReceiptByteList* = List[byte, MAX_RECEIPT_LENGTH] # RLP data
|
|
ReceiptsSSZ* = List[ReceiptByteList, MAX_TRANSACTION_COUNT]
|
|
|
|
AccumulatorProof* = array[15, Digest]
|
|
|
|
BlockHeaderProofType* = enum
|
|
none = 0x00 # An SSZ Union None
|
|
accumulatorProof = 0x01
|
|
|
|
BlockHeaderProof* = object
|
|
case proofType*: BlockHeaderProofType
|
|
of none:
|
|
discard
|
|
of accumulatorProof:
|
|
accumulatorProof*: AccumulatorProof
|
|
|
|
BlockHeaderWithProof* = object
|
|
header*: ByteList # RLP data
|
|
proof*: BlockHeaderProof
|
|
|
|
func init*(T: type BlockHeaderProof, proof: AccumulatorProof): T =
|
|
BlockHeaderProof(proofType: accumulatorProof, accumulatorProof: proof)
|