github.com/ubiq/go-ubiq/v6@v6.0.0/core/vm/evm.go (about)

     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  // it under the terms of the GNU Lesser General Public License as published by
     6  // the Free Software Foundation, either version 3 of the License, or
     7  // (at your option) any later version.
     8  //
     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  // GNU Lesser General Public License for more details.
    13  //
    14  // 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  
    17  package vm
    18  
    19  import (
    20  	"math/big"
    21  	"sync/atomic"
    22  	"time"
    23  
    24  	"github.com/holiman/uint256"
    25  	"github.com/ubiq/go-ubiq/v6/common"
    26  	"github.com/ubiq/go-ubiq/v6/crypto"
    27  	"github.com/ubiq/go-ubiq/v6/params"
    28  )
    29  
    30  // emptyCodeHash is used by create to ensure deployment is disallowed to already
    31  // deployed contract addresses (relevant after the account abstraction).
    32  var emptyCodeHash = crypto.Keccak256Hash(nil)
    33  
    34  type (
    35  	// CanTransferFunc is the signature of a transfer guard function
    36  	CanTransferFunc func(StateDB, common.Address, *big.Int) bool
    37  	// TransferFunc is the signature of a transfer function
    38  	TransferFunc func(StateDB, common.Address, common.Address, *big.Int)
    39  	// GetHashFunc returns the n'th block hash in the blockchain
    40  	// and is used by the BLOCKHASH EVM op code.
    41  	GetHashFunc func(uint64) common.Hash
    42  )
    43  
    44  func (evm *EVM) precompile(addr common.Address) (PrecompiledContract, bool) {
    45  	var precompiles map[common.Address]PrecompiledContract
    46  	switch {
    47  	case evm.chainRules.IsBerlin:
    48  		precompiles = PrecompiledContractsBerlin
    49  	case evm.chainRules.IsIstanbul:
    50  		precompiles = PrecompiledContractsIstanbul
    51  	case evm.chainRules.IsByzantium:
    52  		precompiles = PrecompiledContractsByzantium
    53  	default:
    54  		precompiles = PrecompiledContractsHomestead
    55  	}
    56  	p, ok := precompiles[addr]
    57  	return p, ok
    58  }
    59  
    60  // BlockContext provides the EVM with auxiliary information. Once provided
    61  // it shouldn't be modified.
    62  type BlockContext struct {
    63  	// CanTransfer returns whether the account contains
    64  	// sufficient ether to transfer the value
    65  	CanTransfer CanTransferFunc
    66  	// Transfer transfers ether from one account to the other
    67  	Transfer TransferFunc
    68  	// GetHash returns the hash corresponding to n
    69  	GetHash GetHashFunc
    70  
    71  	// Block information
    72  	Coinbase    common.Address // Provides information for COINBASE
    73  	GasLimit    uint64         // Provides information for GASLIMIT
    74  	BlockNumber *big.Int       // Provides information for NUMBER
    75  	Time        *big.Int       // Provides information for TIME
    76  	Difficulty  *big.Int       // Provides information for DIFFICULTY
    77  	BaseFee     *big.Int       // Provides information for BASEFEE
    78  }
    79  
    80  // TxContext provides the EVM with information about a transaction.
    81  // All fields can change between transactions.
    82  type TxContext struct {
    83  	// Message information
    84  	Origin   common.Address // Provides information for ORIGIN
    85  	GasPrice *big.Int       // Provides information for GASPRICE
    86  }
    87  
    88  // EVM is the Ethereum Virtual Machine base object and provides
    89  // the necessary tools to run a contract on the given state with
    90  // the provided context. It should be noted that any error
    91  // generated through any of the calls should be considered a
    92  // revert-state-and-consume-all-gas operation, no checks on
    93  // specific errors should ever be performed. The interpreter makes
    94  // sure that any errors generated are to be considered faulty code.
    95  //
    96  // The EVM should never be reused and is not thread safe.
    97  type EVM struct {
    98  	// Context provides auxiliary blockchain related information
    99  	Context BlockContext
   100  	TxContext
   101  	// StateDB gives access to the underlying state
   102  	StateDB StateDB
   103  	// Depth is the current call stack
   104  	depth int
   105  
   106  	// chainConfig contains information about the current chain
   107  	chainConfig *params.ChainConfig
   108  	// chain rules contains the chain rules for the current epoch
   109  	chainRules params.Rules
   110  	// virtual machine configuration options used to initialise the
   111  	// evm.
   112  	Config Config
   113  	// global (to this context) ethereum virtual machine
   114  	// used throughout the execution of the tx.
   115  	interpreter *EVMInterpreter
   116  	// abort is used to abort the EVM calling operations
   117  	// NOTE: must be set atomically
   118  	abort int32
   119  	// callGasTemp holds the gas available for the current call. This is needed because the
   120  	// available gas is calculated in gasCall* according to the 63/64 rule and later
   121  	// applied in opCall*.
   122  	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  		Context:     blockCtx,
   130  		TxContext:   txCtx,
   131  		StateDB:     statedb,
   132  		Config:      config,
   133  		chainConfig: chainConfig,
   134  		chainRules:  chainConfig.Rules(blockCtx.BlockNumber),
   135  	}
   136  	evm.interpreter = NewEVMInterpreter(evm, config)
   137  	return evm
   138  }
   139  
   140  // Reset resets the EVM with a new transaction context.Reset
   141  // This is not threadsafe and should only be done very cautiously.
   142  func (evm *EVM) Reset(txCtx TxContext, statedb StateDB) {
   143  	evm.TxContext = txCtx
   144  	evm.StateDB = statedb
   145  }
   146  
   147  // Cancel cancels any running EVM operation. This may be called concurrently and
   148  // it's safe to be called multiple times.
   149  func (evm *EVM) Cancel() {
   150  	atomic.StoreInt32(&evm.abort, 1)
   151  }
   152  
   153  // Cancelled returns true if Cancel has been called
   154  func (evm *EVM) Cancelled() bool {
   155  	return atomic.LoadInt32(&evm.abort) == 1
   156  }
   157  
   158  // Interpreter returns the current interpreter
   159  func (evm *EVM) Interpreter() *EVMInterpreter {
   160  	return evm.interpreter
   161  }
   162  
   163  // Call executes the contract associated with the addr with the given input as
   164  // parameters. It also handles any necessary value transfer required and takes
   165  // the necessary steps to create accounts and reverses the state in case of an
   166  // 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  	if evm.depth > int(params.CallCreateDepth) {
   173  		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  	snapshot := evm.StateDB.Snapshot()
   180  	p, isPrecompile := evm.precompile(addr)
   181  
   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  			if evm.Config.Debug {
   186  				if evm.depth == 0 {
   187  					evm.Config.Tracer.CaptureStart(evm, caller.Address(), addr, false, input, gas, value)
   188  					evm.Config.Tracer.CaptureEnd(ret, 0, 0, nil)
   189  				} else {
   190  					evm.Config.Tracer.CaptureEnter(CALL, caller.Address(), addr, input, gas, value)
   191  					evm.Config.Tracer.CaptureExit(ret, 0, nil)
   192  				}
   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  	if evm.Config.Debug {
   202  		if evm.depth == 0 {
   203  			evm.Config.Tracer.CaptureStart(evm, caller.Address(), addr, false, input, gas, value)
   204  			defer func(startGas uint64, startTime time.Time) { // Lazy evaluation of the parameters
   205  				evm.Config.Tracer.CaptureEnd(ret, startGas-gas, time.Since(startTime), err)
   206  			}(gas, time.Now())
   207  		} else {
   208  			// Handle tracer events for entering and exiting a call frame
   209  			evm.Config.Tracer.CaptureEnter(CALL, caller.Address(), addr, input, gas, value)
   210  			defer func(startGas uint64) {
   211  				evm.Config.Tracer.CaptureExit(ret, startGas-gas, err)
   212  			}(gas)
   213  		}
   214  	}
   215  
   216  	if isPrecompile {
   217  		ret, gas, err = RunPrecompiledContract(p, input, gas)
   218  	} else {
   219  		// Initialise a new contract and set the code that is to be used by the EVM.
   220  		// The contract is a scoped environment for this execution context only.
   221  		code := evm.StateDB.GetCode(addr)
   222  		if len(code) == 0 {
   223  			ret, err = nil, nil // gas is unchanged
   224  		} else {
   225  			addrCopy := addr
   226  			// If the account has no code, we can abort here
   227  			// The depth-check is already done, and precompiles handled above
   228  			contract := NewContract(caller, AccountRef(addrCopy), value, gas)
   229  			contract.SetCallCode(&addrCopy, evm.StateDB.GetCodeHash(addrCopy), code)
   230  			ret, err = evm.interpreter.Run(contract, input, false)
   231  			gas = contract.Gas
   232  		}
   233  	}
   234  	// When an error was returned by the EVM or when setting the creation code
   235  	// above we revert to the snapshot and consume any gas remaining. Additionally
   236  	// when we're in homestead this also counts for code storage gas errors.
   237  	if err != nil {
   238  		evm.StateDB.RevertToSnapshot(snapshot)
   239  		if err != ErrExecutionReverted {
   240  			gas = 0
   241  		}
   242  		// TODO: consider clearing up unused snapshots:
   243  		//} else {
   244  		//	evm.StateDB.DiscardSnapshot(snapshot)
   245  	}
   246  	return ret, gas, err
   247  }
   248  
   249  // CallCode executes the contract associated with the addr with the given input
   250  // as parameters. It also handles any necessary value transfer required and takes
   251  // the necessary steps to create accounts and reverses the state in case of an
   252  // execution error or failed value transfer.
   253  //
   254  // CallCode differs from Call in the sense that it executes the given address'
   255  // 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  	if evm.depth > int(params.CallCreateDepth) {
   262  		return nil, gas, ErrDepth
   263  	}
   264  	// Fail if we're trying to transfer more than the available balance
   265  	// Note although it's noop to transfer X ether to caller itself. But
   266  	// if caller doesn't have enough balance, it would be an error to allow
   267  	// over-charging itself. So the check here is necessary.
   268  	if !evm.Context.CanTransfer(evm.StateDB, caller.Address(), value) {
   269  		return nil, gas, ErrInsufficientBalance
   270  	}
   271  	var snapshot = evm.StateDB.Snapshot()
   272  
   273  	// Invoke tracer hooks that signal entering/exiting a call frame
   274  	if evm.Config.Debug {
   275  		evm.Config.Tracer.CaptureEnter(CALLCODE, caller.Address(), addr, input, gas, value)
   276  		defer func(startGas uint64) {
   277  			evm.Config.Tracer.CaptureExit(ret, startGas-gas, err)
   278  		}(gas)
   279  	}
   280  
   281  	// It is allowed to call precompiles, even via delegatecall
   282  	if p, isPrecompile := evm.precompile(addr); isPrecompile {
   283  		ret, gas, err = RunPrecompiledContract(p, input, gas)
   284  	} else {
   285  		addrCopy := addr
   286  		// Initialise a new contract and set the code that is to be used by the EVM.
   287  		// The contract is a scoped environment for this execution context only.
   288  		contract := NewContract(caller, AccountRef(caller.Address()), value, gas)
   289  		contract.SetCallCode(&addrCopy, evm.StateDB.GetCodeHash(addrCopy), evm.StateDB.GetCode(addrCopy))
   290  		ret, err = evm.interpreter.Run(contract, input, false)
   291  		gas = contract.Gas
   292  	}
   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  // DelegateCall executes the contract associated with the addr with the given input
   303  // as parameters. It reverses the state in case of an execution error.
   304  //
   305  // DelegateCall differs from CallCode in the sense that it executes the given address'
   306  // 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  	if evm.depth > int(params.CallCreateDepth) {
   313  		return nil, gas, ErrDepth
   314  	}
   315  	var snapshot = evm.StateDB.Snapshot()
   316  
   317  	// Invoke tracer hooks that signal entering/exiting a call frame
   318  	if evm.Config.Debug {
   319  		evm.Config.Tracer.CaptureEnter(DELEGATECALL, caller.Address(), addr, input, gas, nil)
   320  		defer func(startGas uint64) {
   321  			evm.Config.Tracer.CaptureExit(ret, startGas-gas, err)
   322  		}(gas)
   323  	}
   324  
   325  	// It is allowed to call precompiles, even via delegatecall
   326  	if p, isPrecompile := evm.precompile(addr); isPrecompile {
   327  		ret, gas, err = RunPrecompiledContract(p, input, gas)
   328  	} else {
   329  		addrCopy := addr
   330  		// Initialise a new contract and make initialise the delegate values
   331  		contract := NewContract(caller, AccountRef(caller.Address()), nil, gas).AsDelegate()
   332  		contract.SetCallCode(&addrCopy, evm.StateDB.GetCodeHash(addrCopy), evm.StateDB.GetCode(addrCopy))
   333  		ret, err = evm.interpreter.Run(contract, input, false)
   334  		gas = contract.Gas
   335  	}
   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  // StaticCall executes the contract associated with the addr with the given input
   346  // as parameters while disallowing any modifications to the state during the call.
   347  // Opcodes that attempt to perform such modifications will result in exceptions
   348  // 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  		return nil, gas, nil
   352  	}
   353  	// Fail if we're trying to execute above the call depth limit
   354  	if evm.depth > int(params.CallCreateDepth) {
   355  		return nil, gas, ErrDepth
   356  	}
   357  	// We take a snapshot here. This is a bit counter-intuitive, and could probably be skipped.
   358  	// However, even a staticcall is considered a 'touch'. On mainnet, static calls were introduced
   359  	// after all empty accounts were deleted, so this is not required. However, if we omit this,
   360  	// then certain tests start failing; stRevertTest/RevertPrecompiledTouchExactOOG.json.
   361  	// We could change this, but for now it's left for legacy reasons
   362  	var snapshot = evm.StateDB.Snapshot()
   363  
   364  	// We do an AddBalance of zero here, just in order to trigger a touch.
   365  	// This doesn't matter on Mainnet, where all empties are gone at the time of Byzantium,
   366  	// but is the correct thing to do and matters on other networks, in tests, and potential
   367  	// future scenarios
   368  	evm.StateDB.AddBalance(addr, big0)
   369  
   370  	// Invoke tracer hooks that signal entering/exiting a call frame
   371  	if evm.Config.Debug {
   372  		evm.Config.Tracer.CaptureEnter(STATICCALL, caller.Address(), addr, input, gas, nil)
   373  		defer func(startGas uint64) {
   374  			evm.Config.Tracer.CaptureExit(ret, startGas-gas, err)
   375  		}(gas)
   376  	}
   377  
   378  	if p, isPrecompile := evm.precompile(addr); isPrecompile {
   379  		ret, gas, err = RunPrecompiledContract(p, input, gas)
   380  	} else {
   381  		// At this point, we use a copy of address. If we don't, the go compiler will
   382  		// leak the 'contract' to the outer scope, and make allocation for 'contract'
   383  		// even if the actual execution ends on RunPrecompiled above.
   384  		addrCopy := addr
   385  		// Initialise a new contract and set the code that is to be used by the EVM.
   386  		// The contract is a scoped environment for this execution context only.
   387  		contract := NewContract(caller, AccountRef(addrCopy), new(big.Int), gas)
   388  		contract.SetCallCode(&addrCopy, evm.StateDB.GetCodeHash(addrCopy), evm.StateDB.GetCode(addrCopy))
   389  		// When an error was returned by the EVM or when setting the creation code
   390  		// above we revert to the snapshot and consume any gas remaining. Additionally
   391  		// when we're in Homestead this also counts for code storage gas errors.
   392  		ret, err = evm.interpreter.Run(contract, input, true)
   393  		gas = contract.Gas
   394  	}
   395  	if err != nil {
   396  		evm.StateDB.RevertToSnapshot(snapshot)
   397  		if err != ErrExecutionReverted {
   398  			gas = 0
   399  		}
   400  	}
   401  	return ret, gas, err
   402  }
   403  
   404  type codeAndHash struct {
   405  	code []byte
   406  	hash common.Hash
   407  }
   408  
   409  func (c *codeAndHash) Hash() common.Hash {
   410  	if c.hash == (common.Hash{}) {
   411  		c.hash = crypto.Keccak256Hash(c.code)
   412  	}
   413  	return c.hash
   414  }
   415  
   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  	// Depth check execution. Fail if we're trying to execute above the
   419  	// limit.
   420  	if evm.depth > int(params.CallCreateDepth) {
   421  		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  	nonce := evm.StateDB.GetNonce(caller.Address())
   427  	if nonce+1 < nonce {
   428  		return nil, common.Address{}, gas, ErrNonceUintOverflow
   429  	}
   430  	evm.StateDB.SetNonce(caller.Address(), nonce+1)
   431  	// We add this to the access list _before_ taking a snapshot. Even if the creation fails,
   432  	// the access-list change should not be rolled back
   433  	if evm.chainRules.IsBerlin {
   434  		evm.StateDB.AddAddressToAccessList(address)
   435  	}
   436  	// Ensure there's no existing contract already at the designated address
   437  	contractHash := evm.StateDB.GetCodeHash(address)
   438  	if evm.StateDB.GetNonce(address) != 0 || (contractHash != (common.Hash{}) && contractHash != emptyCodeHash) {
   439  		return nil, common.Address{}, 0, ErrContractAddressCollision
   440  	}
   441  	// Create a new account on the state
   442  	snapshot := evm.StateDB.Snapshot()
   443  	evm.StateDB.CreateAccount(address)
   444  	if evm.chainRules.IsEIP158 {
   445  		evm.StateDB.SetNonce(address, 1)
   446  	}
   447  	evm.Context.Transfer(evm.StateDB, caller.Address(), address, value)
   448  
   449  	// Initialise a new contract and set the code that is to be used by the EVM.
   450  	// The contract is a scoped environment for this execution context only.
   451  	contract := NewContract(caller, AccountRef(address), value, gas)
   452  	contract.SetCodeOptionalHash(&address, codeAndHash)
   453  
   454  	if evm.Config.NoRecursion && evm.depth > 0 {
   455  		return nil, address, gas, nil
   456  	}
   457  
   458  	if evm.Config.Debug {
   459  		if evm.depth == 0 {
   460  			evm.Config.Tracer.CaptureStart(evm, caller.Address(), address, true, codeAndHash.code, gas, value)
   461  		} else {
   462  			evm.Config.Tracer.CaptureEnter(typ, caller.Address(), address, codeAndHash.code, gas, value)
   463  		}
   464  	}
   465  
   466  	start := time.Now()
   467  
   468  	ret, err := evm.interpreter.Run(contract, nil, false)
   469  
   470  	// Check whether the max code size has been exceeded, assign err if the case.
   471  	if err == nil && evm.chainRules.IsEIP158 && len(ret) > params.MaxCodeSize {
   472  		err = ErrMaxCodeSizeExceeded
   473  	}
   474  
   475  	// Reject code starting with 0xEF if EIP-3541 is enabled.
   476  	if err == nil && len(ret) >= 1 && ret[0] == 0xEF && evm.chainRules.IsLondon {
   477  		err = ErrInvalidCode
   478  	}
   479  
   480  	// if the contract creation ran successfully and no errors were returned
   481  	// calculate the gas required to store the code. If the code could not
   482  	// be stored due to not enough gas set an error and let it be handled
   483  	// by the error checking condition below.
   484  	if err == nil {
   485  		createDataGas := uint64(len(ret)) * params.CreateDataGas
   486  		if contract.UseGas(createDataGas) {
   487  			evm.StateDB.SetCode(address, ret)
   488  		} else {
   489  			err = ErrCodeStoreOutOfGas
   490  		}
   491  	}
   492  
   493  	// When an error was returned by the EVM or when setting the creation code
   494  	// above we revert to the snapshot and consume any gas remaining. Additionally
   495  	// when we're in homestead this also counts for code storage gas errors.
   496  	if err != nil && (evm.chainRules.IsHomestead || err != ErrCodeStoreOutOfGas) {
   497  		evm.StateDB.RevertToSnapshot(snapshot)
   498  		if err != ErrExecutionReverted {
   499  			contract.UseGas(contract.Gas)
   500  		}
   501  	}
   502  
   503  	if evm.Config.Debug {
   504  		if evm.depth == 0 {
   505  			evm.Config.Tracer.CaptureEnd(ret, gas-contract.Gas, time.Since(start), err)
   506  		} else {
   507  			evm.Config.Tracer.CaptureExit(ret, gas-contract.Gas, err)
   508  		}
   509  	}
   510  	return ret, address, contract.Gas, err
   511  }
   512  
   513  // Create creates a new contract using code as deployment code.
   514  func (evm *EVM) Create(caller ContractRef, code []byte, gas uint64, value *big.Int) (ret []byte, contractAddr common.Address, leftOverGas uint64, err error) {
   515  	contractAddr = crypto.CreateAddress(caller.Address(), evm.StateDB.GetNonce(caller.Address()))
   516  	return evm.create(caller, &codeAndHash{code: code}, gas, value, contractAddr, CREATE)
   517  }
   518  
   519  // Create2 creates a new contract using code as deployment code.
   520  //
   521  // The different between Create2 with Create is Create2 uses sha3(0xff ++ msg.sender ++ salt ++ sha3(init_code))[12:]
   522  // instead of the usual sender-and-nonce-hash as the address where the contract is initialized at.
   523  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) {
   524  	codeAndHash := &codeAndHash{code: code}
   525  	contractAddr = crypto.CreateAddress2(caller.Address(), salt.Bytes32(), codeAndHash.Hash().Bytes())
   526  	return evm.create(caller, codeAndHash, gas, endowment, contractAddr, CREATE2)
   527  }
   528  
   529  // ChainConfig returns the environment's chain configuration
   530  func (evm *EVM) ChainConfig() *params.ChainConfig { return evm.chainConfig }