nimbus-eth1/nimbus/vm_state_transactions.nim

193 lines
7.3 KiB
Nim
Raw Normal View History

# 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
ranges/typedranges, sequtils, strformat, tables, options,
2019-02-26 07:04:12 +00:00
eth/common, chronicles, ./db/[db_chain, state_db],
constants, errors, transaction, vm_types, vm_state, utils,
./vm/[computation, interpreter], ./vm/interpreter/gas_costs
proc validateTransaction*(vmState: BaseVMState, transaction: Transaction, sender: EthAddress): bool =
# XXX: https://github.com/status-im/nimbus/issues/35#issuecomment-391726518
# XXX: lots of avoidable u256 construction
var readOnlyDB = vmState.readOnlyStateDB
let limitAndValue = transaction.gasLimit.u256 + transaction.value
2019-02-27 05:09:46 +00:00
let gasCost = transaction.gasLimit.u256 * transaction.gasPrice.u256
2019-02-27 05:09:46 +00:00
transaction.gasLimit >= transaction.intrinsicGas and
transaction.gasPrice <= (1 shl 34) and
limitAndValue <= readOnlyDB.getBalance(sender) and
transaction.accountNonce == readOnlyDB.getNonce(sender) and
2019-02-27 05:09:46 +00:00
readOnlyDB.getBalance(sender) >= gasCost
2019-02-27 02:28:02 +00:00
proc setupComputation*(vmState: BaseVMState, tx: Transaction, sender: EthAddress, forkOverride=none(Fork)) : BaseComputation =
let fork =
if forkOverride.isSome:
forkOverride.get
else:
vmState.blockNumber.toFork
var recipient: EthAddress
var gas = tx.gasLimit - tx.intrinsicGas
# TODO: refactor message to use byterange
# instead of seq[byte]
var data, code: seq[byte]
if tx.isContractCreation:
recipient = generateAddress(sender, tx.accountNonce)
gas = gas - gasFees[fork][GasTXCreate]
data = @[]
code = tx.payload
else:
recipient = tx.to
data = tx.payload
code = vmState.readOnlyStateDB.getCode(tx.to).toSeq
let msg = newMessage(
gas = gas,
gasPrice = tx.gasPrice,
to = tx.to,
sender = sender,
value = tx.value,
data = data,
code = code,
options = newMessageOptions(origin = sender,
createAddress = recipient))
result = newBaseComputation(vmState, vmState.blockNumber, msg, forkOverride)
doAssert result.isOriginComputation
2018-10-01 19:12:14 +00:00
proc execComputation*(computation: var BaseComputation): bool =
var snapshot = computation.snapshot()
defer: snapshot.dispose()
2018-12-31 03:27:02 +00:00
2019-02-27 05:09:46 +00:00
computation.vmState.mutateStateDB:
2019-02-27 05:42:26 +00:00
db.subBalance(computation.msg.origin, computation.msg.value)
2019-02-27 05:09:46 +00:00
db.addBalance(computation.msg.storageAddress, computation.msg.value)
try:
computation.executeOpcodes()
2018-10-01 19:12:14 +00:00
computation.vmState.mutateStateDB:
for deletedAccount in computation.getAccountsForDeletion:
2018-10-01 19:12:14 +00:00
db.deleteAccount deletedAccount
result = not computation.isError
except ValueError:
result = false
2019-02-27 05:09:46 +00:00
debug "execComputation() error", msg = getCurrentExceptionMsg()
2018-12-31 03:27:02 +00:00
if result:
snapshot.commit()
2018-12-31 03:27:02 +00:00
else:
snapshot.revert()
2018-12-31 03:27:02 +00:00
2019-02-27 03:30:03 +00:00
proc applyCreateTransaction*(tx: Transaction, vmState: BaseVMState, sender: EthAddress, forkOverride=none(Fork)): GasInt =
2019-02-27 02:28:02 +00:00
doAssert tx.isContractCreation
# TODO: clean up params
trace "Contract creation"
2019-02-27 02:28:02 +00:00
var c = setupComputation(vmState, tx, sender, forkOverride)
2018-10-01 19:12:14 +00:00
if execComputation(c):
2018-12-31 03:27:02 +00:00
var db = vmState.accountDb
# XXX: copy/pasted from GST fixture
# TODO: more merging/refactoring/etc
# also a couple lines can collapse because variable used once
# once verified in GST fixture
let
2019-02-27 03:30:03 +00:00
gasRemaining = c.gasMeter.gasRemaining
gasRefunded = c.getGasRefund()
gasUsed = tx.gasLimit - gasRemaining
2019-02-27 02:28:02 +00:00
gasRefund = min(gasRefunded, gasUsed div 2)
var codeCost = 200 * c.output.len
# This apparently is not supposed to actually consume the gas, just be able to,
# for purposes of accounting. Py-EVM apparently does consume the gas, but it is
# not matching observed blockchain balances if consumeGas is called.
2019-02-23 13:08:59 +00:00
2019-02-27 05:09:46 +00:00
let contractAddress = c.msg.storageAddress
2019-02-23 13:18:40 +00:00
if not c.isSuicided(contractAddress):
2019-02-23 13:08:59 +00:00
# make changes only if it not selfdestructed
2019-02-27 03:30:03 +00:00
if gasRemaining >= codeCost:
2019-02-23 13:08:59 +00:00
db.setCode(contractAddress, c.output.toRange)
else:
# XXX: Homestead behaves differently; reverts state on gas failure
# https://github.com/ethereum/py-evm/blob/master/eth/vm/forks/homestead/computation.py
codeCost = 0
db.setCode(contractAddress, ByteRange())
2019-02-27 03:30:03 +00:00
db.addBalance(sender, (tx.gasLimit - gasUsed - codeCost + gasRefund).u256 * tx.gasPrice.u256)
return (gasUsed + codeCost - gasRefund)
else:
2019-02-27 05:42:26 +00:00
if c.tracingEnabled: c.traceError()
2018-12-10 12:04:34 +00:00
vmState.clearLogs()
2019-02-27 03:30:03 +00:00
return tx.gasLimit
2019-02-26 07:04:12 +00:00
#[
2018-12-03 10:54:19 +00:00
method executeTransaction(vmState: BaseVMState, transaction: Transaction): (BaseComputation, BlockHeader) {.base.}=
# Execute the transaction in the vm
# TODO: introduced here: https://github.com/ethereum/py-evm/commit/21c57f2d56ab91bb62723c3f9ebe291d0b132dde
# Refactored/Removed here: https://github.com/ethereum/py-evm/commit/cc991bf
# Deleted here: https://github.com/ethereum/py-evm/commit/746defb6f8e83cee2c352a0ab8690e1281c4227c
raise newException(ValueError, "Must be implemented by subclasses")
2018-12-03 10:54:19 +00:00
method addTransaction*(vmState: BaseVMState, transaction: Transaction, computation: BaseComputation, b: Block): (Block, Table[string, string]) =
# Add a transaction to the given block and
# return `trieData` to store the transaction data in chaindb in VM layer
# Update the bloomFilter, transaction trie and receipt trie roots, bloom_filter,
# bloom, and usedGas of the block
# transaction: the executed transaction
# computation: the Computation object with executed result
# block: the Block which the transaction is added in
# var receipt = vmState.makeReceipt(transaction, computation)
# vmState.add_receipt(receipt)
# block.transactions.append(transaction)
# # Get trie roots and changed key-values.
# tx_root_hash, tx_kv_nodes = make_trie_root_and_nodes(block.transactions)
# receipt_root_hash, receipt_kv_nodes = make_trie_root_and_nodes(self.receipts)
# trie_data = merge(tx_kv_nodes, receipt_kv_nodes)
# block.bloom_filter |= receipt.bloom
# block.header.transaction_root = tx_root_hash
# block.header.receipt_root = receipt_root_hash
# block.header.bloom = int(block.bloom_filter)
# block.header.gas_used = receipt.gas_used
# return block, trie_data
result = (b, initTable[string, string]())
method applyTransaction*(
2018-12-03 10:54:19 +00:00
vmState: BaseVMState,
transaction: Transaction,
b: Block,
isStateless: bool): (BaseComputation, Block, Table[string, string]) =
# Apply transaction to the given block
# transaction: the transaction need to be applied
# b: the block which the transaction applies on
# isStateless: if isStateless, call vmState.addTransaction to set block
2018-04-06 14:25:01 +00:00
if isStateless:
var ourBlock = b # deepcopy
vmState.blockHeader = b.header
var (computation, blockHeader) = vmState.executeTransaction(transaction)
ourBlock.header = blockHeader
var trieData: Table[string, string]
(ourBlock, trieData) = vmState.addTransaction(transaction, computation, ourBlock)
result = (computation, ourBlock, trieData)
else:
var (computation, blockHeader) = vmState.executeTransaction(transaction)
return (computation, nil, initTable[string, string]())
2019-02-26 07:04:12 +00:00
]#