api_backend.go 11.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 23 24 25
	"math/big"

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

42 43
// EthAPIBackend implements ethapi.Backend for full nodes
type EthAPIBackend struct {
44 45 46 47
	extRPCEnabled       bool
	allowUnprotectedTxs bool
	eth                 *Ethereum
	gpo                 *gasprice.Oracle
48 49
}

50
// ChainConfig returns the active chain configuration.
51
func (b *EthAPIBackend) ChainConfig() *params.ChainConfig {
52
	return b.eth.blockchain.Config()
53 54
}

55
func (b *EthAPIBackend) CurrentBlock() *types.Block {
56 57 58
	return b.eth.blockchain.CurrentBlock()
}

59
func (b *EthAPIBackend) SetHead(number uint64) {
60
	b.eth.handler.downloader.Cancel()
61 62 63
	b.eth.blockchain.SetHead(number)
}

64
func (b *EthAPIBackend) HeaderByNumber(ctx context.Context, number rpc.BlockNumber) (*types.Header, error) {
65
	// Pending block is only known by the miner
66
	if number == rpc.PendingBlockNumber {
67
		block := b.eth.miner.PendingBlock()
68
		return block.Header(), nil
69 70
	}
	// Otherwise resolve and return the block
71
	if number == rpc.LatestBlockNumber {
72
		return b.eth.blockchain.CurrentBlock().Header(), nil
73
	}
74
	return b.eth.blockchain.GetHeaderByNumber(uint64(number)), nil
75 76
}

77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
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")
}

94 95 96 97
func (b *EthAPIBackend) HeaderByHash(ctx context.Context, hash common.Hash) (*types.Header, error) {
	return b.eth.blockchain.GetHeaderByHash(hash), nil
}

98
func (b *EthAPIBackend) BlockByNumber(ctx context.Context, number rpc.BlockNumber) (*types.Block, error) {
99
	// Pending block is only known by the miner
100
	if number == rpc.PendingBlockNumber {
101
		block := b.eth.miner.PendingBlock()
102 103 104
		return block, nil
	}
	// Otherwise resolve and return the block
105
	if number == rpc.LatestBlockNumber {
106 107
		return b.eth.blockchain.CurrentBlock(), nil
	}
108
	return b.eth.blockchain.GetBlockByNumber(uint64(number)), nil
109 110
}

111 112 113 114
func (b *EthAPIBackend) BlockByHash(ctx context.Context, hash common.Hash) (*types.Block, error) {
	return b.eth.blockchain.GetBlockByHash(hash), nil
}

115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135
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")
}

136
func (b *EthAPIBackend) StateAndHeaderByNumber(ctx context.Context, number rpc.BlockNumber) (*state.StateDB, *types.Header, error) {
137
	// Pending state is only known by the miner
138
	if number == rpc.PendingBlockNumber {
139
		block, state := b.eth.miner.Pending()
140
		return state, block.Header(), nil
141 142
	}
	// Otherwise resolve the block number and return its state
143
	header, err := b.HeaderByNumber(ctx, number)
144
	if err != nil {
145
		return nil, nil, err
146
	}
147 148 149
	if header == nil {
		return nil, nil, errors.New("header not found")
	}
150
	stateDb, err := b.eth.BlockChain().StateAt(header.Root)
151
	return stateDb, header, err
152 153
}

154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174
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")
}

175
func (b *EthAPIBackend) GetReceipts(ctx context.Context, hash common.Hash) (types.Receipts, error) {
176
	return b.eth.blockchain.GetReceiptsByHash(hash), nil
177 178
}

179
func (b *EthAPIBackend) GetLogs(ctx context.Context, hash common.Hash) ([][]*types.Log, error) {
180
	receipts := b.eth.blockchain.GetReceiptsByHash(hash)
181 182 183 184 185 186 187 188 189 190
	if receipts == nil {
		return nil, nil
	}
	logs := make([][]*types.Log, len(receipts))
	for i, receipt := range receipts {
		logs[i] = receipt.Logs
	}
	return logs, nil
}

191 192
func (b *EthAPIBackend) GetTd(ctx context.Context, hash common.Hash) *big.Int {
	return b.eth.blockchain.GetTdByHash(hash)
193 194
}

195
func (b *EthAPIBackend) GetEVM(ctx context.Context, msg core.Message, state *state.StateDB, header *types.Header) (*vm.EVM, func() error, error) {
196
	vmError := func() error { return nil }
197

198 199 200
	txContext := core.NewEVMTxContext(msg)
	context := core.NewEVMBlockContext(header, b.eth.BlockChain(), nil)
	return vm.NewEVM(context, txContext, state, b.eth.blockchain.Config(), *b.eth.blockchain.GetVMConfig()), vmError, nil
201 202
}

203
func (b *EthAPIBackend) SubscribeRemovedLogsEvent(ch chan<- core.RemovedLogsEvent) event.Subscription {
204 205 206
	return b.eth.BlockChain().SubscribeRemovedLogsEvent(ch)
}

207 208 209 210
func (b *EthAPIBackend) SubscribePendingLogsEvent(ch chan<- []*types.Log) event.Subscription {
	return b.eth.miner.SubscribePendingLogs(ch)
}

