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

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

obscuren's avatar
obscuren committed
24
	"github.com/ethereum/go-ethereum/common"
25
	"github.com/ethereum/go-ethereum/crypto"
26
	"github.com/ethereum/go-ethereum/params"
27
	"github.com/holiman/uint256"
28 29
)

30 31 32 33
// 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)

34
type (
35
	// CanTransferFunc is the signature of a transfer guard function
36
	CanTransferFunc func(StateDB, common.Address, *big.Int) bool
37 38
	// TransferFunc is the signature of a transfer function
	TransferFunc func(StateDB, common.Address, common.Address, *big.Int)
39
	// GetHashFunc returns the n'th block hash in the blockchain
40 41 42 43
	// and is used by the BLOCKHASH EVM op code.
	GetHashFunc func(uint64) common.Hash
)

44 45 46
func (evm *EVM) precompile(addr common.Address) (PrecompiledContract, bool) {
	var precompiles map[common.Address]PrecompiledContract
	switch {
47 48
	case evm.chainRules.IsBerlin:
		precompiles = PrecompiledContractsBerlin
49 50 51 52 53 54 55 56 57 58 59
	case evm.chainRules.IsIstanbul:
		precompiles = PrecompiledContractsIstanbul
	case evm.chainRules.IsByzantium:
		precompiles = PrecompiledContractsByzantium
	default:
		precompiles = PrecompiledContractsHomestead
	}
	p, ok := precompiles[addr]
	return p, ok
}

60
// BlockContext provides the EVM with auxiliary information. Once provided
61
// it shouldn't be modified.
62
type BlockContext struct {
63 64 65 66 67 68 69 70 71 72
	// 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

	// Block information
	Coinbase    common.Address // Provides information for COINBASE
73
	GasLimit    uint64         // Provides information for GASLIMIT
74 75 76
	BlockNumber *big.Int       // Provides information for NUMBER
	Time        *big.Int       // Provides information for TIME
	Difficulty  *big.Int       // Provides information for DIFFICULTY
77
	BaseFee     *big.Int       // Provides information for BASEFEE
78 79
}

80 81 82 83 84 85 86 87
// TxContext provides the EVM with information about a transaction.
// All fields can change between transactions.
type TxContext struct {
	// Message information
	Origin   common.Address // Provides information for ORIGIN
	GasPrice *big.Int       // Provides information for GASPRICE
}

88 89 90 91 92 93 94
// 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.
95
//
96 97
// The EVM should never be reused and is not thread safe.
type EVM struct {
98
	// Context provides auxiliary blockchain related information
99 100
	Context BlockContext
	TxContext
101 102 103
	// StateDB gives access to the underlying state
	StateDB StateDB
	// Depth is the current call stack
104
	depth int
105 106 107

	// chainConfig contains information about the current chain
	chainConfig *params.ChainConfig
108 109
	// chain rules contains the chain rules for the current epoch
	chainRules params.Rules
110 111
	// virtual machine configuration options used to initialise the
	// evm.
112
	Config Config
113 114
	// global (to this context) ethereum virtual machine
	// used throughout the execution of the tx.
115
	interpreter *EVMInterpreter
116 117 118
	// abort is used to abort the EVM calling operations
	// NOTE: must be set atomically
	abort int32
119 120 121 122
	// 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
123 124
}

125
// NewEVM returns a new EVM. The returned EVM is not thread safe and should
126
// only ever be used *once*.
127
func NewEVM(blockCtx BlockContext, txCtx TxContext, statedb StateDB, chainConfig *params.ChainConfig, config Config) *EVM {
128
	evm := &EVM{
129 130 131 132 133 134 135 136
		Context:     blockCtx,
		TxContext:   txCtx,
		StateDB:     statedb,
		Config:      config,
		chainConfig: chainConfig,
		chainRules:  chainConfig.Rules(blockCtx.BlockNumber),
	}
	evm.interpreter = NewEVMInterpreter(evm, config)
137 138 139
	return evm
}

140 141 142 143 144 145 146
// Reset resets the EVM with a new transaction context.Reset
// This is not threadsafe and should only be done very cautiously.
func (evm *EVM) Reset(txCtx TxContext, statedb StateDB) {
	evm.TxContext = txCtx
	evm.StateDB = statedb
}

