// Copyright 2015 The go-ethereum Authors // This file is part of the go-ethereum library. // // The go-ethereum library is free software: you can redistribute it and/or modify // 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. // // The go-ethereum library is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU Lesser General Public License for more details. // // You should have received a copy of the GNU Lesser General Public License // along with the go-ethereum library. If not, see . package eth /* // EthAPIBackend implements ethapi.Backend for full nodes type EthAPIBackend struct { extRPCEnabled bool allowUnprotectedTxs bool eth *Ethereum gpo *gasprice.Oracle } // ChainConfig returns the active chain configuration. func (b *EthAPIBackend) ChainConfig() *chain.Config { return b.eth.blockchain.Config() } func (b *EthAPIBackend) CurrentBlock() *types.Block { return b.eth.blockchain.CurrentBlock() } func (b *EthAPIBackend) SetHead(number uint64) { b.eth.handler.downloader.Cancel() b.eth.blockchain.SetHead(number) } func (b *EthAPIBackend) resolveBlockNumber(blockNr rpc.BlockNumber) uint64 { if blockNr == rpc.LatestBlockNumber { return b.eth.blockchain.CurrentBlock().NumberU64() } return uint64(blockNr) } func (b *EthAPIBackend) HeaderByNumber(ctx context.Context, blockNr rpc.BlockNumber) (*types.Header, error) { bn := b.resolveBlockNumber(blockNr) return b.eth.blockchain.GetHeaderByNumber(bn), nil } func (b *EthAPIBackend) HeaderByNumberOrHash(ctx context.Context, blockNrOrHash rpc.BlockNumberOrHash) (*types.Header, error) { if blockNr, ok := blockNrOrHash.Number(); ok { return b.HeaderByNumber(ctx, blockNr) } if hash, ok := blockNrOrHash.Hash(); ok { header := b.eth.blockchain.GetHeaderByHash(hash) if header == nil { return nil, errors.New("header for hash not found") } if blockNrOrHash.RequireCanonical && b.eth.blockchain.GetCanonicalHash(header.Number.Uint64()) != hash { return nil, errors.New("hash is not currently canonical") } return header, nil } return nil, errors.New("invalid arguments; neither block nor hash specified") } func (b *EthAPIBackend) HeaderByHash(ctx context.Context, hash libcommon.Hash) (*types.Header, error) { return b.eth.blockchain.GetHeaderByHash(hash), nil } func (b *EthAPIBackend) BlockByNumber(ctx context.Context, blockNr rpc.BlockNumber) (*types.Block, error) { bn := b.resolveBlockNumber(blockNr) return b.eth.blockchain.GetBlockByNumber(bn), nil } func (b *EthAPIBackend) BlockByHash(ctx context.Context, hash libcommon.Hash) (*types.Block, error) { return b.eth.blockchain.GetBlockByHash(hash), nil } func (b *EthAPIBackend) BlockByNumberOrHash(ctx context.Context, blockNrOrHash rpc.BlockNumberOrHash) (*types.Block, error) { if blockNr, ok := blockNrOrHash.Number(); ok { return b.BlockByNumber(ctx, blockNr) } if hash, ok := blockNrOrHash.Hash(); ok { header := b.eth.blockchain.GetHeaderByHash(hash) if header == nil { return nil, errors.New("header for hash not found") } if blockNrOrHash.RequireCanonical && b.eth.blockchain.GetCanonicalHash(header.Number.Uint64()) != hash { return nil, errors.New("hash is not currently canonical") } block := b.eth.blockchain.GetBlock(hash, header.Number.Uint64()) if block == nil { return nil, errors.New("header found, but block body is missing") } return block, nil } return nil, errors.New("invalid arguments; neither block nor hash specified") } func (b *EthAPIBackend) StateAndHeaderByNumber(ctx context.Context, blockNr rpc.BlockNumber) (*state.IntraBlockState, *types.Header, error) { bn := b.resolveBlockNumber(blockNr) header, err := b.HeaderByNumber(ctx, blockNr) if err != nil { return nil, nil, err } if header == nil { return nil, nil, errors.New("header not found") } ds := state.NewPlainDBState(b.eth.chainDb, bn) stateDb := state.New(ds) return stateDb, header, nil } func (b *EthAPIBackend) StateAndHeaderByNumberOrHash(ctx context.Context, blockNrOrHash rpc.BlockNumberOrHash) (*state.IntraBlockState, *types.Header, error) { if blockNr, ok := blockNrOrHash.Number(); ok { return b.StateAndHeaderByNumber(ctx, blockNr) } if hash, ok := blockNrOrHash.Hash(); ok { header, err := b.HeaderByHash(ctx, hash) if err != nil { return nil, nil, err } if header == nil { return nil, nil, errors.New("header for hash not found") } if blockNrOrHash.RequireCanonical && b.eth.blockchain.GetCanonicalHash(header.Number.Uint64()) != hash { return nil, nil, errors.New("hash is not currently canonical") } ds := state.NewPlainDBState(b.eth.chainDb, header.Number.Uint64()) stateDb := state.New(ds) return stateDb, header, nil } return nil, nil, errors.New("invalid arguments; neither block nor hash specified") } func (b *EthAPIBackend) GetReceipts(ctx context.Context, hash libcommon.Hash) (types.Receipts, error) { number := rawdb.ReadHeaderNumber(b.eth.chainDb, hash) if number == nil { return nil, nil } block := rawdb.ReadBlock(b.eth.chainDb, hash, *number) if cached := b.tryGetReceiptsFromDb(block); cached != nil { return cached, nil } return b.getReceiptsByReApplyingTransactions(block, *number) } func (b *EthAPIBackend) getReceiptsByReApplyingTransactions(block *types.Block, number uint64) (types.Receipts, error) { dbstate := state.NewPlainDBState(b.eth.chainDb, number-1) statedb := state.New(dbstate) header := block.Header() var receipts types.Receipts var usedGas = new(uint64) var gp = new(core.GasPool).AddGas(block.GasLimit()) vmConfig := vm.Config{} for i, tx := range block.Transactions() { statedb.Prepare(tx.Hash(), block.Hash(), i) receipt, err := core.ApplyTransaction(b.ChainConfig(), b.eth.blockchain.GetHeader, b.eth.blockchain.Engine(), nil, gp, statedb, dbstate, header, tx, usedGas, vmConfig) if err != nil { return nil, err } receipts = append(receipts, receipt) } return receipts, nil } func (b *EthAPIBackend) tryGetReceiptsFromDb(block *types.Block) types.Receipts { return rawdb.ReadReceipts( b.eth.chainDb, block.Hash(), block.NumberU64(), ) } func (b *EthAPIBackend) GetLogs(ctx context.Context, hash libcommon.Hash) ([][]*types.Log, error) { number := rawdb.ReadHeaderNumber(b.eth.chainDb, hash) if number == nil { return nil, nil } receipts, err := b.GetReceipts(ctx, hash) if err != nil { return nil, fmt.Errorf("getReceipt error: %w", err) } if receipts == nil { return nil, nil } logs := make([][]*types.Log, len(receipts)) for i, receipt := range receipts { logs[i] = receipt.Logs } return logs, nil } func (b *EthAPIBackend) GetTd(ctx context.Context, hash libcommon.Hash) *big.Int { return b.eth.blockchain.GetTdByHash(hash) } func (b *EthAPIBackend) GetEVM(ctx context.Context, msg core.Message, state *state.IntraBlockState, header *types.Header) (*vm.EVM, func() error, error) { vmError := func() error { return nil } txContext := core.NewEVMTxContext(msg) context := core.NewEVMBlockContext(header, b.eth.BlockChain().GetHeader, b.eth.BlockChain().Engine(), nil) return vm.NewEVM(context, txContext, state, b.eth.blockchain.Config(), *b.eth.blockchain.GetVMConfig()), vmError, nil } func (b *EthAPIBackend) SubscribeRemovedLogsEvent(ch chan<- core.RemovedLogsEvent) event.Subscription { return b.eth.BlockChain().SubscribeRemovedLogsEvent(ch) } func (b *EthAPIBackend) SubscribeChainEvent(ch chan<- core.ChainEvent) event.Subscription { return b.eth.BlockChain().SubscribeChainEvent(ch) } func (b *EthAPIBackend) SubscribeChainHeadEvent(ch chan<- core.ChainHeadEvent) event.Subscription { return b.eth.BlockChain().SubscribeChainHeadEvent(ch) } func (b *EthAPIBackend) SubscribeChainSideEvent(ch chan<- core.ChainSideEvent) event.Subscription { return b.eth.BlockChain().SubscribeChainSideEvent(ch) } func (b *EthAPIBackend) SubscribeLogsEvent(ch chan<- []*types.Log) event.Subscription { return b.eth.BlockChain().SubscribeLogsEvent(ch) } func (b *EthAPIBackend) SendTx(ctx context.Context, signedTx types.Transaction) error { return b.eth.txPool.AddLocal(signedTx) } func (b *EthAPIBackend) GetPoolTransactions() (types.Transactions, error) { pending, err := b.eth.txPool.Pending() if err != nil { return nil, err } var txs types.Transactions for _, batch := range pending { txs = append(txs, batch...) } return txs, nil } func (b *EthAPIBackend) GetPoolTransaction(hash libcommon.Hash) types.Transaction { return b.eth.txPool.Get(hash) } func (b *EthAPIBackend) GetTransaction(ctx context.Context, txHash libcommon.Hash) (types.Transaction, libcommon.Hash, uint64, uint64, error) { tx, blockHash, blockNumber, index := rawdb.ReadTransaction(b.eth.ChainDb(), txHash) return tx, blockHash, blockNumber, index, nil } func (b *EthAPIBackend) GetPoolNonce(ctx context.Context, addr libcommon.Address) (uint64, error) { return b.eth.txPool.Nonce(addr), nil } func (b *EthAPIBackend) Stats() (pending int, queued int) { return b.eth.txPool.Stats() } func (b *EthAPIBackend) TxPoolContent() (map[libcommon.Address]types.Transactions, map[libcommon.Address]types.Transactions) { return b.eth.TxPool().Content() } func (b *EthAPIBackend) TxPool() *core.TxPool { return b.eth.TxPool() } func (b *EthAPIBackend) SubscribeNewTxsEvent(ch chan<- core.NewTxsEvent) event.Subscription { return b.eth.TxPool().SubscribeNewTxsEvent(ch) } func (b *EthAPIBackend) Downloader() *downloader.Downloader { return b.eth.Downloader() } func (b *EthAPIBackend) SuggestPrice(ctx context.Context) (*big.Int, error) { return b.gpo.SuggestPrice(ctx) } func (b *EthAPIBackend) ChainDb() ethdb.Database { return b.eth.ChainDb() } func (b *EthAPIBackend) ExtRPCEnabled() bool { return b.extRPCEnabled } func (b *EthAPIBackend) UnprotectedAllowed() bool { return b.allowUnprotectedTxs } func (b *EthAPIBackend) RPCGasCap() uint64 { return b.eth.config.RPCGasCap } func (b *EthAPIBackend) RPCTxFeeCap() float64 { return b.eth.config.RPCTxFeeCap } func (b *EthAPIBackend) BloomStatus() (uint64, uint64) { return 0, 0 } func (b *EthAPIBackend) ServiceFilter(ctx context.Context, session *bloombits.MatcherSession) { for i := 0; i < bloomFilterThreads; i++ { go session.Multiplex(bloomRetrievalBatch, bloomRetrievalWait, b.eth.bloomRequests) } } func (b *EthAPIBackend) Engine() consensus.Engine { return b.eth.engine } func (b *EthAPIBackend) CurrentHeader() *types.Header { return b.eth.blockchain.CurrentHeader() } func (b *EthAPIBackend) StartMining(threads int) error { return b.eth.StartMining(threads) } func (b *EthAPIBackend) StateAtBlock(ctx context.Context, block *types.Block, reexec uint64) (*state.IntraBlockState, func(), error) { return b.eth.stateAtBlock(block, reexec) } func (b *EthAPIBackend) StatesInRange(ctx context.Context, fromBlock *types.Block, toBlock *types.Block, reexec uint64) ([]*state.IntraBlockState, func(), error) { return b.eth.statesInRange(fromBlock, toBlock, reexec) } func (b *EthAPIBackend) StateAtTransaction(ctx context.Context, block *types.Block, txIndex int, reexec uint64) (core.Message, vm.BlockContext, *state.IntraBlockState, func(), error) { return b.eth.stateAtTransaction(block, txIndex, reexec) } */