forked from 0xPolygon/polygon-edge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclient.go
407 lines (320 loc) · 9.38 KB
/
client.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
package syncer
import (
"context"
"errors"
"fmt"
"io"
"sync"
"sync/atomic"
"time"
"github.com/0xPolygon/polygon-edge/blockchain"
"github.com/0xPolygon/polygon-edge/network"
"github.com/0xPolygon/polygon-edge/network/event"
"github.com/0xPolygon/polygon-edge/syncer/proto"
"github.com/0xPolygon/polygon-edge/types"
"github.com/armon/go-metrics"
"github.com/hashicorp/go-hclog"
"github.com/libp2p/go-libp2p/core/peer"
"google.golang.org/protobuf/types/known/emptypb"
)
const (
SyncPeerClientLoggerName = "sync-peer-client"
statusTopicName = "syncer/status/0.1"
defaultTimeoutForStatus = 10 * time.Second
)
type syncPeerClient struct {
logger hclog.Logger // logger used for console logging
network Network // reference to the network module
blockchain Blockchain // reference to the blockchain module
subscription blockchain.Subscription // reference to the blockchain subscription
topic *network.Topic // reference to the network topic
id string // node id
peerStatusUpdateCh chan *NoForkPeer // peer status update channel
peerConnectionUpdateCh chan *event.PeerEvent // peer connection update channel
shouldEmitBlocks bool // flag for emitting blocks in the topic
closeCh chan struct{}
closed atomic.Bool
peerStatusUpdateChLock sync.Mutex
peerStatusUpdateChClosed bool
}
func NewSyncPeerClient(
logger hclog.Logger,
network Network,
blockchain Blockchain,
) SyncPeerClient {
return &syncPeerClient{
logger: logger.Named(SyncPeerClientLoggerName),
network: network,
blockchain: blockchain,
id: network.AddrInfo().ID.String(),
peerStatusUpdateCh: make(chan *NoForkPeer, 1),
peerConnectionUpdateCh: make(chan *event.PeerEvent, 1),
shouldEmitBlocks: true,
closeCh: make(chan struct{}),
peerStatusUpdateChLock: sync.Mutex{},
peerStatusUpdateChClosed: false,
}
}
// Start processes for SyncPeerClient
func (m *syncPeerClient) Start() error {
// Mark client active.
m.closed.Store(false)
go m.startNewBlockProcess()
go m.startPeerEventProcess()
if err := m.startGossip(); err != nil {
return err
}
return nil
}
// Close terminates running processes for SyncPeerClient
func (m *syncPeerClient) Close() {
if m.closed.Swap(true) {
// Already closed.
return
}
if m.topic != nil {
m.topic.Close()
}
if m.subscription != nil {
m.subscription.Close()
m.subscription = nil
}
if m.closeCh != nil {
close(m.closeCh)
}
m.peerStatusUpdateChLock.Lock()
m.peerStatusUpdateChClosed = true
close(m.peerStatusUpdateCh)
m.peerStatusUpdateChLock.Unlock()
}
// DisablePublishingPeerStatus disables publishing own status via gossip
func (m *syncPeerClient) DisablePublishingPeerStatus() {
m.shouldEmitBlocks = false
}
// EnablePublishingPeerStatus enables publishing own status via gossip
func (m *syncPeerClient) EnablePublishingPeerStatus() {
m.shouldEmitBlocks = true
}
// GetPeerStatus fetches peer status
func (m *syncPeerClient) GetPeerStatus(peerID peer.ID) (*NoForkPeer, error) {
clt, err := m.newSyncPeerClient(peerID)
if err != nil {
return nil, err
}
timeoutCtx, cancel := context.WithTimeout(context.Background(), defaultTimeoutForStatus)
defer cancel()
status, err := clt.GetStatus(timeoutCtx, &emptypb.Empty{})
if err != nil {
return nil, err
}
return &NoForkPeer{
ID: peerID,
Number: status.Number,
Distance: m.network.GetPeerDistance(peerID),
}, nil
}
// GetConnectedPeerStatuses fetches the statuses of all connecting peers
func (m *syncPeerClient) GetConnectedPeerStatuses() []*NoForkPeer {
var (
ps = m.network.Peers()
syncPeers = make([]*NoForkPeer, 0, len(ps))
syncPeersLock sync.Mutex
wg sync.WaitGroup
)
for _, p := range ps {
p := p
wg.Add(1)
go func() {
defer wg.Done()
peerID := p.Info.ID
status, err := m.GetPeerStatus(peerID)
if err != nil {
m.logger.Warn("failed to get status from a peer, skip", "id", peerID, "err", err)
return //Skip appending nil status
}
syncPeersLock.Lock()
syncPeers = append(syncPeers, status)
syncPeersLock.Unlock()
}()
}
wg.Wait()
return syncPeers
}
// GetPeerStatusUpdateCh returns a channel of peer's status update
func (m *syncPeerClient) GetPeerStatusUpdateCh() <-chan *NoForkPeer {
return m.peerStatusUpdateCh
}
// GetPeerConnectionUpdateEventCh returns peer's connection change event
func (m *syncPeerClient) GetPeerConnectionUpdateEventCh() <-chan *event.PeerEvent {
return m.peerConnectionUpdateCh
}
// startGossip creates new topic and starts subscribing
func (m *syncPeerClient) startGossip() error {
topic, err := m.network.NewTopic(statusTopicName, &proto.SyncPeerStatus{})
if err != nil {
return err
}
if err := topic.Subscribe(m.handleStatusUpdate); err != nil {
return fmt.Errorf("unable to subscribe to gossip topic, %w", err)
}
m.topic = topic
return nil
}
// handleStatusUpdate is a handler of gossip
func (m *syncPeerClient) handleStatusUpdate(obj interface{}, from peer.ID) {
status, ok := obj.(*proto.SyncPeerStatus)
if !ok {
m.logger.Error("failed to cast gossiped message to txn")
return
}
if !m.network.IsConnected(from) {
if m.id != from.String() {
m.logger.Debug("received status from non-connected peer, ignore", "id", from)
}
return
}
m.peerStatusUpdateChLock.Lock()
defer m.peerStatusUpdateChLock.Unlock()
if !m.peerStatusUpdateChClosed {
m.peerStatusUpdateCh <- &NoForkPeer{
ID: from,
Number: status.Number,
Distance: m.network.GetPeerDistance(from),
}
}
}
// startNewBlockProcess starts blockchain event subscription
func (m *syncPeerClient) startNewBlockProcess() {
m.subscription = m.blockchain.SubscribeEvents()
eventCh := m.subscription.GetEventCh()
for {
var event *blockchain.Event
select {
case <-m.closeCh:
return
case event = <-eventCh:
}
if !m.shouldEmitBlocks {
continue
}
if l := len(event.NewChain); l > 0 {
latest := event.NewChain[l-1]
// Publish status
if err := m.topic.Publish(&proto.SyncPeerStatus{
Number: latest.Number,
}); err != nil {
m.logger.Warn("failed to publish status", "err", err)
}
}
}
}
// startPeerEventProcess starts subscribing peer connection change events and process them
func (m *syncPeerClient) startPeerEventProcess() {
defer close(m.peerConnectionUpdateCh)
peerEventCh, err := m.network.SubscribeCh(context.Background())
if err != nil {
m.logger.Error("failed to subscribe", "err", err)
return
}
for {
select {
case <-m.closeCh:
return
case e := <-peerEventCh:
if e != nil && (e.Type == event.PeerConnected || e.Type == event.PeerDisconnected) {
m.peerConnectionUpdateCh <- e
}
}
}
}
// CloseStream closes stream
func (m *syncPeerClient) CloseStream(peerID peer.ID) error {
return m.network.CloseProtocolStream(syncerProto, peerID)
}
// GetBlocks returns a stream of blocks from given height to peer's latest
func (m *syncPeerClient) GetBlocks(
peerID peer.ID,
from uint64,
timeoutPerBlock time.Duration,
) (<-chan *types.Block, error) {
clt, err := m.newSyncPeerClient(peerID)
if err != nil {
return nil, fmt.Errorf("failed to create sync peer client: %w", err)
}
ctx, cancel := context.WithCancel(context.Background())
stream, err := clt.GetBlocks(ctx, &proto.GetBlocksRequest{
From: from,
})
if err != nil {
cancel()
return nil, fmt.Errorf("failed to open GetBlocks stream: %w", err)
}
// input channel
streamBlockCh, streamErrorCh := blockStreamToChannel(stream)
// output channel
blockCh := make(chan *types.Block, 1)
go func() {
defer cancel()
defer close(blockCh)
for {
select {
case block, ok := <-streamBlockCh:
if !ok {
return
}
blockCh <- block
case err := <-streamErrorCh:
m.logger.Error("failed to get block from gRPC stream", "peer", peerID, "err", err)
return
case <-time.After(timeoutPerBlock):
m.logger.Warn("block doesn't reach within timeout", "timeout", timeoutPerBlock)
return
}
}
}()
return blockCh, nil
}
// newSyncPeerClient creates gRPC client
func (m *syncPeerClient) newSyncPeerClient(peerID peer.ID) (proto.SyncPeerClient, error) {
conn, err := m.network.NewProtoConnection(syncerProto, peerID)
if err != nil {
return nil, fmt.Errorf("failed to open a stream, err %w", err)
}
m.network.SaveProtocolStream(syncerProto, conn, peerID)
return proto.NewSyncPeerClient(conn), nil
}
// fromProto gets block from gRPC response data
func fromProto(protoBlock *proto.Block) (*types.Block, error) {
block := &types.Block{}
if err := block.UnmarshalRLP(protoBlock.Block); err != nil {
return nil, err
}
return block, nil
}
func blockStreamToChannel(stream proto.SyncPeer_GetBlocksClient) (<-chan *types.Block, <-chan error) {
blockCh := make(chan *types.Block)
errorCh := make(chan error, 1)
go func() {
defer close(blockCh)
for {
protoBlock, err := stream.Recv()
if errors.Is(err, io.EOF) {
break
}
if err != nil {
metrics.IncrCounter([]string{syncerMetrics, "bad_message"}, 1)
errorCh <- err
break
}
block, err := fromProto(protoBlock)
if err != nil {
metrics.IncrCounter([]string{syncerMetrics, "bad_block"}, 1)
errorCh <- err
break
}
metrics.SetGauge([]string{syncerMetrics, "ingress_bytes"}, float32(len(protoBlock.Block)))
blockCh <- block
}
}()
return blockCh, errorCh
}