api_backend.go 14.5 KB
Newer Older
1
// Copyright 2015 The go-ethereum Authors
2
// This file is part of the go-ethereum library.
3
//
4 5
// 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
6 7 8
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
9
// The go-ethereum library is distributed in the hope that it will be useful,
10 11
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12
// GNU Lesser General Public License for more details.
13
//
14 15
// You should have received a copy of the GNU Lesser General Public License
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
16 17 18 19

package eth

import (
20
	"context"
21
	"errors"
22
	"math/big"
23
	"time"
24

25
	"github.com/ethereum/go-ethereum"
26 27
	"github.com/ethereum/go-ethereum/accounts"
	"github.com/ethereum/go-ethereum/common"
28
	"github.com/ethereum/go-ethereum/consensus"
29
	"github.com/ethereum/go-ethereum/core"
30
	"github.com/ethereum/go-ethereum/core/bloombits"
31
	"github.com/ethereum/go-ethereum/core/rawdb"
32
	"github.com/ethereum/go-ethereum/core/state"
33
	"github.com/ethereum/go-ethereum/core/txpool"
34 35 36
	"github.com/ethereum/go-ethereum/core/types"
	"github.com/ethereum/go-ethereum/core/vm"
	"github.com/ethereum/go-ethereum/eth/gasprice"
37
	"github.com/ethereum/go-ethereum/eth/tracers"
38 39
	"github.com/ethereum/go-ethereum/ethdb"
	"github.com/ethereum/go-ethereum/event"
40
	"github.com/ethereum/go-ethereum/miner"
41
	"github.com/ethereum/go-ethereum/params"
42
	"github.com/ethereum/go-ethereum/rpc"
43 44
)

45
// EthAPIBackend implements ethapi.Backend and tracers.Backend for full nodes
46
type EthAPIBackend struct {
47 48 49 50
	extRPCEnabled       bool
	allowUnprotectedTxs bool
	eth                 *Ethereum
	gpo                 *gasprice.Oracle
51 52
}

53
// ChainConfig returns the active chain configuration.
54
func (b *EthAPIBackend) ChainConfig() *params.ChainConfig {
55
	return b.eth.blockchain.Config()
56 57
}

58
func (b *EthAPIBackend) CurrentBlock() *types.Header {
59 60 61
	return b.eth.blockchain.CurrentBlock()
}

62
func (b *EthAPIBackend) SetHead(number uint64) {
63
	b.eth.handler.downloader.Cancel()
64 65 66
	b.eth.blockchain.SetHead(number)
}

67
func (b *EthAPIBackend) HeaderByNumber(ctx context.Context, number rpc.BlockNumber) (*types.Header, error) {
68
	// Pending block is only known by the miner
69
	if number == rpc.PendingBlockNumber {
70
		block := b.eth.miner.PendingBlock()
71 72 73
		if block == nil {
			return nil, errors.New("pending block is not available")
		}
74
		return block.Header(), nil
75 76
	}
	// Otherwise resolve and return the block
77
	if number == rpc.LatestBlockNumber {
78
		return b.eth.blockchain.CurrentBlock(), nil
79
	}
80
	if number == rpc.FinalizedBlockNumber {
81 82 83
		if !b.eth.Merger().TDDReached() {
			return nil, errors.New("'finalized' tag not supported on pre-merge network")
		}
84
		block := b.eth.blockchain.CurrentFinalBlock()
85
		if block != nil {
86
			return block, nil
87 88 89 90
		}
		return nil, errors.New("finalized block not found")
	}
	if number == rpc.SafeBlockNumber {
91 92 93
		if !b.eth.Merger().TDDReached() {
			return nil, errors.New("'safe' tag not supported on pre-merge network")
		}
94 95
		block := b.eth.blockchain.CurrentSafeBlock()
		if block != nil {
96
			return block, nil
97 98
		}
		return nil, errors.New("safe block not found")
99
	}
100
	return b.eth.blockchain.GetHeaderByNumber(uint64(number)), nil
101 102
}

103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119
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")
}

120 121 122 123
func (b *EthAPIBackend) HeaderByHash(ctx context.Context, hash common.Hash) (*types.Header, error) {
	return b.eth.blockchain.GetHeaderByHash(hash), nil
}

