state_transition.go 7.19 KB
Newer Older
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 6 7 8
// 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.
//
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 13 14
// GNU Lesser General Public License for more details.
//
// 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

obscuren's avatar
obscuren committed
17
package core
18 19

import (
20
	"errors"
21
	"math"
22
	"math/big"
23

obscuren's avatar
obscuren committed
24
	"github.com/ethereum/go-ethereum/common"
obscuren's avatar
obscuren committed
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
)

obscuren's avatar
obscuren committed
34
/*
35 36 37
The State Transitioning Model

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 41 42 43 44 45 46 47 48 49 50

1) Nonce handling
2) Pre pay gas
3) Create a new state object if the recipient is \0*32
4) Value transfer
== If contract creation ==
  4a) Attempt to run transaction data
  4b) If valid, use result as code for the new state object
== end ==
5) Run Script section
6) Derive new state root
*/
51
type StateTransition struct {
52 53 54 55
	gp         *GasPool
	msg        Message
	gas        uint64
	gasPrice   *big.Int
56
	initialGas uint64
57 58 59
	value      *big.Int
	data       []byte
	state      vm.StateDB
60
	evm        *vm.EVM
61 62
}

63
// Message represents a message sent to a contract.
64
type Message interface {
65 66
	From() common.Address
	//FromFrontier() (common.Address, error)
67
	To() *common.Address
68 69

	GasPrice() *big.Int
70
	Gas() uint64
71 72 73
	Value() *big.Int

	Nonce() uint64
74
	CheckNonce() bool
75
	Data() []byte
76
}
obscuren's avatar
obscuren committed
77

78 79 80 81
// IntrinsicGas computes the 'intrinsic gas' for a message with the given data.
func IntrinsicGas(data []byte, contractCreation, homestead bool) (uint64, error) {
	// Set the starting gas for the raw transaction
	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 90
		// Zero and non-zero bytes are priced differently
		var nz uint64
91 92 93 94
		for _, byt := range data {
			if byt != 0 {
				nz++
			}
obscuren's avatar
obscuren committed
95
		}
96 97 98 99 100 101 102 103 104 105 106
		// Make sure we don't exceed uint64 for all data combinations
		if (math.MaxUint64-gas)/params.TxDataNonZeroGas < nz {
			return 0, vm.ErrOutOfGas
		}
		gas += nz * params.TxDataNonZeroGas

		z := uint64(len(data)) - nz
		if (math.MaxUint64-gas)/params.TxDataZeroGas < z {
			return 0, vm.ErrOutOfGas
		}
		gas += z * params.TxDataZeroGas
obscuren's avatar
obscuren committed
107
	}
108
	return gas, nil
obscuren's avatar
obscuren committed
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 115 116 117 118 119 120
		gp:       gp,
		evm:      evm,
		msg:      msg,
		gasPrice: msg.GasPrice(),
		value:    msg.Value(),
		data:     msg.Data(),
		state:    evm.StateDB,
121
	}
122 123 124 125 126 127 128 129 130
}

// ApplyMessage computes the new state by applying the given message
// against the old state within the environment.
//
// ApplyMessage returns the bytes returned by any EVM execution (if it took place),
// the gas used (which includes gas refunds) and an error if it failed. An error always
// indicates a core error meaning that the message would always fail for that particular
// state and would never be accepted within a block.
131 132
func ApplyMessage(evm *vm.EVM, msg Message, gp *GasPool) ([]byte, uint64, bool, error) {
	return NewStateTransition(evm, msg, gp).TransitionDb()
133 134
}

135 136 137 138
// to returns the recipient of the message.
func (st *StateTransition) to() common.Address {
	if st.msg == nil || st.msg.To() == nil /* contract creation */ {
		return common.Address{}
139
	}
140
	return *st.msg.To()
141 142
}

143 144
func (st *StateTransition) useGas(amount uint64) error {
	if st.gas < amount {
145
		return vm.ErrOutOfGas
146
	}
147
	st.gas -= amount
148 149 150 151

	return nil
}

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 159
		return err
	}
160
	st.gas += st.msg.Gas()
161

162
	st.initialGas = st.msg.Gas()
163
	st.state.SubBalance(st.msg.From(), mgval)
164 165 166
	return nil
}

167
func (st *StateTransition) preCheck() error {
168 169 170 171
	// Make sure this transaction's nonce is correct.
	if st.msg.CheckNonce() {
		nonce := st.state.GetNonce(st.msg.From())
		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 182
// returning the result including the used gas. It returns an error if 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 186
		return
	}
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

obscuren's avatar
obscuren committed
192
	// Pay intrinsic gas
193
	gas, err := IntrinsicGas(st.data, contractCreation, homestead)
194 195 196
	if err != nil {
		return nil, 0, false, err
	}
197 198
	if err = st.useGas(gas); err != nil {
		return nil, 0, false, err
199 200
	}

201
	var (
202
		evm = st.evm
203 204 205 206 207
		// vm errors do not effect consensus and are therefor
		// not assigned to err, except for insufficient balance
		// error.
		vmerr error
	)
208
	if contractCreation {
209
		ret, _, st.gas, vmerr = evm.Create(sender, st.data, st.gas, st.value)
obscuren's avatar
obscuren committed
210
	} else {
obscuren's avatar
obscuren committed
211
		// Increment the nonce for the next transaction
212 213
		st.state.SetNonce(msg.From(), st.state.GetNonce(sender.Address())+1)
		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 218 219 220
		// The only possible consensus-error would be if there wasn't
		// sufficient balance to make the transfer happen. The first
		// balance transfer may never fail.
		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
}
obscuren's avatar
obscuren committed
229

230
func (st *StateTransition) refundGas() {
231
	// Apply refund counter, capped to half of the used gas.
232 233 234 235 236
	refund := st.gasUsed() / 2
	if refund > st.state.GetRefund() {
		refund = st.state.GetRefund()
	}
	st.gas += refund
237

238 239
	// Return ETH for remaining gas, exchanged at the original rate.
	remaining := new(big.Int).Mul(new(big.Int).SetUint64(st.gas), st.gasPrice)
240
	st.state.AddBalance(st.msg.From(), remaining)
obscuren's avatar
obscuren committed
241

242 243
	// Also return remaining gas to the block gas counter so it is
	// available for the next transaction.
244
	st.gp.AddGas(st.gas)
obscuren's avatar
obscuren committed
245 246
}

247 248 249
// gasUsed returns the amount of gas used up by the state transition.
func (st *StateTransition) gasUsed() uint64 {
	return st.initialGas - st.gas
obscuren's avatar
obscuren committed
250
}