147 148
// Cancel cancels any running EVM operation. This may be called concurrently and
// it's safe to be called multiple times.
149 150
func (evm *EVM) Cancel() {
	atomic.StoreInt32(&evm.abort, 1)
151 152
}

153 154 155 156 157
// Cancelled returns true if Cancel has been called
func (evm *EVM) Cancelled() bool {
	return atomic.LoadInt32(&evm.abort) == 1
}

158
// Interpreter returns the current interpreter
159
func (evm *EVM) Interpreter() *EVMInterpreter {
160 161 162
	return evm.interpreter
}

163 164 165 166
// 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.
167
func (evm *EVM) Call(caller ContractRef, addr common.Address, input []byte, gas uint64, value *big.Int) (ret []byte, leftOverGas uint64, err error) {
168
	if evm.Config.NoRecursion && evm.depth > 0 {
169
		return nil, gas, nil
170
	}
171
	// Fail if we're trying to execute above the call depth limit
172 173
	if evm.depth > int(params.CallCreateDepth) {
		return nil, gas, ErrDepth
174
	}
175
	// Fail if we're trying to transfer more than the available balance
176
	if value.Sign() != 0 && !evm.Context.CanTransfer(evm.StateDB, caller.Address(), value) {
177
		return nil, gas, ErrInsufficientBalance
178
	}
179 180 181
	snapshot := evm.StateDB.Snapshot()
	p, isPrecompile := evm.precompile(addr)

182
	if !evm.StateDB.Exist(addr) {
183
		if !isPrecompile && evm.chainRules.IsEIP158 && value.Sign() == 0 {
184
			// Calling a non existing account, don't do anything, but ping the tracer
185 186 187 188 189 190 191 192
			if evm.Config.Debug {
				if evm.depth == 0 {
					evm.Config.Tracer.CaptureStart(evm, caller.Address(), addr, false, input, gas, value)
					evm.Config.Tracer.CaptureEnd(ret, 0, 0, nil)
				} else {
					evm.Config.Tracer.CaptureEnter(CALL, caller.Address(), addr, input, gas, value)
					evm.Config.Tracer.CaptureExit(ret, 0, nil)
				}
193
			}
194
			return nil, gas, nil
195
		}
196
		evm.StateDB.CreateAccount(addr)
197
	}
198
	evm.Context.Transfer(evm.StateDB, caller.Address(), addr, value)
199 200

	// Capture the tracer start/end events in debug mode
201 202 203 204 205 206 207 208 209 210 211 212 213
	if evm.Config.Debug {
		if evm.depth == 0 {
			evm.Config.Tracer.CaptureStart(evm, caller.Address(), addr, false, input, gas, value)
			defer func(startGas uint64, startTime time.Time) { // Lazy evaluation of the parameters
				evm.Config.Tracer.CaptureEnd(ret, startGas-gas, time.Since(startTime), err)
			}(gas, time.Now())
		} else {
			// Handle tracer events for entering and exiting a call frame
			evm.Config.Tracer.CaptureEnter(CALL, caller.Address(), addr, input, gas, value)
			defer func(startGas uint64) {
				evm.Config.Tracer.CaptureExit(ret, startGas-gas, err)
			}(gas)
		}
214 215
	}

216 217 218 219 220 221 222 223 224 225 226 227 228 229
	if isPrecompile {
		ret, gas, err = RunPrecompiledContract(p, input, gas)
	} else {
		// 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 only.
		code := evm.StateDB.GetCode(addr)
		if len(code) == 0 {
			ret, err = nil, nil // gas is unchanged
		} else {
			addrCopy := addr
			// If the account has no code, we can abort here
			// The depth-check is already done, and precompiles handled above
			contract := NewContract(caller, AccountRef(addrCopy), value, gas)
			contract.SetCallCode(&addrCopy, evm.StateDB.GetCodeHash(addrCopy), code)
230
			ret, err = evm.interpreter.Run(contract, input, false)
231 232 233
			gas = contract.Gas
		}
	}
234 235 236 237
	// 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 {
238
		evm.StateDB.RevertToSnapshot(snapshot)
239
		if err != ErrExecutionReverted {
240
			gas = 0
241
		}
242 243 244
		// TODO: consider clearing up unused snapshots:
		//} else {
		//	evm.StateDB.DiscardSnapshot(snapshot)
245
	}
246
	return ret, gas, err
247 248
}

