2021-07-14 15:13:27 +00:00
|
|
|
# Nimbus
|
|
|
|
# Copyright (c) 2018 Status Research & Development GmbH
|
|
|
|
# Licensed under either of
|
|
|
|
# * Apache License, version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0)
|
|
|
|
# * MIT license ([LICENSE-MIT](LICENSE-MIT) or
|
|
|
|
# http://opensource.org/licenses/MIT)
|
|
|
|
# at your option. This file may not be copied, modified, or distributed except
|
|
|
|
# according to those terms.
|
|
|
|
|
|
|
|
import
|
|
|
|
../../db/db_chain,
|
|
|
|
../../vm_state,
|
|
|
|
../clique,
|
|
|
|
../executor,
|
|
|
|
../validate,
|
|
|
|
./chain_desc,
|
|
|
|
./chain_helpers,
|
|
|
|
chronicles,
|
|
|
|
eth/[common, trie/db],
|
|
|
|
stew/endians2,
|
|
|
|
stint
|
|
|
|
|
|
|
|
when not defined(release):
|
2021-07-30 14:06:51 +00:00
|
|
|
import
|
|
|
|
../../tracer,
|
|
|
|
../../utils
|
2021-07-14 15:13:27 +00:00
|
|
|
|
|
|
|
{.push raises: [Defect].}
|
|
|
|
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# Private
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
proc persistBlocksImpl(c: Chain; headers: openarray[BlockHeader];
|
|
|
|
bodies: openarray[BlockBody]): ValidationResult
|
2021-07-21 13:31:52 +00:00
|
|
|
# wildcard exception, wrapped below in public section
|
2021-07-14 15:13:27 +00:00
|
|
|
{.inline, raises: [Exception].} =
|
|
|
|
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
|
|
|
|
|
2021-07-21 13:31:52 +00:00
|
|
|
var cliqueState = c.clique.cliqueSave
|
|
|
|
defer: c.clique.cliqueRestore(cliqueState)
|
|
|
|
|
2021-07-14 15:13:27 +00:00
|
|
|
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)
|
|
|
|
validationResult = vmState.processBlock(c.clique, 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
|
|
|
|
|
2021-07-30 14:06:51 +00:00
|
|
|
if c.extraValidation and c.verifyFrom <= header.blockNumber:
|
|
|
|
if c.db.config.poaEngine:
|
|
|
|
var parent = if 0 < i: @[headers[i-1]] else: @[]
|
|
|
|
let rc = c.clique.cliqueVerify(header,parent)
|
|
|
|
if rc.isOK:
|
|
|
|
# mark it off so it would not auto-restore previous state
|
|
|
|
c.clique.cliqueDispose(cliqueState)
|
|
|
|
else:
|
|
|
|
debug "PoA header verification failed",
|
|
|
|
blockNumber = header.blockNumber,
|
|
|
|
msg = $rc.error
|
|
|
|
return ValidationResult.Error
|
2021-07-21 13:31:52 +00:00
|
|
|
else:
|
2021-07-30 14:06:51 +00:00
|
|
|
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
|
2021-07-14 15:13:27 +00:00
|
|
|
|
|
|
|
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()
|
|
|
|
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# Public `AbstractChainDB` overload method
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
method persistBlocks*(c: Chain; headers: openarray[BlockHeader];
|
|
|
|
bodies: openarray[BlockBody]): ValidationResult
|
|
|
|
{.gcsafe, raises: [Defect,CatchableError].} =
|
|
|
|
# Run the VM here
|
|
|
|
if headers.len != bodies.len:
|
|
|
|
debug "Number of headers not matching number of bodies"
|
|
|
|
return ValidationResult.Error
|
|
|
|
|
|
|
|
if headers.len == 0:
|
|
|
|
debug "Nothing to do"
|
|
|
|
return ValidationResult.OK
|
|
|
|
|
|
|
|
safeP2PChain("persistBlocks"):
|
|
|
|
result = c.persistBlocksImpl(headers,bodies)
|
|
|
|
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# End
|
|
|
|
# ------------------------------------------------------------------------------
|