github.com/anthdm/go-ethereum@v1.8.4-0.20180412101906-60516c83b011/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 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 // to returns the recipient of the message. 136 func (st *StateTransition) to() common.Address { 137 if st.msg == nil || st.msg.To() == nil /* contract creation */ { 138 return common.Address{} 139 } 140 return *st.msg.To() 141 } 142 143 func (st *StateTransition) useGas(amount uint64) error { 144 if st.gas < amount { 145 return vm.ErrOutOfGas 146 } 147 st.gas -= amount 148 149 return nil 150 } 151 152 func (st *StateTransition) buyGas() error { 153 mgval := new(big.Int).Mul(new(big.Int).SetUint64(st.msg.Gas()), st.gasPrice) 154 if st.state.GetBalance(st.msg.From()).Cmp(mgval) < 0 { 155 return errInsufficientBalanceForGas 156 } 157 if err := st.gp.SubGas(st.msg.Gas()); err != nil { 158 return err 159 } 160 st.gas += st.msg.Gas() 161 162 st.initialGas = st.msg.Gas() 163 st.state.SubBalance(st.msg.From(), mgval) 164 return nil 165 } 166 167 func (st *StateTransition) preCheck() error { 168 // Make sure this transaction's nonce is correct. 169 if st.msg.CheckNonce() { 170 nonce := st.state.GetNonce(st.msg.From()) 171 if nonce < st.msg.Nonce() { 172 return ErrNonceTooHigh 173 } else if nonce > st.msg.Nonce() { 174 return ErrNonceTooLow 175 } 176 } 177 return st.buyGas() 178 } 179 180 // TransitionDb will transition the state by applying the current message and 181 // returning the result including the the used gas. It returns an error if it 182 // failed. An error indicates a consensus issue. 183 func (st *StateTransition) TransitionDb() (ret []byte, usedGas uint64, failed bool, err error) { 184 if err = st.preCheck(); err != nil { 185 return 186 } 187 msg := st.msg 188 sender := vm.AccountRef(msg.From()) 189 homestead := st.evm.ChainConfig().IsHomestead(st.evm.BlockNumber) 190 contractCreation := msg.To() == nil 191 192 // Pay intrinsic gas 193 gas, err := IntrinsicGas(st.data, contractCreation, homestead) 194 if err != nil { 195 return nil, 0, false, err 196 } 197 if err = st.useGas(gas); err != nil { 198 return nil, 0, false, err 199 } 200 201 var ( 202 evm = st.evm 203 // vm errors do not effect consensus and are therefor 204 // not assigned to err, except for insufficient balance 205 // error. 206 vmerr error 207 ) 208 if contractCreation { 209 ret, _, st.gas, vmerr = evm.Create(sender, st.data, st.gas, st.value) 210 } else { 211 // Increment the nonce for the next transaction 212 st.state.SetNonce(msg.From(), st.state.GetNonce(sender.Address())+1) 213 ret, st.gas, vmerr = evm.Call(sender, st.to(), st.data, st.gas, st.value) 214 } 215 if vmerr != nil { 216 log.Debug("VM returned with error", "err", vmerr) 217 // The only possible consensus-error would be if there wasn't 218 // sufficient balance to make the transfer happen. The first 219 // balance transfer may never fail. 220 if vmerr == vm.ErrInsufficientBalance { 221 return nil, 0, false, vmerr 222 } 223 } 224 st.refundGas() 225 st.state.AddBalance(st.evm.Coinbase, new(big.Int).Mul(new(big.Int).SetUint64(st.gasUsed()), st.gasPrice)) 226 227 return ret, st.gasUsed(), vmerr != nil, err 228 } 229 230 func (st *StateTransition) refundGas() { 231 // Apply refund counter, capped to half of the used gas. 232 refund := st.gasUsed() / 2 233 if refund > st.state.GetRefund() { 234 refund = st.state.GetRefund() 235 } 236 st.gas += refund 237 238 // Return ETH for remaining gas, exchanged at the original rate. 239 remaining := new(big.Int).Mul(new(big.Int).SetUint64(st.gas), st.gasPrice) 240 st.state.AddBalance(st.msg.From(), remaining) 241 242 // Also return remaining gas to the block gas counter so it is 243 // available for the next transaction. 244 st.gp.AddGas(st.gas) 245 } 246 247 // gasUsed returns the amount of gas used up by the state transition. 248 func (st *StateTransition) gasUsed() uint64 { 249 return st.initialGas - st.gas 250 }