github.com/Inphi/go-ethereum@v1.9.7/core/state_transition.go (about)

     1  // Copyright 2014 The go-ethereum Authors
     2  // This file is part of the go-ethereum library.
     3  //
     4  // The go-ethereum library is free software: you can redistribute it and/or modify
     5  // it under the terms of the GNU Lesser General Public License as published by
     6  // the Free Software Foundation, either version 3 of the License, or
     7  // (at your option) any later version.
     8  //
     9  // The go-ethereum library is distributed in the hope that it will be useful,
    10  // but WITHOUT ANY WARRANTY; without even the implied warranty of
    11  // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
    12  // GNU Lesser General Public License for more details.
    13  //
    14  // You should have received a copy of the GNU Lesser General Public License
    15  // along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
    16  
    17  package core
    18  
    19  import (
    20  	"errors"
    21  	"math"
    22  	"math/big"
    23  
    24  	"github.com/ethereum/go-ethereum/common"
    25  	"github.com/ethereum/go-ethereum/core/vm"
    26  	"github.com/ethereum/go-ethereum/log"
    27  	"github.com/ethereum/go-ethereum/params"
    28  )
    29  
    30  var (
    31  	errInsufficientBalanceForGas = errors.New("insufficient balance to pay for gas")
    32  )
    33  
    34  /*
    35  The State Transitioning Model
    36  
    37  A state transition is a change made when a transaction is applied to the current world state
    38  The state transitioning model does all the necessary work to work out a valid new state root.
    39  
    40  1) Nonce handling
    41  2) Pre pay gas
    42  3) Create a new state object if the recipient is \0*32
    43  4) Value transfer
    44  == If contract creation ==
    45    4a) Attempt to run transaction data
    46    4b) If valid, use result as code for the new state object
    47  == end ==
    48  5) Run Script section
    49  6) Derive new state root
    50  */
    51  type StateTransition struct {
    52  	gp         *GasPool
    53  	msg        Message
    54  	gas        uint64
    55  	gasPrice   *big.Int
    56  	initialGas uint64
    57  	value      *big.Int
    58  	data       []byte
    59  	state      vm.StateDB
    60  	evm        *vm.EVM
    61  }
    62  
    63  // Message represents a message sent to a contract.
    64  type Message interface {
    65  	From() common.Address
    66  	//FromFrontier() (common.Address, error)
    67  	To() *common.Address
    68  
    69  	GasPrice() *big.Int
    70  	Gas() uint64
    71  	Value() *big.Int
    72  
    73  	Nonce() uint64
    74  	CheckNonce() bool
    75  	Data() []byte
    76  }
    77  
    78  // IntrinsicGas computes the 'intrinsic gas' for a message with the given data.
    79  func IntrinsicGas(data []byte, contractCreation, isEIP155 bool, isEIP2028 bool) (uint64, error) {
    80  	// Set the starting gas for the raw transaction
    81  	var gas uint64
    82  	if contractCreation && isEIP155 {
    83  		gas = params.TxGasContractCreation
    84  	} else {
    85  		gas = params.TxGas
    86  	}
    87  	// Bump the required gas by the amount of transactional data
    88  	if len(data) > 0 {
    89  		// Zero and non-zero bytes are priced differently
    90  		var nz uint64
    91  		for _, byt := range data {
    92  			if byt != 0 {
    93  				nz++
    94  			}
    95  		}
    96  		// Make sure we don't exceed uint64 for all data combinations
    97  		nonZeroGas := params.TxDataNonZeroGasFrontier
    98  		if isEIP2028 {
    99  			nonZeroGas = params.TxDataNonZeroGasEIP2028
   100  		}
   101  		if (math.MaxUint64-gas)/nonZeroGas < nz {
   102  			return 0, vm.ErrOutOfGas
   103  		}
   104  		gas += nz * nonZeroGas
   105  
   106  		z := uint64(len(data)) - nz
   107  		if (math.MaxUint64-gas)/params.TxDataZeroGas < z {
   108  			return 0, vm.ErrOutOfGas
   109  		}
   110  		gas += z * params.TxDataZeroGas
   111  	}
   112  	return gas, nil
   113  }
   114  
   115  // NewStateTransition initialises and returns a new state transition object.
   116  func NewStateTransition(evm *vm.EVM, msg Message, gp *GasPool) *StateTransition {
   117  	return &StateTransition{
   118  		gp:       gp,
   119  		evm:      evm,
   120  		msg:      msg,
   121  		gasPrice: msg.GasPrice(),
   122  		value:    msg.Value(),
   123  		data:     msg.Data(),
   124  		state:    evm.StateDB,
   125  	}
   126  }
   127  
   128  // ApplyMessage computes the new state by applying the given message
   129  // against the old state within the environment.
   130  //
   131  // ApplyMessage returns the bytes returned by any EVM execution (if it took place),
   132  // the gas used (which includes gas refunds) and an error if it failed. An error always
   133  // indicates a core error meaning that the message would always fail for that particular
   134  // state and would never be accepted within a block.
   135  func ApplyMessage(evm *vm.EVM, msg Message, gp *GasPool) ([]byte, uint64, bool, error) {
   136  	return NewStateTransition(evm, msg, gp).TransitionDb()
   137  }
   138  
   139  // to returns the recipient of the message.
   140  func (st *StateTransition) to() common.Address {
   141  	if st.msg == nil || st.msg.To() == nil /* contract creation */ {
   142  		return common.Address{}
   143  	}
   144  	return *st.msg.To()
   145  }
   146  
   147  func (st *StateTransition) useGas(amount uint64) error {
   148  	if st.gas < amount {
   149  		return vm.ErrOutOfGas
   150  	}
   151  	st.gas -= amount
   152  
   153  	return nil
   154  }
   155  
   156  func (st *StateTransition) buyGas() error {
   157  	mgval := new(big.Int).Mul(new(big.Int).SetUint64(st.msg.Gas()), st.gasPrice)
   158  	if st.state.GetBalance(st.msg.From()).Cmp(mgval) < 0 {
   159  		return errInsufficientBalanceForGas
   160  	}
   161  	if err := st.gp.SubGas(st.msg.Gas()); err != nil {
   162  		return err
   163  	}
   164  	st.gas += st.msg.Gas()
   165  
   166  	st.initialGas = st.msg.Gas()
   167  	st.state.SubBalance(st.msg.From(), mgval)
   168  	return nil
   169  }
   170  
   171  func (st *StateTransition) preCheck() error {
   172  	// Make sure this transaction's nonce is correct.
   173  	if st.msg.CheckNonce() {
   174  		nonce := st.state.GetNonce(st.msg.From())
   175  		if nonce < st.msg.Nonce() {
   176  			return ErrNonceTooHigh
   177  		} else if nonce > st.msg.Nonce() {
   178  			return ErrNonceTooLow
   179  		}
   180  	}
   181  	return st.buyGas()
   182  }
   183  
   184  // TransitionDb will transition the state by applying the current message and
   185  // returning the result including the used gas. It returns an error if failed.
   186  // An error indicates a consensus issue.
   187  func (st *StateTransition) TransitionDb() (ret []byte, usedGas uint64, failed bool, err error) {
   188  	if err = st.preCheck(); err != nil {
   189  		return
   190  	}
   191  	msg := st.msg
   192  	sender := vm.AccountRef(msg.From())
   193  	homestead := st.evm.ChainConfig().IsHomestead(st.evm.BlockNumber)
   194  	istanbul := st.evm.ChainConfig().IsIstanbul(st.evm.BlockNumber)
   195  	contractCreation := msg.To() == nil
   196  
   197  	// Pay intrinsic gas
   198  	gas, err := IntrinsicGas(st.data, contractCreation, homestead, istanbul)
   199  	if err != nil {
   200  		return nil, 0, false, err
   201  	}
   202  	if err = st.useGas(gas); err != nil {
   203  		return nil, 0, false, err
   204  	}
   205  
   206  	var (
   207  		evm = st.evm
   208  		// vm errors do not effect consensus and are therefor
   209  		// not assigned to err, except for insufficient balance
   210  		// error.
   211  		vmerr error
   212  	)
   213  	if contractCreation {
   214  		ret, _, st.gas, vmerr = evm.Create(sender, st.data, st.gas, st.value)
   215  	} else {
   216  		// Increment the nonce for the next transaction
   217  		st.state.SetNonce(msg.From(), st.state.GetNonce(sender.Address())+1)
   218  		ret, st.gas, vmerr = evm.Call(sender, st.to(), st.data, st.gas, st.value)
   219  	}
   220  	if vmerr != nil {
   221  		log.Debug("VM returned with error", "err", vmerr)
   222  		// The only possible consensus-error would be if there wasn't
   223  		// sufficient balance to make the transfer happen. The first
   224  		// balance transfer may never fail.
   225  		if vmerr == vm.ErrInsufficientBalance {
   226  			return nil, 0, false, vmerr
   227  		}
   228  	}
   229  	st.refundGas()
   230  	st.state.AddBalance(st.evm.Coinbase, new(big.Int).Mul(new(big.Int).SetUint64(st.gasUsed()), st.gasPrice))
   231  
   232  	return ret, st.gasUsed(), vmerr != nil, err
   233  }
   234  
   235  func (st *StateTransition) refundGas() {
   236  	// Apply refund counter, capped to half of the used gas.
   237  	refund := st.gasUsed() / 2
   238  	if refund > st.state.GetRefund() {
   239  		refund = st.state.GetRefund()
   240  	}
   241  	st.gas += refund
   242  
   243  	// Return ETH for remaining gas, exchanged at the original rate.
   244  	remaining := new(big.Int).Mul(new(big.Int).SetUint64(st.gas), st.gasPrice)
   245  	st.state.AddBalance(st.msg.From(), remaining)
   246  
   247  	// Also return remaining gas to the block gas counter so it is
   248  	// available for the next transaction.
   249  	st.gp.AddGas(st.gas)
   250  }
   251  
   252  // gasUsed returns the amount of gas used up by the state transition.
   253  func (st *StateTransition) gasUsed() uint64 {
   254  	return st.initialGas - st.gas
   255  }