211
func (b *EthAPIBackend) SubscribeChainEvent(ch chan<- core.ChainEvent) event.Subscription {
212 213 214
	return b.eth.BlockChain().SubscribeChainEvent(ch)
}

215
func (b *EthAPIBackend) SubscribeChainHeadEvent(ch chan<- core.ChainHeadEvent) event.Subscription {
216 217 218
	return b.eth.BlockChain().SubscribeChainHeadEvent(ch)
}

219
func (b *EthAPIBackend) SubscribeChainSideEvent(ch chan<- core.ChainSideEvent) event.Subscription {
220 221 222
	return b.eth.BlockChain().SubscribeChainSideEvent(ch)
}

223
func (b *EthAPIBackend) SubscribeLogsEvent(ch chan<- []*types.Log) event.Subscription {
224 225 226
	return b.eth.BlockChain().SubscribeLogsEvent(ch)
}

227
func (b *EthAPIBackend) SendTx(ctx context.Context, signedTx *types.Transaction) error {
228
	return b.eth.txPool.AddLocal(signedTx)
229 230
}

231
func (b *EthAPIBackend) GetPoolTransactions() (types.Transactions, error) {
232 233 234 235
	pending, err := b.eth.txPool.Pending()
	if err != nil {
		return nil, err
	}
236
	var txs types.Transactions
237
	for _, batch := range pending {
238 239
		txs = append(txs, batch...)
	}
240
	return txs, nil
241 242
}

243
func (b *EthAPIBackend) GetPoolTransaction(hash common.Hash) *types.Transaction {
244
	return b.eth.txPool.Get(hash)
245 246
}

247 248 249 250 251
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
}

252
func (b *EthAPIBackend) GetPoolNonce(ctx context.Context, addr common.Address) (uint64, error) {
253
	return b.eth.txPool.Nonce(addr), nil
254 255
}

256
func (b *EthAPIBackend) Stats() (pending int, queued int) {
257 258 259
	return b.eth.txPool.Stats()
}

260
func (b *EthAPIBackend) TxPoolContent() (map[common.Address]types.Transactions, map[common.Address]types.Transactions) {
261 262 263
	return b.eth.TxPool().Content()
}

264 265 266 267
func (b *EthAPIBackend) TxPool() *core.TxPool {
	return b.eth.TxPool()
}

268 269
func (b *EthAPIBackend) SubscribeNewTxsEvent(ch chan<- core.NewTxsEvent) event.Subscription {
	return b.eth.TxPool().SubscribeNewTxsEvent(ch)
270 271
}

272
func (b *EthAPIBackend) Downloader() *downloader.Downloader {
273 274 275
	return b.eth.Downloader()
}

276
func (b *EthAPIBackend) SuggestPrice(ctx context.Context) (*big.Int, error) {
277
	return b.gpo.SuggestPrice(ctx)
278 279
}

280
func (b *EthAPIBackend) ChainDb() ethdb.Database {
281 282 283
	return b.eth.ChainDb()
}

284
func (b *EthAPIBackend) EventMux() *event.TypeMux {
285 286 287
	return b.eth.EventMux()
}

288
func (b *EthAPIBackend) AccountManager() *accounts.Manager {
289 290
	return b.eth.AccountManager()
}
291

292 293 294 295
func (b *EthAPIBackend) ExtRPCEnabled() bool {
	return b.extRPCEnabled
}

296 297 298 299
func (b *EthAPIBackend) UnprotectedAllowed() bool {
	return b.allowUnprotectedTxs
}

300
func (b *EthAPIBackend) RPCGasCap() uint64 {
301 302 303
	return b.eth.config.RPCGasCap
}

304 305 306 307
func (b *EthAPIBackend) RPCTxFeeCap() float64 {
	return b.eth.config.RPCTxFeeCap
}

308
func (b *EthAPIBackend) BloomStatus() (uint64, uint64) {
309 310
	sections, _, _ := b.eth.bloomIndexer.Sections()
	return params.BloomBitsBlocks, sections
311 312
}

313
func (b *EthAPIBackend) ServiceFilter(ctx context.Context, session *bloombits.MatcherSession) {
314 315
	for i := 0; i < bloomFilterThreads; i++ {
		go session.Multiplex(bloomRetrievalBatch, bloomRetrievalWait, b.eth.bloomRequests)
316 317
	}
}
318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333

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()
}

func (b *EthAPIBackend) StartMining(threads int) error {
	return b.eth.StartMining(threads)
}
334 335 336 337 338 339 340 341 342 343 344 345

func (b *EthAPIBackend) StateAtBlock(ctx context.Context, block *types.Block, reexec uint64) (*state.StateDB, func(), error) {
	return b.eth.stateAtBlock(block, reexec)
}

func (b *EthAPIBackend) StatesInRange(ctx context.Context, fromBlock *types.Block, toBlock *types.Block, reexec uint64) ([]*state.StateDB, 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.StateDB, func(), error) {
	return b.eth.stateAtTransaction(block, txIndex, reexec)
}