state_transition.go 7.86 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
	"fmt"
22
	"math/big"
23

obscuren's avatar
obscuren committed
24
	"github.com/ethereum/go-ethereum/common"
25
	"github.com/ethereum/go-ethereum/common/math"
obscuren's avatar
obscuren committed
26
	"github.com/ethereum/go-ethereum/core/vm"
27
	"github.com/ethereum/go-ethereum/log"
28
	"github.com/ethereum/go-ethereum/params"
29 30
)

31
var (
32 33
	Big0                         = big.NewInt(0)
	errInsufficientBalanceForGas = errors.New("insufficient balance to pay for gas")
34 35
)

obscuren's avatar
obscuren committed
36
/*
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
The State Transitioning Model

A state transition is a change made when a transaction is applied to the current world state
The state transitioning model does all all the necessary work to work out a valid new state root.

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
*/
53
type StateTransition struct {
54 55 56 57 58 59 60 61
	gp         *GasPool
	msg        Message
	gas        uint64
	gasPrice   *big.Int
	initialGas *big.Int
	value      *big.Int
	data       []byte
	state      vm.StateDB
62
	evm        *vm.EVM
63 64
}

65
// Message represents a message sent to a contract.
66
type Message interface {
67 68
	From() common.Address
	//FromFrontier() (common.Address, error)
69
	To() *common.Address
70 71 72 73 74 75

	GasPrice() *big.Int
	Gas() *big.Int
	Value() *big.Int

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

80
// IntrinsicGas computes the 'intrinsic gas' for a message
81
// with the given data.
82 83
//
// TODO convert to uint64
84 85 86
func IntrinsicGas(data []byte, contractCreation, homestead bool) *big.Int {
	igas := new(big.Int)
	if contractCreation && homestead {
87
		igas.SetUint64(params.TxGasContractCreation)
88
	} else {
89
		igas.SetUint64(params.TxGas)
90
	}
91 92 93 94 95 96
	if len(data) > 0 {
		var nz int64
		for _, byt := range data {
			if byt != 0 {
				nz++
			}
obscuren's avatar
obscuren committed
97
		}
98
		m := big.NewInt(nz)
99
		m.Mul(m, new(big.Int).SetUint64(params.TxDataNonZeroGas))
100 101
		igas.Add(igas, m)
		m.SetInt64(int64(len(data)) - nz)
102
		m.Mul(m, new(big.Int).SetUint64(params.TxDataZeroGas))
103
		igas.Add(igas, m)
obscuren's avatar
obscuren committed
104 105 106 107
	}
	return igas
}

108
// NewStateTransition initialises and returns a new state transition object.
109
func NewStateTransition(evm *vm.EVM, msg Message, gp *GasPool) *StateTransition {
110
	return &StateTransition{
111
		gp:         gp,
112
		evm:        evm,
113
		msg:        msg,
114
		gasPrice:   msg.GasPrice(),
115 116 117
		initialGas: new(big.Int),
		value:      msg.Value(),
		data:       msg.Data(),
118
		state:      evm.StateDB,
119
	}
120 121 122 123 124 125 126 127 128
}

// 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.
129
func ApplyMessage(evm *vm.EVM, msg Message, gp *GasPool) ([]byte, *big.Int, bool, error) {
130
	st := NewStateTransition(evm, msg, gp)
131

132 133
	ret, _, gasUsed, failed, err := st.TransitionDb()
	return ret, gasUsed, failed, err
134 135
}

136 137 138 139
func (st *StateTransition) from() vm.AccountRef {
	f := st.msg.From()
	if !st.state.Exist(f) {
		st.state.CreateAccount(f)
140
	}
141
	return vm.AccountRef(f)
142
}
143

144 145
func (st *StateTransition) to() vm.AccountRef {
	if st.msg == nil {
146
		return vm.AccountRef{}
147
	}
148
	to := st.msg.To()
149
	if to == nil {
150
		return vm.AccountRef{} // contract creation
151
	}
152

153
	reference := vm.AccountRef(*to)
154 155
	if !st.state.Exist(*to) {
		st.state.CreateAccount(*to)
156
	}
157
	return reference
158 159
}

160 161
func (st *StateTransition) useGas(amount uint64) error {
	if st.gas < amount {
162
		return vm.ErrOutOfGas
163
	}
164
	st.gas -= amount
165 166 167 168

	return nil
}

169 170
func (st *StateTransition) buyGas() error {
	mgas := st.msg.Gas()
171 172 173 174
	if mgas.BitLen() > 64 {
		return vm.ErrOutOfGas
	}

175
	mgval := new(big.Int).Mul(mgas, st.gasPrice)
176

177
	var (
178 179
		state  = st.state
		sender = st.from()
180 181 182
	)
	if state.GetBalance(sender.Address()).Cmp(mgval) < 0 {
		return errInsufficientBalanceForGas
183
	}
184
	if err := st.gp.SubGas(mgas); err != nil {
185 186
		return err
	}
187
	st.gas += mgas.Uint64()
188

189
	st.initialGas.Set(mgas)
190
	state.SubBalance(sender.Address(), mgval)
191 192 193
	return nil
}

194 195 196
func (st *StateTransition) preCheck() error {
	msg := st.msg
	sender := st.from()
197 198

	// Make sure this transaction's nonce is correct
199
	if msg.CheckNonce() {
200
		if n := st.state.GetNonce(sender.Address()); n != msg.Nonce() {
201
			return fmt.Errorf("invalid nonce: have %d, expected %d", msg.Nonce(), n)
202
		}
203
	}
204
	return st.buyGas()
205 206
}

207 208 209
// TransitionDb will transition the state by applying the current message and returning the result
// including the required gas for the operation as well as the used gas. It returns an error if it
// failed. An error indicates a consensus issue.
210
func (st *StateTransition) TransitionDb() (ret []byte, requiredGas, usedGas *big.Int, failed bool, err error) {
211
	if err = st.preCheck(); err != nil {
212 213
		return
	}
214 215
	msg := st.msg
	sender := st.from() // err checked in preCheck
216

217
	homestead := st.evm.ChainConfig().IsHomestead(st.evm.BlockNumber)
218
	contractCreation := msg.To() == nil
219

obscuren's avatar
obscuren committed
220
	// Pay intrinsic gas
221
	// TODO convert to uint64
222
	intrinsicGas := IntrinsicGas(st.data, contractCreation, homestead)
223
	if intrinsicGas.BitLen() > 64 {
224
		return nil, nil, nil, false, vm.ErrOutOfGas
225
	}
226
	if err = st.useGas(intrinsicGas.Uint64()); err != nil {
227
		return nil, nil, nil, false, err
228 229
	}

230
	var (
231
		evm = st.evm
232 233 234 235 236
		// vm errors do not effect consensus and are therefor
		// not assigned to err, except for insufficient balance
		// error.
		vmerr error
	)
237
	if contractCreation {
238
		ret, _, st.gas, vmerr = evm.Create(sender, st.data, st.gas, st.value)
obscuren's avatar
obscuren committed
239
	} else {
obscuren's avatar
obscuren committed
240
		// Increment the nonce for the next transaction
241 242
		st.state.SetNonce(sender.Address(), st.state.GetNonce(sender.Address())+1)
		ret, st.gas, vmerr = evm.Call(sender, st.to().Address(), st.data, st.gas, st.value)
243
	}
244
	if vmerr != nil {
245
		log.Debug("VM returned with error", "err", vmerr)
246 247 248 249
		// 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 {
250
			return nil, nil, nil, false, vmerr
251
		}
252
	}
253
	requiredGas = new(big.Int).Set(st.gasUsed())
254

255 256
	st.refundGas()
	st.state.AddBalance(st.evm.Coinbase, new(big.Int).Mul(st.gasUsed(), st.gasPrice))
257

258
	return ret, requiredGas, st.gasUsed(), vmerr != nil, err
259
}
obscuren's avatar
obscuren committed
260

261
func (st *StateTransition) refundGas() {
262 263
	// Return eth for remaining gas to the sender account,
	// exchanged at the original rate.
264 265 266
	sender := st.from() // err already checked
	remaining := new(big.Int).Mul(new(big.Int).SetUint64(st.gas), st.gasPrice)
	st.state.AddBalance(sender.Address(), remaining)
267

268
	// Apply refund counter, capped to half of the used gas.
269 270 271
	uhalf := remaining.Div(st.gasUsed(), common.Big2)
	refund := math.BigMin(uhalf, st.state.GetRefund())
	st.gas += refund.Uint64()
272

273
	st.state.AddBalance(sender.Address(), refund.Mul(refund, st.gasPrice))
obscuren's avatar
obscuren committed
274

275 276
	// Also return remaining gas to the block gas counter so it is
	// available for the next transaction.
277
	st.gp.AddGas(new(big.Int).SetUint64(st.gas))
obscuren's avatar
obscuren committed
278 279
}

280 281
func (st *StateTransition) gasUsed() *big.Int {
	return new(big.Int).Sub(st.initialGas, new(big.Int).SetUint64(st.gas))
obscuren's avatar
obscuren committed
282
}