nimbus-eth1/nimbus/p2p/executor.nim

171 lines
5.9 KiB
Nim
Raw Normal View History

import options, sets,
2019-11-28 10:02:11 +00:00
eth/[common, bloom, trie/db], stew/ranges, chronicles, nimcrypto,
2018-12-14 07:32:45 +00:00
../db/[db_chain, state_db],
../utils, ../constants, ../transaction,
../vm_state, ../vm_types, ../vm_state_transactions,
2019-03-19 16:30:35 +00:00
../vm/[computation, message],
2019-04-06 14:50:43 +00:00
../vm/interpreter/vm_forks,
./dao
2018-12-04 11:42:55 +00:00
2019-04-23 12:50:45 +00:00
proc processTransaction*(tx: Transaction, sender: EthAddress, vmState: BaseVMState, fork: Fork): GasInt =
2018-12-04 11:42:55 +00:00
## Process the transaction, write the results to db.
## Returns amount of ETH to be rewarded to miner
trace "Sender", sender
2019-02-27 06:11:31 +00:00
trace "txHash", rlpHash = tx.rlpHash
if validateTransaction(vmState, tx, sender, fork):
var c = setupComputation(vmState, tx, sender, fork)
2019-04-18 00:56:57 +00:00
vmState.mutateStateDB:
2020-01-30 15:22:38 +00:00
db.subBalance(sender, tx.gasLimit.u256 * tx.gasPrice.u256)
2020-01-10 11:18:36 +00:00
execComputation(c)
2020-01-30 15:54:29 +00:00
result = tx.gasLimit
2020-01-10 11:18:36 +00:00
if not c.shouldBurnGas:
2020-01-30 15:54:29 +00:00
c.refundGas(tx, sender)
result -= c.gasMeter.gasRemaining
2019-04-18 00:56:57 +00:00
2020-01-30 15:54:29 +00:00
vmState.cumulativeGasUsed += result
2019-04-18 00:56:57 +00:00
vmState.mutateStateDB:
2020-01-10 11:18:36 +00:00
# miner fee
2020-01-30 15:54:29 +00:00
let txFee = result.u256 * tx.gasPrice.u256
2020-01-10 11:18:36 +00:00
db.addBalance(vmState.blockHeader.coinbase, txFee)
for deletedAccount in vmState.suicides:
db.deleteAccount deletedAccount
2018-12-12 00:32:33 +00:00
if fork >= FkSpurious:
vmState.touchedAccounts.incl(vmState.blockHeader.coinbase)
# EIP158/161 state clearing
for account in vmState.touchedAccounts:
if db.accountExists(account) and db.isEmptyAccount(account):
debug "state clearing", account
db.deleteAccount(account)
2019-11-13 06:18:01 +00:00
vmState.accountDb.updateOriginalRoot()
2019-03-11 15:32:25 +00:00
2018-12-14 07:32:45 +00:00
type
# TODO: these types need to be removed
2019-02-05 19:15:50 +00:00
# once eth/bloom and eth/common sync'ed
Bloom = common.BloomFilter
LogsBloom = bloom.BloomFilter
2018-12-14 07:32:45 +00:00
# TODO: move these three receipt procs below somewhere else more appropriate
func logsBloom(logs: openArray[Log]): LogsBloom =
for log in logs:
result.incl log.address
for topic in log.topics:
result.incl topic
func createBloom*(receipts: openArray[Receipt]): Bloom =
var bloom: LogsBloom
for receipt in receipts:
bloom.value = bloom.value or logsBloom(receipt.logs).value
result = bloom.value.toByteArrayBE
2019-09-07 08:38:44 +00:00
proc makeReceipt*(vmState: BaseVMState, fork = FkFrontier): Receipt =
2018-12-14 07:32:45 +00:00
if fork < FkByzantium:
2018-12-31 03:27:02 +00:00
result.stateRootOrStatus = hashOrStatus(vmState.accountDb.rootHash)
2018-12-14 07:32:45 +00:00
else:
2019-04-22 09:37:41 +00:00
result.stateRootOrStatus = hashOrStatus(vmState.status)
2018-12-14 07:32:45 +00:00
2019-04-18 00:56:57 +00:00
result.cumulativeGasUsed = vmState.cumulativeGasUsed
2018-12-14 07:32:45 +00:00
result.logs = vmState.getAndClearLogEntries()
result.bloom = logsBloom(result.logs).value.toByteArrayBE
2018-12-12 00:32:33 +00:00
2019-05-14 04:31:30 +00:00
func eth(n: int): Uint256 {.compileTime.} =
n.u256 * pow(10.u256, 18)
const
eth5 = 5.eth
eth3 = 3.eth
eth2 = 2.eth
2019-09-07 08:38:44 +00:00
blockRewards*: array[Fork, Uint256] = [
2019-05-14 04:31:30 +00:00
eth5, # FkFrontier
eth5, # FkThawing
eth5, # FkHomestead
eth5, # FkDao
eth5, # FkTangerine
eth5, # FkSpurious
eth3, # FkByzantium
2019-11-11 05:20:21 +00:00
eth2, # FkConstantinople
2020-03-04 09:32:30 +00:00
eth2, # FkPetersburg
2020-02-20 04:09:12 +00:00
eth2, # FkIstanbul
eth2 # FkGlacierMuir
2019-05-14 04:31:30 +00:00
]
2019-03-20 03:22:37 +00:00
proc processBlock*(chainDB: BaseChainDB, header: BlockHeader, body: BlockBody, vmState: BaseVMState): ValidationResult =
2019-11-28 10:02:11 +00:00
var dbTx = chainDB.db.beginTransaction()
defer: dbTx.dispose()
2019-04-06 14:50:43 +00:00
if chainDB.config.daoForkSupport and header.blockNumber == chainDB.config.daoForkBlock:
vmState.mutateStateDB:
db.applyDAOHardFork()
2018-12-25 05:58:55 +00:00
if body.transactions.calcTxRoot != header.txRoot:
debug "Mismatched txRoot", blockNumber=header.blockNumber
2018-12-12 00:32:33 +00:00
return ValidationResult.Error
let fork = vmState.blockNumber.toFork
2018-12-25 05:58:55 +00:00
if header.txRoot != BLANK_ROOT_HASH:
if body.transactions.len == 0:
debug "No transactions in body", blockNumber=header.blockNumber
2018-12-12 00:32:33 +00:00
return ValidationResult.Error
else:
2018-12-25 05:58:55 +00:00
trace "Has transactions", blockNumber = header.blockNumber, blockHash = header.blockHash
2018-12-12 00:32:33 +00:00
2018-12-25 12:10:04 +00:00
vmState.receipts = newSeq[Receipt](body.transactions.len)
2019-04-18 00:56:57 +00:00
vmState.cumulativeGasUsed = 0
2018-12-25 05:58:55 +00:00
for txIndex, tx in body.transactions:
2019-04-18 00:56:57 +00:00
var sender: EthAddress
if tx.getSender(sender):
2019-04-23 12:50:45 +00:00
let gasUsed = processTransaction(tx, sender, vmState, fork)
2018-12-12 00:32:33 +00:00
else:
2019-04-18 00:56:57 +00:00
debug "Could not get sender", txIndex, tx
return ValidationResult.Error
vmState.receipts[txIndex] = makeReceipt(vmState, fork)
2019-05-14 04:31:30 +00:00
let blockReward = blockRewards[fork]
2018-12-12 00:32:33 +00:00
var mainReward = blockReward
2018-12-25 05:58:55 +00:00
if header.ommersHash != EMPTY_UNCLE_HASH:
let h = chainDB.persistUncles(body.uncles)
if h != header.ommersHash:
2018-12-12 00:32:33 +00:00
debug "Uncle hash mismatch"
return ValidationResult.Error
2018-12-25 05:58:55 +00:00
for uncle in body.uncles:
var uncleReward = uncle.blockNumber.u256 + 8.u256
uncleReward -= header.blockNumber.u256
2018-12-12 00:32:33 +00:00
uncleReward = uncleReward * blockReward
uncleReward = uncleReward div 8.u256
2019-03-07 08:04:32 +00:00
vmState.mutateStateDB:
db.addBalance(uncle.coinbase, uncleReward)
2018-12-12 00:32:33 +00:00
mainReward += blockReward div 32.u256
# Reward beneficiary
2019-03-07 08:04:32 +00:00
vmState.mutateStateDB:
db.addBalance(header.coinbase, mainReward)
2018-12-12 00:32:33 +00:00
2019-03-07 08:04:32 +00:00
let stateDb = vmState.accountDb
2018-12-25 05:58:55 +00:00
if header.stateRoot != stateDb.rootHash:
error "Wrong state root in block", blockNumber=header.blockNumber, expected=header.stateRoot, actual=stateDb.rootHash, arrivedFrom=chainDB.getCanonicalHead().stateRoot
2018-12-12 00:32:33 +00:00
# this one is a show stopper until we are confident in our VM's
# compatibility with the main chain
2018-12-25 10:31:51 +00:00
return ValidationResult.Error
2018-12-12 00:32:33 +00:00
2018-12-25 05:58:55 +00:00
let bloom = createBloom(vmState.receipts)
if header.bloom != bloom:
debug "wrong bloom in block", blockNumber=header.blockNumber
return ValidationResult.Error
2018-12-12 00:32:33 +00:00
2018-12-25 05:58:55 +00:00
let receiptRoot = calcReceiptRoot(vmState.receipts)
if header.receiptRoot != receiptRoot:
debug "wrong receiptRoot in block", blockNumber=header.blockNumber, actual=receiptRoot, expected=header.receiptRoot
return ValidationResult.Error
2019-11-28 10:02:11 +00:00
# `applyDeletes = false`
2019-12-06 05:27:29 +00:00
# If the trie pruning activated, each of the block will have its own state trie keep intact,
# rather than destroyed by trie pruning. But the current block will still get a pruned trie.
# If trie pruning deactivated, `applyDeletes` have no effects.
2019-11-28 10:02:11 +00:00
dbTx.commit(applyDeletes = false)