124
func (b *EthAPIBackend) BlockByNumber(ctx context.Context, number rpc.BlockNumber) (*types.Block, error) {
125
	// Pending block is only known by the miner
126
	if number == rpc.PendingBlockNumber {
127
		block := b.eth.miner.PendingBlock()
128 129 130
		if block == nil {
			return nil, errors.New("pending block is not available")
		}
131 132 133
		return block, nil
	}
	// Otherwise resolve and return the block
134
	if number == rpc.LatestBlockNumber {
135 136
		header := b.eth.blockchain.CurrentBlock()
		return b.eth.blockchain.GetBlock(header.Hash(), header.Number.Uint64()), nil
137
	}
138
	if number == rpc.FinalizedBlockNumber {
139 140 141
		if !b.eth.Merger().TDDReached() {
			return nil, errors.New("'finalized' tag not supported on pre-merge network")
		}
142
		header := b.eth.blockchain.CurrentFinalBlock()
143 144 145
		if header == nil {
			return nil, errors.New("finalized block not found")
		}
146
		return b.eth.blockchain.GetBlock(header.Hash(), header.Number.Uint64()), nil
147
	}
148
	if number == rpc.SafeBlockNumber {
149 150 151
		if !b.eth.Merger().TDDReached() {
			return nil, errors.New("'safe' tag not supported on pre-merge network")
		}
152
		header := b.eth.blockchain.CurrentSafeBlock()
153 154 155
		if header == nil {
			return nil, errors.New("safe block not found")
		}
156
		return b.eth.blockchain.GetBlock(header.Hash(), header.Number.Uint64()), nil
157
	}
158
	return b.eth.blockchain.GetBlockByNumber(uint64(number)), nil
159 160
}

161 162 163 164
func (b *EthAPIBackend) BlockByHash(ctx context.Context, hash common.Hash) (*types.Block, error) {
	return b.eth.blockchain.GetBlockByHash(hash), nil
}

165 166 167 168 169 170 171 172 173 174 175
// GetBody returns body of a block. It does not resolve special block numbers.
func (b *EthAPIBackend) GetBody(ctx context.Context, hash common.Hash, number rpc.BlockNumber) (*types.Body, error) {
	if number < 0 || hash == (common.Hash{}) {
		return nil, errors.New("invalid arguments; expect hash and no special block numbers")
	}
	if body := b.eth.blockchain.GetBody(hash); body != nil {
		return body, nil
	}
	return nil, errors.New("block body not found")
}

176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196
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")
}

197 198 199 200
func (b *EthAPIBackend) PendingBlockAndReceipts() (*types.Block, types.Receipts) {
	return b.eth.miner.PendingBlockAndReceipts()
}

201
func (b *EthAPIBackend) StateAndHeaderByNumber(ctx context.Context, number rpc.BlockNumber) (*state.StateDB, *types.Header, error) {
202
	// Pending state is only known by the miner
203
	if number == rpc.PendingBlockNumber {
204
		block, state := b.eth.miner.Pending()
205 206 207
		if block == nil || state == nil {
			return nil, nil, errors.New("pending state is not available")
		}
208
		return state, block.Header(), nil
209 210
	}
	// Otherwise resolve the block number and return its state
211
	header, err := b.HeaderByNumber(ctx, number)
212
	if err != nil {
213
		return nil, nil, err
214
	}
215 216 217
	if header == nil {
		return nil, nil, errors.New("header not found")
	}
218
	stateDb, err := b.eth.BlockChain().StateAt(header.Root)
219
	return stateDb, header, err
220 221
}

222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242
func (b *EthAPIBackend) StateAndHeaderByNumberOrHash(ctx context.Context, blockNrOrHash rpc.BlockNumberOrHash) (*state.StateDB, *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")
		}
		stateDb, err := b.eth.BlockChain().StateAt(header.Root)
		return stateDb, header, err
	}
	return nil, nil, errors.New("invalid arguments; neither block nor hash specified")
}

243
func (b *EthAPIBackend) GetReceipts(ctx context.Context, hash common.Hash) (types.Receipts, error) {
244
	return b.eth.blockchain.GetReceiptsByHash(hash), nil
245 246
}

247 248
func (b *EthAPIBackend) GetLogs(ctx context.Context, hash common.Hash, number uint64) ([][]*types.Log, error) {
	return rawdb.ReadLogs(b.eth.chainDb, hash, number, b.ChainConfig()), nil
249 250
}