249 250 251 252
// 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.
253
//
254 255
// CallCode differs from Call in the sense that it executes the given address'
// code with the caller as context.
256
func (evm *EVM) CallCode(caller ContractRef, addr common.Address, input []byte, gas uint64, value *big.Int) (ret []byte, leftOverGas uint64, err error) {
257
	if evm.Config.NoRecursion && evm.depth > 0 {
258
		return nil, gas, nil
259
	}
260
	// Fail if we're trying to execute above the call depth limit
261 262
	if evm.depth > int(params.CallCreateDepth) {
		return nil, gas, ErrDepth
263
	}
264
	// Fail if we're trying to transfer more than the available balance
265 266 267 268
	// Note although it's noop to transfer X ether to caller itself. But
	// if caller doesn't have enough balance, it would be an error to allow
	// over-charging itself. So the check here is necessary.
	if !evm.Context.CanTransfer(evm.StateDB, caller.Address(), value) {
269
		return nil, gas, ErrInsufficientBalance
270
	}
271 272
	var snapshot = evm.StateDB.Snapshot()

273 274 275 276 277 278 279 280
	// Invoke tracer hooks that signal entering/exiting a call frame
	if evm.Config.Debug {
		evm.Config.Tracer.CaptureEnter(CALLCODE, caller.Address(), addr, input, gas, value)
		defer func(startGas uint64) {
			evm.Config.Tracer.CaptureExit(ret, startGas-gas, err)
		}(gas)
	}

281 282 283 284 285 286 287 288 289
	// It is allowed to call precompiles, even via delegatecall
	if p, isPrecompile := evm.precompile(addr); isPrecompile {
		ret, gas, err = RunPrecompiledContract(p, input, gas)
	} else {
		addrCopy := addr
		// 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 only.
		contract := NewContract(caller, AccountRef(caller.Address()), value, gas)
		contract.SetCallCode(&addrCopy, evm.StateDB.GetCodeHash(addrCopy), evm.StateDB.GetCode(addrCopy))
290
		ret, err = evm.interpreter.Run(contract, input, false)
291 292
		gas = contract.Gas
	}
293
	if err != nil {
294
		evm.StateDB.RevertToSnapshot(snapshot)
295
		if err != ErrExecutionReverted {
296
			gas = 0
297
		}
298
	}
299
	return ret, gas, err
300 301
}

302 303
// DelegateCall executes the contract associated with the addr with the given input
// as parameters. It reverses the state in case of an execution error.
304
//
305 306
// 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.
307
func (evm *EVM) DelegateCall(caller ContractRef, addr common.Address, input []byte, gas uint64) (ret []byte, leftOverGas uint64, err error) {
308
	if evm.Config.NoRecursion && evm.depth > 0 {
309
		return nil, gas, nil
310
	}
311
	// Fail if we're trying to execute above the call depth limit
312 313
	if evm.depth > int(params.CallCreateDepth) {
		return nil, gas, ErrDepth
314
	}
315 316
	var snapshot = evm.StateDB.Snapshot()

317 318 319 320 321 322 323 324
	// Invoke tracer hooks that signal entering/exiting a call frame
	if evm.Config.Debug {
		evm.Config.Tracer.CaptureEnter(DELEGATECALL, caller.Address(), addr, input, gas, nil)
		defer func(startGas uint64) {
			evm.Config.Tracer.CaptureExit(ret, startGas-gas, err)
		}(gas)
	}

325 326 327 328 329 330 331 332
	// It is allowed to call precompiles, even via delegatecall
	if p, isPrecompile := evm.precompile(addr); isPrecompile {
		ret, gas, err = RunPrecompiledContract(p, input, gas)
	} else {
		addrCopy := addr
		// Initialise a new contract and make initialise the delegate values
		contract := NewContract(caller, AccountRef(caller.Address()), nil, gas).AsDelegate()
		contract.SetCallCode(&addrCopy, evm.StateDB.GetCodeHash(addrCopy), evm.StateDB.GetCode(addrCopy))
333
		ret, err = evm.interpreter.Run(contract, input, false)
334 335
		gas = contract.Gas
	}
336
	if err != nil {
337
		evm.StateDB.RevertToSnapshot(snapshot)
338
		if err != ErrExecutionReverted {
339
			gas = 0
340
		}
341
	}
342
	return ret, gas, err
343 344
}

