evm.go 13.5 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 vm
18 19 20

import (
	"math/big"
21
	"sync/atomic"
22

O
obscuren 已提交
23
	"github.com/ethereum/go-ethereum/common"
24
	"github.com/ethereum/go-ethereum/crypto"
25
	"github.com/ethereum/go-ethereum/params"
26 27
)

28 29 30 31 32 33 34 35
type (
	CanTransferFunc func(StateDB, common.Address, *big.Int) bool
	TransferFunc    func(StateDB, common.Address, common.Address, *big.Int)
	// GetHashFunc returns the nth block hash in the blockchain
	// and is used by the BLOCKHASH EVM op code.
	GetHashFunc func(uint64) common.Hash
)

36 37 38
// run runs the given contract and takes care of running precompiles with a fallback to the byte code interpreter.
func run(evm *EVM, snapshot int, contract *Contract, input []byte) ([]byte, error) {
	if contract.CodeAddr != nil {
39
		precompiles := PrecompiledContractsHomestead
40
		if evm.ChainConfig().IsMetropolis(evm.BlockNumber) {
41
			precompiles = PrecompiledContractsMetropolis
42
		}
43
		if p := precompiles[*contract.CodeAddr]; p != nil {
44 45 46 47 48 49 50 51
			return RunPrecompiledContract(p, input, contract)
		}
	}
	return evm.interpreter.Run(snapshot, contract, input)
}

// Context provides the EVM with auxiliary information. Once provided
// it shouldn't be modified.
52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
type Context struct {
	// CanTransfer returns whether the account contains
	// sufficient ether to transfer the value
	CanTransfer CanTransferFunc
	// Transfer transfers ether from one account to the other
	Transfer TransferFunc
	// GetHash returns the hash corresponding to n
	GetHash GetHashFunc

	// Message information
	Origin   common.Address // Provides information for ORIGIN
	GasPrice *big.Int       // Provides information for GASPRICE

	// Block information
	Coinbase    common.Address // Provides information for COINBASE
	GasLimit    *big.Int       // Provides information for GASLIMIT
	BlockNumber *big.Int       // Provides information for NUMBER
	Time        *big.Int       // Provides information for TIME
	Difficulty  *big.Int       // Provides information for DIFFICULTY
}

73 74 75 76 77 78 79
// EVM is the Ethereum Virtual Machine base object and provides
// the necessary tools to run a contract on the given state with
// the provided context. It should be noted that any error
// generated through any of the calls should be considered a
// revert-state-and-consume-all-gas operation, no checks on
// specific errors should ever be performed. The interpreter makes
// sure that any errors generated are to be considered faulty code.
80
//
81 82
// The EVM should never be reused and is not thread safe.
type EVM struct {
83 84 85 86 87
	// Context provides auxiliary blockchain related information
	Context
	// StateDB gives access to the underlying state
	StateDB StateDB
	// Depth is the current call stack
88
	depth int
89 90 91

	// chainConfig contains information about the current chain
	chainConfig *params.ChainConfig
92 93
	// chain rules contains the chain rules for the current epoch
	chainRules params.Rules
94 95 96 97 98 99 100 101 102
	// virtual machine configuration options used to initialise the
	// evm.
	vmConfig Config
	// global (to this context) ethereum virtual machine
	// used throughout the execution of the tx.
	interpreter *Interpreter
	// abort is used to abort the EVM calling operations
	// NOTE: must be set atomically
	abort int32
103 104
}

105 106
// NewEVM retutrns a new EVM . The returned EVM is not thread safe and should
// only ever be used *once*.
107 108 109
func NewEVM(ctx Context, statedb StateDB, chainConfig *params.ChainConfig, vmConfig Config) *EVM {
	evm := &EVM{
		Context:     ctx,
110 111 112
		StateDB:     statedb,
		vmConfig:    vmConfig,
		chainConfig: chainConfig,
113
		chainRules:  chainConfig.Rules(ctx.BlockNumber),
114
	}
115 116 117 118 119

	evm.interpreter = NewInterpreter(evm, vmConfig)
	return evm
}