251
func (b *EthAPIBackend) GetTd(ctx context.Context, hash common.Hash) *big.Int {
252 253 254 255
	if header := b.eth.blockchain.GetHeaderByHash(hash); header != nil {
		return b.eth.blockchain.GetTd(hash, header.Number.Uint64())
	}
	return nil
256 257
}

258
func (b *EthAPIBackend) GetEVM(ctx context.Context, msg *core.Message, state *state.StateDB, header *types.Header, vmConfig *vm.Config, blockCtx *vm.BlockContext) (*vm.EVM, func() error) {
259 260 261
	if vmConfig == nil {
		vmConfig = b.eth.blockchain.GetVMConfig()
	}
262
	txContext := core.NewEVMTxContext(msg)
263 264 265 266 267 268
	var context vm.BlockContext
	if blockCtx != nil {
		context = *blockCtx
	} else {
		context = core.NewEVMBlockContext(header, b.eth.BlockChain(), nil)
	}
269
	return vm.NewEVM(context, txContext, state, b.eth.blockchain.Config(), *vmConfig), state.Error
270 271
}

272
func (b *EthAPIBackend) SubscribeRemovedLogsEvent(ch chan<- core.RemovedLogsEvent) event.Subscription {
273 274 275
	return b.eth.BlockChain().SubscribeRemovedLogsEvent(ch)
}

276 277 278 279
func (b *EthAPIBackend) SubscribePendingLogsEvent(ch chan<- []*types.Log) event.Subscription {
	return b.eth.miner.SubscribePendingLogs(ch)
}

280
func (b *EthAPIBackend) SubscribeChainEvent(ch chan<- core.ChainEvent) event.Subscription {
281 282 283
	return b.eth.BlockChain().SubscribeChainEvent(ch)
}

284
func (b *EthAPIBackend) SubscribeChainHeadEvent(ch chan<- core.ChainHeadEvent) event.Subscription {
285 286 287
	return b.eth.BlockChain().SubscribeChainHeadEvent(ch)
}

288
func (b *EthAPIBackend) SubscribeChainSideEvent(ch chan<- core.ChainSideEvent) event.Subscription {
289 290 291
	return b.eth.BlockChain().SubscribeChainSideEvent(ch)
}

292
func (b *EthAPIBackend) SubscribeLogsEvent(ch chan<- []*types.Log) event.Subscription {
293 294 295
	return b.eth.BlockChain().SubscribeLogsEvent(ch)
}

296
func (b *EthAPIBackend) SendTx(ctx context.Context, signedTx *types.Transaction) error {
297
	return b.eth.txPool.Add([]*txpool.Transaction{{Tx: signedTx}}, true, false)[0]
298 299
}

300
func (b *EthAPIBackend) GetPoolTransactions() (types.Transactions, error) {
301
	pending := b.eth.txPool.Pending(false)
302
	var txs types.Transactions
303
	for _, batch := range pending {
304 305 306 307 308
		for _, lazy := range batch {
			if tx := lazy.Resolve(); tx != nil {
				txs = append(txs, tx.Tx)
			}
		}
309
	}
310
	return txs, nil
311 312
}

313
func (b *EthAPIBackend) GetPoolTransaction(hash common.Hash) *types.Transaction {
314 315 316 317
	if tx := b.eth.txPool.Get(hash); tx != nil {
		return tx.Tx
	}
	return nil
318 319
}

320 321 322 323 324
func (b *EthAPIBackend) GetTransaction(ctx context.Context, txHash common.Hash) (*types.Transaction, common.Hash, uint64, uint64, error) {
	tx, blockHash, blockNumber, index := rawdb.ReadTransaction(b.eth.ChainDb(), txHash)
	return tx, blockHash, blockNumber, index, nil
}

325
func (b *EthAPIBackend) GetPoolNonce(ctx context.Context, addr common.Address) (uint64, error) {
326
	return b.eth.txPool.Nonce(addr), nil
327 328
}

329
func (b *EthAPIBackend) Stats() (runnable int, blocked int) {
330 331 332
	return b.eth.txPool.Stats()
}

