While removing the globals from background.go it also made sense to clean up the use of dcrd RPC clients. Previously two seperate clients were maintained, one for making RPC calls and one for receiving notifications. These clients have been unified.
231 lines
6.7 KiB
Go
231 lines
6.7 KiB
Go
// Copyright (c) 2020-2022 The Decred developers
|
|
// Use of this source code is governed by an ISC
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package rpc
|
|
|
|
import (
|
|
"context"
|
|
"encoding/hex"
|
|
"errors"
|
|
"fmt"
|
|
|
|
"github.com/decred/dcrd/blockchain/v4"
|
|
"github.com/decred/dcrd/chaincfg/v3"
|
|
dcrdtypes "github.com/decred/dcrd/rpc/jsonrpc/types/v3"
|
|
"github.com/decred/dcrd/wire"
|
|
"github.com/jrick/bitset"
|
|
"github.com/jrick/wsrpc/v2"
|
|
)
|
|
|
|
var (
|
|
requiredDcrdVersion = semver{Major: 7, Minor: 0, Patch: 0}
|
|
|
|
activeStatus = blockchain.ThresholdStateTuple{State: blockchain.ThresholdActive}.String()
|
|
)
|
|
|
|
// These error codes are defined in dcrd/dcrjson. They are copied here so we
|
|
// dont need to import the whole package.
|
|
const (
|
|
ErrRPCDuplicateTx = -40
|
|
ErrNoTxInfo = -5
|
|
)
|
|
|
|
// DcrdRPC provides methods for calling dcrd JSON-RPCs without exposing the details
|
|
// of JSON encoding.
|
|
type DcrdRPC struct {
|
|
Caller
|
|
ctx context.Context
|
|
}
|
|
|
|
type DcrdConnect struct {
|
|
client *client
|
|
params *chaincfg.Params
|
|
}
|
|
|
|
func SetupDcrd(user, pass, addr string, cert []byte, params *chaincfg.Params) DcrdConnect {
|
|
return DcrdConnect{
|
|
client: setup(user, pass, addr, cert),
|
|
params: params,
|
|
}
|
|
}
|
|
|
|
// BlockConnectedHandler attaches a blockconnected notification handler to the
|
|
// dcrd client. Every time a notification is received, the header of the
|
|
// connected block is sent to the provided channel.
|
|
func (d *DcrdConnect) BlockConnectedHandler(blockConnected chan *wire.BlockHeader) {
|
|
d.client.notifier = &blockConnectedHandler{
|
|
blockConnected: blockConnected,
|
|
}
|
|
}
|
|
|
|
func (d *DcrdConnect) Close() {
|
|
d.client.Close()
|
|
log.Debug("dcrd client closed")
|
|
}
|
|
|
|
// Client creates a new DcrdRPC client instance. Returns an error if dialing
|
|
// dcrd fails or if dcrd is misconfigured.
|
|
func (d *DcrdConnect) Client() (*DcrdRPC, string, error) {
|
|
ctx := context.TODO()
|
|
c, newConnection, err := d.client.dial(ctx)
|
|
if err != nil {
|
|
return nil, d.client.addr, fmt.Errorf("dcrd dial error: %w", err)
|
|
}
|
|
|
|
// If this is a reused connection, we don't need to validate the dcrd config
|
|
// again.
|
|
if !newConnection {
|
|
return &DcrdRPC{c, ctx}, d.client.addr, nil
|
|
}
|
|
|
|
// Verify dcrd is at the required api version.
|
|
var verMap map[string]dcrdtypes.VersionResult
|
|
err = c.Call(ctx, "version", &verMap)
|
|
if err != nil {
|
|
d.client.Close()
|
|
return nil, d.client.addr, fmt.Errorf("dcrd version check failed: %w", err)
|
|
}
|
|
|
|
ver, exists := verMap["dcrdjsonrpcapi"]
|
|
if !exists {
|
|
d.client.Close()
|
|
return nil, d.client.addr, fmt.Errorf("dcrd version response missing 'dcrdjsonrpcapi'")
|
|
}
|
|
|
|
sVer := semver{ver.Major, ver.Minor, ver.Patch}
|
|
if !semverCompatible(requiredDcrdVersion, sVer) {
|
|
d.client.Close()
|
|
return nil, d.client.addr, fmt.Errorf("dcrd has incompatible JSON-RPC version: got %s, expected %s",
|
|
sVer, requiredDcrdVersion)
|
|
}
|
|
|
|
// Verify dcrd is on the correct network.
|
|
var netID wire.CurrencyNet
|
|
err = c.Call(ctx, "getcurrentnet", &netID)
|
|
if err != nil {
|
|
d.client.Close()
|
|
return nil, d.client.addr, fmt.Errorf("dcrd getcurrentnet check failed: %w", err)
|
|
}
|
|
if netID != d.params.Net {
|
|
d.client.Close()
|
|
return nil, d.client.addr, fmt.Errorf("dcrd running on %s, expected %s", netID, d.params.Net)
|
|
}
|
|
|
|
// Verify dcrd has tx index enabled (required for getrawtransaction).
|
|
var info dcrdtypes.InfoChainResult
|
|
err = c.Call(ctx, "getinfo", &info)
|
|
if err != nil {
|
|
d.client.Close()
|
|
return nil, d.client.addr, fmt.Errorf("dcrd getinfo check failed: %w", err)
|
|
}
|
|
if !info.TxIndex {
|
|
d.client.Close()
|
|
return nil, d.client.addr, errors.New("dcrd does not have transaction index enabled (--txindex)")
|
|
}
|
|
|
|
// Request blockconnected notifications.
|
|
if d.client.notifier != nil {
|
|
err = c.Call(ctx, "notifyblocks", nil)
|
|
if err != nil {
|
|
return nil, d.client.addr, fmt.Errorf("notifyblocks failed: %w", err)
|
|
}
|
|
}
|
|
|
|
log.Debugf("Connected to dcrd")
|
|
|
|
return &DcrdRPC{c, ctx}, d.client.addr, nil
|
|
}
|
|
|
|
// GetRawTransaction uses getrawtransaction RPC to retrieve details about the
|
|
// transaction with the provided hash.
|
|
func (c *DcrdRPC) GetRawTransaction(txHash string) (*dcrdtypes.TxRawResult, error) {
|
|
verbose := 1
|
|
var resp dcrdtypes.TxRawResult
|
|
err := c.Call(c.ctx, "getrawtransaction", &resp, txHash, verbose)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return &resp, nil
|
|
}
|
|
|
|
// SendRawTransaction uses sendrawtransaction RPC to broadcast a transaction to
|
|
// the network. It ignores errors caused by duplicate transactions.
|
|
func (c *DcrdRPC) SendRawTransaction(txHex string) error {
|
|
allowHighFees := false
|
|
err := c.Call(c.ctx, "sendrawtransaction", nil, txHex, allowHighFees)
|
|
if err != nil {
|
|
// sendrawtransaction returns error code -40 (ErrRPCDuplicateTx) if the
|
|
// provided transaction already exists in the mempool or in a mined
|
|
// block.
|
|
// It's not a problem if the transaction has already been broadcast, so
|
|
// we will capture this error and return nil.
|
|
var e *wsrpc.Error
|
|
if errors.As(err, &e) && e.Code == ErrRPCDuplicateTx {
|
|
return nil
|
|
}
|
|
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// IsDCP0010Active uses getblockchaininfo RPC to determine if the DCP-0010
|
|
// agenda has activated on the current network.
|
|
func (c *DcrdRPC) IsDCP0010Active() (bool, error) {
|
|
var info dcrdtypes.GetBlockChainInfoResult
|
|
err := c.Call(c.ctx, "getblockchaininfo", &info)
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
|
|
agenda, ok := info.Deployments[chaincfg.VoteIDChangeSubsidySplit]
|
|
if !ok {
|
|
return false, fmt.Errorf("getblockchaininfo did not return agenda %q",
|
|
chaincfg.VoteIDChangeSubsidySplit)
|
|
}
|
|
|
|
return agenda.Status == activeStatus, nil
|
|
}
|
|
|
|
// NotifyBlocks uses notifyblocks RPC to request new block notifications from dcrd.
|
|
func (c *DcrdRPC) NotifyBlocks() error {
|
|
return c.Call(c.ctx, "notifyblocks", nil)
|
|
}
|
|
|
|
// GetBestBlockHeader uses getbestblockhash RPC, followed by getblockheader RPC,
|
|
// to retrieve the header of the best block known to the dcrd instance.
|
|
func (c *DcrdRPC) GetBestBlockHeader() (*dcrdtypes.GetBlockHeaderVerboseResult, error) {
|
|
var bestBlockHash string
|
|
err := c.Call(c.ctx, "getbestblockhash", &bestBlockHash)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
verbose := true
|
|
var blockHeader dcrdtypes.GetBlockHeaderVerboseResult
|
|
err = c.Call(c.ctx, "getblockheader", &blockHeader, bestBlockHash, verbose)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return &blockHeader, nil
|
|
}
|
|
|
|
// ExistsLiveTicket uses existslivetickets RPC to check if the provided ticket
|
|
// hash is a live ticket known to the dcrd instance.
|
|
func (c *DcrdRPC) ExistsLiveTicket(ticketHash string) (bool, error) {
|
|
var exists string
|
|
err := c.Call(c.ctx, "existslivetickets", &exists, []string{ticketHash})
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
|
|
existsBytes := make([]byte, hex.DecodedLen(len(exists)))
|
|
_, err = hex.Decode(existsBytes, []byte(exists))
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
|
|
return bitset.Bytes(existsBytes).Get(0), nil
|
|
}
|