github.com/vantum/vantum@v0.0.0-20180815184342-fe37d5f7a990/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/vantum/vantum/common"
    25  	"github.com/vantum/vantum/core/vm"
    26  	"github.com/vantum/vantum/log"
    27  	"github.com/vantum/vantum/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 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, homestead bool) (uint64, error) {
    80  	// Set the starting gas for the raw transaction
    81  	var gas uint64
    82  	if contractCreation && homestead {
    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  		if (math.MaxUint64-gas)/params.TxDataNonZeroGas < nz {
    98  			return 0, vm.ErrOutOfGas
    99  		}
   100  		gas += nz * params.TxDataNonZeroGas
   101  
   102  		z := uint64(len(data)) - nz
   103  		if (math.MaxUint64-gas)/params.TxDataZeroGas < z {
   104  			return 0, vm.ErrOutOfGas
   105  		}
   106  		gas += z * params.TxDataZeroGas
   107  	}
   108  	return gas, nil
   109  }
   110  
   111  // NewStateTransition initialises and returns a new state transition object.
   112  func NewStateTransition(evm *vm.EVM, msg Message, gp *GasPool) *StateTransition {
   113  	return &StateTransition{
   114  		gp:       gp,
   115  		evm:      evm,
   116  		msg:      msg,
   117  		gasPrice: msg.GasPrice(),
   118  		value:    msg.Value(),
   119  		data:     msg.Data(),
   120  		state:    evm.StateDB,
   121  	}
   122  }
   123  
   124  // ApplyMessage computes the new state by applying the given message
   125  // against the old state within the environment.
   126  //
   127  // ApplyMessage returns the bytes returned by any EVM execution (if it took place),
   128  // the gas used (which includes gas refunds) and an error if it failed. An error always
   129  // indicates a core error meaning that the message would always fail for that particular
   130  // state and would never be accepted within a block.
   131  func ApplyMessage(evm *vm.EVM, msg Message, gp *GasPool) ([]byte, uint64, bool, error) {
   132  	return NewStateTransition(evm, msg, gp).TransitionDb()
   133  }
   134  
   135  func (st *StateTransition) from() vm.AccountRef {
   136  	f := st.msg.From()
   137  	if !st.state.Exist(f) {
   138  		st.state.CreateAccount(f)
   139  	}
   140  	return vm.AccountRef(f)
   141  }
   142  
   143  func (st *StateTransition) to() vm.AccountRef {
   144  	if st.msg == nil {
   145  		return vm.AccountRef{}
   146  	}
   147  	to := st.msg.To()
   148  	if to == nil {
   149  		return vm.AccountRef{} // contract creation
   150  	}
   151  
   152  	reference := vm.AccountRef(*to)
   153  	if !st.state.Exist(*to) {
   154  		st.state.CreateAccount(*to)
   155  	}
   156  	return reference
   157  }
   158  
   159  func (st *StateTransition) useGas(amount uint64) error {
   160  	if st.gas < amount {
   161  		return vm.ErrOutOfGas
   162  	}
   163  	st.gas -= amount
   164  
   165  	return nil
   166  }
   167  
   168  func (st *StateTransition) buyGas() error {
   169  	var (
   170  		state  = st.state
   171  		sender = st.from()
   172  	)
   173  	mgval := new(big.Int).Mul(new(big.Int).SetUint64(st.msg.Gas()), st.gasPrice)
   174  	if state.GetBalance(sender.Address()).Cmp(mgval) < 0 {
   175  		return errInsufficientBalanceForGas
   176  	}
   177  	if err := st.gp.SubGas(st.msg.Gas()); err != nil {
   178  		return err
   179  	}
   180  	st.gas += st.msg.Gas()
   181  
   182  	st.initialGas = st.msg.Gas()
   183  	state.SubBalance(sender.Address(), mgval)
   184  	return nil
   185  }
   186  
   187  func (st *StateTransition) preCheck() error {
   188  	msg := st.msg
   189  	sender := st.from()
   190  
   191  	// Make sure this transaction's nonce is correct
   192  	if msg.CheckNonce() {
   193  		nonce := st.state.GetNonce(sender.Address())
   194  		if nonce < msg.Nonce() {
   195  			return ErrNonceTooHigh
   196  		} else if nonce > msg.Nonce() {
   197  			return ErrNonceTooLow
   198  		}
   199  	}
   200  	return st.buyGas()
   201  }
   202  
   203  // TransitionDb will transition the state by applying the current message and
   204  // returning the result including the the used gas. It returns an error if it
   205  // failed. An error indicates a consensus issue.
   206  func (st *StateTransition) TransitionDb() (ret []byte, usedGas uint64, failed bool, err error) {
   207  	if err = st.preCheck(); err != nil {
   208  		return
   209  	}
   210  	msg := st.msg
   211  	sender := st.from() // err checked in preCheck
   212  
   213  	homestead := st.evm.ChainConfig().IsHomestead(st.evm.BlockNumber)
   214  	contractCreation := msg.To() == nil
   215  
   216  	// Pay intrinsic gas
   217  	gas, err := IntrinsicGas(st.data, contractCreation, homestead)
   218  	if err != nil {
   219  		return nil, 0, false, err
   220  	}
   221  	if err = st.useGas(gas); err != nil {
   222  		return nil, 0, false, err
   223  	}
   224  
   225  	var (
   226  		evm = st.evm
   227  		// vm errors do not effect consensus and are therefor
   228  		// not assigned to err, except for insufficient balance
   229  		// error.
   230  		vmerr error
   231  	)
   232  	if contractCreation {
   233  		ret, _, st.gas, vmerr = evm.Create(sender, st.data, st.gas, st.value)
   234  	} else {
   235  		// Increment the nonce for the next transaction
   236  		st.state.SetNonce(sender.Address(), st.state.GetNonce(sender.Address())+1)
   237  		ret, st.gas, vmerr = evm.Call(sender, st.to().Address(), st.data, st.gas, st.value)
   238  	}
   239  	if vmerr != nil {
   240  		log.Debug("VM returned with error", "err", vmerr)
   241  		// The only possible consensus-error would be if there wasn't
   242  		// sufficient balance to make the transfer happen. The first
   243  		// balance transfer may never fail.
   244  		if vmerr == vm.ErrInsufficientBalance {
   245  			return nil, 0, false, vmerr
   246  		}
   247  	}
   248  	st.refundGas()
   249  	st.state.AddBalance(st.evm.Coinbase, new(big.Int).Mul(new(big.Int).SetUint64(st.gasUsed()), st.gasPrice))
   250  
   251  	return ret, st.gasUsed(), vmerr != nil, err
   252  }
   253  
   254  func (st *StateTransition) refundGas() {
   255  	// Apply refund counter, capped to half of the used gas.
   256  	refund := st.gasUsed() / 2
   257  	if refund > st.state.GetRefund() {
   258  		refund = st.state.GetRefund()
   259  	}
   260  	st.gas += refund
   261  
   262  	// Return ETH for remaining gas, exchanged at the original rate.
   263  	sender := st.from()
   264  
   265  	remaining := new(big.Int).Mul(new(big.Int).SetUint64(st.gas), st.gasPrice)
   266  	st.state.AddBalance(sender.Address(), remaining)
   267  
   268  	// Also return remaining gas to the block gas counter so it is
   269  	// available for the next transaction.
   270  	st.gp.AddGas(st.gas)
   271  }
   272  
   273  // gasUsed returns the amount of gas used up by the state transition.
   274  func (st *StateTransition) gasUsed() uint64 {
   275  	return st.initialGas - st.gas
   276  }