2020-01-17 23:16:01 +00:00
|
|
|
// VulcanizeDB
|
|
|
|
// Copyright © 2019 Vulcanize
|
|
|
|
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
|
|
|
|
// This program 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 Affero General Public License for more details.
|
|
|
|
|
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2020-01-16 23:21:49 +00:00
|
|
|
package eth
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
"math/big"
|
|
|
|
|
|
|
|
"github.com/ethereum/go-ethereum/common"
|
|
|
|
"github.com/ethereum/go-ethereum/core/types"
|
|
|
|
"github.com/ethereum/go-ethereum/rlp"
|
|
|
|
"github.com/ethereum/go-ethereum/rpc"
|
2020-01-26 19:55:26 +00:00
|
|
|
"github.com/sirupsen/logrus"
|
2020-01-16 23:21:49 +00:00
|
|
|
|
2020-02-10 15:00:55 +00:00
|
|
|
"github.com/vulcanize/vulcanizedb/pkg/postgres"
|
2020-01-16 23:21:49 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
errPendingBlockNumber = errors.New("pending block number not supported")
|
|
|
|
)
|
|
|
|
|
|
|
|
type Backend struct {
|
2020-02-20 22:12:52 +00:00
|
|
|
Retriever *CIDRetriever
|
|
|
|
Fetcher *IPLDFetcher
|
|
|
|
DB *postgres.DB
|
2020-01-16 23:21:49 +00:00
|
|
|
}
|
|
|
|
|
2020-01-17 23:16:01 +00:00
|
|
|
func NewEthBackend(db *postgres.DB, ipfsPath string) (*Backend, error) {
|
|
|
|
r := NewCIDRetriever(db)
|
|
|
|
f, err := NewIPLDFetcher(ipfsPath)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-01-16 23:21:49 +00:00
|
|
|
return &Backend{
|
2020-02-20 22:12:52 +00:00
|
|
|
Retriever: r,
|
|
|
|
Fetcher: f,
|
|
|
|
DB: db,
|
2020-01-17 23:16:01 +00:00
|
|
|
}, nil
|
2020-01-16 23:21:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (b *Backend) HeaderByNumber(ctx context.Context, blockNumber rpc.BlockNumber) (*types.Header, error) {
|
|
|
|
number := blockNumber.Int64()
|
|
|
|
var err error
|
|
|
|
if blockNumber == rpc.LatestBlockNumber {
|
2020-02-20 22:12:52 +00:00
|
|
|
number, err = b.Retriever.RetrieveLastBlockNumber()
|
2020-01-16 23:21:49 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if blockNumber == rpc.PendingBlockNumber {
|
|
|
|
return nil, errPendingBlockNumber
|
|
|
|
}
|
|
|
|
// Retrieve the CIDs for headers at this height
|
2020-02-20 22:12:52 +00:00
|
|
|
tx, err := b.DB.Beginx()
|
2020-01-16 23:21:49 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-02-20 22:12:52 +00:00
|
|
|
headerCids, err := b.Retriever.RetrieveHeaderCIDs(tx, number)
|
2020-01-16 23:21:49 +00:00
|
|
|
if err != nil {
|
2020-01-26 19:55:26 +00:00
|
|
|
if err := tx.Rollback(); err != nil {
|
|
|
|
logrus.Error(err)
|
|
|
|
}
|
2020-01-16 23:21:49 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if err := tx.Commit(); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
// If there are none, throw an error
|
|
|
|
if len(headerCids) < 1 {
|
|
|
|
return nil, fmt.Errorf("header at block %d is not available", number)
|
|
|
|
}
|
|
|
|
// Fetch the header IPLDs for those CIDs
|
2020-02-20 22:12:52 +00:00
|
|
|
headerIPLDs, err := b.Fetcher.FetchHeaders([]HeaderModel{headerCids[0]})
|
2020-01-16 23:21:49 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
// Decode the first header at this block height and return it
|
|
|
|
// We throw an error in FetchHeaders() if the number of headers does not match the number of CIDs and we already
|
|
|
|
// confirmed the number of CIDs is greater than 0 so there is no need to bound check the slice before accessing
|
2020-02-20 22:13:19 +00:00
|
|
|
var header types.Header
|
|
|
|
if err := rlp.DecodeBytes(headerIPLDs[0].Data, &header); err != nil {
|
2020-01-16 23:21:49 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
2020-02-20 22:13:19 +00:00
|
|
|
return &header, nil
|
2020-01-16 23:21:49 +00:00
|
|
|
}
|
|
|
|
|
2020-01-21 19:12:35 +00:00
|
|
|
// GetTd retrieves and returns the total difficulty at the given block hash
|
|
|
|
func (b *Backend) GetTd(blockHash common.Hash) (*big.Int, error) {
|
2020-02-20 22:13:19 +00:00
|
|
|
pgStr := `SELECT td FROM eth.header_cids
|
2020-01-21 19:12:35 +00:00
|
|
|
WHERE header_cids.block_hash = $1`
|
|
|
|
var tdStr string
|
2020-02-20 22:13:19 +00:00
|
|
|
err := b.DB.Get(&tdStr, pgStr, blockHash.String())
|
2020-01-21 19:12:35 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
td, ok := new(big.Int).SetString(tdStr, 10)
|
|
|
|
if !ok {
|
|
|
|
return nil, errors.New("total difficulty retrieved from Postgres cannot be converted to an integer")
|
|
|
|
}
|
|
|
|
return td, nil
|
|
|
|
}
|
|
|
|
|
2020-01-26 19:55:26 +00:00
|
|
|
// GetLogs returns all the logs for the given block hash
|
2020-01-21 19:12:35 +00:00
|
|
|
func (b *Backend) GetLogs(ctx context.Context, hash common.Hash) ([][]*types.Log, error) {
|
2020-02-20 22:12:52 +00:00
|
|
|
tx, err := b.DB.Beginx()
|
2020-01-21 19:12:35 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-02-20 22:12:52 +00:00
|
|
|
receiptCIDs, err := b.Retriever.RetrieveRctCIDs(tx, ReceiptFilter{}, 0, &hash, nil)
|
2020-01-21 19:12:35 +00:00
|
|
|
if err != nil {
|
2020-01-26 19:55:26 +00:00
|
|
|
if err := tx.Rollback(); err != nil {
|
|
|
|
logrus.Error(err)
|
|
|
|
}
|
2020-01-21 19:12:35 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if err := tx.Commit(); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if len(receiptCIDs) == 0 {
|
|
|
|
return nil, nil
|
|
|
|
}
|
2020-02-20 22:12:52 +00:00
|
|
|
receiptIPLDs, err := b.Fetcher.FetchRcts(receiptCIDs)
|
2020-01-21 19:12:35 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-01-26 19:55:26 +00:00
|
|
|
logs := make([][]*types.Log, len(receiptIPLDs))
|
|
|
|
for i, rctIPLD := range receiptIPLDs {
|
|
|
|
var rct types.Receipt
|
2020-02-20 22:13:19 +00:00
|
|
|
if err := rlp.DecodeBytes(rctIPLD.Data, &rct); err != nil {
|
2020-01-21 19:12:35 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
logs[i] = rct.Logs
|
|
|
|
}
|
|
|
|
return logs, nil
|
2020-01-16 23:21:49 +00:00
|
|
|
}
|
2020-01-26 19:55:26 +00:00
|
|
|
|
|
|
|
// BlockByNumber returns the requested canonical block.
|
|
|
|
// Since the SuperNode can contain forked blocks, it is recommended to fetch BlockByHash as
|
|
|
|
// fetching by number can return non-deterministic results (returns the first block found at that height)
|
|
|
|
func (b *Backend) BlockByNumber(ctx context.Context, blockNumber rpc.BlockNumber) (*types.Block, error) {
|
|
|
|
number := blockNumber.Int64()
|
|
|
|
var err error
|
|
|
|
if blockNumber == rpc.LatestBlockNumber {
|
2020-02-20 22:12:52 +00:00
|
|
|
number, err = b.Retriever.RetrieveLastBlockNumber()
|
2020-01-26 19:55:26 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if blockNumber == rpc.PendingBlockNumber {
|
|
|
|
return nil, errPendingBlockNumber
|
|
|
|
}
|
|
|
|
// Retrieve all the CIDs for the block
|
2020-02-20 22:12:52 +00:00
|
|
|
headerCID, uncleCIDs, txCIDs, rctCIDs, err := b.Retriever.RetrieveBlockByNumber(number)
|
2020-01-26 19:55:26 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-02-20 22:13:19 +00:00
|
|
|
|
2020-01-26 19:55:26 +00:00
|
|
|
// Fetch and decode the header IPLD
|
2020-02-20 22:12:52 +00:00
|
|
|
headerIPLDs, err := b.Fetcher.FetchHeaders([]HeaderModel{headerCID})
|
2020-01-26 19:55:26 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-02-20 22:13:19 +00:00
|
|
|
var header types.Header
|
|
|
|
if err := rlp.DecodeBytes(headerIPLDs[0].Data, &header); err != nil {
|
2020-01-26 19:55:26 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
// Fetch and decode the uncle IPLDs
|
2020-02-20 22:12:52 +00:00
|
|
|
uncleIPLDs, err := b.Fetcher.FetchUncles(uncleCIDs)
|
2020-01-26 19:55:26 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
var uncles []*types.Header
|
|
|
|
for _, uncleIPLD := range uncleIPLDs {
|
2020-02-20 22:13:19 +00:00
|
|
|
var uncle types.Header
|
|
|
|
if err := rlp.DecodeBytes(uncleIPLD.Data, &uncle); err != nil {
|
2020-01-26 19:55:26 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
2020-02-20 22:13:19 +00:00
|
|
|
uncles = append(uncles, &uncle)
|
2020-01-26 19:55:26 +00:00
|
|
|
}
|
|
|
|
// Fetch and decode the transaction IPLDs
|
2020-02-20 22:12:52 +00:00
|
|
|
txIPLDs, err := b.Fetcher.FetchTrxs(txCIDs)
|
2020-01-26 19:55:26 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
var transactions []*types.Transaction
|
|
|
|
for _, txIPLD := range txIPLDs {
|
2020-02-20 22:13:19 +00:00
|
|
|
var tx types.Transaction
|
|
|
|
if err := rlp.DecodeBytes(txIPLD.Data, &tx); err != nil {
|
2020-01-26 19:55:26 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
2020-02-20 22:13:19 +00:00
|
|
|
transactions = append(transactions, &tx)
|
2020-01-26 19:55:26 +00:00
|
|
|
}
|
|
|
|
// Fetch and decode the receipt IPLDs
|
2020-02-20 22:12:52 +00:00
|
|
|
rctIPLDs, err := b.Fetcher.FetchRcts(rctCIDs)
|
2020-01-26 19:55:26 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
var receipts []*types.Receipt
|
|
|
|
for _, rctIPLD := range rctIPLDs {
|
2020-02-20 22:13:19 +00:00
|
|
|
var receipt types.Receipt
|
|
|
|
if err := rlp.DecodeBytes(rctIPLD.Data, &receipt); err != nil {
|
2020-01-26 19:55:26 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
2020-02-20 22:13:19 +00:00
|
|
|
receipts = append(receipts, &receipt)
|
2020-01-26 19:55:26 +00:00
|
|
|
}
|
|
|
|
// Compose everything together into a complete block
|
2020-02-20 22:13:19 +00:00
|
|
|
return types.NewBlock(&header, transactions, uncles, receipts), nil
|
2020-01-26 19:55:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// BlockByHash returns the requested block. When fullTx is true all transactions in the block are returned in full
|
|
|
|
// detail, otherwise only the transaction hash is returned.
|
|
|
|
func (b *Backend) BlockByHash(ctx context.Context, hash common.Hash) (*types.Block, error) {
|
|
|
|
// Retrieve all the CIDs for the block
|
2020-02-20 22:12:52 +00:00
|
|
|
headerCID, uncleCIDs, txCIDs, rctCIDs, err := b.Retriever.RetrieveBlockByHash(hash)
|
2020-01-26 19:55:26 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
// Fetch and decode the header IPLD
|
2020-02-20 22:12:52 +00:00
|
|
|
headerIPLDs, err := b.Fetcher.FetchHeaders([]HeaderModel{headerCID})
|
2020-01-26 19:55:26 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-02-20 22:13:19 +00:00
|
|
|
var header types.Header
|
|
|
|
if err := rlp.DecodeBytes(headerIPLDs[0].Data, &header); err != nil {
|
2020-01-26 19:55:26 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
// Fetch and decode the uncle IPLDs
|
2020-02-20 22:12:52 +00:00
|
|
|
uncleIPLDs, err := b.Fetcher.FetchUncles(uncleCIDs)
|
2020-01-26 19:55:26 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
var uncles []*types.Header
|
|
|
|
for _, uncleIPLD := range uncleIPLDs {
|
2020-02-20 22:13:19 +00:00
|
|
|
var uncle types.Header
|
|
|
|
if err := rlp.DecodeBytes(uncleIPLD.Data, &uncle); err != nil {
|
2020-01-26 19:55:26 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
2020-02-20 22:13:19 +00:00
|
|
|
uncles = append(uncles, &uncle)
|
2020-01-26 19:55:26 +00:00
|
|
|
}
|
|
|
|
// Fetch and decode the transaction IPLDs
|
2020-02-20 22:12:52 +00:00
|
|
|
txIPLDs, err := b.Fetcher.FetchTrxs(txCIDs)
|
2020-01-26 19:55:26 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
var transactions []*types.Transaction
|
|
|
|
for _, txIPLD := range txIPLDs {
|
2020-02-20 22:13:19 +00:00
|
|
|
var tx types.Transaction
|
|
|
|
if err := rlp.DecodeBytes(txIPLD.Data, &tx); err != nil {
|
2020-01-26 19:55:26 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
2020-02-20 22:13:19 +00:00
|
|
|
transactions = append(transactions, &tx)
|
2020-01-26 19:55:26 +00:00
|
|
|
}
|
|
|
|
// Fetch and decode the receipt IPLDs
|
2020-02-20 22:12:52 +00:00
|
|
|
rctIPLDs, err := b.Fetcher.FetchRcts(rctCIDs)
|
2020-01-26 19:55:26 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
var receipts []*types.Receipt
|
|
|
|
for _, rctIPLD := range rctIPLDs {
|
2020-02-20 22:13:19 +00:00
|
|
|
var receipt types.Receipt
|
|
|
|
if err := rlp.DecodeBytes(rctIPLD.Data, &receipt); err != nil {
|
2020-01-26 19:55:26 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
2020-02-20 22:13:19 +00:00
|
|
|
receipts = append(receipts, &receipt)
|
2020-01-26 19:55:26 +00:00
|
|
|
}
|
|
|
|
// Compose everything together into a complete block
|
2020-02-20 22:13:19 +00:00
|
|
|
return types.NewBlock(&header, transactions, uncles, receipts), nil
|
2020-01-26 19:55:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// GetTransaction retrieves a tx by hash
|
|
|
|
// It also returns the blockhash, blocknumber, and tx index associated with the transaction
|
|
|
|
func (b *Backend) GetTransaction(ctx context.Context, txHash common.Hash) (*types.Transaction, common.Hash, uint64, uint64, error) {
|
|
|
|
pgStr := `SELECT transaction_cids.cid, transaction_cids.index, header_cids.block_hash, header_cids.block_number
|
2020-02-20 22:13:19 +00:00
|
|
|
FROM eth.transaction_cids, eth.header_cids
|
2020-01-26 19:55:26 +00:00
|
|
|
WHERE transaction_cids.header_id = header_cids.id
|
|
|
|
AND transaction_cids.tx_hash = $1`
|
|
|
|
var txCIDWithHeaderInfo struct {
|
|
|
|
CID string `db:"cid"`
|
|
|
|
Index int64 `db:"index"`
|
|
|
|
BlockHash string `db:"block_hash"`
|
|
|
|
BlockNumber int64 `db:"block_number"`
|
|
|
|
}
|
2020-02-20 22:12:52 +00:00
|
|
|
if err := b.DB.Get(&txCIDWithHeaderInfo, pgStr, txHash.String()); err != nil {
|
2020-01-26 19:55:26 +00:00
|
|
|
return nil, common.Hash{}, 0, 0, err
|
|
|
|
}
|
2020-02-20 22:12:52 +00:00
|
|
|
txIPLD, err := b.Fetcher.FetchTrxs([]TxModel{{CID: txCIDWithHeaderInfo.CID}})
|
2020-01-26 19:55:26 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, common.Hash{}, 0, 0, err
|
|
|
|
}
|
2020-02-20 22:13:19 +00:00
|
|
|
var transaction types.Transaction
|
|
|
|
if err := rlp.DecodeBytes(txIPLD[0].Data, &transaction); err != nil {
|
2020-01-26 19:55:26 +00:00
|
|
|
return nil, common.Hash{}, 0, 0, err
|
|
|
|
}
|
2020-02-20 22:13:19 +00:00
|
|
|
return &transaction, common.HexToHash(txCIDWithHeaderInfo.BlockHash), uint64(txCIDWithHeaderInfo.BlockNumber), uint64(txCIDWithHeaderInfo.Index), nil
|
2020-01-26 19:55:26 +00:00
|
|
|
}
|