github.com/ethereum/go-ethereum@v1.14.3/core/evm.go (about)

     1  // Copyright 2016 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 core
    18  
    19  import (
    20  	"math/big"
    21  
    22  	"github.com/ethereum/go-ethereum/common"
    23  	"github.com/ethereum/go-ethereum/consensus"
    24  	"github.com/ethereum/go-ethereum/consensus/misc/eip4844"
    25  	"github.com/ethereum/go-ethereum/core/tracing"
    26  	"github.com/ethereum/go-ethereum/core/types"
    27  	"github.com/ethereum/go-ethereum/core/vm"
    28  	"github.com/holiman/uint256"
    29  )
    30  
    31  // ChainContext supports retrieving headers and consensus parameters from the
    32  // current blockchain to be used during transaction processing.
    33  type ChainContext interface {
    34  	// Engine retrieves the chain's consensus engine.
    35  	Engine() consensus.Engine
    36  
    37  	// GetHeader returns the header corresponding to the hash/number argument pair.
    38  	GetHeader(common.Hash, uint64) *types.Header
    39  }
    40  
    41  // NewEVMBlockContext creates a new context for use in the EVM.
    42  func NewEVMBlockContext(header *types.Header, chain ChainContext, author *common.Address) vm.BlockContext {
    43  	var (
    44  		beneficiary common.Address
    45  		baseFee     *big.Int
    46  		blobBaseFee *big.Int
    47  		random      *common.Hash
    48  	)
    49  
    50  	// If we don't have an explicit author (i.e. not mining), extract from the header
    51  	if author == nil {
    52  		beneficiary, _ = chain.Engine().Author(header) // Ignore error, we're past header validation
    53  	} else {
    54  		beneficiary = *author
    55  	}
    56  	if header.BaseFee != nil {
    57  		baseFee = new(big.Int).Set(header.BaseFee)
    58  	}
    59  	if header.ExcessBlobGas != nil {
    60  		blobBaseFee = eip4844.CalcBlobFee(*header.ExcessBlobGas)
    61  	}
    62  	if header.Difficulty.Sign() == 0 {
    63  		random = &header.MixDigest
    64  	}
    65  	return vm.BlockContext{
    66  		CanTransfer: CanTransfer,
    67  		Transfer:    Transfer,
    68  		GetHash:     GetHashFn(header, chain),
    69  		Coinbase:    beneficiary,
    70  		BlockNumber: new(big.Int).Set(header.Number),
    71  		Time:        header.Time,
    72  		Difficulty:  new(big.Int).Set(header.Difficulty),
    73  		BaseFee:     baseFee,
    74  		BlobBaseFee: blobBaseFee,
    75  		GasLimit:    header.GasLimit,
    76  		Random:      random,
    77  	}
    78  }
    79  
    80  // NewEVMTxContext creates a new transaction context for a single transaction.
    81  func NewEVMTxContext(msg *Message) vm.TxContext {
    82  	ctx := vm.TxContext{
    83  		Origin:     msg.From,
    84  		GasPrice:   new(big.Int).Set(msg.GasPrice),
    85  		BlobHashes: msg.BlobHashes,
    86  	}
    87  	if msg.BlobGasFeeCap != nil {
    88  		ctx.BlobFeeCap = new(big.Int).Set(msg.BlobGasFeeCap)
    89  	}
    90  	return ctx
    91  }
    92  
    93  // GetHashFn returns a GetHashFunc which retrieves header hashes by number
    94  func GetHashFn(ref *types.Header, chain ChainContext) func(n uint64) common.Hash {
    95  	// Cache will initially contain [refHash.parent],
    96  	// Then fill up with [refHash.p, refHash.pp, refHash.ppp, ...]
    97  	var cache []common.Hash
    98  
    99  	return func(n uint64) common.Hash {
   100  		if ref.Number.Uint64() <= n {
   101  			// This situation can happen if we're doing tracing and using
   102  			// block overrides.
   103  			return common.Hash{}
   104  		}
   105  		// If there's no hash cache yet, make one
   106  		if len(cache) == 0 {
   107  			cache = append(cache, ref.ParentHash)
   108  		}
   109  		if idx := ref.Number.Uint64() - n - 1; idx < uint64(len(cache)) {
   110  			return cache[idx]
   111  		}
   112  		// No luck in the cache, but we can start iterating from the last element we already know
   113  		lastKnownHash := cache[len(cache)-1]
   114  		lastKnownNumber := ref.Number.Uint64() - uint64(len(cache))
   115  
   116  		for {
   117  			header := chain.GetHeader(lastKnownHash, lastKnownNumber)
   118  			if header == nil {
   119  				break
   120  			}
   121  			cache = append(cache, header.ParentHash)
   122  			lastKnownHash = header.ParentHash
   123  			lastKnownNumber = header.Number.Uint64() - 1
   124  			if n == lastKnownNumber {
   125  				return lastKnownHash
   126  			}
   127  		}
   128  		return common.Hash{}
   129  	}
   130  }
   131  
   132  // CanTransfer checks whether there are enough funds in the address' account to make a transfer.
   133  // This does not take the necessary gas in to account to make the transfer valid.
   134  func CanTransfer(db vm.StateDB, addr common.Address, amount *uint256.Int) bool {
   135  	return db.GetBalance(addr).Cmp(amount) >= 0
   136  }
   137  
   138  // Transfer subtracts amount from sender and adds amount to recipient using the given Db
   139  func Transfer(db vm.StateDB, sender, recipient common.Address, amount *uint256.Int) {
   140  	db.SubBalance(sender, amount, tracing.BalanceChangeTransfer)
   141  	db.AddBalance(recipient, amount, tracing.BalanceChangeTransfer)
   142  }