github.com/blocknative/go-ethereum@v1.9.7/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/go-ethereum/common"
    32  	"github.com/ethereum/go-ethereum/common/hexutil"
    33  	"github.com/ethereum/go-ethereum/core"
    34  	"github.com/ethereum/go-ethereum/core/rawdb"
    35  	"github.com/ethereum/go-ethereum/core/state"
    36  	"github.com/ethereum/go-ethereum/core/types"
    37  	"github.com/ethereum/go-ethereum/internal/ethapi"
    38  	"github.com/ethereum/go-ethereum/rlp"
    39  	"github.com/ethereum/go-ethereum/rpc"
    40  	"github.com/ethereum/go-ethereum/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  func (api *PrivateAdminAPI) ExportChain(file string) (bool, error) {
   171  	if _, err := os.Stat(file); err == nil {
   172  		// File already exists. Allowing overwrite could be a DoS vecotor,
   173  		// since the 'file' may point to arbitrary paths on the drive
   174  		return false, errors.New("location would overwrite an existing file")
   175  	}
   176  	// Make sure we can create the file to export into
   177  	out, err := os.OpenFile(file, os.O_CREATE|os.O_WRONLY|os.O_TRUNC, os.ModePerm)
   178  	if err != nil {
   179  		return false, err
   180  	}
   181  	defer out.Close()
   182  
   183  	var writer io.Writer = out
   184  	if strings.HasSuffix(file, ".gz") {
   185  		writer = gzip.NewWriter(writer)
   186  		defer writer.(*gzip.Writer).Close()
   187  	}
   188  
   189  	// Export the blockchain
   190  	if err := api.eth.BlockChain().Export(writer); err != nil {
   191  		return false, err
   192  	}
   193  	return true, nil
   194  }
   195  
   196  func hasAllBlocks(chain *core.BlockChain, bs []*types.Block) bool {
   197  	for _, b := range bs {
   198  		if !chain.HasBlock(b.Hash(), b.NumberU64()) {
   199  			return false
   200  		}
   201  	}
   202  
   203  	return true
   204  }
   205  
   206  // ImportChain imports a blockchain from a local file.
   207  func (api *PrivateAdminAPI) ImportChain(file string) (bool, error) {
   208  	// Make sure the can access the file to import
   209  	in, err := os.Open(file)
   210  	if err != nil {
   211  		return false, err
   212  	}
   213  	defer in.Close()
   214  
   215  	var reader io.Reader = in
   216  	if strings.HasSuffix(file, ".gz") {
   217  		if reader, err = gzip.NewReader(reader); err != nil {
   218  			return false, err
   219  		}
   220  	}
   221  
   222  	// Run actual the import in pre-configured batches
   223  	stream := rlp.NewStream(reader, 0)
   224  
   225  	blocks, index := make([]*types.Block, 0, 2500), 0
   226  	for batch := 0; ; batch++ {
   227  		// Load a batch of blocks from the input file
   228  		for len(blocks) < cap(blocks) {
   229  			block := new(types.Block)
   230  			if err := stream.Decode(block); err == io.EOF {
   231  				break
   232  			} else if err != nil {
   233  				return false, fmt.Errorf("block %d: failed to parse: %v", index, err)
   234  			}
   235  			blocks = append(blocks, block)
   236  			index++
   237  		}
   238  		if len(blocks) == 0 {
   239  			break
   240  		}
   241  
   242  		if hasAllBlocks(api.eth.BlockChain(), blocks) {
   243  			blocks = blocks[:0]
   244  			continue
   245  		}
   246  		// Import the batch and reset the buffer
   247  		if _, err := api.eth.BlockChain().InsertChain(blocks); err != nil {
   248  			return false, fmt.Errorf("batch %d: failed to insert: %v", batch, err)
   249  		}
   250  		blocks = blocks[:0]
   251  	}
   252  	return true, nil
   253  }
   254  
   255  // PublicDebugAPI is the collection of Ethereum full node APIs exposed
   256  // over the public debugging endpoint.
   257  type PublicDebugAPI struct {
   258  	eth *Ethereum
   259  }
   260  
   261  // NewPublicDebugAPI creates a new API definition for the full node-
   262  // related public debug methods of the Ethereum service.
   263  func NewPublicDebugAPI(eth *Ethereum) *PublicDebugAPI {
   264  	return &PublicDebugAPI{eth: eth}
   265  }
   266  
   267  // DumpBlock retrieves the entire state of the database at a given block.
   268  func (api *PublicDebugAPI) DumpBlock(blockNr rpc.BlockNumber) (state.Dump, error) {
   269  	if blockNr == rpc.PendingBlockNumber {
   270  		// If we're dumping the pending state, we need to request
   271  		// both the pending block as well as the pending state from
   272  		// the miner and operate on those
   273  		_, stateDb := api.eth.miner.Pending()
   274  		return stateDb.RawDump(false, false, true), nil
   275  	}
   276  	var block *types.Block
   277  	if blockNr == rpc.LatestBlockNumber {
   278  		block = api.eth.blockchain.CurrentBlock()
   279  	} else {
   280  		block = api.eth.blockchain.GetBlockByNumber(uint64(blockNr))
   281  	}
   282  	if block == nil {
   283  		return state.Dump{}, fmt.Errorf("block #%d not found", blockNr)
   284  	}
   285  	stateDb, err := api.eth.BlockChain().StateAt(block.Root())
   286  	if err != nil {
   287  		return state.Dump{}, err
   288  	}
   289  	return stateDb.RawDump(false, false, true), nil
   290  }
   291  
   292  // PrivateDebugAPI is the collection of Ethereum full node APIs exposed over
   293  // the private debugging endpoint.
   294  type PrivateDebugAPI struct {
   295  	eth *Ethereum
   296  }
   297  
   298  // NewPrivateDebugAPI creates a new API definition for the full node-related
   299  // private debug methods of the Ethereum service.
   300  func NewPrivateDebugAPI(eth *Ethereum) *PrivateDebugAPI {
   301  	return &PrivateDebugAPI{eth: eth}
   302  }
   303  
   304  // Preimage is a debug API function that returns the preimage for a sha3 hash, if known.
   305  func (api *PrivateDebugAPI) Preimage(ctx context.Context, hash common.Hash) (hexutil.Bytes, error) {
   306  	if preimage := rawdb.ReadPreimage(api.eth.ChainDb(), hash); preimage != nil {
   307  		return preimage, nil
   308  	}
   309  	return nil, errors.New("unknown preimage")
   310  }
   311  
   312  // BadBlockArgs represents the entries in the list returned when bad blocks are queried.
   313  type BadBlockArgs struct {
   314  	Hash  common.Hash            `json:"hash"`
   315  	Block map[string]interface{} `json:"block"`
   316  	RLP   string                 `json:"rlp"`
   317  }
   318  
   319  // GetBadBlocks returns a list of the last 'bad blocks' that the client has seen on the network
   320  // and returns them as a JSON list of block-hashes
   321  func (api *PrivateDebugAPI) GetBadBlocks(ctx context.Context) ([]*BadBlockArgs, error) {
   322  	blocks := api.eth.BlockChain().BadBlocks()
   323  	results := make([]*BadBlockArgs, len(blocks))
   324  
   325  	var err error
   326  	for i, block := range blocks {
   327  		results[i] = &BadBlockArgs{
   328  			Hash: block.Hash(),
   329  		}
   330  		if rlpBytes, err := rlp.EncodeToBytes(block); err != nil {
   331  			results[i].RLP = err.Error() // Hacky, but hey, it works
   332  		} else {
   333  			results[i].RLP = fmt.Sprintf("0x%x", rlpBytes)
   334  		}
   335  		if results[i].Block, err = ethapi.RPCMarshalBlock(block, true, true); err != nil {
   336  			results[i].Block = map[string]interface{}{"error": err.Error()}
   337  		}
   338  	}
   339  	return results, nil
   340  }
   341  
   342  // AccountRangeResult returns a mapping from the hash of an account addresses
   343  // to its preimage. It will return the JSON null if no preimage is found.
   344  // Since a query can return a limited amount of results, a "next" field is
   345  // also present for paging.
   346  type AccountRangeResult struct {
   347  	Accounts map[common.Hash]*common.Address `json:"accounts"`
   348  	Next     common.Hash                     `json:"next"`
   349  }
   350  
   351  func accountRange(st state.Trie, start *common.Hash, maxResults int) (AccountRangeResult, error) {
   352  	if start == nil {
   353  		start = &common.Hash{0}
   354  	}
   355  	it := trie.NewIterator(st.NodeIterator(start.Bytes()))
   356  	result := AccountRangeResult{Accounts: make(map[common.Hash]*common.Address), Next: common.Hash{}}
   357  
   358  	if maxResults > AccountRangeMaxResults {
   359  		maxResults = AccountRangeMaxResults
   360  	}
   361  
   362  	for i := 0; i < maxResults && it.Next(); i++ {
   363  		if preimage := st.GetKey(it.Key); preimage != nil {
   364  			addr := &common.Address{}
   365  			addr.SetBytes(preimage)
   366  			result.Accounts[common.BytesToHash(it.Key)] = addr
   367  		} else {
   368  			result.Accounts[common.BytesToHash(it.Key)] = nil
   369  		}
   370  	}
   371  
   372  	if it.Next() {
   373  		result.Next = common.BytesToHash(it.Key)
   374  	}
   375  
   376  	return result, nil
   377  }
   378  
   379  // AccountRangeMaxResults is the maximum number of results to be returned per call
   380  const AccountRangeMaxResults = 256
   381  
   382  // AccountRange enumerates all accounts in the latest state
   383  func (api *PrivateDebugAPI) AccountRange(ctx context.Context, start *common.Hash, maxResults int) (AccountRangeResult, error) {
   384  	var statedb *state.StateDB
   385  	var err error
   386  	block := api.eth.blockchain.CurrentBlock()
   387  
   388  	if len(block.Transactions()) == 0 {
   389  		statedb, err = api.computeStateDB(block, defaultTraceReexec)
   390  		if err != nil {
   391  			return AccountRangeResult{}, err
   392  		}
   393  	} else {
   394  		_, _, statedb, err = api.computeTxEnv(block.Hash(), len(block.Transactions())-1, 0)
   395  		if err != nil {
   396  			return AccountRangeResult{}, err
   397  		}
   398  	}
   399  
   400  	trie, err := statedb.Database().OpenTrie(block.Header().Root)
   401  	if err != nil {
   402  		return AccountRangeResult{}, err
   403  	}
   404  
   405  	return accountRange(trie, start, maxResults)
   406  }
   407  
   408  // StorageRangeResult is the result of a debug_storageRangeAt API call.
   409  type StorageRangeResult struct {
   410  	Storage storageMap   `json:"storage"`
   411  	NextKey *common.Hash `json:"nextKey"` // nil if Storage includes the last key in the trie.
   412  }
   413  
   414  type storageMap map[common.Hash]storageEntry
   415  
   416  type storageEntry struct {
   417  	Key   *common.Hash `json:"key"`
   418  	Value common.Hash  `json:"value"`
   419  }
   420  
   421  // StorageRangeAt returns the storage at the given block height and transaction index.
   422  func (api *PrivateDebugAPI) StorageRangeAt(ctx context.Context, blockHash common.Hash, txIndex int, contractAddress common.Address, keyStart hexutil.Bytes, maxResult int) (StorageRangeResult, error) {
   423  	_, _, statedb, err := api.computeTxEnv(blockHash, txIndex, 0)
   424  	if err != nil {
   425  		return StorageRangeResult{}, err
   426  	}
   427  	st := statedb.StorageTrie(contractAddress)
   428  	if st == nil {
   429  		return StorageRangeResult{}, fmt.Errorf("account %x doesn't exist", contractAddress)
   430  	}
   431  	return storageRangeAt(st, keyStart, maxResult)
   432  }
   433  
   434  func storageRangeAt(st state.Trie, start []byte, maxResult int) (StorageRangeResult, error) {
   435  	it := trie.NewIterator(st.NodeIterator(start))
   436  	result := StorageRangeResult{Storage: storageMap{}}
   437  	for i := 0; i < maxResult && it.Next(); i++ {
   438  		_, content, _, err := rlp.Split(it.Value)
   439  		if err != nil {
   440  			return StorageRangeResult{}, err
   441  		}
   442  		e := storageEntry{Value: common.BytesToHash(content)}
   443  		if preimage := st.GetKey(it.Key); preimage != nil {
   444  			preimage := common.BytesToHash(preimage)
   445  			e.Key = &preimage
   446  		}
   447  		result.Storage[common.BytesToHash(it.Key)] = e
   448  	}
   449  	// Add the 'next key' so clients can continue downloading.
   450  	if it.Next() {
   451  		next := common.BytesToHash(it.Key)
   452  		result.NextKey = &next
   453  	}
   454  	return result, nil
   455  }
   456  
   457  // GetModifiedAccountsByNumber returns all accounts that have changed between the
   458  // two blocks specified. A change is defined as a difference in nonce, balance,
   459  // code hash, or storage hash.
   460  //
   461  // With one parameter, returns the list of accounts modified in the specified block.
   462  func (api *PrivateDebugAPI) GetModifiedAccountsByNumber(startNum uint64, endNum *uint64) ([]common.Address, error) {
   463  	var startBlock, endBlock *types.Block
   464  
   465  	startBlock = api.eth.blockchain.GetBlockByNumber(startNum)
   466  	if startBlock == nil {
   467  		return nil, fmt.Errorf("start block %x not found", startNum)
   468  	}
   469  
   470  	if endNum == nil {
   471  		endBlock = startBlock
   472  		startBlock = api.eth.blockchain.GetBlockByHash(startBlock.ParentHash())
   473  		if startBlock == nil {
   474  			return nil, fmt.Errorf("block %x has no parent", endBlock.Number())
   475  		}
   476  	} else {
   477  		endBlock = api.eth.blockchain.GetBlockByNumber(*endNum)
   478  		if endBlock == nil {
   479  			return nil, fmt.Errorf("end block %d not found", *endNum)
   480  		}
   481  	}
   482  	return api.getModifiedAccounts(startBlock, endBlock)
   483  }
   484  
   485  // GetModifiedAccountsByHash returns all accounts that have changed between the
   486  // two blocks specified. A change is defined as a difference in nonce, balance,
   487  // code hash, or storage hash.
   488  //
   489  // With one parameter, returns the list of accounts modified in the specified block.
   490  func (api *PrivateDebugAPI) GetModifiedAccountsByHash(startHash common.Hash, endHash *common.Hash) ([]common.Address, error) {
   491  	var startBlock, endBlock *types.Block
   492  	startBlock = api.eth.blockchain.GetBlockByHash(startHash)
   493  	if startBlock == nil {
   494  		return nil, fmt.Errorf("start block %x not found", startHash)
   495  	}
   496  
   497  	if endHash == nil {
   498  		endBlock = startBlock
   499  		startBlock = api.eth.blockchain.GetBlockByHash(startBlock.ParentHash())
   500  		if startBlock == nil {
   501  			return nil, fmt.Errorf("block %x has no parent", endBlock.Number())
   502  		}
   503  	} else {
   504  		endBlock = api.eth.blockchain.GetBlockByHash(*endHash)
   505  		if endBlock == nil {
   506  			return nil, fmt.Errorf("end block %x not found", *endHash)
   507  		}
   508  	}
   509  	return api.getModifiedAccounts(startBlock, endBlock)
   510  }
   511  
   512  func (api *PrivateDebugAPI) getModifiedAccounts(startBlock, endBlock *types.Block) ([]common.Address, error) {
   513  	if startBlock.Number().Uint64() >= endBlock.Number().Uint64() {
   514  		return nil, fmt.Errorf("start block height (%d) must be less than end block height (%d)", startBlock.Number().Uint64(), endBlock.Number().Uint64())
   515  	}
   516  	triedb := api.eth.BlockChain().StateCache().TrieDB()
   517  
   518  	oldTrie, err := trie.NewSecure(startBlock.Root(), triedb)
   519  	if err != nil {
   520  		return nil, err
   521  	}
   522  	newTrie, err := trie.NewSecure(endBlock.Root(), triedb)
   523  	if err != nil {
   524  		return nil, err
   525  	}
   526  	diff, _ := trie.NewDifferenceIterator(oldTrie.NodeIterator([]byte{}), newTrie.NodeIterator([]byte{}))
   527  	iter := trie.NewIterator(diff)
   528  
   529  	var dirty []common.Address
   530  	for iter.Next() {
   531  		key := newTrie.GetKey(iter.Key)
   532  		if key == nil {
   533  			return nil, fmt.Errorf("no preimage found for hash %x", iter.Key)
   534  		}
   535  		dirty = append(dirty, common.BytesToAddress(key))
   536  	}
   537  	return dirty, nil
   538  }