345 346 347 348
// 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.
349
func (evm *EVM) StaticCall(caller ContractRef, addr common.Address, input []byte, gas uint64) (ret []byte, leftOverGas uint64, err error) {
350
	if evm.Config.NoRecursion && evm.depth > 0 {
351 352
		return nil, gas, nil
	}
353
	// Fail if we're trying to execute above the call depth limit
354 355 356
	if evm.depth > int(params.CallCreateDepth) {
		return nil, gas, ErrDepth
	}
357 358 359 360 361 362
	// We take a snapshot here. This is a bit counter-intuitive, and could probably be skipped.
	// However, even a staticcall is considered a 'touch'. On mainnet, static calls were introduced
	// after all empty accounts were deleted, so this is not required. However, if we omit this,
	// then certain tests start failing; stRevertTest/RevertPrecompiledTouchExactOOG.json.
	// We could change this, but for now it's left for legacy reasons
	var snapshot = evm.StateDB.Snapshot()
363

364 365 366 367
	// We do an AddBalance of zero here, just in order to trigger a touch.
	// This doesn't matter on Mainnet, where all empties are gone at the time of Byzantium,
	// but is the correct thing to do and matters on other networks, in tests, and potential
	// future scenarios
368 369
	evm.StateDB.AddBalance(addr, big0)

370 371 372 373 374 375 376 377
	// Invoke tracer hooks that signal entering/exiting a call frame
	if evm.Config.Debug {
		evm.Config.Tracer.CaptureEnter(STATICCALL, caller.Address(), addr, input, gas, nil)
		defer func(startGas uint64) {
			evm.Config.Tracer.CaptureExit(ret, startGas-gas, err)
		}(gas)
	}

378 379 380 381 382 383 384 385 386 387 388 389 390 391
	if p, isPrecompile := evm.precompile(addr); isPrecompile {
		ret, gas, err = RunPrecompiledContract(p, input, gas)
	} else {
		// At this point, we use a copy of address. If we don't, the go compiler will
		// leak the 'contract' to the outer scope, and make allocation for 'contract'
		// even if the actual execution ends on RunPrecompiled above.
		addrCopy := addr
		// 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 only.
		contract := NewContract(caller, AccountRef(addrCopy), new(big.Int), gas)
		contract.SetCallCode(&addrCopy, evm.StateDB.GetCodeHash(addrCopy), evm.StateDB.GetCode(addrCopy))
		// 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.
392
		ret, err = evm.interpreter.Run(contract, input, true)
393 394
		gas = contract.Gas
	}
395 396
	if err != nil {
		evm.StateDB.RevertToSnapshot(snapshot)
397
		if err != ErrExecutionReverted {
398
			gas = 0
399
		}
400
	}
401
	return ret, gas, err
402 403
}

404 405 406 407 408 409 410 411 412 413 414 415
type codeAndHash struct {
	code []byte
	hash common.Hash
}

func (c *codeAndHash) Hash() common.Hash {
	if c.hash == (common.Hash{}) {
		c.hash = crypto.Keccak256Hash(c.code)
	}
	return c.hash
}

