state_transition.go 8 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 62 63
	gp         *GasPool
	msg        Message
	gas        uint64
	gasPrice   *big.Int
	initialGas *big.Int
	value      *big.Int
	data       []byte
	state      vm.StateDB

	evm *vm.EVM
64 65
}

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

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

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

obscuren's avatar
obscuren committed
81
func MessageCreatesContract(msg Message) bool {
82
	return msg.To() == nil
obscuren's avatar
obscuren committed
83 84
}

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

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

// 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.
134 135
func ApplyMessage(evm *vm.EVM, msg Message, gp *GasPool) ([]byte, *big.Int, error) {
	st := NewStateTransition(evm, msg, gp)
136 137 138

	ret, _, gasUsed, err := st.TransitionDb()
	return ret, gasUsed, err
139 140
}

141
func (self *StateTransition) from() vm.AccountRef {
142
	f := self.msg.From()
143
	if !self.state.Exist(f) {
144
		self.state.CreateAccount(f)
145
	}
146
	return vm.AccountRef(f)
147
}
148

149
func (self *StateTransition) to() vm.AccountRef {
150
	if self.msg == nil {
151
		return vm.AccountRef{}
152
	}
153 154
	to := self.msg.To()
	if to == nil {
155
		return vm.AccountRef{} // contract creation
156
	}
157

158
	reference := vm.AccountRef(*to)
159
	if !self.state.Exist(*to) {
160
		self.state.CreateAccount(*to)
161
	}
162
	return reference
163 164
}

165 166
func (self *StateTransition) useGas(amount uint64) error {
	if self.gas < amount {
167
		return vm.ErrOutOfGas
168
	}
169
	self.gas -= amount
170 171 172 173

	return nil
}

174
func (self *StateTransition) buyGas() error {
175
	mgas := self.msg.Gas()
176 177 178 179
	if mgas.BitLen() > 64 {
		return vm.ErrOutOfGas
	}

180
	mgval := new(big.Int).Mul(mgas, self.gasPrice)
181

182 183 184 185 186 187
	var (
		state  = self.state
		sender = self.from()
	)
	if state.GetBalance(sender.Address()).Cmp(mgval) < 0 {
		return errInsufficientBalanceForGas
188
	}
189
	if err := self.gp.SubGas(mgas); err != nil {
190 191
		return err
	}
192 193
	self.gas += mgas.Uint64()

194
	self.initialGas.Set(mgas)
195
	state.SubBalance(sender.Address(), mgval)
196 197 198
	return nil
}

199
func (self *StateTransition) preCheck() error {
200
	msg := self.msg
201
	sender := self.from()
202 203

	// Make sure this transaction's nonce is correct
204 205
	if msg.CheckNonce() {
		if n := self.state.GetNonce(sender.Address()); n != msg.Nonce() {
206
			return fmt.Errorf("invalid nonce: have %d, expected %d", msg.Nonce(), n)
207
		}
208
	}
209
	return self.buyGas()
210 211
}

212 213 214
// 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.
215
func (self *StateTransition) TransitionDb() (ret []byte, requiredGas, usedGas *big.Int, err error) {
216 217 218
	if err = self.preCheck(); err != nil {
		return
	}
219
	msg := self.msg
220
	sender := self.from() // err checked in preCheck
221

222
	homestead := self.evm.ChainConfig().IsHomestead(self.evm.BlockNumber)
223
	contractCreation := MessageCreatesContract(msg)
obscuren's avatar
obscuren committed
224
	// Pay intrinsic gas
225 226 227
	// TODO convert to uint64
	intrinsicGas := IntrinsicGas(self.data, contractCreation, homestead)
	if intrinsicGas.BitLen() > 64 {
228
		return nil, nil, nil, vm.ErrOutOfGas
229 230
	}
	if err = self.useGas(intrinsicGas.Uint64()); err != nil {
231
		return nil, nil, nil, err
232 233
	}

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

259
	self.refundGas()
260
	self.state.AddBalance(self.evm.Coinbase, new(big.Int).Mul(self.gasUsed(), self.gasPrice))
261

262
	return ret, requiredGas, self.gasUsed(), err
263
}
obscuren's avatar
obscuren committed
264

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

272
	// Apply refund counter, capped to half of the used gas.
273
	uhalf := remaining.Div(self.gasUsed(), common.Big2)
274
	refund := math.BigMin(uhalf, self.state.GetRefund())
275 276
	self.gas += refund.Uint64()

277
	self.state.AddBalance(sender.Address(), refund.Mul(refund, self.gasPrice))
obscuren's avatar
obscuren committed
278

279 280
	// Also return remaining gas to the block gas counter so it is
	// available for the next transaction.
281
	self.gp.AddGas(new(big.Int).SetUint64(self.gas))
obscuren's avatar
obscuren committed
282 283
}

284
func (self *StateTransition) gasUsed() *big.Int {
285
	return new(big.Int).Sub(self.initialGas, new(big.Int).SetUint64(self.gas))
obscuren's avatar
obscuren committed
286
}