2016-11-25 15:55:06 +00:00
|
|
|
// Copyright 2016 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 ethstats implements the network stats reporting service.
|
|
|
|
package ethstats
|
|
|
|
|
|
|
|
import (
|
2017-05-16 19:07:27 +00:00
|
|
|
"context"
|
2016-11-25 15:55:06 +00:00
|
|
|
"encoding/json"
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
"math/big"
|
2019-07-22 10:22:39 +00:00
|
|
|
"net/http"
|
2016-11-25 15:55:06 +00:00
|
|
|
"regexp"
|
|
|
|
"runtime"
|
|
|
|
"strconv"
|
2017-03-30 09:52:34 +00:00
|
|
|
"strings"
|
2020-08-04 10:21:51 +00:00
|
|
|
"sync"
|
2016-11-25 15:55:06 +00:00
|
|
|
"time"
|
|
|
|
|
2019-07-22 10:22:39 +00:00
|
|
|
"github.com/gorilla/websocket"
|
2023-01-13 18:12:18 +00:00
|
|
|
libcommon "github.com/ledgerwatch/erigon-lib/common"
|
2022-04-22 06:23:52 +00:00
|
|
|
"github.com/ledgerwatch/erigon-lib/kv"
|
2023-05-23 09:30:47 +00:00
|
|
|
"github.com/ledgerwatch/erigon/turbo/services"
|
2023-01-13 18:12:18 +00:00
|
|
|
"github.com/ledgerwatch/log/v3"
|
|
|
|
|
2021-05-26 10:35:39 +00:00
|
|
|
"github.com/ledgerwatch/erigon/consensus"
|
2022-04-22 06:23:52 +00:00
|
|
|
"github.com/ledgerwatch/erigon/core/rawdb"
|
2021-05-26 10:35:39 +00:00
|
|
|
"github.com/ledgerwatch/erigon/core/types"
|
2022-04-22 06:23:52 +00:00
|
|
|
"github.com/ledgerwatch/erigon/eth/stagedsync/stages"
|
2021-05-26 10:35:39 +00:00
|
|
|
"github.com/ledgerwatch/erigon/node"
|
2023-11-02 01:35:13 +00:00
|
|
|
"github.com/ledgerwatch/erigon/p2p/sentry"
|
2016-11-25 15:55:06 +00:00
|
|
|
)
|
|
|
|
|
2017-08-18 10:58:36 +00:00
|
|
|
const (
|
|
|
|
// historyUpdateRange is the number of blocks a node should report upon login or
|
|
|
|
// history request.
|
|
|
|
historyUpdateRange = 50
|
|
|
|
)
|
|
|
|
|
2016-11-25 15:55:06 +00:00
|
|
|
// Service implements an Ethereum netstats reporting daemon that pushes local
|
|
|
|
// chain statistics up to a monitoring server.
|
|
|
|
type Service struct {
|
2022-05-10 05:17:44 +00:00
|
|
|
servers []*sentry.GrpcServer // Peer-to-peer server to retrieve networking infos
|
2022-04-22 06:23:52 +00:00
|
|
|
chaindb kv.RoDB
|
|
|
|
networkid uint64
|
|
|
|
engine consensus.Engine // Consensus engine to retrieve variadic block fields
|
2016-11-25 15:55:06 +00:00
|
|
|
|
|
|
|
node string // Name of the node to display on the monitoring page
|
|
|
|
pass string // Password to authorize access to the monitoring page
|
|
|
|
host string // Remote address of the monitoring service
|
2016-12-11 21:53:22 +00:00
|
|
|
|
2022-04-22 06:23:52 +00:00
|
|
|
quitCh <-chan struct{}
|
2022-09-18 10:41:01 +00:00
|
|
|
headCh <-chan [][]byte
|
2022-04-22 06:23:52 +00:00
|
|
|
|
2016-12-11 21:53:22 +00:00
|
|
|
pongCh chan struct{} // Pong notifications are fed into this channel
|
|
|
|
histCh chan []uint64 // History request block numbers are fed into this channel
|
2020-08-04 10:21:51 +00:00
|
|
|
|
2023-05-23 09:30:47 +00:00
|
|
|
blockReader services.FullBlockReader
|
2020-08-04 10:21:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// connWrapper is a wrapper to prevent concurrent-write or concurrent-read on the
|
|
|
|
// websocket.
|
|
|
|
//
|
2020-08-10 11:33:22 +00:00
|
|
|
// From Gorilla websocket docs:
|
2022-08-10 12:04:13 +00:00
|
|
|
//
|
|
|
|
// Connections support one concurrent reader and one concurrent writer.
|
|
|
|
// Applications are responsible for ensuring that no more than one goroutine calls the write methods
|
|
|
|
// - NextWriter, SetWriteDeadline, WriteMessage, WriteJSON, EnableWriteCompression, SetCompressionLevel
|
|
|
|
// concurrently and that no more than one goroutine calls the read methods
|
|
|
|
// - NextReader, SetReadDeadline, ReadMessage, ReadJSON, SetPongHandler, SetPingHandler
|
|
|
|
// concurrently.
|
|
|
|
// The Close and WriteControl methods can be called concurrently with all other methods.
|
2020-08-04 10:21:51 +00:00
|
|
|
type connWrapper struct {
|
|
|
|
conn *websocket.Conn
|
2020-08-10 11:33:22 +00:00
|
|
|
|
|
|
|
rlock sync.Mutex
|
|
|
|
wlock sync.Mutex
|
2020-08-04 10:21:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func newConnectionWrapper(conn *websocket.Conn) *connWrapper {
|
|
|
|
return &connWrapper{conn: conn}
|
|
|
|
}
|
|
|
|
|
|
|
|
// WriteJSON wraps corresponding method on the websocket but is safe for concurrent calling
|
|
|
|
func (w *connWrapper) WriteJSON(v interface{}) error {
|
2022-04-22 06:23:52 +00:00
|
|
|
if w.conn == nil {
|
|
|
|
return nil
|
|
|
|
}
|
2020-08-10 11:33:22 +00:00
|
|
|
w.wlock.Lock()
|
|
|
|
defer w.wlock.Unlock()
|
|
|
|
|
2020-08-04 10:21:51 +00:00
|
|
|
return w.conn.WriteJSON(v)
|
|
|
|
}
|
|
|
|
|
|
|
|
// ReadJSON wraps corresponding method on the websocket but is safe for concurrent calling
|
|
|
|
func (w *connWrapper) ReadJSON(v interface{}) error {
|
2020-08-10 11:33:22 +00:00
|
|
|
w.rlock.Lock()
|
|
|
|
defer w.rlock.Unlock()
|
|
|
|
|
2020-08-04 10:21:51 +00:00
|
|
|
return w.conn.ReadJSON(v)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Close wraps corresponding method on the websocket but is safe for concurrent calling
|
|
|
|
func (w *connWrapper) Close() error {
|
|
|
|
// The Close and WriteControl methods can be called concurrently with all other methods,
|
|
|
|
// so the mutex is not used here
|
|
|
|
return w.conn.Close()
|
2016-11-25 15:55:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// New returns a monitoring service ready for stats reporting.
|
2023-05-23 09:30:47 +00:00
|
|
|
func New(node *node.Node, servers []*sentry.GrpcServer, chainDB kv.RoDB, blockReader services.FullBlockReader, engine consensus.Engine, url string, networkid uint64, quitCh <-chan struct{}, headCh chan [][]byte) error {
|
2016-11-25 15:55:06 +00:00
|
|
|
// Parse the netstats connection url
|
|
|
|
re := regexp.MustCompile("([^:@]*)(:([^@]*))?@(.+)")
|
|
|
|
parts := re.FindStringSubmatch(url)
|
|
|
|
if len(parts) != 5 {
|
2020-08-03 17:40:46 +00:00
|
|
|
return fmt.Errorf("invalid netstats url: \"%s\", should be nodename:secret@host:port", url)
|
|
|
|
}
|
|
|
|
ethstats := &Service{
|
2023-05-23 09:30:47 +00:00
|
|
|
blockReader: blockReader,
|
|
|
|
engine: engine,
|
|
|
|
servers: servers,
|
|
|
|
node: parts[1],
|
|
|
|
pass: parts[3],
|
|
|
|
host: parts[4],
|
|
|
|
pongCh: make(chan struct{}),
|
|
|
|
histCh: make(chan []uint64, 1),
|
|
|
|
networkid: networkid,
|
|
|
|
chaindb: chainDB,
|
|
|
|
headCh: headCh,
|
|
|
|
quitCh: quitCh,
|
2020-08-03 17:40:46 +00:00
|
|
|
}
|
2016-11-25 15:55:06 +00:00
|
|
|
|
2020-08-03 17:40:46 +00:00
|
|
|
node.RegisterLifecycle(ethstats)
|
|
|
|
return nil
|
|
|
|
}
|
2016-11-25 15:55:06 +00:00
|
|
|
|
2020-08-03 17:40:46 +00:00
|
|
|
// Start implements node.Lifecycle, starting up the monitoring and reporting daemon.
|
|
|
|
func (s *Service) Start() error {
|
2016-11-25 15:55:06 +00:00
|
|
|
go s.loop()
|
|
|
|
|
2017-03-03 09:41:52 +00:00
|
|
|
log.Info("Stats daemon started")
|
2016-11-25 15:55:06 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-08-03 17:40:46 +00:00
|
|
|
// Stop implements node.Lifecycle, terminating the monitoring and reporting daemon.
|
2016-11-25 15:55:06 +00:00
|
|
|
func (s *Service) Stop() error {
|
2017-03-03 09:41:52 +00:00
|
|
|
log.Info("Stats daemon stopped")
|
2016-11-25 15:55:06 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// loop keeps trying to connect to the netstats server, reporting chain events
|
|
|
|
// until termination.
|
|
|
|
func (s *Service) loop() {
|
2020-05-13 09:06:19 +00:00
|
|
|
// Resolve the URL, defaulting to TLS, but falling back to none too
|
|
|
|
path := fmt.Sprintf("%s/api", s.host)
|
|
|
|
urls := []string{path}
|
|
|
|
|
|
|
|
// url.Parse and url.IsAbs is unsuitable (https://github.com/golang/go/issues/19779)
|
|
|
|
if !strings.Contains(path, "://") {
|
|
|
|
urls = []string{"wss://" + path, "ws://" + path}
|
|
|
|
}
|
2020-06-08 11:27:08 +00:00
|
|
|
|
|
|
|
errTimer := time.NewTimer(0)
|
|
|
|
defer errTimer.Stop()
|
2016-11-25 15:55:06 +00:00
|
|
|
// Loop reporting until termination
|
|
|
|
for {
|
2020-06-08 11:27:08 +00:00
|
|
|
select {
|
2022-04-22 06:23:52 +00:00
|
|
|
case <-s.quitCh:
|
2020-06-08 11:27:08 +00:00
|
|
|
return
|
|
|
|
case <-errTimer.C:
|
|
|
|
// Establish a websocket connection to the server on any supported URL
|
|
|
|
var (
|
2020-08-04 10:21:51 +00:00
|
|
|
conn *connWrapper
|
2020-06-08 11:27:08 +00:00
|
|
|
err error
|
|
|
|
)
|
|
|
|
dialer := websocket.Dialer{HandshakeTimeout: 5 * time.Second}
|
|
|
|
header := make(http.Header)
|
|
|
|
header.Set("origin", "http://localhost")
|
|
|
|
for _, url := range urls {
|
2022-04-22 06:23:52 +00:00
|
|
|
//nolint
|
|
|
|
c, _, err := dialer.Dial(url, header)
|
2020-08-07 09:15:41 +00:00
|
|
|
if err == nil {
|
2020-08-04 10:21:51 +00:00
|
|
|
conn = newConnectionWrapper(c)
|
2020-06-08 11:27:08 +00:00
|
|
|
break
|
|
|
|
}
|
2017-03-20 10:02:39 +00:00
|
|
|
}
|
2022-04-22 06:23:52 +00:00
|
|
|
if err != nil || conn == nil {
|
|
|
|
log.Warn("Stats server unreachable")
|
2020-06-08 11:27:08 +00:00
|
|
|
errTimer.Reset(10 * time.Second)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
// Authenticate the client with the server
|
|
|
|
if err = s.login(conn); err != nil {
|
|
|
|
log.Warn("Stats login failed", "err", err)
|
|
|
|
conn.Close()
|
|
|
|
errTimer.Reset(10 * time.Second)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
go s.readLoop(conn)
|
2020-08-10 11:33:22 +00:00
|
|
|
|
2020-06-08 11:27:08 +00:00
|
|
|
// Keep sending status updates until the connection breaks
|
|
|
|
fullReport := time.NewTicker(15 * time.Second)
|
2017-05-31 21:14:59 +00:00
|
|
|
|
2020-06-08 11:27:08 +00:00
|
|
|
for err == nil {
|
|
|
|
select {
|
2022-04-22 06:23:52 +00:00
|
|
|
case <-s.quitCh:
|
2020-06-08 11:27:08 +00:00
|
|
|
fullReport.Stop()
|
|
|
|
// Make sure the connection is closed
|
|
|
|
conn.Close()
|
|
|
|
return
|
|
|
|
|
|
|
|
case <-fullReport.C:
|
|
|
|
if err = s.report(conn); err != nil {
|
|
|
|
log.Warn("Full stats report failed", "err", err)
|
|
|
|
}
|
|
|
|
case list := <-s.histCh:
|
|
|
|
if err = s.reportHistory(conn, list); err != nil {
|
|
|
|
log.Warn("Requested history report failed", "err", err)
|
|
|
|
}
|
2022-09-18 10:41:01 +00:00
|
|
|
case <-s.headCh:
|
|
|
|
if err = s.reportBlock(conn); err != nil {
|
2020-06-08 11:27:08 +00:00
|
|
|
log.Warn("Block stats report failed", "err", err)
|
|
|
|
}
|
2022-04-22 06:23:52 +00:00
|
|
|
|
2016-11-25 15:55:06 +00:00
|
|
|
}
|
|
|
|
}
|
2020-06-08 11:27:08 +00:00
|
|
|
fullReport.Stop()
|
2020-07-20 08:11:38 +00:00
|
|
|
|
|
|
|
// Close the current connection and establish a new one
|
2020-06-08 11:27:08 +00:00
|
|
|
conn.Close()
|
2020-07-20 08:11:38 +00:00
|
|
|
errTimer.Reset(0)
|
2016-11-25 15:55:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-11 21:53:22 +00:00
|
|
|
// readLoop loops as long as the connection is alive and retrieves data packets
|
|
|
|
// from the network socket. If any of them match an active request, it forwards
|
|
|
|
// it, if they themselves are requests it initiates a reply, and lastly it drops
|
|
|
|
// unknown packets.
|
2020-08-04 10:21:51 +00:00
|
|
|
func (s *Service) readLoop(conn *connWrapper) {
|
2016-12-11 21:53:22 +00:00
|
|
|
// If the read loop exists, close the connection
|
2022-08-04 13:23:00 +00:00
|
|
|
defer func(conn *connWrapper) {
|
|
|
|
closeErr := conn.Close()
|
|
|
|
if closeErr != nil {
|
|
|
|
log.Warn("Failed to close connection", "err", closeErr)
|
|
|
|
}
|
|
|
|
}(conn)
|
2016-12-11 21:53:22 +00:00
|
|
|
|
|
|
|
for {
|
|
|
|
// Retrieve the next generic network packet and bail out on error
|
2020-07-20 08:11:38 +00:00
|
|
|
var blob json.RawMessage
|
|
|
|
if err := conn.ReadJSON(&blob); err != nil {
|
|
|
|
log.Warn("Failed to retrieve stats server message", "err", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
// If the network packet is a system ping, respond to it directly
|
|
|
|
var ping string
|
|
|
|
if err := json.Unmarshal(blob, &ping); err == nil && strings.HasPrefix(ping, "primus::ping::") {
|
2022-04-22 06:23:52 +00:00
|
|
|
if err := conn.WriteJSON(strings.ReplaceAll(ping, "ping", "pong")); err != nil {
|
2020-07-20 08:11:38 +00:00
|
|
|
log.Warn("Failed to respond to system ping message", "err", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
// Not a system ping, try to decode an actual state message
|
2016-12-11 21:53:22 +00:00
|
|
|
var msg map[string][]interface{}
|
2020-07-20 08:11:38 +00:00
|
|
|
if err := json.Unmarshal(blob, &msg); err != nil {
|
2017-03-03 09:41:52 +00:00
|
|
|
log.Warn("Failed to decode stats server message", "err", err)
|
2016-12-11 21:53:22 +00:00
|
|
|
return
|
|
|
|
}
|
2017-03-24 09:42:40 +00:00
|
|
|
log.Trace("Received message from stats server", "msg", msg)
|
2016-12-11 21:53:22 +00:00
|
|
|
if len(msg["emit"]) == 0 {
|
2017-03-03 09:41:52 +00:00
|
|
|
log.Warn("Stats server sent non-broadcast", "msg", msg)
|
2016-12-11 21:53:22 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
command, ok := msg["emit"][0].(string)
|
|
|
|
if !ok {
|
2017-03-03 09:41:52 +00:00
|
|
|
log.Warn("Invalid stats server message type", "type", msg["emit"][0])
|
2016-12-11 21:53:22 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
// If the message is a ping reply, deliver (someone must be listening!)
|
|
|
|
if len(msg["emit"]) == 2 && command == "node-pong" {
|
|
|
|
select {
|
|
|
|
case s.pongCh <- struct{}{}:
|
|
|
|
// Pong delivered, continue listening
|
|
|
|
continue
|
|
|
|
default:
|
|
|
|
// Ping routine dead, abort
|
2017-03-03 09:41:52 +00:00
|
|
|
log.Warn("Stats server pinger seems to have died")
|
2016-12-11 21:53:22 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// If the message is a history request, forward to the event processor
|
|
|
|
if len(msg["emit"]) == 2 && command == "history" {
|
|
|
|
// Make sure the request is valid and doesn't crash us
|
|
|
|
request, ok := msg["emit"][1].(map[string]interface{})
|
|
|
|
if !ok {
|
2017-03-20 10:02:39 +00:00
|
|
|
log.Warn("Invalid stats history request", "msg", msg["emit"][1])
|
2020-05-26 10:09:00 +00:00
|
|
|
select {
|
|
|
|
case s.histCh <- nil: // Treat it as an no indexes request
|
|
|
|
default:
|
|
|
|
}
|
|
|
|
continue
|
2016-12-11 21:53:22 +00:00
|
|
|
}
|
|
|
|
list, ok := request["list"].([]interface{})
|
|
|
|
if !ok {
|
2017-03-20 10:02:39 +00:00
|
|
|
log.Warn("Invalid stats history block list", "list", request["list"])
|
2016-12-11 21:53:22 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
// Convert the block number list to an integer list
|
|
|
|
numbers := make([]uint64, len(list))
|
|
|
|
for i, num := range list {
|
|
|
|
n, ok := num.(float64)
|
|
|
|
if !ok {
|
2017-03-20 10:02:39 +00:00
|
|
|
log.Warn("Invalid stats history block number", "number", num)
|
2016-12-11 21:53:22 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
numbers[i] = uint64(n)
|
|
|
|
}
|
|
|
|
select {
|
|
|
|
case s.histCh <- numbers:
|
|
|
|
continue
|
|
|
|
default:
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Report anything else and continue
|
2017-03-03 09:41:52 +00:00
|
|
|
log.Info("Unknown stats message", "msg", msg)
|
2016-12-11 21:53:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-26 10:09:00 +00:00
|
|
|
// nodeInfo is the collection of meta information about a node that is displayed
|
2016-11-25 15:55:06 +00:00
|
|
|
// on the monitoring page.
|
|
|
|
type nodeInfo struct {
|
|
|
|
Name string `json:"name"`
|
|
|
|
Node string `json:"node"`
|
|
|
|
Port int `json:"port"`
|
|
|
|
Network string `json:"net"`
|
|
|
|
Protocol string `json:"protocol"`
|
|
|
|
API string `json:"api"`
|
|
|
|
Os string `json:"os"`
|
|
|
|
OsVer string `json:"os_v"`
|
|
|
|
Client string `json:"client"`
|
2016-12-11 21:53:22 +00:00
|
|
|
History bool `json:"canUpdateHistory"`
|
2016-11-25 15:55:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// authMsg is the authentication infos needed to login to a monitoring server.
|
|
|
|
type authMsg struct {
|
2018-05-30 08:36:02 +00:00
|
|
|
ID string `json:"id"`
|
2016-11-25 15:55:06 +00:00
|
|
|
Info nodeInfo `json:"info"`
|
|
|
|
Secret string `json:"secret"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// login tries to authorize the client at the remote server.
|
2020-08-04 10:21:51 +00:00
|
|
|
func (s *Service) login(conn *connWrapper) error {
|
2016-11-25 15:55:06 +00:00
|
|
|
// Construct and send the login authentication
|
2022-04-22 06:23:52 +00:00
|
|
|
// infos := s.server.NodeInfo()
|
2016-11-25 15:55:06 +00:00
|
|
|
|
2022-08-26 03:04:36 +00:00
|
|
|
protocols := make([]string, 0, len(s.servers))
|
2022-04-22 06:23:52 +00:00
|
|
|
for _, srv := range s.servers {
|
2023-02-01 22:21:31 +00:00
|
|
|
for _, p := range srv.Protocols {
|
|
|
|
protocols = append(protocols, fmt.Sprintf("%s/%d", p.Name, p.Version))
|
|
|
|
}
|
2022-04-22 06:23:52 +00:00
|
|
|
}
|
|
|
|
nodeName := "Erigon"
|
|
|
|
if len(s.servers) > 0 {
|
|
|
|
nodeInfo, err := s.servers[0].NodeInfo(context.TODO(), nil)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
nodeName = nodeInfo.Name
|
2016-11-25 15:55:06 +00:00
|
|
|
}
|
2022-04-22 06:23:52 +00:00
|
|
|
|
2016-11-25 15:55:06 +00:00
|
|
|
auth := &authMsg{
|
2018-05-30 08:36:02 +00:00
|
|
|
ID: s.node,
|
2016-11-25 15:55:06 +00:00
|
|
|
Info: nodeInfo{
|
|
|
|
Name: s.node,
|
2022-04-22 06:23:52 +00:00
|
|
|
Node: nodeName,
|
|
|
|
Port: 0,
|
|
|
|
Network: fmt.Sprintf("%d", s.networkid),
|
2020-12-14 09:27:15 +00:00
|
|
|
Protocol: strings.Join(protocols, ", "),
|
2016-11-25 15:55:06 +00:00
|
|
|
API: "No",
|
|
|
|
Os: runtime.GOOS,
|
|
|
|
OsVer: runtime.GOARCH,
|
|
|
|
Client: "0.1.1",
|
2016-12-11 21:53:22 +00:00
|
|
|
History: true,
|
2016-11-25 15:55:06 +00:00
|
|
|
},
|
|
|
|
Secret: s.pass,
|
|
|
|
}
|
|
|
|
login := map[string][]interface{}{
|
2017-01-06 14:52:03 +00:00
|
|
|
"emit": {"hello", auth},
|
2016-11-25 15:55:06 +00:00
|
|
|
}
|
2019-07-22 10:22:39 +00:00
|
|
|
if err := conn.WriteJSON(login); err != nil {
|
2016-11-25 15:55:06 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
// Retrieve the remote ack or connection termination
|
|
|
|
var ack map[string][]string
|
2019-07-22 10:22:39 +00:00
|
|
|
if err := conn.ReadJSON(&ack); err != nil || len(ack["emit"]) != 1 || ack["emit"][0] != "ready" {
|
2016-11-25 15:55:06 +00:00
|
|
|
return errors.New("unauthorized")
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// report collects all possible data to report and send it to the stats server.
|
|
|
|
// This should only be used on reconnects or rarely to avoid overloading the
|
|
|
|
// server. Use the individual methods for reporting subscribed events.
|
2020-08-04 10:21:51 +00:00
|
|
|
func (s *Service) report(conn *connWrapper) error {
|
2017-03-24 09:42:40 +00:00
|
|
|
if err := s.reportLatency(conn); err != nil {
|
2016-11-25 15:55:06 +00:00
|
|
|
return err
|
|
|
|
}
|
2022-09-18 10:41:01 +00:00
|
|
|
if err := s.reportBlock(conn); err != nil {
|
2016-11-25 15:55:06 +00:00
|
|
|
return err
|
|
|
|
}
|
2017-03-24 09:42:40 +00:00
|
|
|
if err := s.reportPending(conn); err != nil {
|
2016-11-25 15:55:06 +00:00
|
|
|
return err
|
|
|
|
}
|
2017-03-24 09:42:40 +00:00
|
|
|
if err := s.reportStats(conn); err != nil {
|
2016-11-25 15:55:06 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// reportLatency sends a ping request to the server, measures the RTT time and
|
|
|
|
// finally sends a latency update.
|
2020-08-04 10:21:51 +00:00
|
|
|
func (s *Service) reportLatency(conn *connWrapper) error {
|
2016-11-25 15:55:06 +00:00
|
|
|
// Send the current time to the ethstats server
|
|
|
|
start := time.Now()
|
|
|
|
|
|
|
|
ping := map[string][]interface{}{
|
2017-01-06 14:52:03 +00:00
|
|
|
"emit": {"node-ping", map[string]string{
|
2016-11-25 15:55:06 +00:00
|
|
|
"id": s.node,
|
|
|
|
"clientTime": start.String(),
|
|
|
|
}},
|
|
|
|
}
|
2019-07-22 10:22:39 +00:00
|
|
|
if err := conn.WriteJSON(ping); err != nil {
|
2016-11-25 15:55:06 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
// Wait for the pong request to arrive back
|
2016-12-11 21:53:22 +00:00
|
|
|
select {
|
|
|
|
case <-s.pongCh:
|
|
|
|
// Pong delivered, report the latency
|
2017-05-31 21:14:59 +00:00
|
|
|
case <-time.After(5 * time.Second):
|
2016-12-11 21:53:22 +00:00
|
|
|
// Ping timeout, abort
|
|
|
|
return errors.New("ping timed out")
|
2016-11-25 15:55:06 +00:00
|
|
|
}
|
2017-03-24 09:42:40 +00:00
|
|
|
latency := strconv.Itoa(int((time.Since(start) / time.Duration(2)).Nanoseconds() / 1000000))
|
|
|
|
|
2016-11-25 15:55:06 +00:00
|
|
|
// Send back the measured latency
|
2017-03-24 09:42:40 +00:00
|
|
|
log.Trace("Sending measured latency to ethstats", "latency", latency)
|
|
|
|
|
|
|
|
stats := map[string][]interface{}{
|
2017-01-06 14:52:03 +00:00
|
|
|
"emit": {"latency", map[string]string{
|
2016-11-25 15:55:06 +00:00
|
|
|
"id": s.node,
|
2017-03-24 09:42:40 +00:00
|
|
|
"latency": latency,
|
2016-11-25 15:55:06 +00:00
|
|
|
}},
|
|
|
|
}
|
2019-07-22 10:22:39 +00:00
|
|
|
return conn.WriteJSON(stats)
|
2016-11-25 15:55:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// blockStats is the information to report about individual blocks.
|
|
|
|
type blockStats struct {
|
2023-01-13 18:12:18 +00:00
|
|
|
Number *big.Int `json:"number"`
|
|
|
|
Hash libcommon.Hash `json:"hash"`
|
|
|
|
ParentHash libcommon.Hash `json:"parentHash"`
|
|
|
|
Timestamp *big.Int `json:"timestamp"`
|
|
|
|
Miner libcommon.Address `json:"miner"`
|
|
|
|
GasUsed uint64 `json:"gasUsed"`
|
|
|
|
GasLimit uint64 `json:"gasLimit"`
|
|
|
|
Diff string `json:"difficulty"`
|
|
|
|
TotalDiff string `json:"totalDifficulty"`
|
|
|
|
Txs []txStats `json:"transactions"`
|
|
|
|
TxHash libcommon.Hash `json:"transactionsRoot"`
|
|
|
|
Root libcommon.Hash `json:"stateRoot"`
|
|
|
|
Uncles uncleStats `json:"uncles"`
|
2016-11-25 15:55:06 +00:00
|
|
|
}
|
|
|
|
|
2017-05-29 23:15:40 +00:00
|
|
|
// txStats is the information to report about individual transactions.
|
|
|
|
type txStats struct {
|
2023-01-13 18:12:18 +00:00
|
|
|
Hash libcommon.Hash `json:"hash"`
|
2016-11-25 15:55:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// uncleStats is a custom wrapper around an uncle array to force serializing
|
|
|
|
// empty arrays instead of returning null for them.
|
|
|
|
type uncleStats []*types.Header
|
|
|
|
|
|
|
|
func (s uncleStats) MarshalJSON() ([]byte, error) {
|
|
|
|
if uncles := ([]*types.Header)(s); len(uncles) > 0 {
|
|
|
|
return json.Marshal(uncles)
|
|
|
|
}
|
|
|
|
return []byte("[]"), nil
|
|
|
|
}
|
|
|
|
|
2018-06-29 12:15:38 +00:00
|
|
|
// reportBlock retrieves the current chain head and reports it to the stats server.
|
2022-09-18 10:41:01 +00:00
|
|
|
func (s *Service) reportBlock(conn *connWrapper) error {
|
2022-04-22 06:23:52 +00:00
|
|
|
roTx, err := s.chaindb.BeginRo(context.Background())
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer roTx.Rollback()
|
2022-09-18 10:41:01 +00:00
|
|
|
|
2023-05-23 09:30:47 +00:00
|
|
|
block, err := s.blockReader.CurrentBlock(roTx)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2022-04-22 06:23:52 +00:00
|
|
|
if block == nil {
|
2022-09-18 10:41:01 +00:00
|
|
|
return nil
|
2022-04-22 06:23:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
td, err := rawdb.ReadTd(roTx, block.Hash(), block.NumberU64())
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2017-03-24 09:42:40 +00:00
|
|
|
// Gather the block details from the header or block chain
|
2022-04-22 06:23:52 +00:00
|
|
|
details := s.assembleBlockStats(block, td)
|
2017-03-24 09:42:40 +00:00
|
|
|
|
|
|
|
// Assemble the block report and send it to the server
|
|
|
|
log.Trace("Sending new block to ethstats", "number", details.Number, "hash", details.Hash)
|
|
|
|
|
2016-12-11 21:53:22 +00:00
|
|
|
stats := map[string]interface{}{
|
|
|
|
"id": s.node,
|
2017-03-24 09:42:40 +00:00
|
|
|
"block": details,
|
2016-12-11 21:53:22 +00:00
|
|
|
}
|
|
|
|
report := map[string][]interface{}{
|
2017-01-06 14:52:03 +00:00
|
|
|
"emit": {"block", stats},
|
2016-12-11 21:53:22 +00:00
|
|
|
}
|
2019-07-22 10:22:39 +00:00
|
|
|
return conn.WriteJSON(report)
|
2016-12-11 21:53:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// assembleBlockStats retrieves any required metadata to report a single block
|
|
|
|
// and assembles the block stats. If block is nil, the current head is processed.
|
2022-04-22 06:23:52 +00:00
|
|
|
func (s *Service) assembleBlockStats(block *types.Block, td *big.Int) *blockStats {
|
|
|
|
if td == nil {
|
2023-01-27 04:39:34 +00:00
|
|
|
td = libcommon.Big0
|
2022-04-22 06:23:52 +00:00
|
|
|
}
|
2016-12-11 21:53:22 +00:00
|
|
|
// Gather the block infos from the local blockchain
|
2022-08-26 03:04:36 +00:00
|
|
|
txs := make([]txStats, 0, len(block.Transactions()))
|
2022-04-22 06:23:52 +00:00
|
|
|
for _, tx := range block.Transactions() {
|
|
|
|
txs = append(txs, txStats{tx.Hash()})
|
2016-12-11 21:53:22 +00:00
|
|
|
}
|
2020-08-03 17:40:46 +00:00
|
|
|
|
2016-12-11 21:53:22 +00:00
|
|
|
return &blockStats{
|
2022-04-22 06:23:52 +00:00
|
|
|
Number: block.Header().Number,
|
|
|
|
Hash: block.Hash(),
|
|
|
|
ParentHash: block.Header().ParentHash,
|
|
|
|
Timestamp: new(big.Int).SetUint64(block.Header().Time),
|
|
|
|
Miner: block.Header().Coinbase,
|
|
|
|
GasUsed: block.Header().GasUsed,
|
|
|
|
GasLimit: block.Header().GasLimit,
|
|
|
|
Diff: block.Header().Difficulty.String(),
|
2017-03-24 09:42:40 +00:00
|
|
|
TotalDiff: td.String(),
|
|
|
|
Txs: txs,
|
2022-04-22 06:23:52 +00:00
|
|
|
TxHash: block.Header().TxHash,
|
|
|
|
Root: block.Header().Root,
|
|
|
|
Uncles: block.Uncles(),
|
2016-12-11 21:53:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// reportHistory retrieves the most recent batch of blocks and reports it to the
|
|
|
|
// stats server.
|
2020-08-04 10:21:51 +00:00
|
|
|
func (s *Service) reportHistory(conn *connWrapper, list []uint64) error {
|
2022-04-22 06:23:52 +00:00
|
|
|
roTx, err := s.chaindb.BeginRo(context.Background())
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer roTx.Rollback()
|
|
|
|
|
2016-12-11 21:53:22 +00:00
|
|
|
// Figure out the indexes that need reporting
|
|
|
|
indexes := make([]uint64, 0, historyUpdateRange)
|
|
|
|
if len(list) > 0 {
|
|
|
|
// Specific indexes requested, send them back in particular
|
2017-01-06 15:44:20 +00:00
|
|
|
indexes = append(indexes, list...)
|
2016-12-11 21:53:22 +00:00
|
|
|
} else {
|
|
|
|
// No indexes requested, send back the top ones
|
2022-04-22 06:23:52 +00:00
|
|
|
headHash := rawdb.ReadHeadBlockHash(roTx)
|
|
|
|
headNumber := rawdb.ReadHeaderNumber(roTx, headHash)
|
|
|
|
if headNumber == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
start := int(*headNumber - historyUpdateRange + 1)
|
2016-12-11 21:53:22 +00:00
|
|
|
if start < 0 {
|
|
|
|
start = 0
|
|
|
|
}
|
2022-04-22 06:23:52 +00:00
|
|
|
for i := uint64(start); i <= *headNumber; i++ {
|
2016-12-11 21:53:22 +00:00
|
|
|
indexes = append(indexes, i)
|
|
|
|
}
|
2016-11-25 15:55:06 +00:00
|
|
|
}
|
2016-12-11 21:53:22 +00:00
|
|
|
// Gather the batch of blocks to report
|
|
|
|
history := make([]*blockStats, len(indexes))
|
|
|
|
for i, number := range indexes {
|
2017-04-04 08:41:17 +00:00
|
|
|
// Retrieve the next block if it's known to us
|
2023-05-23 09:30:47 +00:00
|
|
|
block, err := s.blockReader.BlockByNumber(context.Background(), roTx, number)
|
2022-04-22 06:23:52 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
td, err := rawdb.ReadTd(roTx, block.Hash(), number)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
2017-03-31 12:06:54 +00:00
|
|
|
}
|
2017-04-04 08:41:17 +00:00
|
|
|
// If we do have the block, add to the history and continue
|
2017-03-31 12:06:54 +00:00
|
|
|
if block != nil {
|
2022-04-22 06:23:52 +00:00
|
|
|
history[len(history)-1-i] = s.assembleBlockStats(block, td)
|
2017-04-04 08:41:17 +00:00
|
|
|
continue
|
2016-12-11 21:53:22 +00:00
|
|
|
}
|
2017-04-04 08:41:17 +00:00
|
|
|
// Ran out of blocks, cut the report short and send
|
|
|
|
history = history[len(history)-i:]
|
2018-01-12 16:01:41 +00:00
|
|
|
break
|
2016-12-11 21:53:22 +00:00
|
|
|
}
|
|
|
|
// Assemble the history report and send it to the server
|
2017-04-04 08:41:17 +00:00
|
|
|
if len(history) > 0 {
|
|
|
|
log.Trace("Sending historical blocks to ethstats", "first", history[0].Number, "last", history[len(history)-1].Number)
|
|
|
|
} else {
|
|
|
|
log.Trace("No history to send to stats server")
|
|
|
|
}
|
2016-11-25 15:55:06 +00:00
|
|
|
stats := map[string]interface{}{
|
2016-12-11 21:53:22 +00:00
|
|
|
"id": s.node,
|
|
|
|
"history": history,
|
2016-11-25 15:55:06 +00:00
|
|
|
}
|
|
|
|
report := map[string][]interface{}{
|
2017-01-06 14:52:03 +00:00
|
|
|
"emit": {"history", stats},
|
2016-11-25 15:55:06 +00:00
|
|
|
}
|
2019-07-22 10:22:39 +00:00
|
|
|
return conn.WriteJSON(report)
|
2016-11-25 15:55:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// reportPending retrieves the current number of pending transactions and reports
|
|
|
|
// it to the stats server.
|
2020-08-04 10:21:51 +00:00
|
|
|
func (s *Service) reportPending(conn *connWrapper) error {
|
2022-04-22 06:23:52 +00:00
|
|
|
/* // Retrieve the pending count from the local blockchain
|
|
|
|
pending, _ := s.backend.Stats()
|
|
|
|
// Assemble the transaction stats and send it to the server
|
|
|
|
log.Trace("Sending pending transactions to ethstats", "count", pending)
|
|
|
|
|
|
|
|
stats := map[string]interface{}{
|
|
|
|
"id": s.node,
|
|
|
|
"stats": &pendStats{
|
|
|
|
Pending: pending,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
report := map[string][]interface{}{
|
|
|
|
"emit": {"pending", stats},
|
|
|
|
}
|
|
|
|
return conn.WriteJSON(report)*/
|
|
|
|
return nil
|
2016-11-25 15:55:06 +00:00
|
|
|
}
|
|
|
|
|
2017-03-24 09:42:40 +00:00
|
|
|
// nodeStats is the information to report about the local node.
|
2016-11-25 15:55:06 +00:00
|
|
|
type nodeStats struct {
|
2022-04-22 06:23:52 +00:00
|
|
|
Active bool `json:"active"`
|
|
|
|
Syncing bool `json:"syncing"`
|
|
|
|
Mining bool `json:"mining"`
|
|
|
|
Hashrate int `json:"hashrate"`
|
|
|
|
GoodPeers int `json:"peers"`
|
|
|
|
GasPrice int `json:"gasPrice"`
|
|
|
|
Uptime int `json:"uptime"`
|
2016-11-25 15:55:06 +00:00
|
|
|
}
|
|
|
|
|
2020-08-03 17:40:46 +00:00
|
|
|
// reportStats retrieves various stats about the node at the networking and
|
2016-11-25 15:55:06 +00:00
|
|
|
// mining layer and reports it to the stats server.
|
2020-08-04 10:21:51 +00:00
|
|
|
func (s *Service) reportStats(conn *connWrapper) error {
|
2022-04-22 06:23:52 +00:00
|
|
|
roTx, err := s.chaindb.BeginRo(context.Background())
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer roTx.Rollback()
|
|
|
|
sync, err := stages.GetStageProgress(roTx, stages.Execution)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
finishSync, err := stages.GetStageProgress(roTx, stages.Finish)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
// TODO(Giulio2002): peer tracking
|
|
|
|
peerCount := 0
|
|
|
|
for _, srv := range s.servers {
|
2023-02-01 22:21:31 +00:00
|
|
|
counts := srv.SimplePeerCount()
|
|
|
|
for _, count := range counts {
|
|
|
|
peerCount += count
|
|
|
|
}
|
2016-11-25 15:55:06 +00:00
|
|
|
}
|
|
|
|
stats := map[string]interface{}{
|
|
|
|
"id": s.node,
|
|
|
|
"stats": &nodeStats{
|
2022-04-22 06:23:52 +00:00
|
|
|
Active: true,
|
|
|
|
Mining: false,
|
|
|
|
Hashrate: 0,
|
|
|
|
GoodPeers: peerCount,
|
|
|
|
GasPrice: 0,
|
|
|
|
Syncing: sync != finishSync,
|
|
|
|
Uptime: 100,
|
2016-11-25 15:55:06 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
report := map[string][]interface{}{
|
2017-01-06 14:52:03 +00:00
|
|
|
"emit": {"stats", stats},
|
2016-11-25 15:55:06 +00:00
|
|
|
}
|
2019-07-22 10:22:39 +00:00
|
|
|
return conn.WriteJSON(report)
|
2016-11-25 15:55:06 +00:00
|
|
|
}
|