2019-08-03 12:36:10 +00:00
|
|
|
// Copyright 2019 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 les
|
|
|
|
|
|
|
|
import (
|
2019-11-13 22:47:03 +00:00
|
|
|
"fmt"
|
2019-08-03 12:36:10 +00:00
|
|
|
"sync"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/ethereum/go-ethereum/common/mclock"
|
|
|
|
"github.com/ethereum/go-ethereum/ethdb"
|
2020-09-14 20:44:20 +00:00
|
|
|
lps "github.com/ethereum/go-ethereum/les/lespay/server"
|
|
|
|
"github.com/ethereum/go-ethereum/les/utils"
|
2019-08-03 12:36:10 +00:00
|
|
|
"github.com/ethereum/go-ethereum/log"
|
|
|
|
"github.com/ethereum/go-ethereum/p2p/enode"
|
2020-09-14 20:44:20 +00:00
|
|
|
"github.com/ethereum/go-ethereum/p2p/enr"
|
|
|
|
"github.com/ethereum/go-ethereum/p2p/nodestate"
|
2019-08-03 12:36:10 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2020-09-14 20:44:20 +00:00
|
|
|
defaultNegExpTC = 3600 // default time constant (in seconds) for exponentially reducing negative balance
|
|
|
|
|
|
|
|
// defaultConnectedBias is applied to already connected clients So that
|
|
|
|
// already connected client won't be kicked out very soon and we
|
|
|
|
// can ensure all connected clients can have enough time to request
|
|
|
|
// or sync some data.
|
|
|
|
//
|
|
|
|
// todo(rjl493456442) make it configurable. It can be the option of
|
|
|
|
// free trial time!
|
|
|
|
defaultConnectedBias = time.Minute * 3
|
|
|
|
inactiveTimeout = time.Second * 10
|
|
|
|
)
|
|
|
|
|
2019-08-03 12:36:10 +00:00
|
|
|
// clientPool implements a client database that assigns a priority to each client
|
|
|
|
// based on a positive and negative balance. Positive balance is externally assigned
|
|
|
|
// to prioritized clients and is decreased with connection time and processed
|
|
|
|
// requests (unless the price factors are zero). If the positive balance is zero
|
2019-11-02 12:02:35 +00:00
|
|
|
// then negative balance is accumulated.
|
|
|
|
//
|
|
|
|
// Balance tracking and priority calculation for connected clients is done by
|
2020-09-14 20:44:20 +00:00
|
|
|
// balanceTracker. activeQueue ensures that clients with the lowest positive or
|
2019-11-02 12:02:35 +00:00
|
|
|
// highest negative balance get evicted when the total capacity allowance is full
|
|
|
|
// and new clients with a better balance want to connect.
|
|
|
|
//
|
|
|
|
// Already connected nodes receive a small bias in their favor in order to avoid
|
|
|
|
// accepting and instantly kicking out clients. In theory, we try to ensure that
|
|
|
|
// each client can have several minutes of connection time.
|
|
|
|
//
|
|
|
|
// Balances of disconnected clients are stored in nodeDB including positive balance
|
2020-09-14 20:44:20 +00:00
|
|
|
// and negative banalce. Boeth positive balance and negative balance will decrease
|
|
|
|
// exponentially. If the balance is low enough, then the record will be dropped.
|
2019-08-03 12:36:10 +00:00
|
|
|
type clientPool struct {
|
2020-09-14 20:44:20 +00:00
|
|
|
lps.BalanceTrackerSetup
|
|
|
|
lps.PriorityPoolSetup
|
2019-08-03 12:36:10 +00:00
|
|
|
lock sync.Mutex
|
|
|
|
clock mclock.Clock
|
|
|
|
closed bool
|
|
|
|
removePeer func(enode.ID)
|
2020-09-14 20:44:20 +00:00
|
|
|
ns *nodestate.NodeStateMachine
|
|
|
|
pp *lps.PriorityPool
|
|
|
|
bt *lps.BalanceTracker
|
2019-08-03 12:36:10 +00:00
|
|
|
|
2020-09-14 20:44:20 +00:00
|
|
|
defaultPosFactors, defaultNegFactors lps.PriceFactors
|
|
|
|
posExpTC, negExpTC uint64
|
|
|
|
minCap uint64 // The minimal capacity value allowed for any client
|
|
|
|
connectedBias time.Duration
|
|
|
|
capLimit uint64
|
2019-08-03 12:36:10 +00:00
|
|
|
}
|
|
|
|
|
2020-02-26 09:41:24 +00:00
|
|
|
// clientPoolPeer represents a client peer in the pool.
|
2019-08-03 12:36:10 +00:00
|
|
|
// Positive balances are assigned to node key while negative balances are assigned
|
|
|
|
// to freeClientId. Currently network IP address without port is used because
|
|
|
|
// clients have a limited access to IP addresses while new node keys can be easily
|
|
|
|
// generated so it would be useless to assign a negative value to them.
|
2020-02-26 09:41:24 +00:00
|
|
|
type clientPoolPeer interface {
|
2020-09-14 20:44:20 +00:00
|
|
|
Node() *enode.Node
|
2019-08-03 12:36:10 +00:00
|
|
|
freeClientId() string
|
|
|
|
updateCapacity(uint64)
|
2020-09-14 20:44:20 +00:00
|
|
|
freeze()
|
|
|
|
allowInactive() bool
|
2019-08-03 12:36:10 +00:00
|
|
|
}
|
|
|
|
|
2020-09-14 20:44:20 +00:00
|
|
|
// clientInfo defines all information required by clientpool.
|
2019-08-03 12:36:10 +00:00
|
|
|
type clientInfo struct {
|
2020-09-14 20:44:20 +00:00
|
|
|
node *enode.Node
|
|
|
|
address string
|
|
|
|
peer clientPoolPeer
|
|
|
|
connected, priority bool
|
|
|
|
connectedAt mclock.AbsTime
|
|
|
|
balance *lps.NodeBalance
|
2019-08-03 12:36:10 +00:00
|
|
|
}
|
|
|
|
|
2020-09-14 20:44:20 +00:00
|
|
|
// newClientPool creates a new client pool
|
2020-10-21 08:56:33 +00:00
|
|
|
func newClientPool(ns *nodestate.NodeStateMachine, lespayDb ethdb.Database, minCap uint64, connectedBias time.Duration, clock mclock.Clock, removePeer func(enode.ID)) *clientPool {
|
2020-09-14 20:44:20 +00:00
|
|
|
pool := &clientPool{
|
|
|
|
ns: ns,
|
|
|
|
BalanceTrackerSetup: balanceTrackerSetup,
|
|
|
|
PriorityPoolSetup: priorityPoolSetup,
|
|
|
|
clock: clock,
|
|
|
|
minCap: minCap,
|
|
|
|
connectedBias: connectedBias,
|
|
|
|
removePeer: removePeer,
|
|
|
|
}
|
|
|
|
pool.bt = lps.NewBalanceTracker(ns, balanceTrackerSetup, lespayDb, clock, &utils.Expirer{}, &utils.Expirer{})
|
|
|
|
pool.pp = lps.NewPriorityPool(ns, priorityPoolSetup, clock, minCap, connectedBias, 4)
|
|
|
|
|
|
|
|
// set default expiration constants used by tests
|
|
|
|
// Note: server overwrites this if token sale is active
|
|
|
|
pool.bt.SetExpirationTCs(0, defaultNegExpTC)
|
|
|
|
|
|
|
|
ns.SubscribeState(pool.InactiveFlag.Or(pool.PriorityFlag), func(node *enode.Node, oldState, newState nodestate.Flags) {
|
|
|
|
if newState.Equals(pool.InactiveFlag) {
|
|
|
|
ns.AddTimeout(node, pool.InactiveFlag, inactiveTimeout)
|
|
|
|
}
|
|
|
|
if oldState.Equals(pool.InactiveFlag) && newState.Equals(pool.InactiveFlag.Or(pool.PriorityFlag)) {
|
|
|
|
ns.SetStateSub(node, pool.InactiveFlag, nodestate.Flags{}, 0) // remove timeout
|
2019-08-03 12:36:10 +00:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2020-09-14 20:44:20 +00:00
|
|
|
ns.SubscribeState(pool.ActiveFlag.Or(pool.PriorityFlag), func(node *enode.Node, oldState, newState nodestate.Flags) {
|
2020-10-21 08:56:33 +00:00
|
|
|
c, _ := ns.GetField(node, clientInfoField).(*clientInfo)
|
2020-09-14 20:44:20 +00:00
|
|
|
if c == nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
c.priority = newState.HasAll(pool.PriorityFlag)
|
|
|
|
if newState.Equals(pool.ActiveFlag) {
|
|
|
|
cap, _ := ns.GetField(node, pool.CapacityField).(uint64)
|
|
|
|
if cap > minCap {
|
|
|
|
pool.pp.RequestCapacity(node, minCap, 0, true)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
2019-08-03 12:36:10 +00:00
|
|
|
|
2020-09-14 20:44:20 +00:00
|
|
|
ns.SubscribeState(pool.InactiveFlag.Or(pool.ActiveFlag), func(node *enode.Node, oldState, newState nodestate.Flags) {
|
|
|
|
if oldState.IsEmpty() {
|
|
|
|
clientConnectedMeter.Mark(1)
|
|
|
|
log.Debug("Client connected", "id", node.ID())
|
|
|
|
}
|
|
|
|
if oldState.Equals(pool.InactiveFlag) && newState.Equals(pool.ActiveFlag) {
|
|
|
|
clientActivatedMeter.Mark(1)
|
|
|
|
log.Debug("Client activated", "id", node.ID())
|
|
|
|
}
|
|
|
|
if oldState.Equals(pool.ActiveFlag) && newState.Equals(pool.InactiveFlag) {
|
|
|
|
clientDeactivatedMeter.Mark(1)
|
|
|
|
log.Debug("Client deactivated", "id", node.ID())
|
2020-10-21 08:56:33 +00:00
|
|
|
c, _ := ns.GetField(node, clientInfoField).(*clientInfo)
|
2020-09-14 20:44:20 +00:00
|
|
|
if c == nil || !c.peer.allowInactive() {
|
|
|
|
pool.removePeer(node.ID())
|
2019-08-03 12:36:10 +00:00
|
|
|
}
|
|
|
|
}
|
2020-09-14 20:44:20 +00:00
|
|
|
if newState.IsEmpty() {
|
|
|
|
clientDisconnectedMeter.Mark(1)
|
|
|
|
log.Debug("Client disconnected", "id", node.ID())
|
|
|
|
pool.removePeer(node.ID())
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
var totalConnected uint64
|
|
|
|
ns.SubscribeField(pool.CapacityField, func(node *enode.Node, state nodestate.Flags, oldValue, newValue interface{}) {
|
|
|
|
oldCap, _ := oldValue.(uint64)
|
|
|
|
newCap, _ := newValue.(uint64)
|
|
|
|
totalConnected += newCap - oldCap
|
|
|
|
totalConnectedGauge.Update(int64(totalConnected))
|
2020-10-21 08:56:33 +00:00
|
|
|
c, _ := ns.GetField(node, clientInfoField).(*clientInfo)
|
2020-09-14 20:44:20 +00:00
|
|
|
if c != nil {
|
|
|
|
c.peer.updateCapacity(newCap)
|
|
|
|
}
|
|
|
|
})
|
2019-08-03 12:36:10 +00:00
|
|
|
return pool
|
|
|
|
}
|
|
|
|
|
|
|
|
// stop shuts the client pool down
|
|
|
|
func (f *clientPool) stop() {
|
|
|
|
f.lock.Lock()
|
|
|
|
f.closed = true
|
|
|
|
f.lock.Unlock()
|
2020-09-14 20:44:20 +00:00
|
|
|
f.ns.ForEach(nodestate.Flags{}, nodestate.Flags{}, func(node *enode.Node, state nodestate.Flags) {
|
|
|
|
// enforces saving all balances in BalanceTracker
|
|
|
|
f.disconnectNode(node)
|
|
|
|
})
|
|
|
|
f.bt.Stop()
|
2019-08-03 12:36:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// connect should be called after a successful handshake. If the connection was
|
|
|
|
// rejected, there is no need to call disconnect.
|
2020-09-14 20:44:20 +00:00
|
|
|
func (f *clientPool) connect(peer clientPoolPeer) (uint64, error) {
|
2019-08-03 12:36:10 +00:00
|
|
|
f.lock.Lock()
|
|
|
|
defer f.lock.Unlock()
|
|
|
|
|
2019-11-02 12:02:35 +00:00
|
|
|
// Short circuit if clientPool is already closed.
|
2019-08-03 12:36:10 +00:00
|
|
|
if f.closed {
|
2020-09-14 20:44:20 +00:00
|
|
|
return 0, fmt.Errorf("Client pool is already closed")
|
2019-08-03 12:36:10 +00:00
|
|
|
}
|
2019-08-27 11:07:25 +00:00
|
|
|
// Dedup connected peers.
|
2020-09-14 20:44:20 +00:00
|
|
|
node, freeID := peer.Node(), peer.freeClientId()
|
2020-10-21 08:56:33 +00:00
|
|
|
if f.ns.GetField(node, clientInfoField) != nil {
|
2020-09-14 20:44:20 +00:00
|
|
|
log.Debug("Client already connected", "address", freeID, "id", node.ID().String())
|
|
|
|
return 0, fmt.Errorf("Client already connected address=%s id=%s", freeID, node.ID().String())
|
|
|
|
}
|
|
|
|
now := f.clock.Now()
|
|
|
|
c := &clientInfo{
|
|
|
|
node: node,
|
|
|
|
address: freeID,
|
|
|
|
peer: peer,
|
|
|
|
connected: true,
|
|
|
|
connectedAt: now,
|
|
|
|
}
|
2020-10-21 08:56:33 +00:00
|
|
|
f.ns.SetField(node, clientInfoField, c)
|
2020-09-14 20:44:20 +00:00
|
|
|
f.ns.SetField(node, connAddressField, freeID)
|
|
|
|
if c.balance, _ = f.ns.GetField(node, f.BalanceField).(*lps.NodeBalance); c.balance == nil {
|
|
|
|
f.disconnect(peer)
|
|
|
|
return 0, nil
|
|
|
|
}
|
|
|
|
c.balance.SetPriceFactors(f.defaultPosFactors, f.defaultNegFactors)
|
|
|
|
|
|
|
|
f.ns.SetState(node, f.InactiveFlag, nodestate.Flags{}, 0)
|
|
|
|
var allowed bool
|
|
|
|
f.ns.Operation(func() {
|
|
|
|
_, allowed = f.pp.RequestCapacity(node, f.minCap, f.connectedBias, true)
|
|
|
|
})
|
|
|
|
if allowed {
|
|
|
|
return f.minCap, nil
|
2019-08-03 12:36:10 +00:00
|
|
|
}
|
2020-09-14 20:44:20 +00:00
|
|
|
if !peer.allowInactive() {
|
|
|
|
f.disconnect(peer)
|
2019-08-03 12:36:10 +00:00
|
|
|
}
|
2020-09-14 20:44:20 +00:00
|
|
|
return 0, nil
|
|
|
|
}
|
2019-11-13 22:47:03 +00:00
|
|
|
|
2020-09-14 20:44:20 +00:00
|
|
|
// setConnectedBias sets the connection bias, which is applied to already connected clients
|
|
|
|
// So that already connected client won't be kicked out very soon and we can ensure all
|
|
|
|
// connected clients can have enough time to request or sync some data.
|
|
|
|
func (f *clientPool) setConnectedBias(bias time.Duration) {
|
|
|
|
f.lock.Lock()
|
|
|
|
defer f.lock.Unlock()
|
2019-11-02 12:02:35 +00:00
|
|
|
|
2020-09-14 20:44:20 +00:00
|
|
|
f.connectedBias = bias
|
|
|
|
f.pp.SetActiveBias(bias)
|
2019-08-03 12:36:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// disconnect should be called when a connection is terminated. If the disconnection
|
|
|
|
// was initiated by the pool itself using disconnectFn then calling disconnect is
|
|
|
|
// not necessary but permitted.
|
2020-02-26 09:41:24 +00:00
|
|
|
func (f *clientPool) disconnect(p clientPoolPeer) {
|
2020-09-14 20:44:20 +00:00
|
|
|
f.disconnectNode(p.Node())
|
2019-08-03 12:36:10 +00:00
|
|
|
}
|
|
|
|
|
2020-09-14 20:44:20 +00:00
|
|
|
// disconnectNode removes node fields and flags related to connected status
|
|
|
|
func (f *clientPool) disconnectNode(node *enode.Node) {
|
|
|
|
f.ns.SetField(node, connAddressField, nil)
|
2020-10-21 08:56:33 +00:00
|
|
|
f.ns.SetField(node, clientInfoField, nil)
|
2019-11-13 22:47:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// setDefaultFactors sets the default price factors applied to subsequently connected clients
|
2020-09-14 20:44:20 +00:00
|
|
|
func (f *clientPool) setDefaultFactors(posFactors, negFactors lps.PriceFactors) {
|
2019-11-13 22:47:03 +00:00
|
|
|
f.lock.Lock()
|
|
|
|
defer f.lock.Unlock()
|
|
|
|
|
|
|
|
f.defaultPosFactors = posFactors
|
|
|
|
f.defaultNegFactors = negFactors
|
|
|
|
}
|
|
|
|
|
|
|
|
// capacityInfo returns the total capacity allowance, the total capacity of connected
|
|
|
|
// clients and the total capacity of connected and prioritized clients
|
|
|
|
func (f *clientPool) capacityInfo() (uint64, uint64, uint64) {
|
|
|
|
f.lock.Lock()
|
|
|
|
defer f.lock.Unlock()
|
|
|
|
|
2020-09-14 20:44:20 +00:00
|
|
|
// total priority active cap will be supported when the token issuer module is added
|
2020-10-21 08:56:33 +00:00
|
|
|
_, activeCap := f.pp.Active()
|
|
|
|
return f.capLimit, activeCap, 0
|
2019-08-03 12:36:10 +00:00
|
|
|
}
|
|
|
|
|
2020-09-14 20:44:20 +00:00
|
|
|
// setLimits sets the maximum number and total capacity of connected clients,
|
2019-08-03 12:36:10 +00:00
|
|
|
// dropping some of them if necessary.
|
2019-11-02 12:02:35 +00:00
|
|
|
func (f *clientPool) setLimits(totalConn int, totalCap uint64) {
|
2019-08-03 12:36:10 +00:00
|
|
|
f.lock.Lock()
|
|
|
|
defer f.lock.Unlock()
|
|
|
|
|
2019-11-02 12:02:35 +00:00
|
|
|
f.capLimit = totalCap
|
2020-09-14 20:44:20 +00:00
|
|
|
f.pp.SetLimits(uint64(totalConn), totalCap)
|
2019-08-03 12:36:10 +00:00
|
|
|
}
|
|
|
|
|
2019-11-13 22:47:03 +00:00
|
|
|
// setCapacity sets the assigned capacity of a connected client
|
2020-09-14 20:44:20 +00:00
|
|
|
func (f *clientPool) setCapacity(node *enode.Node, freeID string, capacity uint64, bias time.Duration, setCap bool) (uint64, error) {
|
2020-10-21 08:56:33 +00:00
|
|
|
c, _ := f.ns.GetField(node, clientInfoField).(*clientInfo)
|
2020-09-14 20:44:20 +00:00
|
|
|
if c == nil {
|
|
|
|
if setCap {
|
|
|
|
return 0, fmt.Errorf("client %064x is not connected", node.ID())
|
|
|
|
}
|
|
|
|
c = &clientInfo{node: node}
|
2020-10-21 08:56:33 +00:00
|
|
|
f.ns.SetField(node, clientInfoField, c)
|
2020-09-14 20:44:20 +00:00
|
|
|
f.ns.SetField(node, connAddressField, freeID)
|
|
|
|
if c.balance, _ = f.ns.GetField(node, f.BalanceField).(*lps.NodeBalance); c.balance == nil {
|
|
|
|
log.Error("BalanceField is missing", "node", node.ID())
|
|
|
|
return 0, fmt.Errorf("BalanceField of %064x is missing", node.ID())
|
|
|
|
}
|
|
|
|
defer func() {
|
|
|
|
f.ns.SetField(node, connAddressField, nil)
|
2020-10-21 08:56:33 +00:00
|
|
|
f.ns.SetField(node, clientInfoField, nil)
|
2020-09-14 20:44:20 +00:00
|
|
|
}()
|
2019-11-13 22:47:03 +00:00
|
|
|
}
|
2020-09-14 20:44:20 +00:00
|
|
|
var (
|
|
|
|
minPriority int64
|
|
|
|
allowed bool
|
|
|
|
)
|
|
|
|
f.ns.Operation(func() {
|
|
|
|
if !setCap || c.priority {
|
|
|
|
// check clientInfo.priority inside Operation to ensure thread safety
|
|
|
|
minPriority, allowed = f.pp.RequestCapacity(node, capacity, bias, setCap)
|
2019-11-13 22:47:03 +00:00
|
|
|
}
|
2020-09-14 20:44:20 +00:00
|
|
|
})
|
|
|
|
if allowed {
|
|
|
|
return 0, nil
|
2019-11-13 22:47:03 +00:00
|
|
|
}
|
2020-09-14 20:44:20 +00:00
|
|
|
missing := c.balance.PosBalanceMissing(minPriority, capacity, bias)
|
|
|
|
if missing < 1 {
|
|
|
|
// ensure that we never return 0 missing and insufficient priority error
|
|
|
|
missing = 1
|
2019-08-27 11:07:25 +00:00
|
|
|
}
|
2020-09-14 20:44:20 +00:00
|
|
|
return missing, errNoPriority
|
2019-08-27 11:07:25 +00:00
|
|
|
}
|
|
|
|
|
2020-09-14 20:44:20 +00:00
|
|
|
// setCapacityLocked is the equivalent of setCapacity used when f.lock is already locked
|
|
|
|
func (f *clientPool) setCapacityLocked(node *enode.Node, freeID string, capacity uint64, minConnTime time.Duration, setCap bool) (uint64, error) {
|
2019-08-03 12:36:10 +00:00
|
|
|
f.lock.Lock()
|
|
|
|
defer f.lock.Unlock()
|
|
|
|
|
2020-09-14 20:44:20 +00:00
|
|
|
return f.setCapacity(node, freeID, capacity, minConnTime, setCap)
|
2019-08-03 12:36:10 +00:00
|
|
|
}
|
|
|
|
|
2020-09-14 20:44:20 +00:00
|
|
|
// forClients calls the supplied callback for either the listed node IDs or all connected
|
|
|
|
// nodes. It passes a valid clientInfo to the callback and ensures that the necessary
|
|
|
|
// fields and flags are set in order for BalanceTracker and PriorityPool to work even if
|
|
|
|
// the node is not connected.
|
|
|
|
func (f *clientPool) forClients(ids []enode.ID, cb func(client *clientInfo)) {
|
2019-08-03 12:36:10 +00:00
|
|
|
f.lock.Lock()
|
|
|
|
defer f.lock.Unlock()
|
|
|
|
|
2020-09-14 20:44:20 +00:00
|
|
|
if len(ids) == 0 {
|
|
|
|
f.ns.ForEach(nodestate.Flags{}, nodestate.Flags{}, func(node *enode.Node, state nodestate.Flags) {
|
2020-10-21 08:56:33 +00:00
|
|
|
c, _ := f.ns.GetField(node, clientInfoField).(*clientInfo)
|
2020-09-14 20:44:20 +00:00
|
|
|
if c != nil {
|
|
|
|
cb(c)
|
|
|
|
}
|
|
|
|
})
|
2019-08-03 12:36:10 +00:00
|
|
|
} else {
|
2020-09-14 20:44:20 +00:00
|
|
|
for _, id := range ids {
|
|
|
|
node := f.ns.GetNode(id)
|
|
|
|
if node == nil {
|
|
|
|
node = enode.SignNull(&enr.Record{}, id)
|
|
|
|
}
|
2020-10-21 08:56:33 +00:00
|
|
|
c, _ := f.ns.GetField(node, clientInfoField).(*clientInfo)
|
2020-09-14 20:44:20 +00:00
|
|
|
if c != nil {
|
|
|
|
cb(c)
|
|
|
|
} else {
|
|
|
|
c = &clientInfo{node: node}
|
2020-10-21 08:56:33 +00:00
|
|
|
f.ns.SetField(node, clientInfoField, c)
|
2020-09-14 20:44:20 +00:00
|
|
|
f.ns.SetField(node, connAddressField, "")
|
|
|
|
if c.balance, _ = f.ns.GetField(node, f.BalanceField).(*lps.NodeBalance); c.balance != nil {
|
|
|
|
cb(c)
|
|
|
|
} else {
|
|
|
|
log.Error("BalanceField is missing")
|
|
|
|
}
|
|
|
|
f.ns.SetField(node, connAddressField, nil)
|
2020-10-21 08:56:33 +00:00
|
|
|
f.ns.SetField(node, clientInfoField, nil)
|
2020-09-14 20:44:20 +00:00
|
|
|
}
|
2019-11-02 12:02:35 +00:00
|
|
|
}
|
|
|
|
}
|
2019-08-03 12:36:10 +00:00
|
|
|
}
|