2016-04-14 18:18:24 +02:00
|
|
|
// Copyright 2015 The go-ethereum Authors
|
|
|
|
// This file is part of the go-ethereum library.
|
|
|
|
//
|
|
|
|
// The go-ethereum library is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// The go-ethereum library is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
|
|
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2015-10-19 16:08:17 +02:00
|
|
|
package core
|
|
|
|
|
|
|
|
import (
|
2020-12-04 12:22:19 +01:00
|
|
|
"fmt"
|
2021-06-30 15:17:01 +02:00
|
|
|
"math/big"
|
2020-12-04 12:22:19 +01:00
|
|
|
|
2017-04-12 16:38:31 +03:00
|
|
|
"github.com/ethereum/go-ethereum/common"
|
2017-04-05 01:16:29 +03:00
|
|
|
"github.com/ethereum/go-ethereum/consensus"
|
|
|
|
"github.com/ethereum/go-ethereum/consensus/misc"
|
2015-10-19 16:08:17 +02:00
|
|
|
"github.com/ethereum/go-ethereum/core/state"
|
|
|
|
"github.com/ethereum/go-ethereum/core/types"
|
|
|
|
"github.com/ethereum/go-ethereum/core/vm"
|
|
|
|
"github.com/ethereum/go-ethereum/crypto"
|
2016-10-20 13:36:29 +02:00
|
|
|
"github.com/ethereum/go-ethereum/params"
|
2015-10-19 16:08:17 +02:00
|
|
|
)
|
|
|
|
|
2016-03-01 23:32:43 +01:00
|
|
|
// StateProcessor is a basic Processor, which takes care of transitioning
|
|
|
|
// state from one point to another.
|
|
|
|
//
|
|
|
|
// StateProcessor implements Processor.
|
2015-10-19 16:08:17 +02:00
|
|
|
type StateProcessor struct {
|
2017-04-05 01:16:29 +03:00
|
|
|
config *params.ChainConfig // Chain configuration options
|
|
|
|
bc *BlockChain // Canonical block chain
|
|
|
|
engine consensus.Engine // Consensus engine used for block rewards
|
2015-10-19 16:08:17 +02:00
|
|
|
}
|
|
|
|
|
2016-03-01 23:32:43 +01:00
|
|
|
// NewStateProcessor initialises a new StateProcessor.
|
2017-04-05 01:16:29 +03:00
|
|
|
func NewStateProcessor(config *params.ChainConfig, bc *BlockChain, engine consensus.Engine) *StateProcessor {
|
2016-03-01 23:32:43 +01:00
|
|
|
return &StateProcessor{
|
|
|
|
config: config,
|
|
|
|
bc: bc,
|
2017-04-05 01:16:29 +03:00
|
|
|
engine: engine,
|
2016-03-01 23:32:43 +01:00
|
|
|
}
|
2015-10-19 16:08:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Process processes the state changes according to the Ethereum rules by running
|
|
|
|
// the transaction messages using the statedb and applying any rewards to both
|
|
|
|
// the processor (coinbase) and any included uncles.
|
|
|
|
//
|
|
|
|
// Process returns the receipts and logs accumulated during the process and
|
|
|
|
// returns the amount of gas that was used in the process. If any of the
|
|
|
|
// transactions failed to execute due to insufficient gas it will return an error.
|
2017-11-13 13:47:27 +02:00
|
|
|
func (p *StateProcessor) Process(block *types.Block, statedb *state.StateDB, cfg vm.Config) (types.Receipts, []*types.Log, uint64, error) {
|
2015-10-19 16:08:17 +02:00
|
|
|
var (
|
2021-06-30 15:17:01 +02:00
|
|
|
receipts types.Receipts
|
|
|
|
usedGas = new(uint64)
|
|
|
|
header = block.Header()
|
|
|
|
blockHash = block.Hash()
|
|
|
|
blockNumber = block.Number()
|
|
|
|
allLogs []*types.Log
|
|
|
|
gp = new(GasPool).AddGas(block.GasLimit())
|
2015-10-19 16:08:17 +02:00
|
|
|
)
|
2018-08-27 16:49:29 +08:00
|
|
|
// Mutate the block and state according to any hard-fork specs
|
2016-07-11 13:55:11 +03:00
|
|
|
if p.config.DAOForkSupport && p.config.DAOForkBlock != nil && p.config.DAOForkBlock.Cmp(block.Number()) == 0 {
|
2017-04-05 01:16:29 +03:00
|
|
|
misc.ApplyDAOHardFork(statedb)
|
2016-07-11 13:55:11 +03:00
|
|
|
}
|
2020-11-13 13:42:19 +01:00
|
|
|
blockContext := NewEVMBlockContext(header, p.bc, nil)
|
optimism: historical Bedrock geth rollup changes
This commit squashes the op-geth fork history into a more maintainable
diff for rebasing upon upstream geth.
reference-optimistic-geth changes (origins of op-geth in early Bedrock
development stage):
- Deposit TX Type
- Enable deposit tx in EVM/tx pool
- Change deposit nonce to not be the max nonce
- Extend PayloadAttributesV1 with a Transactions field
- Force deposits at the start of each L2 block
- Fix height check
- noTxPool flag, reproduce block in verifier mode without tx pool interference
- Fix RPC json marshalling (ref op-geth PR 4)
- Deposit txs block height check in block body validation (ref op-geth PR 5)
- core: do not try to reinject deposit txs into tx-pool (ref-op-geth PR 6)
- deposit source hash field instead of L2 block height and tx index combination
- Include invalid deposits, rewind state, but always persist mint (#10)
- Provide gas to Call/Create in deposit transactions (#12)
- Add docker builds (ref-op-geth PR 16, 17)
- Don't panic on deposit transaction signature values or chain ID (ref-op-geth PR 18)
- core: Add version to DepositTx (ref-op-geth PR 19)
- Enable Geth build/lint/test in CircleCI (ref-op-geth PR 23)
- core: Include guaranteed gas in the gas pool (ref-op-geth PR 21)
- core: handle base fee, l1 availability fee, tx fee (ref-op-geth PR 27)
- fix: deposit tx hash
- fix l1 fee cache, rpc, tracing and tx pool
- core: remove deposit-tx sub-type (a.k.a. deposit version byte)
- eth/catalyst: allow engine user to reorg own chain
- miner: restore ability to reorg deep as block builder
- params: print Optimism consensus type in banner
- core/types: remove unused protected() method, see upstream PR 23376
- core: do not mutate original balance value in tx pool l1 cost adjustment
- core: subtract deposit gas from pool, so other txs do not use the same gas. And fail tx processing if deposits reach gas limit
- core/types: deposits do not tip, avoid basefee subtraction
- Unmeter the L1 Attributes Transaction
- miner: handle force tx errors as critical, clean up diff
- ci: Switch branch
- eth,miner: return STATUS_INVALID when failing to process forced transactions in request (ref-op-geth PR 40)
- verifier: forward tx to sequencer based on flag
- txpool: add flag to disable tx gossip (ref-op-geth PR 42)
- Add op-geth version in addition to geth version (ref-op-geth PR 43)
- ci: CircleCI improvements (ref-op-geth PR 44)
- Rename to op-geth
- Build latest tag on optimism branch
op-geth changes:
- Expose cache config in simulated backend (#2)
- Add EIP-1559 parameters
- eth/catalyst: update payload id computation (#1)
- make eip1559 configurable (#4)
- post-merge network should not log warnings about missing transition information (#5)
- Make the simulator more configurable (#6)
- fix OPB-6 - IsDepositTx check instead of artificial nonce value check (#7)
- Simulated backend - enable proof of stake consensus type and fix performance issue (#8)
- accounts: simulated backend consensus engine option and immediate tx indexing
- consensus/beacon: recognize all blocks as reached TTD with 0 TTD in chain config
- Add --rollup.historicalhttp CLI flag and fix backend iface
- Flags and interfaces for historical RPC requests (#12)
- Redirect historical RPC requests (#13)
- Use the pre-existing ethereum.NotFound error (#18)
- Add historical endpoint to TraceBlockByNumber and TraceBlockByHash (#19)
- Add historical endpoint to TraceTransaction (#20)
- Add historical endpoint to TraceCall (#21)
- optimism: fee params from info txi, update l1 cost func GPO params read (#15)
- add hardcoded addresses for fee payouts (#23)
- dynamic gas limit via engine API (#22)
Co-authored-by: Matthew Slipper <me@matthewslipper.com>
Co-authored-by: Joshua Gutow <jgutow@oplabs.co>
Co-authored-by: protolambda <proto@protolambda.com>
Co-authored-by: Mark Tyneway <mark.tyneway@gmail.com>
Co-authored-by: Maurelian <maurelian@protonmail.ch>
2022-03-10 12:13:11 -08:00
|
|
|
blockContext.L1CostFunc = types.NewL1CostFunc(p.config, statedb)
|
2020-11-13 13:42:19 +01:00
|
|
|
vmenv := vm.NewEVM(blockContext, vm.TxContext{}, statedb, p.config, cfg)
|
2016-07-11 13:55:11 +03:00
|
|
|
// Iterate over and process the individual transactions
|
2015-10-19 16:08:17 +02:00
|
|
|
for i, tx := range block.Transactions() {
|
2021-05-17 15:13:22 +02:00
|
|
|
msg, err := tx.AsMessage(types.MakeSigner(p.config, header.Number), header.BaseFee)
|
2020-11-13 13:42:19 +01:00
|
|
|
if err != nil {
|
2021-05-17 15:13:22 +02:00
|
|
|
return nil, nil, 0, fmt.Errorf("could not apply tx %d [%v]: %w", i, tx.Hash().Hex(), err)
|
2020-11-13 13:42:19 +01:00
|
|
|
}
|
2022-11-16 01:18:52 -08:00
|
|
|
statedb.SetTxContext(tx.Hash(), i)
|
2022-12-13 20:54:16 +08:00
|
|
|
receipt, err := applyTransaction(msg, p.config, gp, statedb, blockNumber, blockHash, tx, usedGas, vmenv)
|
2015-10-19 16:08:17 +02:00
|
|
|
if err != nil {
|
2020-12-04 12:22:19 +01:00
|
|
|
return nil, nil, 0, fmt.Errorf("could not apply tx %d [%v]: %w", i, tx.Hash().Hex(), err)
|
2015-10-19 16:08:17 +02:00
|
|
|
}
|
|
|
|
receipts = append(receipts, receipt)
|
2017-01-05 11:52:10 +01:00
|
|
|
allLogs = append(allLogs, receipt.Logs...)
|
2015-10-19 16:08:17 +02:00
|
|
|
}
|
2023-01-25 15:32:25 +01:00
|
|
|
// Fail if Shanghai not enabled and len(withdrawals) is non-zero.
|
|
|
|
withdrawals := block.Withdrawals()
|
|
|
|
if len(withdrawals) > 0 && !p.config.IsShanghai(block.Time()) {
|
|
|
|
return nil, nil, 0, fmt.Errorf("withdrawals before shanghai")
|
|
|
|
}
|
2017-04-05 01:16:29 +03:00
|
|
|
// Finalize the block, applying any consensus engine specific extras (e.g. block rewards)
|
2023-01-25 15:32:25 +01:00
|
|
|
p.engine.Finalize(p.bc, header, statedb, block.Transactions(), block.Uncles(), withdrawals)
|
2015-10-19 16:08:17 +02:00
|
|
|
|
2017-11-13 13:47:27 +02:00
|
|
|
return receipts, allLogs, *usedGas, nil
|
2015-10-19 16:08:17 +02:00
|
|
|
}
|
|
|
|
|
2022-12-13 20:54:16 +08:00
|
|
|
func applyTransaction(msg types.Message, config *params.ChainConfig, gp *GasPool, statedb *state.StateDB, blockNumber *big.Int, blockHash common.Hash, tx *types.Transaction, usedGas *uint64, evm *vm.EVM) (*types.Receipt, error) {
|
2021-02-25 07:26:57 -07:00
|
|
|
// Create a new context to be used in the EVM environment.
|
2020-11-13 13:42:19 +01:00
|
|
|
txContext := NewEVMTxContext(msg)
|
|
|
|
evm.Reset(txContext, statedb)
|
2021-02-25 07:26:57 -07:00
|
|
|
|
|
|
|
// Apply the transaction to the current state (included in the env).
|
2020-11-13 13:42:19 +01:00
|
|
|
result, err := ApplyMessage(evm, msg, gp)
|
2015-10-19 16:08:17 +02:00
|
|
|
if err != nil {
|
2019-09-12 14:22:22 -05:00
|
|
|
return nil, err
|
2015-10-19 16:08:17 +02:00
|
|
|
}
|
2021-02-25 07:26:57 -07:00
|
|
|
|
|
|
|
// Update the state with pending changes.
|
2017-07-17 11:34:53 +03:00
|
|
|
var root []byte
|
2021-06-30 15:17:01 +02:00
|
|
|
if config.IsByzantium(blockNumber) {
|
2017-08-24 13:42:00 +03:00
|
|
|
statedb.Finalise(true)
|
2017-07-17 11:34:53 +03:00
|
|
|
} else {
|
2021-06-30 15:17:01 +02:00
|
|
|
root = statedb.IntermediateRoot(config.IsEIP158(blockNumber)).Bytes()
|
2017-07-17 11:34:53 +03:00
|
|
|
}
|
2020-04-22 16:25:36 +08:00
|
|
|
*usedGas += result.UsedGas
|
2017-07-17 11:34:53 +03:00
|
|
|
|
2021-02-25 07:26:57 -07:00
|
|
|
// Create a new receipt for the transaction, storing the intermediate root and gas used
|
|
|
|
// by the tx.
|
|
|
|
receipt := &types.Receipt{Type: tx.Type(), PostState: root, CumulativeGasUsed: *usedGas}
|
|
|
|
if result.Failed() {
|
|
|
|
receipt.Status = types.ReceiptStatusFailed
|
|
|
|
} else {
|
|
|
|
receipt.Status = types.ReceiptStatusSuccessful
|
|
|
|
}
|
2015-10-19 16:08:17 +02:00
|
|
|
receipt.TxHash = tx.Hash()
|
2020-04-22 16:25:36 +08:00
|
|
|
receipt.GasUsed = result.UsedGas
|
2021-02-25 07:26:57 -07:00
|
|
|
|
|
|
|
// If the transaction created a contract, store the creation address in the receipt.
|
2016-12-06 02:16:03 +01:00
|
|
|
if msg.To() == nil {
|
2020-11-13 13:42:19 +01:00
|
|
|
receipt.ContractAddress = crypto.CreateAddress(evm.TxContext.Origin, tx.Nonce())
|
2015-10-19 16:08:17 +02:00
|
|
|
}
|
2021-02-25 07:26:57 -07:00
|
|
|
|
|
|
|
// Set the receipt logs and create the bloom filter.
|
2022-12-13 20:54:16 +08:00
|
|
|
receipt.Logs = statedb.GetLogs(tx.Hash(), blockNumber.Uint64(), blockHash)
|
2015-10-19 16:08:17 +02:00
|
|
|
receipt.Bloom = types.CreateBloom(types.Receipts{receipt})
|
2021-06-30 15:17:01 +02:00
|
|
|
receipt.BlockHash = blockHash
|
|
|
|
receipt.BlockNumber = blockNumber
|
2019-03-27 08:39:25 -04:00
|
|
|
receipt.TransactionIndex = uint(statedb.TxIndex())
|
2019-09-12 14:22:22 -05:00
|
|
|
return receipt, err
|
2015-10-19 16:08:17 +02:00
|
|
|
}
|
2020-11-13 13:42:19 +01:00
|
|
|
|
|
|
|
// ApplyTransaction attempts to apply a transaction to the given state database
|
|
|
|
// and uses the input parameters for its environment. It returns the receipt
|
|
|
|
// for the transaction, gas used and an error if the transaction failed,
|
|
|
|
// indicating the block was invalid.
|
|
|
|
func ApplyTransaction(config *params.ChainConfig, bc ChainContext, author *common.Address, gp *GasPool, statedb *state.StateDB, header *types.Header, tx *types.Transaction, usedGas *uint64, cfg vm.Config) (*types.Receipt, error) {
|
2021-05-17 15:13:22 +02:00
|
|
|
msg, err := tx.AsMessage(types.MakeSigner(config, header.Number), header.BaseFee)
|
2020-11-13 13:42:19 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
// Create a new context to be used in the EVM environment
|
|
|
|
blockContext := NewEVMBlockContext(header, bc, author)
|
optimism: historical Bedrock geth rollup changes
This commit squashes the op-geth fork history into a more maintainable
diff for rebasing upon upstream geth.
reference-optimistic-geth changes (origins of op-geth in early Bedrock
development stage):
- Deposit TX Type
- Enable deposit tx in EVM/tx pool
- Change deposit nonce to not be the max nonce
- Extend PayloadAttributesV1 with a Transactions field
- Force deposits at the start of each L2 block
- Fix height check
- noTxPool flag, reproduce block in verifier mode without tx pool interference
- Fix RPC json marshalling (ref op-geth PR 4)
- Deposit txs block height check in block body validation (ref op-geth PR 5)
- core: do not try to reinject deposit txs into tx-pool (ref-op-geth PR 6)
- deposit source hash field instead of L2 block height and tx index combination
- Include invalid deposits, rewind state, but always persist mint (#10)
- Provide gas to Call/Create in deposit transactions (#12)
- Add docker builds (ref-op-geth PR 16, 17)
- Don't panic on deposit transaction signature values or chain ID (ref-op-geth PR 18)
- core: Add version to DepositTx (ref-op-geth PR 19)
- Enable Geth build/lint/test in CircleCI (ref-op-geth PR 23)
- core: Include guaranteed gas in the gas pool (ref-op-geth PR 21)
- core: handle base fee, l1 availability fee, tx fee (ref-op-geth PR 27)
- fix: deposit tx hash
- fix l1 fee cache, rpc, tracing and tx pool
- core: remove deposit-tx sub-type (a.k.a. deposit version byte)
- eth/catalyst: allow engine user to reorg own chain
- miner: restore ability to reorg deep as block builder
- params: print Optimism consensus type in banner
- core/types: remove unused protected() method, see upstream PR 23376
- core: do not mutate original balance value in tx pool l1 cost adjustment
- core: subtract deposit gas from pool, so other txs do not use the same gas. And fail tx processing if deposits reach gas limit
- core/types: deposits do not tip, avoid basefee subtraction
- Unmeter the L1 Attributes Transaction
- miner: handle force tx errors as critical, clean up diff
- ci: Switch branch
- eth,miner: return STATUS_INVALID when failing to process forced transactions in request (ref-op-geth PR 40)
- verifier: forward tx to sequencer based on flag
- txpool: add flag to disable tx gossip (ref-op-geth PR 42)
- Add op-geth version in addition to geth version (ref-op-geth PR 43)
- ci: CircleCI improvements (ref-op-geth PR 44)
- Rename to op-geth
- Build latest tag on optimism branch
op-geth changes:
- Expose cache config in simulated backend (#2)
- Add EIP-1559 parameters
- eth/catalyst: update payload id computation (#1)
- make eip1559 configurable (#4)
- post-merge network should not log warnings about missing transition information (#5)
- Make the simulator more configurable (#6)
- fix OPB-6 - IsDepositTx check instead of artificial nonce value check (#7)
- Simulated backend - enable proof of stake consensus type and fix performance issue (#8)
- accounts: simulated backend consensus engine option and immediate tx indexing
- consensus/beacon: recognize all blocks as reached TTD with 0 TTD in chain config
- Add --rollup.historicalhttp CLI flag and fix backend iface
- Flags and interfaces for historical RPC requests (#12)
- Redirect historical RPC requests (#13)
- Use the pre-existing ethereum.NotFound error (#18)
- Add historical endpoint to TraceBlockByNumber and TraceBlockByHash (#19)
- Add historical endpoint to TraceTransaction (#20)
- Add historical endpoint to TraceCall (#21)
- optimism: fee params from info txi, update l1 cost func GPO params read (#15)
- add hardcoded addresses for fee payouts (#23)
- dynamic gas limit via engine API (#22)
Co-authored-by: Matthew Slipper <me@matthewslipper.com>
Co-authored-by: Joshua Gutow <jgutow@oplabs.co>
Co-authored-by: protolambda <proto@protolambda.com>
Co-authored-by: Mark Tyneway <mark.tyneway@gmail.com>
Co-authored-by: Maurelian <maurelian@protonmail.ch>
2022-03-10 12:13:11 -08:00
|
|
|
blockContext.L1CostFunc = types.NewL1CostFunc(config, statedb)
|
2020-11-13 13:42:19 +01:00
|
|
|
vmenv := vm.NewEVM(blockContext, vm.TxContext{}, statedb, config, cfg)
|
2022-12-13 20:54:16 +08:00
|
|
|
return applyTransaction(msg, config, gp, statedb, header.Number, header.Hash(), tx, usedGas, vmenv)
|
2020-11-13 13:42:19 +01:00
|
|
|
}
|