120 121
// Cancel cancels any running EVM operation. This may be called concurrently and
// it's safe to be called multiple times.
122 123
func (evm *EVM) Cancel() {
	atomic.StoreInt32(&evm.abort, 1)
124 125
}

126 127 128 129
// Call executes the contract associated with the addr with the given input as
// parameters. It also handles any necessary value transfer required and takes
// the necessary steps to create accounts and reverses the state in case of an
// execution error or failed value transfer.
130
func (evm *EVM) Call(caller ContractRef, addr common.Address, input []byte, gas uint64, value *big.Int) (ret []byte, leftOverGas uint64, err error) {
131
	if evm.vmConfig.NoRecursion && evm.depth > 0 {
132
		return nil, gas, nil
133 134
	}

135
	// Fail if we're trying to execute above the call depth limit
136 137
	if evm.depth > int(params.CallCreateDepth) {
		return nil, gas, ErrDepth
138
	}
139
	// Fail if we're trying to transfer more than the available balance
140
	if !evm.Context.CanTransfer(evm.StateDB, caller.Address(), value) {
141
		return nil, gas, ErrInsufficientBalance
142 143 144
	}

	var (
145
		to       = AccountRef(addr)
146
		snapshot = evm.StateDB.Snapshot()
147
	)
148
	if !evm.StateDB.Exist(addr) {
149 150 151 152 153
		precompiles := PrecompiledContractsHomestead
		if evm.ChainConfig().IsMetropolis(evm.BlockNumber) {
			precompiles = PrecompiledContractsMetropolis
		}
		if precompiles[addr] == nil && evm.ChainConfig().IsEIP158(evm.BlockNumber) && value.Sign() == 0 {
154
			return nil, gas, nil
155
		}
156
		evm.StateDB.CreateAccount(addr)
157
	}
158
	evm.Transfer(evm.StateDB, caller.Address(), to.Address(), value)
159 160

	// initialise a new contract and set the code that is to be used by the
161
	// E The contract is a scoped evmironment for this execution context
162 163
	// only.
	contract := NewContract(caller, to, value, gas)
164
	contract.SetCallCode(&addr, evm.StateDB.GetCodeHash(addr), evm.StateDB.GetCode(addr))
165

166
	ret, err = run(evm, snapshot, contract, input)
167 168 169 170 171
	// When an error was returned by the EVM or when setting the creation code
	// above we revert to the snapshot and consume any gas remaining. Additionally
	// when we're in homestead this also counts for code storage gas errors.
	if err != nil {
		contract.UseGas(contract.Gas)
172
		evm.StateDB.RevertToSnapshot(snapshot)
173
	}
174
	return ret, contract.Gas, err
175 176
}

177 178 179 180
// CallCode executes the contract associated with the addr with the given input
// as parameters. It also handles any necessary value transfer required and takes
// the necessary steps to create accounts and reverses the state in case of an
// execution error or failed value transfer.
181
//
182 183
// CallCode differs from Call in the sense that it executes the given address'
// code with the caller as context.
184
func (evm *EVM) CallCode(caller ContractRef, addr common.Address, input []byte, gas uint64, value *big.Int) (ret []byte, leftOverGas uint64, err error) {
185
	if evm.vmConfig.NoRecursion && evm.depth > 0 {
186
		return nil, gas, nil
187 188
	}

189
	// Fail if we're trying to execute above the call depth limit
190 191
	if evm.depth > int(params.CallCreateDepth) {
		return nil, gas, ErrDepth
192
	}
193
	// Fail if we're trying to transfer more than the available balance
194
	if !evm.CanTransfer(evm.StateDB, caller.Address(), value) {
195
		return nil, gas, ErrInsufficientBalance
196 197 198
	}

	var (
199
		snapshot = evm.StateDB.Snapshot()
200
		to       = AccountRef(caller.Address())
201 202
	)
	// initialise a new contract and set the code that is to be used by the
203
	// E The contract is a scoped evmironment for this execution context
204 205
	// only.
	contract := NewContract(caller, to, value, gas)
206
	contract.SetCallCode(&addr, evm.StateDB.GetCodeHash(addr), evm.StateDB.GetCode(addr))
207

208
	ret, err = run(evm, snapshot, contract, input)
209 210
	if err != nil {
		contract.UseGas(contract.Gas)
211
		evm.StateDB.RevertToSnapshot(snapshot)
212 213
	}

214
	return ret, contract.Gas, err
215 216
}