416
// create creates a new contract using code as deployment code.
417
func (evm *EVM) create(caller ContractRef, codeAndHash *codeAndHash, gas uint64, value *big.Int, address common.Address, typ OpCode) ([]byte, common.Address, uint64, error) {
418 419
	// Depth check execution. Fail if we're trying to execute above the
	// limit.
420 421
	if evm.depth > int(params.CallCreateDepth) {
		return nil, common.Address{}, gas, ErrDepth
422
	}
423
	if !evm.Context.CanTransfer(evm.StateDB, caller.Address(), value) {
424
		return nil, common.Address{}, gas, ErrInsufficientBalance
425
	}
426 427
	nonce := evm.StateDB.GetNonce(caller.Address())
	evm.StateDB.SetNonce(caller.Address(), nonce+1)
428 429
	// We add this to the access list _before_ taking a snapshot. Even if the creation fails,
	// the access-list change should not be rolled back
430
	if evm.chainRules.IsBerlin {
431 432
		evm.StateDB.AddAddressToAccessList(address)
	}
433 434 435
	// Ensure there's no existing contract already at the designated address
	contractHash := evm.StateDB.GetCodeHash(address)
	if evm.StateDB.GetNonce(address) != 0 || (contractHash != (common.Hash{}) && contractHash != emptyCodeHash) {
436 437 438 439
		return nil, common.Address{}, 0, ErrContractAddressCollision
	}
	// Create a new account on the state
	snapshot := evm.StateDB.Snapshot()
440
	evm.StateDB.CreateAccount(address)
441
	if evm.chainRules.IsEIP158 {
442
		evm.StateDB.SetNonce(address, 1)
443
	}
444
	evm.Context.Transfer(evm.StateDB, caller.Address(), address, value)
445

446 447
	// 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 only.
448
	contract := NewContract(caller, AccountRef(address), value, gas)
449
	contract.SetCodeOptionalHash(&address, codeAndHash)
450

451
	if evm.Config.NoRecursion && evm.depth > 0 {
452
		return nil, address, gas, nil
453
	}
454

455 456 457 458 459 460
	if evm.Config.Debug {
		if evm.depth == 0 {
			evm.Config.Tracer.CaptureStart(evm, caller.Address(), address, true, codeAndHash.code, gas, value)
		} else {
			evm.Config.Tracer.CaptureEnter(typ, caller.Address(), address, codeAndHash.code, gas, value)
		}
461
	}
462

463 464
	start := time.Now()

465
	ret, err := evm.interpreter.Run(contract, nil, false)
466

467 468 469 470 471
	// Check whether the max code size has been exceeded, assign err if the case.
	if err == nil && evm.chainRules.IsEIP158 && len(ret) > params.MaxCodeSize {
		err = ErrMaxCodeSizeExceeded
	}

472 473 474 475 476
	// Reject code starting with 0xEF if EIP-3541 is enabled.
	if err == nil && len(ret) >= 1 && ret[0] == 0xEF && evm.chainRules.IsLondon {
		err = ErrInvalidCode
	}

477 478 479 480
	// 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.
481
	if err == nil {
482 483
		createDataGas := uint64(len(ret)) * params.CreateDataGas
		if contract.UseGas(createDataGas) {
484
			evm.StateDB.SetCode(address, ret)
485
		} else {
486
			err = ErrCodeStoreOutOfGas
487 488 489 490 491 492
		}
	}

	// 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.
493
	if err != nil && (evm.chainRules.IsHomestead || err != ErrCodeStoreOutOfGas) {
494
		evm.StateDB.RevertToSnapshot(snapshot)
495
		if err != ErrExecutionReverted {
496 497
			contract.UseGas(contract.Gas)
		}
498
	}
499

500 501 502 503 504 505
	if evm.Config.Debug {
		if evm.depth == 0 {
			evm.Config.Tracer.CaptureEnd(ret, gas-contract.Gas, time.Since(start), err)
		} else {
			evm.Config.Tracer.CaptureExit(ret, gas-contract.Gas, err)
		}
506
	}
507 508 509 510 511 512
	return ret, address, contract.Gas, err
}

// Create creates a new contract using code as deployment code.
func (evm *EVM) Create(caller ContractRef, code []byte, gas uint64, value *big.Int) (ret []byte, contractAddr common.Address, leftOverGas uint64, err error) {
	contractAddr = crypto.CreateAddress(caller.Address(), evm.StateDB.GetNonce(caller.Address()))
513
	return evm.create(caller, &codeAndHash{code: code}, gas, value, contractAddr, CREATE)
514 515 516 517
}

// Create2 creates a new contract using code as deployment code.
//
518
// The different between Create2 with Create is Create2 uses sha3(0xff ++ msg.sender ++ salt ++ sha3(init_code))[12:]
519
// instead of the usual sender-and-nonce-hash as the address where the contract is initialized at.
520
func (evm *EVM) Create2(caller ContractRef, code []byte, gas uint64, endowment *big.Int, salt *uint256.Int) (ret []byte, contractAddr common.Address, leftOverGas uint64, err error) {
521
	codeAndHash := &codeAndHash{code: code}
522
	contractAddr = crypto.CreateAddress2(caller.Address(), salt.Bytes32(), codeAndHash.Hash().Bytes())
523
	return evm.create(caller, codeAndHash, gas, endowment, contractAddr, CREATE2)
524
}
525

526
// ChainConfig returns the environment's chain configuration
527
func (evm *EVM) ChainConfig() *params.ChainConfig { return evm.chainConfig }