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
package p2p
import (
"context"
"errors"
"fmt"
"net"
"time"
"github.com/ethereum-optimism/optimism/op-node/p2p/gating"
decredSecp "github.com/decred/dcrd/dcrec/secp256k1/v4"
"github.com/ethereum-optimism/optimism/op-node/p2p/store"
pubsub "github.com/libp2p/go-libp2p-pubsub"
"github.com/libp2p/go-libp2p-testing/netutil"
"github.com/libp2p/go-libp2p/core/connmgr"
"github.com/libp2p/go-libp2p/core/crypto"
"github.com/libp2p/go-libp2p/core/host"
"github.com/libp2p/go-libp2p/core/network"
"github.com/libp2p/go-libp2p/core/peer"
"github.com/libp2p/go-libp2p/core/peerstore"
gcrypto "github.com/ethereum/go-ethereum/crypto"
"github.com/ethereum/go-ethereum/log"
"github.com/ethereum/go-ethereum/p2p/discover"
"github.com/ethereum/go-ethereum/p2p/enode"
"github.com/ethereum-optimism/optimism/op-node/metrics"
)
// TODO: dynamic peering
// - req-resp protocol to ensure peers from a different chain learn they shouldn't be connected
// - banning peers based on score
var (
ErrDisabledDiscovery = errors.New("discovery disabled")
ErrNoConnectionManager = errors.New("no connection manager")
ErrNoConnectionGater = errors.New("no connection gater")
)
type Node interface {
// Host returns the libp2p host
Host() host.Host
// Dv5Local returns the control over the Discv5 data of the local node, nil if disabled
Dv5Local() *enode.LocalNode
// Dv5Udp returns the control over the Discv5 network, nil if disabled
Dv5Udp() *discover.UDPv5
// GossipSub returns the gossip router
GossipSub() *pubsub.PubSub
// GossipOut returns the gossip output/info control
GossipOut() GossipOut
// ConnectionGater returns the connection gater, to ban/unban peers with, may be nil
ConnectionGater() gating.BlockingConnectionGater
// ConnectionManager returns the connection manager, to protect peers with, may be nil
ConnectionManager() connmgr.ConnManager
}
type APIBackend struct {
node Node
log log.Logger
m metrics.Metricer
}
var _ API = (*APIBackend)(nil)
func NewP2PAPIBackend(node Node, log log.Logger, m metrics.Metricer) *APIBackend {
if m == nil {
m = metrics.NoopMetrics
}
return &APIBackend{
node: node,
log: log,
m: m,
}
}
func (s *APIBackend) Self(ctx context.Context) (*PeerInfo, error) {
recordDur := s.m.RecordRPCServerRequest("opp2p_self")
defer recordDur()
h := s.node.Host()
nw := h.Network()
pstore := h.Peerstore()
info, err := dumpPeer(h.ID(), nw, pstore, s.node.ConnectionManager())
if err != nil {
return nil, err
}
info.GossipBlocks = true
info.Latency = 0
if local := s.node.Dv5Local(); local != nil {
info.ENR = local.Node().String()
}
return info, nil
}
func dumpPeer(id peer.ID, nw network.Network, pstore peerstore.Peerstore, connMgr connmgr.ConnManager) (*PeerInfo, error) {
info := &PeerInfo{
PeerID: id,
}
// we might not have the pubkey if it's from a multi-addr and if we never discovered/connected them
pub := pstore.PubKey(id)
if pub != nil {
if testPub, ok := pub.(netutil.TestBogusPublicKey); ok {
info.NodeID = enode.ID(gcrypto.Keccak256Hash(testPub))
} else {
typedPub, ok := pub.(*crypto.Secp256k1PublicKey)
if !ok {
return nil, fmt.Errorf("unexpected pubkey type: %T", pub)
}
info.NodeID = enode.PubkeyToIDV4((*decredSecp.PublicKey)(typedPub).ToECDSA())
}
}
if eps, ok := pstore.(store.ExtendedPeerstore); ok {
if dat, err := eps.GetPeerScores(id); err == nil {
info.PeerScores = dat
}
}
if dat, err := pstore.Get(id, "ProtocolVersion"); err == nil {
protocolVersion, ok := dat.(string)
if ok {
info.ProtocolVersion = protocolVersion
}
}
if dat, err := pstore.Get(id, "AgentVersion"); err == nil {
agentVersion, ok := dat.(string)
if ok {
info.UserAgent = agentVersion
}
}
if dat, err := pstore.Get(id, "ENR"); err == nil {
enodeData, ok := dat.(*enode.Node)
if ok {
info.ENR = enodeData.String()
}
}
// include the /p2p/ address component in all of the addresses for convenience of the API user.
p2pAddrs, err := peer.AddrInfoToP2pAddrs(&peer.AddrInfo{ID: id, Addrs: pstore.Addrs(id)})
if err == nil {
for _, addr := range p2pAddrs {
info.Addresses = append(info.Addresses, addr.String())
}
}
info.Connectedness = nw.Connectedness(id)
if protocols, err := pstore.GetProtocols(id); err == nil {
for _, id := range protocols {
info.Protocols = append(info.Protocols, string(id))
}
}
// get the first connection direction, if any (will default to unknown when there are no connections)
for _, c := range nw.ConnsToPeer(id) {
info.Direction = c.Stat().Direction
break
}
if dat, err := pstore.Get(id, "optimismChainID"); err == nil {
chID, ok := dat.(uint64)
if ok {
info.ChainID = chID
}
}
info.Latency = pstore.LatencyEWMA(id)
if connMgr != nil {
info.Protected = connMgr.IsProtected(id, "")
}
return info, nil
}
// Peers lists information of peers. Optionally filter to only retrieve connected peers.
func (s *APIBackend) Peers(ctx context.Context, connected bool) (*PeerDump, error) {
recordDur := s.m.RecordRPCServerRequest("opp2p_peers")
defer recordDur()
h := s.node.Host()
nw := h.Network()
pstore := h.Peerstore()
var peers []peer.ID
if connected {
peers = nw.Peers()
} else {
peers = pstore.Peers()
}
dump := &PeerDump{Peers: make(map[string]*PeerInfo)}
for _, id := range peers {
peerInfo, err := dumpPeer(id, nw, pstore, s.node.ConnectionManager())
if err != nil {
s.log.Debug("failed to dump peer info in RPC request", "peer", id, "err", err)
continue
}
// We don't use the peer.ID type as key,
// since JSON decoding can't use the provided json unmarshaler (on *string type).
dump.Peers[id.String()] = peerInfo
if peerInfo.Connectedness == network.Connected {
dump.TotalConnected += 1
}
}
for _, id := range s.node.GossipOut().AllBlockTopicsPeers() {
if p, ok := dump.Peers[id.String()]; ok {
p.GossipBlocks = true
}
}
if gater := s.node.ConnectionGater(); gater != nil {
dump.BannedPeers = gater.ListBlockedPeers()
dump.BannedSubnets = gater.ListBlockedSubnets()
dump.BannedIPS = gater.ListBlockedAddrs()
}
return dump, nil
}
type PeerStats struct {
Connected uint `json:"connected"`
Table uint `json:"table"`
BlocksTopic uint `json:"blocksTopic"`
BlocksTopicV2 uint `json:"blocksTopicV2"`
Banned uint `json:"banned"`
Known uint `json:"known"`
}
func (s *APIBackend) PeerStats(_ context.Context) (*PeerStats, error) {
recordDur := s.m.RecordRPCServerRequest("opp2p_peerStats")
defer recordDur()
h := s.node.Host()
nw := h.Network()
pstore := h.Peerstore()
stats := &PeerStats{
Connected: uint(len(nw.Peers())),
Table: 0,
BlocksTopic: uint(len(s.node.GossipOut().BlocksTopicV1Peers())),
BlocksTopicV2: uint(len(s.node.GossipOut().BlocksTopicV2Peers())),
Banned: 0,
Known: uint(len(pstore.Peers())),
}
if gater := s.node.ConnectionGater(); gater != nil {
stats.Banned = uint(len(gater.ListBlockedPeers()))
}
if dv5 := s.node.Dv5Udp(); dv5 != nil {
stats.Table = uint(len(dv5.AllNodes()))
}
return stats, nil
}
func (s *APIBackend) DiscoveryTable(_ context.Context) ([]*enode.Node, error) {
recordDur := s.m.RecordRPCServerRequest("opp2p_discoveryTable")
defer recordDur()
if dv5 := s.node.Dv5Udp(); dv5 != nil {
return dv5.AllNodes(), nil
} else {
return nil, ErrDisabledDiscovery
}
}
func (s *APIBackend) BlockPeer(_ context.Context, p peer.ID) error {
recordDur := s.m.RecordRPCServerRequest("opp2p_blockPeer")
defer recordDur()
if gater := s.node.ConnectionGater(); gater == nil {
return ErrNoConnectionGater
} else {
return gater.BlockPeer(p)
}
}
func (s *APIBackend) UnblockPeer(_ context.Context, p peer.ID) error {
recordDur := s.m.RecordRPCServerRequest("opp2p_unblockPeer")
defer recordDur()
if gater := s.node.ConnectionGater(); gater == nil {
return ErrNoConnectionGater
} else {
return gater.UnblockPeer(p)
}
}
func (s *APIBackend) ListBlockedPeers(_ context.Context) ([]peer.ID, error) {
recordDur := s.m.RecordRPCServerRequest("opp2p_listBlockedPeers")
defer recordDur()
if gater := s.node.ConnectionGater(); gater == nil {
return nil, ErrNoConnectionGater
} else {
return gater.ListBlockedPeers(), nil
}
}
// BlockAddr adds an IP address to the set of blocked addresses.
// Note: active connections to the IP address are not automatically closed.
func (s *APIBackend) BlockAddr(_ context.Context, ip net.IP) error {
recordDur := s.m.RecordRPCServerRequest("opp2p_blockAddr")
defer recordDur()
if gater := s.node.ConnectionGater(); gater == nil {
return ErrNoConnectionGater
} else {
return gater.BlockAddr(ip)
}
}
func (s *APIBackend) UnblockAddr(_ context.Context, ip net.IP) error {
recordDur := s.m.RecordRPCServerRequest("opp2p_unblockAddr")
defer recordDur()
if gater := s.node.ConnectionGater(); gater == nil {
return ErrNoConnectionGater
} else {
return gater.UnblockAddr(ip)
}
}
func (s *APIBackend) ListBlockedAddrs(_ context.Context) ([]net.IP, error) {
recordDur := s.m.RecordRPCServerRequest("opp2p_listBlockedAddrs")
defer recordDur()
if gater := s.node.ConnectionGater(); gater == nil {
return nil, ErrNoConnectionGater
} else {
return gater.ListBlockedAddrs(), nil
}
}
// BlockSubnet adds an IP subnet to the set of blocked addresses.
// Note: active connections to the IP subnet are not automatically closed.
func (s *APIBackend) BlockSubnet(_ context.Context, ipnet *net.IPNet) error {
recordDur := s.m.RecordRPCServerRequest("opp2p_blockSubnet")
defer recordDur()
if gater := s.node.ConnectionGater(); gater == nil {
return ErrNoConnectionGater
} else {
return gater.BlockSubnet(ipnet)
}
}
func (s *APIBackend) UnblockSubnet(_ context.Context, ipnet *net.IPNet) error {
recordDur := s.m.RecordRPCServerRequest("opp2p_unblockSubnet")
defer recordDur()
if gater := s.node.ConnectionGater(); gater == nil {
return ErrNoConnectionGater
} else {
return gater.UnblockSubnet(ipnet)
}
}
func (s *APIBackend) ListBlockedSubnets(_ context.Context) ([]*net.IPNet, error) {
recordDur := s.m.RecordRPCServerRequest("opp2p_listBlockedSubnets")
defer recordDur()
if gater := s.node.ConnectionGater(); gater == nil {
return nil, ErrNoConnectionGater
} else {
return gater.ListBlockedSubnets(), nil
}
}
func (s *APIBackend) ProtectPeer(_ context.Context, p peer.ID) error {
recordDur := s.m.RecordRPCServerRequest("opp2p_protectPeer")
defer recordDur()
if manager := s.node.ConnectionManager(); manager == nil {
return ErrNoConnectionManager
} else {
manager.Protect(p, "api-protected")
return nil
}
}
func (s *APIBackend) UnprotectPeer(_ context.Context, p peer.ID) error {
recordDur := s.m.RecordRPCServerRequest("opp2p_unprotectPeer")
defer recordDur()
if manager := s.node.ConnectionManager(); manager == nil {
return ErrNoConnectionManager
} else {
manager.Unprotect(p, "api-protected")
return nil
}
}
// ConnectPeer connects to a given peer address, and wait for protocol negotiation & identification of the peer
func (s *APIBackend) ConnectPeer(ctx context.Context, addr string) error {
recordDur := s.m.RecordRPCServerRequest("opp2p_connectPeer")
defer recordDur()
h := s.node.Host()
addrInfo, err := peer.AddrInfoFromString(addr)
if err != nil {
return fmt.Errorf("bad peer address: %w", err)
}
// Put a sanity limit on the connection time
ctx, cancel := context.WithTimeout(ctx, time.Second*30)
defer cancel()
return h.Connect(ctx, *addrInfo)
}
func (s *APIBackend) DisconnectPeer(_ context.Context, id peer.ID) error {
recordDur := s.m.RecordRPCServerRequest("opp2p_disconnectPeer")
defer recordDur()
return s.node.Host().Network().ClosePeer(id)
}