evm.go 14.4 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
// emptyCodeHash is used by create to ensure deployment is disallowed to already
// deployed contract addresses (relevant after the account abstraction).
var emptyCodeHash = crypto.Keccak256Hash(nil)

32 33 34 35 36 37 38 39
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
)

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

// Context provides the EVM with auxiliary information. Once provided
// it shouldn't be modified.
56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
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
}

77 78 79 80 81 82 83
// 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.
84
//
85 86
// The EVM should never be reused and is not thread safe.
type EVM struct {
87 88 89 90 91
	// Context provides auxiliary blockchain related information
	Context
	// StateDB gives access to the underlying state
	StateDB StateDB
	// Depth is the current call stack
92
	depth int
93 94 95

	// chainConfig contains information about the current chain
	chainConfig *params.ChainConfig
96 97
	// chain rules contains the chain rules for the current epoch
	chainRules params.Rules
98 99 100 101 102 103 104 105 106
	// 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
107 108 109 110
	// callGasTemp holds the gas available for the current call. This is needed because the
	// available gas is calculated in gasCall* according to the 63/64 rule and later
	// applied in opCall*.
	callGasTemp uint64
111 112
}

113 114
// NewEVM retutrns a new EVM . The returned EVM is not thread safe and should
// only ever be used *once*.
115 116 117
func NewEVM(ctx Context, statedb StateDB, chainConfig *params.ChainConfig, vmConfig Config) *EVM {
	evm := &EVM{
		Context:     ctx,
118 119 120
		StateDB:     statedb,
		vmConfig:    vmConfig,
		chainConfig: chainConfig,
121
		chainRules:  chainConfig.Rules(ctx.BlockNumber),
122
	}
123 124 125 126 127

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

128 129
// Cancel cancels any running EVM operation. This may be called concurrently and
// it's safe to be called multiple times.
130 131
func (evm *EVM) Cancel() {
	atomic.StoreInt32(&evm.abort, 1)
132 133
}

134 135 136 137
// 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.
138
func (evm *EVM) Call(caller ContractRef, addr common.Address, input []byte, gas uint64, value *big.Int) (ret []byte, leftOverGas uint64, err error) {
139
	if evm.vmConfig.NoRecursion && evm.depth > 0 {
140
		return nil, gas, nil
141 142
	}

143
	// Fail if we're trying to execute above the call depth limit
144 145
	if evm.depth > int(params.CallCreateDepth) {
		return nil, gas, ErrDepth
146
	}
147
	// Fail if we're trying to transfer more than the available balance
148
	if !evm.Context.CanTransfer(evm.StateDB, caller.Address(), value) {
149
		return nil, gas, ErrInsufficientBalance
150 151 152
	}

	var (
153
		to       = AccountRef(addr)
154
		snapshot = evm.StateDB.Snapshot()
155
	)
156
	if !evm.StateDB.Exist(addr) {
157
		precompiles := PrecompiledContractsHomestead
158 159
		if evm.ChainConfig().IsByzantium(evm.BlockNumber) {
			precompiles = PrecompiledContractsByzantium
160 161
		}
		if precompiles[addr] == nil && evm.ChainConfig().IsEIP158(evm.BlockNumber) && value.Sign() == 0 {
162
			return nil, gas, nil
163
		}
164
		evm.StateDB.CreateAccount(addr)
165
	}
166
	evm.Transfer(evm.StateDB, caller.Address(), to.Address(), value)
167 168

	// initialise a new contract and set the code that is to be used by the
169
	// E The contract is a scoped environment for this execution context
170 171
	// only.
	contract := NewContract(caller, to, value, gas)
172
	contract.SetCallCode(&addr, evm.StateDB.GetCodeHash(addr), evm.StateDB.GetCode(addr))
173

174
	ret, err = run(evm, contract, input)
175 176 177 178
	// 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 {
179
		evm.StateDB.RevertToSnapshot(snapshot)
180 181 182
		if err != errExecutionReverted {
			contract.UseGas(contract.Gas)
		}
183
	}
184
	return ret, contract.Gas, err
185 186
}

187 188 189 190
// 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.
191
//
192 193
// CallCode differs from Call in the sense that it executes the given address'
// code with the caller as context.
194
func (evm *EVM) CallCode(caller ContractRef, addr common.Address, input []byte, gas uint64, value *big.Int) (ret []byte, leftOverGas uint64, err error) {
195
	if evm.vmConfig.NoRecursion && evm.depth > 0 {
196
		return nil, gas, nil
197 198
	}

199
	// Fail if we're trying to execute above the call depth limit
200 201
	if evm.depth > int(params.CallCreateDepth) {
		return nil, gas, ErrDepth
202
	}
203
	// Fail if we're trying to transfer more than the available balance
204
	if !evm.CanTransfer(evm.StateDB, caller.Address(), value) {
205
		return nil, gas, ErrInsufficientBalance
206 207 208
	}

	var (
209
		snapshot = evm.StateDB.Snapshot()
210
		to       = AccountRef(caller.Address())
211 212
	)
	// initialise a new contract and set the code that is to be used by the
213
	// E The contract is a scoped evmironment for this execution context
214 215
	// only.
	contract := NewContract(caller, to, value, gas)
216
	contract.SetCallCode(&addr, evm.StateDB.GetCodeHash(addr), evm.StateDB.GetCode(addr))
217

218
	ret, err = run(evm, contract, input)
219
	if err != nil {
220
		evm.StateDB.RevertToSnapshot(snapshot)
221 222 223
		if err != errExecutionReverted {
			contract.UseGas(contract.Gas)
		}
224
	}
225
	return ret, contract.Gas, err
226 227
}