217 218
// DelegateCall executes the contract associated with the addr with the given input
// as parameters. It reverses the state in case of an execution error.
219
//
220 221
// DelegateCall differs from CallCode in the sense that it executes the given address'
// code with the caller as context and the caller is set to the caller of the caller.
222
func (evm *EVM) DelegateCall(caller ContractRef, addr common.Address, input []byte, gas uint64) (ret []byte, leftOverGas uint64, err error) {
223
	if evm.vmConfig.NoRecursion && evm.depth > 0 {
224
		return nil, gas, nil
225
	}
226
	// Fail if we're trying to execute above the call depth limit
227 228
	if evm.depth > int(params.CallCreateDepth) {
		return nil, gas, ErrDepth
229
	}
230

231
	var (
232
		snapshot = evm.StateDB.Snapshot()
233
		to       = AccountRef(caller.Address())
234
	)
235

236
	// Initialise a new contract and make initialise the delegate values
237
	contract := NewContract(caller, to, nil, gas).AsDelegate()
238
	contract.SetCallCode(&addr, evm.StateDB.GetCodeHash(addr), evm.StateDB.GetCode(addr))
239

240
	ret, err = run(evm, snapshot, contract, input)
241 242
	if err != nil {
		contract.UseGas(contract.Gas)
243
		evm.StateDB.RevertToSnapshot(snapshot)
244
	}
245

246
	return ret, contract.Gas, err
247 248
}

249 250 251 252
// StaticCall executes the contract associated with the addr with the given input
// as parameters while disallowing any modifications to the state during the call.
// Opcodes that attempt to perform such modifications will result in exceptions
// instead of performing the modifications.
253 254 255 256
func (evm *EVM) StaticCall(caller ContractRef, addr common.Address, input []byte, gas uint64) (ret []byte, leftOverGas uint64, err error) {
	if evm.vmConfig.NoRecursion && evm.depth > 0 {
		return nil, gas, nil
	}
257
	// Fail if we're trying to execute above the call depth limit
258 259 260
	if evm.depth > int(params.CallCreateDepth) {
		return nil, gas, ErrDepth
	}
261
	// Make sure the readonly is only set if we aren't in readonly yet
262 263
	// this makes also sure that the readonly flag isn't removed for
	// child calls.
264 265 266
	if !evm.interpreter.readOnly {
		evm.interpreter.readOnly = true
		defer func() { evm.interpreter.readOnly = false }()
267 268 269 270 271 272
	}

	var (
		to       = AccountRef(addr)
		snapshot = evm.StateDB.Snapshot()
	)
273 274
	// Initialise a new contract and set the code that is to be used by the
	// EVM. The contract is a scoped environment for this execution context
275 276 277 278 279 280
	// only.
	contract := NewContract(caller, to, new(big.Int), gas)
	contract.SetCallCode(&addr, evm.StateDB.GetCodeHash(addr), evm.StateDB.GetCode(addr))

	// When an error was returned by the EVM or when setting the creation code
	// above we revert to the snapshot and consume any gas remaining. Additionally
281 282
	// when we're in Homestead this also counts for code storage gas errors.
	ret, err = run(evm, snapshot, contract, input)
283 284 285 286 287 288 289
	if err != nil {
		contract.UseGas(contract.Gas)
		evm.StateDB.RevertToSnapshot(snapshot)
	}
	return ret, contract.Gas, err
}

