github.com/ethereum-optimism/optimism/l2geth@v0.0.0-20230612200230-50b04ade19e3/eth/api.go (about)

     1  // Copyright 2015 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 eth
    18  
    19  import (
    20  	"compress/gzip"
    21  	"context"
    22  	"errors"
    23  	"fmt"
    24  	"io"
    25  	"math/big"
    26  	"os"
    27  	"runtime"
    28  	"strings"
    29  	"time"
    30  
    31  	"github.com/ethereum-optimism/optimism/l2geth/common"
    32  	"github.com/ethereum-optimism/optimism/l2geth/common/hexutil"
    33  	"github.com/ethereum-optimism/optimism/l2geth/core"
    34  	"github.com/ethereum-optimism/optimism/l2geth/core/rawdb"
    35  	"github.com/ethereum-optimism/optimism/l2geth/core/state"
    36  	"github.com/ethereum-optimism/optimism/l2geth/core/types"
    37  	"github.com/ethereum-optimism/optimism/l2geth/internal/ethapi"
    38  	"github.com/ethereum-optimism/optimism/l2geth/rlp"
    39  	"github.com/ethereum-optimism/optimism/l2geth/rpc"
    40  	"github.com/ethereum-optimism/optimism/l2geth/trie"
    41  )
    42  
    43  // PublicEthereumAPI provides an API to access Ethereum full node-related
    44  // information.
    45  type PublicEthereumAPI struct {
    46  	e *Ethereum
    47  }
    48  
    49  // NewPublicEthereumAPI creates a new Ethereum protocol API for full nodes.
    50  func NewPublicEthereumAPI(e *Ethereum) *PublicEthereumAPI {
    51  	return &PublicEthereumAPI{e}
    52  }
    53  
    54  // Etherbase is the address that mining rewards will be send to
    55  func (api *PublicEthereumAPI) Etherbase() (common.Address, error) {
    56  	return api.e.Etherbase()
    57  }
    58  
    59  // Coinbase is the address that mining rewards will be send to (alias for Etherbase)
    60  func (api *PublicEthereumAPI) Coinbase() (common.Address, error) {
    61  	return api.Etherbase()
    62  }
    63  
    64  // Hashrate returns the POW hashrate
    65  func (api *PublicEthereumAPI) Hashrate() hexutil.Uint64 {
    66  	return hexutil.Uint64(api.e.Miner().HashRate())
    67  }
    68  
    69  // ChainId is the EIP-155 replay-protection chain id for the current ethereum chain config.
    70  func (api *PublicEthereumAPI) ChainId() hexutil.Uint64 {
    71  	chainID := new(big.Int)
    72  	if config := api.e.blockchain.Config(); config.IsEIP155(api.e.blockchain.CurrentBlock().Number()) {
    73  		chainID = config.ChainID
    74  	}
    75  	return (hexutil.Uint64)(chainID.Uint64())
    76  }
    77  
    78  // PublicMinerAPI provides an API to control the miner.
    79  // It offers only methods that operate on data that pose no security risk when it is publicly accessible.
    80  type PublicMinerAPI struct {
    81  	e *Ethereum
    82  }
    83  
    84  // NewPublicMinerAPI create a new PublicMinerAPI instance.
    85  func NewPublicMinerAPI(e *Ethereum) *PublicMinerAPI {
    86  	return &PublicMinerAPI{e}
    87  }
    88  
    89  // Mining returns an indication if this node is currently mining.
    90  func (api *PublicMinerAPI) Mining() bool {
    91  	return api.e.IsMining()
    92  }
    93  
    94  // PrivateMinerAPI provides private RPC methods to control the miner.
    95  // These methods can be abused by external users and must be considered insecure for use by untrusted users.
    96  type PrivateMinerAPI struct {
    97  	e *Ethereum
    98  }
    99  
   100  // NewPrivateMinerAPI create a new RPC service which controls the miner of this node.
   101  func NewPrivateMinerAPI(e *Ethereum) *PrivateMinerAPI {
   102  	return &PrivateMinerAPI{e: e}
   103  }
   104  
   105  // Start starts the miner with the given number of threads. If threads is nil,
   106  // the number of workers started is equal to the number of logical CPUs that are
   107  // usable by this process. If mining is already running, this method adjust the
   108  // number of threads allowed to use and updates the minimum price required by the
   109  // transaction pool.
   110  func (api *PrivateMinerAPI) Start(threads *int) error {
   111  	if threads == nil {
   112  		return api.e.StartMining(runtime.NumCPU())
   113  	}
   114  	return api.e.StartMining(*threads)
   115  }
   116  
   117  // Stop terminates the miner, both at the consensus engine level as well as at
   118  // the block creation level.
   119  func (api *PrivateMinerAPI) Stop() {
   120  	api.e.StopMining()
   121  }
   122  
   123  // SetExtra sets the extra data string that is included when this miner mines a block.
   124  func (api *PrivateMinerAPI) SetExtra(extra string) (bool, error) {
   125  	if err := api.e.Miner().SetExtra([]byte(extra)); err != nil {
   126  		return false, err
   127  	}
   128  	return true, nil
   129  }
   130  
   131  // SetGasPrice sets the minimum accepted gas price for the miner.
   132  func (api *PrivateMinerAPI) SetGasPrice(gasPrice hexutil.Big) bool {
   133  	api.e.lock.Lock()
   134  	api.e.gasPrice = (*big.Int)(&gasPrice)
   135  	api.e.lock.Unlock()
   136  
   137  	api.e.txPool.SetGasPrice((*big.Int)(&gasPrice))
   138  	return true
   139  }
   140  
   141  // SetEtherbase sets the etherbase of the miner
   142  func (api *PrivateMinerAPI) SetEtherbase(etherbase common.Address) bool {
   143  	api.e.SetEtherbase(etherbase)
   144  	return true
   145  }
   146  
   147  // SetRecommitInterval updates the interval for miner sealing work recommitting.
   148  func (api *PrivateMinerAPI) SetRecommitInterval(interval int) {
   149  	api.e.Miner().SetRecommitInterval(time.Duration(interval) * time.Millisecond)
   150  }
   151  
   152  // GetHashrate returns the current hashrate of the miner.
   153  func (api *PrivateMinerAPI) GetHashrate() uint64 {
   154  	return api.e.miner.HashRate()
   155  }
   156  
   157  // PrivateAdminAPI is the collection of Ethereum full node-related APIs
   158  // exposed over the private admin endpoint.
   159  type PrivateAdminAPI struct {
   160  	eth *Ethereum
   161  }
   162  
   163  // NewPrivateAdminAPI creates a new API definition for the full node private
   164  // admin methods of the Ethereum service.
   165  func NewPrivateAdminAPI(eth *Ethereum) *PrivateAdminAPI {
   166  	return &PrivateAdminAPI{eth: eth}
   167  }
   168  
   169  // ExportChain exports the current blockchain into a local file,
   170  // or a range of blocks if first and last are non-nil
   171  func (api *PrivateAdminAPI) ExportChain(file string, first *uint64, last *uint64) (bool, error) {
   172  	if first == nil && last != nil {
   173  		return false, errors.New("last cannot be specified without first")
   174  	}
   175  	if first != nil && last == nil {
   176  		head := api.eth.BlockChain().CurrentHeader().Number.Uint64()
   177  		last = &head
   178  	}
   179  	if _, err := os.Stat(file); err == nil {
   180  		// File already exists. Allowing overwrite could be a DoS vecotor,
   181  		// since the 'file' may point to arbitrary paths on the drive
   182  		return false, errors.New("location would overwrite an existing file")
   183  	}
   184  	// Make sure we can create the file to export into
   185  	out, err := os.OpenFile(file, os.O_CREATE|os.O_WRONLY|os.O_TRUNC, os.ModePerm)
   186  	if err != nil {
   187  		return false, err
   188  	}
   189  	defer out.Close()
   190  
   191  	var writer io.Writer = out
   192  	if strings.HasSuffix(file, ".gz") {
   193  		writer = gzip.NewWriter(writer)
   194  		defer writer.(*gzip.Writer).Close()
   195  	}
   196  
   197  	// Export the blockchain
   198  	if first != nil {
   199  		if err := api.eth.BlockChain().ExportN(writer, *first, *last); err != nil {
   200  			return false, err
   201  		}
   202  	} else if err := api.eth.BlockChain().Export(writer); err != nil {
   203  		return false, err
   204  	}
   205  	return true, nil
   206  }
   207  
   208  func hasAllBlocks(chain *core.BlockChain, bs []*types.Block) bool {
   209  	for _, b := range bs {
   210  		if !chain.HasBlock(b.Hash(), b.NumberU64()) {
   211  			return false
   212  		}
   213  	}
   214  
   215  	return true
   216  }
   217  
   218  // ImportChain imports a blockchain from a local file.
   219  func (api *PrivateAdminAPI) ImportChain(file string) (bool, error) {
   220  	// Make sure the can access the file to import
   221  	in, err := os.Open(file)
   222  	if err != nil {
   223  		return false, err
   224  	}
   225  	defer in.Close()
   226  
   227  	var reader io.Reader = in
   228  	if strings.HasSuffix(file, ".gz") {
   229  		if reader, err = gzip.NewReader(reader); err != nil {
   230  			return false, err
   231  		}
   232  	}
   233  
   234  	// Run actual the import in pre-configured batches
   235  	stream := rlp.NewStream(reader, 0)
   236  
   237  	blocks, index := make([]*types.Block, 0, 2500), 0
   238  	for batch := 0; ; batch++ {
   239  		// Load a batch of blocks from the input file
   240  		for len(blocks) < cap(blocks) {
   241  			block := new(types.Block)
   242  			if err := stream.Decode(block); err == io.EOF {
   243  				break
   244  			} else if err != nil {
   245  				return false, fmt.Errorf("block %d: failed to parse: %v", index, err)
   246  			}
   247  			blocks = append(blocks, block)
   248  			index++
   249  		}
   250  		if len(blocks) == 0 {
   251  			break
   252  		}
   253  
   254  		if hasAllBlocks(api.eth.BlockChain(), blocks) {
   255  			blocks = blocks[:0]
   256  			continue
   257  		}
   258  		// Import the batch and reset the buffer
   259  		if _, err := api.eth.BlockChain().InsertChain(blocks); err != nil {
   260  			return false, fmt.Errorf("batch %d: failed to insert: %v", batch, err)
   261  		}
   262  		blocks = blocks[:0]
   263  	}
   264  	return true, nil
   265  }
   266  
   267  // PublicDebugAPI is the collection of Ethereum full node APIs exposed
   268  // over the public debugging endpoint.
   269  type PublicDebugAPI struct {
   270  	eth *Ethereum
   271  }
   272  
   273  // NewPublicDebugAPI creates a new API definition for the full node-
   274  // related public debug methods of the Ethereum service.
   275  func NewPublicDebugAPI(eth *Ethereum) *PublicDebugAPI {
   276  	return &PublicDebugAPI{eth: eth}
   277  }
   278  
   279  // DumpBlock retrieves the entire state of the database at a given block.
   280  func (api *PublicDebugAPI) DumpBlock(blockNr rpc.BlockNumber) (state.Dump, error) {
   281  	if blockNr == rpc.PendingBlockNumber {
   282  		// If we're dumping the pending state, we need to request
   283  		// both the pending block as well as the pending state from
   284  		// the miner and operate on those
   285  		_, stateDb := api.eth.miner.Pending()
   286  		return stateDb.RawDump(false, false, true), nil
   287  	}
   288  	var block *types.Block
   289  	if blockNr == rpc.LatestBlockNumber {
   290  		block = api.eth.blockchain.CurrentBlock()
   291  	} else {
   292  		block = api.eth.blockchain.GetBlockByNumber(uint64(blockNr))
   293  	}
   294  	if block == nil {
   295  		return state.Dump{}, fmt.Errorf("block #%d not found", blockNr)
   296  	}
   297  	stateDb, err := api.eth.BlockChain().StateAt(block.Root())
   298  	if err != nil {
   299  		return state.Dump{}, err
   300  	}
   301  	return stateDb.RawDump(false, false, true), nil
   302  }
   303  
   304  // PrivateDebugAPI is the collection of Ethereum full node APIs exposed over
   305  // the private debugging endpoint.
   306  type PrivateDebugAPI struct {
   307  	eth *Ethereum
   308  }
   309  
   310  // NewPrivateDebugAPI creates a new API definition for the full node-related
   311  // private debug methods of the Ethereum service.
   312  func NewPrivateDebugAPI(eth *Ethereum) *PrivateDebugAPI {
   313  	return &PrivateDebugAPI{eth: eth}
   314  }
   315  
   316  // Preimage is a debug API function that returns the preimage for a sha3 hash, if known.
   317  func (api *PrivateDebugAPI) Preimage(ctx context.Context, hash common.Hash) (hexutil.Bytes, error) {
   318  	if preimage := rawdb.ReadPreimage(api.eth.ChainDb(), hash); preimage != nil {
   319  		return preimage, nil
   320  	}
   321  	return nil, errors.New("unknown preimage")
   322  }
   323  
   324  // BadBlockArgs represents the entries in the list returned when bad blocks are queried.
   325  type BadBlockArgs struct {
   326  	Hash  common.Hash            `json:"hash"`
   327  	Block map[string]interface{} `json:"block"`
   328  	RLP   string                 `json:"rlp"`
   329  }
   330  
   331  // GetBadBlocks returns a list of the last 'bad blocks' that the client has seen on the network
   332  // and returns them as a JSON list of block-hashes
   333  func (api *PrivateDebugAPI) GetBadBlocks(ctx context.Context) ([]*BadBlockArgs, error) {
   334  	blocks := api.eth.BlockChain().BadBlocks()
   335  	results := make([]*BadBlockArgs, len(blocks))
   336  
   337  	var err error
   338  	for i, block := range blocks {
   339  		results[i] = &BadBlockArgs{
   340  			Hash: block.Hash(),
   341  		}
   342  		if rlpBytes, err := rlp.EncodeToBytes(block); err != nil {
   343  			results[i].RLP = err.Error() // Hacky, but hey, it works
   344  		} else {
   345  			results[i].RLP = fmt.Sprintf("0x%x", rlpBytes)
   346  		}
   347  		if results[i].Block, err = ethapi.RPCMarshalBlock(block, true, true); err != nil {
   348  			results[i].Block = map[string]interface{}{"error": err.Error()}
   349  		}
   350  	}
   351  	return results, nil
   352  }
   353  
   354  // AccountRangeResult returns a mapping from the hash of an account addresses
   355  // to its preimage. It will return the JSON null if no preimage is found.
   356  // Since a query can return a limited amount of results, a "next" field is
   357  // also present for paging.
   358  type AccountRangeResult struct {
   359  	Accounts map[common.Hash]*common.Address `json:"accounts"`
   360  	Next     common.Hash                     `json:"next"`
   361  }
   362  
   363  func accountRange(st state.Trie, start *common.Hash, maxResults int) (AccountRangeResult, error) {
   364  	if start == nil {
   365  		start = &common.Hash{0}
   366  	}
   367  	it := trie.NewIterator(st.NodeIterator(start.Bytes()))
   368  	result := AccountRangeResult{Accounts: make(map[common.Hash]*common.Address), Next: common.Hash{}}
   369  
   370  	if maxResults > AccountRangeMaxResults {
   371  		maxResults = AccountRangeMaxResults
   372  	}
   373  
   374  	for i := 0; i < maxResults && it.Next(); i++ {
   375  		if preimage := st.GetKey(it.Key); preimage != nil {
   376  			addr := &common.Address{}
   377  			addr.SetBytes(preimage)
   378  			result.Accounts[common.BytesToHash(it.Key)] = addr
   379  		} else {
   380  			result.Accounts[common.BytesToHash(it.Key)] = nil
   381  		}
   382  	}
   383  
   384  	if it.Next() {
   385  		result.Next = common.BytesToHash(it.Key)
   386  	}
   387  
   388  	return result, nil
   389  }
   390  
   391  // AccountRangeMaxResults is the maximum number of results to be returned per call
   392  const AccountRangeMaxResults = 256
   393  
   394  // AccountRange enumerates all accounts in the latest state
   395  func (api *PrivateDebugAPI) AccountRange(ctx context.Context, start *common.Hash, maxResults int) (AccountRangeResult, error) {
   396  	var statedb *state.StateDB
   397  	var err error
   398  	block := api.eth.blockchain.CurrentBlock()
   399  
   400  	if len(block.Transactions()) == 0 {
   401  		statedb, err = api.computeStateDB(block, defaultTraceReexec)
   402  		if err != nil {
   403  			return AccountRangeResult{}, err
   404  		}
   405  	} else {
   406  		_, _, statedb, err = api.computeTxEnv(block.Hash(), len(block.Transactions())-1, 0)
   407  		if err != nil {
   408  			return AccountRangeResult{}, err
   409  		}
   410  	}
   411  
   412  	trie, err := statedb.Database().OpenTrie(block.Header().Root)
   413  	if err != nil {
   414  		return AccountRangeResult{}, err
   415  	}
   416  
   417  	return accountRange(trie, start, maxResults)
   418  }
   419  
   420  // StorageRangeResult is the result of a debug_storageRangeAt API call.
   421  type StorageRangeResult struct {
   422  	Storage storageMap   `json:"storage"`
   423  	NextKey *common.Hash `json:"nextKey"` // nil if Storage includes the last key in the trie.
   424  }
   425  
   426  type storageMap map[common.Hash]storageEntry
   427  
   428  type storageEntry struct {
   429  	Key   *common.Hash `json:"key"`
   430  	Value common.Hash  `json:"value"`
   431  }
   432  
   433  // StorageRangeAt returns the storage at the given block height and transaction index.
   434  func (api *PrivateDebugAPI) StorageRangeAt(ctx context.Context, blockHash common.Hash, txIndex int, contractAddress common.Address, keyStart hexutil.Bytes, maxResult int) (StorageRangeResult, error) {
   435  	_, _, statedb, err := api.computeTxEnv(blockHash, txIndex, 0)
   436  	if err != nil {
   437  		return StorageRangeResult{}, err
   438  	}
   439  	st := statedb.StorageTrie(contractAddress)
   440  	if st == nil {
   441  		return StorageRangeResult{}, fmt.Errorf("account %x doesn't exist", contractAddress)
   442  	}
   443  	return storageRangeAt(st, keyStart, maxResult)
   444  }
   445  
   446  func storageRangeAt(st state.Trie, start []byte, maxResult int) (StorageRangeResult, error) {
   447  	it := trie.NewIterator(st.NodeIterator(start))
   448  	result := StorageRangeResult{Storage: storageMap{}}
   449  	for i := 0; i < maxResult && it.Next(); i++ {
   450  		_, content, _, err := rlp.Split(it.Value)
   451  		if err != nil {
   452  			return StorageRangeResult{}, err
   453  		}
   454  		e := storageEntry{Value: common.BytesToHash(content)}
   455  		if preimage := st.GetKey(it.Key); preimage != nil {
   456  			preimage := common.BytesToHash(preimage)
   457  			e.Key = &preimage
   458  		}
   459  		result.Storage[common.BytesToHash(it.Key)] = e
   460  	}
   461  	// Add the 'next key' so clients can continue downloading.
   462  	if it.Next() {
   463  		next := common.BytesToHash(it.Key)
   464  		result.NextKey = &next
   465  	}
   466  	return result, nil
   467  }
   468  
   469  // GetModifiedAccountsByNumber returns all accounts that have changed between the
   470  // two blocks specified. A change is defined as a difference in nonce, balance,
   471  // code hash, or storage hash.
   472  //
   473  // With one parameter, returns the list of accounts modified in the specified block.
   474  func (api *PrivateDebugAPI) GetModifiedAccountsByNumber(startNum uint64, endNum *uint64) ([]common.Address, error) {
   475  	var startBlock, endBlock *types.Block
   476  
   477  	startBlock = api.eth.blockchain.GetBlockByNumber(startNum)
   478  	if startBlock == nil {
   479  		return nil, fmt.Errorf("start block %x not found", startNum)
   480  	}
   481  
   482  	if endNum == nil {
   483  		endBlock = startBlock
   484  		startBlock = api.eth.blockchain.GetBlockByHash(startBlock.ParentHash())
   485  		if startBlock == nil {
   486  			return nil, fmt.Errorf("block %x has no parent", endBlock.Number())
   487  		}
   488  	} else {
   489  		endBlock = api.eth.blockchain.GetBlockByNumber(*endNum)
   490  		if endBlock == nil {
   491  			return nil, fmt.Errorf("end block %d not found", *endNum)
   492  		}
   493  	}
   494  	return api.getModifiedAccounts(startBlock, endBlock)
   495  }
   496  
   497  // GetModifiedAccountsByHash returns all accounts that have changed between the
   498  // two blocks specified. A change is defined as a difference in nonce, balance,
   499  // code hash, or storage hash.
   500  //
   501  // With one parameter, returns the list of accounts modified in the specified block.
   502  func (api *PrivateDebugAPI) GetModifiedAccountsByHash(startHash common.Hash, endHash *common.Hash) ([]common.Address, error) {
   503  	var startBlock, endBlock *types.Block
   504  	startBlock = api.eth.blockchain.GetBlockByHash(startHash)
   505  	if startBlock == nil {
   506  		return nil, fmt.Errorf("start block %x not found", startHash)
   507  	}
   508  
   509  	if endHash == nil {
   510  		endBlock = startBlock
   511  		startBlock = api.eth.blockchain.GetBlockByHash(startBlock.ParentHash())
   512  		if startBlock == nil {
   513  			return nil, fmt.Errorf("block %x has no parent", endBlock.Number())
   514  		}
   515  	} else {
   516  		endBlock = api.eth.blockchain.GetBlockByHash(*endHash)
   517  		if endBlock == nil {
   518  			return nil, fmt.Errorf("end block %x not found", *endHash)
   519  		}
   520  	}
   521  	return api.getModifiedAccounts(startBlock, endBlock)
   522  }
   523  
   524  func (api *PrivateDebugAPI) getModifiedAccounts(startBlock, endBlock *types.Block) ([]common.Address, error) {
   525  	if startBlock.Number().Uint64() >= endBlock.Number().Uint64() {
   526  		return nil, fmt.Errorf("start block height (%d) must be less than end block height (%d)", startBlock.Number().Uint64(), endBlock.Number().Uint64())
   527  	}
   528  	triedb := api.eth.BlockChain().StateCache().TrieDB()
   529  
   530  	oldTrie, err := trie.NewSecure(startBlock.Root(), triedb)
   531  	if err != nil {
   532  		return nil, err
   533  	}
   534  	newTrie, err := trie.NewSecure(endBlock.Root(), triedb)
   535  	if err != nil {
   536  		return nil, err
   537  	}
   538  	diff, _ := trie.NewDifferenceIterator(oldTrie.NodeIterator([]byte{}), newTrie.NodeIterator([]byte{}))
   539  	iter := trie.NewIterator(diff)
   540  
   541  	var dirty []common.Address
   542  	for iter.Next() {
   543  		key := newTrie.GetKey(iter.Key)
   544  		if key == nil {
   545  			return nil, fmt.Errorf("no preimage found for hash %x", iter.Key)
   546  		}
   547  		dirty = append(dirty, common.BytesToAddress(key))
   548  	}
   549  	return dirty, nil
   550  }