333 334
func (b *EthAPIBackend) TxPoolContent() (map[common.Address][]*types.Transaction, map[common.Address][]*types.Transaction) {
	return b.eth.txPool.Content()
335 336
}

337 338
func (b *EthAPIBackend) TxPoolContentFrom(addr common.Address) ([]*types.Transaction, []*types.Transaction) {
	return b.eth.txPool.ContentFrom(addr)
339 340
}

341
func (b *EthAPIBackend) TxPool() *txpool.TxPool {
342
	return b.eth.txPool
343 344
}

345
func (b *EthAPIBackend) SubscribeNewTxsEvent(ch chan<- core.NewTxsEvent) event.Subscription {
346
	return b.eth.txPool.SubscribeNewTxsEvent(ch)
347 348
}

349 350
func (b *EthAPIBackend) SyncProgress() ethereum.SyncProgress {
	return b.eth.Downloader().Progress()
351 352
}

353 354
func (b *EthAPIBackend) SuggestGasTipCap(ctx context.Context) (*big.Int, error) {
	return b.gpo.SuggestTipCap(ctx)
355 356
}

357
func (b *EthAPIBackend) FeeHistory(ctx context.Context, blockCount uint64, lastBlock rpc.BlockNumber, rewardPercentiles []float64) (firstBlock *big.Int, reward [][]*big.Int, baseFee []*big.Int, gasUsedRatio []float64, err error) {
358 359 360
	return b.gpo.FeeHistory(ctx, blockCount, lastBlock, rewardPercentiles)
}

361
func (b *EthAPIBackend) ChainDb() ethdb.Database {
362 363 364
	return b.eth.ChainDb()
}

365
func (b *EthAPIBackend) EventMux() *event.TypeMux {
366 367 368
	return b.eth.EventMux()
}

369
func (b *EthAPIBackend) AccountManager() *accounts.Manager {
370 371
	return b.eth.AccountManager()
}
372

373 374 375 376
func (b *EthAPIBackend) ExtRPCEnabled() bool {
	return b.extRPCEnabled
}

377 378 379 380
func (b *EthAPIBackend) UnprotectedAllowed() bool {
	return b.allowUnprotectedTxs
}

381
func (b *EthAPIBackend) RPCGasCap() uint64 {
382 383 384
	return b.eth.config.RPCGasCap
}

385 386 387 388
func (b *EthAPIBackend) RPCEVMTimeout() time.Duration {
	return b.eth.config.RPCEVMTimeout
}

389 390 391 392
func (b *EthAPIBackend) RPCTxFeeCap() float64 {
	return b.eth.config.RPCTxFeeCap
}

393
func (b *EthAPIBackend) BloomStatus() (uint64, uint64) {
394 395
	sections, _, _ := b.eth.bloomIndexer.Sections()
	return params.BloomBitsBlocks, sections
396 397
}

398
func (b *EthAPIBackend) ServiceFilter(ctx context.Context, session *bloombits.MatcherSession) {
399 400
	for i := 0; i < bloomFilterThreads; i++ {
		go session.Multiplex(bloomRetrievalBatch, bloomRetrievalWait, b.eth.bloomRequests)
401 402
	}
}
403 404 405 406 407 408 409 410 411 412 413 414 415

func (b *EthAPIBackend) Engine() consensus.Engine {
	return b.eth.engine
}

func (b *EthAPIBackend) CurrentHeader() *types.Header {
	return b.eth.blockchain.CurrentHeader()
}

func (b *EthAPIBackend) Miner() *miner.Miner {
	return b.eth.Miner()
}

416 417
func (b *EthAPIBackend) StartMining() error {
	return b.eth.StartMining()
418
}
419

420
func (b *EthAPIBackend) StateAtBlock(ctx context.Context, block *types.Block, reexec uint64, base *state.StateDB, readOnly bool, preferDisk bool) (*state.StateDB, tracers.StateReleaseFunc, error) {
421
	return b.eth.StateAtBlock(ctx, block, reexec, base, readOnly, preferDisk)
422 423
}

424
func (b *EthAPIBackend) StateAtTransaction(ctx context.Context, block *types.Block, txIndex int, reexec uint64) (*core.Message, vm.BlockContext, *state.StateDB, tracers.StateReleaseFunc, error) {
425
	return b.eth.stateAtTransaction(ctx, block, txIndex, reexec)
426
}