You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
210 lines
7.7 KiB
210 lines
7.7 KiB
// Copyright 2017 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 <http://www.gnu.org/licenses/>.
|
|
|
|
package rpc
|
|
|
|
import (
|
|
"bytes"
|
|
"context"
|
|
"errors"
|
|
"fmt"
|
|
"time"
|
|
|
|
"github.com/ethereum/go-ethereum/common"
|
|
"github.com/ethereum/go-ethereum/rlp"
|
|
"github.com/woop-chain/woop/core"
|
|
"github.com/woop-chain/woop/core/rawdb"
|
|
"github.com/woop-chain/woop/core/types"
|
|
"github.com/woop-chain/woop/eth/rpc"
|
|
"github.com/woop-chain/woop/wiki"
|
|
)
|
|
|
|
const (
|
|
// defaultTraceTimeout is the amount of time a single transaction can execute
|
|
// by default before being forcefully aborted.
|
|
defaultTraceTimeout = 5 * time.Second
|
|
|
|
// defaultTraceReExec is the number of blocks the tracer is willing to go back
|
|
// and re-execute to produce missing historical state necessary to run a specific
|
|
// trace.
|
|
defaultTraceReexec = uint64(128)
|
|
)
|
|
|
|
var (
|
|
// ErrNotAvailable to indicate the RPC is not ready for public use
|
|
ErrNotAvailable = errors.New("RPC not available yet")
|
|
)
|
|
|
|
// PublicTracerService provides an API to access Woop's staking services.
|
|
// It offers only methods that operate on public data that is freely available to anyone.
|
|
type PublicTracerService struct {
|
|
wiki *wiki.Woop
|
|
version Version
|
|
}
|
|
|
|
// NewPublicTraceAPI creates a new API for the RPC interface
|
|
func NewPublicTraceAPI(wiki *wiki.Woop, version Version) rpc.API {
|
|
var service interface{} = &PublicTracerService{wiki, version}
|
|
if version == Trace {
|
|
service = &PublicParityTracerService{service.(*PublicTracerService)}
|
|
}
|
|
return rpc.API{
|
|
Namespace: version.Namespace(),
|
|
Version: APIVersion,
|
|
Service: service,
|
|
Public: true,
|
|
}
|
|
}
|
|
|
|
// TraceChain returns the structured logs created during the execution of EVM
|
|
// between two blocks (excluding start) and returns them as a JSON object.
|
|
func (s *PublicTracerService) TraceChain(ctx context.Context, start, end rpc.BlockNumber, config *wiki.TraceConfig) (*rpc.Subscription, error) {
|
|
timer := DoMetricRPCRequest(TraceChain)
|
|
defer DoRPCRequestDuration(TraceChain, timer)
|
|
|
|
// TODO (JL): Make API available after DoS testing
|
|
return nil, ErrNotAvailable
|
|
/*
|
|
if uint64(start) >= uint64(end) {
|
|
return nil, fmt.Errorf("start block can not be equal or greater than the end block")
|
|
}
|
|
|
|
currentBlock := s.wiki.BlockChain.CurrentBlock().NumberU64()
|
|
if uint64(start) > currentBlock || uint64(end) > currentBlock {
|
|
return nil, ErrRequestedBlockTooHigh
|
|
}
|
|
|
|
from := s.wiki.BlockChain.GetBlockByNumber(uint64(start))
|
|
if from == nil {
|
|
return nil, fmt.Errorf("start block #%d not found", start)
|
|
}
|
|
to := s.wiki.BlockChain.GetBlockByNumber(uint64(end))
|
|
if to == nil {
|
|
return nil, fmt.Errorf("end block #%d not found", end)
|
|
}
|
|
|
|
return s.wiki.TraceChain(ctx, from, to, config)
|
|
|
|
*/
|
|
}
|
|
|
|
// TraceBlockByNumber returns the structured logs created during the execution of
|
|
// EVM and returns them as a JSON object.
|
|
func (s *PublicTracerService) TraceBlockByNumber(ctx context.Context, number rpc.BlockNumber, config *wiki.TraceConfig) ([]*wiki.TxTraceResult, error) {
|
|
timer := DoMetricRPCRequest(TraceBlockByNumber)
|
|
defer DoRPCRequestDuration(TraceBlockByNumber, timer)
|
|
|
|
// Fetch the block that we want to trace
|
|
block := s.wiki.BlockChain.GetBlockByNumber(uint64(number))
|
|
|
|
return s.wiki.TraceBlock(ctx, block, config)
|
|
}
|
|
|
|
// TraceBlockByHash returns the structured logs created during the execution of
|
|
// EVM and returns them as a JSON object.
|
|
func (s *PublicTracerService) TraceBlockByHash(ctx context.Context, hash common.Hash, config *wiki.TraceConfig) ([]*wiki.TxTraceResult, error) {
|
|
timer := DoMetricRPCRequest(TraceBlockByHash)
|
|
defer DoRPCRequestDuration(TraceBlockByHash, timer)
|
|
|
|
block := s.wiki.BlockChain.GetBlockByHash(hash)
|
|
if block == nil {
|
|
DoMetricRPCQueryInfo(TraceBlockByHash, FailedNumber)
|
|
return nil, fmt.Errorf("block %#x not found", hash)
|
|
}
|
|
return s.wiki.TraceBlock(ctx, block, config)
|
|
}
|
|
|
|
// TraceBlock returns the structured logs created during the execution of EVM
|
|
// and returns them as a JSON object.
|
|
func (s *PublicTracerService) TraceBlock(ctx context.Context, blob []byte, config *wiki.TraceConfig) ([]*wiki.TxTraceResult, error) {
|
|
timer := DoMetricRPCRequest(TraceBlock)
|
|
defer DoRPCRequestDuration(TraceBlock, timer)
|
|
|
|
block := new(types.Block)
|
|
if err := rlp.Decode(bytes.NewReader(blob), block); err != nil {
|
|
DoMetricRPCQueryInfo(TraceBlock, FailedNumber)
|
|
return nil, fmt.Errorf("could not decode block: %v", err)
|
|
}
|
|
return s.wiki.TraceBlock(ctx, block, config)
|
|
}
|
|
|
|
// TraceTransaction returns the structured logs created during the execution of EVM
|
|
// and returns them as a JSON object.
|
|
func (s *PublicTracerService) TraceTransaction(ctx context.Context, hash common.Hash, config *wiki.TraceConfig) (interface{}, error) {
|
|
timer := DoMetricRPCRequest(TraceTransaction)
|
|
defer DoRPCRequestDuration(TraceTransaction, timer)
|
|
|
|
// Retrieve the transaction and assemble its EVM context
|
|
tx, blockHash, _, index := rawdb.ReadTransaction(s.wiki.ChainDb(), hash)
|
|
if tx == nil {
|
|
DoMetricRPCQueryInfo(TraceTransaction, FailedNumber)
|
|
return nil, fmt.Errorf("transaction %#x not found", hash)
|
|
}
|
|
reexec := defaultTraceReexec
|
|
if config != nil && config.Reexec != nil {
|
|
reexec = *config.Reexec
|
|
}
|
|
// Retrieve the block
|
|
block := s.wiki.BlockChain.GetBlockByHash(blockHash)
|
|
if block == nil {
|
|
DoMetricRPCQueryInfo(TraceTransaction, FailedNumber)
|
|
return nil, fmt.Errorf("block %#x not found", blockHash)
|
|
}
|
|
msg, vmctx, statedb, err := s.wiki.ComputeTxEnv(block, int(index), reexec)
|
|
if err != nil {
|
|
DoMetricRPCQueryInfo(TraceTransaction, FailedNumber)
|
|
return nil, err
|
|
}
|
|
// Trace the transaction and return
|
|
statedb.Prepare(tx.ConvertToEth().Hash(), block.Hash(), int(index))
|
|
return s.wiki.TraceTx(ctx, msg, vmctx, statedb, config)
|
|
}
|
|
|
|
// TraceCall lets you trace a given eth_call. It collects the structured logs created during the execution of EVM
|
|
// if the given transaction was added on top of the provided block and returns them as a JSON object.
|
|
// You can provide -2 as a block number to trace on top of the pending block.
|
|
// NOTE: Our version only supports block number as an input
|
|
func (s *PublicTracerService) TraceCall(ctx context.Context, args CallArgs, blockNr rpc.BlockNumber, config *wiki.TraceConfig) (interface{}, error) {
|
|
timer := DoMetricRPCRequest(TraceCall)
|
|
defer DoRPCRequestDuration(TraceCall, timer)
|
|
|
|
// First try to retrieve the state
|
|
statedb, header, err := s.wiki.StateAndHeaderByNumber(ctx, blockNr)
|
|
if err != nil {
|
|
// Try to retrieve the specified block
|
|
block := s.wiki.BlockChain.GetBlockByNumber(uint64(blockNr))
|
|
if block == nil {
|
|
DoMetricRPCQueryInfo(TraceCall, FailedNumber)
|
|
return nil, fmt.Errorf("block %v not found: %v", blockNr, err)
|
|
}
|
|
// try to recompute the state
|
|
reexec := defaultTraceReexec
|
|
if config != nil && config.Reexec != nil {
|
|
reexec = *config.Reexec
|
|
}
|
|
_, _, statedb, err = s.wiki.ComputeTxEnv(block, 0, reexec)
|
|
if err != nil {
|
|
DoMetricRPCQueryInfo(TraceCall, FailedNumber)
|
|
return nil, err
|
|
}
|
|
}
|
|
|
|
// Execute the trace
|
|
msg := args.ToMessage(s.wiki.RPCGasCap)
|
|
vmctx := core.NewEVMContext(msg, header, s.wiki.BlockChain, nil)
|
|
// Trace the transaction and return
|
|
return s.wiki.TraceTx(ctx, msg, vmctx, statedb, config)
|
|
}
|
|
|