state_transition.go 8.1 KB
Newer Older
F
Felix Lange 已提交
1
// Copyright 2014 The go-ethereum Authors
2
// This file is part of the go-ethereum library.
F
Felix Lange 已提交
3
//
4
// The go-ethereum library is free software: you can redistribute it and/or modify
F
Felix Lange 已提交
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,
F
Felix Lange 已提交
10
// but WITHOUT ANY WARRANTY; without even the implied warranty of
11
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
F
Felix Lange 已提交
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/>.
F
Felix Lange 已提交
16

O
obscuren 已提交
17
package core
18 19

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

O
obscuren 已提交
24
	"github.com/ethereum/go-ethereum/common"
O
obscuren 已提交
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 32
	Big0                         = big.NewInt(0)
	errInsufficientBalanceForGas = errors.New("insufficient balance to pay for gas")
33 34
)

O
obscuren 已提交
35
/*
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
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
*/
52
type StateTransition struct {
53 54 55 56 57 58 59 60 61 62
	gp         *GasPool
	msg        Message
	gas        uint64
	gasPrice   *big.Int
	initialGas *big.Int
	value      *big.Int
	data       []byte
	state      vm.StateDB

	evm *vm.EVM
63 64
}

65
// Message represents a message sent to a contract.
66
type Message interface {
J
Jeffrey Wilcke 已提交
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
}
O
obscuren 已提交
79

O
obscuren 已提交
80
func MessageCreatesContract(msg Message) bool {
81
	return msg.To() == nil
O
obscuren 已提交
82 83
}

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

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

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

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

140
func (self *StateTransition) from() vm.AccountRef {
J
Jeffrey Wilcke 已提交
141
	f := self.msg.From()
142
	if !self.state.Exist(f) {
143
		self.state.CreateAccount(f)
144
	}
145
	return vm.AccountRef(f)
146
}
147

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

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

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

	return nil
}

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

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

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

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

O
obscuren 已提交
198
func (self *StateTransition) preCheck() (err error) {
199
	msg := self.msg
J
Jeffrey Wilcke 已提交
200
	sender := self.from()
O
obscuren 已提交
201 202

	// Make sure this transaction's nonce is correct
203 204 205 206
	if msg.CheckNonce() {
		if n := self.state.GetNonce(sender.Address()); n != msg.Nonce() {
			return NonceError(msg.Nonce(), n)
		}
O
obscuren 已提交
207 208
	}

209
	// Pre-pay gas
210
	if err = self.buyGas(); err != nil {
211
		if IsGasLimitErr(err) {
O
obscuren 已提交
212 213
			return err
		}
O
obscuren 已提交
214
		return InvalidTxError(err)
O
obscuren 已提交
215 216 217 218 219
	}

	return nil
}

220 221 222
// 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.
223
func (self *StateTransition) TransitionDb() (ret []byte, requiredGas, usedGas *big.Int, err error) {
O
obscuren 已提交
224 225 226
	if err = self.preCheck(); err != nil {
		return
	}
227
	msg := self.msg
J
Jeffrey Wilcke 已提交
228
	sender := self.from() // err checked in preCheck
229

230
	homestead := self.evm.ChainConfig().IsHomestead(self.evm.BlockNumber)
231
	contractCreation := MessageCreatesContract(msg)
O
obscuren 已提交
232
	// Pay intrinsic gas
233 234 235 236 237 238 239
	// TODO convert to uint64
	intrinsicGas := IntrinsicGas(self.data, contractCreation, homestead)
	if intrinsicGas.BitLen() > 64 {
		return nil, nil, nil, InvalidTxError(vm.ErrOutOfGas)
	}

	if err = self.useGas(intrinsicGas.Uint64()); err != nil {
240
		return nil, nil, nil, InvalidTxError(err)
241 242
	}

243
	var (
244
		evm = self.evm
245 246 247 248 249
		// vm errors do not effect consensus and are therefor
		// not assigned to err, except for insufficient balance
		// error.
		vmerr error
	)
250
	if contractCreation {
251
		ret, _, self.gas, vmerr = evm.Create(sender, self.data, self.gas, self.value)
O
obscuren 已提交
252
	} else {
O
obscuren 已提交
253
		// Increment the nonce for the next transaction
254
		self.state.SetNonce(sender.Address(), self.state.GetNonce(sender.Address())+1)
255
		ret, self.gas, vmerr = evm.Call(sender, self.to().Address(), self.data, self.gas, self.value)
256
	}
257
	if vmerr != nil {
258
		log.Debug(fmt.Sprint("vm returned with error:", err))
259 260 261 262 263 264
		// 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 {
			return nil, nil, nil, InvalidTxError(vmerr)
		}
265 266
	}

267 268
	requiredGas = new(big.Int).Set(self.gasUsed())

269
	self.refundGas()
270
	self.state.AddBalance(self.evm.Coinbase, new(big.Int).Mul(self.gasUsed(), self.gasPrice))
O
obscuren 已提交
271

272
	return ret, requiredGas, self.gasUsed(), err
O
obscuren 已提交
273
}
O
obscuren 已提交
274

275
func (self *StateTransition) refundGas() {
276 277
	// Return eth for remaining gas to the sender account,
	// exchanged at the original rate.
J
Jeffrey Wilcke 已提交
278
	sender := self.from() // err already checked
279
	remaining := new(big.Int).Mul(new(big.Int).SetUint64(self.gas), self.gasPrice)
280
	self.state.AddBalance(sender.Address(), remaining)
281

282
	// Apply refund counter, capped to half of the used gas.
283
	uhalf := remaining.Div(self.gasUsed(), common.Big2)
284
	refund := common.BigMin(uhalf, self.state.GetRefund())
285 286
	self.gas += refund.Uint64()

287
	self.state.AddBalance(sender.Address(), refund.Mul(refund, self.gasPrice))
O
obscuren 已提交
288

289 290
	// Also return remaining gas to the block gas counter so it is
	// available for the next transaction.
291
	self.gp.AddGas(new(big.Int).SetUint64(self.gas))
O
obscuren 已提交
292 293
}

294
func (self *StateTransition) gasUsed() *big.Int {
295
	return new(big.Int).Sub(self.initialGas, new(big.Int).SetUint64(self.gas))
O
obscuren 已提交
296
}