2019-05-27 13:51:49 +00:00
// Copyright 2019 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/>.
// Package state provides a caching layer atop the Ethereum state trie.
package state
import (
"fmt"
"sort"
2020-05-25 11:12:25 +00:00
"github.com/holiman/uint256"
2021-05-20 18:25:53 +00:00
"github.com/ledgerwatch/erigon/common"
"github.com/ledgerwatch/erigon/common/u256"
"github.com/ledgerwatch/erigon/core/types"
"github.com/ledgerwatch/erigon/core/types/accounts"
"github.com/ledgerwatch/erigon/crypto"
"github.com/ledgerwatch/erigon/params"
"github.com/ledgerwatch/erigon/turbo/trie"
2021-07-29 10:23:23 +00:00
"github.com/ledgerwatch/log/v3"
2019-05-27 13:51:49 +00:00
)
type revision struct {
id int
journalIndex int
}
type StateTracer interface {
CaptureAccountRead ( account common . Address ) error
CaptureAccountWrite ( account common . Address ) error
}
2021-07-24 09:50:42 +00:00
// SystemAddress - sender address for internal state updates.
var SystemAddress = common . HexToAddress ( "0xfffffffffffffffffffffffffffffffffffffffe" )
2019-05-27 13:51:49 +00:00
// IntraBlockState is responsible for caching and managing state changes
// that occur during block's execution.
2021-04-26 09:40:25 +00:00
// NOT THREAD SAFE!
2019-05-27 13:51:49 +00:00
type IntraBlockState struct {
stateReader StateReader
// This map holds 'live' objects, which will get modified while processing a state transition.
stateObjects map [ common . Address ] * stateObject
stateObjectsDirty map [ common . Address ] struct { }
nilAccounts map [ common . Address ] struct { } // Remember non-existent account to avoid reading them again
// DB error.
// State objects are used by the consensus core and VM which are
// unable to deal with database-level errors. Any error that occurs
// during a database read is memoized here and will eventually be returned
// by IntraBlockState.Commit.
dbErr error
// The refund counter, also used by state transitioning.
refund uint64
thash , bhash common . Hash
txIndex int
logs map [ common . Hash ] [ ] * types . Log
logSize uint
// Journal of state modifications. This is the backbone of
// Snapshot and RevertToSnapshot.
journal * journal
validRevisions [ ] revision
nextRevisionID int
tracer StateTracer
trace bool
2020-12-03 14:52:07 +00:00
accessList * accessList
2019-05-27 13:51:49 +00:00
}
// Create a new state from a given trie
func New ( stateReader StateReader ) * IntraBlockState {
return & IntraBlockState {
stateReader : stateReader ,
stateObjects : make ( map [ common . Address ] * stateObject ) ,
stateObjectsDirty : make ( map [ common . Address ] struct { } ) ,
nilAccounts : make ( map [ common . Address ] struct { } ) ,
logs : make ( map [ common . Hash ] [ ] * types . Log ) ,
journal : newJournal ( ) ,
2020-12-03 14:52:07 +00:00
accessList : newAccessList ( ) ,
2019-05-27 13:51:49 +00:00
}
}
2020-08-21 20:53:23 +00:00
// Copy creates a deep, independent copy of the state.
// Snapshots of the copied state cannot be applied to the copy.
func ( sdb * IntraBlockState ) Copy ( ) * IntraBlockState {
// Copy all the basic fields, initialize the memory ones
ibs := & IntraBlockState {
stateReader : sdb . stateReader ,
stateObjects : make ( map [ common . Address ] * stateObject , len ( sdb . journal . dirties ) ) ,
stateObjectsDirty : make ( map [ common . Address ] struct { } , len ( sdb . journal . dirties ) ) ,
nilAccounts : make ( map [ common . Address ] struct { } ) ,
refund : sdb . refund ,
logs : make ( map [ common . Hash ] [ ] * types . Log , len ( sdb . logs ) ) ,
logSize : sdb . logSize ,
journal : newJournal ( ) ,
}
// Copy the dirty states, logs, and preimages
for addr := range sdb . journal . dirties {
// As documented [here](https://github.com/ethereum/go-ethereum/pull/16485#issuecomment-380438527),
// and in the Finalise-method, there is a case where an object is in the journal but not
// in the stateObjects: OOG after touch on ripeMD prior to Byzantium. Thus, we need to check for
// nil
if object , exist := sdb . stateObjects [ addr ] ; exist {
// Even though the original object is dirty, we are not copying the journal,
// so we need to make sure that anyside effect the journal would have caused
// during a commit (or similar op) is already applied to the copy.
ibs . stateObjects [ addr ] = object . deepCopy ( ibs )
ibs . stateObjectsDirty [ addr ] = struct { } { } // Mark the copy dirty to force internal (code/state) commits
}
}
// Above, we don't copy the actual journal. This means that if the copy is copied, the
// loop above will be a no-op, since the copy's journal is empty.
// Thus, here we iterate over stateObjects, to enable copies of copies
for addr := range sdb . stateObjectsDirty {
if _ , exist := ibs . stateObjects [ addr ] ; ! exist {
ibs . stateObjects [ addr ] = sdb . stateObjects [ addr ] . deepCopy ( ibs )
}
ibs . stateObjectsDirty [ addr ] = struct { } { }
}
for hash , logs := range sdb . logs {
cpy := make ( [ ] * types . Log , len ( logs ) )
for i , l := range logs {
cpy [ i ] = new ( types . Log )
* cpy [ i ] = * l
}
ibs . logs [ hash ] = cpy
}
2020-12-03 14:52:07 +00:00
// comment from https://github.com/ethereum/go-ethereum/commit/6487c002f6b47e08cb9814f16712c6789b313a97#diff-c3757dc9e9d868f63bc84a0cc67159c1d5c22cc5d8c9468757098f0492e0658cR705
// Do we need to copy the access list? In practice: No. At the start of a
// transaction, the access list is empty. In practice, we only ever copy state
// _between_ transactions/blocks, never in the middle of a transaction.
// However, it doesn't cost us much to copy an empty list, so we do it anyway
// to not blow up if we ever decide copy it in the middle of a transaction
ibs . accessList = sdb . accessList . Copy ( )
2020-08-21 20:53:23 +00:00
return ibs
}
2019-05-27 13:51:49 +00:00
func ( sdb * IntraBlockState ) SetTracer ( tracer StateTracer ) {
sdb . tracer = tracer
}
func ( sdb * IntraBlockState ) SetTrace ( trace bool ) {
sdb . trace = trace
}
2020-04-08 15:53:22 +00:00
// setErrorUnsafe sets error but should be called in medhods that already have locks
func ( sdb * IntraBlockState ) setErrorUnsafe ( err error ) {
2019-05-27 13:51:49 +00:00
if sdb . dbErr == nil {
sdb . dbErr = err
}
}
func ( sdb * IntraBlockState ) Error ( ) error {
return sdb . dbErr
}
// Reset clears out all ephemeral state objects from the state db, but keeps
// the underlying state trie to avoid reloading data for the next operations.
2021-07-08 12:40:43 +00:00
func ( sdb * IntraBlockState ) Reset ( ) {
2019-05-27 13:51:49 +00:00
sdb . stateObjects = make ( map [ common . Address ] * stateObject )
sdb . stateObjectsDirty = make ( map [ common . Address ] struct { } )
sdb . thash = common . Hash { }
sdb . bhash = common . Hash { }
sdb . txIndex = 0
sdb . logs = make ( map [ common . Hash ] [ ] * types . Log )
sdb . logSize = 0
sdb . clearJournalAndRefund ( )
2020-12-03 14:52:07 +00:00
sdb . accessList = newAccessList ( )
2019-05-27 13:51:49 +00:00
}
func ( sdb * IntraBlockState ) AddLog ( log * types . Log ) {
sdb . journal . append ( addLogChange { txhash : sdb . thash } )
log . TxHash = sdb . thash
log . BlockHash = sdb . bhash
log . TxIndex = uint ( sdb . txIndex )
log . Index = sdb . logSize
sdb . logs [ sdb . thash ] = append ( sdb . logs [ sdb . thash ] , log )
sdb . logSize ++
}
func ( sdb * IntraBlockState ) GetLogs ( hash common . Hash ) [ ] * types . Log {
return sdb . logs [ hash ]
}
func ( sdb * IntraBlockState ) Logs ( ) [ ] * types . Log {
var logs [ ] * types . Log
for _ , lgs := range sdb . logs {
logs = append ( logs , lgs ... )
}
return logs
}
// AddRefund adds gas to the refund counter
func ( sdb * IntraBlockState ) AddRefund ( gas uint64 ) {
sdb . journal . append ( refundChange { prev : sdb . refund } )
sdb . refund += gas
}
// SubRefund removes gas from the refund counter.
// This method will panic if the refund counter goes below zero
func ( sdb * IntraBlockState ) SubRefund ( gas uint64 ) {
sdb . journal . append ( refundChange { prev : sdb . refund } )
if gas > sdb . refund {
panic ( "Refund counter below zero" )
}
sdb . refund -= gas
}
// Exist reports whether the given account address exists in the state.
// Notably this also returns true for suicided accounts.
func ( sdb * IntraBlockState ) Exist ( addr common . Address ) bool {
if sdb . tracer != nil {
err := sdb . tracer . CaptureAccountRead ( addr )
if sdb . trace {
fmt . Println ( "CaptureAccountRead err" , err )
}
}
2020-06-15 21:24:08 +00:00
s := sdb . getStateObject ( addr )
return s != nil && ! s . deleted
2019-05-27 13:51:49 +00:00
}
// Empty returns whether the state object is either non-existent
// or empty according to the EIP161 specification (balance = nonce = code = 0)
func ( sdb * IntraBlockState ) Empty ( addr common . Address ) bool {
if sdb . tracer != nil {
err := sdb . tracer . CaptureAccountRead ( addr )
if sdb . trace {
fmt . Println ( "CaptureAccountRead err" , err )
}
}
so := sdb . getStateObject ( addr )
2020-06-15 21:24:08 +00:00
return so == nil || so . deleted || so . empty ( )
2019-05-27 13:51:49 +00:00
}
// GetBalance retrieves the balance from the given address or 0 if object not found
// DESCRIBED: docs/programmers_guide/guide.md#address---identifier-of-an-account
2020-05-26 16:53:50 +00:00
func ( sdb * IntraBlockState ) GetBalance ( addr common . Address ) * uint256 . Int {
2019-05-27 13:51:49 +00:00
if sdb . tracer != nil {
err := sdb . tracer . CaptureAccountRead ( addr )
if sdb . trace {
fmt . Println ( "CaptureAccountRead err" , err )
}
}
stateObject := sdb . getStateObject ( addr )
2020-06-15 21:24:08 +00:00
if stateObject != nil && ! stateObject . deleted {
2019-05-27 13:51:49 +00:00
return stateObject . Balance ( )
}
2020-06-05 16:46:34 +00:00
return u256 . Num0
2019-05-27 13:51:49 +00:00
}
// DESCRIBED: docs/programmers_guide/guide.md#address---identifier-of-an-account
func ( sdb * IntraBlockState ) GetNonce ( addr common . Address ) uint64 {
if sdb . tracer != nil {
err := sdb . tracer . CaptureAccountRead ( addr )
if sdb . trace {
fmt . Println ( "CaptureAccountRead err" , err )
}
}
stateObject := sdb . getStateObject ( addr )
2020-06-15 21:24:08 +00:00
if stateObject != nil && ! stateObject . deleted {
2019-05-27 13:51:49 +00:00
return stateObject . Nonce ( )
}
return 0
}
2021-03-12 17:26:06 +00:00
// TxIndex returns the current transaction index set by Prepare.
func ( sdb * IntraBlockState ) TxIndex ( ) int {
return sdb . txIndex
}
2019-05-27 13:51:49 +00:00
// DESCRIBED: docs/programmers_guide/guide.md#address---identifier-of-an-account
func ( sdb * IntraBlockState ) GetCode ( addr common . Address ) [ ] byte {
if sdb . tracer != nil {
err := sdb . tracer . CaptureAccountRead ( addr )
if sdb . trace {
fmt . Println ( "CaptureAccountRead err" , err )
}
}
stateObject := sdb . getStateObject ( addr )
2020-06-15 21:24:08 +00:00
if stateObject != nil && ! stateObject . deleted {
2019-05-27 13:51:49 +00:00
if sdb . trace {
fmt . Printf ( "GetCode %x, returned %d\n" , addr , len ( stateObject . Code ( ) ) )
}
return stateObject . Code ( )
}
if sdb . trace {
fmt . Printf ( "GetCode %x, returned nil\n" , addr )
}
return nil
}
// DESCRIBED: docs/programmers_guide/guide.md#address---identifier-of-an-account
func ( sdb * IntraBlockState ) GetCodeSize ( addr common . Address ) int {
if sdb . tracer != nil {
err := sdb . tracer . CaptureAccountRead ( addr )
if sdb . trace {
fmt . Println ( "CaptureAccountRead err" , err )
}
}
stateObject := sdb . getStateObject ( addr )
2020-06-15 21:24:08 +00:00
if stateObject == nil || stateObject . deleted {
2019-05-27 13:51:49 +00:00
return 0
}
if stateObject . code != nil {
return len ( stateObject . code )
}
2020-12-08 09:44:29 +00:00
len , err := sdb . stateReader . ReadAccountCodeSize ( addr , stateObject . data . Incarnation , common . BytesToHash ( stateObject . CodeHash ( ) ) )
2019-05-27 13:51:49 +00:00
if err != nil {
2020-04-08 15:53:22 +00:00
sdb . setErrorUnsafe ( err )
2019-05-27 13:51:49 +00:00
}
return len
}
// DESCRIBED: docs/programmers_guide/guide.md#address---identifier-of-an-account
func ( sdb * IntraBlockState ) GetCodeHash ( addr common . Address ) common . Hash {
if sdb . tracer != nil {
err := sdb . tracer . CaptureAccountRead ( addr )
if sdb . trace {
fmt . Println ( "CaptureAccountRead err" , err )
}
}
stateObject := sdb . getStateObject ( addr )
2020-06-15 21:24:08 +00:00
if stateObject == nil || stateObject . deleted {
2019-05-27 13:51:49 +00:00
return common . Hash { }
}
return common . BytesToHash ( stateObject . CodeHash ( ) )
}
// GetState retrieves a value from the given account's storage trie.
// DESCRIBED: docs/programmers_guide/guide.md#address---identifier-of-an-account
2020-05-25 11:12:25 +00:00
func ( sdb * IntraBlockState ) GetState ( addr common . Address , key * common . Hash , value * uint256 . Int ) {
2019-05-27 13:51:49 +00:00
stateObject := sdb . getStateObject ( addr )
2020-06-15 21:24:08 +00:00
if stateObject != nil && ! stateObject . deleted {
2020-05-24 16:43:54 +00:00
stateObject . GetState ( key , value )
} else {
value . Clear ( )
2019-05-27 13:51:49 +00:00
}
}
// GetCommittedState retrieves a value from the given account's committed storage trie.
// DESCRIBED: docs/programmers_guide/guide.md#address---identifier-of-an-account
2020-05-25 11:12:25 +00:00
func ( sdb * IntraBlockState ) GetCommittedState ( addr common . Address , key * common . Hash , value * uint256 . Int ) {
2019-05-27 13:51:49 +00:00
stateObject := sdb . getStateObject ( addr )
2020-06-15 21:24:08 +00:00
if stateObject != nil && ! stateObject . deleted {
2020-05-24 16:43:54 +00:00
stateObject . GetCommittedState ( key , value )
} else {
value . Clear ( )
2019-05-27 13:51:49 +00:00
}
}
func ( sdb * IntraBlockState ) HasSuicided ( addr common . Address ) bool {
stateObject := sdb . getStateObject ( addr )
2020-06-15 21:24:08 +00:00
if stateObject == nil {
return false
}
if stateObject . deleted {
return false
}
if stateObject . created {
return false
2019-05-27 13:51:49 +00:00
}
2020-06-15 21:24:08 +00:00
return stateObject . suicided
2019-05-27 13:51:49 +00:00
}
/ *
* SETTERS
* /
// AddBalance adds amount to the account associated with addr.
// DESCRIBED: docs/programmers_guide/guide.md#address---identifier-of-an-account
2020-05-26 16:53:50 +00:00
func ( sdb * IntraBlockState ) AddBalance ( addr common . Address , amount * uint256 . Int ) {
2019-05-27 13:51:49 +00:00
if sdb . trace {
fmt . Printf ( "AddBalance %x, %d\n" , addr , amount )
}
if sdb . tracer != nil {
err := sdb . tracer . CaptureAccountWrite ( addr )
if sdb . trace {
fmt . Println ( "CaptureAccountWrite err" , err )
}
}
2019-12-10 13:12:21 +00:00
2019-05-27 13:51:49 +00:00
stateObject := sdb . GetOrNewStateObject ( addr )
if stateObject != nil {
stateObject . AddBalance ( amount )
}
}
// SubBalance subtracts amount from the account associated with addr.
// DESCRIBED: docs/programmers_guide/guide.md#address---identifier-of-an-account
2020-05-26 16:53:50 +00:00
func ( sdb * IntraBlockState ) SubBalance ( addr common . Address , amount * uint256 . Int ) {
2019-05-27 13:51:49 +00:00
if sdb . trace {
fmt . Printf ( "SubBalance %x, %d\n" , addr , amount )
}
if sdb . tracer != nil {
err := sdb . tracer . CaptureAccountWrite ( addr )
if sdb . trace {
fmt . Println ( "CaptureAccountWrite err" , err )
}
}
2019-12-10 13:12:21 +00:00
2019-05-27 13:51:49 +00:00
stateObject := sdb . GetOrNewStateObject ( addr )
if stateObject != nil {
stateObject . SubBalance ( amount )
}
}
// DESCRIBED: docs/programmers_guide/guide.md#address---identifier-of-an-account
2020-05-26 16:53:50 +00:00
func ( sdb * IntraBlockState ) SetBalance ( addr common . Address , amount * uint256 . Int ) {
2019-05-27 13:51:49 +00:00
if sdb . tracer != nil {
err := sdb . tracer . CaptureAccountWrite ( addr )
if sdb . trace {
fmt . Println ( "CaptureAccountWrite err" , err )
}
}
2019-12-10 13:12:21 +00:00
2019-05-27 13:51:49 +00:00
stateObject := sdb . GetOrNewStateObject ( addr )
if stateObject != nil {
stateObject . SetBalance ( amount )
}
}
// DESCRIBED: docs/programmers_guide/guide.md#address---identifier-of-an-account
func ( sdb * IntraBlockState ) SetNonce ( addr common . Address , nonce uint64 ) {
if sdb . tracer != nil {
err := sdb . tracer . CaptureAccountWrite ( addr )
if sdb . trace {
fmt . Println ( "CaptureAccountWrite err" , err )
}
}
2019-12-10 13:12:21 +00:00
2019-05-27 13:51:49 +00:00
stateObject := sdb . GetOrNewStateObject ( addr )
if stateObject != nil {
stateObject . SetNonce ( nonce )
}
}
// DESCRIBED: docs/programmers_guide/guide.md#code-hash
// DESCRIBED: docs/programmers_guide/guide.md#address---identifier-of-an-account
func ( sdb * IntraBlockState ) SetCode ( addr common . Address , code [ ] byte ) {
if sdb . tracer != nil {
err := sdb . tracer . CaptureAccountWrite ( addr )
if sdb . trace {
fmt . Println ( "CaptureAccountWrite err" , err )
}
}
2019-12-10 13:12:21 +00:00
2019-05-27 13:51:49 +00:00
stateObject := sdb . GetOrNewStateObject ( addr )
if stateObject != nil {
stateObject . SetCode ( crypto . Keccak256Hash ( code ) , code )
}
}
// DESCRIBED: docs/programmers_guide/guide.md#address---identifier-of-an-account
2020-05-25 11:12:25 +00:00
func ( sdb * IntraBlockState ) SetState ( addr common . Address , key * common . Hash , value uint256 . Int ) {
2019-05-27 13:51:49 +00:00
stateObject := sdb . GetOrNewStateObject ( addr )
if stateObject != nil {
stateObject . SetState ( key , value )
}
}
// SetStorage replaces the entire storage for the specified account with given
// storage. This function should only be used for debugging.
2020-05-25 11:12:25 +00:00
func ( sdb * IntraBlockState ) SetStorage ( addr common . Address , storage Storage ) {
2021-07-08 12:40:43 +00:00
fmt . Printf ( "SetStorage: %x, %s\n " , addr , storage . String ( ) )
2019-05-27 13:51:49 +00:00
stateObject := sdb . GetOrNewStateObject ( addr )
if stateObject != nil {
stateObject . SetStorage ( storage )
}
}
2019-12-20 12:25:40 +00:00
// SetIncarnation sets incarnation for account if account exists
func ( sdb * IntraBlockState ) SetIncarnation ( addr common . Address , incarnation uint64 ) {
stateObject := sdb . GetOrNewStateObject ( addr )
if stateObject != nil {
stateObject . setIncarnation ( incarnation )
}
}
2020-06-15 21:24:08 +00:00
func ( sdb * IntraBlockState ) GetIncarnation ( addr common . Address ) uint64 {
stateObject := sdb . getStateObject ( addr )
if stateObject != nil {
return stateObject . data . Incarnation
}
return 0
}
2019-05-27 13:51:49 +00:00
// Suicide marks the given account as suicided.
// This clears the account balance.
//
// The account's state object is still available until the state is committed,
// getStateObject will return a non-nil account after Suicide.
func ( sdb * IntraBlockState ) Suicide ( addr common . Address ) bool {
if sdb . tracer != nil {
err := sdb . tracer . CaptureAccountRead ( addr )
if sdb . trace {
fmt . Println ( "CaptureAccountRead err" , err )
}
err = sdb . tracer . CaptureAccountWrite ( addr )
if sdb . trace {
fmt . Println ( "CaptureAccountWrite err" , err )
}
}
stateObject := sdb . getStateObject ( addr )
2020-06-15 21:24:08 +00:00
if stateObject == nil || stateObject . deleted {
2019-05-27 13:51:49 +00:00
return false
}
sdb . journal . append ( suicideChange {
account : & addr ,
prev : stateObject . suicided ,
2020-05-26 16:53:50 +00:00
prevbalance : * stateObject . Balance ( ) ,
2019-05-27 13:51:49 +00:00
} )
stateObject . markSuicided ( )
2020-06-15 21:24:08 +00:00
stateObject . created = false
2020-05-26 16:53:50 +00:00
stateObject . data . Balance . Clear ( )
2019-05-27 13:51:49 +00:00
return true
}
// Retrieve a state object given my the address. Returns nil if not found.
func ( sdb * IntraBlockState ) getStateObject ( addr common . Address ) ( stateObject * stateObject ) {
// Prefer 'live' objects.
if obj := sdb . stateObjects [ addr ] ; obj != nil {
return obj
}
// Load the object from the database.
if _ , ok := sdb . nilAccounts [ addr ] ; ok {
return nil
}
account , err := sdb . stateReader . ReadAccountData ( addr )
if err != nil {
2020-04-14 13:59:04 +00:00
sdb . setErrorUnsafe ( err )
2019-05-27 13:51:49 +00:00
return nil
}
if account == nil {
sdb . nilAccounts [ addr ] = struct { } { }
return nil
}
2019-12-20 12:25:40 +00:00
2019-05-27 13:51:49 +00:00
// Insert into the live set.
obj := newObject ( sdb , addr , account , account )
sdb . setStateObject ( obj )
return obj
}
func ( sdb * IntraBlockState ) setStateObject ( object * stateObject ) {
sdb . stateObjects [ object . Address ( ) ] = object
}
// Retrieve a state object or create a new state object if nil.
func ( sdb * IntraBlockState ) GetOrNewStateObject ( addr common . Address ) * stateObject {
stateObject := sdb . getStateObject ( addr )
if stateObject == nil || stateObject . deleted {
2020-07-09 06:15:28 +00:00
stateObject = sdb . createObject ( addr , nil /* previous */ )
2019-05-27 13:51:49 +00:00
}
return stateObject
}
// createObject creates a new state object. If there is an existing account with
2020-03-20 10:08:13 +00:00
// the given address, it is overwritten.
2020-07-09 06:15:28 +00:00
func ( sdb * IntraBlockState ) createObject ( addr common . Address , previous * stateObject ) ( newobj * stateObject ) {
2019-12-20 12:25:40 +00:00
account := new ( accounts . Account )
2020-07-01 14:56:56 +00:00
if previous != nil {
2020-07-09 06:15:28 +00:00
account . Balance . Set ( & previous . data . Balance )
account . Initialised = true
2020-07-01 14:56:56 +00:00
}
2020-07-09 06:15:28 +00:00
var original * accounts . Account
if previous == nil {
2020-07-01 14:56:56 +00:00
original = & accounts . Account { }
2020-07-09 06:15:28 +00:00
} else {
original = & previous . original
2019-05-27 13:51:49 +00:00
}
2020-04-13 10:00:44 +00:00
account . Root . SetBytes ( trie . EmptyRoot [ : ] ) // old storage should be ignored
2019-05-27 13:51:49 +00:00
newobj = newObject ( sdb , addr , account , original )
2020-06-15 21:24:08 +00:00
if previous != nil && previous . suicided {
newobj . suicided = true
}
2019-05-27 13:51:49 +00:00
newobj . setNonce ( 0 ) // sets the object to dirty
2020-03-20 10:08:13 +00:00
if previous == nil {
2019-05-27 13:51:49 +00:00
sdb . journal . append ( createObjectChange { account : & addr } )
} else {
2020-03-20 10:08:13 +00:00
sdb . journal . append ( resetObjectChange { prev : previous } )
2019-05-27 13:51:49 +00:00
}
sdb . setStateObject ( newobj )
2020-03-20 10:08:13 +00:00
return newobj
2019-05-27 13:51:49 +00:00
}
// CreateAccount explicitly creates a state object. If a state object with the address
// already exists the balance is carried over to the new account.
//
// CreateAccount is called during the EVM CREATE operation. The situation might arise that
// a contract does the following:
//
// 1. sends funds to sha(account ++ (nonce + 1))
// 2. tx_create(sha(account ++ nonce)) (note that this gets the address of 1)
//
// Carrying over the balance ensures that Ether doesn't disappear.
2020-01-08 09:55:56 +00:00
func ( sdb * IntraBlockState ) CreateAccount ( addr common . Address , contractCreation bool ) {
2019-05-27 13:51:49 +00:00
if sdb . tracer != nil {
err := sdb . tracer . CaptureAccountRead ( addr )
if sdb . trace && err != nil {
log . Error ( "error while CaptureAccountRead" , "err" , err )
}
err = sdb . tracer . CaptureAccountWrite ( addr )
2020-05-02 18:00:42 +00:00
if sdb . trace && err != nil {
2019-05-27 13:51:49 +00:00
log . Error ( "error while CaptureAccountWrite" , "err" , err )
}
}
2020-05-02 18:00:42 +00:00
var prevInc uint64
2020-07-09 06:15:28 +00:00
previous := sdb . getStateObject ( addr )
2020-01-08 09:55:56 +00:00
if contractCreation {
2020-06-15 21:24:08 +00:00
if previous != nil && previous . suicided {
prevInc = previous . data . Incarnation
} else {
inc , err := sdb . stateReader . ReadAccountIncarnation ( addr )
if sdb . trace && err != nil {
log . Error ( "error while ReadAccountIncarnation" , "err" , err )
}
if err == nil {
prevInc = inc
}
2020-05-02 18:00:42 +00:00
}
2019-05-27 13:51:49 +00:00
}
2020-01-08 09:55:56 +00:00
2020-07-09 06:15:28 +00:00
newObj := sdb . createObject ( addr , previous )
2020-01-08 09:55:56 +00:00
if contractCreation {
newObj . created = true
2020-05-02 18:00:42 +00:00
newObj . data . Incarnation = prevInc + 1
2020-07-09 06:15:28 +00:00
} else {
newObj . suicided = false
2020-01-08 09:55:56 +00:00
}
2019-05-27 13:51:49 +00:00
}
// Snapshot returns an identifier for the current revision of the state.
func ( sdb * IntraBlockState ) Snapshot ( ) int {
id := sdb . nextRevisionID
sdb . nextRevisionID ++
sdb . validRevisions = append ( sdb . validRevisions , revision { id , sdb . journal . length ( ) } )
return id
}
// RevertToSnapshot reverts all state changes made since the given revision.
func ( sdb * IntraBlockState ) RevertToSnapshot ( revid int ) {
// Find the snapshot in the stack of valid snapshots.
idx := sort . Search ( len ( sdb . validRevisions ) , func ( i int ) bool {
return sdb . validRevisions [ i ] . id >= revid
} )
if idx == len ( sdb . validRevisions ) || sdb . validRevisions [ idx ] . id != revid {
panic ( fmt . Errorf ( "revision id %v cannot be reverted" , revid ) )
}
snapshot := sdb . validRevisions [ idx ] . journalIndex
// Replay the journal to undo changes and remove invalidated snapshots
sdb . journal . revert ( sdb , snapshot )
sdb . validRevisions = sdb . validRevisions [ : idx ]
}
// GetRefund returns the current value of the refund counter.
func ( sdb * IntraBlockState ) GetRefund ( ) uint64 {
return sdb . refund
}
2021-07-05 08:42:44 +00:00
func updateAccount ( EIP158Enabled bool , stateWriter StateWriter , addr common . Address , stateObject * stateObject , isDirty bool ) error {
emptyRemoval := EIP158Enabled && stateObject . empty ( )
2020-06-15 21:24:08 +00:00
if stateObject . suicided || ( isDirty && emptyRemoval ) {
2021-07-05 08:42:44 +00:00
if err := stateWriter . DeleteAccount ( addr , & stateObject . original ) ; err != nil {
2020-03-11 15:54:09 +00:00
return err
}
stateObject . deleted = true
2020-06-15 21:24:08 +00:00
}
if isDirty && ( stateObject . created || ! stateObject . suicided ) && ! emptyRemoval {
stateObject . deleted = false
2020-03-11 15:54:09 +00:00
// Write any contract code associated with the state object
if stateObject . code != nil && stateObject . dirtyCode {
2020-05-15 07:52:45 +00:00
if err := stateWriter . UpdateAccountCode ( addr , stateObject . data . Incarnation , common . BytesToHash ( stateObject . CodeHash ( ) ) , stateObject . code ) ; err != nil {
2020-03-11 15:54:09 +00:00
return err
}
}
2020-04-26 21:58:26 +00:00
if stateObject . created {
2020-05-02 18:00:42 +00:00
if err := stateWriter . CreateContract ( addr ) ; err != nil {
2020-04-26 21:58:26 +00:00
return err
}
}
2021-07-05 08:42:44 +00:00
if err := stateObject . updateTrie ( stateWriter ) ; err != nil {
2020-03-11 15:54:09 +00:00
return err
}
2021-07-05 08:42:44 +00:00
if err := stateWriter . UpdateAccountData ( addr , & stateObject . original , & stateObject . data ) ; err != nil {
2020-03-11 15:54:09 +00:00
return err
}
}
return nil
}
2021-07-12 15:27:25 +00:00
func printAccount ( EIP158Enabled bool , addr common . Address , stateObject * stateObject , isDirty bool ) {
emptyRemoval := EIP158Enabled && stateObject . empty ( )
if stateObject . suicided || ( isDirty && emptyRemoval ) {
fmt . Printf ( "delete: %x\n" , addr )
}
if isDirty && ( stateObject . created || ! stateObject . suicided ) && ! emptyRemoval {
// Write any contract code associated with the state object
if stateObject . code != nil && stateObject . dirtyCode {
fmt . Printf ( "UpdateCode: %x,%x\n" , addr , stateObject . CodeHash ( ) )
}
if stateObject . created {
fmt . Printf ( "CreateContract: %x\n" , addr )
}
stateObject . printTrie ( )
if stateObject . data . Balance . IsUint64 ( ) {
fmt . Printf ( "UpdateAccountData: %x, balance=%d, nonce=%d\n" , addr , stateObject . data . Balance . Uint64 ( ) , stateObject . data . Nonce )
} else {
div := uint256 . NewInt ( 1_000_000_000 )
fmt . Printf ( "UpdateAccountData: %x, balance=%d*%d, nonce=%d\n" , addr , uint256 . NewInt ( 0 ) . Div ( & stateObject . data . Balance , div ) . Uint64 ( ) , div . Uint64 ( ) , stateObject . data . Nonce )
}
}
}
2019-05-27 13:51:49 +00:00
// FinalizeTx should be called after every transaction.
2021-07-05 18:52:50 +00:00
func ( sdb * IntraBlockState ) FinalizeTx ( chainRules params . Rules , stateWriter StateWriter ) error {
2019-05-27 13:51:49 +00:00
for addr := range sdb . journal . dirties {
stateObject , exist := sdb . stateObjects [ addr ]
if ! exist {
// ripeMD is 'touched' at block 1714175, in tx 0x1237f737031e40bcde4a8b7e717b2d15e3ecadfe49bb1bbc71ee9deb09c6fcf2
// That tx goes out of gas, and although the notion of 'touched' does not exist there, the
// touch-event will still be recorded in the journal. Since ripeMD is a special snowflake,
// it will persist in the journal even though the journal is reverted. In this special circumstance,
// it may exist in `sdb.journal.dirties` but not in `sdb.stateObjects`.
// Thus, we can safely ignore it here
continue
}
2021-07-05 18:52:50 +00:00
if err := updateAccount ( chainRules . IsEIP158 , stateWriter , addr , stateObject , true ) ; err != nil {
2020-03-11 15:54:09 +00:00
return err
2019-05-27 13:51:49 +00:00
}
2020-03-11 15:54:09 +00:00
2019-05-27 13:51:49 +00:00
sdb . stateObjectsDirty [ addr ] = struct { } { }
}
// Invalidate journal because reverting across transactions is not allowed.
sdb . clearJournalAndRefund ( )
return nil
}
// CommitBlock finalizes the state by removing the self destructed objects
// and clears the journal as well as the refunds.
2021-07-05 18:52:50 +00:00
func ( sdb * IntraBlockState ) CommitBlock ( chainRules params . Rules , stateWriter StateWriter ) error {
2019-05-27 13:51:49 +00:00
for addr := range sdb . journal . dirties {
sdb . stateObjectsDirty [ addr ] = struct { } { }
}
for addr , stateObject := range sdb . stateObjects {
_ , isDirty := sdb . stateObjectsDirty [ addr ]
2021-07-05 18:52:50 +00:00
if err := updateAccount ( chainRules . IsEIP158 , stateWriter , addr , stateObject , isDirty ) ; err != nil {
2020-03-11 15:54:09 +00:00
return err
2019-05-27 13:51:49 +00:00
}
}
// Invalidate journal because reverting across transactions is not allowed.
sdb . clearJournalAndRefund ( )
return nil
}
2021-07-12 15:27:25 +00:00
func ( sdb * IntraBlockState ) Print ( chainRules params . Rules ) {
for addr , stateObject := range sdb . stateObjects {
_ , isDirty := sdb . stateObjectsDirty [ addr ]
_ , isDirty2 := sdb . journal . dirties [ addr ]
printAccount ( chainRules . IsEIP158 , addr , stateObject , isDirty || isDirty2 )
}
}
2019-05-27 13:51:49 +00:00
// Prepare sets the current transaction hash and index and block hash which is
// used when the EVM emits new state logs.
func ( sdb * IntraBlockState ) Prepare ( thash , bhash common . Hash , ti int ) {
sdb . thash = thash
sdb . bhash = bhash
sdb . txIndex = ti
2020-12-03 14:52:07 +00:00
sdb . accessList = newAccessList ( )
2019-05-27 13:51:49 +00:00
}
2019-12-10 13:12:21 +00:00
// no not lock
2019-05-27 13:51:49 +00:00
func ( sdb * IntraBlockState ) clearJournalAndRefund ( ) {
sdb . journal = newJournal ( )
sdb . validRevisions = sdb . validRevisions [ : 0 ]
sdb . refund = 0
}
2020-12-03 14:52:07 +00:00
2021-03-12 17:26:06 +00:00
// PrepareAccessList handles the preparatory steps for executing a state transition with
// regards to both EIP-2929 and EIP-2930:
//
// - Add sender to access list (2929)
// - Add destination to access list (2929)
// - Add precompiles to access list (2929)
// - Add the contents of the optional tx access list (2930)
//
// This method should only be called if Yolov3/Berlin/2929+2930 is applicable at the current number.
func ( sdb * IntraBlockState ) PrepareAccessList ( sender common . Address , dst * common . Address , precompiles [ ] common . Address , list types . AccessList ) {
sdb . AddAddressToAccessList ( sender )
if dst != nil {
sdb . AddAddressToAccessList ( * dst )
// If it's a create-tx, the destination will be added inside evm.create
}
for _ , addr := range precompiles {
sdb . AddAddressToAccessList ( addr )
}
for _ , el := range list {
sdb . AddAddressToAccessList ( el . Address )
for _ , key := range el . StorageKeys {
sdb . AddSlotToAccessList ( el . Address , key )
}
}
}
2020-12-03 14:52:07 +00:00
// AddAddressToAccessList adds the given address to the access list
func ( sdb * IntraBlockState ) AddAddressToAccessList ( addr common . Address ) {
if sdb . accessList . AddAddress ( addr ) {
sdb . journal . append ( accessListAddAccountChange { & addr } )
}
}
// AddSlotToAccessList adds the given (address, slot)-tuple to the access list
func ( sdb * IntraBlockState ) AddSlotToAccessList ( addr common . Address , slot common . Hash ) {
addrMod , slotMod := sdb . accessList . AddSlot ( addr , slot )
if addrMod {
// In practice, this should not happen, since there is no way to enter the
// scope of 'address' without having the 'address' become already added
// to the access list (via call-variant, create, etc).
// Better safe than sorry, though
sdb . journal . append ( accessListAddAccountChange { & addr } )
}
if slotMod {
sdb . journal . append ( accessListAddSlotChange {
address : & addr ,
slot : & slot ,
} )
}
}
// AddressInAccessList returns true if the given address is in the access list.
func ( sdb * IntraBlockState ) AddressInAccessList ( addr common . Address ) bool {
return sdb . accessList . ContainsAddress ( addr )
}
// SlotInAccessList returns true if the given (address, slot)-tuple is in the access list.
func ( sdb * IntraBlockState ) SlotInAccessList ( addr common . Address , slot common . Hash ) ( addressPresent bool , slotPresent bool ) {
return sdb . accessList . Contains ( addr , slot )
}