290
// Create creates a new contract using code as deployment code.
291
func (evm *EVM) Create(caller ContractRef, code []byte, gas uint64, value *big.Int) (ret []byte, contractAddr common.Address, leftOverGas uint64, err error) {
292
	if evm.vmConfig.NoRecursion && evm.depth > 0 {
293
		return nil, common.Address{}, gas, nil
294 295 296 297
	}

	// Depth check execution. Fail if we're trying to execute above the
	// limit.
298 299
	if evm.depth > int(params.CallCreateDepth) {
		return nil, common.Address{}, gas, ErrDepth
300
	}
301
	if !evm.CanTransfer(evm.StateDB, caller.Address(), value) {
302
		return nil, common.Address{}, gas, ErrInsufficientBalance
303 304 305
	}

	// Create a new account on the state
306 307 308 309 310
	nonce := evm.StateDB.GetNonce(caller.Address())
	evm.StateDB.SetNonce(caller.Address(), nonce+1)

	snapshot := evm.StateDB.Snapshot()
	contractAddr = crypto.CreateAddress(caller.Address(), nonce)
311
	evm.StateDB.CreateAccount(contractAddr)
312 313
	if evm.ChainConfig().IsEIP158(evm.BlockNumber) {
		evm.StateDB.SetNonce(contractAddr, 1)
314
	}
315
	evm.Transfer(evm.StateDB, caller.Address(), contractAddr, value)
316 317

	// initialise a new contract and set the code that is to be used by the
318
	// E The contract is a scoped evmironment for this execution context
319
	// only.
320
	contract := NewContract(caller, AccountRef(contractAddr), value, gas)
321
	contract.SetCallCode(&contractAddr, crypto.Keccak256Hash(code), code)
322

323
	ret, err = run(evm, snapshot, contract, nil)
324 325 326 327 328 329 330
	// check whether the max code size has been exceeded
	maxCodeSizeExceeded := len(ret) > params.MaxCodeSize
	// if the contract creation ran successfully and no errors were returned
	// calculate the gas required to store the code. If the code could not
	// be stored due to not enough gas set an error and let it be handled
	// by the error checking condition below.
	if err == nil && !maxCodeSizeExceeded {
331 332
		createDataGas := uint64(len(ret)) * params.CreateDataGas
		if contract.UseGas(createDataGas) {
333
			evm.StateDB.SetCode(contractAddr, ret)
334
		} else {
335
			err = ErrCodeStoreOutOfGas
336 337 338 339 340 341 342
		}
	}

	// When an error was returned by the EVM or when setting the creation code
	// above we revert to the snapshot and consume any gas remaining. Additionally
	// when we're in homestead this also counts for code storage gas errors.
	if maxCodeSizeExceeded ||
343
		(err != nil && (evm.ChainConfig().IsHomestead(evm.BlockNumber) || err != ErrCodeStoreOutOfGas)) {
344
		contract.UseGas(contract.Gas)
345
		evm.StateDB.RevertToSnapshot(snapshot)
346 347 348 349 350 351 352 353
	}
	// If the vm returned with an error the return value should be set to nil.
	// This isn't consensus critical but merely to for behaviour reasons such as
	// tests, RPC calls, etc.
	if err != nil {
		ret = nil
	}

354
	return ret, contractAddr, contract.Gas, err
O
obscuren 已提交
355
}
356

357 358
// ChainConfig returns the evmironment's chain configuration
func (evm *EVM) ChainConfig() *params.ChainConfig { return evm.chainConfig }
359

360 361
// Interpreter returns the EVM interpreter
func (evm *EVM) Interpreter() *Interpreter { return evm.interpreter }