226 lines
6.8 KiB
Nim
226 lines
6.8 KiB
Nim
import
|
|
../chain_config,
|
|
../db/db_chain,
|
|
../genesis,
|
|
../utils,
|
|
../vm_state,
|
|
./clique,
|
|
./executor,
|
|
./validate,
|
|
./validate/epoch_hash_cache,
|
|
chronicles,
|
|
eth/[common, trie/db],
|
|
nimcrypto,
|
|
stew/endians2,
|
|
stint
|
|
|
|
when not defined(release):
|
|
import ../tracer
|
|
|
|
type
|
|
# Chain's forks not always equals to EVM's forks
|
|
ChainFork = enum
|
|
Frontier,
|
|
Homestead,
|
|
DAOFork,
|
|
Tangerine,
|
|
Spurious,
|
|
Byzantium,
|
|
Constantinople,
|
|
Petersburg,
|
|
Istanbul,
|
|
MuirGlacier,
|
|
Berlin,
|
|
London
|
|
|
|
Chain* = ref object of AbstractChainDB
|
|
db: BaseChainDB
|
|
forkIds: array[ChainFork, ForkID]
|
|
blockZeroHash: KeccakHash
|
|
|
|
extraValidation: bool ##\
|
|
## Trigger extra validation, currently with `persistBlocksin()` only.
|
|
|
|
cacheByEpoch: EpochHashCache ##\
|
|
## Objects cache to speed up lookup in validation functions.
|
|
|
|
poa: Clique ##\
|
|
## For non-PoA networks (when `db.config.poaEngine` is `false`),
|
|
## this descriptor is ignored.
|
|
|
|
|
|
func toChainFork(c: ChainConfig, number: BlockNumber): ChainFork =
|
|
if number >= c.londonBlock: London
|
|
elif number >= c.berlinBlock: Berlin
|
|
elif number >= c.muirGlacierBlock: MuirGlacier
|
|
elif number >= c.istanbulBlock: Istanbul
|
|
elif number >= c.petersburgBlock: Petersburg
|
|
elif number >= c.constantinopleBlock: Constantinople
|
|
elif number >= c.byzantiumBlock: Byzantium
|
|
elif number >= c.eip158Block: Spurious
|
|
elif number >= c.eip150Block: Tangerine
|
|
elif number >= c.daoForkBlock: DAOFork
|
|
elif number >= c.homesteadBlock: Homestead
|
|
else: Frontier
|
|
|
|
func toNextFork(n: BlockNumber): uint64 =
|
|
if n == high(BlockNumber):
|
|
result = 0'u64
|
|
else:
|
|
result = n.truncate(uint64)
|
|
|
|
func getNextFork(c: ChainConfig, fork: ChainFork): uint64 =
|
|
let next: array[ChainFork, uint64] = [
|
|
0'u64,
|
|
toNextFork(c.homesteadBlock),
|
|
toNextFork(c.daoForkBlock),
|
|
toNextFork(c.eip150Block),
|
|
toNextFork(c.eip158Block),
|
|
toNextFork(c.byzantiumBlock),
|
|
toNextFork(c.constantinopleBlock),
|
|
toNextFork(c.petersburgBlock),
|
|
toNextFork(c.istanbulBlock),
|
|
toNextFork(c.muirGlacierBlock),
|
|
toNextFork(c.berlinBlock),
|
|
toNextFork(c.londonBlock)
|
|
]
|
|
|
|
if fork == high(ChainFork):
|
|
result = 0
|
|
return
|
|
|
|
result = next[fork]
|
|
for x in fork..high(ChainFork):
|
|
if result != next[x]:
|
|
result = next[x]
|
|
break
|
|
|
|
func calculateForkId(c: ChainConfig, fork: ChainFork, prevCRC: uint32, prevFork: uint64): ForkID =
|
|
result.nextFork = c.getNextFork(fork)
|
|
|
|
if result.nextFork != prevFork:
|
|
result.crc = crc32(prevCRC, toBytesBE(prevFork))
|
|
else:
|
|
result.crc = prevCRC
|
|
|
|
func calculateForkIds(c: ChainConfig, genesisCRC: uint32): array[ChainFork, ForkID] =
|
|
var prevCRC = genesisCRC
|
|
var prevFork = c.getNextFork(Frontier)
|
|
|
|
for fork in ChainFork:
|
|
result[fork] = calculateForkId(c, fork, prevCRC, prevFork)
|
|
prevFork = result[fork].nextFork
|
|
prevCRC = result[fork].crc
|
|
|
|
proc newChain*(db: BaseChainDB, extraValidation = false): Chain =
|
|
result.new
|
|
result.db = db
|
|
|
|
if not db.config.daoForkSupport:
|
|
db.config.daoForkBlock = db.config.homesteadBlock
|
|
let g = defaultGenesisBlockForNetwork(db.networkId)
|
|
result.blockZeroHash = g.toBlock.blockHash
|
|
let genesisCRC = crc32(0, result.blockZeroHash.data)
|
|
result.forkIds = calculateForkIds(db.config, genesisCRC)
|
|
result.extraValidation = extraValidation
|
|
|
|
# Initalise the PoA state regardless of whether it is needed on the current
|
|
# network. For non-PoA networks (when `db.config.poaEngine` is `false`),
|
|
# this descriptor is ignored.
|
|
result.poa = db.newCliqueCfg.newClique
|
|
|
|
if extraValidation:
|
|
result.cacheByEpoch.initEpochHashCache
|
|
|
|
method genesisHash*(c: Chain): KeccakHash {.gcsafe.} =
|
|
c.blockZeroHash
|
|
|
|
method getBlockHeader*(c: Chain, b: HashOrNum, output: var BlockHeader): bool {.gcsafe.} =
|
|
case b.isHash
|
|
of true:
|
|
c.db.getBlockHeader(b.hash, output)
|
|
else:
|
|
c.db.getBlockHeader(b.number, output)
|
|
|
|
method getBestBlockHeader*(c: Chain): BlockHeader {.gcsafe.} =
|
|
c.db.getCanonicalHead()
|
|
|
|
method getSuccessorHeader*(c: Chain, h: BlockHeader, output: var BlockHeader, skip = 0'u): bool {.gcsafe.} =
|
|
let offset = 1 + skip.toBlockNumber
|
|
if h.blockNumber <= (not 0.toBlockNumber) - offset:
|
|
result = c.db.getBlockHeader(h.blockNumber + offset, output)
|
|
|
|
method getAncestorHeader*(c: Chain, h: BlockHeader, output: var BlockHeader, skip = 0'u): bool {.gcsafe.} =
|
|
let offset = 1 + skip.toBlockNumber
|
|
if h.blockNumber >= offset:
|
|
result = c.db.getBlockHeader(h.blockNumber - offset, output)
|
|
|
|
method getBlockBody*(c: Chain, blockHash: KeccakHash): BlockBodyRef =
|
|
result = nil
|
|
|
|
method persistBlocks*(c: Chain; headers: openarray[BlockHeader];
|
|
bodies: openarray[BlockBody]): ValidationResult {.gcsafe.} =
|
|
# Run the VM here
|
|
if headers.len != bodies.len:
|
|
debug "Number of headers not matching number of bodies"
|
|
return ValidationResult.Error
|
|
|
|
c.db.highestBlock = headers[^1].blockNumber
|
|
let transaction = c.db.db.beginTransaction()
|
|
defer: transaction.dispose()
|
|
|
|
trace "Persisting blocks",
|
|
fromBlock = headers[0].blockNumber,
|
|
toBlock = headers[^1].blockNumber
|
|
|
|
for i in 0 ..< headers.len:
|
|
let
|
|
(header, body) = (headers[i], bodies[i])
|
|
parentHeader = c.db.getBlockHeader(header.parentHash)
|
|
vmState = newBaseVMState(parentHeader.stateRoot, header, c.db)
|
|
|
|
# The following processing function call will update the PoA state which
|
|
# is passed as second function argument. The PoA state is ignored for
|
|
# non-PoA networks (in which case `vmState.processBlock(header,body)`
|
|
# would also be correct but not vice versa.)
|
|
validationResult = vmState.processBlock(c.poa, header, body)
|
|
|
|
when not defined(release):
|
|
if validationResult == ValidationResult.Error and
|
|
body.transactions.calcTxRoot == header.txRoot:
|
|
dumpDebuggingMetaData(c.db, header, body, vmState)
|
|
warn "Validation error. Debugging metadata dumped."
|
|
|
|
if validationResult != ValidationResult.OK:
|
|
return validationResult
|
|
|
|
if c.extraValidation:
|
|
let res = c.db.validateHeaderAndKinship(
|
|
header,
|
|
body,
|
|
checkSealOK = false, # TODO: how to checkseal from here
|
|
c.cacheByEpoch
|
|
)
|
|
if res.isErr:
|
|
debug "block validation error", msg = res.error
|
|
return ValidationResult.Error
|
|
|
|
discard c.db.persistHeaderToDb(header)
|
|
discard c.db.persistTransactions(header.blockNumber, body.transactions)
|
|
discard c.db.persistReceipts(vmState.receipts)
|
|
|
|
# update currentBlock *after* we persist it
|
|
# so the rpc return consistent result
|
|
# between eth_blockNumber and eth_syncing
|
|
c.db.currentBlock = header.blockNumber
|
|
|
|
transaction.commit()
|
|
|
|
method getTrieDB*(c: Chain): TrieDatabaseRef {.gcsafe.} =
|
|
c.db.db
|
|
|
|
method getForkId*(c: Chain, n: BlockNumber): ForkID {.gcsafe.} =
|
|
# EIP 2364/2124
|
|
let fork = c.db.config.toChainFork(n)
|
|
c.forkIds[fork]
|