228 229
// DelegateCall executes the contract associated with the addr with the given input
// as parameters. It reverses the state in case of an execution error.
230
//
231 232
// 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.
233
func (evm *EVM) DelegateCall(caller ContractRef, addr common.Address, input []byte, gas uint64) (ret []byte, leftOverGas uint64, err error) {
234
	if evm.vmConfig.NoRecursion && evm.depth > 0 {
235
		return nil, gas, nil
236
	}
237
	// Fail if we're trying to execute above the call depth limit
238 239
	if evm.depth > int(params.CallCreateDepth) {
		return nil, gas, ErrDepth
240
	}
241

242
	var (
243
		snapshot = evm.StateDB.Snapshot()
244
		to       = AccountRef(caller.Address())
245
	)
246

247
	// Initialise a new contract and make initialise the delegate values
248
	contract := NewContract(caller, to, nil, gas).AsDelegate()
249
	contract.SetCallCode(&addr, evm.StateDB.GetCodeHash(addr), evm.StateDB.GetCode(addr))
250

251
	ret, err = run(evm, contract, input)
252
	if err != nil {
253
		evm.StateDB.RevertToSnapshot(snapshot)
254 255 256
		if err != errExecutionReverted {
			contract.UseGas(contract.Gas)
		}
257
	}
258
	return ret, contract.Gas, err
259 260
}

261 262 263 264
// 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.
265 266 267 268
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
	}
269
	// Fail if we're trying to execute above the call depth limit
270 271 272
	if evm.depth > int(params.CallCreateDepth) {
		return nil, gas, ErrDepth
	}
273
	// Make sure the readonly is only set if we aren't in readonly yet
274 275
	// this makes also sure that the readonly flag isn't removed for
	// child calls.
276 277 278
	if !evm.interpreter.readOnly {
		evm.interpreter.readOnly = true
		defer func() { evm.interpreter.readOnly = false }()
279 280 281 282 283 284
	}

	var (
		to       = AccountRef(addr)
		snapshot = evm.StateDB.Snapshot()
	)
285 286
	// 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
287 288 289 290 291 292
	// 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
293
	// when we're in Homestead this also counts for code storage gas errors.
294
	ret, err = run(evm, contract, input)
295 296
	if err != nil {
		evm.StateDB.RevertToSnapshot(snapshot)
297 298 299
		if err != errExecutionReverted {
			contract.UseGas(contract.Gas)
		}
300 301 302 303
	}
	return ret, contract.Gas, err
}

304
// Create creates a new contract using code as deployment code.
305
func (evm *EVM) Create(caller ContractRef, code []byte, gas uint64, value *big.Int) (ret []byte, contractAddr common.Address, leftOverGas uint64, err error) {
306 307 308

	// Depth check execution. Fail if we're trying to execute above the
	// limit.
309 310
	if evm.depth > int(params.CallCreateDepth) {
		return nil, common.Address{}, gas, ErrDepth
311
	}
312
	if !evm.CanTransfer(evm.StateDB, caller.Address(), value) {
313
		return nil, common.Address{}, gas, ErrInsufficientBalance
314
	}
315
	// Ensure there's no existing contract already at the designated address
316 317 318 319
	nonce := evm.StateDB.GetNonce(caller.Address())
	evm.StateDB.SetNonce(caller.Address(), nonce+1)

	contractAddr = crypto.CreateAddress(caller.Address(), nonce)
320 321 322 323 324 325
	contractHash := evm.StateDB.GetCodeHash(contractAddr)
	if evm.StateDB.GetNonce(contractAddr) != 0 || (contractHash != (common.Hash{}) && contractHash != emptyCodeHash) {
		return nil, common.Address{}, 0, ErrContractAddressCollision
	}
	// Create a new account on the state
	snapshot := evm.StateDB.Snapshot()
326
	evm.StateDB.CreateAccount(contractAddr)
327 328
	if evm.ChainConfig().IsEIP158(evm.BlockNumber) {
		evm.StateDB.SetNonce(contractAddr, 1)
329
	}
330
	evm.Transfer(evm.StateDB, caller.Address(), contractAddr, value)
331 332

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

338 339 340
	if evm.vmConfig.NoRecursion && evm.depth > 0 {
		return nil, contractAddr, gas, nil
	}
341
	ret, err = run(evm, contract, nil)
342
	// check whether the max code size has been exceeded
343
	maxCodeSizeExceeded := evm.ChainConfig().IsEIP158(evm.BlockNumber) && len(ret) > params.MaxCodeSize
344 345 346 347 348
	// 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 {
349 350
		createDataGas := uint64(len(ret)) * params.CreateDataGas
		if contract.UseGas(createDataGas) {
351
			evm.StateDB.SetCode(contractAddr, ret)
352
		} else {
353
			err = ErrCodeStoreOutOfGas
354 355 356 357 358 359
		}
	}

	// 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.
360
	if maxCodeSizeExceeded || (err != nil && (evm.ChainConfig().IsHomestead(evm.BlockNumber) || err != ErrCodeStoreOutOfGas)) {
361
		evm.StateDB.RevertToSnapshot(snapshot)
362 363 364
		if err != errExecutionReverted {
			contract.UseGas(contract.Gas)
		}
365
	}
366 367 368 369
	// Assign err if contract code size exceeds the max while the err is still empty.
	if maxCodeSizeExceeded && err == nil {
		err = errMaxCodeSizeExceeded
	}
370
	return ret, contractAddr, contract.Gas, err
O
obscuren 已提交
371
}
372

373 374
// ChainConfig returns the evmironment's chain configuration
func (evm *EVM) ChainConfig() *params.ChainConfig { return evm.chainConfig }
375

376 377
// Interpreter returns the EVM interpreter
func (evm *EVM) Interpreter() *Interpreter { return evm.interpreter }