2016-11-09 01:01:56 +00:00
|
|
|
// Copyright 2016 The go-ethereum Authors
|
2016-10-14 03:51:29 +00:00
|
|
|
// 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 (
|
2017-10-24 13:19:09 +00:00
|
|
|
"crypto/ecdsa"
|
2020-10-21 08:56:33 +00:00
|
|
|
"reflect"
|
2019-05-30 18:51:13 +00:00
|
|
|
"time"
|
2016-10-14 03:51:29 +00:00
|
|
|
|
2019-02-26 11:32:48 +00:00
|
|
|
"github.com/ethereum/go-ethereum/common/mclock"
|
2016-10-14 03:51:29 +00:00
|
|
|
"github.com/ethereum/go-ethereum/eth"
|
|
|
|
"github.com/ethereum/go-ethereum/les/flowcontrol"
|
2020-09-14 20:44:20 +00:00
|
|
|
lps "github.com/ethereum/go-ethereum/les/lespay/server"
|
2016-10-14 03:51:29 +00:00
|
|
|
"github.com/ethereum/go-ethereum/light"
|
2017-02-22 12:10:07 +00:00
|
|
|
"github.com/ethereum/go-ethereum/log"
|
2020-08-03 17:40:46 +00:00
|
|
|
"github.com/ethereum/go-ethereum/node"
|
2016-10-14 03:51:29 +00:00
|
|
|
"github.com/ethereum/go-ethereum/p2p"
|
2017-06-21 10:27:38 +00:00
|
|
|
"github.com/ethereum/go-ethereum/p2p/discv5"
|
2019-08-03 12:36:10 +00:00
|
|
|
"github.com/ethereum/go-ethereum/p2p/enode"
|
2019-10-02 11:14:27 +00:00
|
|
|
"github.com/ethereum/go-ethereum/p2p/enr"
|
2020-10-21 08:56:33 +00:00
|
|
|
"github.com/ethereum/go-ethereum/p2p/nodestate"
|
2018-08-28 07:08:16 +00:00
|
|
|
"github.com/ethereum/go-ethereum/params"
|
2019-02-26 11:32:48 +00:00
|
|
|
"github.com/ethereum/go-ethereum/rpc"
|
2016-10-14 03:51:29 +00:00
|
|
|
)
|
|
|
|
|
2020-10-21 08:56:33 +00:00
|
|
|
var (
|
|
|
|
serverSetup = &nodestate.Setup{}
|
|
|
|
clientPeerField = serverSetup.NewField("clientPeer", reflect.TypeOf(&clientPeer{}))
|
|
|
|
clientInfoField = serverSetup.NewField("clientInfo", reflect.TypeOf(&clientInfo{}))
|
|
|
|
connAddressField = serverSetup.NewField("connAddr", reflect.TypeOf(""))
|
|
|
|
balanceTrackerSetup = lps.NewBalanceTrackerSetup(serverSetup)
|
|
|
|
priorityPoolSetup = lps.NewPriorityPoolSetup(serverSetup)
|
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
balanceTrackerSetup.Connect(connAddressField, priorityPoolSetup.CapacityField)
|
|
|
|
priorityPoolSetup.Connect(balanceTrackerSetup.BalanceField, balanceTrackerSetup.UpdateFlag) // NodeBalance implements nodePriority
|
|
|
|
}
|
|
|
|
|
2016-10-14 03:51:29 +00:00
|
|
|
type LesServer struct {
|
2018-08-17 10:21:53 +00:00
|
|
|
lesCommons
|
2017-10-24 13:19:09 +00:00
|
|
|
|
2020-10-21 08:56:33 +00:00
|
|
|
ns *nodestate.NodeStateMachine
|
2019-06-11 07:40:32 +00:00
|
|
|
archiveMode bool // Flag whether the ethereum node runs in archive mode.
|
2019-08-21 09:29:34 +00:00
|
|
|
handler *serverHandler
|
2020-10-21 08:56:33 +00:00
|
|
|
broadcaster *broadcaster
|
2019-08-21 09:29:34 +00:00
|
|
|
lesTopics []discv5.Topic
|
|
|
|
privateKey *ecdsa.PrivateKey
|
2019-06-11 07:40:32 +00:00
|
|
|
|
2019-08-21 09:29:34 +00:00
|
|
|
// Flow control and capacity management
|
|
|
|
fcManager *flowcontrol.ClientManager
|
2019-02-26 11:32:48 +00:00
|
|
|
costTracker *costTracker
|
|
|
|
defParams flowcontrol.ServerParams
|
2019-08-21 09:29:34 +00:00
|
|
|
servingQueue *servingQueue
|
|
|
|
clientPool *clientPool
|
2019-02-26 11:32:48 +00:00
|
|
|
|
2020-09-14 20:44:20 +00:00
|
|
|
minCapacity, maxCapacity uint64
|
|
|
|
threadsIdle int // Request serving threads count when system is idle.
|
|
|
|
threadsBusy int // Request serving threads count when system is busy(block insertion).
|
2020-08-03 17:40:46 +00:00
|
|
|
|
|
|
|
p2pSrv *p2p.Server
|
2016-10-14 03:51:29 +00:00
|
|
|
}
|
|
|
|
|
2020-08-03 17:40:46 +00:00
|
|
|
func NewLesServer(node *node.Node, e *eth.Ethereum, config *eth.Config) (*LesServer, error) {
|
2020-10-21 08:56:33 +00:00
|
|
|
ns := nodestate.NewNodeStateMachine(nil, nil, mclock.System{}, serverSetup)
|
2019-08-21 09:29:34 +00:00
|
|
|
// Collect les protocol version information supported by local node.
|
2018-01-22 12:38:34 +00:00
|
|
|
lesTopics := make([]discv5.Topic, len(AdvertiseProtocolVersions))
|
|
|
|
for i, pv := range AdvertiseProtocolVersions {
|
all: on-chain oracle checkpoint syncing (#19543)
* all: implement simple checkpoint syncing
cmd, les, node: remove callback mechanism
cmd, node: remove callback definition
les: simplify the registrar
les: expose checkpoint rpc services in the light client
les, light: don't store untrusted receipt
cmd, contracts, les: discard stale checkpoint
cmd, contracts/registrar: loose restriction of registeration
cmd, contracts: add replay-protection
all: off-chain multi-signature contract
params: deploy checkpoint contract for rinkeby
cmd/registrar: add raw signing mode for registrar
cmd/registrar, contracts/registrar, les: fixed messages
* cmd/registrar, contracts/registrar: fix lints
* accounts/abi/bind, les: address comments
* cmd, contracts, les, light, params: minor checkpoint sync cleanups
* cmd, eth, les, light: move checkpoint config to config file
* cmd, eth, les, params: address comments
* eth, les, params: address comments
* cmd: polish up the checkpoint admin CLI
* cmd, contracts, params: deploy new version contract
* cmd/checkpoint-admin: add another flag for clef mode signing
* cmd, contracts, les: rename and regen checkpoint oracle with abigen
2019-06-28 07:34:02 +00:00
|
|
|
lesTopics[i] = lesTopic(e.BlockChain().Genesis().Hash(), pv)
|
2017-10-24 13:19:09 +00:00
|
|
|
}
|
2019-08-21 09:29:34 +00:00
|
|
|
// Calculate the number of threads used to service the light client
|
|
|
|
// requests based on the user-specified value.
|
|
|
|
threads := config.LightServ * 4 / 100
|
|
|
|
if threads < 4 {
|
|
|
|
threads = 4
|
|
|
|
}
|
2017-06-21 10:27:38 +00:00
|
|
|
srv := &LesServer{
|
2018-08-17 10:21:53 +00:00
|
|
|
lesCommons: lesCommons{
|
2019-08-21 09:29:34 +00:00
|
|
|
genesis: e.BlockChain().Genesis().Hash(),
|
2018-08-17 10:21:53 +00:00
|
|
|
config: config,
|
2019-08-21 09:29:34 +00:00
|
|
|
chainConfig: e.BlockChain().Config(),
|
2018-08-28 07:08:16 +00:00
|
|
|
iConfig: light.DefaultServerIndexerConfig,
|
all: on-chain oracle checkpoint syncing (#19543)
* all: implement simple checkpoint syncing
cmd, les, node: remove callback mechanism
cmd, node: remove callback definition
les: simplify the registrar
les: expose checkpoint rpc services in the light client
les, light: don't store untrusted receipt
cmd, contracts, les: discard stale checkpoint
cmd, contracts/registrar: loose restriction of registeration
cmd, contracts: add replay-protection
all: off-chain multi-signature contract
params: deploy checkpoint contract for rinkeby
cmd/registrar: add raw signing mode for registrar
cmd/registrar, contracts/registrar, les: fixed messages
* cmd/registrar, contracts/registrar: fix lints
* accounts/abi/bind, les: address comments
* cmd, contracts, les, light, params: minor checkpoint sync cleanups
* cmd, eth, les, light: move checkpoint config to config file
* cmd, eth, les, params: address comments
* eth, les, params: address comments
* cmd: polish up the checkpoint admin CLI
* cmd, contracts, params: deploy new version contract
* cmd/checkpoint-admin: add another flag for clef mode signing
* cmd, contracts, les: rename and regen checkpoint oracle with abigen
2019-06-28 07:34:02 +00:00
|
|
|
chainDb: e.ChainDb(),
|
2019-08-21 09:29:34 +00:00
|
|
|
chainReader: e.BlockChain(),
|
2020-07-13 09:02:54 +00:00
|
|
|
chtIndexer: light.NewChtIndexer(e.ChainDb(), nil, params.CHTFrequency, params.HelperTrieProcessConfirmations, true),
|
|
|
|
bloomTrieIndexer: light.NewBloomTrieIndexer(e.ChainDb(), nil, params.BloomBitsBlocks, params.BloomTrieFrequency, true),
|
2019-08-21 09:29:34 +00:00
|
|
|
closeCh: make(chan struct{}),
|
2018-08-17 10:21:53 +00:00
|
|
|
},
|
2020-10-21 08:56:33 +00:00
|
|
|
ns: ns,
|
all: on-chain oracle checkpoint syncing (#19543)
* all: implement simple checkpoint syncing
cmd, les, node: remove callback mechanism
cmd, node: remove callback definition
les: simplify the registrar
les: expose checkpoint rpc services in the light client
les, light: don't store untrusted receipt
cmd, contracts, les: discard stale checkpoint
cmd, contracts/registrar: loose restriction of registeration
cmd, contracts: add replay-protection
all: off-chain multi-signature contract
params: deploy checkpoint contract for rinkeby
cmd/registrar: add raw signing mode for registrar
cmd/registrar, contracts/registrar, les: fixed messages
* cmd/registrar, contracts/registrar: fix lints
* accounts/abi/bind, les: address comments
* cmd, contracts, les, light, params: minor checkpoint sync cleanups
* cmd, eth, les, light: move checkpoint config to config file
* cmd, eth, les, params: address comments
* eth, les, params: address comments
* cmd: polish up the checkpoint admin CLI
* cmd, contracts, params: deploy new version contract
* cmd/checkpoint-admin: add another flag for clef mode signing
* cmd, contracts, les: rename and regen checkpoint oracle with abigen
2019-06-28 07:34:02 +00:00
|
|
|
archiveMode: e.ArchiveMode(),
|
2020-10-21 08:56:33 +00:00
|
|
|
broadcaster: newBroadcaster(ns),
|
2019-01-24 11:18:26 +00:00
|
|
|
lesTopics: lesTopics,
|
2019-08-21 09:29:34 +00:00
|
|
|
fcManager: flowcontrol.NewClientManager(nil, &mclock.System{}),
|
|
|
|
servingQueue: newServingQueue(int64(time.Millisecond*10), float64(config.LightServ)/100),
|
|
|
|
threadsBusy: config.LightServ/100 + 1,
|
|
|
|
threadsIdle: threads,
|
2020-08-03 17:40:46 +00:00
|
|
|
p2pSrv: node.Server(),
|
2017-10-24 13:19:09 +00:00
|
|
|
}
|
2019-08-21 09:29:34 +00:00
|
|
|
srv.handler = newServerHandler(srv, e.BlockChain(), e.ChainDb(), e.TxPool(), e.Synced)
|
2019-11-13 22:47:03 +00:00
|
|
|
srv.costTracker, srv.minCapacity = newCostTracker(e.ChainDb(), config)
|
2020-08-03 17:40:46 +00:00
|
|
|
srv.oracle = srv.setupOracle(node, e.BlockChain().Genesis().Hash(), config)
|
2018-08-17 10:21:53 +00:00
|
|
|
|
2020-08-03 17:40:46 +00:00
|
|
|
// Initialize the bloom trie indexer.
|
|
|
|
e.BloomIndexer().AddChildIndexer(srv.bloomTrieIndexer)
|
2019-08-21 09:29:34 +00:00
|
|
|
|
|
|
|
// Initialize server capacity management fields.
|
|
|
|
srv.defParams = flowcontrol.ServerParams{
|
2020-09-14 20:44:20 +00:00
|
|
|
BufLimit: srv.minCapacity * bufLimitRatio,
|
|
|
|
MinRecharge: srv.minCapacity,
|
2019-08-21 09:29:34 +00:00
|
|
|
}
|
|
|
|
// LES flow control tries to more or less guarantee the possibility for the
|
|
|
|
// clients to send a certain amount of requests at any time and get a quick
|
|
|
|
// response. Most of the clients want this guarantee but don't actually need
|
|
|
|
// to send requests most of the time. Our goal is to serve as many clients as
|
|
|
|
// possible while the actually used server capacity does not exceed the limits
|
|
|
|
totalRecharge := srv.costTracker.totalRecharge()
|
2020-09-14 20:44:20 +00:00
|
|
|
srv.maxCapacity = srv.minCapacity * uint64(srv.config.LightPeers)
|
2019-11-13 22:47:03 +00:00
|
|
|
if totalRecharge > srv.maxCapacity {
|
|
|
|
srv.maxCapacity = totalRecharge
|
2019-08-21 09:29:34 +00:00
|
|
|
}
|
2020-09-14 20:44:20 +00:00
|
|
|
srv.fcManager.SetCapacityLimits(srv.minCapacity, srv.maxCapacity, srv.minCapacity*2)
|
2020-10-21 08:56:33 +00:00
|
|
|
srv.clientPool = newClientPool(ns, srv.chainDb, srv.minCapacity, defaultConnectedBias, mclock.System{}, srv.dropClient)
|
2020-09-14 20:44:20 +00:00
|
|
|
srv.clientPool.setDefaultFactors(lps.PriceFactors{TimeFactor: 0, CapacityFactor: 1, RequestFactor: 1}, lps.PriceFactors{TimeFactor: 0, CapacityFactor: 1, RequestFactor: 1})
|
2017-10-24 13:19:09 +00:00
|
|
|
|
all: on-chain oracle checkpoint syncing (#19543)
* all: implement simple checkpoint syncing
cmd, les, node: remove callback mechanism
cmd, node: remove callback definition
les: simplify the registrar
les: expose checkpoint rpc services in the light client
les, light: don't store untrusted receipt
cmd, contracts, les: discard stale checkpoint
cmd, contracts/registrar: loose restriction of registeration
cmd, contracts: add replay-protection
all: off-chain multi-signature contract
params: deploy checkpoint contract for rinkeby
cmd/registrar: add raw signing mode for registrar
cmd/registrar, contracts/registrar, les: fixed messages
* cmd/registrar, contracts/registrar: fix lints
* accounts/abi/bind, les: address comments
* cmd, contracts, les, light, params: minor checkpoint sync cleanups
* cmd, eth, les, light: move checkpoint config to config file
* cmd, eth, les, params: address comments
* eth, les, params: address comments
* cmd: polish up the checkpoint admin CLI
* cmd, contracts, params: deploy new version contract
* cmd/checkpoint-admin: add another flag for clef mode signing
* cmd, contracts, les: rename and regen checkpoint oracle with abigen
2019-06-28 07:34:02 +00:00
|
|
|
checkpoint := srv.latestLocalCheckpoint()
|
|
|
|
if !checkpoint.Empty() {
|
2019-08-21 09:29:34 +00:00
|
|
|
log.Info("Loaded latest checkpoint", "section", checkpoint.SectionIndex, "head", checkpoint.SectionHead,
|
all: on-chain oracle checkpoint syncing (#19543)
* all: implement simple checkpoint syncing
cmd, les, node: remove callback mechanism
cmd, node: remove callback definition
les: simplify the registrar
les: expose checkpoint rpc services in the light client
les, light: don't store untrusted receipt
cmd, contracts, les: discard stale checkpoint
cmd, contracts/registrar: loose restriction of registeration
cmd, contracts: add replay-protection
all: off-chain multi-signature contract
params: deploy checkpoint contract for rinkeby
cmd/registrar: add raw signing mode for registrar
cmd/registrar, contracts/registrar, les: fixed messages
* cmd/registrar, contracts/registrar: fix lints
* accounts/abi/bind, les: address comments
* cmd, contracts, les, light, params: minor checkpoint sync cleanups
* cmd, eth, les, light: move checkpoint config to config file
* cmd, eth, les, params: address comments
* eth, les, params: address comments
* cmd: polish up the checkpoint admin CLI
* cmd, contracts, params: deploy new version contract
* cmd/checkpoint-admin: add another flag for clef mode signing
* cmd, contracts, les: rename and regen checkpoint oracle with abigen
2019-06-28 07:34:02 +00:00
|
|
|
"chtroot", checkpoint.CHTRoot, "bloomroot", checkpoint.BloomRoot)
|
2017-10-24 13:19:09 +00:00
|
|
|
}
|
all: on-chain oracle checkpoint syncing (#19543)
* all: implement simple checkpoint syncing
cmd, les, node: remove callback mechanism
cmd, node: remove callback definition
les: simplify the registrar
les: expose checkpoint rpc services in the light client
les, light: don't store untrusted receipt
cmd, contracts, les: discard stale checkpoint
cmd, contracts/registrar: loose restriction of registeration
cmd, contracts: add replay-protection
all: off-chain multi-signature contract
params: deploy checkpoint contract for rinkeby
cmd/registrar: add raw signing mode for registrar
cmd/registrar, contracts/registrar, les: fixed messages
* cmd/registrar, contracts/registrar: fix lints
* accounts/abi/bind, les: address comments
* cmd, contracts, les, light, params: minor checkpoint sync cleanups
* cmd, eth, les, light: move checkpoint config to config file
* cmd, eth, les, params: address comments
* eth, les, params: address comments
* cmd: polish up the checkpoint admin CLI
* cmd, contracts, params: deploy new version contract
* cmd/checkpoint-admin: add another flag for clef mode signing
* cmd, contracts, les: rename and regen checkpoint oracle with abigen
2019-06-28 07:34:02 +00:00
|
|
|
srv.chtIndexer.Start(e.BlockChain())
|
2020-08-03 17:40:46 +00:00
|
|
|
|
|
|
|
node.RegisterProtocols(srv.Protocols())
|
|
|
|
node.RegisterAPIs(srv.APIs())
|
|
|
|
node.RegisterLifecycle(srv)
|
|
|
|
|
2020-10-21 08:56:33 +00:00
|
|
|
// disconnect all peers at nsm shutdown
|
|
|
|
ns.SubscribeField(clientPeerField, func(node *enode.Node, state nodestate.Flags, oldValue, newValue interface{}) {
|
|
|
|
if state.Equals(serverSetup.OfflineFlag()) && oldValue != nil {
|
|
|
|
oldValue.(*clientPeer).Peer.Disconnect(p2p.DiscRequested)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
ns.Start()
|
2019-02-26 11:32:48 +00:00
|
|
|
return srv, nil
|
|
|
|
}
|
2016-10-14 03:51:29 +00:00
|
|
|
|
2019-02-26 11:32:48 +00:00
|
|
|
func (s *LesServer) APIs() []rpc.API {
|
|
|
|
return []rpc.API{
|
all: on-chain oracle checkpoint syncing (#19543)
* all: implement simple checkpoint syncing
cmd, les, node: remove callback mechanism
cmd, node: remove callback definition
les: simplify the registrar
les: expose checkpoint rpc services in the light client
les, light: don't store untrusted receipt
cmd, contracts, les: discard stale checkpoint
cmd, contracts/registrar: loose restriction of registeration
cmd, contracts: add replay-protection
all: off-chain multi-signature contract
params: deploy checkpoint contract for rinkeby
cmd/registrar: add raw signing mode for registrar
cmd/registrar, contracts/registrar, les: fixed messages
* cmd/registrar, contracts/registrar: fix lints
* accounts/abi/bind, les: address comments
* cmd, contracts, les, light, params: minor checkpoint sync cleanups
* cmd, eth, les, light: move checkpoint config to config file
* cmd, eth, les, params: address comments
* eth, les, params: address comments
* cmd: polish up the checkpoint admin CLI
* cmd, contracts, params: deploy new version contract
* cmd/checkpoint-admin: add another flag for clef mode signing
* cmd, contracts, les: rename and regen checkpoint oracle with abigen
2019-06-28 07:34:02 +00:00
|
|
|
{
|
|
|
|
Namespace: "les",
|
|
|
|
Version: "1.0",
|
2019-08-21 09:29:34 +00:00
|
|
|
Service: NewPrivateLightAPI(&s.lesCommons),
|
all: on-chain oracle checkpoint syncing (#19543)
* all: implement simple checkpoint syncing
cmd, les, node: remove callback mechanism
cmd, node: remove callback definition
les: simplify the registrar
les: expose checkpoint rpc services in the light client
les, light: don't store untrusted receipt
cmd, contracts, les: discard stale checkpoint
cmd, contracts/registrar: loose restriction of registeration
cmd, contracts: add replay-protection
all: off-chain multi-signature contract
params: deploy checkpoint contract for rinkeby
cmd/registrar: add raw signing mode for registrar
cmd/registrar, contracts/registrar, les: fixed messages
* cmd/registrar, contracts/registrar: fix lints
* accounts/abi/bind, les: address comments
* cmd, contracts, les, light, params: minor checkpoint sync cleanups
* cmd, eth, les, light: move checkpoint config to config file
* cmd, eth, les, params: address comments
* eth, les, params: address comments
* cmd: polish up the checkpoint admin CLI
* cmd, contracts, params: deploy new version contract
* cmd/checkpoint-admin: add another flag for clef mode signing
* cmd, contracts, les: rename and regen checkpoint oracle with abigen
2019-06-28 07:34:02 +00:00
|
|
|
Public: false,
|
|
|
|
},
|
2019-11-13 22:47:03 +00:00
|
|
|
{
|
|
|
|
Namespace: "les",
|
|
|
|
Version: "1.0",
|
|
|
|
Service: NewPrivateLightServerAPI(s),
|
|
|
|
Public: false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Namespace: "debug",
|
|
|
|
Version: "1.0",
|
|
|
|
Service: NewPrivateDebugAPI(s),
|
|
|
|
Public: false,
|
|
|
|
},
|
2016-10-14 03:51:29 +00:00
|
|
|
}
|
2019-02-26 11:32:48 +00:00
|
|
|
}
|
|
|
|
|
2016-10-14 03:51:29 +00:00
|
|
|
func (s *LesServer) Protocols() []p2p.Protocol {
|
2019-10-02 11:14:27 +00:00
|
|
|
ps := s.makeProtocols(ServerProtocolVersions, s.handler.runPeer, func(id enode.ID) interface{} {
|
2020-10-21 08:56:33 +00:00
|
|
|
if p := s.getClient(id); p != nil {
|
2019-08-21 09:29:34 +00:00
|
|
|
return p.Info()
|
|
|
|
}
|
|
|
|
return nil
|
2020-05-22 11:46:34 +00:00
|
|
|
}, nil)
|
2019-10-02 11:14:27 +00:00
|
|
|
// Add "les" ENR entries.
|
|
|
|
for i := range ps {
|
|
|
|
ps[i].Attributes = []enr.Entry{&lesEntry{}}
|
|
|
|
}
|
|
|
|
return ps
|
2016-10-14 03:51:29 +00:00
|
|
|
}
|
|
|
|
|
2017-01-23 01:35:46 +00:00
|
|
|
// Start starts the LES server
|
2020-08-03 17:40:46 +00:00
|
|
|
func (s *LesServer) Start() error {
|
|
|
|
s.privateKey = s.p2pSrv.PrivateKey
|
2020-10-21 08:56:33 +00:00
|
|
|
s.broadcaster.setSignerKey(s.privateKey)
|
2019-08-21 09:29:34 +00:00
|
|
|
s.handler.start()
|
|
|
|
|
|
|
|
s.wg.Add(1)
|
|
|
|
go s.capacityManagement()
|
2019-02-26 11:32:48 +00:00
|
|
|
|
2020-08-03 17:40:46 +00:00
|
|
|
if s.p2pSrv.DiscV5 != nil {
|
2018-02-10 12:33:52 +00:00
|
|
|
for _, topic := range s.lesTopics {
|
|
|
|
topic := topic
|
|
|
|
go func() {
|
|
|
|
logger := log.New("topic", topic)
|
|
|
|
logger.Info("Starting topic registration")
|
|
|
|
defer logger.Info("Terminated topic registration")
|
|
|
|
|
2020-08-03 17:40:46 +00:00
|
|
|
s.p2pSrv.DiscV5.RegisterTopic(topic, s.closeCh)
|
2018-02-10 12:33:52 +00:00
|
|
|
}()
|
|
|
|
}
|
2017-10-24 13:19:09 +00:00
|
|
|
}
|
2020-08-03 17:40:46 +00:00
|
|
|
|
|
|
|
return nil
|
2019-08-21 09:29:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Stop stops the LES service
|
2020-08-03 17:40:46 +00:00
|
|
|
func (s *LesServer) Stop() error {
|
2019-08-21 09:29:34 +00:00
|
|
|
close(s.closeCh)
|
|
|
|
|
2020-10-21 08:56:33 +00:00
|
|
|
s.clientPool.stop()
|
|
|
|
s.ns.Stop()
|
2019-08-21 09:29:34 +00:00
|
|
|
s.fcManager.Stop()
|
|
|
|
s.costTracker.stop()
|
|
|
|
s.handler.stop()
|
|
|
|
s.servingQueue.stop()
|
|
|
|
|
|
|
|
// Note, bloom trie indexer is closed by parent bloombits indexer.
|
|
|
|
s.chtIndexer.Close()
|
|
|
|
s.wg.Wait()
|
|
|
|
log.Info("Les server stopped")
|
2016-10-14 03:51:29 +00:00
|
|
|
|
2020-08-03 17:40:46 +00:00
|
|
|
return nil
|
all: on-chain oracle checkpoint syncing (#19543)
* all: implement simple checkpoint syncing
cmd, les, node: remove callback mechanism
cmd, node: remove callback definition
les: simplify the registrar
les: expose checkpoint rpc services in the light client
les, light: don't store untrusted receipt
cmd, contracts, les: discard stale checkpoint
cmd, contracts/registrar: loose restriction of registeration
cmd, contracts: add replay-protection
all: off-chain multi-signature contract
params: deploy checkpoint contract for rinkeby
cmd/registrar: add raw signing mode for registrar
cmd/registrar, contracts/registrar, les: fixed messages
* cmd/registrar, contracts/registrar: fix lints
* accounts/abi/bind, les: address comments
* cmd, contracts, les, light, params: minor checkpoint sync cleanups
* cmd, eth, les, light: move checkpoint config to config file
* cmd, eth, les, params: address comments
* eth, les, params: address comments
* cmd: polish up the checkpoint admin CLI
* cmd, contracts, params: deploy new version contract
* cmd/checkpoint-admin: add another flag for clef mode signing
* cmd, contracts, les: rename and regen checkpoint oracle with abigen
2019-06-28 07:34:02 +00:00
|
|
|
}
|
|
|
|
|
2019-08-21 09:29:34 +00:00
|
|
|
// capacityManagement starts an event handler loop that updates the recharge curve of
|
|
|
|
// the client manager and adjusts the client pool's size according to the total
|
|
|
|
// capacity updates coming from the client manager
|
|
|
|
func (s *LesServer) capacityManagement() {
|
|
|
|
defer s.wg.Done()
|
2016-10-14 03:51:29 +00:00
|
|
|
|
2019-08-21 09:29:34 +00:00
|
|
|
processCh := make(chan bool, 100)
|
|
|
|
sub := s.handler.blockchain.SubscribeBlockProcessingEvent(processCh)
|
|
|
|
defer sub.Unsubscribe()
|
2016-11-13 11:34:50 +00:00
|
|
|
|
2019-08-21 09:29:34 +00:00
|
|
|
totalRechargeCh := make(chan uint64, 100)
|
|
|
|
totalRecharge := s.costTracker.subscribeTotalRecharge(totalRechargeCh)
|
2016-11-13 11:34:50 +00:00
|
|
|
|
2019-08-21 09:29:34 +00:00
|
|
|
totalCapacityCh := make(chan uint64, 100)
|
|
|
|
totalCapacity := s.fcManager.SubscribeTotalCapacity(totalCapacityCh)
|
|
|
|
s.clientPool.setLimits(s.config.LightPeers, totalCapacity)
|
2017-10-24 13:19:09 +00:00
|
|
|
|
2019-08-21 09:29:34 +00:00
|
|
|
var (
|
|
|
|
busy bool
|
|
|
|
freePeers uint64
|
|
|
|
blockProcess mclock.AbsTime
|
|
|
|
)
|
|
|
|
updateRecharge := func() {
|
|
|
|
if busy {
|
|
|
|
s.servingQueue.setThreads(s.threadsBusy)
|
|
|
|
s.fcManager.SetRechargeCurve(flowcontrol.PieceWiseLinear{{0, 0}, {totalRecharge, totalRecharge}})
|
|
|
|
} else {
|
|
|
|
s.servingQueue.setThreads(s.threadsIdle)
|
|
|
|
s.fcManager.SetRechargeCurve(flowcontrol.PieceWiseLinear{{0, 0}, {totalRecharge / 10, totalRecharge}, {totalRecharge, totalRecharge}})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
updateRecharge()
|
|
|
|
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case busy = <-processCh:
|
|
|
|
if busy {
|
|
|
|
blockProcess = mclock.Now()
|
|
|
|
} else {
|
|
|
|
blockProcessingTimer.Update(time.Duration(mclock.Now() - blockProcess))
|
2016-10-14 03:51:29 +00:00
|
|
|
}
|
2019-08-21 09:29:34 +00:00
|
|
|
updateRecharge()
|
|
|
|
case totalRecharge = <-totalRechargeCh:
|
|
|
|
totalRechargeGauge.Update(int64(totalRecharge))
|
|
|
|
updateRecharge()
|
|
|
|
case totalCapacity = <-totalCapacityCh:
|
|
|
|
totalCapacityGauge.Update(int64(totalCapacity))
|
2020-09-14 20:44:20 +00:00
|
|
|
newFreePeers := totalCapacity / s.minCapacity
|
2019-08-21 09:29:34 +00:00
|
|
|
if newFreePeers < freePeers && newFreePeers < uint64(s.config.LightPeers) {
|
|
|
|
log.Warn("Reduced free peer connections", "from", freePeers, "to", newFreePeers)
|
|
|
|
}
|
|
|
|
freePeers = newFreePeers
|
|
|
|
s.clientPool.setLimits(s.config.LightPeers, totalCapacity)
|
|
|
|
case <-s.closeCh:
|
|
|
|
return
|
2016-10-14 03:51:29 +00:00
|
|
|
}
|
2019-08-21 09:29:34 +00:00
|
|
|
}
|
2016-10-14 03:51:29 +00:00
|
|
|
}
|
2020-10-21 08:56:33 +00:00
|
|
|
|
|
|
|
func (s *LesServer) getClient(id enode.ID) *clientPeer {
|
|
|
|
if node := s.ns.GetNode(id); node != nil {
|
|
|
|
if p, ok := s.ns.GetField(node, clientPeerField).(*clientPeer); ok {
|
|
|
|
return p
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *LesServer) dropClient(id enode.ID) {
|
|
|
|
if p := s.getClient(id); p != nil {
|
|
|
|
p.Peer.Disconnect(p2p.DiscRequested)
|
|
|
|
}
|
|
|
|
}
|